-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathproduct-migrated-components.mjs
More file actions
60 lines (58 loc) · 2.28 KB
/
Copy pathproduct-migrated-components.mjs
File metadata and controls
60 lines (58 loc) · 2.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/**
* Copyright IBM Corp. 2026
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* Glob patterns for components migrated from ibm-products into
* @carbon/web-components. These stories are excluded from the v11 Storybook
* and only appear in the v12 Storybook. Add a new entry here for each newly
* migrated component's stories and MDX files.
*/
export const productMigratedStoryGlobs = [
'../src/components/action-set/action-set.stories.ts',
'../src/components/action-set/*.mdx',
'../src/components/big-number/big-number.stories.ts',
'../src/components/big-number/*.mdx',
'../src/components/edit-in-place/edit-in-place.stories.ts',
'../src/components/edit-in-place/*.mdx',
'../src/components/notification-panel/notification-panel.stories.ts',
'../src/components/notification-panel/*.mdx',
'../src/components/options-tile/options-tile.stories.ts',
'../src/components/options-tile/*.mdx',
'../src/components/coachmark/coachmark.stories.ts',
'../src/components/coachmark/*.mdx',
'../src/components/resizer/resizer.stories.ts',
'../src/components/resizer/*.mdx',
'../src/components/side-panel/side-panel.stories.ts',
'../src/components/side-panel/*.mdx',
'../src/components/user-avatar/user-avatar.stories.ts',
'../src/components/user-avatar/*.mdx',
'../src/components/truncated-text/truncated-text.stories.ts',
'../src/components/truncated-text/*.mdx',
];
/**
* Components currently being migrated from IBM Products into
* @carbon/web-components.
*
* These are excluded from the published build (both JS bundle and .d.ts files)
* until the next major release. Each entry is a glob pattern matching the
* format used in globby / tsconfig "exclude" arrays.
*
* To ship a component:
* 1. Remove its entry from this list.
* 2. Uncomment its export in src/index.ts.
*/
export const excludeProductsComponents = [
'src/components/coachmark/**/*',
'src/components/resizer/**/*',
'src/components/action-set/**/*',
'src/components/big-number/**/*',
'src/components/edit-in-place/**/*',
'src/components/notification-panel/**/*',
'src/components/options-tile/**/*',
'src/components/side-panel/**/*',
'src/components/user-avatar/**/*',
'src/components/truncated-text/**/*',
];