@carbon/react 1.44.0-rc.0 → 1.44.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 (42) hide show
  1. package/.playwright/INTERNAL_AVT_REPORT_DO_NOT_USE.json +969 -1010
  2. package/es/components/Accordion/AccordionItem.d.ts +1 -1
  3. package/es/components/Accordion/AccordionItem.js +19 -15
  4. package/es/components/Checkbox/Checkbox.d.ts +4 -0
  5. package/es/components/Checkbox/Checkbox.js +15 -2
  6. package/es/components/CheckboxGroup/CheckboxGroup.js +17 -2
  7. package/es/components/DataTable/tools/sorting.js +1 -1
  8. package/es/components/FileUploader/FileUploader.js +5 -3
  9. package/es/components/Grid/Column.js +11 -1
  10. package/es/components/MenuButton/index.js +7 -1
  11. package/es/components/RadioButton/RadioButton.d.ts +4 -0
  12. package/es/components/RadioButton/RadioButton.js +15 -2
  13. package/es/components/RadioButtonGroup/RadioButtonGroup.d.ts +4 -0
  14. package/es/components/RadioButtonGroup/RadioButtonGroup.js +17 -2
  15. package/es/components/Select/Select.d.ts +1 -1
  16. package/es/components/Slug/index.js +1 -1
  17. package/es/components/Tile/Tile.d.ts +37 -0
  18. package/es/components/Tile/Tile.js +110 -13
  19. package/es/components/UIShell/Content.d.ts +296 -0
  20. package/es/components/UIShell/Content.js +1 -2
  21. package/es/components/UIShell/SideNav.d.ts +1 -1
  22. package/lib/components/Accordion/AccordionItem.d.ts +1 -1
  23. package/lib/components/Accordion/AccordionItem.js +18 -14
  24. package/lib/components/Checkbox/Checkbox.d.ts +4 -0
  25. package/lib/components/Checkbox/Checkbox.js +15 -2
  26. package/lib/components/CheckboxGroup/CheckboxGroup.js +17 -2
  27. package/lib/components/DataTable/tools/sorting.js +1 -1
  28. package/lib/components/FileUploader/FileUploader.js +5 -3
  29. package/lib/components/Grid/Column.js +11 -1
  30. package/lib/components/MenuButton/index.js +7 -1
  31. package/lib/components/RadioButton/RadioButton.d.ts +4 -0
  32. package/lib/components/RadioButton/RadioButton.js +15 -2
  33. package/lib/components/RadioButtonGroup/RadioButtonGroup.d.ts +4 -0
  34. package/lib/components/RadioButtonGroup/RadioButtonGroup.js +17 -2
  35. package/lib/components/Select/Select.d.ts +1 -1
  36. package/lib/components/Slug/index.js +1 -1
  37. package/lib/components/Tile/Tile.d.ts +37 -0
  38. package/lib/components/Tile/Tile.js +110 -13
  39. package/lib/components/UIShell/Content.d.ts +296 -0
  40. package/lib/components/UIShell/Content.js +1 -2
  41. package/lib/components/UIShell/SideNav.d.ts +1 -1
  42. package/package.json +5 -5
@@ -34,20 +34,26 @@ var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
34
34
  var PropTypes__default = /*#__PURE__*/_interopDefaultLegacy(PropTypes);
35
35
  var cx__default = /*#__PURE__*/_interopDefaultLegacy(cx);
36
36
 
37
- var _CheckboxCheckedFille, _Checkbox, _ChevronDown, _ChevronDown2;
37
+ var _rect, _path, _CheckboxCheckedFille, _Checkbox, _ChevronDown, _ChevronDown2;
38
38
  const Tile = /*#__PURE__*/React__default["default"].forwardRef(function Tile(_ref, ref) {
39
39
  let {
40
40
  children,
41
41
  className,
42
42
  light = false,
43
+ slug,
44
+ hasRoundedCorners = false,
43
45
  ...rest
44
46
  } = _ref;
45
47
  const prefix = usePrefix.usePrefix();
46
- const tileClasses = cx__default["default"](`${prefix}--tile`, light && `${prefix}--tile--light`, className);
48
+ const tileClasses = cx__default["default"](`${prefix}--tile`, {
49
+ [`${prefix}--tile--light`]: light,
50
+ [`${prefix}--tile--slug`]: slug,
51
+ [`${prefix}--tile--slug-rounded`]: slug && hasRoundedCorners
52
+ }, className);
47
53
  return /*#__PURE__*/React__default["default"].createElement("div", _rollupPluginBabelHelpers["extends"]({
48
54
  className: tileClasses,
49
55
  ref: ref
50
- }, rest), children);
56
+ }, rest), children, slug);
51
57
  });
52
58
  Tile.displayName = 'Tile';
53
59
  Tile.propTypes = {
@@ -59,13 +65,22 @@ Tile.propTypes = {
59
65
  * The CSS class names.
60
66
  */
61
67
  className: PropTypes__default["default"].string,
68
+ /**
69
+ * Specify if the `Tile` component should be rendered with rounded corners. Only valid
70
+ * when `slug` prop is present
71
+ */
72
+ hasRoundedCorners: PropTypes__default["default"].bool,
62
73
  /**
63
74
  * `true` to use the light version. For use on $ui-01 backgrounds only.
64
75
  * Don't use this to make tile background color same as container background color.
65
76
  *
66
77
  * @deprecated
67
78
  */
68
- light: deprecate["default"](PropTypes__default["default"].bool, 'The `light` prop for `Tile` is no longer needed and has been deprecated. It will be removed in the next major release. Use the Layer component instead.')
79
+ light: deprecate["default"](PropTypes__default["default"].bool, 'The `light` prop for `Tile` is no longer needed and has been deprecated. It will be removed in the next major release. Use the Layer component instead.'),
80
+ /**
81
+ * Provide a `Slug` component to be rendered inside the `Tile` component
82
+ */
83
+ slug: PropTypes__default["default"].node
69
84
  };
70
85
  const ClickableTile = /*#__PURE__*/React__default["default"].forwardRef(function ClickableTile(_ref2, ref) {
71
86
  let {
@@ -78,10 +93,17 @@ const ClickableTile = /*#__PURE__*/React__default["default"].forwardRef(function
78
93
  onClick = () => {},
79
94
  onKeyDown = () => {},
80
95
  renderIcon: Icon,
96
+ hasRoundedCorners,
97
+ slug,
81
98
  ...rest
82
99
  } = _ref2;
83
100
  const prefix = usePrefix.usePrefix();
84
- const classes = cx__default["default"](`${prefix}--tile`, `${prefix}--tile--clickable`, clicked && `${prefix}--tile--is-clicked`, light && `${prefix}--tile--light`, className);
101
+ const classes = cx__default["default"](`${prefix}--tile`, `${prefix}--tile--clickable`, {
102
+ [`${prefix}--tile--is-clicked`]: clicked,
103
+ [`${prefix}--tile--light`]: light,
104
+ [`${prefix}--tile--slug`]: slug,
105
+ [`${prefix}--tile--slug-rounded`]: slug && hasRoundedCorners
106
+ }, className);
85
107
  const [isSelected, setIsSelected] = React.useState(clicked);
86
108
  function handleOnClick(evt) {
87
109
  evt?.persist?.();
@@ -95,6 +117,25 @@ const ClickableTile = /*#__PURE__*/React__default["default"].forwardRef(function
95
117
  }
96
118
  onKeyDown(evt);
97
119
  }
120
+
121
+ // To Do: Replace with an an icon from `@carbon/react`
122
+ // since the hollow slug in `ClickableTile` is not interactive
123
+ const hollowSlugIcon = /*#__PURE__*/React__default["default"].createElement("svg", {
124
+ className: `${prefix}--tile--slug-icon`,
125
+ width: "24",
126
+ height: "24",
127
+ viewBox: "0 0 24 24",
128
+ fill: "none",
129
+ xmlns: "http://www.w3.org/2000/svg"
130
+ }, _rect || (_rect = /*#__PURE__*/React__default["default"].createElement("rect", {
131
+ x: "0.5",
132
+ y: "0.5",
133
+ width: "23",
134
+ height: "23"
135
+ })), _path || (_path = /*#__PURE__*/React__default["default"].createElement("path", {
136
+ d: "M13.2436 16H11.5996L10.9276 13.864H7.95164L7.29164 16H5.68364L8.49164 7.624H10.4596L13.2436 16ZM10.5436 12.508L9.46364 9.064H9.40364L8.33564 12.508H10.5436ZM17.9341 16H14.1301V14.728H15.2341V8.896H14.1301V7.624H17.9341V8.896H16.8181V14.728H17.9341V16Z",
137
+ fill: "#161616"
138
+ })));
98
139
  const v12DefaultIcons = index.useFeatureFlag('enable-v12-tile-default-icons');
99
140
  if (v12DefaultIcons) {
100
141
  if (!Icon) {
@@ -116,7 +157,9 @@ const ClickableTile = /*#__PURE__*/React__default["default"].forwardRef(function
116
157
  onKeyDown: handleOnKeyDown,
117
158
  ref: ref,
118
159
  disabled: disabled
119
- }, rest), children, Icon && /*#__PURE__*/React__default["default"].createElement(Icon, {
160
+ }, rest), slug ? /*#__PURE__*/React__default["default"].createElement("div", {
161
+ className: `${prefix}--tile-content`
162
+ }, children) : children, slug && hollowSlugIcon, Icon && /*#__PURE__*/React__default["default"].createElement(Icon, {
120
163
  className: iconClasses,
121
164
  "aria-hidden": "true"
122
165
  }));
@@ -139,6 +182,11 @@ ClickableTile.propTypes = {
139
182
  * Specify whether the ClickableTile should be disabled
140
183
  */
141
184
  disabled: PropTypes__default["default"].bool,
185
+ /**
186
+ * Specify if the `ClickableTile` component should be rendered with rounded corners.
187
+ * Only valid when `slug` prop is present
188
+ */
189
+ hasRoundedCorners: PropTypes__default["default"].bool,
142
190
  /**
143
191
  * The href for the link.
144
192
  */
@@ -180,6 +228,8 @@ const SelectableTile = /*#__PURE__*/React__default["default"].forwardRef(functio
180
228
  selected = false,
181
229
  tabIndex = 0,
182
230
  title = 'title',
231
+ slug,
232
+ hasRoundedCorners,
183
233
  ...rest
184
234
  } = _ref3;
185
235
  const prefix = usePrefix.usePrefix();
@@ -187,12 +237,21 @@ const SelectableTile = /*#__PURE__*/React__default["default"].forwardRef(functio
187
237
  const keyDownHandler = onKeyDown;
188
238
  const [isSelected, setIsSelected] = React.useState(selected);
189
239
  const [prevSelected, setPrevSelected] = React.useState(selected);
190
- const classes = cx__default["default"](`${prefix}--tile`, `${prefix}--tile--selectable`, isSelected && `${prefix}--tile--is-selected`, light && `${prefix}--tile--light`, disabled && `${prefix}--tile--disabled`, className);
240
+ const classes = cx__default["default"](`${prefix}--tile`, `${prefix}--tile--selectable`, {
241
+ [`${prefix}--tile--is-selected`]: isSelected,
242
+ [`${prefix}--tile--light`]: light,
243
+ [`${prefix}--tile--disabled`]: disabled,
244
+ [`${prefix}--tile--slug`]: slug,
245
+ [`${prefix}--tile--slug-rounded`]: slug && hasRoundedCorners
246
+ }, className);
191
247
 
192
248
  // TODO: rename to handleClick when handleClick prop is deprecated
193
249
  function handleOnClick(evt) {
194
250
  evt.preventDefault();
195
251
  evt?.persist?.();
252
+ if (slug && slugRef.current && slugRef.current.contains(evt.target)) {
253
+ return;
254
+ }
196
255
  setIsSelected(!isSelected);
197
256
  clickHandler(evt);
198
257
  onChange(evt);
@@ -216,6 +275,16 @@ const SelectableTile = /*#__PURE__*/React__default["default"].forwardRef(functio
216
275
  setIsSelected(selected);
217
276
  setPrevSelected(selected);
218
277
  }
278
+
279
+ // Slug is always size `xs`
280
+ const slugRef = React.useRef(null);
281
+ let normalizedSlug;
282
+ if (slug) {
283
+ normalizedSlug = /*#__PURE__*/React__default["default"].cloneElement(slug, {
284
+ size: 'xs',
285
+ ref: slugRef
286
+ });
287
+ }
219
288
  return (
220
289
  /*#__PURE__*/
221
290
  // eslint-disable-next-line jsx-a11y/interactive-supports-focus
@@ -238,10 +307,9 @@ const SelectableTile = /*#__PURE__*/React__default["default"].forwardRef(functio
238
307
  as: "label",
239
308
  htmlFor: id,
240
309
  className: `${prefix}--tile-content`
241
- }, children))
310
+ }, children), normalizedSlug)
242
311
  );
243
312
  });
244
- SelectableTile.displayName = 'SelectableTile';
245
313
  SelectableTile.propTypes = {
246
314
  children: PropTypes__default["default"].node,
247
315
  className: PropTypes__default["default"].string,
@@ -249,6 +317,11 @@ SelectableTile.propTypes = {
249
317
  * Specify whether the SelectableTile should be disabled
250
318
  */
251
319
  disabled: PropTypes__default["default"].bool,
320
+ /**
321
+ * Specify if the `SelectableTile` component should be rendered with rounded corners.
322
+ * Only valid when `slug` prop is present
323
+ */
324
+ hasRoundedCorners: PropTypes__default["default"].bool,
252
325
  /**
253
326
  * The ID of the `<input>`.
254
327
  */
@@ -279,6 +352,10 @@ SelectableTile.propTypes = {
279
352
  * `true` to select this tile.
280
353
  */
281
354
  selected: PropTypes__default["default"].bool,
355
+ /**
356
+ * Provide a `Slug` component to be rendered inside the `SelectableTile` component
357
+ */
358
+ slug: PropTypes__default["default"].node,
282
359
  /**
283
360
  * Specify the tab index of the wrapper element
284
361
  */
@@ -310,6 +387,8 @@ const ExpandableTile = /*#__PURE__*/React__default["default"].forwardRef(functio
310
387
  tileCollapsedLabel,
311
388
  tileExpandedLabel,
312
389
  light,
390
+ slug,
391
+ hasRoundedCorners,
313
392
  ...rest
314
393
  } = _ref4;
315
394
  const [isTileMaxHeight, setIsTileMaxHeight] = React.useState(tileMaxHeight);
@@ -365,7 +444,12 @@ const ExpandableTile = /*#__PURE__*/React__default["default"].forwardRef(functio
365
444
  [`${prefix}--tile--is-expanded`]: isExpanded,
366
445
  [`${prefix}--tile--light`]: light
367
446
  }, className);
368
- const interactiveClassNames = cx__default["default"](`${prefix}--tile`, `${prefix}--tile--expandable`, `${prefix}--tile--expandable--interactive`, isExpanded && `${prefix}--tile--is-expanded`, light && `${prefix}--tile--light`, className);
447
+ const interactiveClassNames = cx__default["default"](`${prefix}--tile`, `${prefix}--tile--expandable`, `${prefix}--tile--expandable--interactive`, {
448
+ [`${prefix}--tile--is-expanded`]: isExpanded,
449
+ [`${prefix}--tile--light`]: light,
450
+ [`${prefix}--tile--slug`]: slug,
451
+ [`${prefix}--tile--slug-rounded`]: slug && hasRoundedCorners
452
+ }, className);
369
453
  const chevronInteractiveClassNames = cx__default["default"](`${prefix}--tile__chevron`, `${prefix}--tile__chevron--interactive`);
370
454
  const childrenAsArray = getChildren();
371
455
  useIsomorphicEffect["default"](() => {
@@ -391,10 +475,10 @@ const ExpandableTile = /*#__PURE__*/React__default["default"].forwardRef(functio
391
475
 
392
476
  // Interactive elements or elements that are given a role should be treated
393
477
  // the same because elements with a role can not be rendered inside a `button`
394
- if (!useNoInteractiveChildren.getInteractiveContent(belowTheFold.current) && !useNoInteractiveChildren.getRoleContent(belowTheFold.current) && !useNoInteractiveChildren.getInteractiveContent(aboveTheFold.current) && !useNoInteractiveChildren.getRoleContent(aboveTheFold.current)) {
478
+ if (!useNoInteractiveChildren.getInteractiveContent(belowTheFold.current) && !useNoInteractiveChildren.getRoleContent(belowTheFold.current) && !useNoInteractiveChildren.getInteractiveContent(aboveTheFold.current) && !useNoInteractiveChildren.getRoleContent(aboveTheFold.current) && !slug) {
395
479
  setInteractive(false);
396
480
  }
397
- }, []);
481
+ }, [slug]);
398
482
  useIsomorphicEffect["default"](() => {
399
483
  if (!tile.current) {
400
484
  return;
@@ -417,13 +501,21 @@ const ExpandableTile = /*#__PURE__*/React__default["default"].forwardRef(functio
417
501
  return () => resizeObserver.disconnect();
418
502
  }, []);
419
503
  const belowTheFoldId = useId.useId('expandable-tile-interactive');
504
+
505
+ // Slug is always size `xs`
506
+ let normalizedSlug;
507
+ if (slug) {
508
+ normalizedSlug = /*#__PURE__*/React__default["default"].cloneElement(slug, {
509
+ size: 'xs'
510
+ });
511
+ }
420
512
  return interactive ? /*#__PURE__*/React__default["default"].createElement("div", _rollupPluginBabelHelpers["extends"]({
421
513
  // @ts-expect-error: Needlesly strict & deep typing for the element type
422
514
  ref: ref,
423
515
  className: interactiveClassNames
424
516
  }, rest), /*#__PURE__*/React__default["default"].createElement("div", {
425
517
  ref: tileContent
426
- }, /*#__PURE__*/React__default["default"].createElement("div", {
518
+ }, normalizedSlug, /*#__PURE__*/React__default["default"].createElement("div", {
427
519
  ref: aboveTheFold,
428
520
  className: `${prefix}--tile-content`
429
521
  }, childrenAsArray[0]), /*#__PURE__*/React__default["default"].createElement("button", {
@@ -469,6 +561,11 @@ ExpandableTile.propTypes = {
469
561
  * `true` if the tile is expanded.
470
562
  */
471
563
  expanded: PropTypes__default["default"].bool,
564
+ /**
565
+ * Specify if the `ExpandableTile` component should be rendered with rounded corners.
566
+ * Only valid when `slug` prop is present
567
+ */
568
+ hasRoundedCorners: PropTypes__default["default"].bool,
472
569
  /**
473
570
  * An ID that can be provided to aria-labelledby
474
571
  */
@@ -0,0 +1,296 @@
1
+ /**
2
+ * Copyright IBM Corp. 2016, 2023
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
+ import PropTypes from 'prop-types';
8
+ import React, { HTMLAttributes, ReactNode } from 'react';
9
+ export type ContentProps = HTMLAttributes<HTMLElement> & {
10
+ /**
11
+ * Provide children nodes to be rendered in the content container
12
+ */
13
+ children?: ReactNode;
14
+ /**
15
+ * Optionally provide a custom class name that is applied to the container
16
+ */
17
+ className?: string;
18
+ /**
19
+ * Optionally specify the tag of the content node. Defaults to `main`
20
+ */
21
+ tagName?: string;
22
+ };
23
+ declare const Content: {
24
+ ({ className: customClassName, children, tagName, ...rest }: ContentProps): React.DOMElement<{
25
+ className: string;
26
+ defaultChecked?: boolean | undefined;
27
+ defaultValue?: string | number | readonly string[] | undefined;
28
+ suppressContentEditableWarning?: boolean | undefined;
29
+ suppressHydrationWarning?: boolean | undefined;
30
+ accessKey?: string | undefined;
31
+ contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
32
+ contextMenu?: string | undefined;
33
+ dir?: string | undefined;
34
+ draggable?: (boolean | "true" | "false") | undefined;
35
+ hidden?: boolean | undefined;
36
+ id?: string | undefined;
37
+ lang?: string | undefined;
38
+ placeholder?: string | undefined;
39
+ slot?: string | undefined;
40
+ spellCheck?: (boolean | "true" | "false") | undefined;
41
+ style?: React.CSSProperties | undefined;
42
+ tabIndex?: number | undefined;
43
+ title?: string | undefined;
44
+ translate?: "no" | "yes" | undefined;
45
+ radioGroup?: string | undefined;
46
+ role?: React.AriaRole | undefined;
47
+ about?: string | undefined;
48
+ datatype?: string | undefined;
49
+ inlist?: any;
50
+ prefix?: string | undefined;
51
+ property?: string | undefined;
52
+ resource?: string | undefined;
53
+ typeof?: string | undefined;
54
+ vocab?: string | undefined;
55
+ autoCapitalize?: string | undefined;
56
+ autoCorrect?: string | undefined;
57
+ autoSave?: string | undefined;
58
+ color?: string | undefined;
59
+ itemProp?: string | undefined;
60
+ itemScope?: boolean | undefined;
61
+ itemType?: string | undefined;
62
+ itemID?: string | undefined;
63
+ itemRef?: string | undefined;
64
+ results?: number | undefined;
65
+ security?: string | undefined;
66
+ unselectable?: "on" | "off" | undefined;
67
+ inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
68
+ is?: string | undefined;
69
+ 'aria-activedescendant'?: string | undefined;
70
+ 'aria-atomic'?: (boolean | "true" | "false") | undefined;
71
+ 'aria-autocomplete'?: "list" | "none" | "inline" | "both" | undefined;
72
+ 'aria-busy'?: (boolean | "true" | "false") | undefined;
73
+ 'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
74
+ 'aria-colcount'?: number | undefined;
75
+ 'aria-colindex'?: number | undefined;
76
+ 'aria-colspan'?: number | undefined;
77
+ 'aria-controls'?: string | undefined;
78
+ 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
79
+ 'aria-describedby'?: string | undefined;
80
+ 'aria-details'?: string | undefined;
81
+ 'aria-disabled'?: (boolean | "true" | "false") | undefined;
82
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
83
+ 'aria-errormessage'?: string | undefined;
84
+ 'aria-expanded'?: (boolean | "true" | "false") | undefined;
85
+ 'aria-flowto'?: string | undefined;
86
+ 'aria-grabbed'?: (boolean | "true" | "false") | undefined;
87
+ 'aria-haspopup'?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
88
+ 'aria-hidden'?: (boolean | "true" | "false") | undefined;
89
+ 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
90
+ 'aria-keyshortcuts'?: string | undefined;
91
+ 'aria-label'?: string | undefined;
92
+ 'aria-labelledby'?: string | undefined;
93
+ 'aria-level'?: number | undefined;
94
+ 'aria-live'?: "off" | "assertive" | "polite" | undefined;
95
+ 'aria-modal'?: (boolean | "true" | "false") | undefined;
96
+ 'aria-multiline'?: (boolean | "true" | "false") | undefined;
97
+ 'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
98
+ 'aria-orientation'?: "horizontal" | "vertical" | undefined;
99
+ 'aria-owns'?: string | undefined;
100
+ 'aria-placeholder'?: string | undefined;
101
+ 'aria-posinset'?: number | undefined;
102
+ 'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
103
+ 'aria-readonly'?: (boolean | "true" | "false") | undefined;
104
+ 'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
105
+ 'aria-required'?: (boolean | "true" | "false") | undefined;
106
+ 'aria-roledescription'?: string | undefined;
107
+ 'aria-rowcount'?: number | undefined;
108
+ 'aria-rowindex'?: number | undefined;
109
+ 'aria-rowspan'?: number | undefined;
110
+ 'aria-selected'?: (boolean | "true" | "false") | undefined;
111
+ 'aria-setsize'?: number | undefined;
112
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
113
+ 'aria-valuemax'?: number | undefined;
114
+ 'aria-valuemin'?: number | undefined;
115
+ 'aria-valuenow'?: number | undefined;
116
+ 'aria-valuetext'?: string | undefined;
117
+ dangerouslySetInnerHTML?: {
118
+ __html: string;
119
+ } | undefined;
120
+ onCopy?: React.ClipboardEventHandler<HTMLElement> | undefined;
121
+ onCopyCapture?: React.ClipboardEventHandler<HTMLElement> | undefined;
122
+ onCut?: React.ClipboardEventHandler<HTMLElement> | undefined;
123
+ onCutCapture?: React.ClipboardEventHandler<HTMLElement> | undefined;
124
+ onPaste?: React.ClipboardEventHandler<HTMLElement> | undefined;
125
+ onPasteCapture?: React.ClipboardEventHandler<HTMLElement> | undefined;
126
+ onCompositionEnd?: React.CompositionEventHandler<HTMLElement> | undefined;
127
+ onCompositionEndCapture?: React.CompositionEventHandler<HTMLElement> | undefined;
128
+ onCompositionStart?: React.CompositionEventHandler<HTMLElement> | undefined;
129
+ onCompositionStartCapture?: React.CompositionEventHandler<HTMLElement> | undefined;
130
+ onCompositionUpdate?: React.CompositionEventHandler<HTMLElement> | undefined;
131
+ onCompositionUpdateCapture?: React.CompositionEventHandler<HTMLElement> | undefined;
132
+ onFocus?: React.FocusEventHandler<HTMLElement> | undefined;
133
+ onFocusCapture?: React.FocusEventHandler<HTMLElement> | undefined;
134
+ onBlur?: React.FocusEventHandler<HTMLElement> | undefined;
135
+ onBlurCapture?: React.FocusEventHandler<HTMLElement> | undefined;
136
+ onChange?: React.FormEventHandler<HTMLElement> | undefined;
137
+ onChangeCapture?: React.FormEventHandler<HTMLElement> | undefined;
138
+ onBeforeInput?: React.FormEventHandler<HTMLElement> | undefined;
139
+ onBeforeInputCapture?: React.FormEventHandler<HTMLElement> | undefined;
140
+ onInput?: React.FormEventHandler<HTMLElement> | undefined;
141
+ onInputCapture?: React.FormEventHandler<HTMLElement> | undefined;
142
+ onReset?: React.FormEventHandler<HTMLElement> | undefined;
143
+ onResetCapture?: React.FormEventHandler<HTMLElement> | undefined;
144
+ onSubmit?: React.FormEventHandler<HTMLElement> | undefined;
145
+ onSubmitCapture?: React.FormEventHandler<HTMLElement> | undefined;
146
+ onInvalid?: React.FormEventHandler<HTMLElement> | undefined;
147
+ onInvalidCapture?: React.FormEventHandler<HTMLElement> | undefined;
148
+ onLoad?: React.ReactEventHandler<HTMLElement> | undefined;
149
+ onLoadCapture?: React.ReactEventHandler<HTMLElement> | undefined;
150
+ onError?: React.ReactEventHandler<HTMLElement> | undefined;
151
+ onErrorCapture?: React.ReactEventHandler<HTMLElement> | undefined;
152
+ onKeyDown?: React.KeyboardEventHandler<HTMLElement> | undefined;
153
+ onKeyDownCapture?: React.KeyboardEventHandler<HTMLElement> | undefined;
154
+ onKeyPress?: React.KeyboardEventHandler<HTMLElement> | undefined;
155
+ onKeyPressCapture?: React.KeyboardEventHandler<HTMLElement> | undefined;
156
+ onKeyUp?: React.KeyboardEventHandler<HTMLElement> | undefined;
157
+ onKeyUpCapture?: React.KeyboardEventHandler<HTMLElement> | undefined;
158
+ onAbort?: React.ReactEventHandler<HTMLElement> | undefined;
159
+ onAbortCapture?: React.ReactEventHandler<HTMLElement> | undefined;
160
+ onCanPlay?: React.ReactEventHandler<HTMLElement> | undefined;
161
+ onCanPlayCapture?: React.ReactEventHandler<HTMLElement> | undefined;
162
+ onCanPlayThrough?: React.ReactEventHandler<HTMLElement> | undefined;
163
+ onCanPlayThroughCapture?: React.ReactEventHandler<HTMLElement> | undefined;
164
+ onDurationChange?: React.ReactEventHandler<HTMLElement> | undefined;
165
+ onDurationChangeCapture?: React.ReactEventHandler<HTMLElement> | undefined;
166
+ onEmptied?: React.ReactEventHandler<HTMLElement> | undefined;
167
+ onEmptiedCapture?: React.ReactEventHandler<HTMLElement> | undefined;
168
+ onEncrypted?: React.ReactEventHandler<HTMLElement> | undefined;
169
+ onEncryptedCapture?: React.ReactEventHandler<HTMLElement> | undefined;
170
+ onEnded?: React.ReactEventHandler<HTMLElement> | undefined;
171
+ onEndedCapture?: React.ReactEventHandler<HTMLElement> | undefined;
172
+ onLoadedData?: React.ReactEventHandler<HTMLElement> | undefined;
173
+ onLoadedDataCapture?: React.ReactEventHandler<HTMLElement> | undefined;
174
+ onLoadedMetadata?: React.ReactEventHandler<HTMLElement> | undefined;
175
+ onLoadedMetadataCapture?: React.ReactEventHandler<HTMLElement> | undefined;
176
+ onLoadStart?: React.ReactEventHandler<HTMLElement> | undefined;
177
+ onLoadStartCapture?: React.ReactEventHandler<HTMLElement> | undefined;
178
+ onPause?: React.ReactEventHandler<HTMLElement> | undefined;
179
+ onPauseCapture?: React.ReactEventHandler<HTMLElement> | undefined;
180
+ onPlay?: React.ReactEventHandler<HTMLElement> | undefined;
181
+ onPlayCapture?: React.ReactEventHandler<HTMLElement> | undefined;
182
+ onPlaying?: React.ReactEventHandler<HTMLElement> | undefined;
183
+ onPlayingCapture?: React.ReactEventHandler<HTMLElement> | undefined;
184
+ onProgress?: React.ReactEventHandler<HTMLElement> | undefined;
185
+ onProgressCapture?: React.ReactEventHandler<HTMLElement> | undefined;
186
+ onRateChange?: React.ReactEventHandler<HTMLElement> | undefined;
187
+ onRateChangeCapture?: React.ReactEventHandler<HTMLElement> | undefined;
188
+ onSeeked?: React.ReactEventHandler<HTMLElement> | undefined;
189
+ onSeekedCapture?: React.ReactEventHandler<HTMLElement> | undefined;
190
+ onSeeking?: React.ReactEventHandler<HTMLElement> | undefined;
191
+ onSeekingCapture?: React.ReactEventHandler<HTMLElement> | undefined;
192
+ onStalled?: React.ReactEventHandler<HTMLElement> | undefined;
193
+ onStalledCapture?: React.ReactEventHandler<HTMLElement> | undefined;
194
+ onSuspend?: React.ReactEventHandler<HTMLElement> | undefined;
195
+ onSuspendCapture?: React.ReactEventHandler<HTMLElement> | undefined;
196
+ onTimeUpdate?: React.ReactEventHandler<HTMLElement> | undefined;
197
+ onTimeUpdateCapture?: React.ReactEventHandler<HTMLElement> | undefined;
198
+ onVolumeChange?: React.ReactEventHandler<HTMLElement> | undefined;
199
+ onVolumeChangeCapture?: React.ReactEventHandler<HTMLElement> | undefined;
200
+ onWaiting?: React.ReactEventHandler<HTMLElement> | undefined;
201
+ onWaitingCapture?: React.ReactEventHandler<HTMLElement> | undefined;
202
+ onAuxClick?: React.MouseEventHandler<HTMLElement> | undefined;
203
+ onAuxClickCapture?: React.MouseEventHandler<HTMLElement> | undefined;
204
+ onClick?: React.MouseEventHandler<HTMLElement> | undefined;
205
+ onClickCapture?: React.MouseEventHandler<HTMLElement> | undefined;
206
+ onContextMenu?: React.MouseEventHandler<HTMLElement> | undefined;
207
+ onContextMenuCapture?: React.MouseEventHandler<HTMLElement> | undefined;
208
+ onDoubleClick?: React.MouseEventHandler<HTMLElement> | undefined;
209
+ onDoubleClickCapture?: React.MouseEventHandler<HTMLElement> | undefined;
210
+ onDrag?: React.DragEventHandler<HTMLElement> | undefined;
211
+ onDragCapture?: React.DragEventHandler<HTMLElement> | undefined;
212
+ onDragEnd?: React.DragEventHandler<HTMLElement> | undefined;
213
+ onDragEndCapture?: React.DragEventHandler<HTMLElement> | undefined;
214
+ onDragEnter?: React.DragEventHandler<HTMLElement> | undefined;
215
+ onDragEnterCapture?: React.DragEventHandler<HTMLElement> | undefined;
216
+ onDragExit?: React.DragEventHandler<HTMLElement> | undefined;
217
+ onDragExitCapture?: React.DragEventHandler<HTMLElement> | undefined;
218
+ onDragLeave?: React.DragEventHandler<HTMLElement> | undefined;
219
+ onDragLeaveCapture?: React.DragEventHandler<HTMLElement> | undefined;
220
+ onDragOver?: React.DragEventHandler<HTMLElement> | undefined;
221
+ onDragOverCapture?: React.DragEventHandler<HTMLElement> | undefined;
222
+ onDragStart?: React.DragEventHandler<HTMLElement> | undefined;
223
+ onDragStartCapture?: React.DragEventHandler<HTMLElement> | undefined;
224
+ onDrop?: React.DragEventHandler<HTMLElement> | undefined;
225
+ onDropCapture?: React.DragEventHandler<HTMLElement> | undefined;
226
+ onMouseDown?: React.MouseEventHandler<HTMLElement> | undefined;
227
+ onMouseDownCapture?: React.MouseEventHandler<HTMLElement> | undefined;
228
+ onMouseEnter?: React.MouseEventHandler<HTMLElement> | undefined;
229
+ onMouseLeave?: React.MouseEventHandler<HTMLElement> | undefined;
230
+ onMouseMove?: React.MouseEventHandler<HTMLElement> | undefined;
231
+ onMouseMoveCapture?: React.MouseEventHandler<HTMLElement> | undefined;
232
+ onMouseOut?: React.MouseEventHandler<HTMLElement> | undefined;
233
+ onMouseOutCapture?: React.MouseEventHandler<HTMLElement> | undefined;
234
+ onMouseOver?: React.MouseEventHandler<HTMLElement> | undefined;
235
+ onMouseOverCapture?: React.MouseEventHandler<HTMLElement> | undefined;
236
+ onMouseUp?: React.MouseEventHandler<HTMLElement> | undefined;
237
+ onMouseUpCapture?: React.MouseEventHandler<HTMLElement> | undefined;
238
+ onSelect?: React.ReactEventHandler<HTMLElement> | undefined;
239
+ onSelectCapture?: React.ReactEventHandler<HTMLElement> | undefined;
240
+ onTouchCancel?: React.TouchEventHandler<HTMLElement> | undefined;
241
+ onTouchCancelCapture?: React.TouchEventHandler<HTMLElement> | undefined;
242
+ onTouchEnd?: React.TouchEventHandler<HTMLElement> | undefined;
243
+ onTouchEndCapture?: React.TouchEventHandler<HTMLElement> | undefined;
244
+ onTouchMove?: React.TouchEventHandler<HTMLElement> | undefined;
245
+ onTouchMoveCapture?: React.TouchEventHandler<HTMLElement> | undefined;
246
+ onTouchStart?: React.TouchEventHandler<HTMLElement> | undefined;
247
+ onTouchStartCapture?: React.TouchEventHandler<HTMLElement> | undefined;
248
+ onPointerDown?: React.PointerEventHandler<HTMLElement> | undefined;
249
+ onPointerDownCapture?: React.PointerEventHandler<HTMLElement> | undefined;
250
+ onPointerMove?: React.PointerEventHandler<HTMLElement> | undefined;
251
+ onPointerMoveCapture?: React.PointerEventHandler<HTMLElement> | undefined;
252
+ onPointerUp?: React.PointerEventHandler<HTMLElement> | undefined;
253
+ onPointerUpCapture?: React.PointerEventHandler<HTMLElement> | undefined;
254
+ onPointerCancel?: React.PointerEventHandler<HTMLElement> | undefined;
255
+ onPointerCancelCapture?: React.PointerEventHandler<HTMLElement> | undefined;
256
+ onPointerEnter?: React.PointerEventHandler<HTMLElement> | undefined;
257
+ onPointerEnterCapture?: React.PointerEventHandler<HTMLElement> | undefined;
258
+ onPointerLeave?: React.PointerEventHandler<HTMLElement> | undefined;
259
+ onPointerLeaveCapture?: React.PointerEventHandler<HTMLElement> | undefined;
260
+ onPointerOver?: React.PointerEventHandler<HTMLElement> | undefined;
261
+ onPointerOverCapture?: React.PointerEventHandler<HTMLElement> | undefined;
262
+ onPointerOut?: React.PointerEventHandler<HTMLElement> | undefined;
263
+ onPointerOutCapture?: React.PointerEventHandler<HTMLElement> | undefined;
264
+ onGotPointerCapture?: React.PointerEventHandler<HTMLElement> | undefined;
265
+ onGotPointerCaptureCapture?: React.PointerEventHandler<HTMLElement> | undefined;
266
+ onLostPointerCapture?: React.PointerEventHandler<HTMLElement> | undefined;
267
+ onLostPointerCaptureCapture?: React.PointerEventHandler<HTMLElement> | undefined;
268
+ onScroll?: React.UIEventHandler<HTMLElement> | undefined;
269
+ onScrollCapture?: React.UIEventHandler<HTMLElement> | undefined;
270
+ onWheel?: React.WheelEventHandler<HTMLElement> | undefined;
271
+ onWheelCapture?: React.WheelEventHandler<HTMLElement> | undefined;
272
+ onAnimationStart?: React.AnimationEventHandler<HTMLElement> | undefined;
273
+ onAnimationStartCapture?: React.AnimationEventHandler<HTMLElement> | undefined;
274
+ onAnimationEnd?: React.AnimationEventHandler<HTMLElement> | undefined;
275
+ onAnimationEndCapture?: React.AnimationEventHandler<HTMLElement> | undefined;
276
+ onAnimationIteration?: React.AnimationEventHandler<HTMLElement> | undefined;
277
+ onAnimationIterationCapture?: React.AnimationEventHandler<HTMLElement> | undefined;
278
+ onTransitionEnd?: React.TransitionEventHandler<HTMLElement> | undefined;
279
+ onTransitionEndCapture?: React.TransitionEventHandler<HTMLElement> | undefined;
280
+ }, Element>;
281
+ propTypes: {
282
+ /**
283
+ * Provide children nodes to be rendered in the content container
284
+ */
285
+ children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
286
+ /**
287
+ * Optionally provide a custom class name that is applied to the container
288
+ */
289
+ className: PropTypes.Requireable<string>;
290
+ /**
291
+ * Optionally specify the tag of the content node. Defaults to `main`
292
+ */
293
+ tagName: PropTypes.Requireable<string>;
294
+ };
295
+ };
296
+ export default Content;
@@ -48,6 +48,5 @@ Content.propTypes = {
48
48
  */
49
49
  tagName: PropTypes__default["default"].string
50
50
  };
51
- var Content$1 = Content;
52
51
 
53
- exports["default"] = Content$1;
52
+ exports["default"] = Content;
@@ -25,5 +25,5 @@ interface SideNavContextData {
25
25
  isRail?: boolean | undefined;
26
26
  }
27
27
  export declare const SideNavContext: React.Context<SideNavContextData>;
28
- declare const SideNav: React.ForwardRefExoticComponent<Pick<SideNavProps, "children" | "slot" | "style" | "title" | "className" | "dir" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "onToggle" | "key" | "id" | "aria-controls" | "aria-expanded" | "onClick" | "onAnimationEnd" | "onKeyDown" | "tabIndex" | "color" | "lang" | "role" | "href" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "expanded" | "enterDelayMs" | "defaultExpanded" | "inert" | "addFocusListeners" | "isChildOfHeader" | "isFixedNav" | "isRail" | "isPersistent" | "addMouseListeners" | "onOverlayClick" | "onSideNavBlur"> & React.RefAttributes<HTMLElement>>;
28
+ declare const SideNav: React.ForwardRefExoticComponent<Pick<SideNavProps, "children" | "slot" | "style" | "title" | "className" | "dir" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "onToggle" | "key" | "id" | "aria-controls" | "aria-expanded" | "onClick" | "onKeyDown" | "onTransitionEnd" | "tabIndex" | "color" | "lang" | "role" | "href" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEndCapture" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "expanded" | "enterDelayMs" | "defaultExpanded" | "inert" | "addFocusListeners" | "isChildOfHeader" | "isFixedNav" | "isRail" | "isPersistent" | "addMouseListeners" | "onOverlayClick" | "onSideNavBlur"> & React.RefAttributes<HTMLElement>>;
29
29
  export default SideNav;
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.44.0-rc.0",
4
+ "version": "1.44.0",
5
5
  "license": "Apache-2.0",
6
6
  "main": "lib/index.js",
7
7
  "module": "es/index.js",
@@ -48,9 +48,9 @@
48
48
  "dependencies": {
49
49
  "@babel/runtime": "^7.18.3",
50
50
  "@carbon/feature-flags": "^0.16.0",
51
- "@carbon/icons-react": "^11.31.0-rc.0",
51
+ "@carbon/icons-react": "^11.31.0",
52
52
  "@carbon/layout": "^11.20.0",
53
- "@carbon/styles": "^1.44.0-rc.0",
53
+ "@carbon/styles": "^1.44.0",
54
54
  "@carbon/telemetry": "0.1.0",
55
55
  "classnames": "2.3.2",
56
56
  "copy-to-clipboard": "^3.3.1",
@@ -78,7 +78,7 @@
78
78
  "@babel/preset-react": "^7.22.3",
79
79
  "@babel/preset-typescript": "^7.21.5",
80
80
  "@carbon/test-utils": "^10.30.0",
81
- "@carbon/themes": "^11.27.0",
81
+ "@carbon/themes": "^11.28.0",
82
82
  "@rollup/plugin-babel": "^6.0.0",
83
83
  "@rollup/plugin-commonjs": "^25.0.0",
84
84
  "@rollup/plugin-node-resolve": "^15.0.0",
@@ -140,5 +140,5 @@
140
140
  "**/*.scss",
141
141
  "**/*.css"
142
142
  ],
143
- "gitHead": "c9e8c54239275eb4451b25f7f11c4b8bf40ddd43"
143
+ "gitHead": "d9121f17b1dd935a5734c6eae10af275f72f6dc7"
144
144
  }