@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.
Files changed (80) hide show
  1. package/es/components/APIKeyModal/APIKeyModal.js +4 -5
  2. package/es/components/APIKeyModal/APIKeyModal.types.d.ts +0 -5
  3. package/es/components/ConditionBuilder/ConditionBuilder.js +14 -2
  4. package/es/components/ConditionBuilder/ConditionBuilder.types.d.ts +14 -5
  5. package/es/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +2 -1
  6. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +12 -6
  7. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.d.ts +4 -2
  8. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +1 -1
  9. package/es/components/ConditionBuilder/utils/useDataConfigs.d.ts +3 -4
  10. package/es/components/ConditionBuilder/utils/useDataConfigs.js +14 -14
  11. package/es/components/CreateTearsheet/CreateTearsheet.d.ts +20 -6
  12. package/es/components/CreateTearsheet/CreateTearsheet.js +32 -11
  13. package/es/components/EmptyStates/EmptyState.d.ts +6 -1
  14. package/es/components/EmptyStates/EmptyState.js +12 -3
  15. package/es/components/EmptyStates/EmptyStateContent.d.ts +3 -1
  16. package/es/components/EmptyStates/EmptyStateContent.js +8 -2
  17. package/es/components/EmptyStates/EmptyStateIllustration.js +4 -2
  18. package/es/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.d.ts +5 -1
  19. package/es/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +8 -1
  20. package/es/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.d.ts +5 -1
  21. package/es/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +8 -1
  22. package/es/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.d.ts +5 -1
  23. package/es/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +8 -1
  24. package/es/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.d.ts +5 -1
  25. package/es/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +8 -1
  26. package/es/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.d.ts +5 -1
  27. package/es/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +8 -1
  28. package/es/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.d.ts +5 -1
  29. package/es/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +8 -1
  30. package/es/components/EmptyStates/assets/ErrorIllustration.js +2 -1
  31. package/es/components/EmptyStates/assets/NoDataIllustration.js +2 -1
  32. package/es/components/EmptyStates/assets/NoTagsIllustration.js +2 -1
  33. package/es/components/EmptyStates/assets/NotFoundIllustration.js +2 -1
  34. package/es/components/EmptyStates/assets/NotificationsIllustration.js +2 -1
  35. package/es/components/EmptyStates/assets/UnauthorizedIllustration.js +2 -1
  36. package/es/components/FilterSummary/FilterSummary.js +1 -1
  37. package/es/components/Tearsheet/TearsheetShell.d.ts +11 -7
  38. package/es/components/Tearsheet/TearsheetShell.js +14 -14
  39. package/es/global/js/hooks/useFocus.js +21 -19
  40. package/lib/components/APIKeyModal/APIKeyModal.js +4 -5
  41. package/lib/components/APIKeyModal/APIKeyModal.types.d.ts +0 -5
  42. package/lib/components/ConditionBuilder/ConditionBuilder.js +14 -2
  43. package/lib/components/ConditionBuilder/ConditionBuilder.types.d.ts +14 -5
  44. package/lib/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +2 -1
  45. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +12 -6
  46. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.d.ts +4 -2
  47. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +1 -1
  48. package/lib/components/ConditionBuilder/utils/useDataConfigs.d.ts +3 -4
  49. package/lib/components/ConditionBuilder/utils/useDataConfigs.js +14 -14
  50. package/lib/components/CreateTearsheet/CreateTearsheet.d.ts +20 -6
  51. package/lib/components/CreateTearsheet/CreateTearsheet.js +31 -10
  52. package/lib/components/EmptyStates/EmptyState.d.ts +6 -1
  53. package/lib/components/EmptyStates/EmptyState.js +12 -3
  54. package/lib/components/EmptyStates/EmptyStateContent.d.ts +3 -1
  55. package/lib/components/EmptyStates/EmptyStateContent.js +7 -1
  56. package/lib/components/EmptyStates/EmptyStateIllustration.js +3 -1
  57. package/lib/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.d.ts +5 -1
  58. package/lib/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +8 -1
  59. package/lib/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.d.ts +5 -1
  60. package/lib/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +8 -1
  61. package/lib/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.d.ts +5 -1
  62. package/lib/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +8 -1
  63. package/lib/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.d.ts +5 -1
  64. package/lib/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +8 -1
  65. package/lib/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.d.ts +5 -1
  66. package/lib/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +8 -1
  67. package/lib/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.d.ts +5 -1
  68. package/lib/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +8 -1
  69. package/lib/components/EmptyStates/assets/ErrorIllustration.js +2 -1
  70. package/lib/components/EmptyStates/assets/NoDataIllustration.js +2 -1
  71. package/lib/components/EmptyStates/assets/NoTagsIllustration.js +2 -1
  72. package/lib/components/EmptyStates/assets/NotFoundIllustration.js +2 -1
  73. package/lib/components/EmptyStates/assets/NotificationsIllustration.js +2 -1
  74. package/lib/components/EmptyStates/assets/UnauthorizedIllustration.js +2 -1
  75. package/lib/components/FilterSummary/FilterSummary.js +1 -1
  76. package/lib/components/Tearsheet/TearsheetShell.d.ts +11 -7
  77. package/lib/components/Tearsheet/TearsheetShell.js +14 -14
  78. package/lib/global/js/hooks/useFocus.js +21 -19
  79. package/package.json +6 -6
  80. 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": "^11.11.17",
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": "9c13cb4cc22e27ff7d74953395dc3a096c9ac3a5"
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