@carbon/ibm-products 2.57.0 → 2.57.1-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/es/components/APIKeyModal/APIKeyModal.js +4 -5
- package/es/components/APIKeyModal/APIKeyModal.types.d.ts +0 -5
- package/es/components/ConditionBuilder/ConditionBuilder.js +14 -2
- package/es/components/ConditionBuilder/ConditionBuilder.types.d.ts +14 -5
- package/es/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +2 -1
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +12 -6
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.d.ts +4 -2
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +1 -1
- package/es/components/ConditionBuilder/utils/useDataConfigs.d.ts +3 -4
- package/es/components/ConditionBuilder/utils/useDataConfigs.js +14 -14
- package/es/components/CreateTearsheet/CreateTearsheet.d.ts +20 -6
- package/es/components/CreateTearsheet/CreateTearsheet.js +32 -11
- package/es/components/EmptyStates/EmptyState.d.ts +6 -1
- package/es/components/EmptyStates/EmptyState.js +12 -3
- package/es/components/EmptyStates/EmptyStateContent.d.ts +3 -1
- package/es/components/EmptyStates/EmptyStateContent.js +8 -2
- package/es/components/EmptyStates/EmptyStateIllustration.js +4 -2
- package/es/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.d.ts +5 -1
- package/es/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +8 -1
- package/es/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.d.ts +5 -1
- package/es/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +8 -1
- package/es/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.d.ts +5 -1
- package/es/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +8 -1
- package/es/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.d.ts +5 -1
- package/es/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +8 -1
- package/es/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.d.ts +5 -1
- package/es/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +8 -1
- package/es/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.d.ts +5 -1
- package/es/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +8 -1
- package/es/components/EmptyStates/assets/ErrorIllustration.js +2 -1
- package/es/components/EmptyStates/assets/NoDataIllustration.js +2 -1
- package/es/components/EmptyStates/assets/NoTagsIllustration.js +2 -1
- package/es/components/EmptyStates/assets/NotFoundIllustration.js +2 -1
- package/es/components/EmptyStates/assets/NotificationsIllustration.js +2 -1
- package/es/components/EmptyStates/assets/UnauthorizedIllustration.js +2 -1
- package/es/components/FilterSummary/FilterSummary.js +1 -1
- package/es/components/Tearsheet/TearsheetShell.d.ts +11 -7
- package/es/components/Tearsheet/TearsheetShell.js +14 -14
- package/es/global/js/hooks/useFocus.js +21 -19
- package/lib/components/APIKeyModal/APIKeyModal.js +4 -5
- package/lib/components/APIKeyModal/APIKeyModal.types.d.ts +0 -5
- package/lib/components/ConditionBuilder/ConditionBuilder.js +14 -2
- package/lib/components/ConditionBuilder/ConditionBuilder.types.d.ts +14 -5
- package/lib/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +2 -1
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +12 -6
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.d.ts +4 -2
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +1 -1
- package/lib/components/ConditionBuilder/utils/useDataConfigs.d.ts +3 -4
- package/lib/components/ConditionBuilder/utils/useDataConfigs.js +14 -14
- package/lib/components/CreateTearsheet/CreateTearsheet.d.ts +20 -6
- package/lib/components/CreateTearsheet/CreateTearsheet.js +31 -10
- package/lib/components/EmptyStates/EmptyState.d.ts +6 -1
- package/lib/components/EmptyStates/EmptyState.js +12 -3
- package/lib/components/EmptyStates/EmptyStateContent.d.ts +3 -1
- package/lib/components/EmptyStates/EmptyStateContent.js +7 -1
- package/lib/components/EmptyStates/EmptyStateIllustration.js +3 -1
- package/lib/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.d.ts +5 -1
- package/lib/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +8 -1
- package/lib/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.d.ts +5 -1
- package/lib/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +8 -1
- package/lib/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.d.ts +5 -1
- package/lib/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +8 -1
- package/lib/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.d.ts +5 -1
- package/lib/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +8 -1
- package/lib/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.d.ts +5 -1
- package/lib/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +8 -1
- package/lib/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.d.ts +5 -1
- package/lib/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +8 -1
- package/lib/components/EmptyStates/assets/ErrorIllustration.js +2 -1
- package/lib/components/EmptyStates/assets/NoDataIllustration.js +2 -1
- package/lib/components/EmptyStates/assets/NoTagsIllustration.js +2 -1
- package/lib/components/EmptyStates/assets/NotFoundIllustration.js +2 -1
- package/lib/components/EmptyStates/assets/NotificationsIllustration.js +2 -1
- package/lib/components/EmptyStates/assets/UnauthorizedIllustration.js +2 -1
- package/lib/components/FilterSummary/FilterSummary.js +1 -1
- package/lib/components/Tearsheet/TearsheetShell.d.ts +11 -7
- package/lib/components/Tearsheet/TearsheetShell.js +14 -14
- package/lib/global/js/hooks/useFocus.js +21 -19
- package/package.json +6 -6
- package/telemetry.yml +3 -0
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@carbon/ibm-products",
|
3
3
|
"description": "Carbon for IBM Products",
|
4
|
-
"version": "2.57.0",
|
4
|
+
"version": "2.57.1-rc.0",
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"main": "lib/index.js",
|
7
7
|
"module": "es/index.js",
|
@@ -72,7 +72,7 @@
|
|
72
72
|
"@rollup/plugin-typescript": "^12.1.1",
|
73
73
|
"@types/react-table": "^7.7.20",
|
74
74
|
"babel-plugin-dev-expression": "^0.2.3",
|
75
|
-
"babel-preset-ibm-cloud-cognitive": "^0.15.0",
|
75
|
+
"babel-preset-ibm-cloud-cognitive": "^0.15.1-rc.0",
|
76
76
|
"chalk": "^4.1.2",
|
77
77
|
"change-case": "4.1.2",
|
78
78
|
"classnames": "^2.5.1",
|
@@ -81,7 +81,7 @@
|
|
81
81
|
"fs-extra": "^11.2.0",
|
82
82
|
"glob": "^10.3.10",
|
83
83
|
"jest": "^29.7.0",
|
84
|
-
"jest-config-ibm-cloud-cognitive": "^1.16.0",
|
84
|
+
"jest-config-ibm-cloud-cognitive": "^1.16.1-rc.0",
|
85
85
|
"jest-environment-jsdom": "^29.7.0",
|
86
86
|
"namor": "^1.1.2",
|
87
87
|
"npm-check-updates": "^17.1.11",
|
@@ -96,14 +96,14 @@
|
|
96
96
|
"dependencies": {
|
97
97
|
"@babel/runtime": "^7.23.9",
|
98
98
|
"@carbon/feature-flags": "^0.24.0",
|
99
|
-
"@carbon/ibm-products-styles": "^2.53.0",
|
99
|
+
"@carbon/ibm-products-styles": "^2.53.1-rc.0",
|
100
100
|
"@carbon/telemetry": "^0.1.0",
|
101
101
|
"@dnd-kit/core": "^6.0.8",
|
102
102
|
"@dnd-kit/modifiers": "^7.0.0",
|
103
103
|
"@dnd-kit/sortable": "^8.0.0",
|
104
104
|
"@dnd-kit/utilities": "^3.2.2",
|
105
105
|
"@ibm/telemetry-js": "^1.5.0",
|
106
|
-
"framer-motion": "^
|
106
|
+
"framer-motion": "^6.5.1 < 7",
|
107
107
|
"immutability-helper": "^3.1.1",
|
108
108
|
"lodash": "^4.17.21",
|
109
109
|
"lottie-web": "^5.12.2",
|
@@ -120,5 +120,5 @@
|
|
120
120
|
"react": "^16.8.6 || ^17.0.1 || ^18.2.0",
|
121
121
|
"react-dom": "^16.8.6 || ^17.0.1 || ^18.2.0"
|
122
122
|
},
|
123
|
-
"gitHead": "
|
123
|
+
"gitHead": "bca5191fb06194628bff7bb0206747d25b469fa9"
|
124
124
|
}
|
package/telemetry.yml
CHANGED
@@ -134,11 +134,13 @@ collect:
|
|
134
134
|
- hasActions
|
135
135
|
- hasCloseIcon
|
136
136
|
- hasCustomRowHeader
|
137
|
+
- hasError
|
137
138
|
- hasFieldset
|
138
139
|
- headerActions
|
139
140
|
- headerGroups
|
140
141
|
- HeaderRow
|
141
142
|
- headers
|
143
|
+
- headingAs
|
142
144
|
- headRef
|
143
145
|
- hideConditionPreviewHandler
|
144
146
|
- hideConditionSubGroupPreviewHandler
|
@@ -346,6 +348,7 @@ collect:
|
|
346
348
|
- sortByLabel
|
347
349
|
- startConditionLabel
|
348
350
|
- state
|
351
|
+
- statementConfigCustom
|
349
352
|
- status
|
350
353
|
- style
|
351
354
|
- submitButtonText
|