@databricks/design-system 2.0.4 → 2.0.5

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 (40) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/dist/RHFControlledTypeaheadComboboxV2-DsH-nIEk.js +172 -0
  3. package/dist/RHFControlledTypeaheadComboboxV2-DsH-nIEk.js.map +1 -0
  4. package/dist/{WizardStepContentWrapper-8bs2FwRi.js → WizardStepContentWrapper-Bq1wm0V7.js} +554 -404
  5. package/dist/WizardStepContentWrapper-Bq1wm0V7.js.map +1 -0
  6. package/dist/index-BRAVZg-S.js +8308 -0
  7. package/dist/index-BRAVZg-S.js.map +1 -0
  8. package/dist/index-dark.css +364 -97
  9. package/dist/index-dark.mitigated.css +367 -100
  10. package/dist/index.css +684 -117
  11. package/dist/index.js +25 -8146
  12. package/dist/index.js.map +1 -1
  13. package/dist/index.mitigated.css +688 -121
  14. package/dist/patterns.js +1 -1
  15. package/dist-types/design-system/Breadcrumb/Breadcrumb.d.ts +10 -3
  16. package/dist-types/design-system/Button/AntDButtonInternal.d.ts +21 -0
  17. package/dist-types/design-system/Button/Button.d.ts +3 -19
  18. package/dist-types/design-system/Button/NativeButton.d.ts +3 -0
  19. package/dist-types/design-system/Button/getBtnClassName.d.ts +17 -0
  20. package/dist-types/design-system/Button/index.d.ts +1 -0
  21. package/dist-types/design-system/DesignSystemProvider/DesignTokenScopeWithEmotionTheme.d.ts +4 -4
  22. package/dist-types/design-system/FormV2/RHFAdapters.d.ts +8 -0
  23. package/dist-types/design-system/FormV2/RHFControlledTypeaheadComboboxV2.d.ts +58 -0
  24. package/dist-types/design-system/Icon/Icon.d.ts +2 -2
  25. package/dist-types/design-system/Icon/__generated/icons/ColorMappingEditIcon.d.ts +4 -0
  26. package/dist-types/design-system/Icon/__generated/icons/ColorMappingIcon.d.ts +4 -0
  27. package/dist-types/design-system/Icon/__generated/icons/MicrophoneIcon.d.ts +4 -0
  28. package/dist-types/design-system/Icon/__generated/icons/MicrophoneOffIcon.d.ts +4 -0
  29. package/dist-types/design-system/Icon/__generated/icons/OperatorIcon.d.ts +4 -0
  30. package/dist-types/design-system/Icon/__generated/icons/VoiceModeIcon.d.ts +4 -0
  31. package/dist-types/design-system/Icon/__generated/icons/index.d.ts +6 -0
  32. package/dist-types/design-system/Overflow/Overflow.d.ts +3 -1
  33. package/dist-types/design-system/Overflow/OverflowPopover.d.ts +2 -1
  34. package/dist-types/design-system/TypeaheadComboboxV2/TypeaheadComboboxMenu.d.ts +2 -0
  35. package/dist-types/design-system/shape-tokens.d.ts +1 -1
  36. package/dist-types/test-utils/rtl/buttonVariants.d.ts +4 -4
  37. package/dist-types/~patterns/Wizard/WizardStepNavigation.d.ts +9 -0
  38. package/dist-types/~patterns/Wizard/index.d.ts +1 -0
  39. package/package.json +6 -4
  40. package/dist/WizardStepContentWrapper-8bs2FwRi.js.map +0 -1
@@ -1767,12 +1767,33 @@ const getAnimationCss = memoize((enableAnimation)=>{
1767
1767
  const DesignSystemProviderPropsContext = /*#__PURE__*/ React__default.createContext(null);
1768
1768
  const AntDConfigProviderPropsContext = /*#__PURE__*/ React__default.createContext(null);
1769
1769
  /** Only to be accessed by SupportsDuBoisThemes, except for special exceptions like tests and storybook. Ask in #dubois first if you need to use it. */ const DesignSystemThemeProvider = ({ isDarkMode = false, semanticColors, designTokenOverrides, children })=>{
1770
- return /*#__PURE__*/ jsx(DesignSystemThemeContext.Provider, {
1771
- value: {
1770
+ // Inherit `designTokenOverrides` from any ambient scope so a nested theme provider — which usually
1771
+ // only switches isDarkMode / semanticColors — doesn't drop a structural override an ancestor set
1772
+ // (e.g. a radius or spacing token). These tokens are mode-independent, so inheriting them is always
1773
+ // correct. `semanticColors` and `isDarkMode` intentionally stay a clean per-mode replace: a mode
1774
+ // switch must NOT inherit the ancestor's palette (color layering is DesignTokenScope's job).
1775
+ const ambient = useContext(DesignSystemThemeContext);
1776
+ const mergedDesignTokenOverrides = useMemo(()=>{
1777
+ const merged = {
1778
+ ...ambient.designTokenOverrides,
1779
+ ...designTokenOverrides
1780
+ };
1781
+ return Object.keys(merged).length > 0 ? merged : undefined;
1782
+ }, [
1783
+ ambient.designTokenOverrides,
1784
+ designTokenOverrides
1785
+ ]);
1786
+ const value = useMemo(()=>({
1772
1787
  isDarkMode,
1773
1788
  semanticColors,
1774
- designTokenOverrides
1775
- },
1789
+ designTokenOverrides: mergedDesignTokenOverrides
1790
+ }), [
1791
+ isDarkMode,
1792
+ semanticColors,
1793
+ mergedDesignTokenOverrides
1794
+ ]);
1795
+ return /*#__PURE__*/ jsx(DesignSystemThemeContext.Provider, {
1796
+ value: value,
1776
1797
  children: children
1777
1798
  });
1778
1799
  };
@@ -1822,7 +1843,7 @@ function semanticColorsToStyle(semanticColors) {
1822
1843
  * surfaces escape the DOM subtree. Consumers use the exported `DesignTokenScope` below (which also
1823
1844
  * feeds `DesignSystemThemeContext` so portals inherit too) — this impl is deliberately not exported.
1824
1845
  */ const DesignTokenScopeImpl = ({ children, overrideTokens, semanticColors, isDarkMode })=>{
1825
- const theme = useTheme();
1846
+ const { theme } = useDesignSystemTheme();
1826
1847
  const scopeTheme = isDarkMode === undefined ? theme : getTheme(isDarkMode);
1827
1848
  const style = useMemo(()=>({
1828
1849
  display: 'contents',
@@ -2139,7 +2160,7 @@ const getMemoizedIconCss$1 = memoize((theme, color)=>({
2139
2160
  ...getIconVariantStyles(theme, color)
2140
2161
  }), (theme, color)=>`${themeMemoKey(theme)}|${color ?? 'undef'}`);
2141
2162
  const Icon = /*#__PURE__*/ forwardRef((props, forwardedRef)=>{
2142
- const { component: Component, dangerouslySetAntdProps, color, style, ...otherProps } = props;
2163
+ const { component: Component, color, style, ...otherProps } = props;
2143
2164
  const { theme } = useDesignSystemTheme();
2144
2165
  const linearGradientId = useUniqueId('ai-linear-gradient');
2145
2166
  const { gradientStart: aiGradientStart, gradientMid: aiGradientMid, gradientEnd: aiGradientEnd } = theme.colors.branded.ai;
@@ -2205,8 +2226,7 @@ const Icon = /*#__PURE__*/ forwardRef((props, forwardedRef)=>{
2205
2226
  style: {
2206
2227
  ...style
2207
2228
  },
2208
- ...otherProps,
2209
- ...dangerouslySetAntdProps
2229
+ ...otherProps
2210
2230
  })
2211
2231
  });
2212
2232
  });
@@ -5546,6 +5566,62 @@ const ColorFillIcon = /*#__PURE__*/ forwardRef((props, forwardedRef)=>{
5546
5566
  });
5547
5567
  ColorFillIcon.displayName = "ColorFillIcon";
5548
5568
 
5569
+ function SvgColorMappingEditIcon(props) {
5570
+ return /*#__PURE__*/ jsx("svg", {
5571
+ xmlns: "http://www.w3.org/2000/svg",
5572
+ width: "1em",
5573
+ height: "1em",
5574
+ fill: "none",
5575
+ viewBox: "0 0 17 17",
5576
+ ...props,
5577
+ children: /*#__PURE__*/ jsx("path", {
5578
+ fill: "currentColor",
5579
+ fillRule: "evenodd",
5580
+ d: "M6.5 8.836a.75.75 0 0 1 .75.75v4.75a.75.75 0 0 1-.75.75H1.75a.75.75 0 0 1-.75-.75v-4.75a.75.75 0 0 1 .75-.75zm-4 4.75h3.25v-3.25H2.5zM14.25 8.836a.75.75 0 0 1 .75.75v4.75a.75.75 0 0 1-.75.75H9.5a.75.75 0 0 1-.75-.75v-4.75a.75.75 0 0 1 .75-.75zm-4 4.75h3.25v-3.25h-3.25zM6.5 1.086a.75.75 0 0 1 .75.75v4.75a.75.75 0 0 1-.75.75H1.75a.75.75 0 0 1-.75-.75v-4.75a.75.75 0 0 1 .75-.75zm-4 4.75h3.25v-3.25H2.5zM12.513.512a1.75 1.75 0 0 1 2.474 0l.586.586a1.75 1.75 0 0 1 0 2.475L12.03 7.116a.75.75 0 0 1-.53.22h-2a.75.75 0 0 1-.75-.75v-2c0-.2.08-.39.22-.53zm1.414 1.061a.25.25 0 0 0-.354 0L10.25 4.896v.94h.94l3.323-3.324a.25.25 0 0 0 0-.353z",
5581
+ clipRule: "evenodd"
5582
+ })
5583
+ });
5584
+ }
5585
+ const ColorMappingEditIcon = /*#__PURE__*/ forwardRef((props, forwardedRef)=>{
5586
+ return /*#__PURE__*/ jsx(Icon, {
5587
+ ref: forwardedRef,
5588
+ ...props,
5589
+ component: SvgColorMappingEditIcon
5590
+ });
5591
+ });
5592
+ ColorMappingEditIcon.displayName = "ColorMappingEditIcon";
5593
+
5594
+ function SvgColorMappingIcon(props) {
5595
+ return /*#__PURE__*/ jsxs("svg", {
5596
+ xmlns: "http://www.w3.org/2000/svg",
5597
+ width: "1em",
5598
+ height: "1em",
5599
+ fill: "none",
5600
+ viewBox: "0 0 16 16",
5601
+ ...props,
5602
+ children: [
5603
+ /*#__PURE__*/ jsx("path", {
5604
+ fill: "currentColor",
5605
+ fillRule: "evenodd",
5606
+ d: "M14.5 8.755a.75.75 0 0 1 .75.75v4.75a.75.75 0 0 1-.75.75H9.75a.75.75 0 0 1-.75-.75v-4.75a.75.75 0 0 1 .75-.75zm-4 4.75h3.25v-3.25H10.5zM6.5 8.75a.75.75 0 0 1 .75.75v4.75a.75.75 0 0 1-.75.75H1.75a.75.75 0 0 1-.75-.75V9.5a.75.75 0 0 1 .75-.75zm-4 4.75h3.25v-3.25H2.5zM6.5 1a.75.75 0 0 1 .75.75V6.5a.75.75 0 0 1-.75.75H1.75A.75.75 0 0 1 1 6.5V1.75A.75.75 0 0 1 1.75 1zm-4 4.75h3.25V2.5H2.5z",
5607
+ clipRule: "evenodd"
5608
+ }),
5609
+ /*#__PURE__*/ jsx("path", {
5610
+ fill: "currentColor",
5611
+ d: "M12.745 3.255H15v1.5h-2.255V7h-1.5V4.755H9v-1.5h2.245V1h1.5z"
5612
+ })
5613
+ ]
5614
+ });
5615
+ }
5616
+ const ColorMappingIcon = /*#__PURE__*/ forwardRef((props, forwardedRef)=>{
5617
+ return /*#__PURE__*/ jsx(Icon, {
5618
+ ref: forwardedRef,
5619
+ ...props,
5620
+ component: SvgColorMappingIcon
5621
+ });
5622
+ });
5623
+ ColorMappingIcon.displayName = "ColorMappingIcon";
5624
+
5549
5625
  function SvgColumnIcon(props) {
5550
5626
  return /*#__PURE__*/ jsx("svg", {
5551
5627
  xmlns: "http://www.w3.org/2000/svg",
@@ -10019,6 +10095,68 @@ const MenuIcon = /*#__PURE__*/ forwardRef((props, forwardedRef)=>{
10019
10095
  });
10020
10096
  MenuIcon.displayName = "MenuIcon";
10021
10097
 
10098
+ function SvgMicrophoneIcon(props) {
10099
+ return /*#__PURE__*/ jsxs("svg", {
10100
+ xmlns: "http://www.w3.org/2000/svg",
10101
+ width: "1em",
10102
+ height: "1em",
10103
+ fill: "none",
10104
+ viewBox: "0 0 16 16",
10105
+ ...props,
10106
+ children: [
10107
+ /*#__PURE__*/ jsx("path", {
10108
+ fill: "currentColor",
10109
+ d: "M3.5 8a4.5 4.5 0 1 0 9 0H14c0 3.06-2.29 5.582-5.25 5.951V16h-1.5v-2.049A6 6 0 0 1 2 8z"
10110
+ }),
10111
+ /*#__PURE__*/ jsx("path", {
10112
+ fill: "currentColor",
10113
+ fillRule: "evenodd",
10114
+ d: "M8 0a3 3 0 0 1 3 3v5a3 3 0 0 1-6 0V3a3 3 0 0 1 3-3m0 1.5A1.5 1.5 0 0 0 6.5 3v5a1.5 1.5 0 1 0 3 0V3A1.5 1.5 0 0 0 8 1.5",
10115
+ clipRule: "evenodd"
10116
+ })
10117
+ ]
10118
+ });
10119
+ }
10120
+ const MicrophoneIcon = /*#__PURE__*/ forwardRef((props, forwardedRef)=>{
10121
+ return /*#__PURE__*/ jsx(Icon, {
10122
+ ref: forwardedRef,
10123
+ ...props,
10124
+ component: SvgMicrophoneIcon
10125
+ });
10126
+ });
10127
+ MicrophoneIcon.displayName = "MicrophoneIcon";
10128
+
10129
+ function SvgMicrophoneOffIcon(props) {
10130
+ return /*#__PURE__*/ jsxs("svg", {
10131
+ xmlns: "http://www.w3.org/2000/svg",
10132
+ width: "1em",
10133
+ height: "1em",
10134
+ fill: "none",
10135
+ viewBox: "0 0 16 16",
10136
+ ...props,
10137
+ children: [
10138
+ /*#__PURE__*/ jsx("path", {
10139
+ fill: "currentColor",
10140
+ fillRule: "evenodd",
10141
+ d: "m15.03 13.97-1.06 1.06-2.293-2.293a5.97 5.97 0 0 1-2.927 1.214V16h-1.5v-2.049A6 6 0 0 1 2 8h1.5a4.5 4.5 0 0 0 7.105 3.666l-1.084-1.084A2.97 2.97 0 0 1 8 11a3 3 0 0 1-3-3V6.06L.97 2.03 2.03.97zM6.5 8a1.5 1.5 0 0 0 1.888 1.448L6.5 7.561z",
10142
+ clipRule: "evenodd"
10143
+ }),
10144
+ /*#__PURE__*/ jsx("path", {
10145
+ fill: "currentColor",
10146
+ d: "M14 8c0 .864-.184 1.685-.513 2.427L12.32 9.259c.117-.4.181-.822.181-1.259zM8 0a3 3 0 0 1 3 3v4.94l-1.5-1.5V3a1.5 1.5 0 1 0-3 0v.44L5.144 2.082A3 3 0 0 1 8 0"
10147
+ })
10148
+ ]
10149
+ });
10150
+ }
10151
+ const MicrophoneOffIcon = /*#__PURE__*/ forwardRef((props, forwardedRef)=>{
10152
+ return /*#__PURE__*/ jsx(Icon, {
10153
+ ref: forwardedRef,
10154
+ ...props,
10155
+ component: SvgMicrophoneOffIcon
10156
+ });
10157
+ });
10158
+ MicrophoneOffIcon.displayName = "MicrophoneOffIcon";
10159
+
10022
10160
  function SvgMinusCircleFillIcon(props) {
10023
10161
  return /*#__PURE__*/ jsx("svg", {
10024
10162
  xmlns: "http://www.w3.org/2000/svg",
@@ -10609,6 +10747,35 @@ const OntologyIcon = /*#__PURE__*/ forwardRef((props, forwardedRef)=>{
10609
10747
  });
10610
10748
  OntologyIcon.displayName = "OntologyIcon";
10611
10749
 
10750
+ function SvgOperatorIcon(props) {
10751
+ return /*#__PURE__*/ jsxs("svg", {
10752
+ xmlns: "http://www.w3.org/2000/svg",
10753
+ width: "1em",
10754
+ height: "1em",
10755
+ fill: "none",
10756
+ viewBox: "0 0 16 16",
10757
+ ...props,
10758
+ children: [
10759
+ /*#__PURE__*/ jsx("path", {
10760
+ fill: "currentColor",
10761
+ d: "M12.75 11.25H15v1.5h-2.25V15h-1.5v-2.25H9v-1.5h2.25V9h1.5z"
10762
+ }),
10763
+ /*#__PURE__*/ jsx("path", {
10764
+ fill: "currentColor",
10765
+ d: "M15.25 2a.75.75 0 0 1 .75.75V8.5h-1.5v-5h-13v9h6V14H.75a.75.75 0 0 1-.75-.75V2.75A.75.75 0 0 1 .75 2z"
10766
+ })
10767
+ ]
10768
+ });
10769
+ }
10770
+ const OperatorIcon = /*#__PURE__*/ forwardRef((props, forwardedRef)=>{
10771
+ return /*#__PURE__*/ jsx(Icon, {
10772
+ ref: forwardedRef,
10773
+ ...props,
10774
+ component: SvgOperatorIcon
10775
+ });
10776
+ });
10777
+ OperatorIcon.displayName = "OperatorIcon";
10778
+
10612
10779
  function SvgOverflowHorizontalIcon(props) {
10613
10780
  return /*#__PURE__*/ jsx("svg", {
10614
10781
  xmlns: "http://www.w3.org/2000/svg",
@@ -15641,6 +15808,29 @@ const VisibleOffIcon = /*#__PURE__*/ forwardRef((props, forwardedRef)=>{
15641
15808
  });
15642
15809
  VisibleOffIcon.displayName = "VisibleOffIcon";
15643
15810
 
15811
+ function SvgVoiceModeIcon(props) {
15812
+ return /*#__PURE__*/ jsx("svg", {
15813
+ xmlns: "http://www.w3.org/2000/svg",
15814
+ width: "1em",
15815
+ height: "1em",
15816
+ fill: "none",
15817
+ viewBox: "0 0 16 16",
15818
+ ...props,
15819
+ children: /*#__PURE__*/ jsx("path", {
15820
+ fill: "currentColor",
15821
+ d: "M8.5 15H7V1h1.5zM5.5 12H4V4h1.5zM14.5 12H13V4h1.5zM2.5 10H1V6h1.5zM11.5 10H10V6h1.5z"
15822
+ })
15823
+ });
15824
+ }
15825
+ const VoiceModeIcon = /*#__PURE__*/ forwardRef((props, forwardedRef)=>{
15826
+ return /*#__PURE__*/ jsx(Icon, {
15827
+ ref: forwardedRef,
15828
+ ...props,
15829
+ component: SvgVoiceModeIcon
15830
+ });
15831
+ });
15832
+ VoiceModeIcon.displayName = "VoiceModeIcon";
15833
+
15644
15834
  function SvgWarningFillIcon(props) {
15645
15835
  return /*#__PURE__*/ jsx("svg", {
15646
15836
  xmlns: "http://www.w3.org/2000/svg",
@@ -17145,7 +17335,7 @@ var ShapeTokens = /*#__PURE__*/ function(ShapeTokens) {
17145
17335
  ShapeTokens["ACTION_BORDER_RADIUS"] = "--action-border-radius";
17146
17336
  ShapeTokens["INPUT_BORDER_RADIUS"] = "--input-border-radius";
17147
17337
  ShapeTokens["LIST_ITEM_BORDER_RADIUS"] = "--list-item-border-radius";
17148
- ShapeTokens["POPOVER_BORDER_RADIUS"] = "--popover-border-radius";
17338
+ ShapeTokens["POPUP_BORDER_RADIUS"] = "--popup-border-radius";
17149
17339
  ShapeTokens["INFO_CONTAINER_BORDER_RADIUS"] = "--info-container-border-radius";
17150
17340
  return ShapeTokens;
17151
17341
  }({});
@@ -17156,7 +17346,7 @@ const SMALL_BUTTON_HEIGHT$2 = 24;
17156
17346
  // Hoisted to module level so the default reference is stable across renders and instances.
17157
17347
  // Without this, the default `analyticsEvents = [...]` literal would be a fresh array on every
17158
17348
  // render, propagating ref-instability into useDesignSystemEventComponentCallbacks.
17159
- const DEFAULT_ANALYTICS_EVENTS$6 = [
17349
+ const DEFAULT_ANALYTICS_EVENTS$7 = [
17160
17350
  DesignSystemEventProviderAnalyticsEventTypes.OnClick,
17161
17351
  DesignSystemEventProviderAnalyticsEventTypes.OnView
17162
17352
  ];
@@ -17484,12 +17674,12 @@ const getButtonEmotionStyles = ({ theme, classNamePrefix, loading, withIcon, onl
17484
17674
  const importantTypeStyles = importantify(typeStyles);
17485
17675
  return /*#__PURE__*/ css(importantStyles, importantTypeStyles);
17486
17676
  };
17487
- const Button$1 = /* #__PURE__ */ (()=>{
17677
+ const AntDButtonInternal = /* #__PURE__ */ (()=>{
17488
17678
  const Button = /*#__PURE__*/ forwardRef(function Button(// Keep size out of props passed to AntD to make deprecation and eventual removal have 0 impact
17489
17679
  { children, size, type, loading: loadingProp, loadingDescription, endIcon, onClick, dangerouslySetForceIconStyles, dangerouslyUseFocusPseudoClass, dangerouslyAppendWrapperCss, componentId, analyticsEvents, shouldStartInteraction, ...props }, ref) {
17490
17680
  const formContext = useFormContext();
17491
17681
  const { theme, classNamePrefix } = useDesignSystemTheme();
17492
- const memoizedAnalyticsEvents = analyticsEvents ?? DEFAULT_ANALYTICS_EVENTS$6;
17682
+ const memoizedAnalyticsEvents = analyticsEvents ?? DEFAULT_ANALYTICS_EVENTS$7;
17493
17683
  const eventContext = useDesignSystemEventComponentCallbacks({
17494
17684
  componentType: DesignSystemEventProviderComponentTypes.Button,
17495
17685
  componentId,
@@ -17608,6 +17798,214 @@ const Button$1 = /* #__PURE__ */ (()=>{
17608
17798
  return Button;
17609
17799
  })();
17610
17800
 
17801
+ // Stable module-level default so useDesignSystemEventComponentCallbacks isn't fed a fresh array each render.
17802
+ const DEFAULT_ANALYTICS_EVENTS$6 = [
17803
+ DesignSystemEventProviderAnalyticsEventTypes.OnClick,
17804
+ DesignSystemEventProviderAnalyticsEventTypes.OnView
17805
+ ];
17806
+ // href renders a real <a>, so the forwarded ref can be either element — the public Button gate keeps
17807
+ // the HTMLButtonElement type and widening to the union here is assignable to it.
17808
+ const NativeButton = /*#__PURE__*/ forwardRef(function NativeButton({ type, size, danger, block, icon, endIcon, href, htmlType = 'button', loading: loadingProp, loadingDescription, disabled, children, className, style, onClick, componentId, analyticsEvents, shouldStartInteraction, dangerouslyAppendWrapperCss, dangerouslyUseFocusPseudoClass, dangerouslySetForceIconStyles, // Pull aria-disabled out of the passthrough so the value we compute below wins over {...props}
17809
+ // rather than being clobbered by it — while still honoring what the caller passed (see below).
17810
+ 'aria-disabled': ariaDisabledProp, ...props }, ref) {
17811
+ const formContext = useFormContext();
17812
+ const memoizedAnalyticsEvents = analyticsEvents ?? DEFAULT_ANALYTICS_EVENTS$6;
17813
+ const eventContext = useDesignSystemEventComponentCallbacks({
17814
+ componentType: DesignSystemEventProviderComponentTypes.Button,
17815
+ componentId,
17816
+ analyticsEvents: memoizedAnalyticsEvents,
17817
+ shouldStartInteraction,
17818
+ // A submit button is not the interaction subject — the form submission is.
17819
+ isInteractionSubject: !(htmlType === 'submit' && formContext.componentId)
17820
+ });
17821
+ const { elementRef: buttonRef } = useNotifyOnFirstView({
17822
+ onView: eventContext.onView
17823
+ });
17824
+ // Forward the ref to whichever element actually renders (button or anchor) — no HTMLButtonElement cast.
17825
+ const mergedRef = useMergeRefs([
17826
+ ref,
17827
+ buttonRef
17828
+ ]);
17829
+ const loading = Boolean(loadingProp ?? (htmlType === 'submit' && formContext.isSubmitting));
17830
+ const iconOnly = Boolean((icon || endIcon) && !children);
17831
+ // A content-less button (no icon, no end icon, no children) draws no visible box; consumers use
17832
+ // such empty (usually disabled) buttons as layout spacers (e.g. an invoice table's expand column).
17833
+ // Mark it so the styles stay borderless/transparent; `.db-btn-empty` only zeroes bg/border, so a
17834
+ // loading spinner still renders.
17835
+ const isEmpty = !icon && !endIcon && !children;
17836
+ const forceIconStyles = Boolean(dangerouslySetForceIconStyles);
17837
+ // Render a real <a> whenever href is set and enabled (including while loading — the loading click
17838
+ // is neutralized in handleClick); a disabled link falls back to a <button>.
17839
+ const renderAnchor = Boolean(href) && !disabled;
17840
+ const handleClick = useCallback((event)=>{
17841
+ if (loading) {
17842
+ // Skip the React click handlers while loading. For a link, also block the browser's default
17843
+ // navigation so a loading link is inert (parity with the legacy button, where AntD
17844
+ // preventDefaults loading clicks). A loading `htmlType="submit"` button intentionally still
17845
+ // submits its form (forms rely on this), so only the anchor's default is neutralized —
17846
+ // `preventDefault` for the submit case would suppress that submission.
17847
+ if (renderAnchor) {
17848
+ event.preventDefault();
17849
+ }
17850
+ return;
17851
+ }
17852
+ eventContext.onClick(event);
17853
+ if (htmlType === 'submit' && formContext.formRef?.current) {
17854
+ event.preventDefault();
17855
+ formContext.formRef.current.requestSubmit();
17856
+ }
17857
+ onClick?.(event);
17858
+ }, [
17859
+ loading,
17860
+ renderAnchor,
17861
+ htmlType,
17862
+ formContext.formRef,
17863
+ eventContext,
17864
+ onClick
17865
+ ]);
17866
+ // Inherits the `--db-color-*` scope (theme-class + consumer override) from the DesignSystemProvider
17867
+ // wrapper; no self-scoped theme class, so a consumer override set on that wrapper reaches here.
17868
+ const rootClassName = classnames('db-btn', {
17869
+ 'db-btn-primary': type === 'primary',
17870
+ 'db-btn-link': type === 'link',
17871
+ 'db-btn-tertiary': type === 'tertiary',
17872
+ // Positive marker for the default (secondary) variant, i.e. no `type` at all. The icon-greying
17873
+ // rules key on this rather than negating the variant classes: a Radix `*.Trigger asChild` can
17874
+ // inject a bogus `type="button"` onto the Button, which is not a real variant. Gating icon
17875
+ // greying on `!type` means a truthy `type` (even "button") leaves the glyph at the text color
17876
+ // (an injected `type` is truthy → not default).
17877
+ 'db-btn-default': !type,
17878
+ 'db-btn-danger': Boolean(danger),
17879
+ 'db-btn-small': size === 'small',
17880
+ 'db-btn-icon-only': iconOnly,
17881
+ 'db-btn-empty': isEmpty,
17882
+ 'db-btn-force-icon': forceIconStyles,
17883
+ 'db-btn-full-width': Boolean(block),
17884
+ 'db-btn-loading': loading,
17885
+ // While loading with a leading icon, reserve the icon's width so the button doesn't shrink.
17886
+ 'db-btn-loading-with-icon': loading && Boolean(icon),
17887
+ 'db-btn-use-focus-pseudo-class': Boolean(dangerouslyUseFocusPseudoClass)
17888
+ }, className);
17889
+ // Expose loading (and disabled) as disabled to assistive tech without the disabled-grey visuals a
17890
+ // real `disabled` attribute would force — the button keeps its variant color + spinner while loading.
17891
+ // Also honor a caller-provided aria-disabled (the "soft-disable" pattern: the button stays
17892
+ // focusable + clickable, the caller guards its own onClick so a tooltip still fires, and the
17893
+ // caller's `&[aria-disabled="true"]` styling applies). An explicit `false` is preserved, since
17894
+ // callers/tests assert `aria-disabled="false"` on the enabled state.
17895
+ const ariaDisabled = disabled || loading || ariaDisabledProp === true ? true : ariaDisabledProp;
17896
+ // Render the leading icon directly (not wrapped) so it stays the button's direct `.anticon` child,
17897
+ // so DOM-structure selectors (e.g. the Table icon-only row-action reveal,
17898
+ // `button:has(> span.anticon[role="img"]:only-child)`) keep matching. Same for the loading spinner.
17899
+ // The CSS icon rules target `.db-btn > .anticon` so they only style real icon glyphs — a non-glyph
17900
+ // element passed as `icon` (e.g. a Spinner) keeps its own sizing — and out-specify AntD's global
17901
+ // `.anticon` base rule.
17902
+ const leading = loading ? /*#__PURE__*/ jsx(Spinner, {
17903
+ className: "db-btn-spinner",
17904
+ animationDuration: 8,
17905
+ inheritColor: true,
17906
+ label: "loading",
17907
+ "aria-label": "loading",
17908
+ // oxlint-disable-next-line @databricks/no-dynamic-property-value -- DUBOIS INTERNAL EXEMPTION exempt:b7289367-ddfb-4cf6-b8d1-22b27cdff2d2
17909
+ loadingDescription: loadingDescription ?? componentId
17910
+ }) : icon ? icon : null;
17911
+ let content = null;
17912
+ if (children !== undefined && children !== null && children !== false) {
17913
+ // Hide the content inline while loading (not just via the CSS class) so it leaves the
17914
+ // accessibility tree in every environment — jsdom doesn't apply stylesheet CSS, so the button's
17915
+ // accessible name stays "loading" rather than "loading <label>".
17916
+ content = /*#__PURE__*/ jsxs("span", {
17917
+ className: "db-btn-content",
17918
+ style: {
17919
+ visibility: loading ? 'hidden' : undefined,
17920
+ ...dangerouslyAppendWrapperCss
17921
+ },
17922
+ children: [
17923
+ children,
17924
+ endIcon && /*#__PURE__*/ jsx("span", {
17925
+ className: "db-btn-end-icon",
17926
+ children: endIcon
17927
+ })
17928
+ ]
17929
+ });
17930
+ }
17931
+ // endIcon renders only alongside children, matching the legacy button.
17932
+ // Render a real anchor when it acts as an enabled, non-loading link; otherwise a native button.
17933
+ if (renderAnchor) {
17934
+ return /*#__PURE__*/ jsxs("a", {
17935
+ ...addDebugOutlineIfEnabled(),
17936
+ ...props,
17937
+ ref: mergedRef,
17938
+ href: href,
17939
+ "aria-disabled": ariaDisabled,
17940
+ className: rootClassName,
17941
+ style: style,
17942
+ onClick: handleClick,
17943
+ ...eventContext.dataComponentProps,
17944
+ children: [
17945
+ leading,
17946
+ content
17947
+ ]
17948
+ });
17949
+ }
17950
+ return /*#__PURE__*/ jsxs("button", {
17951
+ ...addDebugOutlineIfEnabled(),
17952
+ ...props,
17953
+ ref: mergedRef,
17954
+ type: htmlType,
17955
+ disabled: disabled,
17956
+ "aria-disabled": ariaDisabled,
17957
+ className: rootClassName,
17958
+ style: style,
17959
+ onClick: handleClick,
17960
+ ...eventContext.dataComponentProps,
17961
+ children: [
17962
+ leading,
17963
+ content
17964
+ ]
17965
+ });
17966
+ });
17967
+
17968
+ // Public Button selects between the native (plain-DOM, token-driven) implementation and the legacy
17969
+ // implementation on the `databricks.fe.designsystem.useNativeButton` server-side flag, default off.
17970
+ // serverSideSafe resolves synchronously at render, so the choice is stable from first paint.
17971
+ const Button$1 = /* #__PURE__ */ (()=>{
17972
+ const Button = /*#__PURE__*/ forwardRef(function Button({ useNativeButtonOverride, ...props }, ref) {
17973
+ const useNativeButton = useNativeButtonOverride ?? serverSideSafe('databricks.fe.designsystem.useNativeButton', false);
17974
+ if (useNativeButton) {
17975
+ return /*#__PURE__*/ jsx(NativeButton, {
17976
+ ...props,
17977
+ ref: ref
17978
+ });
17979
+ }
17980
+ return /*#__PURE__*/ jsx(AntDButtonInternal, {
17981
+ ...props,
17982
+ ref: ref
17983
+ });
17984
+ });
17985
+ // The default path is the legacy Ant-backed button, so keep the marker Ant wrappers (e.g. Tooltip)
17986
+ // read to identify it — preserving pre-split behavior while the flag is off.
17987
+ // See: https://github.com/ant-design/ant-design/blob/6dd39c1f89b4d6632e6ed022ff1bc275ca1e0f1f/components/button/button.tsx#L291
17988
+ Button.__ANT_BUTTON = true;
17989
+ return Button;
17990
+ })();
17991
+
17992
+ /**
17993
+ * Emotion selector that matches a Du Bois button by BOTH its legacy AntD-prefixed class
17994
+ * (`.<clsNamePrefix>-btn…`) and the NativeButton class (`.db-btn…`). Style overrides keyed off the
17995
+ * button class must match `.db-btn` too, so they survive the migration off the AntD-prefixed
17996
+ * `Button` onto `NativeButton`.
17997
+ *
17998
+ * @param clsNamePrefix theme class prefix, e.g. `classNamePrefix` from `useDesignSystemTheme()`.
17999
+ * @param suffix raw selector fragment appended after `-btn` on each class — e.g. `'-primary'`,
18000
+ * `'-icon-only'`, `':first-child'`, `'[disabled]'`, `' > span'`, or `''` for none. Include the
18001
+ * leading `-` yourself.
18002
+ * @param prefix combinator/anchor prepended before each class — pass it explicitly so the call reads
18003
+ * at a glance: `'&'` for a self-target selector (`&.…-btn`, when the `css` sits on the Button
18004
+ * element itself), `''` for a bare descendant (`.…-btn`), `'& > '` for a direct child, `'& '` for
18005
+ * any descendant, or a fuller container prefix (e.g. `` `.${prefix}-dropdown-button > ` ``) when the
18006
+ * button is nested deeper.
18007
+ */ const getBtnClassName = (clsNamePrefix, suffix, prefix)=>`${prefix}.${clsNamePrefix}-btn${suffix}, ${prefix}.db-btn${suffix}`;
18008
+
17611
18009
  const DRAWER_ZINDEX_OVERLAY_OFFSET = 1;
17612
18010
  const DRAWER_ZINDEX_CONTENT_OFFSET = DRAWER_ZINDEX_OVERLAY_OFFSET + 1;
17613
18011
  /** Whether the surrounding subtree is inside an open Drawer. */ const DrawerContext = /*#__PURE__*/ createContext({
@@ -17863,7 +18261,7 @@ function getParagraphEmotionStyles(theme, clsPrefix, props) {
17863
18261
  '& .anticon': {
17864
18262
  verticalAlign: 'text-bottom'
17865
18263
  },
17866
- [`& .${clsPrefix}-btn-link`]: {
18264
+ [`${getBtnClassName(clsPrefix, '-link', '& ')}, ${getBtnClassName(clsPrefix, '-tertiary', '& ')}`]: {
17867
18265
  verticalAlign: 'baseline !important'
17868
18266
  }
17869
18267
  }, props.disabled && {
@@ -18210,7 +18608,9 @@ const wrapperStyles = /*#__PURE__*/ css({
18210
18608
  width: '100%',
18211
18609
  height: '100%'
18212
18610
  });
18213
- const overlayStyles = (theme, zIndex, maskStyle)=>/*#__PURE__*/ css({
18611
+ const overlayStyles = (theme, zIndex, maskStyle)=>// eslint-disable-next-line @typescript-eslint/ban-ts-comment
18612
+ // @ts-ignore [FEINF-3177] TODO: fix to work with React 18 types
18613
+ /*#__PURE__*/ css({
18214
18614
  position: 'fixed',
18215
18615
  inset: 0,
18216
18616
  backgroundColor: theme.colors.overlayOverlay,
@@ -18223,6 +18623,8 @@ const overlayStyles = (theme, zIndex, maskStyle)=>/*#__PURE__*/ css({
18223
18623
  });
18224
18624
  const modalContentStyles = (theme, maxedOutHeight)=>{
18225
18625
  const MODAL_PADDING = theme.spacing.lg;
18626
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
18627
+ // @ts-ignore [FEINF-3177] TODO: fix to work with React 18 types
18226
18628
  return /*#__PURE__*/ css({
18227
18629
  backgroundColor: theme.colors.backgroundPrimary,
18228
18630
  maxHeight: '90vh',
@@ -18323,7 +18725,7 @@ const modalFooterStyles = (theme, prefixCls, hasCustomFooter)=>{
18323
18725
  paddingLeft: MODAL_PADDING,
18324
18726
  paddingRight: MODAL_PADDING,
18325
18727
  marginTop: 'auto',
18326
- [`.${prefixCls}-dropdown-button > .${prefixCls}-btn:nth-of-type(2)`]: {
18728
+ [getBtnClassName(prefixCls, ':nth-of-type(2)', `.${prefixCls}-dropdown-button > `)]: {
18327
18729
  marginLeft: -1
18328
18730
  }
18329
18731
  });
@@ -18926,12 +19328,14 @@ const CONSTANTS$1 = {
18926
19328
  return 2;
18927
19329
  }
18928
19330
  };
18929
- const popoverContentStylesResolver = memoize((theme)=>({
19331
+ const popoverContentStylesResolver = memoize(// eslint-disable-next-line @typescript-eslint/ban-ts-comment
19332
+ // @ts-ignore [FEINF-3177] TODO: fix to work with React 18 types
19333
+ (theme)=>({
18930
19334
  backgroundColor: theme.colors.backgroundPrimary,
18931
19335
  color: theme.colors.textPrimary,
18932
19336
  lineHeight: theme.typography.lineHeightBase,
18933
19337
  border: `1px solid ${theme.colors.border}`,
18934
- borderRadius: token(ShapeTokens.POPOVER_BORDER_RADIUS, theme.borders.borderRadiusSm),
19338
+ borderRadius: token(ShapeTokens.POPUP_BORDER_RADIUS, theme.borders.borderRadiusSm),
18935
19339
  padding: `${theme.spacing.sm}px`,
18936
19340
  boxShadow: theme.shadows.lg,
18937
19341
  zIndex: theme.options.zIndexBase + 30,
@@ -19030,20 +19434,16 @@ const getTooltipStyles = (theme, clsPrefix)=>{
19030
19434
  // component is used outside of universe alongside a Radix version that still has the underlying bug.
19031
19435
  const dataStateAttr = 'tooltip-data-state';
19032
19436
  const classTypography = `.${clsPrefix}-typography`;
19033
- const { isDarkMode } = theme;
19034
- const linkColor = isDarkMode ? theme.colors.blue600 : theme.colors.blue500;
19035
- const linkActiveColor = isDarkMode ? theme.colors.blue800 : theme.colors.blue300;
19036
- const linkHoverColor = isDarkMode ? theme.colors.blue700 : theme.colors.blue400;
19037
19437
  return {
19038
19438
  content: {
19039
- backgroundColor: theme.colors.tooltipBackgroundTooltip,
19040
- color: theme.colors.tooltipTextTooltip,
19041
- borderRadius: token(ShapeTokens.POPOVER_BORDER_RADIUS, theme.borders.borderRadiusSm),
19042
- fontSize: theme.typography.fontSizeMd,
19043
- padding: `${theme.spacing.xs}px ${theme.spacing.sm}px`,
19439
+ backgroundColor: 'var(--db-tooltip-surface)',
19440
+ color: 'var(--db-tooltip-text)',
19441
+ borderRadius: 'var(--db-tooltip-border-radius)',
19442
+ fontSize: 'var(--db-tooltip-font-size)',
19443
+ padding: 'var(--db-tooltip-spacing-vertical) var(--db-tooltip-spacing-horizontal)',
19044
19444
  lineHeight: theme.typography.lineHeightLg,
19045
- fontWeight: theme.typography.typographyRegularFontWeight,
19046
- boxShadow: theme.shadows.lg,
19445
+ fontWeight: 'var(--db-tooltip-font-weight)',
19446
+ boxShadow: 'var(--db-tooltip-shadow)',
19047
19447
  wordWrap: 'break-word',
19048
19448
  whiteSpace: 'normal',
19049
19449
  zIndex: theme.options.zIndexBase + 70,
@@ -19062,27 +19462,27 @@ const getTooltipStyles = (theme, clsPrefix)=>{
19062
19462
  },
19063
19463
  [`& a${classTypography}`]: {
19064
19464
  '&, :focus': {
19065
- color: linkColor,
19465
+ color: 'var(--db-tooltip-link-text)',
19066
19466
  '.anticon': {
19067
- color: linkColor
19467
+ color: 'var(--db-tooltip-link-text)'
19068
19468
  }
19069
19469
  },
19070
19470
  ':active': {
19071
- color: linkActiveColor,
19471
+ color: 'var(--db-tooltip-link-text-press)',
19072
19472
  '.anticon': {
19073
- color: linkActiveColor
19473
+ color: 'var(--db-tooltip-link-text-press)'
19074
19474
  }
19075
19475
  },
19076
19476
  ':hover': {
19077
- color: linkHoverColor,
19477
+ color: 'var(--db-tooltip-link-text-hover)',
19078
19478
  '.anticon': {
19079
- color: linkHoverColor
19479
+ color: 'var(--db-tooltip-link-text-hover)'
19080
19480
  }
19081
19481
  }
19082
19482
  }
19083
19483
  },
19084
19484
  arrow: {
19085
- fill: theme.colors.tooltipBackgroundTooltip,
19485
+ fill: 'var(--db-tooltip-surface)',
19086
19486
  zIndex: theme.options.zIndexBase + 70,
19087
19487
  visibility: 'visible'
19088
19488
  }
@@ -19233,56 +19633,6 @@ const InfoTooltip = ({ content, iconTitle = 'More information', ...props })=>{
19233
19633
  });
19234
19634
  };
19235
19635
 
19236
- const OverflowPopover = ({ items, renderLabel, tooltipText, ariaLabel = 'More items', ...props })=>{
19237
- const { theme } = useDesignSystemTheme();
19238
- const [showTooltip, setShowTooltip] = useState(true);
19239
- const label = `+${items.length}`;
19240
- let trigger = /*#__PURE__*/ jsx("span", {
19241
- css: {
19242
- lineHeight: 0
19243
- },
19244
- ...addDebugOutlineIfEnabled(),
19245
- children: /*#__PURE__*/ jsx(Trigger$5, {
19246
- asChild: true,
19247
- children: /*#__PURE__*/ jsx(Button$1, {
19248
- componentId: "something",
19249
- type: "link",
19250
- children: renderLabel ? renderLabel(label) : label
19251
- })
19252
- })
19253
- });
19254
- if (showTooltip) {
19255
- trigger = /*#__PURE__*/ jsx(Tooltip, {
19256
- componentId: "design-system.overflow-popover.tooltip",
19257
- content: tooltipText || 'See more items',
19258
- children: trigger
19259
- });
19260
- }
19261
- return /*#__PURE__*/ jsxs(Root$b, {
19262
- componentId: "codegen_design-system_src_design-system_overflow_overflowpopover.tsx_37",
19263
- onOpenChange: (open)=>setShowTooltip(!open),
19264
- children: [
19265
- trigger,
19266
- /*#__PURE__*/ jsx(Content$7, {
19267
- align: "start",
19268
- "aria-label": ariaLabel,
19269
- ...props,
19270
- ...addDebugOutlineIfEnabled(),
19271
- children: /*#__PURE__*/ jsx("div", {
19272
- css: {
19273
- display: 'flex',
19274
- flexDirection: 'column',
19275
- gap: theme.spacing.xs
19276
- },
19277
- children: items.map((item, index)=>/*#__PURE__*/ jsx("div", {
19278
- children: item
19279
- }, `overflow-${index}`))
19280
- })
19281
- })
19282
- ]
19283
- });
19284
- };
19285
-
19286
19636
  const { Text, Paragraph: Paragraph$1 } = Typography;
19287
19637
  const BANNER_MIN_HEIGHT = 68;
19288
19638
  // Max height will allow 2 lines of description (3 lines total)
@@ -20051,6 +20401,8 @@ const getWrapperStyle = ({ clsPrefix, theme, wrapperStyle = {} })=>{
20051
20401
  },
20052
20402
  ...wrapperStyle
20053
20403
  };
20404
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
20405
+ // @ts-ignore [FEINF-3177] TODO: fix to work with React 18 types
20054
20406
  return /*#__PURE__*/ css(styles);
20055
20407
  };
20056
20408
  const AntDCheckboxInternal = /*#__PURE__*/ forwardRef(function Checkbox({ isChecked, onChange, children, isDisabled = false, style, wrapperStyle, dangerouslySetAntdProps, className, componentId, analyticsEvents, ...restProps }, ref) {
@@ -21134,11 +21486,15 @@ const dropdownContentStyles = (theme)=>({
21134
21486
  color: theme.colors.textPrimary,
21135
21487
  lineHeight: theme.typography.lineHeightBase,
21136
21488
  border: `1px solid ${theme.colors.border}`,
21137
- borderRadius: token(ShapeTokens.POPOVER_BORDER_RADIUS, theme.borders.borderRadiusSm),
21489
+ borderRadius: token(ShapeTokens.POPUP_BORDER_RADIUS, theme.borders.borderRadiusSm),
21138
21490
  padding: `${theme.spacing.xs}px 0`,
21139
21491
  boxShadow: theme.shadows.lg,
21492
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
21493
+ // @ts-ignore [FEINF-3177] TODO: fix to work with React 18 types
21140
21494
  userSelect: 'none',
21141
21495
  // Allow for scrolling within the dropdown when viewport is too small
21496
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
21497
+ // @ts-ignore [FEINF-3177] TODO: fix to work with React 18 types
21142
21498
  overflowY: 'auto',
21143
21499
  maxHeight: 'var(--radix-dropdown-menu-content-available-height)',
21144
21500
  ...getDarkModePortalStyles(theme),
@@ -24733,6 +25089,8 @@ const dialogComboboxLookAheadKeyDown = (e, setLookAhead, lookAhead)=>{
24733
25089
  };
24734
25090
 
24735
25091
  const getComboboxContentWrapperStyles = (theme, { maxHeight = '100vh', maxWidth = '100vw', minHeight = 0, minWidth = 0, width })=>{
25092
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
25093
+ // @ts-ignore [FEINF-3177] TODO: fix to work with React 18 types
24736
25094
  return /*#__PURE__*/ css({
24737
25095
  maxHeight,
24738
25096
  maxWidth,
@@ -25264,7 +25622,7 @@ const DialogComboboxOptionListCheckboxItem = DuboisDialogComboboxOptionListCheck
25264
25622
 
25265
25623
  const getInputGroupStyling = (clsPrefix, theme, buttonSide)=>{
25266
25624
  const inputClass = `.${clsPrefix}-input`;
25267
- const buttonClass = `.${clsPrefix}-btn`;
25625
+ const groupButtons = (suffix = '')=>getBtnClassName(clsPrefix, suffix, '& > ');
25268
25626
  const buttonOnRight = buttonSide === 'right';
25269
25627
  return /*#__PURE__*/ css({
25270
25628
  display: 'inline-flex !important',
@@ -25293,7 +25651,7 @@ const getInputGroupStyling = (clsPrefix, theme, buttonSide)=>{
25293
25651
  marginRight: 0
25294
25652
  }
25295
25653
  },
25296
- [`& > ${buttonClass}`]: {
25654
+ [groupButtons()]: {
25297
25655
  boxShadow: 'none !important',
25298
25656
  // Square off the inner edge (the edge adjacent to the input).
25299
25657
  ...buttonOnRight ? {
@@ -25311,13 +25669,20 @@ const getInputGroupStyling = (clsPrefix, theme, buttonSide)=>{
25311
25669
  }
25312
25670
  }
25313
25671
  },
25314
- [`& > ${buttonClass} > span`]: {
25672
+ [groupButtons(' > span')]: {
25315
25673
  verticalAlign: 'middle'
25316
25674
  },
25317
- [`& > ${buttonClass}:disabled, & > ${buttonClass}:disabled:hover`]: {
25675
+ [`${groupButtons(':disabled')}, ${groupButtons(':disabled:hover')}`]: {
25318
25676
  borderLeft: `1px solid ${theme.colors.actionDisabledBorder} !important`,
25319
25677
  backgroundColor: `${theme.colors.actionDisabledBackground} !important`,
25320
25678
  color: `${theme.colors.actionDisabledText} !important`
25679
+ },
25680
+ // Filled variants (primary/danger) keep their stronger disabled fill and white text inside the
25681
+ // group rather than the greyed-out default disabled treatment above; placed after that rule so it
25682
+ // wins at equal specificity by source order.
25683
+ [`& > .db-btn-primary:disabled, & > .db-btn-primary:disabled:hover, & > .db-btn-danger:disabled, & > .db-btn-danger:disabled:hover`]: {
25684
+ backgroundColor: `${theme.colors.actionDisabledBorder} !important`,
25685
+ color: `${theme.colors.actionPrimaryTextDefault} !important`
25321
25686
  }
25322
25687
  });
25323
25688
  };
@@ -26739,6 +27104,8 @@ function getDropdownStyles(clsPrefix, theme) {
26739
27104
  const classItemActive = `.${clsPrefix}-item-option-active`;
26740
27105
  const classItemSelected = `.${clsPrefix}-item-option-selected`;
26741
27106
  const classItemState = `.${clsPrefix}-item-option-state`;
27107
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
27108
+ // @ts-ignore [FEINF-3177] TODO: fix to work with React 18 types
26742
27109
  const styles = {
26743
27110
  borderColor: theme.colors.border,
26744
27111
  borderWidth: 1,
@@ -27138,7 +27505,9 @@ const getRadioInputStyles = ({ clsPrefix, theme })=>({
27138
27505
  }
27139
27506
  }
27140
27507
  });
27141
- const getCommonRadioGroupStyles = ({ theme, clsPrefix, classNamePrefix })=>/*#__PURE__*/ css({
27508
+ const getCommonRadioGroupStyles = ({ theme, clsPrefix, classNamePrefix })=>// eslint-disable-next-line @typescript-eslint/ban-ts-comment
27509
+ // @ts-ignore [FEINF-3177] TODO: fix to work with React 18 types
27510
+ /*#__PURE__*/ css({
27142
27511
  '& > label': {
27143
27512
  [`&.${classNamePrefix}-radio-wrapper-disabled > span`]: {
27144
27513
  color: theme.colors.actionDisabledText
@@ -27211,6 +27580,8 @@ const getRadioStyles = ({ theme, clsPrefix })=>{
27211
27580
  const styles = {
27212
27581
  fontWeight
27213
27582
  };
27583
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
27584
+ // @ts-ignore [FEINF-3177] TODO: fix to work with React 18 types
27214
27585
  return /*#__PURE__*/ css({
27215
27586
  ...getRadioInputStyles({
27216
27587
  theme,
@@ -32272,8 +32643,8 @@ const Root$6 = // eslint-disable-next-line react-component-name/react-component-
32272
32643
  ref: forwardedRef
32273
32644
  });
32274
32645
  });
32275
- // Module-level caches. The styles depend only on (theme + active) at most 2 entries
32276
- // for the list and 4 for items. Same pattern as getShadowScrollStylesMemoized in css-utils.tsx.
32646
+ // Module-level caches keyed by discrete inputs (theme and/or active), so each holds only a
32647
+ // handful of entries. Same pattern as getShadowScrollStylesMemoized in css-utils.tsx.
32277
32648
  const getMemoizedListCss = memoize((theme)=>({
32278
32649
  ...getCommonTabsListStyles(theme),
32279
32650
  marginTop: 0,
@@ -32283,36 +32654,36 @@ const getMemoizedListCss = memoize((theme)=>({
32283
32654
  }));
32284
32655
  const getMemoizedItemCss = memoize((theme, active)=>({
32285
32656
  ...getCommonTabsTriggerStyles(theme),
32286
- height: theme.general.heightSm,
32287
- minWidth: theme.spacing.lg,
32657
+ height: 'var(--db-navigation-menu-item-height)',
32658
+ minWidth: 'var(--db-navigation-menu-item-min-width)',
32288
32659
  justifyContent: 'center',
32289
32660
  ...active && {
32290
32661
  // Use box-shadow instead of border to prevent it from affecting the size of the element, which results in visual
32291
32662
  // jumping when switching tabs.
32292
- boxShadow: `inset 0 -4px 0 ${theme.colors.actionPrimaryBackgroundDefault}`
32663
+ boxShadow: 'inset 0 calc(-1 * var(--db-navigation-menu-indicator-thickness)) 0 var(--db-navigation-menu-indicator)'
32293
32664
  }
32294
32665
  }), (theme, active)=>`${themeMemoKey(theme)}|${active}`);
32295
- const getMemoizedLinkCss = memoize((theme, active)=>({
32296
- padding: `${theme.spacing.xs}px 0 ${theme.spacing.sm}px 0`,
32666
+ const getMemoizedLinkCss = memoize((active)=>({
32667
+ padding: 'var(--db-navigation-menu-link-padding-top) 0 var(--db-navigation-menu-link-padding-bottom) 0',
32297
32668
  '&:focus-visible': {
32298
- outline: `2px auto ${theme.colors.actionDefaultBorderFocus}`,
32299
- outlineOffset: '-1px'
32669
+ outline: 'var(--db-navigation-menu-focus-ring-width) auto var(--db-navigation-menu-focus-ring)',
32670
+ outlineOffset: 'var(--db-navigation-menu-focus-ring-offset)'
32300
32671
  },
32301
32672
  '&&': {
32302
- color: active ? theme.colors.textPrimary : theme.colors.textSecondary,
32673
+ color: active ? 'var(--db-navigation-menu-text-active)' : 'var(--db-navigation-menu-text)',
32303
32674
  textDecoration: 'none',
32304
32675
  '&:hover': {
32305
- color: active ? theme.colors.textPrimary : theme.colors.actionDefaultTextHover,
32676
+ color: active ? 'var(--db-navigation-menu-text-active)' : 'var(--db-navigation-menu-text-hover)',
32306
32677
  textDecoration: 'none'
32307
32678
  },
32308
32679
  '&:focus': {
32309
32680
  textDecoration: 'none'
32310
32681
  },
32311
32682
  '&:active': {
32312
- color: active ? theme.colors.textPrimary : theme.colors.actionDefaultTextPress
32683
+ color: active ? 'var(--db-navigation-menu-text-active)' : 'var(--db-navigation-menu-text-press)'
32313
32684
  }
32314
32685
  }
32315
- }), (theme, active)=>`${themeMemoKey(theme)}|${active}`);
32686
+ }));
32316
32687
  const List$1 = // eslint-disable-next-line react-component-name/react-component-name -- TODO(FEINF-4716)
32317
32688
  /*#__PURE__*/ React__default.forwardRef((props, forwardedRef)=>{
32318
32689
  const { theme } = useDesignSystemTheme();
@@ -32332,7 +32703,7 @@ const Item$1 = // eslint-disable-next-line react-component-name/react-component-
32332
32703
  children: /*#__PURE__*/ jsx(RadixNavigationMenu.Link, {
32333
32704
  asChild: true,
32334
32705
  active: active,
32335
- css: getMemoizedLinkCss(theme, Boolean(active)),
32706
+ css: getMemoizedLinkCss(Boolean(active)),
32336
32707
  children: children
32337
32708
  })
32338
32709
  });
@@ -32538,7 +32909,9 @@ const Tag = /*#__PURE__*/ forwardRef((props, forwardedRef)=>{
32538
32909
  eventContext,
32539
32910
  onClick
32540
32911
  ]);
32541
- const handleKeyDown = useCallback(// oxlint-disable-next-line @databricks/react-18-types-migration -- TODO(FEINF-6292)
32912
+ const handleKeyDown = useCallback(// eslint-disable-next-line @typescript-eslint/ban-ts-comment
32913
+ // @ts-ignore [FEINF-3177] TODO: fix to work with React 18 types
32914
+ // oxlint-disable-next-line @databricks/react-18-types-migration -- TODO(FEINF-6292)
32542
32915
  (e)=>{
32543
32916
  if (onKeyDown) {
32544
32917
  onKeyDown(e);
@@ -32623,64 +32996,6 @@ const Tag = /*#__PURE__*/ forwardRef((props, forwardedRef)=>{
32623
32996
  });
32624
32997
  });
32625
32998
 
32626
- const getTagStyles = (theme)=>{
32627
- const styles = {
32628
- marginRight: 0,
32629
- color: theme.colors.actionTertiaryTextDefault,
32630
- cursor: 'pointer',
32631
- '&:focus': {
32632
- color: theme.colors.actionTertiaryTextDefault
32633
- },
32634
- '&:hover': {
32635
- color: theme.colors.actionTertiaryTextHover
32636
- },
32637
- '&:active': {
32638
- color: theme.colors.actionTertiaryTextPress
32639
- }
32640
- };
32641
- return /*#__PURE__*/ css(styles);
32642
- };
32643
- // Module-level caches. Both styles depend only on (theme + noMargin); cache once per
32644
- // combination across every Overflow instance. Same pattern as
32645
- // getShadowScrollStylesMemoized in css-utils.tsx.
32646
- const getMemoizedTagStyles = memoize((theme)=>getTagStyles(theme));
32647
- const getMemoizedContainerCss = memoize((theme, noMargin)=>({
32648
- display: 'inline-flex',
32649
- alignItems: 'center',
32650
- gap: noMargin ? 0 : theme.spacing.sm,
32651
- maxWidth: '100%'
32652
- }), (theme, noMargin)=>`${themeMemoKey(theme)}|${noMargin}`);
32653
- const Overflow = ({ children, noMargin = false, visibleItemsCount = 1, ...props })=>{
32654
- const { theme } = useDesignSystemTheme();
32655
- const childrenList = children && Children.toArray(children);
32656
- if (!childrenList || childrenList.length === 0) {
32657
- return /*#__PURE__*/ jsx(Fragment, {
32658
- children: children
32659
- });
32660
- }
32661
- const visibleItems = childrenList.slice(0, visibleItemsCount);
32662
- const additionalItems = childrenList.slice(visibleItemsCount);
32663
- const renderOverflowLabel = (label)=>/*#__PURE__*/ jsx(Tag, {
32664
- componentId: "codegen_design-system_src_design-system_overflow_overflow.tsx_28",
32665
- css: getMemoizedTagStyles(theme),
32666
- children: label
32667
- });
32668
- return additionalItems.length === 0 ? /*#__PURE__*/ jsx(Fragment, {
32669
- children: visibleItems
32670
- }) : /*#__PURE__*/ jsxs("div", {
32671
- ...props,
32672
- css: getMemoizedContainerCss(theme, noMargin),
32673
- children: [
32674
- visibleItems,
32675
- additionalItems.length > 0 && /*#__PURE__*/ jsx(OverflowPopover, {
32676
- items: additionalItems,
32677
- renderLabel: renderOverflowLabel,
32678
- ...props
32679
- })
32680
- ]
32681
- });
32682
- };
32683
-
32684
32999
  const RadioGroupContext = /*#__PURE__*/ React__default.createContext('medium');
32685
33000
  const DEFAULT_ANALYTICS_EVENTS$1 = [
32686
33001
  DesignSystemEventProviderAnalyticsEventTypes.OnValueChange
@@ -33087,14 +33402,14 @@ const ProgressContextProvider = ({ children, value })=>{
33087
33402
  });
33088
33403
  };
33089
33404
 
33090
- const getProgressRootStyles = (theme, minWidth, maxWidth)=>{
33405
+ const getProgressRootStyles = (minWidth, maxWidth)=>{
33091
33406
  const styles = {
33092
33407
  position: 'relative',
33093
33408
  overflow: 'hidden',
33094
- backgroundColor: theme.colors.progressTrack,
33095
- height: theme.spacing.sm,
33409
+ backgroundColor: 'var(--db-progress-track)',
33410
+ height: 'var(--db-progress-size)',
33096
33411
  width: '100%',
33097
- borderRadius: theme.borders.borderRadiusFull,
33412
+ borderRadius: 'var(--db-progress-border-radius)',
33098
33413
  ...minWidth && {
33099
33414
  minWidth
33100
33415
  },
@@ -33105,10 +33420,9 @@ const getProgressRootStyles = (theme, minWidth, maxWidth)=>{
33105
33420
  };
33106
33421
  return /*#__PURE__*/ css(importantify(styles));
33107
33422
  };
33108
- const getMemoizedProgressRootStyles = memoize(getProgressRootStyles, (theme, minWidth, maxWidth)=>`${themeMemoKey(theme)}|${minWidth ?? ''}|${maxWidth ?? ''}`);
33423
+ const getMemoizedProgressRootStyles = memoize(getProgressRootStyles, (minWidth, maxWidth)=>`${minWidth ?? ''}|${maxWidth ?? ''}`);
33109
33424
  const Root$4 = (props)=>{
33110
33425
  const { children, value, minWidth, maxWidth, ...restProps } = props;
33111
- const { theme } = useDesignSystemTheme();
33112
33426
  const contextValue = useMemo(()=>({
33113
33427
  progress: value
33114
33428
  }), [
@@ -33119,27 +33433,22 @@ const Root$4 = (props)=>{
33119
33433
  children: /*#__PURE__*/ jsx(Progress$1.Root, {
33120
33434
  value: value,
33121
33435
  ...restProps,
33122
- css: getMemoizedProgressRootStyles(theme, minWidth, maxWidth),
33436
+ css: getMemoizedProgressRootStyles(minWidth, maxWidth),
33123
33437
  children: children
33124
33438
  })
33125
33439
  });
33126
33440
  };
33127
- const getProgressIndicatorStyles = (theme)=>{
33128
- const styles = {
33129
- backgroundColor: theme.colors.progressFill,
33130
- height: '100%',
33131
- width: '100%',
33132
- transition: 'transform 300ms linear',
33133
- borderRadius: theme.borders.borderRadiusFull
33134
- };
33135
- return /*#__PURE__*/ css(importantify(styles));
33136
- };
33137
- const getMemoizedProgressIndicatorStyles = memoize(getProgressIndicatorStyles);
33441
+ const progressIndicatorStyles = /*#__PURE__*/ css(importantify({
33442
+ backgroundColor: 'var(--db-progress-fill)',
33443
+ height: '100%',
33444
+ width: '100%',
33445
+ transition: 'transform var(--db-progress-transition-duration) linear',
33446
+ borderRadius: 'var(--db-progress-border-radius)'
33447
+ }));
33138
33448
  const Indicator = (props)=>{
33139
33449
  const { progress } = React__default.useContext(ProgressContext);
33140
- const { theme } = useDesignSystemTheme();
33141
33450
  return /*#__PURE__*/ jsx(Progress$1.Indicator, {
33142
- css: getMemoizedProgressIndicatorStyles(theme),
33451
+ css: progressIndicatorStyles,
33143
33452
  style: {
33144
33453
  transform: `translateX(-${100 - (progress ?? 100)}%)`
33145
33454
  },
@@ -33234,13 +33543,16 @@ const getMemoizedIconStyles = memoize((theme, disabled)=>({
33234
33543
  const RadioTile = (props)=>{
33235
33544
  const { description, icon, maxWidth, checked, defaultChecked, onChange, ...rest } = props;
33236
33545
  const { theme, classNamePrefix } = useDesignSystemTheme();
33237
- const { value: groupValue, onChange: groupOnChange } = useRadioGroupContext();
33546
+ // Mirror NativeRadio: a disabled <Radio.Group> disables its tiles. RadioTile's own <button> is
33547
+ // the interactive element, so OR the group's `disabled` (from context) with the tile's own prop.
33548
+ const { value: groupValue, onChange: groupOnChange, disabled: groupDisabled } = useRadioGroupContext();
33549
+ const isDisabledByGroupOrProp = groupDisabled || props.disabled;
33238
33550
  return /*#__PURE__*/ jsxs("button", {
33239
33551
  role: "radio",
33240
33552
  type: "button",
33241
33553
  "aria-checked": groupValue === props.value,
33242
33554
  onClick: ()=>{
33243
- if (props.disabled) {
33555
+ if (isDisabledByGroupOrProp) {
33244
33556
  return;
33245
33557
  }
33246
33558
  onChange?.(props.value);
@@ -33253,12 +33565,12 @@ const RadioTile = (props)=>{
33253
33565
  tabIndex: 0,
33254
33566
  className: `${classNamePrefix}-radio-tile`,
33255
33567
  css: getMemoizedRadioTileStyles(theme, classNamePrefix, maxWidth),
33256
- disabled: props.disabled,
33568
+ disabled: isDisabledByGroupOrProp,
33257
33569
  children: [
33258
33570
  /*#__PURE__*/ jsxs("div", {
33259
33571
  children: [
33260
33572
  icon ? /*#__PURE__*/ jsx("span", {
33261
- css: getMemoizedIconStyles(theme, Boolean(props.disabled)),
33573
+ css: getMemoizedIconStyles(theme, Boolean(isDisabledByGroupOrProp)),
33262
33574
  children: icon
33263
33575
  }) : null,
33264
33576
  /*#__PURE__*/ jsx(Radio, {
@@ -34526,203 +34838,6 @@ var Slider = /*#__PURE__*/Object.freeze({
34526
34838
  Track: Track
34527
34839
  });
34528
34840
 
34529
- var shim = {exports: {}};
34530
-
34531
- var useSyncExternalStoreShim_production = {};
34532
-
34533
- /**
34534
- * @license React
34535
- * use-sync-external-store-shim.production.js
34536
- *
34537
- * Copyright (c) Meta Platforms, Inc. and affiliates.
34538
- *
34539
- * This source code is licensed under the MIT license found in the
34540
- * LICENSE file in the root directory of this source tree.
34541
- */
34542
-
34543
- var hasRequiredUseSyncExternalStoreShim_production;
34544
-
34545
- function requireUseSyncExternalStoreShim_production () {
34546
- if (hasRequiredUseSyncExternalStoreShim_production) return useSyncExternalStoreShim_production;
34547
- hasRequiredUseSyncExternalStoreShim_production = 1;
34548
- var React = React__default;
34549
- function is(x, y) {
34550
- return (x === y && (0 !== x || 1 / x === 1 / y)) || (x !== x && y !== y);
34551
- }
34552
- var objectIs = "function" === typeof Object.is ? Object.is : is,
34553
- useState = React.useState,
34554
- useEffect = React.useEffect,
34555
- useLayoutEffect = React.useLayoutEffect,
34556
- useDebugValue = React.useDebugValue;
34557
- function useSyncExternalStore$2(subscribe, getSnapshot) {
34558
- var value = getSnapshot(),
34559
- _useState = useState({ inst: { value: value, getSnapshot: getSnapshot } }),
34560
- inst = _useState[0].inst,
34561
- forceUpdate = _useState[1];
34562
- useLayoutEffect(
34563
- function () {
34564
- inst.value = value;
34565
- inst.getSnapshot = getSnapshot;
34566
- checkIfSnapshotChanged(inst) && forceUpdate({ inst: inst });
34567
- },
34568
- [subscribe, value, getSnapshot]
34569
- );
34570
- useEffect(
34571
- function () {
34572
- checkIfSnapshotChanged(inst) && forceUpdate({ inst: inst });
34573
- return subscribe(function () {
34574
- checkIfSnapshotChanged(inst) && forceUpdate({ inst: inst });
34575
- });
34576
- },
34577
- [subscribe]
34578
- );
34579
- useDebugValue(value);
34580
- return value;
34581
- }
34582
- function checkIfSnapshotChanged(inst) {
34583
- var latestGetSnapshot = inst.getSnapshot;
34584
- inst = inst.value;
34585
- try {
34586
- var nextValue = latestGetSnapshot();
34587
- return !objectIs(inst, nextValue);
34588
- } catch (error) {
34589
- return true;
34590
- }
34591
- }
34592
- function useSyncExternalStore$1(subscribe, getSnapshot) {
34593
- return getSnapshot();
34594
- }
34595
- var shim =
34596
- "undefined" === typeof window ||
34597
- "undefined" === typeof window.document ||
34598
- "undefined" === typeof window.document.createElement
34599
- ? useSyncExternalStore$1
34600
- : useSyncExternalStore$2;
34601
- useSyncExternalStoreShim_production.useSyncExternalStore =
34602
- void 0 !== React.useSyncExternalStore ? React.useSyncExternalStore : shim;
34603
- return useSyncExternalStoreShim_production;
34604
- }
34605
-
34606
- var useSyncExternalStoreShim_development = {};
34607
-
34608
- /**
34609
- * @license React
34610
- * use-sync-external-store-shim.development.js
34611
- *
34612
- * Copyright (c) Meta Platforms, Inc. and affiliates.
34613
- *
34614
- * This source code is licensed under the MIT license found in the
34615
- * LICENSE file in the root directory of this source tree.
34616
- */
34617
-
34618
- var hasRequiredUseSyncExternalStoreShim_development;
34619
-
34620
- function requireUseSyncExternalStoreShim_development () {
34621
- if (hasRequiredUseSyncExternalStoreShim_development) return useSyncExternalStoreShim_development;
34622
- hasRequiredUseSyncExternalStoreShim_development = 1;
34623
- "production" !== process.env.NODE_ENV &&
34624
- (function () {
34625
- function is(x, y) {
34626
- return (x === y && (0 !== x || 1 / x === 1 / y)) || (x !== x && y !== y);
34627
- }
34628
- function useSyncExternalStore$2(subscribe, getSnapshot) {
34629
- didWarnOld18Alpha ||
34630
- void 0 === React.startTransition ||
34631
- ((didWarnOld18Alpha = true),
34632
- console.error(
34633
- "You are using an outdated, pre-release alpha of React 18 that does not support useSyncExternalStore. The use-sync-external-store shim will not work correctly. Upgrade to a newer pre-release."
34634
- ));
34635
- var value = getSnapshot();
34636
- if (!didWarnUncachedGetSnapshot) {
34637
- var cachedValue = getSnapshot();
34638
- objectIs(value, cachedValue) ||
34639
- (console.error(
34640
- "The result of getSnapshot should be cached to avoid an infinite loop"
34641
- ),
34642
- (didWarnUncachedGetSnapshot = true));
34643
- }
34644
- cachedValue = useState({
34645
- inst: { value: value, getSnapshot: getSnapshot }
34646
- });
34647
- var inst = cachedValue[0].inst,
34648
- forceUpdate = cachedValue[1];
34649
- useLayoutEffect(
34650
- function () {
34651
- inst.value = value;
34652
- inst.getSnapshot = getSnapshot;
34653
- checkIfSnapshotChanged(inst) && forceUpdate({ inst: inst });
34654
- },
34655
- [subscribe, value, getSnapshot]
34656
- );
34657
- useEffect(
34658
- function () {
34659
- checkIfSnapshotChanged(inst) && forceUpdate({ inst: inst });
34660
- return subscribe(function () {
34661
- checkIfSnapshotChanged(inst) && forceUpdate({ inst: inst });
34662
- });
34663
- },
34664
- [subscribe]
34665
- );
34666
- useDebugValue(value);
34667
- return value;
34668
- }
34669
- function checkIfSnapshotChanged(inst) {
34670
- var latestGetSnapshot = inst.getSnapshot;
34671
- inst = inst.value;
34672
- try {
34673
- var nextValue = latestGetSnapshot();
34674
- return !objectIs(inst, nextValue);
34675
- } catch (error) {
34676
- return true;
34677
- }
34678
- }
34679
- function useSyncExternalStore$1(subscribe, getSnapshot) {
34680
- return getSnapshot();
34681
- }
34682
- "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
34683
- "function" ===
34684
- typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart &&
34685
- __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());
34686
- var React = React__default,
34687
- objectIs = "function" === typeof Object.is ? Object.is : is,
34688
- useState = React.useState,
34689
- useEffect = React.useEffect,
34690
- useLayoutEffect = React.useLayoutEffect,
34691
- useDebugValue = React.useDebugValue,
34692
- didWarnOld18Alpha = false,
34693
- didWarnUncachedGetSnapshot = false,
34694
- shim =
34695
- "undefined" === typeof window ||
34696
- "undefined" === typeof window.document ||
34697
- "undefined" === typeof window.document.createElement
34698
- ? useSyncExternalStore$1
34699
- : useSyncExternalStore$2;
34700
- useSyncExternalStoreShim_development.useSyncExternalStore =
34701
- void 0 !== React.useSyncExternalStore ? React.useSyncExternalStore : shim;
34702
- "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
34703
- "function" ===
34704
- typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
34705
- __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error());
34706
- })();
34707
- return useSyncExternalStoreShim_development;
34708
- }
34709
-
34710
- var hasRequiredShim;
34711
-
34712
- function requireShim () {
34713
- if (hasRequiredShim) return shim.exports;
34714
- hasRequiredShim = 1;
34715
-
34716
- if (process.env.NODE_ENV === 'production') {
34717
- shim.exports = requireUseSyncExternalStoreShim_production();
34718
- } else {
34719
- shim.exports = requireUseSyncExternalStoreShim_development();
34720
- }
34721
- return shim.exports;
34722
- }
34723
-
34724
- var shimExports = requireShim();
34725
-
34726
34841
  // eslint-disable-next-line @databricks/no-restricted-imports-regexp -- we can directly import antd icons here in order to wrap them for use elsewhere in the design system
34727
34842
  function React18CompatibleIconComponent(IconComponent) {
34728
34843
  return IconComponent;
@@ -34810,12 +34925,16 @@ const DropdownButton = (props)=>{
34810
34925
  leftButton,
34811
34926
  rightButton
34812
34927
  ]);
34813
- return /*#__PURE__*/ jsxs(ButtonGroup, {
34928
+ return(// eslint-disable-next-line @typescript-eslint/ban-ts-comment
34929
+ // @ts-ignore [FEINF-3177] TODO: fix to work with React 18 types
34930
+ /*#__PURE__*/ jsxs(ButtonGroup, {
34814
34931
  ...restProps,
34815
34932
  className: classnames(prefixCls, className),
34816
34933
  children: [
34817
34934
  leftButtonToRender,
34818
- overlay !== undefined ? /*#__PURE__*/ jsx(Dropdown, {
34935
+ overlay !== undefined ? // eslint-disable-next-line @typescript-eslint/ban-ts-comment
34936
+ // @ts-ignore [FEINF-3177] TODO: fix to work with React 18 types
34937
+ /*#__PURE__*/ jsx(Dropdown, {
34819
34938
  ...dropdownProps,
34820
34939
  overlay: overlay,
34821
34940
  children: rightButtonToRender
@@ -34834,7 +34953,7 @@ const DropdownButton = (props)=>{
34834
34953
  ]
34835
34954
  })
34836
34955
  ]
34837
- });
34956
+ }));
34838
34957
  };
34839
34958
 
34840
34959
  const BUTTON_HORIZONTAL_PADDING = 12;
@@ -34844,16 +34963,17 @@ const SPLIT_BUTTON_CONTAINER_CSS = {
34844
34963
  verticalAlign: 'middle'
34845
34964
  };
34846
34965
  function getSplitButtonEmotionStyles(classNamePrefix, theme, size) {
34847
- const classDefault = `.${classNamePrefix}-btn`;
34848
- const classPrimary = `.${classNamePrefix}-btn-primary`;
34966
+ const btn = (suffix = '')=>getBtnClassName(classNamePrefix, suffix, '');
34967
+ const primary = (suffix = '')=>getBtnClassName(classNamePrefix, `-primary${suffix}`, '');
34849
34968
  const classDropdownTrigger = `.${classNamePrefix}-dropdown-trigger`;
34850
34969
  const classSmall = `.${classNamePrefix}-btn-group-sm`;
34851
34970
  const styles = {
34852
- [classDefault]: {
34971
+ [btn()]: {
34853
34972
  ...getDefaultStyles(theme),
34854
34973
  boxShadow: 'none',
34855
34974
  height: size === 'small' ? theme.general.iconSize : theme.general.heightSm,
34856
- padding: `4px ${BUTTON_HORIZONTAL_PADDING}px`,
34975
+ // Small segments use compact padding so the native segment doesn't render wider than AntD.
34976
+ padding: size === 'small' ? `0px ${theme.spacing.sm}px` : `4px ${BUTTON_HORIZONTAL_PADDING}px`,
34857
34977
  '&:focus-visible': {
34858
34978
  outlineStyle: 'solid',
34859
34979
  outlineWidth: '2px',
@@ -34870,11 +34990,11 @@ function getSplitButtonEmotionStyles(classNamePrefix, theme, size) {
34870
34990
  color: theme.colors.actionDefaultIconPress
34871
34991
  }
34872
34992
  },
34873
- [`${classDefault}:first-child`]: {
34993
+ [btn(':first-child')]: {
34874
34994
  borderTopRightRadius: '0px !important',
34875
34995
  borderBottomRightRadius: '0px !important'
34876
34996
  },
34877
- [classPrimary]: {
34997
+ [primary()]: {
34878
34998
  ...getPrimaryStyles(theme),
34879
34999
  boxShadow: 'none',
34880
35000
  [`&:first-child`]: {
@@ -34906,7 +35026,7 @@ function getSplitButtonEmotionStyles(classNamePrefix, theme, size) {
34906
35026
  }
34907
35027
  },
34908
35028
  '&&': {
34909
- [`[disabled], ${classPrimary}[disabled]`]: {
35029
+ [`[disabled], ${primary('[disabled]')}`]: {
34910
35030
  ...getDisabledSplitButtonStyles(theme),
34911
35031
  boxShadow: 'none',
34912
35032
  [`&:first-child`]: {
@@ -34920,19 +35040,27 @@ function getSplitButtonEmotionStyles(classNamePrefix, theme, size) {
34920
35040
  color: theme.colors.actionDisabledText
34921
35041
  }
34922
35042
  },
34923
- [`${classPrimary}[disabled]`]: {
35043
+ [primary('[disabled]')]: {
34924
35044
  ...getDisabledPrimarySplitButtonStyles(theme),
34925
35045
  '.anticon, &:hover .anticon, &:active .anticon, &:focus-visible .anticon': {
34926
35046
  color: theme.colors.actionPrimaryTextDefault
34927
35047
  }
34928
35048
  }
34929
35049
  },
34930
- [`${classDefault}:not(:first-child)`]: {
35050
+ [btn(':not(:first-child)')]: {
34931
35051
  width: theme.general.heightSm,
34932
35052
  padding: '3px !important',
34933
35053
  borderTopLeftRadius: '0px !important',
34934
35054
  borderBottomLeftRadius: '0px !important'
34935
35055
  },
35056
+ // Collapse adjacent `.db-btn` segments' borders into a single 1px divider.
35057
+ '.db-btn:not(:first-child)': {
35058
+ marginInlineStart: -1
35059
+ },
35060
+ // Raise the hovered/focused/active `.db-btn` segment so its border paints over the neighbor.
35061
+ '.db-btn:hover, .db-btn:focus-visible, .db-btn:active': {
35062
+ zIndex: 2
35063
+ },
34936
35064
  ...getAnimationCss(theme.options.enableAnimation)
34937
35065
  };
34938
35066
  const importantStyles = importantify(styles);
@@ -37432,6 +37560,24 @@ function WizardControlled({ initialStep = 0, layout = 'vertical', width = '100%'
37432
37560
  });
37433
37561
  }
37434
37562
 
37563
+ const WizardStepNavigationContext = /*#__PURE__*/ createContext(undefined);
37564
+ function useWizardStepNavigation() {
37565
+ return useContext(WizardStepNavigationContext);
37566
+ }
37567
+ function WizardStepNavigationProvider({ goToStep, currentStepIndex, children }) {
37568
+ const value = useMemo(()=>({
37569
+ goToStep,
37570
+ currentStepIndex
37571
+ }), [
37572
+ goToStep,
37573
+ currentStepIndex
37574
+ ]);
37575
+ return /*#__PURE__*/ jsx(WizardStepNavigationContext.Provider, {
37576
+ value: value,
37577
+ children: children
37578
+ });
37579
+ }
37580
+
37435
37581
  function WizardModal({ onStepChanged, onCancel, initialStep, steps, onModalClose, localizeStepNumber, cancelButtonContent, nextButtonContent, previousButtonContent, doneButtonContent, enableClickingToSteps, ...modalProps }) {
37436
37582
  const [currentStepIndex, setCurrentStepIndex] = useState(initialStep ?? 0);
37437
37583
  const { onStepsChange, isLastStep, ...footerActions } = useWizardCurrentStep({
@@ -37459,12 +37605,16 @@ function WizardModal({ onStepChanged, onCancel, initialStep, steps, onModalClose
37459
37605
  onCancel: onModalClose,
37460
37606
  size: "wide",
37461
37607
  footer: footerButtons,
37462
- children: /*#__PURE__*/ jsx(HorizontalWizardStepsContent, {
37463
- steps: steps,
37608
+ children: /*#__PURE__*/ jsx(WizardStepNavigationProvider, {
37609
+ goToStep: footerActions.goToStep,
37464
37610
  currentStepIndex: currentStepIndex,
37465
- localizeStepNumber: localizeStepNumber,
37466
- enableClickingToSteps: Boolean(enableClickingToSteps),
37467
- goToStep: footerActions.goToStep
37611
+ children: /*#__PURE__*/ jsx(HorizontalWizardStepsContent, {
37612
+ steps: steps,
37613
+ currentStepIndex: currentStepIndex,
37614
+ localizeStepNumber: localizeStepNumber,
37615
+ enableClickingToSteps: Boolean(enableClickingToSteps),
37616
+ goToStep: footerActions.goToStep
37617
+ })
37468
37618
  })
37469
37619
  });
37470
37620
  }
@@ -37542,5 +37692,5 @@ function WizardStepContentWrapper({ header, title, description, alertContent, de
37542
37692
  });
37543
37693
  }
37544
37694
 
37545
- export { hideIconButtonRowStyles as $, useModalContext as A, Button$1 as B, CheckCircleFillIcon as C, DocumentationSidebar as D, Trigger$5 as E, FIXED_VERTICAL_STEPPER_WIDTH as F, InfoSmallIcon as G, Content$7 as H, InfoFillIcon as I, Arrow$2 as J, Tooltip as K, SparkleDoubleIcon as L, MAX_VERTICAL_WIZARD_CONTENT_WIDTH as M, LoadingState as N, OverflowPopover as O, visuallyHidden as P, genSkeletonAnimatedColor as Q, Root$b as R, ShapeTokens as S, Typography as T, getOffsets as U, DesignSystemEventSuppressInteractionProviderContext as V, Wizard as W, DesignSystemEventSuppressInteractionTrueContextValue as X, tableStyles as Y, repeatingElementsStyles as Z, tableClassNames as _, WizardControlled as a, TypeaheadComboboxV2ContextProvider as a$, hideIconButtonActionCellClassName as a0, safex as a1, TitleSkeleton as a2, useDialogComboboxContext as a3, PlusIcon as a4, importantify as a5, getComboboxOptionItemWrapperStyles as a6, getFooterStyles as a7, useDialogComboboxOptionListContext as a8, generateUuidV4 as a9, Checkbox as aA, DialogCombobox as aB, DialogComboboxTrigger as aC, DialogComboboxContent as aD, Select as aE, SelectTrigger as aF, SelectContent as aG, SelectOption as aH, LegacySelect as aI, WarningIcon as aJ, CheckCircleIcon as aK, DangerIcon as aL, Hint as aM, Title$1 as aN, CloseIcon as aO, RestoreAntDDefaultClsPrefix as aP, AccessibleContainer as aQ, DU_BOIS_ENABLE_ANIMATION_CLASSNAME as aR, CircleOffIcon as aS, CircleOutlineIcon as aT, CircleIcon as aU, shimExports as aV, SortAscendingIcon as aW, SortDescendingIcon as aX, SortUnsortedIcon as aY, MinusSquareIcon as aZ, PlusSquareIcon as a_, getContentOptions as aa, findHighlightedOption as ab, highlightOption as ac, Input as ad, SearchIcon as ae, EmptyResults as af, findClosestOptionSibling as ag, DialogComboboxOptionListCheckboxItem as ah, DialogComboboxOptionListSelectItem as ai, DialogComboboxOptionListContextProvider as aj, LoadingSpinner as ak, DialogComboboxOptionList as al, useUniqueId as am, TypeaheadComboboxContextProvider as an, useTypeaheadComboboxContext as ao, useDuboisThemeClass as ap, useDesignTokenOverrideStyles as aq, getComboboxContentWrapperStyles as ar, ClearSelectionButton as as, TypeaheadComboboxSelectedItem$1 as at, CountBadge$1 as au, getValidationStateColor as av, SectionHeader as aw, useComboboxState as ax, useMultipleSelectionState as ay, Radio as az, WizardModal as b, BlockQuoteIcon as b$, useTypeaheadComboboxV2Context as b0, useRadixModalContext as b1, useIsomorphicLayoutEffect as b2, useScrollOptionIntoView as b3, InfoTooltip as b4, getInfoIconStyles as b5, HintRow as b6, getCheckboxStyles as b7, getMenuItemStyles as b8, TypeaheadComboboxSelectedItem as b9, ArrowUpIcon as bA, ArrowsCollapseIcon as bB, ArrowsConnectIcon as bC, ArrowsExpandIcon as bD, ArrowsUpDownIcon as bE, AssistantIcon as bF, AtIcon as bG, Auth0Graphic as bH, Auth0GraphicLarge as bI, AzHorizontalIcon as bJ, AzVerticalIcon as bK, BANNER_MAX_HEIGHT as bL, BANNER_MIN_HEIGHT as bM, BackupIcon as bN, BadgeCodeIcon as bO, BadgeCodeOffIcon as bP, Banner as bQ, BarChartIcon as bR, BarGroupedIcon as bS, BarStackedIcon as bT, BarStackedPercentageIcon as bU, BarsAscendingHorizontalIcon as bV, BarsAscendingVerticalIcon as bW, BarsDescendingHorizontalIcon as bX, BarsDescendingVerticalIcon as bY, BeakerIcon as bZ, BinaryIcon as b_, CountBadge as ba, TypeaheadComboboxMenuItem as bb, AccessDeniedGraphic as bc, Accordion as bd, AccordionPanel as be, AlignCenterIcon as bf, AlignJustifyIcon as bg, AlignLeftIcon as bh, AlignRightIcon as bi, AlignVerticalBottomIcon as bj, AlignVerticalCenterIcon as bk, AlignVerticalTopIcon as bl, AppIcon as bm, ApplyDesignSystemContextOverrides as bn, ApplyDesignSystemFlags as bo, ArrowDownDotIcon as bp, ArrowDownFillIcon as bq, ArrowDownIcon as br, ArrowInIcon as bs, ArrowInTableIcon as bt, ArrowLeftIcon as bu, ArrowOutTableIcon as bv, ArrowOverIcon as bw, ArrowRightIcon as bx, ArrowUpDotIcon as by, ArrowUpFillIcon as bz, WizardStepContentWrapper as c, CloudDownloadIcon as c$, BoldIcon as c0, BookIcon as c1, BookmarkFillIcon as c2, BookmarkIcon as c3, BooksIcon as c4, BracketsCheckIcon as c5, BracketsCurlyIcon as c6, BracketsErrorIcon as c7, BracketsSquareIcon as c8, BracketsXIcon as c9, CertifiedIcon as cA, ChainIcon as cB, ChartLineIcon as cC, CheckCircleBadgeIcon as cD, CheckCircleSmallIcon as cE, CheckIcon as cF, CheckLineIcon as cG, CheckSmallIcon as cH, CheckboxIcon as cI, ChecklistIcon as cJ, ChevronDoubleDownIcon as cK, ChevronDoubleLeftIcon as cL, ChevronDoubleLeftOffIcon as cM, ChevronDoubleRightIcon as cN, ChevronDoubleRightOffIcon as cO, ChevronDoubleUpIcon as cP, ChevronLeftIcon as cQ, ChevronUpIcon as cR, ChipIcon as cS, CircleOffLargeIcon as cT, CircleOutlineLargeIcon as cU, ClipboardIcon as cV, ClockIcon as cW, ClockKeyIcon as cX, ClockOffIcon as cY, CloudCheckIcon as cZ, CloudDatabaseIcon as c_, BranchCheckIcon as ca, BranchIcon as cb, BranchResetIcon as cc, BriefcaseFillIcon as cd, BriefcaseIcon as ce, BrushIcon as cf, BugIcon as cg, CalendarClockIcon as ch, CalendarEventIcon as ci, CalendarIcon as cj, CalendarRangeIcon as ck, CalendarSyncIcon as cl, CameraIcon as cm, CapitalizeIcon as cn, CaretDownSquareIcon as co, CaretUpSquareIcon as cp, CatalogCloudIcon as cq, CatalogGearIcon as cr, CatalogHomeIcon as cs, CatalogIcon as ct, CatalogOffIcon as cu, CatalogSharedIcon as cv, CatalogUserHomeIcon as cw, CellsSquareIcon as cx, CertifiedFillIcon as cy, CertifiedFillSmallIcon as cz, DesignSystemEventProvider as d, ErdIcon as d$, CloudIcon as d0, CloudKeyIcon as d1, CloudModelIcon as d2, CloudOffIcon as d3, CloudUploadIcon as d4, CodeIcon as d5, ColorFillIcon as d6, ColorVars as d7, ColumnIcon as d8, ColumnSplitIcon as d9, DataIcon as dA, DataMaskiingGraphic as dB, DatabaseClockIcon as dC, DatabaseIcon as dD, DatabaseImportIcon as dE, DatePicker as dF, DecimalIcon as dG, DeprecatedIcon as dH, DeprecatedSmallIcon as dI, DesignSystemContext as dJ, DesignSystemEventProviderComponentSubTypes as dK, DesignSystemProvider as dL, DesignSystemThemeContext as dM, DesignSystemThemeProvider as dN, DialogComboboxCountBadge as dO, DialogComboboxCustomButtonTriggerWrapper as dP, DialogComboboxSectionHeader as dQ, DollarIcon as dR, DomainCirclesThree as dS, DomainsIcon as dT, DotsCircleIcon as dU, DownloadIcon as dV, DragIcon as dW, Drawer as dX, DropdownMenu as dY, Empty as dZ, EmptyDashboardGraphic as d_, ColumnTagIcon as da, ColumnsIcon as db, CommandIcon as dc, CommandPaletteIcon as dd, CompassIcon as de, ComponentFinderContext as df, ConnectIcon as dg, Content$2 as dh, ContextMenu$1 as di, CopyIcon as dj, CreditCardIcon as dk, CursorClickIcon as dl, CursorIcon as dm, CursorPagination as dn, CursorTypeIcon as dp, CustomAppIcon as dq, DS_OVERRIDE_TOKENS_WRAPPER_TESTID as dr, DagHorizontalIcon as ds, DagIcon as dt, DagVerticalIcon as du, DangerModal as dv, DangerSmallIcon as dw, DashIcon as dx, DashboardCodeIcon as dy, DashboardIcon as dz, DesignTokenScope as e, H3Icon as e$, ExpandLessIcon as e0, ExpandMoreIcon as e1, FaceFrownIcon as e2, FaceNeutralIcon as e3, FaceSmileIcon as e4, FileCodeIcon as e5, FileCubeIcon as e6, FileDocumentIcon as e7, FileIcon as e8, FileImageIcon as e9, FolderOutlinePipelineIcon as eA, FolderSolidPipelineIcon as eB, FontIcon as eC, ForkHorizontalIcon as eD, ForkIcon as eE, Form as eF, FormContextResetBoundary as eG, FullscreenExitIcon as eH, FullscreenIcon as eI, FunctionIcon as eJ, FunctionInputIcon as eK, GavelIcon as eL, GearFillIcon as eM, GearIcon as eN, GenieCodeIcon as eO, GenieDeepResearchIcon as eP, GiftIcon as eQ, GitCommitIcon as eR, GitMergeIcon as eS, GitRebaseIcon as eT, GlobeIcon as eU, Graphic as eV, GridDashIcon as eW, GridIcon as eX, GroupIcon as eY, H1Icon as eZ, H2Icon as e_, FileLockIcon as ea, FileModelIcon as eb, FileNewIcon as ec, FilePipelineIcon as ed, FilterFillIcon as ee, FilterIcon as ef, FlagPointerIcon as eg, FloatIcon as eh, FlowIcon as ei, FlowsIcon as ej, FolderBranchFillIcon as ek, FolderBranchIcon as el, FolderCloudFilledIcon as em, FolderCloudIcon as en, FolderCubeIcon as eo, FolderCubeOutlineIcon as ep, FolderFillIcon as eq, FolderHomeIcon as er, FolderIcon as es, FolderNewIcon as et, FolderNodeIcon as eu, FolderOpenBranchIcon as ev, FolderOpenCloudIcon as ew, FolderOpenCubeIcon as ex, FolderOpenIcon as ey, FolderOpenPipelineIcon as ez, useDesignSystemContext as f, MarkdownIcon as f$, H4Icon as f0, H5Icon as f1, H6Icon as f2, HashIcon as f3, HistoryIcon as f4, HomeIcon as f5, Icon as f6, ImageIcon as f7, IndentDecreaseIcon as f8, IndentIncreaseIcon as f9, LegacyTooltip as fA, LetterFormatIcon as fB, LettersIcon as fC, LettersNumbersIcon as fD, LibrariesIcon as fE, LifesaverIcon as fF, LightbulbIcon as fG, LightningCircleFillIcon as fH, LightningIcon as fI, LinearLineIcon as fJ, LinkIcon as fK, LinkOffIcon as fL, ListBorderIcon as fM, ListClearIcon as fN, ListIcon as fO, ListNumberIcon as fP, Listbox as fQ, LoadingIcon as fR, LoadingStateContext as fS, LockFillIcon as fT, LockIcon as fU, LockShareIcon as fV, LockUnlockedIcon as fW, LoopIcon as fX, LowercaseIcon as fY, MailIcon as fZ, MapIcon as f_, InfinityIcon as fa, InfoBookIcon as fb, InfoIcon as fc, IngestionIcon as fd, ItalicIcon as fe, JoinOperatorIcon as ff, KeyIcon as fg, KeyboardIcon as fh, LakebaseCatalogIcon as fi, LakebaseIcon as fj, LakeflowDesignerIcon as fk, LakewatchAlertIcon as fl, LakewatchDatasourceIcon as fm, LakewatchDetectionRuleIcon as fn, LakewatchParserIcon as fo, LayerGraphIcon as fp, LayerIcon as fq, Layout as fr, LeafIcon as fs, LegacyForm as ft, LegacyFormDubois as fu, LegacyOptGroup as fv, LegacyOption as fw, LegacySelectOptGroup as fx, LegacySelectOption as fy, LegacyTable as fz, useDesignSystemTheme as g, PlayCircleIcon as g$, McpIcon as g0, MeasureIcon as g1, MegaphoneIcon as g2, MenuIcon as g3, MinusCircleFillIcon as g4, MinusCircleIcon as g5, MinusCircleSmallIcon as g6, MissingBranchGraphic as g7, MissingGraphic as g8, ModelsIcon as g9, PageIcon as gA, PageLastIcon as gB, PageTopIcon as gC, Pagination as gD, Panel as gE, PanelBody as gF, PanelDockedIcon as gG, PanelFloatingIcon as gH, PanelHeader as gI, PanelHeaderButtons as gJ, PanelHeaderTitle as gK, PaperclipIcon as gL, PassFailChecklistIcon as gM, PauseIcon as gN, PencilFillIcon as gO, PencilIcon as gP, PencilSparkleIcon as gQ, PieChartIcon as gR, PillControl as gS, PinCancelIcon as gT, PinFillIcon as gU, PinIcon as gV, PipelineCodeIcon as gW, PipelineCubeIcon as gX, PipelineIcon as gY, PivotOperatorIcon as gZ, PlayCircleFillIcon as g_, MonotoneLineIcon as ga, MonthPickerGrid as gb, MoonIcon as gc, Nav as gd, NavButton as ge, NavigationMenu as gf, NeonProjectIcon as gg, NewChatIcon as gh, NewTabIcon as gi, NewWindowIcon as gj, NoCaseIcon as gk, NoIcon as gl, NotebookIcon as gm, NotebookPipelineIcon as gn, NotificationIcon as go, NotificationOffIcon as gp, NumberFormatIcon as gq, NumbersIcon as gr, OfficeIcon as gs, OntologyIcon as gt, OutageGraphic as gu, Overflow as gv, OverflowHorizontalIcon as gw, OverflowIcon as gx, PageBottomIcon as gy, PageFirstIcon as gz, WarningFillIcon as h, SidebarSyncIcon as h$, PlayDoubleIcon as h0, PlayIcon as h1, PlayMultipleIcon as h2, PlugIcon as h3, PlusCircleFillIcon as h4, PlusCircleIcon as h5, PlusCircleSmallIcon as h6, PlusMinusSquareIcon as h7, Popover as h8, PositionBottomIcon as h9, RunIcon as hA, RunningIcon as hB, SMALL_BUTTON_HEIGHT$2 as hC, SaveClockIcon as hD, SaveIcon as hE, SchemaIcon as hF, SchoolIcon as hG, SearchDataIcon as hH, SegmentedControlButton as hI, SegmentedControlGroup as hJ, SelectContext as hK, SelectContextProvider as hL, SelectOptionGroup as hM, SendIcon as hN, ShareIcon as hO, ShareNodesIcon as hP, ShieldCheckIcon as hQ, ShieldIcon as hR, ShieldOffIcon as hS, ShortcutIcon as hT, Sidebar as hU, SidebarAutoIcon as hV, SidebarClosedIcon as hW, SidebarCollapseIcon as hX, SidebarExpandIcon as hY, SidebarIcon as hZ, SidebarOpenIcon as h_, PositionLeftIcon as ha, PositionRightIcon as hb, PositionTopIcon as hc, PreviewCard as hd, Progress as he, PullRequestIcon as hf, PuzzleIcon as hg, QueryEditorIcon as hh, QueryIcon as hi, QuestionMarkFillIcon as hj, QuestionMarkIcon as hk, RadioIcon as hl, RadioTile as hm, RangePicker as hn, ReaderModeIcon as ho, RedoIcon as hp, RefreshIcon as hq, RefreshPlayIcon as hr, RefreshXIcon as hs, ReplyIcon as ht, ResizeIcon as hu, RhfForm as hv, RichTextIcon as hw, RobotIcon as hx, RocketIcon as hy, RowsIcon as hz, DangerFillIcon as i, TagColumnIcon as i$, SimpleSelect as i0, SimpleSelectOption as i1, SimpleSelectOptionGroup as i2, SlashSquareIcon as i3, Slider as i4, SlidersIcon as i5, SnippetIcon as i6, SortCustomHorizontalIcon as i7, SortCustomVerticalIcon as i8, SortHorizontalAscendingIcon as i9, Stepper as iA, StopCircleFillIcon as iB, StopCircleIcon as iC, StopIcon as iD, StoredProcedureIcon as iE, StorefrontIcon as iF, StreamIcon as iG, StrikeThroughIcon as iH, SunIcon as iI, SyncIcon as iJ, SyncSmallIcon as iK, SyncToFileIcon as iL, TableAsteriskIcon as iM, TableClockIcon as iN, TableCombineIcon as iO, TableGlassesIcon as iP, TableGlobeIcon as iQ, TableIcon as iR, TableLightningIcon as iS, TableMeasureIcon as iT, TableModelIcon as iU, TableReportIcon as iV, TableStreamIcon as iW, TableVectorIcon as iX, TableViewIcon as iY, Tabs as iZ, Tag as i_, SortHorizontalDescendingIcon as ia, SortLetterHorizontalAscendingIcon as ib, SortLetterHorizontalDescendingIcon as ic, SortLetterUnsortedIcon as id, SortLetterVerticalAscendingIcon as ie, SortLetterVerticalDescendingIcon as ig, Spacer as ih, SparkleDoubleFillIcon as ii, SparkleFillIcon as ij, SparkleIcon as ik, SparkleRectangleIcon as il, SpeechBubbleIcon as im, SpeechBubblePlusIcon as io, SpeechBubbleQuestionMarkFillIcon as ip, SpeechBubbleQuestionMarkIcon as iq, SpeechBubbleStarIcon as ir, SpeedometerIcon as is, Spinner as it, SplitButton as iu, SqlIcon as iv, StarFillIcon as iw, StarIcon as ix, StepAfterLineIcon as iy, StepBeforeLineIcon as iz, DesignSystemEventProviderAnalyticsEventTypes as j, ZoomOutIcon as j$, TagIcon as j0, TagTableIcon as j1, TargetIcon as j2, TerminalIcon as j3, TextBoxIcon as j4, TextColorIcon as j5, TextIcon as j6, TextJustifyIcon as j7, TextUnderlineIcon as j8, ThreeDotsIcon as j9, UserCircleIcon as jA, UserGroupFillIcon as jB, UserGroupIcon as jC, UserIcon as jD, UserKeyIconIcon as jE, UserShieldIcon as jF, UserSparkleIcon as jG, UserTeamIcon as jH, VisibleFillIcon as jI, VisibleIcon as jJ, VisibleOffIcon as jK, WithDesignSystemThemeHoc as jL, WorkflowCodeIcon as jM, WorkflowCubeIcon as jN, WorkflowsIcon as jO, WorkspacesIcon as jP, WrenchIcon as jQ, WrenchSparkleIcon as jR, XCircleFillIcon as jS, XCircleIcon as jT, YearPickerGrid as jU, ZaHorizontalIcon as jV, ZaVerticalIcon as jW, ZeroOpsIcon as jX, ZeroOpsOutlineIcon as jY, ZoomInIcon as jZ, ZoomMarqueeSelection as j_, ThumbsDownFilledIcon as ja, ThumbsDownIcon as jb, ThumbsUpFilledIcon as jc, ThumbsUpIcon as jd, ToggleButton as je, TokenIcon as jf, Toolbar as jg, TrashIcon as jh, Tree as ji, TreeIcon as jj, TrendingFillIcon as jk, TrendingIcon as jl, TriangleIcon as jm, TypeaheadComboboxCheckboxItem as jn, TypeaheadComboboxFooter as jo, TypeaheadComboboxMenuItem$1 as jp, TypeaheadComboboxMultiSelectStateChangeTypes as jq, TypeaheadComboboxStateChangeTypes as jr, UnderlineIcon as js, UndoIcon as jt, UploadIcon as ju, UppercaseIcon as jv, UsageOverageGraphic as jw, UsageSpikeGraphic as jx, UsbIcon as jy, UserBadgeIcon as jz, useDesignSystemEventComponentCallbacks as k, ZoomToFitIcon as k0, __INTERNAL_DO_NOT_USE__FormItem as k1, __INTERNAL_DO_NOT_USE__Group as k2, __INTERNAL_DO_NOT_USE__HorizontalGroup as k3, __INTERNAL_DO_NOT_USE__VerticalGroup as k4, __INTERNAL_DO_NOT_USE__wrapLegacyFormRules as k5, augmentWithDataComponentProps as k6, dialogComboboxLookAheadKeyDown as k7, getBottomOnlyShadowScrollStyles as k8, getButtonEmotionStyles as k9, useDesignSystemEventSuppressInteractionContext as kA, useFormContext as kB, useRadioGroupContext as kC, getComboboxOptionLabelStyles as ka, getDatePickerQuickActionBasic as kb, getDialogComboboxOptionLabelWidth as kc, getHorizontalTabShadowStyles as kd, getInputStyles as ke, getKeyboardNavigationFunctions as kf, getMemoizedButtonEmotionStyles as kg, getPaginationEmotionStyles as kh, getPanelContainmentStyle as ki, getRadioStyles as kj, getRangeQuickActionsBasic as kk, getShadowScrollStyles as kl, getTypographyColor as km, getVirtualListScrollbarStyles as kn, getVirtualListScrollbarThumbColor as ko, getVirtualizedComboboxMenuItemStyles as kp, getWrapperStyle as kq, highlightFirstNonDisabledOption as kr, isOptionDisabled as ks, resetTabIndexToFocusedElement as kt, setImplicitContextGetter as ku, skipHideIconButtonActionClassName as kv, themeMemoKey as kw, useAntDConfigProviderContext as kx, useCallbackOnEnter as ky, useComponentFinderContext as kz, DesignSystemEventProviderComponentTypes as l, DesignSystemEventProviderComponentSubTypeMap as m, useNotifyOnFirstView as n, useStableUuidV4 as o, primitiveColors as p, ChevronDownIcon as q, ChevronRightIcon as r, DesignSystemAntDConfigProvider as s, CloseSmallIcon as t, useWizardCurrentStep as u, addDebugOutlineIfEnabled as v, Modal as w, getAnimationCss as x, token as y, getDarkModePortalStyles as z };
37546
- //# sourceMappingURL=WizardStepContentWrapper-8bs2FwRi.js.map
37695
+ export { tableClassNames as $, token as A, Button$1 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, LoadingState as P, visuallyHidden as Q, Root$b as R, ShapeTokens as S, Typography as T, genSkeletonAnimatedColor as U, getOffsets as V, Wizard as W, DesignSystemEventSuppressInteractionProviderContext as X, DesignSystemEventSuppressInteractionTrueContextValue as Y, tableStyles as Z, repeatingElementsStyles as _, WizardControlled as a, MinusSquareIcon as a$, hideIconButtonRowStyles as a0, hideIconButtonActionCellClassName as a1, safex as a2, TitleSkeleton as a3, useDialogComboboxContext as a4, PlusIcon as a5, importantify as a6, getComboboxOptionItemWrapperStyles as a7, getFooterStyles as a8, useDialogComboboxOptionListContext as a9, Radio as aA, Checkbox as aB, DialogCombobox as aC, DialogComboboxTrigger as aD, DialogComboboxContent as aE, Select as aF, SelectTrigger as aG, SelectContent as aH, SelectOption as aI, LegacySelect as aJ, WarningIcon as aK, CheckCircleIcon as aL, DangerIcon as aM, Hint as aN, Title$1 as aO, CloseIcon as aP, RestoreAntDDefaultClsPrefix as aQ, AccessibleContainer as aR, DU_BOIS_ENABLE_ANIMATION_CLASSNAME as aS, Tag as aT, CircleOffIcon as aU, CircleOutlineIcon as aV, CircleIcon as aW, getBtnClassName as aX, SortAscendingIcon as aY, SortDescendingIcon as aZ, SortUnsortedIcon as a_, generateUuidV4 as aa, getContentOptions as ab, findHighlightedOption as ac, highlightOption as ad, Input as ae, SearchIcon as af, EmptyResults as ag, findClosestOptionSibling as ah, DialogComboboxOptionListCheckboxItem as ai, DialogComboboxOptionListSelectItem as aj, DialogComboboxOptionListContextProvider as ak, LoadingSpinner as al, DialogComboboxOptionList as am, useUniqueId as an, TypeaheadComboboxContextProvider as ao, useTypeaheadComboboxContext as ap, useDuboisThemeClass as aq, useDesignTokenOverrideStyles as ar, getComboboxContentWrapperStyles as as, ClearSelectionButton as at, TypeaheadComboboxSelectedItem$1 as au, CountBadge$1 as av, getValidationStateColor as aw, SectionHeader as ax, useComboboxState as ay, useMultipleSelectionState as az, WizardModal as b, BeakerIcon as b$, PlusSquareIcon as b0, TypeaheadComboboxV2ContextProvider as b1, useTypeaheadComboboxV2Context as b2, useRadixModalContext as b3, useIsomorphicLayoutEffect as b4, useScrollOptionIntoView as b5, InfoTooltip as b6, getInfoIconStyles as b7, HintRow as b8, getCheckboxStyles as b9, ArrowUpDotIcon as bA, ArrowUpFillIcon as bB, ArrowUpIcon as bC, ArrowsCollapseIcon as bD, ArrowsConnectIcon as bE, ArrowsExpandIcon as bF, ArrowsUpDownIcon as bG, AssistantIcon as bH, AtIcon as bI, Auth0Graphic as bJ, Auth0GraphicLarge as bK, AzHorizontalIcon as bL, AzVerticalIcon as bM, BANNER_MAX_HEIGHT as bN, BANNER_MIN_HEIGHT as bO, BackupIcon as bP, BadgeCodeIcon as bQ, BadgeCodeOffIcon as bR, Banner as bS, BarChartIcon as bT, BarGroupedIcon as bU, BarStackedIcon as bV, BarStackedPercentageIcon as bW, BarsAscendingHorizontalIcon as bX, BarsAscendingVerticalIcon as bY, BarsDescendingHorizontalIcon as bZ, BarsDescendingVerticalIcon as b_, getMenuItemStyles as ba, TypeaheadComboboxSelectedItem as bb, CountBadge as bc, TypeaheadComboboxMenuItem as bd, AccessDeniedGraphic as be, Accordion as bf, AccordionPanel as bg, AlignCenterIcon as bh, AlignJustifyIcon as bi, AlignLeftIcon as bj, AlignRightIcon as bk, AlignVerticalBottomIcon as bl, AlignVerticalCenterIcon as bm, AlignVerticalTopIcon as bn, AppIcon as bo, ApplyDesignSystemContextOverrides as bp, ApplyDesignSystemFlags as bq, ArrowDownDotIcon as br, ArrowDownFillIcon as bs, ArrowDownIcon as bt, ArrowInIcon as bu, ArrowInTableIcon as bv, ArrowLeftIcon as bw, ArrowOutTableIcon as bx, ArrowOverIcon as by, ArrowRightIcon as bz, WizardStepContentWrapper as c, CloudCheckIcon as c$, BinaryIcon as c0, BlockQuoteIcon as c1, BoldIcon as c2, BookIcon as c3, BookmarkFillIcon as c4, BookmarkIcon as c5, BooksIcon as c6, BracketsCheckIcon as c7, BracketsCurlyIcon as c8, BracketsErrorIcon as c9, CertifiedFillIcon as cA, CertifiedFillSmallIcon as cB, CertifiedIcon as cC, ChainIcon as cD, ChartLineIcon as cE, CheckCircleBadgeIcon as cF, CheckCircleSmallIcon as cG, CheckIcon as cH, CheckLineIcon as cI, CheckSmallIcon as cJ, CheckboxIcon as cK, ChecklistIcon as cL, ChevronDoubleDownIcon as cM, ChevronDoubleLeftIcon as cN, ChevronDoubleLeftOffIcon as cO, ChevronDoubleRightIcon as cP, ChevronDoubleRightOffIcon as cQ, ChevronDoubleUpIcon as cR, ChevronLeftIcon as cS, ChevronUpIcon as cT, ChipIcon as cU, CircleOffLargeIcon as cV, CircleOutlineLargeIcon as cW, ClipboardIcon as cX, ClockIcon as cY, ClockKeyIcon as cZ, ClockOffIcon as c_, BracketsSquareIcon as ca, BracketsXIcon as cb, BranchCheckIcon as cc, BranchIcon as cd, BranchResetIcon as ce, BriefcaseFillIcon as cf, BriefcaseIcon as cg, BrushIcon as ch, BugIcon as ci, CalendarClockIcon as cj, CalendarEventIcon as ck, CalendarIcon as cl, CalendarRangeIcon as cm, CalendarSyncIcon as cn, CameraIcon as co, CapitalizeIcon as cp, CaretDownSquareIcon as cq, CaretUpSquareIcon as cr, CatalogCloudIcon as cs, CatalogGearIcon as ct, CatalogHomeIcon as cu, CatalogIcon as cv, CatalogOffIcon as cw, CatalogSharedIcon as cx, CatalogUserHomeIcon as cy, CellsSquareIcon as cz, WizardStepNavigationProvider as d, Drawer as d$, CloudDatabaseIcon as d0, CloudDownloadIcon as d1, CloudIcon as d2, CloudKeyIcon as d3, CloudModelIcon as d4, CloudOffIcon as d5, CloudUploadIcon as d6, CodeIcon as d7, ColorFillIcon as d8, ColorMappingEditIcon as d9, DangerSmallIcon as dA, DashIcon as dB, DashboardCodeIcon as dC, DashboardIcon as dD, DataIcon as dE, DataMaskiingGraphic as dF, DatabaseClockIcon as dG, DatabaseIcon as dH, DatabaseImportIcon as dI, DatePicker as dJ, DecimalIcon as dK, DeprecatedIcon as dL, DeprecatedSmallIcon as dM, DesignSystemContext as dN, DesignSystemEventProviderComponentSubTypes as dO, DesignSystemProvider as dP, DesignSystemThemeContext as dQ, DesignSystemThemeProvider as dR, DialogComboboxCountBadge as dS, DialogComboboxCustomButtonTriggerWrapper as dT, DialogComboboxSectionHeader as dU, DollarIcon as dV, DomainCirclesThree as dW, DomainsIcon as dX, DotsCircleIcon as dY, DownloadIcon as dZ, DragIcon as d_, ColorMappingIcon as da, ColorVars as db, ColumnIcon as dc, ColumnSplitIcon as dd, ColumnTagIcon as de, ColumnsIcon as df, CommandIcon as dg, CommandPaletteIcon as dh, CompassIcon as di, ComponentFinderContext as dj, ConnectIcon as dk, Content$2 as dl, ContextMenu$1 as dm, CopyIcon as dn, CreditCardIcon as dp, CursorClickIcon as dq, CursorIcon as dr, CursorPagination as ds, CursorTypeIcon as dt, CustomAppIcon as du, DS_OVERRIDE_TOKENS_WRAPPER_TESTID as dv, DagHorizontalIcon as dw, DagIcon as dx, DagVerticalIcon as dy, DangerModal as dz, useWizardStepNavigation as e, GridIcon as e$, DropdownMenu as e0, Empty as e1, EmptyDashboardGraphic as e2, ErdIcon as e3, ExpandLessIcon as e4, ExpandMoreIcon as e5, FaceFrownIcon as e6, FaceNeutralIcon as e7, FaceSmileIcon as e8, FileCodeIcon as e9, FolderOpenCloudIcon as eA, FolderOpenCubeIcon as eB, FolderOpenIcon as eC, FolderOpenPipelineIcon as eD, FolderOutlinePipelineIcon as eE, FolderSolidPipelineIcon as eF, FontIcon as eG, ForkHorizontalIcon as eH, ForkIcon as eI, Form as eJ, FormContextResetBoundary as eK, FullscreenExitIcon as eL, FullscreenIcon as eM, FunctionIcon as eN, FunctionInputIcon as eO, GavelIcon as eP, GearFillIcon as eQ, GearIcon as eR, GenieCodeIcon as eS, GenieDeepResearchIcon as eT, GiftIcon as eU, GitCommitIcon as eV, GitMergeIcon as eW, GitRebaseIcon as eX, GlobeIcon as eY, Graphic as eZ, GridDashIcon as e_, FileCubeIcon as ea, FileDocumentIcon as eb, FileIcon as ec, FileImageIcon as ed, FileLockIcon as ee, FileModelIcon as ef, FileNewIcon as eg, FilePipelineIcon as eh, FilterFillIcon as ei, FilterIcon as ej, FlagPointerIcon as ek, FloatIcon as el, FlowIcon as em, FlowsIcon as en, FolderBranchFillIcon as eo, FolderBranchIcon as ep, FolderCloudFilledIcon as eq, FolderCloudIcon as er, FolderCubeIcon as es, FolderCubeOutlineIcon as et, FolderFillIcon as eu, FolderHomeIcon as ev, FolderIcon as ew, FolderNewIcon as ex, FolderNodeIcon as ey, FolderOpenBranchIcon as ez, DesignSystemEventProvider as f, LoopIcon as f$, GroupIcon as f0, H1Icon as f1, H2Icon as f2, H3Icon as f3, H4Icon as f4, H5Icon as f5, H6Icon as f6, HashIcon as f7, HistoryIcon as f8, HomeIcon as f9, LegacyOption as fA, LegacySelectOptGroup as fB, LegacySelectOption as fC, LegacyTable as fD, LegacyTooltip as fE, LetterFormatIcon as fF, LettersIcon as fG, LettersNumbersIcon as fH, LibrariesIcon as fI, LifesaverIcon as fJ, LightbulbIcon as fK, LightningCircleFillIcon as fL, LightningIcon as fM, LinearLineIcon as fN, LinkIcon as fO, LinkOffIcon as fP, ListBorderIcon as fQ, ListClearIcon as fR, ListIcon as fS, ListNumberIcon as fT, Listbox as fU, LoadingIcon as fV, LoadingStateContext as fW, LockFillIcon as fX, LockIcon as fY, LockShareIcon as fZ, LockUnlockedIcon as f_, Icon as fa, ImageIcon as fb, IndentDecreaseIcon as fc, IndentIncreaseIcon as fd, InfinityIcon as fe, InfoBookIcon as ff, InfoIcon as fg, IngestionIcon as fh, ItalicIcon as fi, JoinOperatorIcon as fj, KeyIcon as fk, KeyboardIcon as fl, LakebaseCatalogIcon as fm, LakebaseIcon as fn, LakeflowDesignerIcon as fo, LakewatchAlertIcon as fp, LakewatchDatasourceIcon as fq, LakewatchDetectionRuleIcon as fr, LakewatchParserIcon as fs, LayerGraphIcon as ft, LayerIcon as fu, Layout as fv, LeafIcon as fw, LegacyForm as fx, LegacyFormDubois as fy, LegacyOptGroup as fz, useDesignSystemTheme as g, PinIcon as g$, LowercaseIcon as g0, MailIcon as g1, MapIcon as g2, MarkdownIcon as g3, McpIcon as g4, MeasureIcon as g5, MegaphoneIcon as g6, MenuIcon as g7, MicrophoneIcon as g8, MicrophoneOffIcon as g9, OperatorIcon as gA, OutageGraphic as gB, OverflowHorizontalIcon as gC, OverflowIcon as gD, PageBottomIcon as gE, PageFirstIcon as gF, PageIcon as gG, PageLastIcon as gH, PageTopIcon as gI, Pagination as gJ, Panel as gK, PanelBody as gL, PanelDockedIcon as gM, PanelFloatingIcon as gN, PanelHeader as gO, PanelHeaderButtons as gP, PanelHeaderTitle as gQ, PaperclipIcon as gR, PassFailChecklistIcon as gS, PauseIcon as gT, PencilFillIcon as gU, PencilIcon as gV, PencilSparkleIcon as gW, PieChartIcon as gX, PillControl as gY, PinCancelIcon as gZ, PinFillIcon as g_, MinusCircleFillIcon as ga, MinusCircleIcon as gb, MinusCircleSmallIcon as gc, MissingBranchGraphic as gd, MissingGraphic as ge, ModelsIcon as gf, MonotoneLineIcon as gg, MonthPickerGrid as gh, MoonIcon as gi, Nav as gj, NavButton as gk, NavigationMenu as gl, NeonProjectIcon as gm, NewChatIcon as gn, NewTabIcon as go, NewWindowIcon as gp, NoCaseIcon as gq, NoIcon as gr, NotebookIcon as gs, NotebookPipelineIcon as gt, NotificationIcon as gu, NotificationOffIcon as gv, NumberFormatIcon as gw, NumbersIcon as gx, OfficeIcon as gy, OntologyIcon as gz, DesignTokenScope as h, SidebarAutoIcon as h$, PipelineCodeIcon as h0, PipelineCubeIcon as h1, PipelineIcon as h2, PivotOperatorIcon as h3, PlayCircleFillIcon as h4, PlayCircleIcon as h5, PlayDoubleIcon as h6, PlayIcon as h7, PlayMultipleIcon as h8, PlugIcon as h9, ResizeIcon as hA, RhfForm as hB, RichTextIcon as hC, RobotIcon as hD, RocketIcon as hE, RowsIcon as hF, RunIcon as hG, RunningIcon as hH, SMALL_BUTTON_HEIGHT$2 as hI, SaveClockIcon as hJ, SaveIcon as hK, SchemaIcon as hL, SchoolIcon as hM, SearchDataIcon as hN, SegmentedControlButton as hO, SegmentedControlGroup as hP, SelectContext as hQ, SelectContextProvider as hR, SelectOptionGroup as hS, SendIcon as hT, ShareIcon as hU, ShareNodesIcon as hV, ShieldCheckIcon as hW, ShieldIcon as hX, ShieldOffIcon as hY, ShortcutIcon as hZ, Sidebar as h_, PlusCircleFillIcon as ha, PlusCircleIcon as hb, PlusCircleSmallIcon as hc, PlusMinusSquareIcon as hd, Popover as he, PositionBottomIcon as hf, PositionLeftIcon as hg, PositionRightIcon as hh, PositionTopIcon as hi, PreviewCard as hj, Progress as hk, PullRequestIcon as hl, PuzzleIcon as hm, QueryEditorIcon as hn, QueryIcon as ho, QuestionMarkFillIcon as hp, QuestionMarkIcon as hq, RadioIcon as hr, RadioTile as hs, RangePicker as ht, ReaderModeIcon as hu, RedoIcon as hv, RefreshIcon as hw, RefreshPlayIcon as hx, RefreshXIcon as hy, ReplyIcon as hz, useDesignSystemContext as i, TableReportIcon as i$, SidebarClosedIcon as i0, SidebarCollapseIcon as i1, SidebarExpandIcon as i2, SidebarIcon as i3, SidebarOpenIcon as i4, SidebarSyncIcon as i5, SimpleSelect as i6, SimpleSelectOption as i7, SimpleSelectOptionGroup as i8, SlashSquareIcon as i9, SplitButton as iA, SqlIcon as iB, StarFillIcon as iC, StarIcon as iD, StepAfterLineIcon as iE, StepBeforeLineIcon as iF, Stepper as iG, StopCircleFillIcon as iH, StopCircleIcon as iI, StopIcon as iJ, StoredProcedureIcon as iK, StorefrontIcon as iL, StreamIcon as iM, StrikeThroughIcon as iN, SunIcon as iO, SyncIcon as iP, SyncSmallIcon as iQ, SyncToFileIcon as iR, TableAsteriskIcon as iS, TableClockIcon as iT, TableCombineIcon as iU, TableGlassesIcon as iV, TableGlobeIcon as iW, TableIcon as iX, TableLightningIcon as iY, TableMeasureIcon as iZ, TableModelIcon as i_, Slider as ia, SlidersIcon as ib, SnippetIcon as ic, SortCustomHorizontalIcon as id, SortCustomVerticalIcon as ie, SortHorizontalAscendingIcon as ig, SortHorizontalDescendingIcon as ih, SortLetterHorizontalAscendingIcon as ii, SortLetterHorizontalDescendingIcon as ij, SortLetterUnsortedIcon as ik, SortLetterVerticalAscendingIcon as il, SortLetterVerticalDescendingIcon as im, Spacer as io, SparkleDoubleFillIcon as ip, SparkleFillIcon as iq, SparkleIcon as ir, SparkleRectangleIcon as is, SpeechBubbleIcon as it, SpeechBubblePlusIcon as iu, SpeechBubbleQuestionMarkFillIcon as iv, SpeechBubbleQuestionMarkIcon as iw, SpeechBubbleStarIcon as ix, SpeedometerIcon as iy, Spinner as iz, WarningFillIcon as j, ZaHorizontalIcon as j$, TableStreamIcon as j0, TableVectorIcon as j1, TableViewIcon as j2, Tabs as j3, TagColumnIcon as j4, TagIcon as j5, TagTableIcon as j6, TargetIcon as j7, TerminalIcon as j8, TextBoxIcon 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_, TextColorIcon as ja, TextIcon as jb, TextJustifyIcon as jc, TextUnderlineIcon as jd, ThreeDotsIcon as je, ThumbsDownFilledIcon as jf, ThumbsDownIcon as jg, ThumbsUpFilledIcon as jh, ThumbsUpIcon as ji, ToggleButton as jj, TokenIcon as jk, Toolbar 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 };
37696
+ //# sourceMappingURL=WizardStepContentWrapper-Bq1wm0V7.js.map