@databricks/design-system 1.12.5 → 1.12.7

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 (34) hide show
  1. package/dist/design-system/DesignSystemProvider/DesignSystemProvider.d.ts +10 -7
  2. package/dist/design-system/DesignSystemProvider/DesignSystemProvider.d.ts.map +1 -1
  3. package/dist/design-system/DesignSystemProvider/DesignSystemThemeProvider.test.d.ts +2 -0
  4. package/dist/design-system/DesignSystemProvider/DesignSystemThemeProvider.test.d.ts.map +1 -0
  5. package/dist/design-system/DialogCombobox/DialogComboboxCountBadge.d.ts +3 -1
  6. package/dist/design-system/DialogCombobox/DialogComboboxCountBadge.d.ts.map +1 -1
  7. package/dist/design-system/DialogCombobox/DialogComboboxOptionList.d.ts +1 -1
  8. package/dist/design-system/DialogCombobox/DialogComboboxOptionList.d.ts.map +1 -1
  9. package/dist/design-system/DialogCombobox/DialogComboboxOptionListCheckboxItem.d.ts +1 -1
  10. package/dist/design-system/DialogCombobox/DialogComboboxOptionListCheckboxItem.d.ts.map +1 -1
  11. package/dist/design-system/DialogCombobox/DialogComboboxOptionListSearch.d.ts +2 -0
  12. package/dist/design-system/DialogCombobox/DialogComboboxOptionListSearch.d.ts.map +1 -1
  13. package/dist/design-system/DialogCombobox/DialogComboboxOptionListSelectItem.d.ts +1 -1
  14. package/dist/design-system/DialogCombobox/DialogComboboxOptionListSelectItem.d.ts.map +1 -1
  15. package/dist/design-system/DialogCombobox/DialogComboboxTrigger.d.ts +1 -2
  16. package/dist/design-system/DialogCombobox/DialogComboboxTrigger.d.ts.map +1 -1
  17. package/dist/design-system/DropdownMenu/DropdownMenu.d.ts.map +1 -1
  18. package/dist/design-system/Header/Header.d.ts.map +1 -1
  19. package/dist/design-system/Hooks/useDesignSystemTheme.d.ts +1 -1
  20. package/dist/design-system/Hooks/useDesignSystemTheme.d.ts.map +1 -1
  21. package/dist/design-system/Modal/Modal.d.ts.map +1 -1
  22. package/dist/design-system/Pagination/index.d.ts +1 -0
  23. package/dist/design-system/Pagination/index.d.ts.map +1 -1
  24. package/dist/design-system/Spinner/Spinner.d.ts.map +1 -1
  25. package/dist/design-system/TableUI/index.d.ts +1 -0
  26. package/dist/design-system/TableUI/index.d.ts.map +1 -1
  27. package/dist/development.js +1 -1
  28. package/dist/index.js +185 -116
  29. package/dist/index.js.map +1 -1
  30. package/dist/theme/index.d.ts +0 -5
  31. package/dist/theme/index.d.ts.map +1 -1
  32. package/dist/useDesignSystemTheme-3d2c1acb.js +440 -0
  33. package/dist/useDesignSystemTheme-3d2c1acb.js.map +1 -0
  34. package/package.json +4 -2
package/dist/index.js CHANGED
@@ -1,10 +1,10 @@
1
1
  import * as React from 'react';
2
- import React__default, { createContext, useMemo, useEffect, useContext, useRef, forwardRef, useState, useImperativeHandle, Children, useCallback } from 'react';
2
+ import React__default, { createContext, useContext, useMemo, useEffect, useRef, forwardRef, useState, useImperativeHandle, Children, useCallback } from 'react';
3
3
  import AntDIcon from '@ant-design/icons';
4
4
  import { ThemeProvider, css, keyframes, ClassNames } from '@emotion/react';
5
5
  import { jsx, jsxs, Fragment } from '@emotion/react/jsx-runtime';
6
- import { g as getTheme, a as getClassNamePrefix, b as getPrefixedClassNameFromTheme, u as useDesignSystemTheme, l as lightColorList } from './useDesignSystemTheme-1e16bcf5.js';
7
- export { W as WithDesignSystemThemeHoc, u as useDesignSystemTheme } from './useDesignSystemTheme-1e16bcf5.js';
6
+ import { g as getTheme, a as getClassNamePrefix, b as getPrefixedClassNameFromTheme, u as useDesignSystemTheme, l as lightColorList } from './useDesignSystemTheme-3d2c1acb.js';
7
+ export { W as WithDesignSystemThemeHoc, u as useDesignSystemTheme } from './useDesignSystemTheme-3d2c1acb.js';
8
8
  import { notification, ConfigProvider, Collapse, Alert as Alert$1, AutoComplete as AutoComplete$1, Breadcrumb as Breadcrumb$1, Button as Button$1, Checkbox as Checkbox$1, DatePicker, Input as Input$1, Tooltip as Tooltip$1, Typography as Typography$1, Dropdown as Dropdown$1, Form as Form$1, Radio as Radio$1, Select as Select$1, Col as Col$1, Row as Row$1, Space as Space$1, Layout as Layout$1, Pagination as Pagination$1, Table as Table$1, Menu as Menu$1, Modal as Modal$1, Popover as Popover$2, Skeleton as Skeleton$1, Switch as Switch$1, Tabs as Tabs$1, Tree as Tree$1 } from 'antd';
9
9
  import classnames from 'classnames';
10
10
  import _isNil from 'lodash/isNil';
@@ -25,12 +25,13 @@ import 'chroma-js';
25
25
 
26
26
  const DuboisContextDefaults = {
27
27
  enableAnimation: false,
28
- isDarkMode: false,
29
- theme: 'default',
30
28
  // Prefer to use useDesignSystemTheme.getPrefixedClassName instead
31
29
  getPrefixCls: suffix => suffix ? `du-bois-${suffix}` : 'du-bois',
32
30
  flags: {}
33
31
  };
32
+ const DesignSystemThemeContext = /*#__PURE__*/createContext({
33
+ isDarkMode: false
34
+ });
34
35
  const DesignSystemContext = /*#__PURE__*/createContext(DuboisContextDefaults);
35
36
  const DU_BOIS_ENABLE_ANIMATION_CLASSNAME = 'du-bois-enable-animation';
36
37
  function getAnimationCss(enableAnimation) {
@@ -54,39 +55,54 @@ function getAnimationCss(enableAnimation) {
54
55
  }
55
56
  const DesignSystemProviderPropsContext = /*#__PURE__*/React__default.createContext(null);
56
57
  const AntDConfigProviderPropsContext = /*#__PURE__*/React__default.createContext(null);
57
- const DesignSystemProvider = _ref => {
58
+
59
+ /** Only to be accessed by SupportsDuBoisThemes, except for special exceptions like tests and storybook. Ask in #dubois first if you need to use it. */
60
+ const DesignSystemThemeProvider = _ref => {
58
61
  let {
59
- children,
60
62
  isDarkMode = false,
61
- theme: themeName,
63
+ children
64
+ } = _ref;
65
+ return jsx(DesignSystemThemeContext.Provider, {
66
+ value: {
67
+ isDarkMode
68
+ },
69
+ children: children
70
+ });
71
+ };
72
+ const DesignSystemProvider = _ref2 => {
73
+ let {
74
+ isDarkMode: deprecatedDarkModeProp,
75
+ children,
62
76
  enableAnimation = false,
63
77
  zIndexBase = 1000,
64
78
  getPopupContainer,
65
79
  flags = {
66
80
  USE_NEW_ICONS: true
67
81
  }
68
- } = _ref;
82
+ } = _ref2;
83
+ const {
84
+ isDarkMode: contextDarkModeVal
85
+ } = useContext(DesignSystemThemeContext);
86
+ const isDarkMode = deprecatedDarkModeProp !== null && deprecatedDarkModeProp !== void 0 ? deprecatedDarkModeProp : contextDarkModeVal;
69
87
  const theme = useMemo(() => getTheme(isDarkMode, {
70
88
  enableAnimation,
71
89
  zIndexBase
72
90
  }),
73
91
  // TODO: revisit this
74
92
  // eslint-disable-next-line react-hooks/exhaustive-deps
75
- [themeName, isDarkMode, zIndexBase]);
93
+ [isDarkMode, zIndexBase]);
76
94
  const providerPropsContext = useMemo(() => ({
77
95
  isDarkMode,
78
- theme: themeName,
79
96
  enableAnimation,
80
97
  zIndexBase,
81
98
  getPopupContainer,
82
99
  flags
83
- }), [themeName, isDarkMode, enableAnimation, zIndexBase, getPopupContainer, flags]);
100
+ }), [isDarkMode, enableAnimation, zIndexBase, getPopupContainer, flags]);
84
101
  const classNamePrefix = getClassNamePrefix(theme);
85
102
  const value = useMemo(() => {
86
103
  return {
87
104
  enableAnimation,
88
105
  isDarkMode,
89
- theme: theme.themeName,
90
106
  getPrefixCls: suffix => getPrefixedClassNameFromTheme(theme, suffix),
91
107
  getPopupContainer,
92
108
  flags
@@ -115,24 +131,20 @@ const DesignSystemProvider = _ref => {
115
131
  })
116
132
  });
117
133
  };
118
- const ApplyDesignSystemContextOverrides = _ref2 => {
134
+ const ApplyDesignSystemContextOverrides = _ref3 => {
119
135
  let {
120
- isDarkMode,
121
- theme,
122
136
  enableAnimation,
123
137
  zIndexBase,
124
138
  getPopupContainer,
125
139
  flags,
126
140
  children
127
- } = _ref2;
141
+ } = _ref3;
128
142
  const parentDesignSystemProviderProps = useContext(DesignSystemProviderPropsContext);
129
143
  if (parentDesignSystemProviderProps === null) {
130
144
  throw new Error(`ApplyDesignSystemContextOverrides cannot be used standalone - DesignSystemProvider must exist in the React context`);
131
145
  }
132
146
  const newProps = useMemo(() => ({
133
147
  ...parentDesignSystemProviderProps,
134
- isDarkMode: isDarkMode !== null && isDarkMode !== void 0 ? isDarkMode : parentDesignSystemProviderProps.isDarkMode,
135
- theme: theme !== null && theme !== void 0 ? theme : parentDesignSystemProviderProps.theme,
136
148
  enableAnimation: enableAnimation !== null && enableAnimation !== void 0 ? enableAnimation : parentDesignSystemProviderProps.enableAnimation,
137
149
  zIndexBase: zIndexBase !== null && zIndexBase !== void 0 ? zIndexBase : parentDesignSystemProviderProps.zIndexBase,
138
150
  getPopupContainer: getPopupContainer !== null && getPopupContainer !== void 0 ? getPopupContainer : parentDesignSystemProviderProps.getPopupContainer,
@@ -140,7 +152,7 @@ const ApplyDesignSystemContextOverrides = _ref2 => {
140
152
  ...parentDesignSystemProviderProps.flags,
141
153
  ...flags
142
154
  }
143
- }), [parentDesignSystemProviderProps, isDarkMode, theme, enableAnimation, zIndexBase, getPopupContainer, flags]);
155
+ }), [parentDesignSystemProviderProps, enableAnimation, zIndexBase, getPopupContainer, flags]);
144
156
  return jsx(DesignSystemProvider, {
145
157
  ...newProps,
146
158
  children: children
@@ -148,11 +160,11 @@ const ApplyDesignSystemContextOverrides = _ref2 => {
148
160
  };
149
161
 
150
162
  // This is a more-specific version of `ApplyDesignSystemContextOverrides` that only allows overriding the flags.
151
- const ApplyDesignSystemFlags = _ref3 => {
163
+ const ApplyDesignSystemFlags = _ref4 => {
152
164
  let {
153
165
  flags,
154
166
  children
155
- } = _ref3;
167
+ } = _ref4;
156
168
  const parentDesignSystemProviderProps = useContext(DesignSystemProviderPropsContext);
157
169
  if (parentDesignSystemProviderProps === null) {
158
170
  throw new Error(`ApplyDesignSystemFlags cannot be used standalone - DesignSystemProvider must exist in the React context`);
@@ -169,10 +181,10 @@ const ApplyDesignSystemFlags = _ref3 => {
169
181
  children: children
170
182
  });
171
183
  };
172
- const DesignSystemAntDConfigProvider = _ref4 => {
184
+ const DesignSystemAntDConfigProvider = _ref5 => {
173
185
  let {
174
186
  children
175
- } = _ref4;
187
+ } = _ref5;
176
188
  const antdContext = useAntDConfigProviderContext();
177
189
  return jsx(ConfigProvider, {
178
190
  ...antdContext,
@@ -193,10 +205,10 @@ const useAntDConfigProviderContext = () => {
193
205
  * Since all Design System's components have are wrapped with DesignSystemAntDConfigProvider,
194
206
  * this won't affect their own prefixCls, but just allow nested antd components to keep their ant prefix.
195
207
  */
196
- const RestoreAntDDefaultClsPrefix = _ref5 => {
208
+ const RestoreAntDDefaultClsPrefix = _ref6 => {
197
209
  let {
198
210
  children
199
- } = _ref5;
211
+ } = _ref6;
200
212
  return jsx(ConfigProvider, {
201
213
  prefixCls: "ant",
202
214
  children: children
@@ -8898,7 +8910,7 @@ const getButtonEmotionStyles = _ref => {
8898
8910
  outlineStyle: 'solid',
8899
8911
  outlineWidth: '2px',
8900
8912
  outlineOffset: '1px',
8901
- outlineColor: theme.themeName === 'dark' ? theme.colors.actionDefaultBorderFocus : theme.colors.primary
8913
+ outlineColor: theme.isDarkMode ? theme.colors.actionDefaultBorderFocus : theme.colors.primary
8902
8914
  },
8903
8915
  ...getDefaultStyles(theme),
8904
8916
  [`&${classPrimary}`]: {
@@ -8988,7 +9000,7 @@ const getButtonEmotionStyles = _ref => {
8988
9000
  },
8989
9001
  [`&${clsIconOnly}`]: {
8990
9002
  border: 'none',
8991
- [`&:enabled:not(${classLink})`]: {
9003
+ [`&:enabled:not(${classLink}), &:enabled:not(${classLink}) > .anticon`]: {
8992
9004
  ...tertiaryColors,
8993
9005
  color: theme.colors.textSecondary
8994
9006
  },
@@ -9008,7 +9020,7 @@ const getButtonEmotionStyles = _ref => {
9008
9020
  outlineStyle: 'solid',
9009
9021
  outlineWidth: '2px',
9010
9022
  outlineOffset: '1px',
9011
- outlineColor: theme.themeName === 'dark' ? theme.colors.actionDefaultBorderFocus : theme.colors.primary
9023
+ outlineColor: theme.isDarkMode ? theme.colors.actionDefaultBorderFocus : theme.colors.primary
9012
9024
  }),
9013
9025
  [`${clsLoadingIcon}`]: {
9014
9026
  ...(onlyIcon && {
@@ -9724,7 +9736,10 @@ const cssSpinner = function (theme) {
9724
9736
  const styles = {
9725
9737
  animation: `${rotate} 1s steps(${frameRate}, end) infinite`,
9726
9738
  color: theme.colors.textSecondary,
9727
- animationDelay: `${delay}s`
9739
+ animationDelay: `${delay}s`,
9740
+ '@media only percy': {
9741
+ animation: 'none'
9742
+ }
9728
9743
  };
9729
9744
  return /*#__PURE__*/css(importantify(styles), process.env.NODE_ENV === "production" ? "" : ";label:cssSpinner;");
9730
9745
  };
@@ -9880,6 +9895,10 @@ const getCountBadgeStyles = theme => /*#__PURE__*/css(importantify({
9880
9895
  height: 20
9881
9896
  }), process.env.NODE_ENV === "production" ? "" : ";label:getCountBadgeStyles;");
9882
9897
  const DialogComboboxCountBadge = props => {
9898
+ const {
9899
+ countStartAt,
9900
+ ...restOfProps
9901
+ } = props;
9883
9902
  const {
9884
9903
  theme
9885
9904
  } = useDesignSystemTheme();
@@ -9887,9 +9906,9 @@ const DialogComboboxCountBadge = props => {
9887
9906
  value
9888
9907
  } = useDialogComboboxContext();
9889
9908
  return jsx("div", {
9890
- ...props,
9909
+ ...restOfProps,
9891
9910
  css: getCountBadgeStyles(theme),
9892
- children: Array.isArray(value) ? value.length : value ? 1 : 0
9911
+ children: Array.isArray(value) ? countStartAt ? `+${value.length - countStartAt}` : value.length : value ? 1 : 0
9893
9912
  });
9894
9913
  };
9895
9914
 
@@ -10200,71 +10219,6 @@ const __INTERNAL_DO_NOT_USE__TextArea = TextArea;
10200
10219
  const __INTERNAL_DO_NOT_USE__Password = Password;
10201
10220
  const __INTERNAL_DO_NOT_USE_DEDUPE__Group = Group$2;
10202
10221
 
10203
- const filterChildren = (children, searchValue) => {
10204
- var _React$Children$map;
10205
- return (_React$Children$map = React__default.Children.map(children, child => {
10206
- if (child !== null && child !== void 0 && child.props.value.toLowerCase().includes(searchValue)) {
10207
- return child;
10208
- }
10209
- return null;
10210
- })) === null || _React$Children$map === void 0 ? void 0 : _React$Children$map.filter(child => child);
10211
- };
10212
- const DialogComboboxOptionListSearch = /*#__PURE__*/forwardRef((_ref, forwardedRef) => {
10213
- var _filteredChildren, _filteredChildren$pro, _filteredChildren2;
10214
- let {
10215
- onChange,
10216
- children,
10217
- hasWrapper,
10218
- ...restProps
10219
- } = _ref;
10220
- const {
10221
- theme
10222
- } = useDesignSystemTheme();
10223
- const {
10224
- isInsideDialogComboboxOptionList
10225
- } = useDialogComboboxOptionListContext();
10226
- const [searchValue, setSearchValue] = React__default.useState();
10227
- if (!isInsideDialogComboboxOptionList) {
10228
- throw new Error('`DialogComboboxOptionListSearch` must be used within `DialogComboboxOptionList`');
10229
- }
10230
- const handleOnChange = event => {
10231
- setSearchValue(event.target.value.toLowerCase());
10232
- };
10233
- let filteredChildren = children;
10234
- if (searchValue) {
10235
- filteredChildren = filterChildren(hasWrapper ? children.props.children : children, searchValue);
10236
- if (hasWrapper) {
10237
- filteredChildren = /*#__PURE__*/React__default.cloneElement(children, {}, filteredChildren);
10238
- }
10239
- }
10240
- return jsxs(Fragment, {
10241
- children: [jsx("div", {
10242
- css: /*#__PURE__*/css({
10243
- padding: `${theme.spacing.sm}px ${theme.spacing.lg / 2}px ${theme.spacing.sm}px`,
10244
- width: '100%',
10245
- boxSizing: 'border-box'
10246
- }, process.env.NODE_ENV === "production" ? "" : ";label:DialogComboboxOptionListSearch;"),
10247
- children: jsx(Input, {
10248
- ref: forwardedRef,
10249
- prefix: jsx(SearchIcon, {}),
10250
- placeholder: "Search",
10251
- onChange: handleOnChange,
10252
- value: searchValue,
10253
- ...restProps
10254
- })
10255
- }), hasWrapper && (_filteredChildren = filteredChildren) !== null && _filteredChildren !== void 0 && (_filteredChildren$pro = _filteredChildren.props.children) !== null && _filteredChildren$pro !== void 0 && _filteredChildren$pro.length || !hasWrapper && (_filteredChildren2 = filteredChildren) !== null && _filteredChildren2 !== void 0 && _filteredChildren2.length ? filteredChildren : jsx("div", {
10256
- css: /*#__PURE__*/css({
10257
- color: theme.colors.textSecondary,
10258
- textAlign: 'center',
10259
- padding: '6px 32px 6px 12px',
10260
- width: '100%',
10261
- boxSizing: 'border-box'
10262
- }, process.env.NODE_ENV === "production" ? "" : ";label:DialogComboboxOptionListSearch;"),
10263
- children: "No results found"
10264
- })]
10265
- });
10266
- });
10267
-
10268
10222
  function _EMOTION_STRINGIFIED_CSS_ERROR__$a() { return "You have tried to stringify object returned from `css` function. It isn't supposed to be used directly (e.g. as value of the `className` prop), but rather handed to emotion so it can handle it (e.g. as value of `css` prop)."; }
10269
10223
  var _ref2$4 = process.env.NODE_ENV === "production" ? {
10270
10224
  name: "1cjitc6",
@@ -10341,6 +10295,86 @@ const DialogComboboxOptionListSelectItem = /*#__PURE__*/forwardRef((_ref, ref) =
10341
10295
  });
10342
10296
  });
10343
10297
 
10298
+ const filterChildren = (children, searchValue) => {
10299
+ var _React$Children$map;
10300
+ return (_React$Children$map = React__default.Children.map(children, child => {
10301
+ if (child.type === DialogComboboxOptionListSelectItem || child.type === DialogComboboxOptionListCheckboxItem) {
10302
+ var _child$props, _child$props$value;
10303
+ if (child !== null && child !== void 0 && (_child$props = child.props) !== null && _child$props !== void 0 && (_child$props$value = _child$props.value) !== null && _child$props$value !== void 0 && _child$props$value.toLowerCase().includes(searchValue)) {
10304
+ return child;
10305
+ }
10306
+ return null;
10307
+ }
10308
+ return child;
10309
+ })) === null || _React$Children$map === void 0 ? void 0 : _React$Children$map.filter(child => child);
10310
+ };
10311
+ const DialogComboboxOptionListSearch = /*#__PURE__*/forwardRef((_ref, forwardedRef) => {
10312
+ var _filteredChildren, _filteredChildren$pro, _filteredChildren2;
10313
+ let {
10314
+ onChange,
10315
+ onSearch,
10316
+ virtualized,
10317
+ children,
10318
+ hasWrapper,
10319
+ ...restProps
10320
+ } = _ref;
10321
+ const {
10322
+ theme
10323
+ } = useDesignSystemTheme();
10324
+ const {
10325
+ isInsideDialogComboboxOptionList
10326
+ } = useDialogComboboxOptionListContext();
10327
+ const [searchValue, setSearchValue] = React__default.useState();
10328
+ if (!isInsideDialogComboboxOptionList) {
10329
+ throw new Error('`DialogComboboxOptionListSearch` must be used within `DialogComboboxOptionList`');
10330
+ }
10331
+ const handleOnChange = event => {
10332
+ if (!virtualized) {
10333
+ setSearchValue(event.target.value.toLowerCase());
10334
+ }
10335
+ onSearch === null || onSearch === void 0 ? void 0 : onSearch(event.target.value);
10336
+ };
10337
+ let filteredChildren = children;
10338
+ if (searchValue && !virtualized) {
10339
+ filteredChildren = filterChildren(hasWrapper ? children.props.children : children, searchValue);
10340
+ if (hasWrapper) {
10341
+ filteredChildren = /*#__PURE__*/React__default.cloneElement(children, {}, filteredChildren);
10342
+ }
10343
+ }
10344
+ return jsxs(Fragment, {
10345
+ children: [jsx("div", {
10346
+ css: /*#__PURE__*/css({
10347
+ padding: `${theme.spacing.sm}px ${theme.spacing.lg / 2}px ${theme.spacing.sm}px`,
10348
+ width: '100%',
10349
+ boxSizing: 'border-box'
10350
+ }, process.env.NODE_ENV === "production" ? "" : ";label:DialogComboboxOptionListSearch;"),
10351
+ children: jsx(Input, {
10352
+ type: "search",
10353
+ name: "search",
10354
+ ref: forwardedRef,
10355
+ prefix: jsx(SearchIcon, {}),
10356
+ placeholder: "Search",
10357
+ onChange: handleOnChange,
10358
+ value: searchValue,
10359
+ ...restProps
10360
+ })
10361
+ }), virtualized ? children : hasWrapper && (_filteredChildren = filteredChildren) !== null && _filteredChildren !== void 0 && (_filteredChildren$pro = _filteredChildren.props.children) !== null && _filteredChildren$pro !== void 0 && _filteredChildren$pro.length || !hasWrapper && (_filteredChildren2 = filteredChildren) !== null && _filteredChildren2 !== void 0 && _filteredChildren2.length ? jsx("div", {
10362
+ "aria-live": "polite",
10363
+ children: filteredChildren
10364
+ }) : jsx("div", {
10365
+ "aria-live": "assertive",
10366
+ css: /*#__PURE__*/css({
10367
+ color: theme.colors.textSecondary,
10368
+ textAlign: 'center',
10369
+ padding: '6px 32px 6px 12px',
10370
+ width: '100%',
10371
+ boxSizing: 'border-box'
10372
+ }, process.env.NODE_ENV === "production" ? "" : ";label:DialogComboboxOptionListSearch;"),
10373
+ children: "No results found"
10374
+ })]
10375
+ });
10376
+ });
10377
+
10344
10378
  function _EMOTION_STRINGIFIED_CSS_ERROR__$9() { return "You have tried to stringify object returned from `css` function. It isn't supposed to be used directly (e.g. as value of the `className` prop), but rather handed to emotion so it can handle it (e.g. as value of `css` prop)."; }
10345
10379
  var _ref2$3 = process.env.NODE_ENV === "production" ? {
10346
10380
  name: "6kz1wu",
@@ -10678,8 +10712,7 @@ const DialogComboboxTrigger = /*#__PURE__*/forwardRef((_ref, forwardedRef) => {
10678
10712
  onRemove,
10679
10713
  children,
10680
10714
  maxWidth = 9999,
10681
- withCountBadge = true,
10682
- showBadgeAfterValueCount = 3,
10715
+ showTagAfterValueCount = 3,
10683
10716
  allowClear = true,
10684
10717
  controlled,
10685
10718
  onClear,
@@ -10719,7 +10752,7 @@ const DialogComboboxTrigger = /*#__PURE__*/forwardRef((_ref, forwardedRef) => {
10719
10752
  const [showTooltip, setShowTooltip] = React__default.useState();
10720
10753
  const triggerContentRef = React__default.useRef(null);
10721
10754
  useEffect(() => {
10722
- if ((value === null || value === void 0 ? void 0 : value.length) > showBadgeAfterValueCount) {
10755
+ if ((value === null || value === void 0 ? void 0 : value.length) > showTagAfterValueCount) {
10723
10756
  setShowTooltip(true);
10724
10757
  } else if (triggerContentRef.current) {
10725
10758
  const {
@@ -10728,11 +10761,12 @@ const DialogComboboxTrigger = /*#__PURE__*/forwardRef((_ref, forwardedRef) => {
10728
10761
  } = triggerContentRef.current;
10729
10762
  setShowTooltip(clientWidth < scrollWidth);
10730
10763
  }
10731
- }, [showBadgeAfterValueCount, value]);
10764
+ }, [showTagAfterValueCount, value]);
10732
10765
  const concatenatedValues = Array.isArray(value) ? value.join(', ') : value;
10733
10766
  const displayedValues = jsx("span", {
10734
10767
  children: concatenatedValues
10735
10768
  });
10769
+ const valuesBeforeBadge = Array.isArray(value) ? value.slice(0, showTagAfterValueCount).join(', ') : value;
10736
10770
  let ariaLabel = `${label}`;
10737
10771
  if (value !== null && value !== void 0 && value.length) {
10738
10772
  ariaLabel += multiSelect ? `, multiselectable, ${value.length} options selected: ${concatenatedValues}` : `, selected option: ${concatenatedValues}`;
@@ -10760,10 +10794,18 @@ const DialogComboboxTrigger = /*#__PURE__*/forwardRef((_ref, forwardedRef) => {
10760
10794
  fontWeight: theme.typography.typographyBoldFontWeight
10761
10795
  }, process.env.NODE_ENV === "production" ? "" : ";label:triggerContent;"),
10762
10796
  children: label
10763
- }), withCountBadge && (value === null || value === void 0 ? void 0 : value.length) > showBadgeAfterValueCount ? jsx(DialogComboboxCountBadge, {
10764
- role: "status",
10765
- "aria-label": "Dialog combobox options selected count"
10766
- }) : withCountBadge ? displayedValues : null]
10797
+ }), (value === null || value === void 0 ? void 0 : value.length) > showTagAfterValueCount ? jsxs(Fragment, {
10798
+ children: [jsx("span", {
10799
+ style: {
10800
+ marginRight: theme.spacing.xs
10801
+ },
10802
+ children: valuesBeforeBadge
10803
+ }), jsx(DialogComboboxCountBadge, {
10804
+ countStartAt: showTagAfterValueCount,
10805
+ role: "status",
10806
+ "aria-label": "Selected options count"
10807
+ })]
10808
+ }) : displayedValues]
10767
10809
  }), allowClear && value !== null && value !== void 0 && value.length ? jsx(XCircleFillIcon, {
10768
10810
  onClick: handleClear,
10769
10811
  css: /*#__PURE__*/css({
@@ -11298,7 +11340,7 @@ const Content$4 = _ref => {
11298
11340
  paddingLeft: horizontalContentPadding,
11299
11341
  overflowY: useCustomScrollBehavior ? 'hidden' : 'auto',
11300
11342
  height: expandContentToFullHeight ? '100%' : undefined,
11301
- ...(theme.themeName === 'default' && !useCustomScrollBehavior ? {
11343
+ ...(theme.isDarkMode === false && !useCustomScrollBehavior ? {
11302
11344
  // Achieves an inner shadow on the content, but only when there is more left to scroll. When the content fits
11303
11345
  // in the container without scrolling, no shadow will be shown.
11304
11346
  // Taken from: https://css-tricks.com/scroll-shadows-with-javascript/
@@ -11454,6 +11496,7 @@ const Item = /*#__PURE__*/forwardRef(function Item(_ref4, ref) {
11454
11496
  children,
11455
11497
  disabledReason,
11456
11498
  danger,
11499
+ onClick,
11457
11500
  ...props
11458
11501
  } = _ref4;
11459
11502
  const itemRef = useRef(null);
@@ -11461,6 +11504,13 @@ const Item = /*#__PURE__*/forwardRef(function Item(_ref4, ref) {
11461
11504
  return jsx(DropdownMenu$1.Item, {
11462
11505
  css: theme => [itemStyles, danger && dangerItemStyles(theme)],
11463
11506
  ref: itemRef,
11507
+ onClick: e => {
11508
+ if (props.disabled) {
11509
+ e.preventDefault();
11510
+ } else {
11511
+ onClick === null || onClick === void 0 ? void 0 : onClick(e);
11512
+ }
11513
+ },
11464
11514
  ...props,
11465
11515
  children: getNewChildren(children, props, disabledReason, itemRef)
11466
11516
  });
@@ -13197,7 +13247,6 @@ const Header$1 = props => {
13197
13247
  const styles = {
13198
13248
  titleWrapper: _ref5,
13199
13249
  breadcrumbWrapper: /*#__PURE__*/css({
13200
- marginBottom: 2,
13201
13250
  lineHeight: theme.typography.lineHeightBase
13202
13251
  }, process.env.NODE_ENV === "production" ? "" : ";label:breadcrumbWrapper;"),
13203
13252
  title: _ref4$1,
@@ -13406,7 +13455,8 @@ function getPaginationEmotionStyles(clsPrefix, theme) {
13406
13455
  [`&${classRoot}.mini, ${classRoot}.mini`]: {
13407
13456
  [`${classItem}, ${classNext}, ${classPrev}, ${classJumpNext}, ${classJumpPrev}`]: {
13408
13457
  height: '32px',
13409
- width: '32px',
13458
+ minWidth: '32px',
13459
+ width: 'auto',
13410
13460
  lineHeight: '32px'
13411
13461
  },
13412
13462
  [classSizeChanger]: {
@@ -13426,6 +13476,7 @@ const Pagination = function Pagination(_ref) {
13426
13476
  pageSize = 10,
13427
13477
  numTotal,
13428
13478
  onChange,
13479
+ style,
13429
13480
  dangerouslySetAntdProps
13430
13481
  } = _ref;
13431
13482
  const {
@@ -13443,6 +13494,7 @@ const Pagination = function Pagination(_ref) {
13443
13494
  showSizeChanger: false,
13444
13495
  showQuickJumper: false,
13445
13496
  size: 'small',
13497
+ style: style,
13446
13498
  ...dangerouslySetAntdProps
13447
13499
  })
13448
13500
  });
@@ -13667,6 +13719,7 @@ const getModalEmotionStyles = args => {
13667
13719
  const bodyMaxHeight = `calc(${modalMaxHeight} - ${headerHeight}px - ${footerHeight}px - ${MODAL_PADDING}px)`;
13668
13720
  return /*#__PURE__*/css({
13669
13721
  [classNameHeader]: {
13722
+ background: 'transparent',
13670
13723
  paddingTop: theme.spacing.md,
13671
13724
  paddingLeft: theme.spacing.lg,
13672
13725
  paddingRight: theme.spacing.md,
@@ -13729,6 +13782,7 @@ const getModalEmotionStyles = args => {
13729
13782
  alignItems: 'center'
13730
13783
  },
13731
13784
  [classNameContent]: {
13785
+ backgroundColor: theme.colors.backgroundPrimary,
13732
13786
  maxHeight: modalMaxHeight,
13733
13787
  height: maxedOutHeight ? modalMaxHeight : '',
13734
13788
  overflow: 'hidden',
@@ -13744,7 +13798,7 @@ const getModalEmotionStyles = args => {
13744
13798
  paddingRight: MODAL_PADDING,
13745
13799
  paddingTop: CONTENT_BUFFER,
13746
13800
  paddingBottom: CONTENT_BUFFER,
13747
- ...(theme.themeName === 'default' ? {
13801
+ ...(theme.isDarkMode === false ? {
13748
13802
  // Achieves an inner shadow on the content, but only when there is more left to scroll. When the content fits
13749
13803
  // in the container without scrolling, no shadow will be shown.
13750
13804
  // Taken from: https://css-tricks.com/scroll-shadows-with-javascript/
@@ -13928,6 +13982,7 @@ function DangerModal(props) {
13928
13982
  type: "primary",
13929
13983
  danger: true,
13930
13984
  onClick: onOk,
13985
+ loading: props.confirmLoading,
13931
13986
  ...okButtonProps,
13932
13987
  children: okText || 'Delete'
13933
13988
  }, "discard")],
@@ -15406,11 +15461,11 @@ const tableStyles = {
15406
15461
  toString: _EMOTION_STRINGIFIED_CSS_ERROR__
15407
15462
  },
15408
15463
  cell: process.env.NODE_ENV === "production" ? {
15409
- name: "10zsmwj",
15410
- styles: "display:inline-grid;position:relative;flex:1;line-height:initial;box-sizing:border-box;padding-left:var(--table-spacing-sm);padding-right:var(--table-spacing-sm);word-break:break-word;overflow:hidden"
15464
+ name: "1n3v1dk",
15465
+ styles: "display:inline-grid;position:relative;flex:1;line-height:initial;box-sizing:border-box;padding-left:var(--table-spacing-sm);padding-right:var(--table-spacing-sm);word-break:break-word;overflow:hidden;& .anticon{vertical-align:text-bottom;}"
15411
15466
  } : {
15412
- name: "1myl3nz-cell",
15413
- styles: "display:inline-grid;position:relative;flex:1;line-height:initial;box-sizing:border-box;padding-left:var(--table-spacing-sm);padding-right:var(--table-spacing-sm);word-break:break-word;overflow:hidden;label:cell;",
15467
+ name: "q5g0tm-cell",
15468
+ styles: "display:inline-grid;position:relative;flex:1;line-height:initial;box-sizing:border-box;padding-left:var(--table-spacing-sm);padding-right:var(--table-spacing-sm);word-break:break-word;overflow:hidden;& .anticon{vertical-align:text-bottom;};label:cell;",
15414
15469
  toString: _EMOTION_STRINGIFIED_CSS_ERROR__
15415
15470
  },
15416
15471
  header: process.env.NODE_ENV === "production" ? {
@@ -15950,9 +16005,21 @@ const TableFilterInput = /*#__PURE__*/forwardRef(function SearchInput(_ref10, re
15950
16005
  onSubmit,
15951
16006
  showSearchButton,
15952
16007
  className,
16008
+ onChange,
16009
+ onClear,
15953
16010
  ...inputProps
15954
16011
  } = _ref10;
15955
16012
  const DEFAULT_WIDTH = 350;
16013
+ const handleChange = e => {
16014
+ // If the input is cleared, call the onClear handler, but only
16015
+ // if the event is not an input event -- which is the case when you click the
16016
+ // ant-provided (X) button.
16017
+ if (!e.target.value && e.nativeEvent instanceof InputEvent === false && onClear) {
16018
+ onClear === null || onClear === void 0 ? void 0 : onClear();
16019
+ } else {
16020
+ onChange === null || onChange === void 0 ? void 0 : onChange(e);
16021
+ }
16022
+ };
15956
16023
  let component = jsx(Input, {
15957
16024
  prefix: jsx(SearchIcon, {}),
15958
16025
  allowClear: true,
@@ -15961,7 +16028,8 @@ const TableFilterInput = /*#__PURE__*/forwardRef(function SearchInput(_ref10, re
15961
16028
  ref: ref,
15962
16029
  css: /*#__PURE__*/css({
15963
16030
  width: DEFAULT_WIDTH
15964
- }, process.env.NODE_ENV === "production" ? "" : ";label:component;")
16031
+ }, process.env.NODE_ENV === "production" ? "" : ";label:component;"),
16032
+ onChange: handleChange
15965
16033
  });
15966
16034
  if (showSearchButton) {
15967
16035
  component = jsxs(Input.Group, {
@@ -15976,7 +16044,8 @@ const TableFilterInput = /*#__PURE__*/forwardRef(function SearchInput(_ref10, re
15976
16044
  allowClear: true,
15977
16045
  ...inputProps,
15978
16046
  ref: ref,
15979
- css: _ref11
16047
+ css: _ref11,
16048
+ onChange: handleChange
15980
16049
  }), jsx(Button, {
15981
16050
  htmlType: "submit",
15982
16051
  children: jsx(SearchIcon, {})
@@ -16717,5 +16786,5 @@ const Tree = /*#__PURE__*/forwardRef(function Tree(_ref, ref) {
16717
16786
  });
16718
16787
  });
16719
16788
 
16720
- export { Accordion, AccordionPanel, Alert, AlignCenterIcon, AlignLeftIcon, AlignRightIcon, AppIcon, ApplyDesignSystemContextOverrides, ApplyDesignSystemFlags, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArrowsUpDownIcon, AutoComplete, BarChartIcon, BeakerIcon, BinaryIcon, BoldIcon, BookIcon, BookmarkFillIcon, BookmarkIcon, BracketsCurlyIcon, BracketsSquareIcon, BracketsXIcon, Breadcrumb, BriefcaseFillIcon, BriefcaseIcon, Button, CalendarEventIcon, CalendarIcon, CaretDownSquareIcon, CaretUpSquareIcon, CatalogIcon, ChartLineIcon, CheckCircleBadgeIcon, CheckCircleFillIcon, CheckCircleIcon, CheckIcon, CheckLineIcon, Checkbox, ChecklistIcon, ChevronDoubleDownIcon, ChevronDoubleLeftIcon, ChevronDoubleRightIcon, ChevronDoubleUpIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, CloudDownloadIcon, CloudIcon, CloudKeyIcon, CloudModelIcon, CloudOffIcon, CloudUploadIcon, CodeIcon, Col, ColorFillIcon, ConnectIcon, Content, CopyIcon, CursorIcon, CursorPagination, DIcon, DU_BOIS_ENABLE_ANIMATION_CLASSNAME, DagIcon, DangerFillIcon, DangerIcon, DangerModal, DashIcon, DashboardIcon, DataIcon, DatabaseIcon, DecimalIcon, DesignSystemAntDConfigProvider, DesignSystemContext, DesignSystemProvider, DialogCombobox, DialogComboboxButtonContainer, DialogComboboxContent, DialogComboboxCountBadge, DialogComboboxLoadingSpinner, DialogComboboxOptionControlledList, DialogComboboxOptionList, DialogComboboxOptionListCheckboxItem, DialogComboboxOptionListSearch, DialogComboboxOptionListSelectItem, DialogComboboxSectionHeader, DialogComboboxSeparator, DialogComboboxTrigger, DotsCircleIcon, DownloadIcon, DragIcon, Drawer, Dropdown, DropdownMenu, DuboisDatePicker, Empty, ExpandLessIcon, ExpandMoreIcon, FileCodeIcon, FileDocumentIcon, FileIcon, FileImageIcon, FileModelIcon, FilterIcon, FolderFillIcon, FolderIcon, FontIcon, ForkIcon, Form, FormDubois, FormUI, FullscreenExitIcon, FullscreenIcon, GearFillIcon, GearIcon, GiftIcon, GridDashIcon, GridIcon, H1Icon, H2Icon, H3Icon, Header$1 as Header, HistoryIcon, HomeIcon, Icon, ImageIcon, IndentDecreaseIcon, IndentIncreaseIcon, InfinityIcon, InfoFillIcon, InfoIcon, Input, ItalicIcon, KeyboardIcon, LayerIcon, Layout, LegacyDatePicker, LegacyTable, LettersIcon, LightningIcon, LinkIcon, LinkOffIcon, ListBorderIcon, ListIcon, LoadingIcon, LockFillIcon, LockIcon, LockUnlockedIcon, MIcon, Menu, MenuIcon, MinusBoxIcon, MinusCircleFillIcon, MinusCircleIcon, Modal, ModelsIcon, Nav, NavButton, NewWindowIcon, NoIcon, NotebookIcon, NotificationIcon, NotificationOffIcon, NotificationV2, NumbersIcon, OfficeIcon, OptGroup, Option, OverflowIcon, PageBottomIcon, PageFirstIcon, PageLastIcon, PageTopIcon, PageWrapper, Pagination, Panel, PanelBody, PanelHeader, PanelHeaderButtons, PanelHeaderTitle, PencilIcon, PinCancelIcon, PinFillIcon, PinIcon, PlayCircleFillIcon, PlayCircleIcon, PlayIcon, PlugIcon, PlusCircleFillIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, Popover, PopoverV2, QueryEditorIcon, QueryIcon, QuestionMarkFillIcon, QuestionMarkIcon, RHFControlledComponents, ROW_GUTTER_SIZE, Radio, ReaderModeIcon, RedoIcon, RefreshIcon, ReposIcon, RestoreAntDDefaultClsPrefix, Row, SaveIcon, SchoolIcon, SearchIcon, SecurityIcon, SegmentedControlButton, SegmentedControlGroup, Select, ShareIcon, Sidebar, SidebarAutoIcon, SidebarCollapseIcon, SidebarExpandIcon, SidebarIcon, Skeleton, SlidersIcon, SortAscendingIcon, SortDescendingIcon, SortUnsortedIcon, Space, Spacer, SpeechBubbleIcon, SpeechBubblePlusIcon, Spinner, SplitButton, StarFillIcon, StarIcon, StopCircleFillIcon, StopCircleIcon, StopIcon, StorefrontIcon, StreamIcon, Switch, SyncIcon, TabPane, Table, TableCell, TableFilterInput, TableFilterLayout, TableHeader, TableIcon, TableRow, TableRowAction, TableRowMenuContainer, TableRowSelectCell, TableSkeleton, Tabs, Tag, ToggleButton, Tooltip, TrashIcon, Tree, TreeIcon, Typography, UnderlineIcon, UndoIcon, UploadIcon, UsbIcon, UserBadgeIcon, UserCircleIcon, UserGroupIcon, UserIcon, VariableIcon, VisibleIcon, VisibleOffIcon, WarningFillIcon, WarningIcon, WorkspacesIcon, XCircleFillIcon, XCircleIcon, ZoomInIcon, ZoomOutIcon, __INTERNAL_DO_NOT_USE_DEDUPE__Group, __INTERNAL_DO_NOT_USE__FormItem, __INTERNAL_DO_NOT_USE__Group, __INTERNAL_DO_NOT_USE__HorizontalGroup, __INTERNAL_DO_NOT_USE__Password, __INTERNAL_DO_NOT_USE__TextArea, __INTERNAL_DO_NOT_USE__VerticalGroup, getAnimationCss, getButtonEmotionStyles, getPaginationEmotionStyles, getRadioStyles, getTabEmotionStyles, getWrapperStyle, useAntDConfigProviderContext, useDesignSystemFlags, useNotification, useThemedStyles, withNotifications };
16789
+ export { Accordion, AccordionPanel, Alert, AlignCenterIcon, AlignLeftIcon, AlignRightIcon, AppIcon, ApplyDesignSystemContextOverrides, ApplyDesignSystemFlags, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArrowsUpDownIcon, AutoComplete, BarChartIcon, BeakerIcon, BinaryIcon, BoldIcon, BookIcon, BookmarkFillIcon, BookmarkIcon, BracketsCurlyIcon, BracketsSquareIcon, BracketsXIcon, Breadcrumb, BriefcaseFillIcon, BriefcaseIcon, Button, CalendarEventIcon, CalendarIcon, CaretDownSquareIcon, CaretUpSquareIcon, CatalogIcon, ChartLineIcon, CheckCircleBadgeIcon, CheckCircleFillIcon, CheckCircleIcon, CheckIcon, CheckLineIcon, Checkbox, ChecklistIcon, ChevronDoubleDownIcon, ChevronDoubleLeftIcon, ChevronDoubleRightIcon, ChevronDoubleUpIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, CloudDownloadIcon, CloudIcon, CloudKeyIcon, CloudModelIcon, CloudOffIcon, CloudUploadIcon, CodeIcon, Col, ColorFillIcon, ConnectIcon, Content, CopyIcon, CursorIcon, CursorPagination, DIcon, DU_BOIS_ENABLE_ANIMATION_CLASSNAME, DagIcon, DangerFillIcon, DangerIcon, DangerModal, DashIcon, DashboardIcon, DataIcon, DatabaseIcon, DecimalIcon, DesignSystemAntDConfigProvider, DesignSystemContext, DesignSystemProvider, DesignSystemThemeContext, DesignSystemThemeProvider, DialogCombobox, DialogComboboxButtonContainer, DialogComboboxContent, DialogComboboxCountBadge, DialogComboboxLoadingSpinner, DialogComboboxOptionControlledList, DialogComboboxOptionList, DialogComboboxOptionListCheckboxItem, DialogComboboxOptionListSearch, DialogComboboxOptionListSelectItem, DialogComboboxSectionHeader, DialogComboboxSeparator, DialogComboboxTrigger, DotsCircleIcon, DownloadIcon, DragIcon, Drawer, Dropdown, DropdownMenu, DuboisDatePicker, Empty, ExpandLessIcon, ExpandMoreIcon, FileCodeIcon, FileDocumentIcon, FileIcon, FileImageIcon, FileModelIcon, FilterIcon, FolderFillIcon, FolderIcon, FontIcon, ForkIcon, Form, FormDubois, FormUI, FullscreenExitIcon, FullscreenIcon, GearFillIcon, GearIcon, GiftIcon, GridDashIcon, GridIcon, H1Icon, H2Icon, H3Icon, Header$1 as Header, HistoryIcon, HomeIcon, Icon, ImageIcon, IndentDecreaseIcon, IndentIncreaseIcon, InfinityIcon, InfoFillIcon, InfoIcon, Input, ItalicIcon, KeyboardIcon, LayerIcon, Layout, LegacyDatePicker, LegacyTable, LettersIcon, LightningIcon, LinkIcon, LinkOffIcon, ListBorderIcon, ListIcon, LoadingIcon, LockFillIcon, LockIcon, LockUnlockedIcon, MIcon, Menu, MenuIcon, MinusBoxIcon, MinusCircleFillIcon, MinusCircleIcon, Modal, ModelsIcon, Nav, NavButton, NewWindowIcon, NoIcon, NotebookIcon, NotificationIcon, NotificationOffIcon, NotificationV2, NumbersIcon, OfficeIcon, OptGroup, Option, OverflowIcon, PageBottomIcon, PageFirstIcon, PageLastIcon, PageTopIcon, PageWrapper, Pagination, Panel, PanelBody, PanelHeader, PanelHeaderButtons, PanelHeaderTitle, PencilIcon, PinCancelIcon, PinFillIcon, PinIcon, PlayCircleFillIcon, PlayCircleIcon, PlayIcon, PlugIcon, PlusCircleFillIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, Popover, PopoverV2, QueryEditorIcon, QueryIcon, QuestionMarkFillIcon, QuestionMarkIcon, RHFControlledComponents, ROW_GUTTER_SIZE, Radio, ReaderModeIcon, RedoIcon, RefreshIcon, ReposIcon, RestoreAntDDefaultClsPrefix, Row, SaveIcon, SchoolIcon, SearchIcon, SecurityIcon, SegmentedControlButton, SegmentedControlGroup, Select, ShareIcon, Sidebar, SidebarAutoIcon, SidebarCollapseIcon, SidebarExpandIcon, SidebarIcon, Skeleton, SlidersIcon, SortAscendingIcon, SortDescendingIcon, SortUnsortedIcon, Space, Spacer, SpeechBubbleIcon, SpeechBubblePlusIcon, Spinner, SplitButton, StarFillIcon, StarIcon, StopCircleFillIcon, StopCircleIcon, StopIcon, StorefrontIcon, StreamIcon, Switch, SyncIcon, TabPane, Table, TableCell, TableFilterInput, TableFilterLayout, TableHeader, TableIcon, TableRow, TableRowAction, TableRowMenuContainer, TableRowSelectCell, TableSkeleton, Tabs, Tag, ToggleButton, Tooltip, TrashIcon, Tree, TreeIcon, Typography, UnderlineIcon, UndoIcon, UploadIcon, UsbIcon, UserBadgeIcon, UserCircleIcon, UserGroupIcon, UserIcon, VariableIcon, VisibleIcon, VisibleOffIcon, WarningFillIcon, WarningIcon, WorkspacesIcon, XCircleFillIcon, XCircleIcon, ZoomInIcon, ZoomOutIcon, __INTERNAL_DO_NOT_USE_DEDUPE__Group, __INTERNAL_DO_NOT_USE__FormItem, __INTERNAL_DO_NOT_USE__Group, __INTERNAL_DO_NOT_USE__HorizontalGroup, __INTERNAL_DO_NOT_USE__Password, __INTERNAL_DO_NOT_USE__TextArea, __INTERNAL_DO_NOT_USE__VerticalGroup, getAnimationCss, getButtonEmotionStyles, getPaginationEmotionStyles, getRadioStyles, getTabEmotionStyles, getWrapperStyle, useAntDConfigProviderContext, useDesignSystemFlags, useNotification, useThemedStyles, withNotifications };
16721
16790
  //# sourceMappingURL=index.js.map