@uniformdev/design-system 18.27.1-alpha.25 → 18.29.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/esm/index.js CHANGED
@@ -306,20 +306,6 @@ var buttonSecondaryInvert = css`
306
306
 
307
307
  ${buttonRippleEffect({ hoverColor: "var(--gray-50)" })}
308
308
  `;
309
- var buttonPrimaryInvert = css`
310
- background: var(--white);
311
- color: var(--brand-secondary-1);
312
- box-shadow: 0 0 0 1px var(--brand-secondary-1);
313
- transition: box-shadow var(--duration-fast) var(--timing-ease-out);
314
- gap: var(--spacing-sm);
315
-
316
- &:disabled {
317
- color: var(--gray-300);
318
- box-shadow: 0 0 0 1px var(--gray-300);
319
- }
320
-
321
- ${buttonRippleEffect({ hoverColor: "var(--gray-50)" })}
322
- `;
323
309
  var buttonUnimportant = css`
324
310
  background: var(--brand-secondary-2);
325
311
  color: var(--brand-secondary-1);
@@ -10405,7 +10391,6 @@ var Button = React5.forwardRef(
10405
10391
  ({ buttonType = "primary", size = "md", children, ...props }, ref) => {
10406
10392
  const buttonTheme = {
10407
10393
  primary: buttonPrimary,
10408
- primaryInvert: buttonPrimaryInvert,
10409
10394
  secondary: buttonSecondary,
10410
10395
  secondaryInvert: buttonSecondaryInvert,
10411
10396
  ghost: buttonGhost,
@@ -11317,8 +11302,7 @@ var drawerHeaderStyles = css27`
11317
11302
  font-weight: var(--fw-bold);
11318
11303
  padding-inline: var(--spacing-base);
11319
11304
  `;
11320
- var drawerRendererStyles = (position) => css27`
11321
- position: ${position};
11305
+ var drawerRendererStyles = css27`
11322
11306
  inset: 0;
11323
11307
  overflow: hidden;
11324
11308
  z-index: 40;
@@ -11454,19 +11438,30 @@ var DrawerRenderer = ({
11454
11438
  if (drawersToRender.length === 0) {
11455
11439
  return null;
11456
11440
  }
11457
- return /* @__PURE__ */ jsx31(CurrentDrawerRendererContext.Provider, { value: { stackId }, children: /* @__PURE__ */ jsx31("div", { css: drawerRendererStyles(position), ...otherProps, children: drawersToRender.map(({ component, id, stackId: stackId2, onRequestClose }, index) => /* @__PURE__ */ jsx31(
11458
- DrawerWrapper,
11441
+ return /* @__PURE__ */ jsx31(CurrentDrawerRendererContext.Provider, { value: { stackId }, children: /* @__PURE__ */ jsx31(
11442
+ "div",
11459
11443
  {
11460
- index,
11461
- totalDrawers: drawersToRender.length,
11462
- width,
11463
- minWidth,
11464
- maxWidth,
11465
- onOverlayClick: onRequestClose,
11466
- children: component
11467
- },
11468
- `${stackId2}-${id}`
11469
- )) }) });
11444
+ css: [
11445
+ drawerRendererStyles,
11446
+ { position },
11447
+ position === "sticky" ? { height: "100%", marginTop: "-100%" } : void 0
11448
+ ],
11449
+ ...otherProps,
11450
+ children: drawersToRender.map(({ component, id, stackId: stackId2, onRequestClose }, index) => /* @__PURE__ */ jsx31(
11451
+ DrawerWrapper,
11452
+ {
11453
+ index,
11454
+ totalDrawers: drawersToRender.length,
11455
+ width,
11456
+ minWidth,
11457
+ maxWidth,
11458
+ onOverlayClick: onRequestClose,
11459
+ children: component
11460
+ },
11461
+ `${stackId2}-${id}`
11462
+ ))
11463
+ }
11464
+ ) });
11470
11465
  };
11471
11466
  var DrawerWrapper = ({
11472
11467
  index,
@@ -12706,8 +12701,8 @@ var loadingDot = css44`
12706
12701
 
12707
12702
  // src/components/LoadingIndicator/LoadingIndicator.tsx
12708
12703
  import { jsx as jsx55, jsxs as jsxs33 } from "@emotion/react/jsx-runtime";
12709
- var LoadingIndicator = ({ ...props }) => {
12710
- return /* @__PURE__ */ jsxs33("div", { role: "alert", css: loader, "data-test-id": "loading-indicator", ...props, children: [
12704
+ var LoadingIndicator = () => {
12705
+ return /* @__PURE__ */ jsxs33("div", { css: loader, role: "alert", "data-test-id": "loading-indicator", children: [
12711
12706
  /* @__PURE__ */ jsx55("span", { css: loadingDot }),
12712
12707
  /* @__PURE__ */ jsx55("span", { css: loadingDot }),
12713
12708
  /* @__PURE__ */ jsx55("span", { css: loadingDot })
@@ -15075,7 +15070,6 @@ export {
15075
15070
  buttonGhost,
15076
15071
  buttonGhostDestructive,
15077
15072
  buttonPrimary,
15078
- buttonPrimaryInvert,
15079
15073
  buttonRippleEffect,
15080
15074
  buttonSecondary,
15081
15075
  buttonSecondaryInvert,
package/dist/index.d.ts CHANGED
@@ -67,7 +67,6 @@ declare const buttonRippleEffect: (props: {
67
67
  declare const buttonPrimary: _emotion_react.SerializedStyles;
68
68
  declare const buttonSecondary: _emotion_react.SerializedStyles;
69
69
  declare const buttonSecondaryInvert: _emotion_react.SerializedStyles;
70
- declare const buttonPrimaryInvert: _emotion_react.SerializedStyles;
71
70
  declare const buttonUnimportant: _emotion_react.SerializedStyles;
72
71
  declare const buttonGhost: _emotion_react.SerializedStyles;
73
72
  declare const buttonGhostDestructive: _emotion_react.SerializedStyles;
@@ -20185,7 +20184,7 @@ declare const UniformBadge: ({ theme, ...props }: React__default.SVGAttributes<S
20185
20184
  declare const UniformLogo: ({ theme, ...props }: UniformLogoProps & React.SVGAttributes<SVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
20186
20185
 
20187
20186
  /** Button themes that are available to use with our brand */
20188
- type ButtonThemeProps$1 = 'primary' | 'secondary' | 'tertiary' | 'unimportant' | 'ghost' | 'ghostDestructive' | 'primaryInvert' | 'secondaryInvert';
20187
+ type ButtonThemeProps$1 = 'primary' | 'secondary' | 'tertiary' | 'unimportant' | 'ghost' | 'ghostDestructive' | 'secondaryInvert';
20189
20188
  /** Button sizes that are available to use with our brand */
20190
20189
  type ButtonSizeProps = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
20191
20190
  type ButtonProps = ButtonProps$1 & {
@@ -20416,7 +20415,7 @@ interface DrawerRendererProps extends Omit<React__default.HTMLAttributes<HTMLDiv
20416
20415
  /** Sets the css position value
20417
20416
  * @default 'absolute'
20418
20417
  */
20419
- position?: 'absolute' | 'fixed';
20418
+ position?: 'absolute' | 'fixed' | 'sticky';
20420
20419
  }
20421
20420
  declare const useCurrentDrawerRenderer: () => {
20422
20421
  stackId?: string | undefined;
@@ -20926,7 +20925,7 @@ declare const ScrollableListItem: ({ buttonText, active, ...props }: ScrollableL
20926
20925
  * Loading Indicator
20927
20926
  * @example <LoadingIndicator />
20928
20927
  */
20929
- declare const LoadingIndicator: ({ ...props }: HTMLAttributes<HTMLDivElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
20928
+ declare const LoadingIndicator: () => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
20930
20929
 
20931
20930
  interface LoadingOverlayProps {
20932
20931
  /** sets whether to display the loading overlay components */
@@ -21787,4 +21786,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
21787
21786
  };
21788
21787
  declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21789
21788
 
21790
- export { ActionButtonsProps, AddButton, AddButtonProps, AddListButton, AddListButtonProps, AddListButtonThemeProps, AnimationFile, AnimationFileProps, ArrowPositionProps, Badge, BadgeProps, BoxHeightProps, BreakpointSize, BreakpointsMap, Button, ButtonProps, ButtonSizeProps, ButtonThemeProps$1 as ButtonThemeProps, ButtonWithMenu, ButtonWithMenuProps, Callout, CalloutProps, CalloutType, Caption, CaptionProps, Card, CardContainer, CardContainerBgColorProps, CardContainerProps, CardProps, CheckboxWithInfo, CheckboxWithInforProps, ChildFunction, ComboBoxGroupBase, ConnectToDataElementButton, ConnectToDataElementButtonProps, Container, ContainerProps, Counter, CounterProps, CreateTeamIntegrationTile, CreateTeamIntegrationTileProps, DashedBox, DashedBoxProps, Details, DetailsProps, Drawer, DrawerContextValue, DrawerItem, DrawerProps, DrawerProvider, DrawerRenderer, DrawerRendererItemProps, DrawerRendererProps, EditTeamIntegrationTile, EditTeamIntegrationTileProps, ErrorMessage, ErrorMessageProps, Fieldset, FieldsetProps, Heading, HeadingProps, HexModalBackground, Icon, IconColor, IconName, IconProps, IconType, IconsProvider, InlineAlert, InlineAlertProps, Input, InputComboBox, InputComboBoxOption, InputComboBoxProps, InputInlineSelect, InputInlineSelectOption, InputInlineSelectProps, InputKeywordSearch, InputKeywordSearchProps, InputProps, InputSelect, InputSelectProps, InputToggle, InputToggleProps, IntegrationComingSoon, IntegrationComingSoonProps, IntegrationHeaderSection, IntegrationHeaderSectionProps, IntegrationLoadingTile, IntegrationLoadingTileProps, IntegrationModalHeader, IntegrationModalHeaderProps, IntegrationModalIcon, IntegrationModalIconProps, IntegrationTile, IntegrationTileProps, JsonEditor, JsonEditorProps, Label, LabelProps, Legend, LegendProps, LevelProps, LimitsBar, LimitsBarProps, Link, LinkColorProps, LinkList, LinkListProps, LinkManagerWithRefType, LinkProps, LinkWithRef, LoadingIcon, LoadingIconProps, LoadingIndicator, LoadingOverlay, LoadingOverlayProps, Menu, MenuContext, MenuItem, MenuItemProps, MenuItemSeparator, MenuItemTextThemeProps, MenuProps, PageHeaderSection, PageHeaderSectionProps, Paragraph, ParagraphProps, ParameterDataConnectButtonProps, ParameterDataResource, ParameterDrawerHeader, ParameterDrawerHeaderProps, ParameterGroup, ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImageProps, ParameterInput, ParameterInputInner, ParameterInputProps, ParameterLabel, ParameterLabelProps, ParameterLink, ParameterLinkInner, ParameterLinkProps, ParameterMenuButton, ParameterMenuButtonProps, ParameterNameAndPublicIdInput, ParameterNameAndPublicIdInputProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, ParameterRichTextProps, ParameterSelect, ParameterSelectInner, ParameterSelectProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, ParameterShellProps, ParameterTextarea, ParameterTextareaInner, ParameterTextareaProps, ParameterToggle, ParameterToggleInner, ParameterToggleProps, Popover, PopoverProps, ProgressList, ProgressListItem, ProgressListItemProps, ProgressListProps, RegisterDrawerProps, ResolveIcon, ResolveIconProps, ScrollableItemProps, ScrollableList, ScrollableListInputItem, ScrollableListItem, ScrollableListItemProps, ScrollableListProps, ShortcutContext, ShortcutRevealer, Skeleton, SkeletonProps, StatusBullet, StatusBulletProps, StatusTypeProps, Switch, SwitchProps, TabButton, TabButtonGroup, TabButtonProps, TabContent, TabContentProps, Table, TableBody, TableBodyProps, TableCellData, TableCellDataProps, TableCellHead, TableCellHeadProps, TableFoot, TableFootProps, TableHead, TableHeadProps, TableProps, TableRow, TableRowProps, Tabs, TabsProps, TextAlignProps, Textarea, TextareaProps, Theme, ThemeProps, TileContainer, TileContainerProps, Tooltip, TooltipProps, UniformBadge, UniformLogo, UniformLogoProps, UseShortcutOptions, VerticalRhythm, VerticalRhythmProps, WarningMessage, WarningMessageProps, breakpoints, button, buttonGhost, buttonGhostDestructive, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonTertiary, buttonUnimportant, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, growSubtle, input, inputError, inputSelect, isMacLike, labelText, loader as loaderAnimationData, macifyShortcut, mq, ripple, scrollbarStyles, skeletonLoading, spinner as spinnerAnimationData, supports, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawerRenderer, useCurrentTab, useDrawer, useIconContext, useMenuContext, useOutsideClick, useParameterShell, useShortcut };
21789
+ export { ActionButtonsProps, AddButton, AddButtonProps, AddListButton, AddListButtonProps, AddListButtonThemeProps, AnimationFile, AnimationFileProps, ArrowPositionProps, Badge, BadgeProps, BoxHeightProps, BreakpointSize, BreakpointsMap, Button, ButtonProps, ButtonSizeProps, ButtonThemeProps$1 as ButtonThemeProps, ButtonWithMenu, ButtonWithMenuProps, Callout, CalloutProps, CalloutType, Caption, CaptionProps, Card, CardContainer, CardContainerBgColorProps, CardContainerProps, CardProps, CheckboxWithInfo, CheckboxWithInforProps, ChildFunction, ComboBoxGroupBase, ConnectToDataElementButton, ConnectToDataElementButtonProps, Container, ContainerProps, Counter, CounterProps, CreateTeamIntegrationTile, CreateTeamIntegrationTileProps, DashedBox, DashedBoxProps, Details, DetailsProps, Drawer, DrawerContextValue, DrawerItem, DrawerProps, DrawerProvider, DrawerRenderer, DrawerRendererItemProps, DrawerRendererProps, EditTeamIntegrationTile, EditTeamIntegrationTileProps, ErrorMessage, ErrorMessageProps, Fieldset, FieldsetProps, Heading, HeadingProps, HexModalBackground, Icon, IconColor, IconName, IconProps, IconType, IconsProvider, InlineAlert, InlineAlertProps, Input, InputComboBox, InputComboBoxOption, InputComboBoxProps, InputInlineSelect, InputInlineSelectOption, InputInlineSelectProps, InputKeywordSearch, InputKeywordSearchProps, InputProps, InputSelect, InputSelectProps, InputToggle, InputToggleProps, IntegrationComingSoon, IntegrationComingSoonProps, IntegrationHeaderSection, IntegrationHeaderSectionProps, IntegrationLoadingTile, IntegrationLoadingTileProps, IntegrationModalHeader, IntegrationModalHeaderProps, IntegrationModalIcon, IntegrationModalIconProps, IntegrationTile, IntegrationTileProps, JsonEditor, JsonEditorProps, Label, LabelProps, Legend, LegendProps, LevelProps, LimitsBar, LimitsBarProps, Link, LinkColorProps, LinkList, LinkListProps, LinkManagerWithRefType, LinkProps, LinkWithRef, LoadingIcon, LoadingIconProps, LoadingIndicator, LoadingOverlay, LoadingOverlayProps, Menu, MenuContext, MenuItem, MenuItemProps, MenuItemSeparator, MenuItemTextThemeProps, MenuProps, PageHeaderSection, PageHeaderSectionProps, Paragraph, ParagraphProps, ParameterDataConnectButtonProps, ParameterDataResource, ParameterDrawerHeader, ParameterDrawerHeaderProps, ParameterGroup, ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImageProps, ParameterInput, ParameterInputInner, ParameterInputProps, ParameterLabel, ParameterLabelProps, ParameterLink, ParameterLinkInner, ParameterLinkProps, ParameterMenuButton, ParameterMenuButtonProps, ParameterNameAndPublicIdInput, ParameterNameAndPublicIdInputProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, ParameterRichTextProps, ParameterSelect, ParameterSelectInner, ParameterSelectProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, ParameterShellProps, ParameterTextarea, ParameterTextareaInner, ParameterTextareaProps, ParameterToggle, ParameterToggleInner, ParameterToggleProps, Popover, PopoverProps, ProgressList, ProgressListItem, ProgressListItemProps, ProgressListProps, RegisterDrawerProps, ResolveIcon, ResolveIconProps, ScrollableItemProps, ScrollableList, ScrollableListInputItem, ScrollableListItem, ScrollableListItemProps, ScrollableListProps, ShortcutContext, ShortcutRevealer, Skeleton, SkeletonProps, StatusBullet, StatusBulletProps, StatusTypeProps, Switch, SwitchProps, TabButton, TabButtonGroup, TabButtonProps, TabContent, TabContentProps, Table, TableBody, TableBodyProps, TableCellData, TableCellDataProps, TableCellHead, TableCellHeadProps, TableFoot, TableFootProps, TableHead, TableHeadProps, TableProps, TableRow, TableRowProps, Tabs, TabsProps, TextAlignProps, Textarea, TextareaProps, Theme, ThemeProps, TileContainer, TileContainerProps, Tooltip, TooltipProps, UniformBadge, UniformLogo, UniformLogoProps, UseShortcutOptions, VerticalRhythm, VerticalRhythmProps, WarningMessage, WarningMessageProps, breakpoints, button, buttonGhost, buttonGhostDestructive, buttonPrimary, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonTertiary, buttonUnimportant, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, growSubtle, input, inputError, inputSelect, isMacLike, labelText, loader as loaderAnimationData, macifyShortcut, mq, ripple, scrollbarStyles, skeletonLoading, spinner as spinnerAnimationData, supports, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawerRenderer, useCurrentTab, useDrawer, useIconContext, useMenuContext, useOutsideClick, useParameterShell, useShortcut };
package/dist/index.js CHANGED
@@ -146,7 +146,6 @@ __export(src_exports, {
146
146
  buttonGhost: () => buttonGhost,
147
147
  buttonGhostDestructive: () => buttonGhostDestructive,
148
148
  buttonPrimary: () => buttonPrimary,
149
- buttonPrimaryInvert: () => buttonPrimaryInvert,
150
149
  buttonRippleEffect: () => buttonRippleEffect,
151
150
  buttonSecondary: () => buttonSecondary,
152
151
  buttonSecondaryInvert: () => buttonSecondaryInvert,
@@ -494,20 +493,6 @@ var buttonSecondaryInvert = import_react3.css`
494
493
 
495
494
  ${buttonRippleEffect({ hoverColor: "var(--gray-50)" })}
496
495
  `;
497
- var buttonPrimaryInvert = import_react3.css`
498
- background: var(--white);
499
- color: var(--brand-secondary-1);
500
- box-shadow: 0 0 0 1px var(--brand-secondary-1);
501
- transition: box-shadow var(--duration-fast) var(--timing-ease-out);
502
- gap: var(--spacing-sm);
503
-
504
- &:disabled {
505
- color: var(--gray-300);
506
- box-shadow: 0 0 0 1px var(--gray-300);
507
- }
508
-
509
- ${buttonRippleEffect({ hoverColor: "var(--gray-50)" })}
510
- `;
511
496
  var buttonUnimportant = import_react3.css`
512
497
  background: var(--brand-secondary-2);
513
498
  color: var(--brand-secondary-1);
@@ -10593,7 +10578,6 @@ var Button = React5.forwardRef(
10593
10578
  ({ buttonType = "primary", size = "md", children, ...props }, ref) => {
10594
10579
  const buttonTheme = {
10595
10580
  primary: buttonPrimary,
10596
- primaryInvert: buttonPrimaryInvert,
10597
10581
  secondary: buttonSecondary,
10598
10582
  secondaryInvert: buttonSecondaryInvert,
10599
10583
  ghost: buttonGhost,
@@ -11501,8 +11485,7 @@ var drawerHeaderStyles = import_react34.css`
11501
11485
  font-weight: var(--fw-bold);
11502
11486
  padding-inline: var(--spacing-base);
11503
11487
  `;
11504
- var drawerRendererStyles = (position) => import_react34.css`
11505
- position: ${position};
11488
+ var drawerRendererStyles = import_react34.css`
11506
11489
  inset: 0;
11507
11490
  overflow: hidden;
11508
11491
  z-index: 40;
@@ -11638,19 +11621,30 @@ var DrawerRenderer = ({
11638
11621
  if (drawersToRender.length === 0) {
11639
11622
  return null;
11640
11623
  }
11641
- return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(CurrentDrawerRendererContext.Provider, { value: { stackId }, children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { css: drawerRendererStyles(position), ...otherProps, children: drawersToRender.map(({ component, id, stackId: stackId2, onRequestClose }, index) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
11642
- DrawerWrapper,
11624
+ return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(CurrentDrawerRendererContext.Provider, { value: { stackId }, children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
11625
+ "div",
11643
11626
  {
11644
- index,
11645
- totalDrawers: drawersToRender.length,
11646
- width,
11647
- minWidth,
11648
- maxWidth,
11649
- onOverlayClick: onRequestClose,
11650
- children: component
11651
- },
11652
- `${stackId2}-${id}`
11653
- )) }) });
11627
+ css: [
11628
+ drawerRendererStyles,
11629
+ { position },
11630
+ position === "sticky" ? { height: "100%", marginTop: "-100%" } : void 0
11631
+ ],
11632
+ ...otherProps,
11633
+ children: drawersToRender.map(({ component, id, stackId: stackId2, onRequestClose }, index) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
11634
+ DrawerWrapper,
11635
+ {
11636
+ index,
11637
+ totalDrawers: drawersToRender.length,
11638
+ width,
11639
+ minWidth,
11640
+ maxWidth,
11641
+ onOverlayClick: onRequestClose,
11642
+ children: component
11643
+ },
11644
+ `${stackId2}-${id}`
11645
+ ))
11646
+ }
11647
+ ) });
11654
11648
  };
11655
11649
  var DrawerWrapper = ({
11656
11650
  index,
@@ -12890,8 +12884,8 @@ var loadingDot = import_react58.css`
12890
12884
 
12891
12885
  // src/components/LoadingIndicator/LoadingIndicator.tsx
12892
12886
  var import_jsx_runtime54 = require("@emotion/react/jsx-runtime");
12893
- var LoadingIndicator = ({ ...props }) => {
12894
- return /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)("div", { role: "alert", css: loader, "data-test-id": "loading-indicator", ...props, children: [
12887
+ var LoadingIndicator = () => {
12888
+ return /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)("div", { css: loader, role: "alert", "data-test-id": "loading-indicator", children: [
12895
12889
  /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("span", { css: loadingDot }),
12896
12890
  /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("span", { css: loadingDot }),
12897
12891
  /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("span", { css: loadingDot })
@@ -15246,7 +15240,6 @@ var StatusBullet = ({
15246
15240
  buttonGhost,
15247
15241
  buttonGhostDestructive,
15248
15242
  buttonPrimary,
15249
- buttonPrimaryInvert,
15250
15243
  buttonRippleEffect,
15251
15244
  buttonSecondary,
15252
15245
  buttonSecondaryInvert,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/design-system",
3
- "version": "18.27.1-alpha.25+16ccb5a67",
3
+ "version": "18.29.0",
4
4
  "description": "Uniform design system components",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -39,7 +39,7 @@
39
39
  "react-hotkeys-hook": "4.3.8",
40
40
  "react-icons": "4.8.0",
41
41
  "react-paginate": "8.1.4",
42
- "react-select": "5.7.0",
42
+ "react-select": "5.7.2",
43
43
  "react-use": "17.4.0",
44
44
  "reakit": "1.3.11",
45
45
  "zod-to-json-schema": "3.20.4"
@@ -54,5 +54,5 @@
54
54
  "publishConfig": {
55
55
  "access": "public"
56
56
  },
57
- "gitHead": "16ccb5a67849a262c250651e2574d64a7edd12a2"
57
+ "gitHead": "6f1bd112312b3a261b71cd94ea3e74151fc5b0d2"
58
58
  }