@carbon/react 1.79.0 → 1.80.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.
Files changed (125) hide show
  1. package/.playwright/INTERNAL_AVT_REPORT_DO_NOT_USE.json +960 -904
  2. package/es/components/CodeSnippet/CodeSnippet.js +1 -1
  3. package/es/components/ComposedModal/ComposedModal.d.ts +6 -0
  4. package/es/components/ComposedModal/ModalFooter.d.ts +6 -0
  5. package/es/components/ContainedList/index.js +1 -1
  6. package/es/components/DataTable/DataTable.d.ts +3 -1
  7. package/es/components/DatePicker/DatePicker.d.ts +1 -1
  8. package/es/components/DatePicker/DatePicker.js +1 -1
  9. package/es/components/FluidTextArea/FluidTextArea.Skeleton.d.ts +6 -0
  10. package/es/components/Layer/LayerLevel.d.ts +6 -0
  11. package/es/components/Menu/Menu.d.ts +1 -1
  12. package/es/components/Menu/MenuItem.d.ts +1 -1
  13. package/es/components/Modal/Modal.js +1 -1
  14. package/es/components/ModalWrapper/ModalWrapper.d.ts +1 -1
  15. package/es/components/ModalWrapper/ModalWrapper.js +2 -1
  16. package/es/components/Notification/Notification.js +1 -1
  17. package/es/components/NumberInput/NumberInput.d.ts +1 -1
  18. package/es/components/OverflowMenu/OverflowMenu.js +1 -1
  19. package/es/components/OverflowMenuItem/OverflowMenuItem.js +1 -3
  20. package/es/components/OverflowMenuV2/index.js +1 -1
  21. package/es/components/PageHeader/PageHeader.d.ts +101 -0
  22. package/es/components/PageHeader/PageHeader.js +241 -0
  23. package/es/components/PageHeader/index.d.ts +8 -0
  24. package/es/components/PageHeader/index.js +8 -0
  25. package/es/components/PasswordInput/index.d.ts +6 -0
  26. package/es/components/Popover/index.js +1 -1
  27. package/es/components/Slider/SliderHandles.d.ts +6 -0
  28. package/es/components/Tag/Tag.js +2 -2
  29. package/es/components/Text/createTextComponent.js +1 -1
  30. package/es/components/TextArea/TextArea.d.ts +3 -3
  31. package/es/components/TextArea/TextArea.js +5 -2
  32. package/es/components/TextInput/ControlledPasswordInput.d.ts +6 -0
  33. package/es/components/TextInput/ControlledPasswordInput.js +1 -1
  34. package/es/components/TextInput/PasswordInput.d.ts +6 -0
  35. package/es/components/TextInput/index.js +1 -1
  36. package/es/components/Tile/Tile.d.ts +1 -1
  37. package/es/components/Tile/Tile.js +1 -4
  38. package/es/components/UIShell/Switcher.d.ts +1 -7
  39. package/es/components/UIShell/SwitcherDivider.d.ts +6 -0
  40. package/es/components/UIShell/SwitcherItem.d.ts +6 -0
  41. package/es/index.d.ts +5 -1
  42. package/es/index.js +3 -1
  43. package/es/internal/FloatingMenu.js +2 -2
  44. package/es/internal/PolymorphicProps.d.ts +6 -0
  45. package/es/internal/deprecateFieldOnObject.d.ts +12 -0
  46. package/es/internal/deprecateFieldOnObject.js +4 -4
  47. package/es/internal/useControllableState.js +2 -2
  48. package/es/internal/useEvent.js +1 -1
  49. package/es/internal/useMergedRefs.d.ts +9 -6
  50. package/es/internal/useMergedRefs.js +8 -9
  51. package/es/internal/useNoInteractiveChildren.js +2 -2
  52. package/es/internal/useSavedCallback.d.ts +15 -0
  53. package/es/internal/useSavedCallback.js +9 -12
  54. package/es/internal/warning.d.ts +17 -0
  55. package/es/internal/warning.js +16 -12
  56. package/es/internal/wrapFocus.js +1 -1
  57. package/es/prop-types/isRequiredOneOf.js +1 -1
  58. package/es/prop-types/requiredIfGivenPropIsTruthy.js +1 -1
  59. package/es/tools/events.js +1 -6
  60. package/es/tools/toggleClass.js +6 -0
  61. package/es/types/common.d.ts +6 -0
  62. package/lib/components/CodeSnippet/CodeSnippet.js +1 -1
  63. package/lib/components/ComposedModal/ComposedModal.d.ts +6 -0
  64. package/lib/components/ComposedModal/ModalFooter.d.ts +6 -0
  65. package/lib/components/ContainedList/index.js +1 -1
  66. package/lib/components/DataTable/DataTable.d.ts +3 -1
  67. package/lib/components/DatePicker/DatePicker.d.ts +1 -1
  68. package/lib/components/DatePicker/DatePicker.js +1 -1
  69. package/lib/components/FluidTextArea/FluidTextArea.Skeleton.d.ts +6 -0
  70. package/lib/components/Layer/LayerLevel.d.ts +6 -0
  71. package/lib/components/Menu/Menu.d.ts +1 -1
  72. package/lib/components/Menu/MenuItem.d.ts +1 -1
  73. package/lib/components/Modal/Modal.js +1 -1
  74. package/lib/components/ModalWrapper/ModalWrapper.d.ts +1 -1
  75. package/lib/components/ModalWrapper/ModalWrapper.js +2 -1
  76. package/lib/components/Notification/Notification.js +1 -1
  77. package/lib/components/NumberInput/NumberInput.d.ts +1 -1
  78. package/lib/components/OverflowMenu/OverflowMenu.js +1 -1
  79. package/lib/components/OverflowMenuItem/OverflowMenuItem.js +1 -3
  80. package/lib/components/OverflowMenuV2/index.js +1 -1
  81. package/lib/components/PageHeader/PageHeader.d.ts +101 -0
  82. package/lib/components/PageHeader/PageHeader.js +260 -0
  83. package/lib/components/PageHeader/index.d.ts +8 -0
  84. package/lib/components/PageHeader/index.js +25 -0
  85. package/lib/components/PasswordInput/index.d.ts +6 -0
  86. package/lib/components/Popover/index.js +1 -1
  87. package/lib/components/Slider/SliderHandles.d.ts +6 -0
  88. package/lib/components/Tag/Tag.js +2 -2
  89. package/lib/components/Text/createTextComponent.js +1 -1
  90. package/lib/components/TextArea/TextArea.d.ts +3 -3
  91. package/lib/components/TextArea/TextArea.js +4 -1
  92. package/lib/components/TextInput/ControlledPasswordInput.d.ts +6 -0
  93. package/lib/components/TextInput/ControlledPasswordInput.js +1 -1
  94. package/lib/components/TextInput/PasswordInput.d.ts +6 -0
  95. package/lib/components/TextInput/index.js +1 -1
  96. package/lib/components/Tile/Tile.d.ts +1 -1
  97. package/lib/components/Tile/Tile.js +1 -4
  98. package/lib/components/UIShell/Switcher.d.ts +1 -7
  99. package/lib/components/UIShell/SwitcherDivider.d.ts +6 -0
  100. package/lib/components/UIShell/SwitcherItem.d.ts +6 -0
  101. package/lib/index.d.ts +5 -1
  102. package/lib/index.js +62 -57
  103. package/lib/internal/FloatingMenu.js +2 -2
  104. package/lib/internal/PolymorphicProps.d.ts +6 -0
  105. package/lib/internal/deprecateFieldOnObject.d.ts +12 -0
  106. package/lib/internal/deprecateFieldOnObject.js +4 -4
  107. package/lib/internal/useControllableState.js +2 -2
  108. package/lib/internal/useEvent.js +1 -1
  109. package/lib/internal/useMergedRefs.d.ts +9 -6
  110. package/lib/internal/useMergedRefs.js +8 -9
  111. package/lib/internal/useNoInteractiveChildren.js +2 -2
  112. package/lib/internal/useSavedCallback.d.ts +15 -0
  113. package/lib/internal/useSavedCallback.js +9 -12
  114. package/lib/internal/warning.d.ts +17 -0
  115. package/lib/internal/warning.js +16 -12
  116. package/lib/internal/wrapFocus.js +1 -1
  117. package/lib/prop-types/isRequiredOneOf.js +1 -1
  118. package/lib/prop-types/requiredIfGivenPropIsTruthy.js +1 -1
  119. package/lib/tools/events.js +1 -6
  120. package/lib/tools/toggleClass.js +6 -0
  121. package/lib/types/common.d.ts +6 -0
  122. package/package.json +7 -7
  123. package/scss/components/page-header/_index.scss +9 -0
  124. package/scss/components/page-header/_page-header.scss +9 -0
  125. package/telemetry.yml +62 -23
@@ -9,21 +9,25 @@
9
9
 
10
10
  Object.defineProperty(exports, '__esModule', { value: true });
11
11
 
12
- const emptyFunction = function () {};
13
- const warning = process.env.NODE_ENV !== "production" ? function warning(condition, format) {
14
- for (var _len = arguments.length, args = new Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
15
- args[_key - 2] = arguments[_key];
16
- }
17
- if (format === undefined) {
18
- throw new Error('`warning(condition, format, ...args)` requires a warning ' + 'format argument');
12
+ var noopFn = require('./noopFn.js');
13
+
14
+ /**
15
+ * Logs a warning.
16
+ *
17
+ * The warning is only logged if the condition is not met and
18
+ * `process.env.NODE_ENV !== 'production'` is truthy.
19
+ *
20
+ * @param condition - Condition to evaluate.
21
+ * @param message - Warning message.
22
+ * @throws Error if no `message` is provided.
23
+ */
24
+ const warning = process.env.NODE_ENV !== 'production' ? (condition, message) => {
25
+ if (typeof message === 'undefined') {
26
+ throw new Error('`warning(condition, message)` requires a warning ' + 'format argument');
19
27
  }
20
28
  if (!condition) {
21
- let index = 0;
22
- const message = format.replace(/%s/g, () => {
23
- return args[index++];
24
- });
25
29
  console.warn('Warning: ' + message);
26
30
  }
27
- } : emptyFunction;
31
+ } : noopFn.noopFn;
28
32
 
29
33
  exports.warning = warning;
@@ -79,7 +79,7 @@ function wrapFocusWithoutSentinels(_ref2) {
79
79
  currentActiveNode,
80
80
  event
81
81
  } = _ref2;
82
- if (['blur', 'focusout', 'focusin', 'focus'].includes(event.type) && process.env.NODE_ENV !== "production") {
82
+ if (['blur', 'focusout', 'focusin', 'focus'].includes(event.type) && process.env.NODE_ENV !== 'production') {
83
83
  // eslint-disable-next-line react-hooks/rules-of-hooks
84
84
  React.useEffect(() => {
85
85
  throw new Error(`Error: wrapFocusWithoutSentinels(...) called in unsupported ${event.type} event.\n\nCall wrapFocusWithoutSentinels(...) from onKeyDown instead.`);
@@ -18,7 +18,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
18
18
  function isRequiredOneOf(propTypes) {
19
19
  const names = Object.keys(propTypes);
20
20
  const checker = propType => function (props, propName, componentName) {
21
- if (process.env.NODE_ENV !== "production" && names.every(name => typeof props[name] === 'undefined')) {
21
+ if (process.env.NODE_ENV !== 'production' && names.every(name => typeof props[name] === 'undefined')) {
22
22
  return new Error(`${componentName} requires one of the following props: ${names.join(', ')}`);
23
23
  }
24
24
  for (var _len = arguments.length, rest = new Array(_len > 3 ? _len - 3 : 0), _key = 3; _key < _len; _key++) {
@@ -18,7 +18,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
18
18
  */
19
19
  function requiredIfGivenPropIsTruthy(name, propType) {
20
20
  return function check(props, propName, componentName) {
21
- if (process.env.NODE_ENV !== "production" && props[name] == true && props[propName] == null) {
21
+ if (process.env.NODE_ENV !== 'production' && props[name] == true && props[propName] == null) {
22
22
  return new Error(`You must provide a value for \`${propName}\` in \`${componentName}\` if \`${name}\` exists.`);
23
23
  }
24
24
  for (var _len = arguments.length, rest = new Array(_len > 3 ? _len - 3 : 0), _key = 3; _key < _len; _key++) {
@@ -9,12 +9,7 @@
9
9
 
10
10
  Object.defineProperty(exports, '__esModule', { value: true });
11
11
 
12
- /**
13
- * Copyright IBM Corp. 2016, 2023
14
- *
15
- * This source code is licensed under the Apache-2.0 license found in the
16
- * LICENSE file in the root directory of this source tree.
17
- */
12
+ // @ts-check
18
13
 
19
14
  /**
20
15
  * Generic utility to compose event handlers so that consumers can supply their
@@ -9,6 +9,12 @@
9
9
 
10
10
  Object.defineProperty(exports, '__esModule', { value: true });
11
11
 
12
+ /**
13
+ * Adds or removes a CSS class to an element.
14
+ * @param {Element} element An element.
15
+ * @param {string} name A CSS class name.
16
+ * @param {boolean} add `true` to add the given CSS class to given the element. Otherwise to remove.
17
+ */
12
18
  function toggleClass(element, name, add) {
13
19
  if (element.classList.contains(name) === !add) {
14
20
  element.classList[add ? 'add' : 'remove'](name);
@@ -1,3 +1,9 @@
1
+ /**
2
+ * Copyright IBM Corp. 2023, 2024
3
+ *
4
+ * This source code is licensed under the Apache-2.0 license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
1
7
  import * as React from 'react';
2
8
  export type ReactAttr<T = HTMLElement> = React.HTMLAttributes<T>;
3
9
  export type ForwardRefProps<T, P = unknown> = React.PropsWithoutRef<React.PropsWithChildren<P>> & React.RefAttributes<T>;
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.79.0",
4
+ "version": "1.80.0-rc.0",
5
5
  "license": "Apache-2.0",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
@@ -52,9 +52,9 @@
52
52
  "dependencies": {
53
53
  "@babel/runtime": "^7.24.7",
54
54
  "@carbon/feature-flags": "^0.25.0",
55
- "@carbon/icons-react": "^11.57.0",
56
- "@carbon/layout": "^11.31.0",
57
- "@carbon/styles": "^1.78.0",
55
+ "@carbon/icons-react": "^11.58.0-rc.0",
56
+ "@carbon/layout": "^11.32.0-rc.0",
57
+ "@carbon/styles": "^1.79.0-rc.0",
58
58
  "@floating-ui/react": "^0.27.4",
59
59
  "@ibm/telemetry-js": "^1.5.0",
60
60
  "classnames": "2.5.1",
@@ -66,7 +66,7 @@
66
66
  "prop-types": "^15.7.2",
67
67
  "react-fast-compare": "^3.2.2",
68
68
  "tabbable": "^6.2.0",
69
- "use-resize-observer": "^6.0.0",
69
+ "use-resize-observer": "^9.1.0",
70
70
  "window-or-global": "^1.0.1"
71
71
  },
72
72
  "devDependencies": {
@@ -79,7 +79,7 @@
79
79
  "@babel/preset-react": "^7.24.7",
80
80
  "@babel/preset-typescript": "^7.24.7",
81
81
  "@carbon/test-utils": "^10.35.0",
82
- "@carbon/themes": "^11.49.0",
82
+ "@carbon/themes": "^11.50.0-rc.0",
83
83
  "@figma/code-connect": "^1.2.4",
84
84
  "@rollup/plugin-babel": "^6.0.0",
85
85
  "@rollup/plugin-commonjs": "^28.0.0",
@@ -146,5 +146,5 @@
146
146
  "**/*.scss",
147
147
  "**/*.css"
148
148
  ],
149
- "gitHead": "af9ae8856cd0db974257bf1015d684e1ed204514"
149
+ "gitHead": "0d87b91846d3b2a877f9f385f4f4b16214388315"
150
150
  }
@@ -0,0 +1,9 @@
1
+ // Code generated by @carbon/react. DO NOT EDIT.
2
+ //
3
+ // Copyright IBM Corp. 2025
4
+ //
5
+ // This source code is licensed under the Apache-2.0 license found in the
6
+ // LICENSE file in the root directory of this source tree.
7
+ //
8
+
9
+ @forward '@carbon/styles/scss/components/page-header';
@@ -0,0 +1,9 @@
1
+ // Code generated by @carbon/react. DO NOT EDIT.
2
+ //
3
+ // Copyright IBM Corp. 2025
4
+ //
5
+ // This source code is licensed under the Apache-2.0 license found in the
6
+ // LICENSE file in the root directory of this source tree.
7
+ //
8
+
9
+ @forward '@carbon/styles/scss/components/page-header/page-header';
package/telemetry.yml CHANGED
@@ -18,7 +18,6 @@ collect:
18
18
  - allowCustomValue
19
19
  - allowEmpty
20
20
  - aria-controls
21
- - aria-current
22
21
  - aria-label
23
22
  - aria-labelledby
24
23
  - ariaLabel
@@ -40,9 +39,11 @@ collect:
40
39
  - compareItems
41
40
  - condensed
42
41
  - contained
42
+ - count
43
43
  - danger
44
44
  - dangerDescription
45
45
  - datePickerType
46
+ - decorator
46
47
  - defaultChecked
47
48
  - defaultExpanded
48
49
  - defaultOpen
@@ -57,6 +58,7 @@ collect:
57
58
  - disableWheel
58
59
  - downshiftActions
59
60
  - downshiftProps
61
+ - dropShadow
60
62
  - element
61
63
  - enableCounter
62
64
  - enterDelayMs
@@ -78,6 +80,7 @@ collect:
78
80
  - hideCloseButton
79
81
  - hideLabel
80
82
  - hidePasswordLabel
83
+ - highContrast
81
84
  - href
82
85
  - iconDescription
83
86
  - id
@@ -138,6 +141,7 @@ collect:
138
141
  - onActionButtonClick
139
142
  - onAddFiles
140
143
  - onBlur
144
+ - onCancel
141
145
  - onChange
142
146
  - onClear
143
147
  - onClick
@@ -177,6 +181,7 @@ collect:
177
181
  - primaryButtonText
178
182
  - radio
179
183
  - readOnly
184
+ - ref
180
185
  - rel
181
186
  - render
182
187
  - renderIcon
@@ -217,6 +222,8 @@ collect:
217
222
  - titleId
218
223
  - titleText
219
224
  - tooltipAlignment
225
+ - tooltipDropShadow
226
+ - tooltipHighContrast
220
227
  - tooltipPosition
221
228
  - totalItems
222
229
  - translateWithId
@@ -236,8 +243,6 @@ collect:
236
243
  - onHeadingClick
237
244
  - renderExpando
238
245
  - renderToggle
239
- # AccordionSkeleton
240
- - count
241
246
  # ActionableNotification
242
247
  - closeOnEscape
243
248
  - hasFocus
@@ -254,6 +259,8 @@ collect:
254
259
  - ratio
255
260
  # Breadcrumb
256
261
  - noTrailingSlash
262
+ # BreadcrumbItem
263
+ - aria-current
257
264
  # ButtonSet
258
265
  - stacked
259
266
  # ChatButton
@@ -326,8 +333,8 @@ collect:
326
333
  - tileMaxHeight
327
334
  - tilePadding
328
335
  # FeatureFlags
329
- - enableExperimentalFocusWrapWithoutSentinels
330
336
  - enableDialogElement
337
+ - enableExperimentalFocusWrapWithoutSentinels
331
338
  - enableTreeviewControllable
332
339
  - enableV12DynamicFloatingStyles
333
340
  - enableV12Overflowmenu
@@ -369,7 +376,10 @@ collect:
369
376
  # HeaderPanel
370
377
  - onHeaderPanelFocus
371
378
  # IconButton
379
+ - badgeCount
372
380
  - wrapperClasses
381
+ # IconTab
382
+ - badgeIndicator
373
383
  # InlineLoading
374
384
  - onSuccess
375
385
  - successDelay
@@ -446,6 +456,9 @@ collect:
446
456
  - onMouseDown
447
457
  - requireTitle
448
458
  - wrapperClassName
459
+ # PageHeaderContent
460
+ - contextualActions
461
+ - pageActions
449
462
  # PageSelector
450
463
  - currentPage
451
464
  - totalPages
@@ -469,9 +482,8 @@ collect:
469
482
  - itemsShown
470
483
  - loop
471
484
  # Popover
485
+ - autoAlignBoundary
472
486
  - caret
473
- - dropShadow
474
- - highContrast
475
487
  - isTabTip
476
488
  # ProgressIndicator
477
489
  - currentIndex
@@ -485,6 +497,8 @@ collect:
485
497
  - noLabel
486
498
  # SelectItem
487
499
  - hidden
500
+ # ShapeIndicator
501
+ - textSize
488
502
  # SideNav
489
503
  - addMouseListeners
490
504
  - inert
@@ -513,6 +527,7 @@ collect:
513
527
  - unstable_valueUpper
514
528
  # SliderSkeleton
515
529
  - twoHandles
530
+ - unstable_ariaLabelHandleUpper
516
531
  # StructuredListCell
517
532
  - noWrap
518
533
  # SwitcherItem
@@ -520,7 +535,6 @@ collect:
520
535
  # Tab
521
536
  - renderButton
522
537
  # TableBatchActions
523
- - onCancel
524
538
  - onSelectAll
525
539
  - shouldShowBatchActions
526
540
  - totalCount
@@ -528,7 +542,7 @@ collect:
528
542
  # TableBody
529
543
  - aria-live
530
544
  # TableCell
531
- - hasSlugHeader
545
+ - hasAILabelHeader
532
546
  # TableExpandHeader
533
547
  - enableExpando
534
548
  - enableToggle
@@ -574,6 +588,8 @@ collect:
574
588
  - labelA
575
589
  - labelB
576
590
  - toggled
591
+ # Toggletip
592
+ - alignmentAxisOffset
577
593
  # TreeNode
578
594
  - defaultIsExpanded
579
595
  - depth
@@ -595,6 +611,7 @@ collect:
595
611
  - bottom-left
596
612
  - bottom-right
597
613
  - bottom-start
614
+ - center
598
615
  - end
599
616
  - left
600
617
  - left-bottom
@@ -612,14 +629,6 @@ collect:
612
629
  - top-left
613
630
  - top-right
614
631
  - top-start
615
- # General - aria-current
616
- - date
617
- - 'false'
618
- - location
619
- - page
620
- - step
621
- - time
622
- - 'true'
623
632
  # General - buttonKind
624
633
  - danger
625
634
  - danger--ghost
@@ -644,28 +653,47 @@ collect:
644
653
  - bottom
645
654
  - top
646
655
  # General - kind
656
+ - caution-major
657
+ - caution-minor
658
+ - cautious
659
+ - critical
647
660
  - danger
648
661
  - default
649
662
  - disclosed
663
+ - draft
650
664
  - error
665
+ - failed
651
666
  - ghost
667
+ - high
668
+ - in-progress
669
+ - incomplete
652
670
  - info
653
671
  - info-square
672
+ - informative
654
673
  - inline
674
+ - low
675
+ - medium
676
+ - normal
677
+ - not-started
655
678
  - on-page
679
+ - pending
656
680
  - primary
657
681
  - secondary
682
+ - stable
683
+ - succeeded
658
684
  - success
659
685
  - tertiary
686
+ - undefined
687
+ - unknown
660
688
  - warning
661
689
  - warning-alt
662
690
  # General - labelPosition
663
691
  - left
664
692
  - right
665
693
  # General - level
666
- - '0'
667
- - '1'
668
- - '2'
694
+ - "0"
695
+ - "1"
696
+ - "2"
669
697
  # General - loadingStatus
670
698
  - active
671
699
  - error
@@ -757,6 +785,8 @@ collect:
757
785
  - top
758
786
  - top-after-reopen
759
787
  # General - size
788
+ - "16"
789
+ - "20"
760
790
  - 2xl
761
791
  - 2xs
762
792
  - big
@@ -782,20 +812,16 @@ collect:
782
812
  - white
783
813
  # General - tooltipAlignment
784
814
  - bottom
785
- - bottom-end
786
815
  - bottom-left
787
816
  - bottom-right
788
- - bottom-start
789
817
  - center
790
818
  - end
791
819
  - left
792
820
  - right
793
821
  - start
794
822
  - top
795
- - top-end
796
823
  - top-left
797
824
  - top-right
798
- - top-start
799
825
  # General - tooltipPosition
800
826
  - bottom
801
827
  - left
@@ -834,6 +860,14 @@ collect:
834
860
  - 3x4
835
861
  - 4x3
836
862
  - 9x16
863
+ # BreadcrumbItem - aria-current
864
+ - date
865
+ - "false"
866
+ - location
867
+ - page
868
+ - step
869
+ - time
870
+ - "true"
837
871
  # ContentSwitcher - selectionMode
838
872
  - automatic
839
873
  - manual
@@ -854,6 +888,11 @@ collect:
854
888
  - actionable
855
889
  - inline
856
890
  - toast
891
+ # Popover - autoAlignBoundary
892
+ - clippingAncestors
893
+ # ShapeIndicator - textSize
894
+ - "12"
895
+ - "14"
857
896
  # TableBody - aria-live
858
897
  - assertive
859
898
  - off