@carbon/react 1.79.0-rc.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.
- package/.playwright/INTERNAL_AVT_REPORT_DO_NOT_USE.json +919 -863
- package/es/components/CodeSnippet/CodeSnippet.js +1 -1
- package/es/components/ComposedModal/ComposedModal.d.ts +6 -0
- package/es/components/ComposedModal/ModalFooter.d.ts +6 -0
- package/es/components/ContainedList/index.js +1 -1
- package/es/components/DataTable/DataTable.d.ts +3 -1
- package/es/components/DatePicker/DatePicker.d.ts +1 -1
- package/es/components/DatePicker/DatePicker.js +1 -1
- package/es/components/FluidTextArea/FluidTextArea.Skeleton.d.ts +6 -0
- package/es/components/Layer/LayerLevel.d.ts +6 -0
- package/es/components/Menu/Menu.d.ts +1 -1
- package/es/components/Menu/MenuItem.d.ts +1 -1
- package/es/components/Modal/Modal.js +1 -1
- package/es/components/ModalWrapper/ModalWrapper.d.ts +1 -1
- package/es/components/ModalWrapper/ModalWrapper.js +2 -1
- package/es/components/Notification/Notification.js +1 -1
- package/es/components/NumberInput/NumberInput.d.ts +1 -1
- package/es/components/OverflowMenu/OverflowMenu.js +1 -1
- package/es/components/OverflowMenuItem/OverflowMenuItem.js +1 -3
- package/es/components/OverflowMenuV2/index.js +1 -1
- package/es/components/PageHeader/PageHeader.d.ts +101 -0
- package/es/components/PageHeader/PageHeader.js +241 -0
- package/es/components/PageHeader/index.d.ts +8 -0
- package/es/components/PageHeader/index.js +8 -0
- package/es/components/PasswordInput/index.d.ts +6 -0
- package/es/components/Popover/index.js +1 -1
- package/es/components/Slider/SliderHandles.d.ts +6 -0
- package/es/components/Tag/Tag.js +2 -2
- package/es/components/Text/createTextComponent.js +1 -1
- package/es/components/TextArea/TextArea.d.ts +3 -3
- package/es/components/TextArea/TextArea.js +5 -2
- package/es/components/TextInput/ControlledPasswordInput.d.ts +6 -0
- package/es/components/TextInput/ControlledPasswordInput.js +1 -1
- package/es/components/TextInput/PasswordInput.d.ts +6 -0
- package/es/components/TextInput/index.js +1 -1
- package/es/components/Tile/Tile.d.ts +1 -1
- package/es/components/Tile/Tile.js +1 -4
- package/es/components/UIShell/Switcher.d.ts +1 -7
- package/es/components/UIShell/SwitcherDivider.d.ts +6 -0
- package/es/components/UIShell/SwitcherItem.d.ts +6 -0
- package/es/index.d.ts +5 -1
- package/es/index.js +3 -1
- package/es/internal/FloatingMenu.js +2 -2
- package/es/internal/PolymorphicProps.d.ts +6 -0
- package/es/internal/deprecateFieldOnObject.d.ts +12 -0
- package/es/internal/deprecateFieldOnObject.js +4 -4
- package/es/internal/useControllableState.js +2 -2
- package/es/internal/useEvent.js +1 -1
- package/es/internal/useIsomorphicEffect.d.ts +10 -0
- package/es/internal/useIsomorphicEffect.js +2 -3
- package/es/internal/useMergedRefs.d.ts +9 -6
- package/es/internal/useMergedRefs.js +8 -9
- package/es/internal/useNoInteractiveChildren.js +2 -2
- package/es/internal/useSavedCallback.d.ts +15 -0
- package/es/internal/useSavedCallback.js +9 -12
- package/es/internal/warning.d.ts +17 -0
- package/es/internal/warning.js +16 -12
- package/es/internal/wrapFocus.js +1 -1
- package/es/prop-types/isRequiredOneOf.js +1 -1
- package/es/prop-types/requiredIfGivenPropIsTruthy.js +1 -1
- package/es/tools/events.js +1 -6
- package/es/tools/toggleClass.js +6 -0
- package/es/types/common.d.ts +6 -0
- package/lib/components/CodeSnippet/CodeSnippet.js +1 -1
- package/lib/components/ComposedModal/ComposedModal.d.ts +6 -0
- package/lib/components/ComposedModal/ModalFooter.d.ts +6 -0
- package/lib/components/ContainedList/index.js +1 -1
- package/lib/components/DataTable/DataTable.d.ts +3 -1
- package/lib/components/DatePicker/DatePicker.d.ts +1 -1
- package/lib/components/DatePicker/DatePicker.js +1 -1
- package/lib/components/FluidTextArea/FluidTextArea.Skeleton.d.ts +6 -0
- package/lib/components/Layer/LayerLevel.d.ts +6 -0
- package/lib/components/Menu/Menu.d.ts +1 -1
- package/lib/components/Menu/MenuItem.d.ts +1 -1
- package/lib/components/Modal/Modal.js +1 -1
- package/lib/components/ModalWrapper/ModalWrapper.d.ts +1 -1
- package/lib/components/ModalWrapper/ModalWrapper.js +2 -1
- package/lib/components/Notification/Notification.js +1 -1
- package/lib/components/NumberInput/NumberInput.d.ts +1 -1
- package/lib/components/OverflowMenu/OverflowMenu.js +1 -1
- package/lib/components/OverflowMenuItem/OverflowMenuItem.js +1 -3
- package/lib/components/OverflowMenuV2/index.js +1 -1
- package/lib/components/PageHeader/PageHeader.d.ts +101 -0
- package/lib/components/PageHeader/PageHeader.js +260 -0
- package/lib/components/PageHeader/index.d.ts +8 -0
- package/lib/components/PageHeader/index.js +25 -0
- package/lib/components/PasswordInput/index.d.ts +6 -0
- package/lib/components/Popover/index.js +1 -1
- package/lib/components/Slider/SliderHandles.d.ts +6 -0
- package/lib/components/Tag/Tag.js +2 -2
- package/lib/components/Text/createTextComponent.js +1 -1
- package/lib/components/TextArea/TextArea.d.ts +3 -3
- package/lib/components/TextArea/TextArea.js +4 -1
- package/lib/components/TextInput/ControlledPasswordInput.d.ts +6 -0
- package/lib/components/TextInput/ControlledPasswordInput.js +1 -1
- package/lib/components/TextInput/PasswordInput.d.ts +6 -0
- package/lib/components/TextInput/index.js +1 -1
- package/lib/components/Tile/Tile.d.ts +1 -1
- package/lib/components/Tile/Tile.js +1 -4
- package/lib/components/UIShell/Switcher.d.ts +1 -7
- package/lib/components/UIShell/SwitcherDivider.d.ts +6 -0
- package/lib/components/UIShell/SwitcherItem.d.ts +6 -0
- package/lib/index.d.ts +5 -1
- package/lib/index.js +62 -57
- package/lib/internal/FloatingMenu.js +2 -2
- package/lib/internal/PolymorphicProps.d.ts +6 -0
- package/lib/internal/deprecateFieldOnObject.d.ts +12 -0
- package/lib/internal/deprecateFieldOnObject.js +4 -4
- package/lib/internal/useControllableState.js +2 -2
- package/lib/internal/useEvent.js +1 -1
- package/lib/internal/useIsomorphicEffect.d.ts +10 -0
- package/lib/internal/useIsomorphicEffect.js +2 -3
- package/lib/internal/useMergedRefs.d.ts +9 -6
- package/lib/internal/useMergedRefs.js +8 -9
- package/lib/internal/useNoInteractiveChildren.js +2 -2
- package/lib/internal/useSavedCallback.d.ts +15 -0
- package/lib/internal/useSavedCallback.js +9 -12
- package/lib/internal/warning.d.ts +17 -0
- package/lib/internal/warning.js +16 -12
- package/lib/internal/wrapFocus.js +1 -1
- package/lib/prop-types/isRequiredOneOf.js +1 -1
- package/lib/prop-types/requiredIfGivenPropIsTruthy.js +1 -1
- package/lib/tools/events.js +1 -6
- package/lib/tools/toggleClass.js +6 -0
- package/lib/types/common.d.ts +6 -0
- package/package.json +8 -8
- package/scss/components/page-header/_index.scss +9 -0
- package/scss/components/page-header/_page-header.scss +9 -0
- package/telemetry.yml +62 -23
|
@@ -12,24 +12,21 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
12
12
|
var React = require('react');
|
|
13
13
|
|
|
14
14
|
/**
|
|
15
|
-
*
|
|
16
|
-
*
|
|
17
|
-
*
|
|
18
|
-
*
|
|
15
|
+
* Returns a stable callback reference that always points to the latest version
|
|
16
|
+
* of a callback. This is useful when you want to avoid including the callback
|
|
17
|
+
* in dependency arrays while still ensuring the latest callback implementation
|
|
18
|
+
* is used.
|
|
19
19
|
*
|
|
20
|
-
* @param
|
|
21
|
-
* @returns {Function}
|
|
20
|
+
* @param callback - The callback to track.
|
|
22
21
|
*/
|
|
23
|
-
|
|
22
|
+
const useSavedCallback = callback => {
|
|
24
23
|
const savedCallback = React.useRef(callback);
|
|
25
24
|
React.useEffect(() => {
|
|
26
25
|
savedCallback.current = callback;
|
|
27
|
-
});
|
|
26
|
+
}, [callback]);
|
|
28
27
|
return React.useCallback(function () {
|
|
29
|
-
|
|
30
|
-
return savedCallback.current(...arguments);
|
|
31
|
-
}
|
|
28
|
+
return savedCallback.current ? savedCallback.current(...arguments) : undefined;
|
|
32
29
|
}, []);
|
|
33
|
-
}
|
|
30
|
+
};
|
|
34
31
|
|
|
35
32
|
exports.useSavedCallback = useSavedCallback;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright IBM Corp. 2016, 2025
|
|
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
|
+
*/
|
|
7
|
+
/**
|
|
8
|
+
* Logs a warning.
|
|
9
|
+
*
|
|
10
|
+
* The warning is only logged if the condition is not met and
|
|
11
|
+
* `process.env.NODE_ENV !== 'production'` is truthy.
|
|
12
|
+
*
|
|
13
|
+
* @param condition - Condition to evaluate.
|
|
14
|
+
* @param message - Warning message.
|
|
15
|
+
* @throws Error if no `message` is provided.
|
|
16
|
+
*/
|
|
17
|
+
export declare const warning: (condition: boolean, message: string) => void;
|
package/lib/internal/warning.js
CHANGED
|
@@ -9,21 +9,25 @@
|
|
|
9
9
|
|
|
10
10
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
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
|
-
} :
|
|
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 !==
|
|
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 !==
|
|
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 !==
|
|
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++) {
|
package/lib/tools/events.js
CHANGED
|
@@ -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
|
package/lib/tools/toggleClass.js
CHANGED
|
@@ -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);
|
package/lib/types/common.d.ts
CHANGED
|
@@ -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.
|
|
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",
|
|
@@ -51,10 +51,10 @@
|
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"@babel/runtime": "^7.24.7",
|
|
54
|
-
"@carbon/feature-flags": "^0.25.0
|
|
55
|
-
"@carbon/icons-react": "^11.
|
|
56
|
-
"@carbon/layout": "^11.
|
|
57
|
-
"@carbon/styles": "^1.
|
|
54
|
+
"@carbon/feature-flags": "^0.25.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": "^
|
|
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.
|
|
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": "
|
|
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
|
-
-
|
|
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
|
-
-
|
|
667
|
-
-
|
|
668
|
-
-
|
|
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
|