@databricks/design-system 2.0.6 → 2.0.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 (30) hide show
  1. package/AGENTS.md +239 -166
  2. package/CHANGELOG.md +28 -0
  3. package/dist/{RHFControlledTypeaheadComboboxV2-Ct9x3rC1.js → RHFControlledTypeaheadComboboxV2-nSSYj16I.js} +3 -3
  4. package/dist/{RHFControlledTypeaheadComboboxV2-Ct9x3rC1.js.map → RHFControlledTypeaheadComboboxV2-nSSYj16I.js.map} +1 -1
  5. package/dist/{WizardStepContentWrapper-6YTjeEaA.js → WizardStepContentWrapper-bbh_CoIf.js} +195 -257
  6. package/dist/WizardStepContentWrapper-bbh_CoIf.js.map +1 -0
  7. package/dist/dubois-colors.less +1 -1
  8. package/dist/icon-metadata.json +5 -0
  9. package/dist/{index-DiRpSwH2.js → index-CUCuUviS.js} +119 -109
  10. package/dist/index-CUCuUviS.js.map +1 -0
  11. package/dist/index-dark.css +135 -1
  12. package/dist/index-dark.mitigated.css +163 -16
  13. package/dist/index.css +182 -28
  14. package/dist/index.js +2 -2
  15. package/dist/index.mitigated.css +210 -43
  16. package/dist/patterns.js +1 -1
  17. package/dist-types/design-system/Alert/Alert.d.ts +21 -4
  18. package/dist-types/design-system/Button/Button.d.ts +2 -1
  19. package/dist-types/design-system/Icon/__generated/icons/SlidesIcon.d.ts +4 -0
  20. package/dist-types/design-system/Icon/__generated/icons/index.d.ts +1 -0
  21. package/dist-types/design-system/TypeaheadCombobox/TypeaheadComboboxControls.d.ts +0 -2
  22. package/dist-types/design-system/index.d.ts +0 -1
  23. package/dist-types/design-system/utils/safex.d.ts +4 -2
  24. package/dist-types/theme/generalVariables.d.ts +0 -1
  25. package/package.json +5 -4
  26. package/setup.mjs +586 -0
  27. package/dist/WizardStepContentWrapper-6YTjeEaA.js.map +0 -1
  28. package/dist/index-DiRpSwH2.js.map +0 -1
  29. package/dist-types/design-system/LegacyTooltip/LegacyTooltip.d.ts +0 -47
  30. package/dist-types/design-system/LegacyTooltip/index.d.ts +0 -1
@@ -1,9 +1,9 @@
1
1
  import { jsx, Fragment, jsxs } from '@emotion/react/jsx-runtime';
2
2
  import isUndefined from 'lodash/isUndefined';
3
3
  import * as React from 'react';
4
- import React__default, { useRef, useEffect, useMemo, useCallback, useContext, createContext, useState, forwardRef, useLayoutEffect, useImperativeHandle, Children } from 'react';
4
+ import React__default, { useRef, useEffect, useMemo, useCallback, useContext, createContext, useState, forwardRef, useLayoutEffect, useImperativeHandle, Children, isValidElement } from 'react';
5
5
  import { useTheme, ThemeProvider, css, keyframes, ClassNames, Global, createElement } from '@emotion/react';
6
- import { ConfigProvider, notification, Collapse, Button as Button$1, Typography as Typography$1, Checkbox as Checkbox$1, Input as Input$2, Select as Select$1, Radio as Radio$1, Layout as Layout$1, Form as Form$1, Pagination as Pagination$1, Table, Tooltip as Tooltip$1, Dropdown, Tree as Tree$1 } from 'antd';
6
+ import { ConfigProvider, notification, Collapse, Button as Button$1, Typography as Typography$1, Checkbox as Checkbox$1, Input as Input$2, Select as Select$1, Radio as Radio$1, Layout as Layout$1, Form as Form$1, Pagination as Pagination$1, Table, Dropdown, Tree as Tree$1 } from 'antd';
7
7
  import classnames from 'classnames';
8
8
  import { useMergeRefs } from '@floating-ui/react';
9
9
  import uniqueId$1 from 'lodash/uniqueId';
@@ -77,6 +77,16 @@ import * as Toggle from '@radix-ui/react-toggle';
77
77
  }
78
78
  };
79
79
 
80
+ function shouldUseTestDefaultFlagValues() {
81
+ if (typeof process !== 'undefined' && process.env?.NODE_ENV === 'test') {
82
+ return true;
83
+ }
84
+ const globalWithMarker = globalThis;
85
+ return Boolean(globalWithMarker.__DATABRICKS_USE_TEST_DEFAULT_FLAG_VALUES__ || globalWithMarker.window?.__DATABRICKS_USE_TEST_DEFAULT_FLAG_VALUES__);
86
+ }
87
+ function resolveFlagFallback(defaultValue, testDefault) {
88
+ return testDefault !== undefined && shouldUseTestDefaultFlagValues() ? testDefault : defaultValue;
89
+ }
80
90
  /**
81
91
  * Provides access to http://go/safex flags from the frontend. Note that this is a temporary
82
92
  * workaround until direct `safex` imports are available.
@@ -87,22 +97,23 @@ import * as Toggle from '@radix-ui/react-toggle';
87
97
  *
88
98
  * @param flag The name of the flag to check
89
99
  * @param defaultValue The default value to return if the flag is not set
100
+ * @param testDefault The default to use in Jest or UiTestServer tests
90
101
  * @returns
91
- */ const safex = (flag, defaultValue)=>{
102
+ */ const safex = (flag, defaultValue, testDefault)=>{
92
103
  // Catching errors here, because we don't have type-safety to ensure
93
104
  // that `__debug__safex`'s API hasn't changed.
94
105
  try {
95
106
  const globalSafex = window.__debug__safex;
96
107
  if (globalSafex) {
97
- return globalSafex(flag, defaultValue);
108
+ return globalSafex(flag, defaultValue, testDefault);
98
109
  }
99
110
  const override = globalThis.__TEST_FLAG_OVERRIDES__?.[flag];
100
111
  if (override !== undefined) {
101
112
  return override;
102
113
  }
103
- return defaultValue;
114
+ return resolveFlagFallback(defaultValue, testDefault);
104
115
  } catch (e) {
105
- return defaultValue;
116
+ return resolveFlagFallback(defaultValue, testDefault);
106
117
  }
107
118
  };
108
119
  /**
@@ -114,13 +125,14 @@ import * as Toggle from '@radix-ui/react-toggle';
114
125
  *
115
126
  * @param flag The name of the flag to check
116
127
  * @param defaultValue The default value to return if the flag is not set
128
+ * @param testDefault The default to use in Jest or UiTestServer tests
117
129
  * @returns
118
- */ const serverSideSafe = (flag, defaultValue)=>{
130
+ */ const serverSideSafe = (flag, defaultValue, testDefault)=>{
119
131
  try {
120
132
  // Delegate to web-shared's serverSideSafe if available (includes local overrides)
121
133
  const globalServerSideSafe = window.__debug__serverSideSafe;
122
134
  if (globalServerSideSafe) {
123
- return globalServerSideSafe(flag, defaultValue);
135
+ return globalServerSideSafe(flag, defaultValue, testDefault);
124
136
  }
125
137
  // Fallback: check server-side flags directly
126
138
  const explicitOverride = window.__DATABRICKS_SAFE_FLAGS__?.[flag];
@@ -131,9 +143,9 @@ import * as Toggle from '@radix-ui/react-toggle';
131
143
  if (envOverride !== undefined) {
132
144
  return envOverride;
133
145
  }
134
- return defaultValue;
146
+ return resolveFlagFallback(defaultValue, testDefault);
135
147
  } catch (e) {
136
- return defaultValue;
148
+ return resolveFlagFallback(defaultValue, testDefault);
137
149
  }
138
150
  };
139
151
 
@@ -249,7 +261,7 @@ const primitiveColors = {
249
261
  neutral650: '#424242',
250
262
  neutral700: '#262626',
251
263
  neutral800: '#161616',
252
- neutralWarm050: '#F9F7F4',
264
+ neutralWarm050: '#FCFBF9',
253
265
  orange: '#FF3621',
254
266
  pink: '#B45091',
255
267
  purple: '#8A63BF',
@@ -688,7 +700,6 @@ const heightBase = 40;
688
700
  const borderWidth = 1;
689
701
  const antdGeneralVariables = {
690
702
  classnamePrefix: antdVars['ant-prefix'],
691
- iconfontCssPrefix: 'anticon',
692
703
  borderRadiusBase: 4,
693
704
  borderWidth: borderWidth,
694
705
  heightSm: 32,
@@ -1755,8 +1766,10 @@ const getAnimationCss = memoize((enableAnimation)=>{
1755
1766
  ...disableAnimationCss,
1756
1767
  '&::before': disableAnimationCss,
1757
1768
  '&::after': disableAnimationCss,
1758
- // Also apply to all child elements with a class that starts with our prefix
1759
- [`[class*=du-bois]:not(.${DU_BOIS_ENABLE_ANIMATION_CLASSNAME}, .${DU_BOIS_ENABLE_ANIMATION_CLASSNAME} *)`]: {
1769
+ // Also apply to all child elements with a class that starts with our prefix, except elements
1770
+ // which must keep their own animation. Mark those elements directly rather than matching an
1771
+ // ancestor scope for every Du Bois descendant.
1772
+ [`[class*=du-bois]:not(.${DU_BOIS_ENABLE_ANIMATION_CLASSNAME})`]: {
1760
1773
  ...disableAnimationCss,
1761
1774
  // Also target any pseudo-elements associated with those elements, since these can also be animated.
1762
1775
  '&::before': disableAnimationCss,
@@ -2371,10 +2384,12 @@ const NativeIcon = /*#__PURE__*/ forwardRef(function NativeIcon({ component: Com
2371
2384
  });
2372
2385
  });
2373
2386
 
2374
- // Selector matching the design-system icon wrappers, `.anticon` and `.db-icon`. Authored icon styles
2375
- // should use this instead of hardcoding either class.
2387
+ // Selector matching the design-system icon wrapper: `.db-icon` once the native icon flag is on,
2388
+ // `.anticon` otherwise. Authored icon styles should use this instead of hardcoding either class.
2389
+ // Returns a single class (never a comma-list) and callers must not wrap it in `:is()` — both forms
2390
+ // multiply the selector count, which inflated Monaco's per-keystroke style-recalc cost.
2376
2391
  function getIconClassName() {
2377
- return '.anticon, .db-icon';
2392
+ return serverSideSafe('databricks.fe.designsystem.useNativeIcon', false) ? '.db-icon' : '.anticon';
2378
2393
  }
2379
2394
 
2380
2395
  // Public Icon selects between the native (plain-DOM, token-driven) implementation and the legacy
@@ -13293,6 +13308,37 @@ const SlidersIcon = /*#__PURE__*/ forwardRef((props, forwardedRef)=>{
13293
13308
  });
13294
13309
  SlidersIcon.displayName = "SlidersIcon";
13295
13310
 
13311
+ function SvgSlidesIcon(props) {
13312
+ return /*#__PURE__*/ jsxs("svg", {
13313
+ xmlns: "http://www.w3.org/2000/svg",
13314
+ width: "1em",
13315
+ height: "1em",
13316
+ fill: "none",
13317
+ viewBox: "0 0 16 16",
13318
+ ...props,
13319
+ children: [
13320
+ /*#__PURE__*/ jsx("path", {
13321
+ fill: "currentColor",
13322
+ d: "M12 5.5H4V4h8z"
13323
+ }),
13324
+ /*#__PURE__*/ jsx("path", {
13325
+ fill: "currentColor",
13326
+ fillRule: "evenodd",
13327
+ d: "M14.25 1a.75.75 0 0 1 .75.75v9.5a.75.75 0 0 1-.75.75h-2.837l1.667 3h-1.716l-1.666-3H6.302l-1.666 3H2.92l1.667-3H1.75a.75.75 0 0 1-.75-.75v-9.5A.75.75 0 0 1 1.75 1zM2.5 10.5h11v-8h-11z",
13328
+ clipRule: "evenodd"
13329
+ })
13330
+ ]
13331
+ });
13332
+ }
13333
+ const SlidesIcon = /*#__PURE__*/ forwardRef((props, forwardedRef)=>{
13334
+ return /*#__PURE__*/ jsx(Icon, {
13335
+ ref: forwardedRef,
13336
+ ...props,
13337
+ component: SvgSlidesIcon
13338
+ });
13339
+ });
13340
+ SlidesIcon.displayName = "SlidesIcon";
13341
+
13296
13342
  function SvgSnippetIcon(props) {
13297
13343
  return /*#__PURE__*/ jsxs("svg", {
13298
13344
  xmlns: "http://www.w3.org/2000/svg",
@@ -17537,7 +17583,7 @@ var ShapeTokens = /*#__PURE__*/ function(ShapeTokens) {
17537
17583
  const token = (token, fallback)=>`var(${token}, ${typeof fallback === 'number' ? `${fallback}px` : fallback})`;
17538
17584
 
17539
17585
  const SMALL_BUTTON_HEIGHT$2 = 24;
17540
- const ICON_SELECTOR$1 = `:is(${getIconClassName()})`;
17586
+ const ICON_SELECTOR$1 = `${getIconClassName()}`;
17541
17587
  // Hoisted to module level so the default reference is stable across renders and instances.
17542
17588
  // Without this, the default `analyticsEvents = [...]` literal would be a fresh array on every
17543
17589
  // render, propagating ref-instability into useDesignSystemEventComponentCallbacks.
@@ -17577,11 +17623,11 @@ const getMemoizedButtonEmotionStyles = (props)=>{
17577
17623
  themeCache.set(cacheKey, styles);
17578
17624
  return styles;
17579
17625
  };
17580
- function getEndIconClsName(theme) {
17581
- return `${theme.general.iconfontCssPrefix}-btn-end-icon`;
17582
- }
17626
+ // Trailing-icon slot wrapper class, derived from the design-system icon class so this slot and the
17627
+ // consumers that style it stay in sync with it. getIconClassName() is a selector — strip the dot.
17628
+ const BUTTON_END_ICON_CLASSNAME = `${getIconClassName().replace('.', '')}-btn-end-icon`;
17583
17629
  const getButtonEmotionStyles = ({ theme, classNamePrefix, loading, withIcon, onlyIcon, isAnchor, enableAnimation, size, type, useFocusPseudoClass, forceIconStyles, danger })=>{
17584
- const clsEndIcon = `.${getEndIconClsName(theme)}`;
17630
+ const clsEndIcon = `.${BUTTON_END_ICON_CLASSNAME}`;
17585
17631
  const clsLoadingIcon = `.${classNamePrefix}-btn-loading-icon`;
17586
17632
  const clsIconOnly = `.${classNamePrefix}-btn-icon-only`;
17587
17633
  const classPrimary = `.${classNamePrefix}-btn-primary`;
@@ -17882,7 +17928,7 @@ const AntDButtonInternal = /* #__PURE__ */ (()=>{
17882
17928
  // If the button is a submit button and is part of a form, it is not the subject of the interaction, the form submission is
17883
17929
  isInteractionSubject: !(props.htmlType === 'submit' && formContext.componentId)
17884
17930
  });
17885
- const clsEndIcon = getEndIconClsName(theme);
17931
+ const clsEndIcon = BUTTON_END_ICON_CLASSNAME;
17886
17932
  const loadingCls = `${classNamePrefix}-btn-loading-icon`;
17887
17933
  const { elementRef: buttonRef } = useNotifyOnFirstView({
17888
17934
  onView: eventContext.onView
@@ -18159,12 +18205,13 @@ const NativeButton = /*#__PURE__*/ forwardRef(function NativeButton({ type, size
18159
18205
  });
18160
18206
  });
18161
18207
 
18162
- // Public Button selects between the native (plain-DOM, token-driven) implementation and the legacy
18163
- // implementation on the `databricks.fe.designsystem.useNativeButton` server-side flag, default off.
18208
+ // Public Button selects between the native (plain-DOM, token-driven) implementation and the legacy one.
18209
+ // `forceMode` defaults to `'native'` so new buttons are native; existing callsites pass `'flag'` to
18210
+ // defer to the `databricks.fe.designsystem.useNativeButton` server-side flag for rollout.
18164
18211
  // serverSideSafe resolves synchronously at render, so the choice is stable from first paint.
18165
18212
  const Button = /* #__PURE__ */ (()=>{
18166
- const Button = /*#__PURE__*/ forwardRef(function Button({ useNativeButtonOverride, ...props }, ref) {
18167
- const useNativeButton = useNativeButtonOverride ?? serverSideSafe('databricks.fe.designsystem.useNativeButton', false);
18213
+ const Button = /*#__PURE__*/ forwardRef(function Button({ forceMode = 'native', ...props }, ref) {
18214
+ const useNativeButton = forceMode === 'native' || forceMode === 'flag' && serverSideSafe('databricks.fe.designsystem.useNativeButton', false);
18168
18215
  if (useNativeButton) {
18169
18216
  return /*#__PURE__*/ jsx(NativeButton, {
18170
18217
  ...props,
@@ -18176,8 +18223,8 @@ const Button = /* #__PURE__ */ (()=>{
18176
18223
  ref: ref
18177
18224
  });
18178
18225
  });
18179
- // The default path is the legacy Ant-backed button, so keep the marker Ant wrappers (e.g. Tooltip)
18180
- // read to identify it preserving pre-split behavior while the flag is off.
18226
+ // Keep the marker Ant wrappers (e.g. Tooltip) read to identify a button, so their spacing/rendering
18227
+ // around Button is unchanged regardless of which implementation renders underneath.
18181
18228
  // See: https://github.com/ant-design/ant-design/blob/6dd39c1f89b4d6632e6ed022ff1bc275ca1e0f1f/components/button/button.tsx#L291
18182
18229
  Button.__ANT_BUTTON = true;
18183
18230
  return Button;
@@ -18302,11 +18349,11 @@ const getLinkStyles = (theme, clsPrefix)=>{
18302
18349
  [`&${classTypography}, &${classTypography}:focus`]: {
18303
18350
  color: theme.colors.actionTertiaryTextDefault
18304
18351
  },
18305
- [`&${classTypography}:hover, &${classTypography}:hover :is(${getIconClassName()})`]: {
18352
+ [`&${classTypography}:hover, &${classTypography}:hover ${getIconClassName()}`]: {
18306
18353
  color: theme.colors.actionTertiaryTextHover,
18307
18354
  textDecoration: 'underline'
18308
18355
  },
18309
- [`&${classTypography}:active, &${classTypography}:active :is(${getIconClassName()})`]: {
18356
+ [`&${classTypography}:active, &${classTypography}:active ${getIconClassName()}`]: {
18310
18357
  color: theme.colors.actionTertiaryTextPress,
18311
18358
  textDecoration: 'underline'
18312
18359
  },
@@ -18452,7 +18499,7 @@ function getParagraphEmotionStyles(theme, clsPrefix, props) {
18452
18499
  lineHeight: theme.typography.lineHeightBase,
18453
18500
  color: getTypographyColor(theme, props.color, theme.colors.textPrimary)
18454
18501
  },
18455
- [`& :is(${getIconClassName()})`]: {
18502
+ [`& ${getIconClassName()}`]: {
18456
18503
  verticalAlign: 'text-bottom'
18457
18504
  },
18458
18505
  [`${getBtnClassName(clsPrefix, '-link', '& ')}, ${getBtnClassName(clsPrefix, '-tertiary', '& ')}`]: {
@@ -18533,7 +18580,7 @@ function getTextEmotionStyles(theme, props) {
18533
18580
  return {
18534
18581
  fontSize: theme.typography.fontSizeXxl,
18535
18582
  lineHeight: theme.typography.lineHeightXxl,
18536
- [`& :is(${getIconClassName()})`]: {
18583
+ [`& ${getIconClassName()}`]: {
18537
18584
  lineHeight: theme.typography.lineHeightXxl,
18538
18585
  verticalAlign: 'middle'
18539
18586
  }
@@ -18542,7 +18589,7 @@ function getTextEmotionStyles(theme, props) {
18542
18589
  return {
18543
18590
  fontSize: theme.typography.fontSizeXl,
18544
18591
  lineHeight: theme.typography.lineHeightXl,
18545
- [`& :is(${getIconClassName()})`]: {
18592
+ [`& ${getIconClassName()}`]: {
18546
18593
  lineHeight: theme.typography.lineHeightXl,
18547
18594
  verticalAlign: 'middle'
18548
18595
  }
@@ -18551,7 +18598,7 @@ function getTextEmotionStyles(theme, props) {
18551
18598
  return {
18552
18599
  fontSize: theme.typography.fontSizeLg,
18553
18600
  lineHeight: theme.typography.lineHeightLg,
18554
- [`& :is(${getIconClassName()})`]: {
18601
+ [`& ${getIconClassName()}`]: {
18555
18602
  lineHeight: theme.typography.lineHeightLg,
18556
18603
  verticalAlign: 'middle'
18557
18604
  }
@@ -18560,7 +18607,7 @@ function getTextEmotionStyles(theme, props) {
18560
18607
  return {
18561
18608
  fontSize: theme.typography.fontSizeSm,
18562
18609
  lineHeight: theme.typography.lineHeightSm,
18563
- [`& :is(${getIconClassName()})`]: {
18610
+ [`& ${getIconClassName()}`]: {
18564
18611
  verticalAlign: '-0.219em'
18565
18612
  }
18566
18613
  };
@@ -18676,7 +18723,7 @@ function getLevelStyles(theme, props) {
18676
18723
  lineHeight: theme.typography[tokens.lineHeight],
18677
18724
  fontWeight: theme.typography.typographyBoldFontWeight
18678
18725
  },
18679
- [`& > :is(${getIconClassName()})`]: {
18726
+ [`& > ${getIconClassName()}`]: {
18680
18727
  lineHeight: theme.typography[tokens.lineHeight]
18681
18728
  }
18682
18729
  });
@@ -18686,7 +18733,7 @@ function getTitleEmotionStyles(theme, props) {
18686
18733
  '&&': {
18687
18734
  color: getTypographyColor(theme, props.color, theme.colors.textPrimary)
18688
18735
  },
18689
- [`& > :is(${getIconClassName()})`]: {
18736
+ [`& > ${getIconClassName()}`]: {
18690
18737
  verticalAlign: 'middle'
18691
18738
  }
18692
18739
  }, props.withoutMargins && {
@@ -20131,7 +20178,7 @@ const TitleSkeleton = ({ label, seed = '', frameRate = 60, style, level, inline
20131
20178
  });
20132
20179
  };
20133
20180
 
20134
- const ICON_SELECTOR = `:is(${getIconClassName()})`;
20181
+ const ICON_SELECTOR = `${getIconClassName()}`;
20135
20182
  // Class names that can be used to reference children within
20136
20183
  // Should not be used outside of design system
20137
20184
  // TODO: PE-239 Maybe we could add "dangerous" into the names or make them completely random.
@@ -26973,58 +27020,47 @@ var Drawer = /*#__PURE__*/Object.freeze({
26973
27020
  });
26974
27021
 
26975
27022
  const { Title, Paragraph } = Typography;
26976
- function getEmptyStyles(theme) {
26977
- const styles = {
26978
- display: 'flex',
26979
- flexDirection: 'column',
26980
- alignItems: 'center',
26981
- textAlign: 'center',
26982
- maxWidth: 600,
26983
- wordBreak: 'break-word',
26984
- // TODO: This isn't ideal, but migrating to a safer selector would require a SAFE flag / careful migration.
26985
- '> [role="img"]': {
26986
- // Set size of image to 64px
26987
- fontSize: 64,
26988
- color: theme.colors.actionDisabledText,
26989
- marginBottom: theme.spacing.md
26990
- }
26991
- };
26992
- return /*#__PURE__*/ css(styles);
26993
- }
26994
- function getEmptyTitleStyles(theme, clsPrefix) {
27023
+ function getEmptyTitleStyles(clsPrefix) {
26995
27024
  const styles = {
26996
27025
  [`&.${clsPrefix}-typography`]: {
26997
- color: theme.colors.textSecondary,
27026
+ color: 'var(--db-empty-text)',
26998
27027
  marginTop: 0,
26999
27028
  marginBottom: 0
27000
27029
  }
27001
27030
  };
27002
27031
  return /*#__PURE__*/ css(styles);
27003
27032
  }
27004
- function getEmptyDescriptionStyles(theme, clsPrefix) {
27033
+ function getEmptyDescriptionStyles(clsPrefix) {
27005
27034
  const styles = {
27006
27035
  [`&.${clsPrefix}-typography`]: {
27007
- color: theme.colors.textSecondary,
27008
- marginBottom: theme.spacing.md
27036
+ color: 'var(--db-empty-text)',
27037
+ marginBottom: 'var(--db-empty-description-spacing)'
27009
27038
  }
27010
27039
  };
27011
27040
  return /*#__PURE__*/ css(styles);
27012
27041
  }
27013
- // Module-level caches. Each Empty instance shares one SerializedStyles per
27014
- // (isDarkMode, classNamePrefix) combination. Same pattern as
27015
- // getShadowScrollStylesMemoized in css-utils.tsx.
27016
- const getMemoizedEmptyStyles = memoize((theme)=>getEmptyStyles(theme));
27017
- const getMemoizedEmptyTitleStyles = memoize((theme, clsPrefix)=>getEmptyTitleStyles(theme, clsPrefix), (theme, clsPrefix)=>`${themeMemoKey(theme)}|${clsPrefix}`);
27018
- const getMemoizedEmptyDescriptionStyles = memoize((theme, clsPrefix)=>getEmptyDescriptionStyles(theme, clsPrefix), (theme, clsPrefix)=>`${themeMemoKey(theme)}|${clsPrefix}`);
27019
- // Stable wrapper styles — never depend on theme.
27042
+ const getMemoizedEmptyTitleStyles = memoize(getEmptyTitleStyles);
27043
+ const getMemoizedEmptyDescriptionStyles = memoize(getEmptyDescriptionStyles);
27020
27044
  const OUTER_WRAPPER_CSS = /*#__PURE__*/ css({
27021
27045
  display: 'flex',
27022
27046
  justifyContent: 'center'
27023
27047
  });
27024
- // Stable default image element.
27048
+ const CONTENT_CSS = /*#__PURE__*/ css({
27049
+ display: 'flex',
27050
+ flexDirection: 'column',
27051
+ alignItems: 'center',
27052
+ textAlign: 'center',
27053
+ maxWidth: 'var(--db-empty-max-width)',
27054
+ wordBreak: 'break-word',
27055
+ '> [role="img"]': {
27056
+ fontSize: 'var(--db-empty-image-size)',
27057
+ color: 'var(--db-empty-image-color)',
27058
+ marginBottom: 'var(--db-empty-image-spacing)'
27059
+ }
27060
+ });
27025
27061
  const DEFAULT_IMAGE = /*#__PURE__*/ jsx(ListIcon, {});
27026
27062
  const Empty = (props)=>{
27027
- const { theme, classNamePrefix } = useDesignSystemTheme();
27063
+ const { classNamePrefix } = useDesignSystemTheme();
27028
27064
  const { title, description, image = DEFAULT_IMAGE, button, dangerouslyAppendEmotionCSS, ...dataProps } = props;
27029
27065
  return /*#__PURE__*/ jsx("div", {
27030
27066
  ...dataProps,
@@ -27032,18 +27068,18 @@ const Empty = (props)=>{
27032
27068
  css: OUTER_WRAPPER_CSS,
27033
27069
  children: /*#__PURE__*/ jsxs("div", {
27034
27070
  css: [
27035
- getMemoizedEmptyStyles(theme),
27071
+ CONTENT_CSS,
27036
27072
  dangerouslyAppendEmotionCSS
27037
27073
  ],
27038
27074
  children: [
27039
27075
  image,
27040
27076
  title && /*#__PURE__*/ jsx(Title, {
27041
27077
  level: 3,
27042
- css: getMemoizedEmptyTitleStyles(theme, classNamePrefix),
27078
+ css: getMemoizedEmptyTitleStyles(classNamePrefix),
27043
27079
  children: title
27044
27080
  }),
27045
27081
  /*#__PURE__*/ jsx(Paragraph, {
27046
- css: getMemoizedEmptyDescriptionStyles(theme, classNamePrefix),
27082
+ css: getMemoizedEmptyDescriptionStyles(classNamePrefix),
27047
27083
  children: description
27048
27084
  }),
27049
27085
  button
@@ -27173,7 +27209,13 @@ function getSelectEmotionStyles({ clsPrefix, theme, validationState }) {
27173
27209
  // the click event.
27174
27210
  pointerEvents: 'none',
27175
27211
  // anticon default line height is 0 and that wrongly shifts the icon down
27176
- lineHeight: 1
27212
+ lineHeight: 1,
27213
+ // AntD vendors `.<prefix>-select-arrow .anticon(> svg) { vertical-align: top }`, which the native
27214
+ // `.db-icon` glyph can't match; without it the glyph falls to its baseline default and shifts up.
27215
+ verticalAlign: 'top',
27216
+ '& > svg': {
27217
+ verticalAlign: 'top'
27218
+ }
27177
27219
  },
27178
27220
  [`&${classArrowLoading}`]: {
27179
27221
  top: (theme.general.heightSm - theme.general.iconFontSize) / 2,
@@ -27286,7 +27328,7 @@ function getSelectEmotionStyles({ clsPrefix, theme, validationState }) {
27286
27328
  lineHeight: theme.typography.lineHeightBase,
27287
27329
  paddingInlineEnd: 0,
27288
27330
  marginInlineEnd: 0,
27289
- [`& > :is(${getIconClassName()})`]: {
27331
+ [`& > ${getIconClassName()}`]: {
27290
27332
  height: theme.general.iconFontSize - 4,
27291
27333
  fontSize: theme.general.iconFontSize - 4
27292
27334
  },
@@ -31979,10 +32021,31 @@ const FormItem = ({ dangerouslySetAntdProps, children, ...props })=>{
31979
32021
  implicitContext,
31980
32022
  props.rules
31981
32023
  ]);
32024
+ // Use a DS icon for the help affordance so it tracks the native-icon flag and keeps the
32025
+ // getIconClassName()-keyed 16px size; AntD's QuestionCircleOutlined shrinks once the flag is on.
32026
+ let tooltip = props.tooltip;
32027
+ if (props.tooltip != null) {
32028
+ tooltip = typeof props.tooltip === 'object' && !/*#__PURE__*/ isValidElement(props.tooltip) ? {
32029
+ icon: /*#__PURE__*/ jsx(InfoSmallIcon, {
32030
+ css: /*#__PURE__*/ css({
32031
+ color: theme.colors.textSecondary
32032
+ })
32033
+ }),
32034
+ ...props.tooltip
32035
+ } : {
32036
+ title: props.tooltip,
32037
+ icon: /*#__PURE__*/ jsx(InfoSmallIcon, {
32038
+ css: /*#__PURE__*/ css({
32039
+ color: theme.colors.textSecondary
32040
+ })
32041
+ })
32042
+ };
32043
+ }
31982
32044
  return /*#__PURE__*/ jsx(DesignSystemAntDConfigProvider, {
31983
32045
  children: /*#__PURE__*/ jsx(Form$1.Item, {
31984
32046
  ...addDebugOutlineIfEnabled(),
31985
32047
  ...props,
32048
+ tooltip: tooltip,
31986
32049
  rules: wrappedRules,
31987
32050
  css: getMemoizedFormItemEmotionStyles({
31988
32051
  theme,
@@ -32352,132 +32415,6 @@ const LegacyTable = (props)=>{
32352
32415
  });
32353
32416
  };
32354
32417
 
32355
- // Module-level caches. Both styles depend only on theme (and zIndex), so share one
32356
- // object across every LegacyTooltip instance instead of allocating per render.
32357
- const TRIGGER = [
32358
- 'hover',
32359
- 'focus'
32360
- ];
32361
- const getMemoizedDefaultOverlayInnerStyle = memoize((theme)=>({
32362
- backgroundColor: '#2F3941',
32363
- lineHeight: '22px',
32364
- padding: '4px 8px',
32365
- boxShadow: theme.general.shadowLow,
32366
- ...getDarkModePortalStyles(theme)
32367
- }));
32368
- const getMemoizedDefaultOverlayStyle = memoize((theme)=>({
32369
- zIndex: theme.options.zIndexBase + 70
32370
- }), (theme)=>String(theme.options.zIndexBase));
32371
- const getMemoizedAnimationCss = memoize((enableAnimation)=>/*#__PURE__*/ css({
32372
- ...getAnimationCss(enableAnimation)
32373
- }));
32374
- /**
32375
- * `LegacyTooltip` is deprecated in favor of the new `Tooltip` component
32376
- * @deprecated
32377
- */ const LegacyTooltip = ({ children, title, placement = 'top', dataTestId, dangerouslySetAntdProps, silenceScreenReader = false, useAsLabel = false, ...props })=>{
32378
- const { theme } = useDesignSystemTheme();
32379
- const tooltipRef = useRef(null);
32380
- const duboisId = useUniqueId('dubois-tooltip-component-');
32381
- const id = dangerouslySetAntdProps?.id ? dangerouslySetAntdProps?.id : duboisId;
32382
- if (!title) {
32383
- return /*#__PURE__*/ jsx(React__default.Fragment, {
32384
- children: children
32385
- });
32386
- }
32387
- const titleProps = silenceScreenReader ? {} : {
32388
- 'aria-live': 'polite',
32389
- 'aria-relevant': 'additions'
32390
- };
32391
- if (dataTestId) {
32392
- titleProps['data-testid'] = dataTestId;
32393
- }
32394
- const liveTitle = title && /*#__PURE__*/ React__default.isValidElement(title) ? /*#__PURE__*/ React__default.cloneElement(title, titleProps) : /*#__PURE__*/ jsx("span", {
32395
- ...titleProps,
32396
- children: title
32397
- });
32398
- const ariaProps = {
32399
- 'aria-hidden': false
32400
- };
32401
- const addAriaProps = (e)=>{
32402
- if (!tooltipRef.current || e.currentTarget.hasAttribute('aria-describedby') || e.currentTarget.hasAttribute('aria-labelledby')) {
32403
- return;
32404
- }
32405
- if (id) {
32406
- e.currentTarget.setAttribute('aria-live', 'polite');
32407
- if (useAsLabel) {
32408
- e.currentTarget.setAttribute('aria-labelledby', id);
32409
- } else {
32410
- e.currentTarget.setAttribute('aria-describedby', id);
32411
- }
32412
- }
32413
- };
32414
- const removeAriaProps = (e)=>{
32415
- if (!tooltipRef || !e.currentTarget.hasAttribute('aria-describedby') && !e.currentTarget.hasAttribute('aria-labelledby')) {
32416
- return;
32417
- }
32418
- if (useAsLabel) {
32419
- e.currentTarget.removeAttribute('aria-labelledby');
32420
- } else {
32421
- e.currentTarget.removeAttribute('aria-describedby');
32422
- }
32423
- e.currentTarget.removeAttribute('aria-live');
32424
- };
32425
- const interactionProps = {
32426
- onMouseEnter: (e)=>{
32427
- addAriaProps(e);
32428
- },
32429
- onMouseLeave: (e)=>{
32430
- removeAriaProps(e);
32431
- },
32432
- onFocus: (e)=>{
32433
- addAriaProps(e);
32434
- },
32435
- onBlur: (e)=>{
32436
- removeAriaProps(e);
32437
- }
32438
- };
32439
- const childWithProps = /*#__PURE__*/ React__default.isValidElement(children) ? /*#__PURE__*/ React__default.cloneElement(children, {
32440
- ...ariaProps,
32441
- ...interactionProps,
32442
- ...children.props
32443
- }) : isNil(children) ? children : /*#__PURE__*/ jsx("span", {
32444
- ...ariaProps,
32445
- ...interactionProps,
32446
- children: children
32447
- });
32448
- const { overlayInnerStyle, overlayStyle, ...delegatedDangerouslySetAntdProps } = dangerouslySetAntdProps || {};
32449
- // When no overrides are passed, reuse the module-level memoized objects directly so
32450
- // the same reference is shared across every tooltip instance with the same theme.
32451
- const mergedOverlayInnerStyle = overlayInnerStyle ? {
32452
- backgroundColor: '#2F3941',
32453
- lineHeight: '22px',
32454
- padding: '4px 8px',
32455
- boxShadow: theme.general.shadowLow,
32456
- ...overlayInnerStyle,
32457
- ...getDarkModePortalStyles(theme)
32458
- } : getMemoizedDefaultOverlayInnerStyle(theme);
32459
- const mergedOverlayStyle = overlayStyle ? {
32460
- zIndex: theme.options.zIndexBase + 70,
32461
- ...overlayStyle
32462
- } : getMemoizedDefaultOverlayStyle(theme);
32463
- return /*#__PURE__*/ jsx(DesignSystemAntDConfigProvider, {
32464
- children: /*#__PURE__*/ jsx(Tooltip$1, {
32465
- id: id,
32466
- ref: tooltipRef,
32467
- title: liveTitle,
32468
- placement: placement,
32469
- // Always trigger on hover and focus
32470
- trigger: TRIGGER,
32471
- overlayInnerStyle: mergedOverlayInnerStyle,
32472
- overlayStyle: mergedOverlayStyle,
32473
- css: getMemoizedAnimationCss(theme.options.enableAnimation),
32474
- ...delegatedDangerouslySetAntdProps,
32475
- ...props,
32476
- children: childWithProps
32477
- })
32478
- });
32479
- };
32480
-
32481
32418
  const ListboxContext = /*#__PURE__*/ createContext(null);
32482
32419
  const useListboxContext = ()=>{
32483
32420
  const context = useContext(ListboxContext);
@@ -32608,7 +32545,7 @@ const ListboxInput = ({ value, onChange, placeholder, 'aria-controls': ariaContr
32608
32545
  css: {
32609
32546
  position: 'sticky',
32610
32547
  top: 0,
32611
- background: designSystemTheme.theme.colors.backgroundPrimary,
32548
+ background: 'var(--db-listbox-surface)',
32612
32549
  zIndex: designSystemTheme.theme.options.zIndexBase + 1
32613
32550
  },
32614
32551
  children: /*#__PURE__*/ jsx(Input, {
@@ -32629,6 +32566,13 @@ const ListboxInput = ({ value, onChange, placeholder, 'aria-controls': ariaContr
32629
32566
  });
32630
32567
  };
32631
32568
 
32569
+ const LISTBOX_STYLES = /*#__PURE__*/ css({
32570
+ outline: 'none',
32571
+ '&:focus-visible': {
32572
+ boxShadow: '0 0 0 var(--db-listbox-focus-ring-width) var(--db-listbox-focus-ring-color)',
32573
+ borderRadius: 'var(--db-listbox-border-radius)'
32574
+ }
32575
+ });
32632
32576
  const ListboxOptions = ({ options, onSelect, onHighlight, className })=>{
32633
32577
  const theme = useTheme();
32634
32578
  const { listboxId, selectedValue, setSelectedValue, highlightedValue, handleKeyNavigation } = useListboxContext();
@@ -32669,13 +32613,7 @@ const ListboxOptions = ({ options, onSelect, onHighlight, className })=>{
32669
32613
  tabIndex: 0,
32670
32614
  onKeyDown: handleKeyDown,
32671
32615
  "aria-activedescendant": highlightedValue ? `${listboxId}-${highlightedValue}` : undefined,
32672
- css: /*#__PURE__*/ css({
32673
- outline: 'none',
32674
- '&:focus-visible': {
32675
- boxShadow: `0 0 0 2px ${theme.colors.actionDefaultBorderFocus}`,
32676
- borderRadius: token(ShapeTokens.LIST_ITEM_BORDER_RADIUS, theme.borders.borderRadiusSm)
32677
- }
32678
- }),
32616
+ css: LISTBOX_STYLES,
32679
32617
  children: options.map((option)=>(option.renderOption || ((additionalProps)=>/*#__PURE__*/ jsx("div", {
32680
32618
  ...additionalProps,
32681
32619
  children: option.label
@@ -32705,25 +32643,24 @@ const ListboxOptions = ({ options, onSelect, onHighlight, className })=>{
32705
32643
  const CONTAINER_CSS = /*#__PURE__*/ css({
32706
32644
  display: 'flex',
32707
32645
  flexDirection: 'column',
32708
- gap: '8px'
32646
+ gap: 'var(--db-listbox-spacing)'
32709
32647
  });
32710
32648
  const RESULTS_WRAPPER_CSS = /*#__PURE__*/ css({
32711
32649
  width: '100%'
32712
32650
  });
32713
- const getMemoizedNoResultsCss = memoize((theme)=>/*#__PURE__*/ css({
32714
- color: theme.colors.textSecondary,
32715
- textAlign: 'center',
32716
- padding: '6px 12px',
32717
- width: '100%',
32718
- boxSizing: 'border-box'
32719
- }));
32651
+ const NO_RESULTS_CSS = /*#__PURE__*/ css({
32652
+ color: 'var(--db-listbox-empty-text)',
32653
+ textAlign: 'center',
32654
+ padding: 'var(--db-listbox-empty-spacing-vertical) var(--db-listbox-empty-spacing-horizontal)',
32655
+ width: '100%',
32656
+ boxSizing: 'border-box'
32657
+ });
32720
32658
  const DEFAULT_ANALYTICS_EVENTS$2 = [
32721
32659
  DesignSystemEventProviderAnalyticsEventTypes.OnValueChange
32722
32660
  ];
32723
32661
  const ListboxContent = ({ options, filterValue, setFilterValue, filterInputPlaceholder, onSelect, ariaLabel, includeFilterInput, filterInputEmptyMessage, listBoxDivRef })=>{
32724
32662
  const [highlightedValue, setHighlightedValue] = useState();
32725
32663
  const { listboxId } = useListboxContext();
32726
- const designSystemTheme = useDesignSystemTheme();
32727
32664
  const noResultsId = useMemo(()=>`${listboxId}-no-results`, [
32728
32665
  listboxId
32729
32666
  ]);
@@ -32790,7 +32727,7 @@ const ListboxContent = ({ options, filterValue, setFilterValue, filterInputPlace
32790
32727
  })
32791
32728
  }) : /*#__PURE__*/ jsx("div", {
32792
32729
  id: noResultsId,
32793
- css: getMemoizedNoResultsCss(designSystemTheme.theme),
32730
+ css: NO_RESULTS_CSS,
32794
32731
  children: filterInputEmptyMessage ?? 'No results found'
32795
32732
  })
32796
32733
  ]
@@ -33051,7 +32988,7 @@ function getTagEmotionStyles(theme, color = 'default', clickable = false, closab
33051
32988
  fontSize: theme.typography.fontSizeBase,
33052
32989
  fontWeight: theme.typography.typographyRegularFontWeight,
33053
32990
  lineHeight: theme.typography.lineHeightSm,
33054
- [`& :is(${getIconClassName()})`]: {
32991
+ [`& ${getIconClassName()}`]: {
33055
32992
  verticalAlign: 'text-top'
33056
32993
  },
33057
32994
  whiteSpace: 'nowrap'
@@ -33223,7 +33160,7 @@ const getMemoizedRootCss = memoize((theme)=>({
33223
33160
  // Item icon css depends on (theme, size). At most 6 cache entries.
33224
33161
  const getMemoizedItemIconCss = memoize((theme, size)=>({
33225
33162
  marginRight: size === 'large' ? theme.spacing.sm : theme.spacing.xs,
33226
- [`& > :is(${getIconClassName()})`]: {
33163
+ [`& > ${getIconClassName()}`]: {
33227
33164
  verticalAlign: `-3px`
33228
33165
  }
33229
33166
  }), (theme, size)=>`${themeMemoKey(theme)}|${size}`);
@@ -33518,64 +33455,66 @@ const PreviewCard = ({ icon, title, subtitle, titleActions, children, startActio
33518
33455
  return content;
33519
33456
  };
33520
33457
  const getPreviewCardStyles = (theme, isInteractive, size, disabled, fullBleedImage)=>{
33521
- const paddingSize = size === 'large' ? theme.spacing.lg : theme.spacing.md;
33458
+ const paddingSize = size === 'large' ? 'var(--db-preview-card-padding-large)' : 'var(--db-preview-card-padding)';
33459
+ const gapSize = size === 'large' ? 'var(--db-preview-card-gap-large)' : 'var(--db-preview-card-gap)';
33522
33460
  return {
33523
33461
  container: {
33524
33462
  overflow: 'hidden',
33525
- borderRadius: token(ShapeTokens.INFO_CONTAINER_BORDER_RADIUS, theme.borders.borderRadiusMd),
33526
- border: `1px solid ${theme.colors.border}`,
33463
+ borderRadius: 'var(--db-preview-card-border-radius)',
33464
+ border: 'var(--db-preview-card-border-width) solid var(--db-preview-card-border)',
33527
33465
  padding: paddingSize,
33528
- color: theme.colors.textSecondary,
33466
+ color: 'var(--db-preview-card-text)',
33529
33467
  display: 'flex',
33530
33468
  flexDirection: 'column',
33531
33469
  justifyContent: 'space-between',
33532
- gap: size === 'large' ? theme.spacing.md : theme.spacing.sm,
33533
- boxShadow: theme.shadows.sm,
33470
+ gap: gapSize,
33471
+ boxShadow: 'var(--db-preview-card-shadow)',
33534
33472
  cursor: isInteractive ? 'pointer' : 'default',
33535
33473
  ...isInteractive && {
33536
33474
  transition: 'box-shadow 0.2s, background-color 0.2s, border-color 0.2s, color 0.2s',
33537
33475
  '&[aria-disabled="true"]': {
33538
33476
  pointerEvents: 'none',
33539
- backgroundColor: theme.colors.actionDisabledBackground,
33540
- borderColor: theme.colors.actionDisabledBorder,
33541
- color: theme.colors.actionDisabledText
33477
+ backgroundColor: 'var(--db-preview-card-surface-disabled)',
33478
+ borderColor: 'var(--db-preview-card-border-disabled)',
33479
+ color: 'var(--db-preview-card-text-disabled)'
33542
33480
  },
33543
33481
  '&:hover, &:focus-within': {
33544
- boxShadow: theme.shadows.md
33482
+ boxShadow: 'var(--db-preview-card-shadow-hover)'
33545
33483
  },
33546
33484
  '&:active': {
33547
- background: theme.colors.actionTertiaryBackgroundPress,
33548
- borderColor: theme.colors.actionDefaultBorderHover,
33549
- boxShadow: theme.shadows.md
33485
+ background: 'var(--db-preview-card-surface-active)',
33486
+ borderColor: 'var(--db-preview-card-border-hover)',
33487
+ boxShadow: 'var(--db-preview-card-shadow-hover)'
33550
33488
  },
33551
33489
  '&:focus, &[aria-pressed="true"]': {
33552
- outlineColor: theme.colors.actionDefaultBorderFocus,
33490
+ outlineColor: 'var(--db-preview-card-border-focus)',
33553
33491
  outlineWidth: 2,
33554
33492
  outlineOffset: -2,
33555
33493
  outlineStyle: 'solid',
33556
- boxShadow: theme.shadows.md,
33557
- borderColor: theme.colors.actionDefaultBorderHover
33494
+ boxShadow: 'var(--db-preview-card-shadow-hover)',
33495
+ borderColor: 'var(--db-preview-card-border-hover)'
33558
33496
  },
33559
33497
  '&:active:not(:focus):not(:focus-within)': {
33560
33498
  background: 'transparent',
33561
- borderColor: theme.colors.border
33499
+ borderColor: 'var(--db-preview-card-border)'
33562
33500
  }
33563
33501
  }
33564
33502
  },
33565
33503
  image: {
33566
- margin: fullBleedImage ? `-${paddingSize}px -${paddingSize}px 0` : 0,
33504
+ margin: fullBleedImage ? `calc(${paddingSize} * -1) calc(${paddingSize} * -1) 0` : 0,
33567
33505
  '& > *': {
33568
- borderRadius: fullBleedImage ? 0 : token(ShapeTokens.INFO_CONTAINER_BORDER_RADIUS, theme.borders.borderRadiusSm)
33506
+ borderRadius: fullBleedImage ? 0 : 'var(--db-preview-card-image-border-radius)'
33569
33507
  }
33570
33508
  },
33571
33509
  header: {
33572
33510
  display: 'flex',
33573
33511
  alignItems: 'center',
33574
- gap: theme.spacing.sm
33512
+ gap: 'var(--db-preview-card-gap)'
33575
33513
  },
33576
33514
  title: {
33577
- fontWeight: theme.typography.typographyBoldFontWeight,
33578
- color: disabled ? theme.colors.actionDisabledText : theme.colors.textPrimary,
33515
+ fontWeight: 'var(--db-preview-card-title-font-weight)',
33516
+ color: disabled ? 'var(--db-preview-card-text-disabled)' : 'var(--db-preview-card-title-text)',
33517
+ // No v2 line-height token. TODO(FEINF-6557): adopt one when it lands.
33579
33518
  lineHeight: theme.typography.lineHeightSm
33580
33519
  },
33581
33520
  subTitle: {
@@ -33593,13 +33532,13 @@ const getPreviewCardStyles = (theme, isInteractive, size, disabled, fullBleedIma
33593
33532
  justifyContent: 'space-between',
33594
33533
  alignItems: 'center',
33595
33534
  flexWrap: 'wrap',
33596
- gap: theme.spacing.sm
33535
+ gap: 'var(--db-preview-card-gap)'
33597
33536
  },
33598
33537
  action: {
33599
33538
  overflow: 'hidden',
33600
33539
  // to ensure focus ring is rendered
33601
- margin: theme.spacing.md * -1,
33602
- padding: theme.spacing.md
33540
+ margin: 'calc(var(--db-preview-card-action-spacing) * -1)',
33541
+ padding: 'var(--db-preview-card-action-spacing)'
33603
33542
  }
33604
33543
  };
33605
33544
  };
@@ -34014,7 +33953,7 @@ function getSegmentedControlButtonEmotionStyles(clsPrefix, theme, size, spaced =
34014
33953
  },
34015
33954
  [`&${classWrapperChecked}`]: {
34016
33955
  color: theme.colors.actionDefaultTextDefault,
34017
- [`& :is(${getIconClassName()})`]: {
33956
+ [`& ${getIconClassName()}`]: {
34018
33957
  color: theme.colors.textSecondary
34019
33958
  },
34020
33959
  backgroundColor: theme.colors.backgroundPrimary,
@@ -34440,7 +34379,7 @@ const getMemoizedNavButtonActiveCss = memoize((theme)=>importantify({
34440
34379
  borderRadius: theme.borders.borderRadiusSm,
34441
34380
  background: theme.colors.actionDefaultBackgroundPress,
34442
34381
  button: {
34443
- [`&:enabled:not(:hover):not(:active) > :is(${getIconClassName()})`]: {
34382
+ [`&:enabled:not(:hover):not(:active) > ${getIconClassName()}`]: {
34444
34383
  color: theme.colors.actionTertiaryTextPress
34445
34384
  }
34446
34385
  }
@@ -35081,8 +35020,7 @@ function getSplitButtonEmotionStyles(classNamePrefix, theme, size) {
35081
35020
  const classDropdownTrigger = `.${classNamePrefix}-dropdown-trigger`;
35082
35021
  const classSmall = `.${classNamePrefix}-btn-group-sm`;
35083
35022
  const iconClass = getIconClassName();
35084
- const iconSelector = `:is(${iconClass})`;
35085
- const iconStateSelectors = `${iconClass}, &:hover ${iconSelector}, &:active ${iconSelector}, &:focus-visible ${iconSelector}`;
35023
+ const iconStateSelectors = `${iconClass}, &:hover ${iconClass}, &:active ${iconClass}, &:focus-visible ${iconClass}`;
35086
35024
  const styles = {
35087
35025
  [btn()]: {
35088
35026
  ...getDefaultStyles(theme),
@@ -35096,13 +35034,13 @@ function getSplitButtonEmotionStyles(classNamePrefix, theme, size) {
35096
35034
  outlineOffset: '-2px',
35097
35035
  outlineColor: theme.colors.actionDefaultBorderFocus
35098
35036
  },
35099
- [`${iconClass}, &:focus-visible ${iconSelector}`]: {
35037
+ [`${iconClass}, &:focus-visible ${iconClass}`]: {
35100
35038
  color: theme.colors.textSecondary
35101
35039
  },
35102
- [`&:hover ${iconSelector}`]: {
35040
+ [`&:hover ${iconClass}`]: {
35103
35041
  color: theme.colors.actionDefaultIconHover
35104
35042
  },
35105
- [`&:active ${iconSelector}`]: {
35043
+ [`&:active ${iconClass}`]: {
35106
35044
  color: theme.colors.actionDefaultIconPress
35107
35045
  }
35108
35046
  },
@@ -36021,7 +35959,7 @@ const getListStyles = (theme, shadowScrollStylesBackgroundColor, scrollbarHeight
36021
35959
  };
36022
35960
  const getMemoizedListStyles = memoize(getListStyles, (theme, bg, scrollbarHeight)=>`${themeMemoKey(theme)}|${bg ?? ''}|${scrollbarHeight ?? ''}`);
36023
35961
  const getTriggerStyles = (theme, isClosable)=>{
36024
- const iconSelector = `:is(${getIconClassName()})`;
35962
+ const iconSelector = `${getIconClassName()}`;
36025
35963
  return {
36026
35964
  trigger: {
36027
35965
  ...COMMON_TABS_TRIGGER_STYLES,
@@ -37719,5 +37657,5 @@ function WizardStepContentWrapper({ header, title, description, alertContent, de
37719
37657
  });
37720
37658
  }
37721
37659
 
37722
- export { repeatingElementsStyles as $, token as A, Button as B, CheckCircleFillIcon as C, DocumentationSidebar as D, getDarkModePortalStyles as E, FIXED_VERTICAL_STEPPER_WIDTH as F, useModalContext as G, Trigger$5 as H, InfoFillIcon as I, InfoSmallIcon as J, Content$7 as K, Arrow$2 as L, MAX_VERTICAL_WIZARD_CONTENT_WIDTH as M, Tooltip as N, SparkleDoubleIcon as O, getIconClassName as P, LoadingState as Q, Root$9 as R, ShapeTokens as S, Typography as T, visuallyHidden as U, genSkeletonAnimatedColor as V, Wizard as W, getOffsets as X, DesignSystemEventSuppressInteractionProviderContext as Y, DesignSystemEventSuppressInteractionTrueContextValue as Z, tableStyles as _, WizardControlled as a, SortUnsortedIcon as a$, tableClassNames as a0, hideIconButtonRowStyles as a1, hideIconButtonActionCellClassName as a2, safex as a3, TitleSkeleton as a4, useDialogComboboxContext as a5, PlusIcon as a6, importantify as a7, getComboboxOptionItemWrapperStyles as a8, getFooterStyles as a9, useMultipleSelectionState as aA, Radio as aB, Checkbox as aC, DialogCombobox as aD, DialogComboboxTrigger as aE, DialogComboboxContent as aF, Select as aG, SelectTrigger as aH, SelectContent as aI, SelectOption as aJ, LegacySelect as aK, WarningIcon as aL, CheckCircleIcon as aM, DangerIcon as aN, Hint as aO, Title$1 as aP, CloseIcon as aQ, RestoreAntDDefaultClsPrefix as aR, AccessibleContainer as aS, DU_BOIS_ENABLE_ANIMATION_CLASSNAME as aT, Tag as aU, CircleOffIcon as aV, CircleOutlineIcon as aW, CircleIcon as aX, getBtnClassName as aY, SortAscendingIcon as aZ, SortDescendingIcon as a_, useDialogComboboxOptionListContext as aa, generateUuidV4 as ab, getContentOptions as ac, findHighlightedOption as ad, highlightOption as ae, Input as af, SearchIcon as ag, EmptyResults as ah, findClosestOptionSibling as ai, DialogComboboxOptionListCheckboxItem as aj, DialogComboboxOptionListSelectItem as ak, DialogComboboxOptionListContextProvider as al, LoadingSpinner as am, DialogComboboxOptionList as an, useUniqueId as ao, TypeaheadComboboxContextProvider as ap, useTypeaheadComboboxContext as aq, useDuboisThemeClass as ar, useDesignTokenOverrideStyles as as, getComboboxContentWrapperStyles as at, ClearSelectionButton as au, TypeaheadComboboxSelectedItem$1 as av, CountBadge$1 as aw, getValidationStateColor as ax, SectionHeader as ay, useComboboxState as az, WizardModal as b, BarsDescendingVerticalIcon as b$, MinusSquareIcon as b0, PlusSquareIcon as b1, TypeaheadComboboxV2ContextProvider as b2, useTypeaheadComboboxV2Context as b3, useRadixModalContext as b4, useIsomorphicLayoutEffect as b5, useScrollOptionIntoView as b6, InfoTooltip as b7, getInfoIconStyles as b8, HintRow as b9, ArrowRightIcon as bA, ArrowUpDotIcon as bB, ArrowUpFillIcon as bC, ArrowUpIcon as bD, ArrowsCollapseIcon as bE, ArrowsConnectIcon as bF, ArrowsExpandIcon as bG, ArrowsUpDownIcon as bH, AssistantIcon as bI, AtIcon as bJ, Auth0Graphic as bK, Auth0GraphicLarge as bL, AzHorizontalIcon as bM, AzVerticalIcon as bN, BANNER_MAX_HEIGHT as bO, BANNER_MIN_HEIGHT as bP, BackupIcon as bQ, BadgeCodeIcon as bR, BadgeCodeOffIcon as bS, Banner as bT, BarChartIcon as bU, BarGroupedIcon as bV, BarStackedIcon as bW, BarStackedPercentageIcon as bX, BarsAscendingHorizontalIcon as bY, BarsAscendingVerticalIcon as bZ, BarsDescendingHorizontalIcon as b_, getCheckboxStyles as ba, getMenuItemStyles as bb, TypeaheadComboboxSelectedItem as bc, CountBadge as bd, TypeaheadComboboxMenuItem as be, AccessDeniedGraphic as bf, Accordion as bg, AccordionPanel as bh, AlignCenterIcon as bi, AlignJustifyIcon as bj, AlignLeftIcon as bk, AlignRightIcon as bl, AlignVerticalBottomIcon as bm, AlignVerticalCenterIcon as bn, AlignVerticalTopIcon as bo, AppIcon as bp, ApplyDesignSystemContextOverrides as bq, ApplyDesignSystemFlags as br, ArrowDownDotIcon as bs, ArrowDownFillIcon as bt, ArrowDownIcon as bu, ArrowInIcon as bv, ArrowInTableIcon as bw, ArrowLeftIcon as bx, ArrowOutTableIcon as by, ArrowOverIcon as bz, WizardStepContentWrapper as c, ClockOffIcon as c$, BeakerIcon as c0, BinaryIcon as c1, BlockQuoteIcon as c2, BoldIcon as c3, BookIcon as c4, BookmarkFillIcon as c5, BookmarkIcon as c6, BooksIcon as c7, BracketsCheckIcon as c8, BracketsCurlyIcon as c9, CellsSquareIcon as cA, CertifiedFillIcon as cB, CertifiedFillSmallIcon as cC, CertifiedIcon as cD, ChainIcon as cE, ChartLineIcon as cF, CheckCircleBadgeIcon as cG, CheckCircleSmallIcon as cH, CheckIcon as cI, CheckLineIcon as cJ, CheckSmallIcon as cK, CheckboxIcon as cL, ChecklistIcon as cM, ChevronDoubleDownIcon as cN, ChevronDoubleLeftIcon as cO, ChevronDoubleLeftOffIcon as cP, ChevronDoubleRightIcon as cQ, ChevronDoubleRightOffIcon as cR, ChevronDoubleUpIcon as cS, ChevronLeftIcon as cT, ChevronUpIcon as cU, ChipIcon as cV, CircleOffLargeIcon as cW, CircleOutlineLargeIcon as cX, ClipboardIcon as cY, ClockIcon as cZ, ClockKeyIcon as c_, BracketsErrorIcon as ca, BracketsSquareIcon as cb, BracketsXIcon as cc, BranchCheckIcon as cd, BranchIcon as ce, BranchResetIcon as cf, BriefcaseFillIcon as cg, BriefcaseIcon as ch, BrushIcon as ci, BugIcon as cj, CalendarClockIcon as ck, CalendarEventIcon as cl, CalendarIcon as cm, CalendarRangeIcon as cn, CalendarSyncIcon as co, CameraIcon as cp, CapitalizeIcon as cq, CaretDownSquareIcon as cr, CaretUpSquareIcon as cs, CatalogCloudIcon as ct, CatalogGearIcon as cu, CatalogHomeIcon as cv, CatalogIcon as cw, CatalogOffIcon as cx, CatalogSharedIcon as cy, CatalogUserHomeIcon as cz, WizardStepNavigationProvider as d, DragIcon as d$, CloudCheckIcon as d0, CloudDatabaseIcon as d1, CloudDownloadIcon as d2, CloudIcon as d3, CloudKeyIcon as d4, CloudModelIcon as d5, CloudOffIcon as d6, CloudUploadIcon as d7, CodeIcon as d8, ColorFillIcon as d9, DangerModal as dA, DangerSmallIcon as dB, DashIcon as dC, DashboardCodeIcon as dD, DashboardIcon as dE, DataIcon as dF, DataMaskiingGraphic as dG, DatabaseClockIcon as dH, DatabaseIcon as dI, DatabaseImportIcon as dJ, DatePicker as dK, DecimalIcon as dL, DeprecatedIcon as dM, DeprecatedSmallIcon as dN, DesignSystemContext as dO, DesignSystemEventProviderComponentSubTypes as dP, DesignSystemProvider as dQ, DesignSystemThemeContext as dR, DesignSystemThemeProvider as dS, DialogComboboxCountBadge as dT, DialogComboboxCustomButtonTriggerWrapper as dU, DialogComboboxSectionHeader as dV, DollarIcon as dW, DomainCirclesThree as dX, DomainsIcon as dY, DotsCircleIcon as dZ, DownloadIcon as d_, ColorMappingEditIcon as da, ColorMappingIcon as db, ColorVars as dc, ColumnIcon as dd, ColumnSplitIcon as de, ColumnTagIcon as df, ColumnsIcon as dg, CommandIcon as dh, CommandPaletteIcon as di, CompassIcon as dj, ComponentFinderContext as dk, ConnectIcon as dl, Content$2 as dm, ContextMenu$1 as dn, CopyIcon as dp, CreditCardIcon as dq, CursorClickIcon as dr, CursorIcon as ds, CursorPagination as dt, CursorTypeIcon as du, CustomAppIcon as dv, DS_OVERRIDE_TOKENS_WRAPPER_TESTID as dw, DagHorizontalIcon as dx, DagIcon as dy, DagVerticalIcon as dz, useWizardStepNavigation as e, GridDashIcon as e$, Drawer as e0, DropdownMenu as e1, Empty as e2, EmptyDashboardGraphic as e3, ErdIcon as e4, ExpandLessIcon as e5, ExpandMoreIcon as e6, FaceFrownIcon as e7, FaceNeutralIcon as e8, FaceSmileIcon as e9, FolderOpenBranchIcon as eA, FolderOpenCloudIcon as eB, FolderOpenCubeIcon as eC, FolderOpenIcon as eD, FolderOpenPipelineIcon as eE, FolderOutlinePipelineIcon as eF, FolderSolidPipelineIcon as eG, FontIcon as eH, ForkHorizontalIcon as eI, ForkIcon as eJ, Form as eK, FormContextResetBoundary as eL, FullscreenExitIcon as eM, FullscreenIcon as eN, FunctionIcon as eO, FunctionInputIcon as eP, GavelIcon as eQ, GearFillIcon as eR, GearIcon as eS, GenieCodeIcon as eT, GenieDeepResearchIcon as eU, GiftIcon as eV, GitCommitIcon as eW, GitMergeIcon as eX, GitRebaseIcon as eY, GlobeIcon as eZ, Graphic as e_, FileCodeIcon as ea, FileCubeIcon as eb, FileDocumentIcon as ec, FileIcon as ed, FileImageIcon as ee, FileLockIcon as ef, FileModelIcon as eg, FileNewIcon as eh, FilePipelineIcon as ei, FilterFillIcon as ej, FilterIcon as ek, FlagPointerIcon as el, FloatIcon as em, FlowIcon as en, FlowsIcon as eo, FolderBranchFillIcon as ep, FolderBranchIcon as eq, FolderCloudFilledIcon as er, FolderCloudIcon as es, FolderCubeIcon as et, FolderCubeOutlineIcon as eu, FolderFillIcon as ev, FolderHomeIcon as ew, FolderIcon as ex, FolderNewIcon as ey, FolderNodeIcon as ez, DesignSystemEventProvider as f, LockShareIcon as f$, GridIcon as f0, GroupIcon as f1, H1Icon as f2, H2Icon as f3, H3Icon as f4, H4Icon as f5, H5Icon as f6, H6Icon as f7, HashIcon as f8, HistoryIcon as f9, LegacyFormDubois as fA, LegacyOptGroup as fB, LegacyOption as fC, LegacySelectOptGroup as fD, LegacySelectOption as fE, LegacyTable as fF, LegacyTooltip as fG, LetterFormatIcon as fH, LettersIcon as fI, LettersNumbersIcon as fJ, LibrariesIcon as fK, LifesaverIcon as fL, LightbulbIcon as fM, LightningCircleFillIcon as fN, LightningIcon as fO, LinearLineIcon as fP, LinkIcon as fQ, LinkOffIcon as fR, ListBorderIcon as fS, ListClearIcon as fT, ListIcon as fU, ListNumberIcon as fV, Listbox as fW, LoadingIcon as fX, LoadingStateContext as fY, LockFillIcon as fZ, LockIcon as f_, HomeIcon as fa, Icon as fb, ImageIcon as fc, IndentDecreaseIcon as fd, IndentIncreaseIcon as fe, InfinityIcon as ff, InfoBookIcon as fg, InfoIcon as fh, IngestionIcon as fi, ItalicIcon as fj, JoinOperatorIcon as fk, KeyIcon as fl, KeyboardIcon as fm, LakebaseCatalogIcon as fn, LakebaseIcon as fo, LakeflowDesignerIcon as fp, LakewatchAlertIcon as fq, LakewatchDatasourceIcon as fr, LakewatchDetectionRuleIcon as fs, LakewatchIcon as ft, LakewatchParserIcon as fu, LayerGraphIcon as fv, LayerIcon as fw, Layout as fx, LeafIcon as fy, LegacyForm as fz, useDesignSystemTheme as g, PinCancelIcon as g$, LockUnlockedIcon as g0, LoopIcon as g1, LowercaseIcon as g2, MailIcon as g3, MapIcon as g4, MarkdownIcon as g5, McpIcon as g6, MeasureIcon as g7, MegaphoneIcon as g8, MenuIcon as g9, OfficeIcon as gA, OntologyIcon as gB, OperatorIcon as gC, OutageGraphic as gD, OverflowHorizontalIcon as gE, OverflowIcon as gF, PageBottomIcon as gG, PageFirstIcon as gH, PageIcon as gI, PageLastIcon as gJ, PageTopIcon as gK, Pagination as gL, Panel as gM, PanelBody as gN, PanelDockedIcon as gO, PanelFloatingIcon as gP, PanelHeader as gQ, PanelHeaderButtons as gR, PanelHeaderTitle as gS, PaperclipIcon as gT, PassFailChecklistIcon as gU, PauseIcon as gV, PencilFillIcon as gW, PencilIcon as gX, PencilSparkleIcon as gY, PieChartIcon as gZ, PillControl as g_, MicrophoneIcon as ga, MicrophoneOffIcon as gb, MinusCircleFillIcon as gc, MinusCircleIcon as gd, MinusCircleSmallIcon as ge, MissingBranchGraphic as gf, MissingGraphic as gg, ModelsIcon as gh, MonotoneLineIcon as gi, MonthPickerGrid as gj, MoonIcon as gk, Nav as gl, NavButton as gm, NavigationMenu as gn, NeonProjectIcon as go, NewChatIcon as gp, NewTabIcon as gq, NewWindowIcon as gr, NoCaseIcon as gs, NoIcon as gt, NotebookIcon as gu, NotebookPipelineIcon as gv, NotificationIcon as gw, NotificationOffIcon as gx, NumberFormatIcon as gy, NumbersIcon as gz, DesignTokenScope as h, ShortcutIcon as h$, PinFillIcon as h0, PinIcon as h1, PipelineCodeIcon as h2, PipelineCubeIcon as h3, PipelineIcon as h4, PivotOperatorIcon as h5, PlayCircleFillIcon as h6, PlayCircleIcon as h7, PlayDoubleIcon as h8, PlayIcon as h9, RefreshXIcon as hA, ReplyIcon as hB, ResizeIcon as hC, RhfForm as hD, RichTextIcon as hE, RobotIcon as hF, RocketIcon as hG, RowsIcon as hH, RunIcon as hI, RunningIcon as hJ, SMALL_BUTTON_HEIGHT$2 as hK, SaveClockIcon as hL, SaveIcon as hM, SchemaIcon as hN, SchoolIcon as hO, SearchDataIcon as hP, SegmentedControlButton as hQ, SegmentedControlGroup as hR, SelectContext as hS, SelectContextProvider as hT, SelectOptionGroup as hU, SendIcon as hV, ShareIcon as hW, ShareNodesIcon as hX, ShieldCheckIcon as hY, ShieldIcon as hZ, ShieldOffIcon as h_, PlayMultipleIcon as ha, PlugIcon as hb, PlusCircleFillIcon as hc, PlusCircleIcon as hd, PlusCircleSmallIcon as he, PlusMinusSquareIcon as hf, Popover as hg, PositionBottomIcon as hh, PositionLeftIcon as hi, PositionRightIcon as hj, PositionTopIcon as hk, PreviewCard as hl, Progress as hm, PullRequestIcon as hn, PuzzleIcon as ho, QueryEditorIcon as hp, QueryIcon as hq, QuestionMarkFillIcon as hr, QuestionMarkIcon as hs, RadioIcon as ht, RadioTile as hu, RangePicker as hv, ReaderModeIcon as hw, RedoIcon as hx, RefreshIcon as hy, RefreshPlayIcon as hz, useDesignSystemContext as i, TableModelIcon as i$, Sidebar as i0, SidebarAutoIcon as i1, SidebarClosedIcon as i2, SidebarCollapseIcon as i3, SidebarExpandIcon as i4, SidebarIcon as i5, SidebarOpenIcon as i6, SidebarSyncIcon as i7, SimpleSelect as i8, SimpleSelectOption as i9, Spinner as iA, SplitButton as iB, SqlIcon as iC, StarFillIcon as iD, StarIcon as iE, StepAfterLineIcon as iF, StepBeforeLineIcon as iG, Stepper as iH, StopCircleFillIcon as iI, StopCircleIcon as iJ, StopIcon as iK, StoredProcedureIcon as iL, StorefrontIcon as iM, StreamIcon as iN, StrikeThroughIcon as iO, SunIcon as iP, SyncIcon as iQ, SyncSmallIcon as iR, SyncToFileIcon as iS, TableAsteriskIcon as iT, TableClockIcon as iU, TableCombineIcon as iV, TableGlassesIcon as iW, TableGlobeIcon as iX, TableIcon as iY, TableLightningIcon as iZ, TableMeasureIcon as i_, SimpleSelectOptionGroup as ia, SlashSquareIcon as ib, SlidersIcon as ic, SnippetIcon as id, SortCustomHorizontalIcon as ie, SortCustomVerticalIcon as ig, SortHorizontalAscendingIcon as ih, SortHorizontalDescendingIcon as ii, SortLetterHorizontalAscendingIcon as ij, SortLetterHorizontalDescendingIcon as ik, SortLetterUnsortedIcon as il, SortLetterVerticalAscendingIcon as im, SortLetterVerticalDescendingIcon as io, Spacer as ip, SparkleDoubleFillIcon as iq, SparkleFillIcon as ir, SparkleIcon as is, SparkleRectangleIcon as it, SpeechBubbleIcon as iu, SpeechBubblePlusIcon as iv, SpeechBubbleQuestionMarkFillIcon as iw, SpeechBubbleQuestionMarkIcon as ix, SpeechBubbleStarIcon as iy, SpeedometerIcon as iz, WarningFillIcon as j, ZaHorizontalIcon as j$, TableReportIcon as j0, TableStreamIcon as j1, TableVectorIcon as j2, TableViewIcon as j3, Tabs as j4, TagColumnIcon as j5, TagIcon as j6, TagTableIcon as j7, TargetIcon as j8, TerminalIcon as j9, UppercaseIcon as jA, UsageOverageGraphic as jB, UsageSpikeGraphic as jC, UsbIcon as jD, UserBadgeIcon as jE, UserCircleIcon as jF, UserGroupFillIcon as jG, UserGroupIcon as jH, UserIcon as jI, UserKeyIconIcon as jJ, UserShieldIcon as jK, UserSparkleIcon as jL, UserTeamIcon as jM, VisibleFillIcon as jN, VisibleIcon as jO, VisibleOffIcon as jP, VoiceModeIcon as jQ, WithDesignSystemThemeHoc as jR, WorkflowCodeIcon as jS, WorkflowCubeIcon as jT, WorkflowsIcon as jU, WorkspacesIcon as jV, WrenchIcon as jW, WrenchSparkleIcon as jX, XCircleFillIcon as jY, XCircleIcon as jZ, YearPickerGrid as j_, TextBoxIcon as ja, TextColorIcon as jb, TextIcon as jc, TextJustifyIcon as jd, TextUnderlineIcon as je, ThreeDotsIcon as jf, ThumbsDownFilledIcon as jg, ThumbsDownIcon as jh, ThumbsUpFilledIcon as ji, ThumbsUpIcon as jj, ToggleButton as jk, TokenIcon as jl, TrashIcon as jm, Tree as jn, TreeIcon as jo, TrendingFillIcon as jp, TrendingIcon as jq, TriangleIcon as jr, TypeaheadComboboxCheckboxItem as js, TypeaheadComboboxFooter as jt, TypeaheadComboboxMenuItem$1 as ju, TypeaheadComboboxMultiSelectStateChangeTypes as jv, TypeaheadComboboxStateChangeTypes as jw, UnderlineIcon as jx, UndoIcon as jy, UploadIcon as jz, DangerFillIcon as k, ZaVerticalIcon as k0, ZeroOpsIcon as k1, ZeroOpsOutlineIcon as k2, ZoomInIcon as k3, ZoomMarqueeSelection as k4, ZoomOutIcon as k5, ZoomToFitIcon as k6, __INTERNAL_DO_NOT_USE__FormItem as k7, __INTERNAL_DO_NOT_USE__Group as k8, __INTERNAL_DO_NOT_USE__HorizontalGroup as k9, setImplicitContextGetter as kA, skipHideIconButtonActionClassName as kB, themeMemoKey as kC, useAntDConfigProviderContext as kD, useCallbackOnEnter as kE, useComponentFinderContext as kF, useDesignSystemEventSuppressInteractionContext as kG, useFormContext as kH, useRadioGroupContext as kI, __INTERNAL_DO_NOT_USE__VerticalGroup as ka, __INTERNAL_DO_NOT_USE__wrapLegacyFormRules as kb, augmentWithDataComponentProps as kc, dialogComboboxLookAheadKeyDown as kd, getBottomOnlyShadowScrollStyles as ke, getButtonEmotionStyles as kf, getComboboxOptionLabelStyles as kg, getDatePickerQuickActionBasic as kh, getDialogComboboxOptionLabelWidth as ki, getHorizontalTabShadowStyles as kj, getInputStyles as kk, getKeyboardNavigationFunctions as kl, getMemoizedButtonEmotionStyles as km, getPaginationEmotionStyles as kn, getPanelContainmentStyle as ko, getRadioStyles as kp, getRangeQuickActionsBasic as kq, getShadowScrollStyles as kr, getTypographyColor as ks, getVirtualListScrollbarStyles as kt, getVirtualListScrollbarThumbColor as ku, getVirtualizedComboboxMenuItemStyles as kv, getWrapperStyle as kw, highlightFirstNonDisabledOption as kx, isOptionDisabled as ky, resetTabIndexToFocusedElement as kz, DesignSystemEventProviderAnalyticsEventTypes as l, useDesignSystemEventComponentCallbacks as m, DesignSystemEventProviderComponentTypes as n, DesignSystemEventProviderComponentSubTypeMap as o, primitiveColors as p, useNotifyOnFirstView as q, useStableUuidV4 as r, ChevronDownIcon as s, ChevronRightIcon as t, useWizardCurrentStep as u, DesignSystemAntDConfigProvider as v, CloseSmallIcon as w, addDebugOutlineIfEnabled as x, Modal as y, getAnimationCss as z };
37723
- //# sourceMappingURL=WizardStepContentWrapper-6YTjeEaA.js.map
37660
+ export { repeatingElementsStyles as $, token as A, Button as B, CheckCircleFillIcon as C, DocumentationSidebar as D, getDarkModePortalStyles as E, FIXED_VERTICAL_STEPPER_WIDTH as F, useModalContext as G, Trigger$5 as H, InfoFillIcon as I, InfoSmallIcon as J, Content$7 as K, Arrow$2 as L, MAX_VERTICAL_WIZARD_CONTENT_WIDTH as M, Tooltip as N, SparkleDoubleIcon as O, getIconClassName as P, LoadingState as Q, Root$9 as R, ShapeTokens as S, Typography as T, visuallyHidden as U, genSkeletonAnimatedColor as V, Wizard as W, getOffsets as X, DesignSystemEventSuppressInteractionProviderContext as Y, DesignSystemEventSuppressInteractionTrueContextValue as Z, tableStyles as _, WizardControlled as a, SortUnsortedIcon as a$, tableClassNames as a0, hideIconButtonRowStyles as a1, hideIconButtonActionCellClassName as a2, safex as a3, TitleSkeleton as a4, useDialogComboboxContext as a5, PlusIcon as a6, importantify as a7, getComboboxOptionItemWrapperStyles as a8, getFooterStyles as a9, useMultipleSelectionState as aA, Radio as aB, Checkbox as aC, DialogCombobox as aD, DialogComboboxTrigger as aE, DialogComboboxContent as aF, Select as aG, SelectTrigger as aH, SelectContent as aI, SelectOption as aJ, LegacySelect as aK, WarningIcon as aL, CheckCircleIcon as aM, DangerIcon as aN, Hint as aO, Title$1 as aP, CloseIcon as aQ, RestoreAntDDefaultClsPrefix as aR, AccessibleContainer as aS, DU_BOIS_ENABLE_ANIMATION_CLASSNAME as aT, Tag as aU, CircleOffIcon as aV, CircleOutlineIcon as aW, CircleIcon as aX, getBtnClassName as aY, SortAscendingIcon as aZ, SortDescendingIcon as a_, useDialogComboboxOptionListContext as aa, generateUuidV4 as ab, getContentOptions as ac, findHighlightedOption as ad, highlightOption as ae, Input as af, SearchIcon as ag, EmptyResults as ah, findClosestOptionSibling as ai, DialogComboboxOptionListCheckboxItem as aj, DialogComboboxOptionListSelectItem as ak, DialogComboboxOptionListContextProvider as al, LoadingSpinner as am, DialogComboboxOptionList as an, useUniqueId as ao, TypeaheadComboboxContextProvider as ap, useTypeaheadComboboxContext as aq, useDuboisThemeClass as ar, useDesignTokenOverrideStyles as as, getComboboxContentWrapperStyles as at, ClearSelectionButton as au, TypeaheadComboboxSelectedItem$1 as av, CountBadge$1 as aw, getValidationStateColor as ax, SectionHeader as ay, useComboboxState as az, WizardModal as b, BarsDescendingVerticalIcon as b$, MinusSquareIcon as b0, PlusSquareIcon as b1, TypeaheadComboboxV2ContextProvider as b2, useTypeaheadComboboxV2Context as b3, useRadixModalContext as b4, useIsomorphicLayoutEffect as b5, useScrollOptionIntoView as b6, InfoTooltip as b7, getInfoIconStyles as b8, HintRow as b9, ArrowRightIcon as bA, ArrowUpDotIcon as bB, ArrowUpFillIcon as bC, ArrowUpIcon as bD, ArrowsCollapseIcon as bE, ArrowsConnectIcon as bF, ArrowsExpandIcon as bG, ArrowsUpDownIcon as bH, AssistantIcon as bI, AtIcon as bJ, Auth0Graphic as bK, Auth0GraphicLarge as bL, AzHorizontalIcon as bM, AzVerticalIcon as bN, BANNER_MAX_HEIGHT as bO, BANNER_MIN_HEIGHT as bP, BackupIcon as bQ, BadgeCodeIcon as bR, BadgeCodeOffIcon as bS, Banner as bT, BarChartIcon as bU, BarGroupedIcon as bV, BarStackedIcon as bW, BarStackedPercentageIcon as bX, BarsAscendingHorizontalIcon as bY, BarsAscendingVerticalIcon as bZ, BarsDescendingHorizontalIcon as b_, getCheckboxStyles as ba, getMenuItemStyles as bb, TypeaheadComboboxSelectedItem as bc, CountBadge as bd, TypeaheadComboboxMenuItem as be, AccessDeniedGraphic as bf, Accordion as bg, AccordionPanel as bh, AlignCenterIcon as bi, AlignJustifyIcon as bj, AlignLeftIcon as bk, AlignRightIcon as bl, AlignVerticalBottomIcon as bm, AlignVerticalCenterIcon as bn, AlignVerticalTopIcon as bo, AppIcon as bp, ApplyDesignSystemContextOverrides as bq, ApplyDesignSystemFlags as br, ArrowDownDotIcon as bs, ArrowDownFillIcon as bt, ArrowDownIcon as bu, ArrowInIcon as bv, ArrowInTableIcon as bw, ArrowLeftIcon as bx, ArrowOutTableIcon as by, ArrowOverIcon as bz, WizardStepContentWrapper as c, ClockOffIcon as c$, BeakerIcon as c0, BinaryIcon as c1, BlockQuoteIcon as c2, BoldIcon as c3, BookIcon as c4, BookmarkFillIcon as c5, BookmarkIcon as c6, BooksIcon as c7, BracketsCheckIcon as c8, BracketsCurlyIcon as c9, CellsSquareIcon as cA, CertifiedFillIcon as cB, CertifiedFillSmallIcon as cC, CertifiedIcon as cD, ChainIcon as cE, ChartLineIcon as cF, CheckCircleBadgeIcon as cG, CheckCircleSmallIcon as cH, CheckIcon as cI, CheckLineIcon as cJ, CheckSmallIcon as cK, CheckboxIcon as cL, ChecklistIcon as cM, ChevronDoubleDownIcon as cN, ChevronDoubleLeftIcon as cO, ChevronDoubleLeftOffIcon as cP, ChevronDoubleRightIcon as cQ, ChevronDoubleRightOffIcon as cR, ChevronDoubleUpIcon as cS, ChevronLeftIcon as cT, ChevronUpIcon as cU, ChipIcon as cV, CircleOffLargeIcon as cW, CircleOutlineLargeIcon as cX, ClipboardIcon as cY, ClockIcon as cZ, ClockKeyIcon as c_, BracketsErrorIcon as ca, BracketsSquareIcon as cb, BracketsXIcon as cc, BranchCheckIcon as cd, BranchIcon as ce, BranchResetIcon as cf, BriefcaseFillIcon as cg, BriefcaseIcon as ch, BrushIcon as ci, BugIcon as cj, CalendarClockIcon as ck, CalendarEventIcon as cl, CalendarIcon as cm, CalendarRangeIcon as cn, CalendarSyncIcon as co, CameraIcon as cp, CapitalizeIcon as cq, CaretDownSquareIcon as cr, CaretUpSquareIcon as cs, CatalogCloudIcon as ct, CatalogGearIcon as cu, CatalogHomeIcon as cv, CatalogIcon as cw, CatalogOffIcon as cx, CatalogSharedIcon as cy, CatalogUserHomeIcon as cz, WizardStepNavigationProvider as d, DragIcon as d$, CloudCheckIcon as d0, CloudDatabaseIcon as d1, CloudDownloadIcon as d2, CloudIcon as d3, CloudKeyIcon as d4, CloudModelIcon as d5, CloudOffIcon as d6, CloudUploadIcon as d7, CodeIcon as d8, ColorFillIcon as d9, DangerModal as dA, DangerSmallIcon as dB, DashIcon as dC, DashboardCodeIcon as dD, DashboardIcon as dE, DataIcon as dF, DataMaskiingGraphic as dG, DatabaseClockIcon as dH, DatabaseIcon as dI, DatabaseImportIcon as dJ, DatePicker as dK, DecimalIcon as dL, DeprecatedIcon as dM, DeprecatedSmallIcon as dN, DesignSystemContext as dO, DesignSystemEventProviderComponentSubTypes as dP, DesignSystemProvider as dQ, DesignSystemThemeContext as dR, DesignSystemThemeProvider as dS, DialogComboboxCountBadge as dT, DialogComboboxCustomButtonTriggerWrapper as dU, DialogComboboxSectionHeader as dV, DollarIcon as dW, DomainCirclesThree as dX, DomainsIcon as dY, DotsCircleIcon as dZ, DownloadIcon as d_, ColorMappingEditIcon as da, ColorMappingIcon as db, ColorVars as dc, ColumnIcon as dd, ColumnSplitIcon as de, ColumnTagIcon as df, ColumnsIcon as dg, CommandIcon as dh, CommandPaletteIcon as di, CompassIcon as dj, ComponentFinderContext as dk, ConnectIcon as dl, Content$2 as dm, ContextMenu$1 as dn, CopyIcon as dp, CreditCardIcon as dq, CursorClickIcon as dr, CursorIcon as ds, CursorPagination as dt, CursorTypeIcon as du, CustomAppIcon as dv, DS_OVERRIDE_TOKENS_WRAPPER_TESTID as dw, DagHorizontalIcon as dx, DagIcon as dy, DagVerticalIcon as dz, useWizardStepNavigation as e, GridDashIcon as e$, Drawer as e0, DropdownMenu as e1, Empty as e2, EmptyDashboardGraphic as e3, ErdIcon as e4, ExpandLessIcon as e5, ExpandMoreIcon as e6, FaceFrownIcon as e7, FaceNeutralIcon as e8, FaceSmileIcon as e9, FolderOpenBranchIcon as eA, FolderOpenCloudIcon as eB, FolderOpenCubeIcon as eC, FolderOpenIcon as eD, FolderOpenPipelineIcon as eE, FolderOutlinePipelineIcon as eF, FolderSolidPipelineIcon as eG, FontIcon as eH, ForkHorizontalIcon as eI, ForkIcon as eJ, Form as eK, FormContextResetBoundary as eL, FullscreenExitIcon as eM, FullscreenIcon as eN, FunctionIcon as eO, FunctionInputIcon as eP, GavelIcon as eQ, GearFillIcon as eR, GearIcon as eS, GenieCodeIcon as eT, GenieDeepResearchIcon as eU, GiftIcon as eV, GitCommitIcon as eW, GitMergeIcon as eX, GitRebaseIcon as eY, GlobeIcon as eZ, Graphic as e_, FileCodeIcon as ea, FileCubeIcon as eb, FileDocumentIcon as ec, FileIcon as ed, FileImageIcon as ee, FileLockIcon as ef, FileModelIcon as eg, FileNewIcon as eh, FilePipelineIcon as ei, FilterFillIcon as ej, FilterIcon as ek, FlagPointerIcon as el, FloatIcon as em, FlowIcon as en, FlowsIcon as eo, FolderBranchFillIcon as ep, FolderBranchIcon as eq, FolderCloudFilledIcon as er, FolderCloudIcon as es, FolderCubeIcon as et, FolderCubeOutlineIcon as eu, FolderFillIcon as ev, FolderHomeIcon as ew, FolderIcon as ex, FolderNewIcon as ey, FolderNodeIcon as ez, DesignSystemEventProvider as f, LockUnlockedIcon as f$, GridIcon as f0, GroupIcon as f1, H1Icon as f2, H2Icon as f3, H3Icon as f4, H4Icon as f5, H5Icon as f6, H6Icon as f7, HashIcon as f8, HistoryIcon as f9, LegacyFormDubois as fA, LegacyOptGroup as fB, LegacyOption as fC, LegacySelectOptGroup as fD, LegacySelectOption as fE, LegacyTable as fF, LetterFormatIcon as fG, LettersIcon as fH, LettersNumbersIcon as fI, LibrariesIcon as fJ, LifesaverIcon as fK, LightbulbIcon as fL, LightningCircleFillIcon as fM, LightningIcon as fN, LinearLineIcon as fO, LinkIcon as fP, LinkOffIcon as fQ, ListBorderIcon as fR, ListClearIcon as fS, ListIcon as fT, ListNumberIcon as fU, Listbox as fV, LoadingIcon as fW, LoadingStateContext as fX, LockFillIcon as fY, LockIcon as fZ, LockShareIcon as f_, HomeIcon as fa, Icon as fb, ImageIcon as fc, IndentDecreaseIcon as fd, IndentIncreaseIcon as fe, InfinityIcon as ff, InfoBookIcon as fg, InfoIcon as fh, IngestionIcon as fi, ItalicIcon as fj, JoinOperatorIcon as fk, KeyIcon as fl, KeyboardIcon as fm, LakebaseCatalogIcon as fn, LakebaseIcon as fo, LakeflowDesignerIcon as fp, LakewatchAlertIcon as fq, LakewatchDatasourceIcon as fr, LakewatchDetectionRuleIcon as fs, LakewatchIcon as ft, LakewatchParserIcon as fu, LayerGraphIcon as fv, LayerIcon as fw, Layout as fx, LeafIcon as fy, LegacyForm as fz, useDesignSystemTheme as g, PinFillIcon as g$, LoopIcon as g0, LowercaseIcon as g1, MailIcon as g2, MapIcon as g3, MarkdownIcon as g4, McpIcon as g5, MeasureIcon as g6, MegaphoneIcon as g7, MenuIcon as g8, MicrophoneIcon as g9, OntologyIcon as gA, OperatorIcon as gB, OutageGraphic as gC, OverflowHorizontalIcon as gD, OverflowIcon as gE, PageBottomIcon as gF, PageFirstIcon as gG, PageIcon as gH, PageLastIcon as gI, PageTopIcon as gJ, Pagination as gK, Panel as gL, PanelBody as gM, PanelDockedIcon as gN, PanelFloatingIcon as gO, PanelHeader as gP, PanelHeaderButtons as gQ, PanelHeaderTitle as gR, PaperclipIcon as gS, PassFailChecklistIcon as gT, PauseIcon as gU, PencilFillIcon as gV, PencilIcon as gW, PencilSparkleIcon as gX, PieChartIcon as gY, PillControl as gZ, PinCancelIcon as g_, MicrophoneOffIcon as ga, MinusCircleFillIcon as gb, MinusCircleIcon as gc, MinusCircleSmallIcon as gd, MissingBranchGraphic as ge, MissingGraphic as gf, ModelsIcon as gg, MonotoneLineIcon as gh, MonthPickerGrid as gi, MoonIcon as gj, Nav as gk, NavButton as gl, NavigationMenu as gm, NeonProjectIcon as gn, NewChatIcon as go, NewTabIcon as gp, NewWindowIcon as gq, NoCaseIcon as gr, NoIcon as gs, NotebookIcon as gt, NotebookPipelineIcon as gu, NotificationIcon as gv, NotificationOffIcon as gw, NumberFormatIcon as gx, NumbersIcon as gy, OfficeIcon as gz, DesignTokenScope as h, Sidebar as h$, PinIcon as h0, PipelineCodeIcon as h1, PipelineCubeIcon as h2, PipelineIcon as h3, PivotOperatorIcon as h4, PlayCircleFillIcon as h5, PlayCircleIcon as h6, PlayDoubleIcon as h7, PlayIcon as h8, PlayMultipleIcon as h9, ReplyIcon as hA, ResizeIcon as hB, RhfForm as hC, RichTextIcon as hD, RobotIcon as hE, RocketIcon as hF, RowsIcon as hG, RunIcon as hH, RunningIcon as hI, SMALL_BUTTON_HEIGHT$2 as hJ, SaveClockIcon as hK, SaveIcon as hL, SchemaIcon as hM, SchoolIcon as hN, SearchDataIcon as hO, SegmentedControlButton as hP, SegmentedControlGroup as hQ, SelectContext as hR, SelectContextProvider as hS, SelectOptionGroup as hT, SendIcon as hU, ShareIcon as hV, ShareNodesIcon as hW, ShieldCheckIcon as hX, ShieldIcon as hY, ShieldOffIcon as hZ, ShortcutIcon as h_, PlugIcon as ha, PlusCircleFillIcon as hb, PlusCircleIcon as hc, PlusCircleSmallIcon as hd, PlusMinusSquareIcon as he, Popover as hf, PositionBottomIcon as hg, PositionLeftIcon as hh, PositionRightIcon as hi, PositionTopIcon as hj, PreviewCard as hk, Progress as hl, PullRequestIcon as hm, PuzzleIcon as hn, QueryEditorIcon as ho, QueryIcon as hp, QuestionMarkFillIcon as hq, QuestionMarkIcon as hr, RadioIcon as hs, RadioTile as ht, RangePicker as hu, ReaderModeIcon as hv, RedoIcon as hw, RefreshIcon as hx, RefreshPlayIcon as hy, RefreshXIcon as hz, useDesignSystemContext as i, TableModelIcon as i$, SidebarAutoIcon as i0, SidebarClosedIcon as i1, SidebarCollapseIcon as i2, SidebarExpandIcon as i3, SidebarIcon as i4, SidebarOpenIcon as i5, SidebarSyncIcon as i6, SimpleSelect as i7, SimpleSelectOption as i8, SimpleSelectOptionGroup as i9, Spinner as iA, SplitButton as iB, SqlIcon as iC, StarFillIcon as iD, StarIcon as iE, StepAfterLineIcon as iF, StepBeforeLineIcon as iG, Stepper as iH, StopCircleFillIcon as iI, StopCircleIcon as iJ, StopIcon as iK, StoredProcedureIcon as iL, StorefrontIcon as iM, StreamIcon as iN, StrikeThroughIcon as iO, SunIcon as iP, SyncIcon as iQ, SyncSmallIcon as iR, SyncToFileIcon as iS, TableAsteriskIcon as iT, TableClockIcon as iU, TableCombineIcon as iV, TableGlassesIcon as iW, TableGlobeIcon as iX, TableIcon as iY, TableLightningIcon as iZ, TableMeasureIcon as i_, SlashSquareIcon as ia, SlidersIcon as ib, SlidesIcon as ic, SnippetIcon as id, SortCustomHorizontalIcon as ie, SortCustomVerticalIcon as ig, SortHorizontalAscendingIcon as ih, SortHorizontalDescendingIcon as ii, SortLetterHorizontalAscendingIcon as ij, SortLetterHorizontalDescendingIcon as ik, SortLetterUnsortedIcon as il, SortLetterVerticalAscendingIcon as im, SortLetterVerticalDescendingIcon as io, Spacer as ip, SparkleDoubleFillIcon as iq, SparkleFillIcon as ir, SparkleIcon as is, SparkleRectangleIcon as it, SpeechBubbleIcon as iu, SpeechBubblePlusIcon as iv, SpeechBubbleQuestionMarkFillIcon as iw, SpeechBubbleQuestionMarkIcon as ix, SpeechBubbleStarIcon as iy, SpeedometerIcon as iz, WarningFillIcon as j, ZaHorizontalIcon as j$, TableReportIcon as j0, TableStreamIcon as j1, TableVectorIcon as j2, TableViewIcon as j3, Tabs as j4, TagColumnIcon as j5, TagIcon as j6, TagTableIcon as j7, TargetIcon as j8, TerminalIcon as j9, UppercaseIcon as jA, UsageOverageGraphic as jB, UsageSpikeGraphic as jC, UsbIcon as jD, UserBadgeIcon as jE, UserCircleIcon as jF, UserGroupFillIcon as jG, UserGroupIcon as jH, UserIcon as jI, UserKeyIconIcon as jJ, UserShieldIcon as jK, UserSparkleIcon as jL, UserTeamIcon as jM, VisibleFillIcon as jN, VisibleIcon as jO, VisibleOffIcon as jP, VoiceModeIcon as jQ, WithDesignSystemThemeHoc as jR, WorkflowCodeIcon as jS, WorkflowCubeIcon as jT, WorkflowsIcon as jU, WorkspacesIcon as jV, WrenchIcon as jW, WrenchSparkleIcon as jX, XCircleFillIcon as jY, XCircleIcon as jZ, YearPickerGrid as j_, TextBoxIcon as ja, TextColorIcon as jb, TextIcon as jc, TextJustifyIcon as jd, TextUnderlineIcon as je, ThreeDotsIcon as jf, ThumbsDownFilledIcon as jg, ThumbsDownIcon as jh, ThumbsUpFilledIcon as ji, ThumbsUpIcon as jj, ToggleButton as jk, TokenIcon as jl, TrashIcon as jm, Tree as jn, TreeIcon as jo, TrendingFillIcon as jp, TrendingIcon as jq, TriangleIcon as jr, TypeaheadComboboxCheckboxItem as js, TypeaheadComboboxFooter as jt, TypeaheadComboboxMenuItem$1 as ju, TypeaheadComboboxMultiSelectStateChangeTypes as jv, TypeaheadComboboxStateChangeTypes as jw, UnderlineIcon as jx, UndoIcon as jy, UploadIcon as jz, DangerFillIcon as k, ZaVerticalIcon as k0, ZeroOpsIcon as k1, ZeroOpsOutlineIcon as k2, ZoomInIcon as k3, ZoomMarqueeSelection as k4, ZoomOutIcon as k5, ZoomToFitIcon as k6, __INTERNAL_DO_NOT_USE__FormItem as k7, __INTERNAL_DO_NOT_USE__Group as k8, __INTERNAL_DO_NOT_USE__HorizontalGroup as k9, setImplicitContextGetter as kA, skipHideIconButtonActionClassName as kB, themeMemoKey as kC, useAntDConfigProviderContext as kD, useCallbackOnEnter as kE, useComponentFinderContext as kF, useDesignSystemEventSuppressInteractionContext as kG, useFormContext as kH, useRadioGroupContext as kI, __INTERNAL_DO_NOT_USE__VerticalGroup as ka, __INTERNAL_DO_NOT_USE__wrapLegacyFormRules as kb, augmentWithDataComponentProps as kc, dialogComboboxLookAheadKeyDown as kd, getBottomOnlyShadowScrollStyles as ke, getButtonEmotionStyles as kf, getComboboxOptionLabelStyles as kg, getDatePickerQuickActionBasic as kh, getDialogComboboxOptionLabelWidth as ki, getHorizontalTabShadowStyles as kj, getInputStyles as kk, getKeyboardNavigationFunctions as kl, getMemoizedButtonEmotionStyles as km, getPaginationEmotionStyles as kn, getPanelContainmentStyle as ko, getRadioStyles as kp, getRangeQuickActionsBasic as kq, getShadowScrollStyles as kr, getTypographyColor as ks, getVirtualListScrollbarStyles as kt, getVirtualListScrollbarThumbColor as ku, getVirtualizedComboboxMenuItemStyles as kv, getWrapperStyle as kw, highlightFirstNonDisabledOption as kx, isOptionDisabled as ky, resetTabIndexToFocusedElement as kz, DesignSystemEventProviderAnalyticsEventTypes as l, useDesignSystemEventComponentCallbacks as m, DesignSystemEventProviderComponentTypes as n, DesignSystemEventProviderComponentSubTypeMap as o, primitiveColors as p, useNotifyOnFirstView as q, useStableUuidV4 as r, ChevronDownIcon as s, ChevronRightIcon as t, useWizardCurrentStep as u, DesignSystemAntDConfigProvider as v, CloseSmallIcon as w, addDebugOutlineIfEnabled as x, Modal as y, getAnimationCss as z };
37661
+ //# sourceMappingURL=WizardStepContentWrapper-bbh_CoIf.js.map