@databricks/design-system 2.0.6 → 2.0.8

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 (31) hide show
  1. package/AGENTS.md +239 -166
  2. package/CHANGELOG.md +36 -0
  3. package/dist/{RHFControlledTypeaheadComboboxV2-Ct9x3rC1.js → RHFControlledTypeaheadComboboxV2-Boee19c1.js} +3 -3
  4. package/dist/{RHFControlledTypeaheadComboboxV2-Ct9x3rC1.js.map → RHFControlledTypeaheadComboboxV2-Boee19c1.js.map} +1 -1
  5. package/dist/{WizardStepContentWrapper-6YTjeEaA.js → WizardStepContentWrapper-DfErft8z.js} +201 -257
  6. package/dist/WizardStepContentWrapper-DfErft8z.js.map +1 -0
  7. package/dist/dubois-colors.less +3 -1
  8. package/dist/icon-metadata.json +5 -0
  9. package/dist/{index-DiRpSwH2.js → index-CUzS-Vjx.js} +121 -109
  10. package/dist/index-CUzS-Vjx.js.map +1 -0
  11. package/dist/index-dark.css +136 -1
  12. package/dist/index-dark.mitigated.css +164 -16
  13. package/dist/index.css +183 -28
  14. package/dist/index.js +2 -2
  15. package/dist/index.mitigated.css +211 -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/_generated/ValidSemanticColors.d.ts +1 -0
  25. package/dist-types/theme/generalVariables.d.ts +0 -1
  26. package/package.json +5 -4
  27. package/setup.mjs +586 -0
  28. package/dist/WizardStepContentWrapper-6YTjeEaA.js.map +0 -1
  29. package/dist/index-DiRpSwH2.js.map +0 -1
  30. package/dist-types/design-system/LegacyTooltip/LegacyTooltip.d.ts +0 -47
  31. 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',
@@ -434,6 +446,7 @@ const darkColorList = {
434
446
  borderDanger: primitiveColors.red500,
435
447
  borderWarning: primitiveColors.yellow500,
436
448
  codeBackground: primitiveColors.grey650,
449
+ composerBackground: primitiveColors.grey700,
437
450
  iconTrending: primitiveColors.orange,
438
451
  overlayOverlay: 'rgba(0, 0, 0, 0.4500)',
439
452
  progressFill: primitiveColors.grey500,
@@ -520,6 +533,7 @@ const lightColorList = {
520
533
  borderDanger: primitiveColors.red300,
521
534
  borderWarning: primitiveColors.yellow300,
522
535
  codeBackground: 'rgba(82, 82, 82, 0.0800)',
536
+ composerBackground: primitiveColors.white,
523
537
  iconTrending: primitiveColors.orange,
524
538
  overlayOverlay: 'rgba(0, 0, 0, 0.2600)',
525
539
  progressFill: primitiveColors.neutral300,
@@ -688,7 +702,6 @@ const heightBase = 40;
688
702
  const borderWidth = 1;
689
703
  const antdGeneralVariables = {
690
704
  classnamePrefix: antdVars['ant-prefix'],
691
- iconfontCssPrefix: 'anticon',
692
705
  borderRadiusBase: 4,
693
706
  borderWidth: borderWidth,
694
707
  heightSm: 32,
@@ -899,6 +912,7 @@ var ValidSemanticColors = /*#__PURE__*/ function(ValidSemanticColors) {
899
912
  ValidSemanticColors["BorderDanger"] = "borderDanger";
900
913
  ValidSemanticColors["BorderWarning"] = "borderWarning";
901
914
  ValidSemanticColors["CodeBackground"] = "codeBackground";
915
+ ValidSemanticColors["ComposerBackground"] = "composerBackground";
902
916
  ValidSemanticColors["IconTrending"] = "iconTrending";
903
917
  ValidSemanticColors["OverlayOverlay"] = "overlayOverlay";
904
918
  ValidSemanticColors["ProgressFill"] = "progressFill";
@@ -1755,8 +1769,10 @@ const getAnimationCss = memoize((enableAnimation)=>{
1755
1769
  ...disableAnimationCss,
1756
1770
  '&::before': disableAnimationCss,
1757
1771
  '&::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} *)`]: {
1772
+ // Also apply to all child elements with a class that starts with our prefix, except elements
1773
+ // which must keep their own animation. Mark those elements directly rather than matching an
1774
+ // ancestor scope for every Du Bois descendant.
1775
+ [`[class*=du-bois]:not(.${DU_BOIS_ENABLE_ANIMATION_CLASSNAME})`]: {
1760
1776
  ...disableAnimationCss,
1761
1777
  // Also target any pseudo-elements associated with those elements, since these can also be animated.
1762
1778
  '&::before': disableAnimationCss,
@@ -2371,10 +2387,12 @@ const NativeIcon = /*#__PURE__*/ forwardRef(function NativeIcon({ component: Com
2371
2387
  });
2372
2388
  });
2373
2389
 
2374
- // Selector matching the design-system icon wrappers, `.anticon` and `.db-icon`. Authored icon styles
2375
- // should use this instead of hardcoding either class.
2390
+ // Selector matching the design-system icon wrapper: `.db-icon` once the native icon flag is on,
2391
+ // `.anticon` otherwise. Authored icon styles should use this instead of hardcoding either class.
2392
+ // Returns a single class (never a comma-list) and callers must not wrap it in `:is()` — both forms
2393
+ // multiply the selector count, which inflated Monaco's per-keystroke style-recalc cost.
2376
2394
  function getIconClassName() {
2377
- return '.anticon, .db-icon';
2395
+ return serverSideSafe('databricks.fe.designsystem.useNativeIcon', false) ? '.db-icon' : '.anticon';
2378
2396
  }
2379
2397
 
2380
2398
  // Public Icon selects between the native (plain-DOM, token-driven) implementation and the legacy
@@ -13293,6 +13311,37 @@ const SlidersIcon = /*#__PURE__*/ forwardRef((props, forwardedRef)=>{
13293
13311
  });
13294
13312
  SlidersIcon.displayName = "SlidersIcon";
13295
13313
 
13314
+ function SvgSlidesIcon(props) {
13315
+ return /*#__PURE__*/ jsxs("svg", {
13316
+ xmlns: "http://www.w3.org/2000/svg",
13317
+ width: "1em",
13318
+ height: "1em",
13319
+ fill: "none",
13320
+ viewBox: "0 0 16 16",
13321
+ ...props,
13322
+ children: [
13323
+ /*#__PURE__*/ jsx("path", {
13324
+ fill: "currentColor",
13325
+ d: "M12 5.5H4V4h8z"
13326
+ }),
13327
+ /*#__PURE__*/ jsx("path", {
13328
+ fill: "currentColor",
13329
+ fillRule: "evenodd",
13330
+ 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",
13331
+ clipRule: "evenodd"
13332
+ })
13333
+ ]
13334
+ });
13335
+ }
13336
+ const SlidesIcon = /*#__PURE__*/ forwardRef((props, forwardedRef)=>{
13337
+ return /*#__PURE__*/ jsx(Icon, {
13338
+ ref: forwardedRef,
13339
+ ...props,
13340
+ component: SvgSlidesIcon
13341
+ });
13342
+ });
13343
+ SlidesIcon.displayName = "SlidesIcon";
13344
+
13296
13345
  function SvgSnippetIcon(props) {
13297
13346
  return /*#__PURE__*/ jsxs("svg", {
13298
13347
  xmlns: "http://www.w3.org/2000/svg",
@@ -17537,7 +17586,7 @@ var ShapeTokens = /*#__PURE__*/ function(ShapeTokens) {
17537
17586
  const token = (token, fallback)=>`var(${token}, ${typeof fallback === 'number' ? `${fallback}px` : fallback})`;
17538
17587
 
17539
17588
  const SMALL_BUTTON_HEIGHT$2 = 24;
17540
- const ICON_SELECTOR$1 = `:is(${getIconClassName()})`;
17589
+ const ICON_SELECTOR$1 = `${getIconClassName()}`;
17541
17590
  // Hoisted to module level so the default reference is stable across renders and instances.
17542
17591
  // Without this, the default `analyticsEvents = [...]` literal would be a fresh array on every
17543
17592
  // render, propagating ref-instability into useDesignSystemEventComponentCallbacks.
@@ -17577,11 +17626,11 @@ const getMemoizedButtonEmotionStyles = (props)=>{
17577
17626
  themeCache.set(cacheKey, styles);
17578
17627
  return styles;
17579
17628
  };
17580
- function getEndIconClsName(theme) {
17581
- return `${theme.general.iconfontCssPrefix}-btn-end-icon`;
17582
- }
17629
+ // Trailing-icon slot wrapper class, derived from the design-system icon class so this slot and the
17630
+ // consumers that style it stay in sync with it. getIconClassName() is a selector — strip the dot.
17631
+ const BUTTON_END_ICON_CLASSNAME = `${getIconClassName().replace('.', '')}-btn-end-icon`;
17583
17632
  const getButtonEmotionStyles = ({ theme, classNamePrefix, loading, withIcon, onlyIcon, isAnchor, enableAnimation, size, type, useFocusPseudoClass, forceIconStyles, danger })=>{
17584
- const clsEndIcon = `.${getEndIconClsName(theme)}`;
17633
+ const clsEndIcon = `.${BUTTON_END_ICON_CLASSNAME}`;
17585
17634
  const clsLoadingIcon = `.${classNamePrefix}-btn-loading-icon`;
17586
17635
  const clsIconOnly = `.${classNamePrefix}-btn-icon-only`;
17587
17636
  const classPrimary = `.${classNamePrefix}-btn-primary`;
@@ -17882,7 +17931,7 @@ const AntDButtonInternal = /* #__PURE__ */ (()=>{
17882
17931
  // 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
17932
  isInteractionSubject: !(props.htmlType === 'submit' && formContext.componentId)
17884
17933
  });
17885
- const clsEndIcon = getEndIconClsName(theme);
17934
+ const clsEndIcon = BUTTON_END_ICON_CLASSNAME;
17886
17935
  const loadingCls = `${classNamePrefix}-btn-loading-icon`;
17887
17936
  const { elementRef: buttonRef } = useNotifyOnFirstView({
17888
17937
  onView: eventContext.onView
@@ -18159,12 +18208,13 @@ const NativeButton = /*#__PURE__*/ forwardRef(function NativeButton({ type, size
18159
18208
  });
18160
18209
  });
18161
18210
 
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.
18211
+ // Public Button selects between the native (plain-DOM, token-driven) implementation and the legacy one.
18212
+ // `forceMode` defaults to `'native'` so new buttons are native; existing callsites pass `'flag'` to
18213
+ // defer to the `databricks.fe.designsystem.useNativeButton` server-side flag for rollout.
18164
18214
  // serverSideSafe resolves synchronously at render, so the choice is stable from first paint.
18165
18215
  const Button = /* #__PURE__ */ (()=>{
18166
- const Button = /*#__PURE__*/ forwardRef(function Button({ useNativeButtonOverride, ...props }, ref) {
18167
- const useNativeButton = useNativeButtonOverride ?? serverSideSafe('databricks.fe.designsystem.useNativeButton', false);
18216
+ const Button = /*#__PURE__*/ forwardRef(function Button({ forceMode = 'native', ...props }, ref) {
18217
+ const useNativeButton = forceMode === 'native' || forceMode === 'flag' && serverSideSafe('databricks.fe.designsystem.useNativeButton', false);
18168
18218
  if (useNativeButton) {
18169
18219
  return /*#__PURE__*/ jsx(NativeButton, {
18170
18220
  ...props,
@@ -18176,8 +18226,8 @@ const Button = /* #__PURE__ */ (()=>{
18176
18226
  ref: ref
18177
18227
  });
18178
18228
  });
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.
18229
+ // Keep the marker Ant wrappers (e.g. Tooltip) read to identify a button, so their spacing/rendering
18230
+ // around Button is unchanged regardless of which implementation renders underneath.
18181
18231
  // See: https://github.com/ant-design/ant-design/blob/6dd39c1f89b4d6632e6ed022ff1bc275ca1e0f1f/components/button/button.tsx#L291
18182
18232
  Button.__ANT_BUTTON = true;
18183
18233
  return Button;
@@ -18302,11 +18352,11 @@ const getLinkStyles = (theme, clsPrefix)=>{
18302
18352
  [`&${classTypography}, &${classTypography}:focus`]: {
18303
18353
  color: theme.colors.actionTertiaryTextDefault
18304
18354
  },
18305
- [`&${classTypography}:hover, &${classTypography}:hover :is(${getIconClassName()})`]: {
18355
+ [`&${classTypography}:hover, &${classTypography}:hover ${getIconClassName()}`]: {
18306
18356
  color: theme.colors.actionTertiaryTextHover,
18307
18357
  textDecoration: 'underline'
18308
18358
  },
18309
- [`&${classTypography}:active, &${classTypography}:active :is(${getIconClassName()})`]: {
18359
+ [`&${classTypography}:active, &${classTypography}:active ${getIconClassName()}`]: {
18310
18360
  color: theme.colors.actionTertiaryTextPress,
18311
18361
  textDecoration: 'underline'
18312
18362
  },
@@ -18452,7 +18502,7 @@ function getParagraphEmotionStyles(theme, clsPrefix, props) {
18452
18502
  lineHeight: theme.typography.lineHeightBase,
18453
18503
  color: getTypographyColor(theme, props.color, theme.colors.textPrimary)
18454
18504
  },
18455
- [`& :is(${getIconClassName()})`]: {
18505
+ [`& ${getIconClassName()}`]: {
18456
18506
  verticalAlign: 'text-bottom'
18457
18507
  },
18458
18508
  [`${getBtnClassName(clsPrefix, '-link', '& ')}, ${getBtnClassName(clsPrefix, '-tertiary', '& ')}`]: {
@@ -18533,7 +18583,7 @@ function getTextEmotionStyles(theme, props) {
18533
18583
  return {
18534
18584
  fontSize: theme.typography.fontSizeXxl,
18535
18585
  lineHeight: theme.typography.lineHeightXxl,
18536
- [`& :is(${getIconClassName()})`]: {
18586
+ [`& ${getIconClassName()}`]: {
18537
18587
  lineHeight: theme.typography.lineHeightXxl,
18538
18588
  verticalAlign: 'middle'
18539
18589
  }
@@ -18542,7 +18592,7 @@ function getTextEmotionStyles(theme, props) {
18542
18592
  return {
18543
18593
  fontSize: theme.typography.fontSizeXl,
18544
18594
  lineHeight: theme.typography.lineHeightXl,
18545
- [`& :is(${getIconClassName()})`]: {
18595
+ [`& ${getIconClassName()}`]: {
18546
18596
  lineHeight: theme.typography.lineHeightXl,
18547
18597
  verticalAlign: 'middle'
18548
18598
  }
@@ -18551,7 +18601,7 @@ function getTextEmotionStyles(theme, props) {
18551
18601
  return {
18552
18602
  fontSize: theme.typography.fontSizeLg,
18553
18603
  lineHeight: theme.typography.lineHeightLg,
18554
- [`& :is(${getIconClassName()})`]: {
18604
+ [`& ${getIconClassName()}`]: {
18555
18605
  lineHeight: theme.typography.lineHeightLg,
18556
18606
  verticalAlign: 'middle'
18557
18607
  }
@@ -18560,7 +18610,7 @@ function getTextEmotionStyles(theme, props) {
18560
18610
  return {
18561
18611
  fontSize: theme.typography.fontSizeSm,
18562
18612
  lineHeight: theme.typography.lineHeightSm,
18563
- [`& :is(${getIconClassName()})`]: {
18613
+ [`& ${getIconClassName()}`]: {
18564
18614
  verticalAlign: '-0.219em'
18565
18615
  }
18566
18616
  };
@@ -18676,7 +18726,7 @@ function getLevelStyles(theme, props) {
18676
18726
  lineHeight: theme.typography[tokens.lineHeight],
18677
18727
  fontWeight: theme.typography.typographyBoldFontWeight
18678
18728
  },
18679
- [`& > :is(${getIconClassName()})`]: {
18729
+ [`& > ${getIconClassName()}`]: {
18680
18730
  lineHeight: theme.typography[tokens.lineHeight]
18681
18731
  }
18682
18732
  });
@@ -18686,7 +18736,7 @@ function getTitleEmotionStyles(theme, props) {
18686
18736
  '&&': {
18687
18737
  color: getTypographyColor(theme, props.color, theme.colors.textPrimary)
18688
18738
  },
18689
- [`& > :is(${getIconClassName()})`]: {
18739
+ [`& > ${getIconClassName()}`]: {
18690
18740
  verticalAlign: 'middle'
18691
18741
  }
18692
18742
  }, props.withoutMargins && {
@@ -20131,7 +20181,7 @@ const TitleSkeleton = ({ label, seed = '', frameRate = 60, style, level, inline
20131
20181
  });
20132
20182
  };
20133
20183
 
20134
- const ICON_SELECTOR = `:is(${getIconClassName()})`;
20184
+ const ICON_SELECTOR = `${getIconClassName()}`;
20135
20185
  // Class names that can be used to reference children within
20136
20186
  // Should not be used outside of design system
20137
20187
  // TODO: PE-239 Maybe we could add "dangerous" into the names or make them completely random.
@@ -22580,6 +22630,9 @@ const DatePickerInput = /*#__PURE__*/ forwardRef((props, ref)=>{
22580
22630
  display: 'none'
22581
22631
  },
22582
22632
  [`.${classNamePrefix}-input`]: {
22633
+ // Native form-control inputs use the UA font (monospace) instead of inheriting,
22634
+ // so the value's face and baseline don't match the sibling prefix label. Inherit to align.
22635
+ fontFamily: 'inherit',
22583
22636
  // vertical alignment fix for all browsers except chrome
22584
22637
  display: 'inline-flex',
22585
22638
  // Firefox specific fix to hide the calendar picker indicator
@@ -26973,58 +27026,47 @@ var Drawer = /*#__PURE__*/Object.freeze({
26973
27026
  });
26974
27027
 
26975
27028
  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) {
27029
+ function getEmptyTitleStyles(clsPrefix) {
26995
27030
  const styles = {
26996
27031
  [`&.${clsPrefix}-typography`]: {
26997
- color: theme.colors.textSecondary,
27032
+ color: 'var(--db-empty-text)',
26998
27033
  marginTop: 0,
26999
27034
  marginBottom: 0
27000
27035
  }
27001
27036
  };
27002
27037
  return /*#__PURE__*/ css(styles);
27003
27038
  }
27004
- function getEmptyDescriptionStyles(theme, clsPrefix) {
27039
+ function getEmptyDescriptionStyles(clsPrefix) {
27005
27040
  const styles = {
27006
27041
  [`&.${clsPrefix}-typography`]: {
27007
- color: theme.colors.textSecondary,
27008
- marginBottom: theme.spacing.md
27042
+ color: 'var(--db-empty-text)',
27043
+ marginBottom: 'var(--db-empty-description-spacing)'
27009
27044
  }
27010
27045
  };
27011
27046
  return /*#__PURE__*/ css(styles);
27012
27047
  }
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.
27048
+ const getMemoizedEmptyTitleStyles = memoize(getEmptyTitleStyles);
27049
+ const getMemoizedEmptyDescriptionStyles = memoize(getEmptyDescriptionStyles);
27020
27050
  const OUTER_WRAPPER_CSS = /*#__PURE__*/ css({
27021
27051
  display: 'flex',
27022
27052
  justifyContent: 'center'
27023
27053
  });
27024
- // Stable default image element.
27054
+ const CONTENT_CSS = /*#__PURE__*/ css({
27055
+ display: 'flex',
27056
+ flexDirection: 'column',
27057
+ alignItems: 'center',
27058
+ textAlign: 'center',
27059
+ maxWidth: 'var(--db-empty-max-width)',
27060
+ wordBreak: 'break-word',
27061
+ '> [role="img"]': {
27062
+ fontSize: 'var(--db-empty-image-size)',
27063
+ color: 'var(--db-empty-image-color)',
27064
+ marginBottom: 'var(--db-empty-image-spacing)'
27065
+ }
27066
+ });
27025
27067
  const DEFAULT_IMAGE = /*#__PURE__*/ jsx(ListIcon, {});
27026
27068
  const Empty = (props)=>{
27027
- const { theme, classNamePrefix } = useDesignSystemTheme();
27069
+ const { classNamePrefix } = useDesignSystemTheme();
27028
27070
  const { title, description, image = DEFAULT_IMAGE, button, dangerouslyAppendEmotionCSS, ...dataProps } = props;
27029
27071
  return /*#__PURE__*/ jsx("div", {
27030
27072
  ...dataProps,
@@ -27032,18 +27074,18 @@ const Empty = (props)=>{
27032
27074
  css: OUTER_WRAPPER_CSS,
27033
27075
  children: /*#__PURE__*/ jsxs("div", {
27034
27076
  css: [
27035
- getMemoizedEmptyStyles(theme),
27077
+ CONTENT_CSS,
27036
27078
  dangerouslyAppendEmotionCSS
27037
27079
  ],
27038
27080
  children: [
27039
27081
  image,
27040
27082
  title && /*#__PURE__*/ jsx(Title, {
27041
27083
  level: 3,
27042
- css: getMemoizedEmptyTitleStyles(theme, classNamePrefix),
27084
+ css: getMemoizedEmptyTitleStyles(classNamePrefix),
27043
27085
  children: title
27044
27086
  }),
27045
27087
  /*#__PURE__*/ jsx(Paragraph, {
27046
- css: getMemoizedEmptyDescriptionStyles(theme, classNamePrefix),
27088
+ css: getMemoizedEmptyDescriptionStyles(classNamePrefix),
27047
27089
  children: description
27048
27090
  }),
27049
27091
  button
@@ -27173,7 +27215,13 @@ function getSelectEmotionStyles({ clsPrefix, theme, validationState }) {
27173
27215
  // the click event.
27174
27216
  pointerEvents: 'none',
27175
27217
  // anticon default line height is 0 and that wrongly shifts the icon down
27176
- lineHeight: 1
27218
+ lineHeight: 1,
27219
+ // AntD vendors `.<prefix>-select-arrow .anticon(> svg) { vertical-align: top }`, which the native
27220
+ // `.db-icon` glyph can't match; without it the glyph falls to its baseline default and shifts up.
27221
+ verticalAlign: 'top',
27222
+ '& > svg': {
27223
+ verticalAlign: 'top'
27224
+ }
27177
27225
  },
27178
27226
  [`&${classArrowLoading}`]: {
27179
27227
  top: (theme.general.heightSm - theme.general.iconFontSize) / 2,
@@ -27286,7 +27334,7 @@ function getSelectEmotionStyles({ clsPrefix, theme, validationState }) {
27286
27334
  lineHeight: theme.typography.lineHeightBase,
27287
27335
  paddingInlineEnd: 0,
27288
27336
  marginInlineEnd: 0,
27289
- [`& > :is(${getIconClassName()})`]: {
27337
+ [`& > ${getIconClassName()}`]: {
27290
27338
  height: theme.general.iconFontSize - 4,
27291
27339
  fontSize: theme.general.iconFontSize - 4
27292
27340
  },
@@ -31979,10 +32027,31 @@ const FormItem = ({ dangerouslySetAntdProps, children, ...props })=>{
31979
32027
  implicitContext,
31980
32028
  props.rules
31981
32029
  ]);
32030
+ // Use a DS icon for the help affordance so it tracks the native-icon flag and keeps the
32031
+ // getIconClassName()-keyed 16px size; AntD's QuestionCircleOutlined shrinks once the flag is on.
32032
+ let tooltip = props.tooltip;
32033
+ if (props.tooltip != null) {
32034
+ tooltip = typeof props.tooltip === 'object' && !/*#__PURE__*/ isValidElement(props.tooltip) ? {
32035
+ icon: /*#__PURE__*/ jsx(InfoSmallIcon, {
32036
+ css: /*#__PURE__*/ css({
32037
+ color: theme.colors.textSecondary
32038
+ })
32039
+ }),
32040
+ ...props.tooltip
32041
+ } : {
32042
+ title: props.tooltip,
32043
+ icon: /*#__PURE__*/ jsx(InfoSmallIcon, {
32044
+ css: /*#__PURE__*/ css({
32045
+ color: theme.colors.textSecondary
32046
+ })
32047
+ })
32048
+ };
32049
+ }
31982
32050
  return /*#__PURE__*/ jsx(DesignSystemAntDConfigProvider, {
31983
32051
  children: /*#__PURE__*/ jsx(Form$1.Item, {
31984
32052
  ...addDebugOutlineIfEnabled(),
31985
32053
  ...props,
32054
+ tooltip: tooltip,
31986
32055
  rules: wrappedRules,
31987
32056
  css: getMemoizedFormItemEmotionStyles({
31988
32057
  theme,
@@ -32352,132 +32421,6 @@ const LegacyTable = (props)=>{
32352
32421
  });
32353
32422
  };
32354
32423
 
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
32424
  const ListboxContext = /*#__PURE__*/ createContext(null);
32482
32425
  const useListboxContext = ()=>{
32483
32426
  const context = useContext(ListboxContext);
@@ -32608,7 +32551,7 @@ const ListboxInput = ({ value, onChange, placeholder, 'aria-controls': ariaContr
32608
32551
  css: {
32609
32552
  position: 'sticky',
32610
32553
  top: 0,
32611
- background: designSystemTheme.theme.colors.backgroundPrimary,
32554
+ background: 'var(--db-listbox-surface)',
32612
32555
  zIndex: designSystemTheme.theme.options.zIndexBase + 1
32613
32556
  },
32614
32557
  children: /*#__PURE__*/ jsx(Input, {
@@ -32629,6 +32572,13 @@ const ListboxInput = ({ value, onChange, placeholder, 'aria-controls': ariaContr
32629
32572
  });
32630
32573
  };
32631
32574
 
32575
+ const LISTBOX_STYLES = /*#__PURE__*/ css({
32576
+ outline: 'none',
32577
+ '&:focus-visible': {
32578
+ boxShadow: '0 0 0 var(--db-listbox-focus-ring-width) var(--db-listbox-focus-ring-color)',
32579
+ borderRadius: 'var(--db-listbox-border-radius)'
32580
+ }
32581
+ });
32632
32582
  const ListboxOptions = ({ options, onSelect, onHighlight, className })=>{
32633
32583
  const theme = useTheme();
32634
32584
  const { listboxId, selectedValue, setSelectedValue, highlightedValue, handleKeyNavigation } = useListboxContext();
@@ -32669,13 +32619,7 @@ const ListboxOptions = ({ options, onSelect, onHighlight, className })=>{
32669
32619
  tabIndex: 0,
32670
32620
  onKeyDown: handleKeyDown,
32671
32621
  "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
- }),
32622
+ css: LISTBOX_STYLES,
32679
32623
  children: options.map((option)=>(option.renderOption || ((additionalProps)=>/*#__PURE__*/ jsx("div", {
32680
32624
  ...additionalProps,
32681
32625
  children: option.label
@@ -32705,25 +32649,24 @@ const ListboxOptions = ({ options, onSelect, onHighlight, className })=>{
32705
32649
  const CONTAINER_CSS = /*#__PURE__*/ css({
32706
32650
  display: 'flex',
32707
32651
  flexDirection: 'column',
32708
- gap: '8px'
32652
+ gap: 'var(--db-listbox-spacing)'
32709
32653
  });
32710
32654
  const RESULTS_WRAPPER_CSS = /*#__PURE__*/ css({
32711
32655
  width: '100%'
32712
32656
  });
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
- }));
32657
+ const NO_RESULTS_CSS = /*#__PURE__*/ css({
32658
+ color: 'var(--db-listbox-empty-text)',
32659
+ textAlign: 'center',
32660
+ padding: 'var(--db-listbox-empty-spacing-vertical) var(--db-listbox-empty-spacing-horizontal)',
32661
+ width: '100%',
32662
+ boxSizing: 'border-box'
32663
+ });
32720
32664
  const DEFAULT_ANALYTICS_EVENTS$2 = [
32721
32665
  DesignSystemEventProviderAnalyticsEventTypes.OnValueChange
32722
32666
  ];
32723
32667
  const ListboxContent = ({ options, filterValue, setFilterValue, filterInputPlaceholder, onSelect, ariaLabel, includeFilterInput, filterInputEmptyMessage, listBoxDivRef })=>{
32724
32668
  const [highlightedValue, setHighlightedValue] = useState();
32725
32669
  const { listboxId } = useListboxContext();
32726
- const designSystemTheme = useDesignSystemTheme();
32727
32670
  const noResultsId = useMemo(()=>`${listboxId}-no-results`, [
32728
32671
  listboxId
32729
32672
  ]);
@@ -32790,7 +32733,7 @@ const ListboxContent = ({ options, filterValue, setFilterValue, filterInputPlace
32790
32733
  })
32791
32734
  }) : /*#__PURE__*/ jsx("div", {
32792
32735
  id: noResultsId,
32793
- css: getMemoizedNoResultsCss(designSystemTheme.theme),
32736
+ css: NO_RESULTS_CSS,
32794
32737
  children: filterInputEmptyMessage ?? 'No results found'
32795
32738
  })
32796
32739
  ]
@@ -33051,7 +32994,7 @@ function getTagEmotionStyles(theme, color = 'default', clickable = false, closab
33051
32994
  fontSize: theme.typography.fontSizeBase,
33052
32995
  fontWeight: theme.typography.typographyRegularFontWeight,
33053
32996
  lineHeight: theme.typography.lineHeightSm,
33054
- [`& :is(${getIconClassName()})`]: {
32997
+ [`& ${getIconClassName()}`]: {
33055
32998
  verticalAlign: 'text-top'
33056
32999
  },
33057
33000
  whiteSpace: 'nowrap'
@@ -33223,7 +33166,7 @@ const getMemoizedRootCss = memoize((theme)=>({
33223
33166
  // Item icon css depends on (theme, size). At most 6 cache entries.
33224
33167
  const getMemoizedItemIconCss = memoize((theme, size)=>({
33225
33168
  marginRight: size === 'large' ? theme.spacing.sm : theme.spacing.xs,
33226
- [`& > :is(${getIconClassName()})`]: {
33169
+ [`& > ${getIconClassName()}`]: {
33227
33170
  verticalAlign: `-3px`
33228
33171
  }
33229
33172
  }), (theme, size)=>`${themeMemoKey(theme)}|${size}`);
@@ -33518,64 +33461,66 @@ const PreviewCard = ({ icon, title, subtitle, titleActions, children, startActio
33518
33461
  return content;
33519
33462
  };
33520
33463
  const getPreviewCardStyles = (theme, isInteractive, size, disabled, fullBleedImage)=>{
33521
- const paddingSize = size === 'large' ? theme.spacing.lg : theme.spacing.md;
33464
+ const paddingSize = size === 'large' ? 'var(--db-preview-card-padding-large)' : 'var(--db-preview-card-padding)';
33465
+ const gapSize = size === 'large' ? 'var(--db-preview-card-gap-large)' : 'var(--db-preview-card-gap)';
33522
33466
  return {
33523
33467
  container: {
33524
33468
  overflow: 'hidden',
33525
- borderRadius: token(ShapeTokens.INFO_CONTAINER_BORDER_RADIUS, theme.borders.borderRadiusMd),
33526
- border: `1px solid ${theme.colors.border}`,
33469
+ borderRadius: 'var(--db-preview-card-border-radius)',
33470
+ border: 'var(--db-preview-card-border-width) solid var(--db-preview-card-border)',
33527
33471
  padding: paddingSize,
33528
- color: theme.colors.textSecondary,
33472
+ color: 'var(--db-preview-card-text)',
33529
33473
  display: 'flex',
33530
33474
  flexDirection: 'column',
33531
33475
  justifyContent: 'space-between',
33532
- gap: size === 'large' ? theme.spacing.md : theme.spacing.sm,
33533
- boxShadow: theme.shadows.sm,
33476
+ gap: gapSize,
33477
+ boxShadow: 'var(--db-preview-card-shadow)',
33534
33478
  cursor: isInteractive ? 'pointer' : 'default',
33535
33479
  ...isInteractive && {
33536
33480
  transition: 'box-shadow 0.2s, background-color 0.2s, border-color 0.2s, color 0.2s',
33537
33481
  '&[aria-disabled="true"]': {
33538
33482
  pointerEvents: 'none',
33539
- backgroundColor: theme.colors.actionDisabledBackground,
33540
- borderColor: theme.colors.actionDisabledBorder,
33541
- color: theme.colors.actionDisabledText
33483
+ backgroundColor: 'var(--db-preview-card-surface-disabled)',
33484
+ borderColor: 'var(--db-preview-card-border-disabled)',
33485
+ color: 'var(--db-preview-card-text-disabled)'
33542
33486
  },
33543
33487
  '&:hover, &:focus-within': {
33544
- boxShadow: theme.shadows.md
33488
+ boxShadow: 'var(--db-preview-card-shadow-hover)'
33545
33489
  },
33546
33490
  '&:active': {
33547
- background: theme.colors.actionTertiaryBackgroundPress,
33548
- borderColor: theme.colors.actionDefaultBorderHover,
33549
- boxShadow: theme.shadows.md
33491
+ background: 'var(--db-preview-card-surface-active)',
33492
+ borderColor: 'var(--db-preview-card-border-hover)',
33493
+ boxShadow: 'var(--db-preview-card-shadow-hover)'
33550
33494
  },
33551
33495
  '&:focus, &[aria-pressed="true"]': {
33552
- outlineColor: theme.colors.actionDefaultBorderFocus,
33496
+ outlineColor: 'var(--db-preview-card-border-focus)',
33553
33497
  outlineWidth: 2,
33554
33498
  outlineOffset: -2,
33555
33499
  outlineStyle: 'solid',
33556
- boxShadow: theme.shadows.md,
33557
- borderColor: theme.colors.actionDefaultBorderHover
33500
+ boxShadow: 'var(--db-preview-card-shadow-hover)',
33501
+ borderColor: 'var(--db-preview-card-border-hover)'
33558
33502
  },
33559
33503
  '&:active:not(:focus):not(:focus-within)': {
33560
33504
  background: 'transparent',
33561
- borderColor: theme.colors.border
33505
+ borderColor: 'var(--db-preview-card-border)'
33562
33506
  }
33563
33507
  }
33564
33508
  },
33565
33509
  image: {
33566
- margin: fullBleedImage ? `-${paddingSize}px -${paddingSize}px 0` : 0,
33510
+ margin: fullBleedImage ? `calc(${paddingSize} * -1) calc(${paddingSize} * -1) 0` : 0,
33567
33511
  '& > *': {
33568
- borderRadius: fullBleedImage ? 0 : token(ShapeTokens.INFO_CONTAINER_BORDER_RADIUS, theme.borders.borderRadiusSm)
33512
+ borderRadius: fullBleedImage ? 0 : 'var(--db-preview-card-image-border-radius)'
33569
33513
  }
33570
33514
  },
33571
33515
  header: {
33572
33516
  display: 'flex',
33573
33517
  alignItems: 'center',
33574
- gap: theme.spacing.sm
33518
+ gap: 'var(--db-preview-card-gap)'
33575
33519
  },
33576
33520
  title: {
33577
- fontWeight: theme.typography.typographyBoldFontWeight,
33578
- color: disabled ? theme.colors.actionDisabledText : theme.colors.textPrimary,
33521
+ fontWeight: 'var(--db-preview-card-title-font-weight)',
33522
+ color: disabled ? 'var(--db-preview-card-text-disabled)' : 'var(--db-preview-card-title-text)',
33523
+ // No v2 line-height token. TODO(FEINF-6557): adopt one when it lands.
33579
33524
  lineHeight: theme.typography.lineHeightSm
33580
33525
  },
33581
33526
  subTitle: {
@@ -33593,13 +33538,13 @@ const getPreviewCardStyles = (theme, isInteractive, size, disabled, fullBleedIma
33593
33538
  justifyContent: 'space-between',
33594
33539
  alignItems: 'center',
33595
33540
  flexWrap: 'wrap',
33596
- gap: theme.spacing.sm
33541
+ gap: 'var(--db-preview-card-gap)'
33597
33542
  },
33598
33543
  action: {
33599
33544
  overflow: 'hidden',
33600
33545
  // to ensure focus ring is rendered
33601
- margin: theme.spacing.md * -1,
33602
- padding: theme.spacing.md
33546
+ margin: 'calc(var(--db-preview-card-action-spacing) * -1)',
33547
+ padding: 'var(--db-preview-card-action-spacing)'
33603
33548
  }
33604
33549
  };
33605
33550
  };
@@ -34014,7 +33959,7 @@ function getSegmentedControlButtonEmotionStyles(clsPrefix, theme, size, spaced =
34014
33959
  },
34015
33960
  [`&${classWrapperChecked}`]: {
34016
33961
  color: theme.colors.actionDefaultTextDefault,
34017
- [`& :is(${getIconClassName()})`]: {
33962
+ [`& ${getIconClassName()}`]: {
34018
33963
  color: theme.colors.textSecondary
34019
33964
  },
34020
33965
  backgroundColor: theme.colors.backgroundPrimary,
@@ -34440,7 +34385,7 @@ const getMemoizedNavButtonActiveCss = memoize((theme)=>importantify({
34440
34385
  borderRadius: theme.borders.borderRadiusSm,
34441
34386
  background: theme.colors.actionDefaultBackgroundPress,
34442
34387
  button: {
34443
- [`&:enabled:not(:hover):not(:active) > :is(${getIconClassName()})`]: {
34388
+ [`&:enabled:not(:hover):not(:active) > ${getIconClassName()}`]: {
34444
34389
  color: theme.colors.actionTertiaryTextPress
34445
34390
  }
34446
34391
  }
@@ -35081,8 +35026,7 @@ function getSplitButtonEmotionStyles(classNamePrefix, theme, size) {
35081
35026
  const classDropdownTrigger = `.${classNamePrefix}-dropdown-trigger`;
35082
35027
  const classSmall = `.${classNamePrefix}-btn-group-sm`;
35083
35028
  const iconClass = getIconClassName();
35084
- const iconSelector = `:is(${iconClass})`;
35085
- const iconStateSelectors = `${iconClass}, &:hover ${iconSelector}, &:active ${iconSelector}, &:focus-visible ${iconSelector}`;
35029
+ const iconStateSelectors = `${iconClass}, &:hover ${iconClass}, &:active ${iconClass}, &:focus-visible ${iconClass}`;
35086
35030
  const styles = {
35087
35031
  [btn()]: {
35088
35032
  ...getDefaultStyles(theme),
@@ -35096,13 +35040,13 @@ function getSplitButtonEmotionStyles(classNamePrefix, theme, size) {
35096
35040
  outlineOffset: '-2px',
35097
35041
  outlineColor: theme.colors.actionDefaultBorderFocus
35098
35042
  },
35099
- [`${iconClass}, &:focus-visible ${iconSelector}`]: {
35043
+ [`${iconClass}, &:focus-visible ${iconClass}`]: {
35100
35044
  color: theme.colors.textSecondary
35101
35045
  },
35102
- [`&:hover ${iconSelector}`]: {
35046
+ [`&:hover ${iconClass}`]: {
35103
35047
  color: theme.colors.actionDefaultIconHover
35104
35048
  },
35105
- [`&:active ${iconSelector}`]: {
35049
+ [`&:active ${iconClass}`]: {
35106
35050
  color: theme.colors.actionDefaultIconPress
35107
35051
  }
35108
35052
  },
@@ -36021,7 +35965,7 @@ const getListStyles = (theme, shadowScrollStylesBackgroundColor, scrollbarHeight
36021
35965
  };
36022
35966
  const getMemoizedListStyles = memoize(getListStyles, (theme, bg, scrollbarHeight)=>`${themeMemoKey(theme)}|${bg ?? ''}|${scrollbarHeight ?? ''}`);
36023
35967
  const getTriggerStyles = (theme, isClosable)=>{
36024
- const iconSelector = `:is(${getIconClassName()})`;
35968
+ const iconSelector = `${getIconClassName()}`;
36025
35969
  return {
36026
35970
  trigger: {
36027
35971
  ...COMMON_TABS_TRIGGER_STYLES,
@@ -37719,5 +37663,5 @@ function WizardStepContentWrapper({ header, title, description, alertContent, de
37719
37663
  });
37720
37664
  }
37721
37665
 
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
37666
+ 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 };
37667
+ //# sourceMappingURL=WizardStepContentWrapper-DfErft8z.js.map