@carbon/react 1.65.0-rc.0 → 1.66.0-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.playwright/INTERNAL_AVT_REPORT_DO_NOT_USE.json +901 -866
- package/es/components/ChatButton/ChatButton.Skeleton.d.ts +31 -0
- package/es/components/ChatButton/ChatButton.Skeleton.js +1 -2
- package/es/components/ChatButton/ChatButton.d.ts +46 -0
- package/es/components/ChatButton/ChatButton.js +3 -3
- package/es/components/ChatButton/index.d.ts +12 -0
- package/es/components/Checkbox/index.js +10 -0
- package/es/components/ComboBox/ComboBox.js +12 -7
- package/es/components/ComboButton/index.js +8 -3
- package/es/components/ComposedModal/index.d.ts +2 -0
- package/es/components/DataTable/TableSlugRow.d.ts +1 -0
- package/es/components/DataTable/TableSlugRow.js +1 -0
- package/es/components/Grid/Column.js +3 -3
- package/es/components/ListBox/ListBoxMenuItem.d.ts +10 -1
- package/es/components/ListBox/next/ListBoxSelection.d.ts +106 -0
- package/es/components/ListBox/next/ListBoxSelection.js +12 -16
- package/es/components/ListBox/next/ListBoxTrigger.d.ts +31 -0
- package/es/components/ListBox/next/ListBoxTrigger.js +2 -4
- package/es/components/ListBox/next/index.d.ts +8 -0
- package/es/components/MultiSelect/FilterableMultiSelect.js +12 -14
- package/es/components/MultiSelect/MultiSelect.js +64 -49
- package/es/components/MultiSelect/tools/sorting.js +5 -8
- package/es/components/OverflowMenu/OverflowMenu.js +1 -1
- package/es/components/Popover/index.js +21 -4
- package/es/components/TreeView/TreeNode.js +41 -33
- package/es/components/TreeView/TreeView.d.ts +5 -3
- package/es/index.js +2 -2
- package/es/internal/Selection.js +30 -18
- package/es/internal/useMergedRefs.d.ts +1 -1
- package/lib/components/ChatButton/ChatButton.Skeleton.d.ts +31 -0
- package/lib/components/ChatButton/ChatButton.Skeleton.js +1 -2
- package/lib/components/ChatButton/ChatButton.d.ts +46 -0
- package/lib/components/ChatButton/ChatButton.js +4 -4
- package/lib/components/ChatButton/index.d.ts +12 -0
- package/lib/components/Checkbox/index.js +19 -0
- package/lib/components/ComboBox/ComboBox.js +12 -7
- package/lib/components/ComboButton/index.js +8 -3
- package/lib/components/ComposedModal/index.d.ts +2 -0
- package/lib/components/DataTable/TableSlugRow.d.ts +1 -0
- package/lib/components/DataTable/TableSlugRow.js +1 -0
- package/lib/components/Grid/Column.js +3 -3
- package/lib/components/ListBox/ListBoxMenuItem.d.ts +10 -1
- package/lib/components/ListBox/next/ListBoxSelection.d.ts +106 -0
- package/lib/components/ListBox/next/ListBoxSelection.js +11 -16
- package/lib/components/ListBox/next/ListBoxTrigger.d.ts +31 -0
- package/lib/components/ListBox/next/ListBoxTrigger.js +2 -4
- package/lib/components/ListBox/next/index.d.ts +8 -0
- package/lib/components/MultiSelect/FilterableMultiSelect.js +12 -14
- package/lib/components/MultiSelect/MultiSelect.js +63 -48
- package/lib/components/MultiSelect/tools/sorting.js +5 -8
- package/lib/components/OverflowMenu/OverflowMenu.js +1 -1
- package/lib/components/Popover/index.js +21 -4
- package/lib/components/TreeView/TreeNode.js +41 -33
- package/lib/components/TreeView/TreeView.d.ts +5 -3
- package/lib/index.js +4 -4
- package/lib/internal/Selection.js +30 -18
- package/lib/internal/useMergedRefs.d.ts +1 -1
- package/package.json +27 -24
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carbon/react",
|
|
3
3
|
"description": "React components for the Carbon Design System",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.66.0-rc.0",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"module": "es/index.js",
|
|
@@ -48,10 +48,10 @@
|
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@babel/runtime": "^7.24.7",
|
|
51
|
-
"@carbon/feature-flags": "^0.22.0
|
|
52
|
-
"@carbon/icons-react": "^11.
|
|
53
|
-
"@carbon/layout": "^11.
|
|
54
|
-
"@carbon/styles": "^1.
|
|
51
|
+
"@carbon/feature-flags": "^0.22.0",
|
|
52
|
+
"@carbon/icons-react": "^11.49.0-rc.0",
|
|
53
|
+
"@carbon/layout": "^11.26.0-rc.0",
|
|
54
|
+
"@carbon/styles": "^1.65.0-rc.0",
|
|
55
55
|
"@floating-ui/react": "^0.26.0",
|
|
56
56
|
"@ibm/telemetry-js": "^1.5.0",
|
|
57
57
|
"classnames": "2.5.1",
|
|
@@ -72,29 +72,32 @@
|
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
74
74
|
"@babel/core": "^7.24.7",
|
|
75
|
-
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
76
75
|
"@babel/plugin-proposal-export-default-from": "^7.24.7",
|
|
77
|
-
"@babel/plugin-
|
|
76
|
+
"@babel/plugin-transform-class-properties": "^7.24.7",
|
|
77
|
+
"@babel/plugin-transform-export-namespace-from": "^7.24.7",
|
|
78
78
|
"@babel/plugin-transform-react-constant-elements": "^7.24.7",
|
|
79
79
|
"@babel/preset-env": "^7.24.7",
|
|
80
80
|
"@babel/preset-react": "^7.24.7",
|
|
81
81
|
"@babel/preset-typescript": "^7.24.7",
|
|
82
|
-
"@carbon/test-utils": "^10.
|
|
83
|
-
"@carbon/themes": "^11.
|
|
82
|
+
"@carbon/test-utils": "^10.32.0-rc.0",
|
|
83
|
+
"@carbon/themes": "^11.40.0-rc.0",
|
|
84
84
|
"@figma/code-connect": "^1.0.4",
|
|
85
85
|
"@rollup/plugin-babel": "^6.0.0",
|
|
86
86
|
"@rollup/plugin-commonjs": "^26.0.0",
|
|
87
87
|
"@rollup/plugin-node-resolve": "^15.0.0",
|
|
88
88
|
"@rollup/plugin-typescript": "^11.0.0",
|
|
89
|
-
"@storybook/addon-a11y": "^
|
|
90
|
-
"@storybook/addon-actions": "^
|
|
91
|
-
"@storybook/addon-docs": "^
|
|
92
|
-
"@storybook/addon-essentials": "^
|
|
93
|
-
"@storybook/addon-links": "^
|
|
94
|
-
"@storybook/addon-storysource": "^
|
|
95
|
-
"@storybook/
|
|
96
|
-
"@storybook/
|
|
97
|
-
"@storybook/
|
|
89
|
+
"@storybook/addon-a11y": "^8.2.8",
|
|
90
|
+
"@storybook/addon-actions": "^8.2.8",
|
|
91
|
+
"@storybook/addon-docs": "^8.2.8",
|
|
92
|
+
"@storybook/addon-essentials": "^8.2.8",
|
|
93
|
+
"@storybook/addon-links": "^8.1.10",
|
|
94
|
+
"@storybook/addon-storysource": "^8.2.8",
|
|
95
|
+
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
|
|
96
|
+
"@storybook/blocks": "^8.2.8",
|
|
97
|
+
"@storybook/manager-api": "^8.2.8",
|
|
98
|
+
"@storybook/react": "^8.2.8",
|
|
99
|
+
"@storybook/react-webpack5": "^8.2.8",
|
|
100
|
+
"@storybook/theming": "^8.2.8",
|
|
98
101
|
"@types/react-is": "~18.3.0",
|
|
99
102
|
"autoprefixer": "^10.4.0",
|
|
100
103
|
"babel-loader": "^9.0.0",
|
|
@@ -115,18 +118,18 @@
|
|
|
115
118
|
"prop-types": "^15.7.2",
|
|
116
119
|
"react": "^18.2.0",
|
|
117
120
|
"react-dom": "^18.2.0",
|
|
118
|
-
"remark-gfm": "^
|
|
121
|
+
"remark-gfm": "^4.0.0",
|
|
119
122
|
"requestanimationframe": "^0.0.23",
|
|
120
123
|
"rimraf": "^6.0.0",
|
|
121
124
|
"rollup": "^2.79.1",
|
|
122
125
|
"rollup-plugin-strip-banner": "^3.0.0",
|
|
123
|
-
"sass": "^1.
|
|
124
|
-
"sass-loader": "^
|
|
125
|
-
"storybook": "^
|
|
126
|
+
"sass": "^1.77.7",
|
|
127
|
+
"sass-loader": "^16.0.0",
|
|
128
|
+
"storybook": "^8.2.8",
|
|
126
129
|
"storybook-addon-accessibility-checker": "^3.1.61-rc.3",
|
|
127
130
|
"stream-browserify": "^3.0.0",
|
|
128
131
|
"style-loader": "^4.0.0",
|
|
129
|
-
"typescript-config-carbon": "^0.3.0
|
|
132
|
+
"typescript-config-carbon": "^0.3.0",
|
|
130
133
|
"webpack": "^5.65.0",
|
|
131
134
|
"webpack-dev-server": "^4.7.4"
|
|
132
135
|
},
|
|
@@ -141,5 +144,5 @@
|
|
|
141
144
|
"**/*.scss",
|
|
142
145
|
"**/*.css"
|
|
143
146
|
],
|
|
144
|
-
"gitHead": "
|
|
147
|
+
"gitHead": "3bea42a9cef74114dc19f12d48519865bd8a4a17"
|
|
145
148
|
}
|