@astral/ui 4.17.5 → 4.18.0-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/components/Button/Button.js +2 -3
  2. package/components/Button/constants.d.ts +0 -1
  3. package/components/Button/constants.js +0 -1
  4. package/components/ConfirmAction/constants.d.ts +0 -3
  5. package/components/ConfirmAction/constants.js +0 -4
  6. package/components/ConfirmAction/index.d.ts +0 -1
  7. package/components/ConfirmAction/index.js +0 -1
  8. package/components/ConfirmAction/useLogic/useLogic.d.ts +0 -2
  9. package/components/ConfirmAction/useLogic/useLogic.js +0 -3
  10. package/components/MaskField/MaskField.js +2 -8
  11. package/components/SideDialogActions/styles.js +1 -1
  12. package/components/SideDialogContent/styles.js +2 -1
  13. package/components/fileUploading/FileUploaderDropzone/DropzoneWrapper/styles.js +3 -3
  14. package/components/index.d.ts +1 -1
  15. package/components/index.js +1 -1
  16. package/node/components/Button/Button.js +2 -3
  17. package/node/components/Button/constants.d.ts +0 -1
  18. package/node/components/Button/constants.js +0 -1
  19. package/node/components/ConfirmAction/constants.d.ts +0 -3
  20. package/node/components/ConfirmAction/constants.js +1 -5
  21. package/node/components/ConfirmAction/index.d.ts +0 -1
  22. package/node/components/ConfirmAction/index.js +1 -3
  23. package/node/components/ConfirmAction/useLogic/useLogic.d.ts +0 -2
  24. package/node/components/ConfirmAction/useLogic/useLogic.js +0 -3
  25. package/node/components/MaskField/MaskField.js +2 -8
  26. package/node/components/SideDialogActions/styles.js +1 -1
  27. package/node/components/SideDialogContent/styles.js +2 -1
  28. package/node/components/fileUploading/FileUploaderDropzone/DropzoneWrapper/styles.js +3 -3
  29. package/node/components/index.d.ts +1 -1
  30. package/node/components/index.js +3 -4
  31. package/package.json +1 -1
@@ -9,10 +9,9 @@ const UnwrappedButton = (props, ref) => {
9
9
  const { loadingIndicatorColor } = useLogic(props);
10
10
  const { variant = ButtonVariants.Contained, color = variant === ButtonVariants.Text
11
11
  ? ButtonColors.Grey
12
- : ButtonColors.Primary, loading, disabled, children, className, selected, ...restProps } = props;
13
- return (_jsxs(StyledButton, { variant: variant, ref: ref, color: color, disabled: disabled, selected: selected, ...restProps, className: classNames(className, {
12
+ : ButtonColors.Primary, loading, disabled, children, className, ...restProps } = props;
13
+ return (_jsxs(StyledButton, { variant: variant, ref: ref, color: color, disabled: disabled, ...restProps, className: classNames(className, {
14
14
  [buttonClassnames.loading]: loading,
15
- [buttonClassnames.selected]: selected,
16
15
  }), "aria-disabled": loading, children: [loading && (_jsx(StyledLoader, { color: loadingIndicatorColor, size: "small", "$color": color, "$variant": variant, "$isDisabled": disabled })), children] }));
17
16
  };
18
17
  export const Button = forwardRefWithGeneric(UnwrappedButton);
@@ -1,5 +1,4 @@
1
1
  export { buttonClasses } from '@mui/material';
2
2
  export declare const buttonClassnames: {
3
3
  loading: string;
4
- selected: string;
5
4
  };
@@ -2,5 +2,4 @@ import { createUIKitClassname } from '../utils';
2
2
  export { buttonClasses } from '@mui/material';
3
3
  export const buttonClassnames = {
4
4
  loading: createUIKitClassname('button_loading'),
5
- selected: createUIKitClassname('button_selected'),
6
5
  };
@@ -6,6 +6,3 @@ export declare const DEFAULT_TRANSFORM_ORIGIN: {
6
6
  vertical: string;
7
7
  horizontal: string;
8
8
  };
9
- export declare const confirmActionClassnames: {
10
- actionComponent: string;
11
- };
@@ -1,4 +1,3 @@
1
- import { createUIKitClassname } from '../utils';
2
1
  export const DEFAULT_ANCHOR_ORIGIN = {
3
2
  vertical: 'bottom',
4
3
  horizontal: 'right',
@@ -7,6 +6,3 @@ export const DEFAULT_TRANSFORM_ORIGIN = {
7
6
  vertical: 'top',
8
7
  horizontal: 'right',
9
8
  };
10
- export const confirmActionClassnames = {
11
- actionComponent: createUIKitClassname('confirm-action__action-component'),
12
- };
@@ -1,2 +1 @@
1
1
  export { ConfirmAction, type ConfirmActionProps, type ActionComponentParams, } from './ConfirmAction';
2
- export { confirmActionClassnames } from './constants';
@@ -1,2 +1 @@
1
1
  export { ConfirmAction, } from './ConfirmAction';
2
- export { confirmActionClassnames } from './constants';
@@ -5,8 +5,6 @@ type UseLogicParams = ConfirmActionProps;
5
5
  export declare const useLogic: ({ confirmButtonProps: externalConfirmButtonProps, onConfirm, }: UseLogicParams) => {
6
6
  actionComponentProps: {
7
7
  onClick: (event: import("react").SyntheticEvent<Element, Event>) => void;
8
- className: string;
9
- selected: boolean;
10
8
  };
11
9
  popoverProps: {
12
10
  open: boolean;
@@ -1,6 +1,5 @@
1
1
  import { ButtonColors, ButtonVariants } from '../../Button';
2
2
  import { usePopover } from '../../hooks';
3
- import { confirmActionClassnames } from '../constants';
4
3
  export const useLogic = ({ confirmButtonProps: externalConfirmButtonProps, onConfirm, }) => {
5
4
  const { isOpen, anchor, actions } = usePopover();
6
5
  const { isAccented } = externalConfirmButtonProps || {};
@@ -17,8 +16,6 @@ export const useLogic = ({ confirmButtonProps: externalConfirmButtonProps, onCon
17
16
  return {
18
17
  actionComponentProps: {
19
18
  onClick: actions.open,
20
- className: confirmActionClassnames.actionComponent,
21
- selected: isOpen,
22
19
  },
23
20
  popoverProps: {
24
21
  open: isOpen,
@@ -2,7 +2,7 @@ import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { forwardRef } from 'react';
3
3
  import { IMaskMixin } from 'react-imask';
4
4
  import { TextField } from '../TextField';
5
- const MaskedTextField = IMaskMixin(({ ...props }) => {
5
+ const MaskedTextField = IMaskMixin(({ onChange, ...props }) => {
6
6
  const textFieldProps = props;
7
7
  return _jsx(TextField, { ...textFieldProps });
8
8
  });
@@ -14,12 +14,6 @@ export const MaskField = forwardRef(({ onChange, onAccept, ...props }, ref) => {
14
14
  }
15
15
  onChange?.(value);
16
16
  };
17
- const handleOnChange = (event) => {
18
- // Вызов onChange чинит валидацию пустого поля на onBlur внутри Wizard
19
- if (event.target.value === '') {
20
- onChange?.(event.target.value);
21
- }
22
- };
23
17
  // фикс фокуса при клике на submit формы
24
18
  // (достигается путем вызова ref)
25
19
  const newRef = (...args) => {
@@ -28,5 +22,5 @@ export const MaskField = forwardRef(({ onChange, onAccept, ...props }, ref) => {
28
22
  }
29
23
  return ref;
30
24
  };
31
- return (_jsx(MaskedTextField, { ...maskFieldProps, inputRef: newRef, onAccept: handleMaskFieldAccept, onChange: handleOnChange }));
25
+ return (_jsx(MaskedTextField, { ...maskFieldProps, inputRef: newRef, onAccept: handleMaskFieldAccept }));
32
26
  });
@@ -3,7 +3,7 @@ import { styled } from '../styles';
3
3
  export const StyledDialogActions = styled(DialogActions) `
4
4
  position: relative;
5
5
 
6
- padding: ${({ theme }) => theme.spacing(4, 6)};
6
+ padding-top: ${({ theme }) => theme.spacing(6)};
7
7
 
8
8
  /* Декоративный разделитель между действиями и контентной частью SideDialog */
9
9
  &::after {
@@ -1,5 +1,6 @@
1
1
  import { DialogContent } from '../DialogContent';
2
2
  import { styled } from '../styles';
3
3
  export const StyledDialogContent = styled(DialogContent) `
4
- padding: ${({ theme }) => theme.spacing(4, 6)};
4
+ padding-top: ${({ theme }) => theme.spacing(4)};
5
+ padding-bottom: 0;
5
6
  `;
@@ -15,10 +15,10 @@ export const Wrapper = styled.div `
15
15
 
16
16
  min-height: 88px;
17
17
  padding: ${({ theme }) => theme.spacing(4)};
18
-
19
- border: 1px dashed
20
- ${({ theme, $isActive, $isError }) => getBorderColor(theme, $isActive, $isError)};
18
+
21
19
  border-radius: ${({ theme }) => theme.shape.medium};
20
+ outline: 1px dashed
21
+ ${({ theme, $isActive, $isError }) => getBorderColor(theme, $isActive, $isError)};
22
22
 
23
23
  transition: ${({ theme }) => theme.transitions.create(['background', 'border'], {
24
24
  duration: theme.transitions.duration.short,
@@ -27,7 +27,7 @@ export * from './Collapse';
27
27
  export * from './CollapsibleTypography';
28
28
  export { ComplianceStatus, type ComplianceStatusItem, type ComplianceStatusProps, } from './ComplianceStatus';
29
29
  export * from './ConfigProvider';
30
- export { ConfirmAction, type ConfirmActionProps, confirmActionClassnames, } from './ConfirmAction';
30
+ export { ConfirmAction, type ConfirmActionProps } from './ConfirmAction';
31
31
  export * from './ConfirmDialog';
32
32
  export * from './ContentState';
33
33
  export { CopyTypography, type CopyTypographyProps } from './CopyTypography';
@@ -27,7 +27,7 @@ export * from './Collapse';
27
27
  export * from './CollapsibleTypography';
28
28
  export { ComplianceStatus, } from './ComplianceStatus';
29
29
  export * from './ConfigProvider';
30
- export { ConfirmAction, confirmActionClassnames, } from './ConfirmAction';
30
+ export { ConfirmAction } from './ConfirmAction';
31
31
  export * from './ConfirmDialog';
32
32
  export * from './ContentState';
33
33
  export { CopyTypography } from './CopyTypography';
@@ -12,10 +12,9 @@ const UnwrappedButton = (props, ref) => {
12
12
  const { loadingIndicatorColor } = (0, useLogic_1.useLogic)(props);
13
13
  const { variant = enums_1.ButtonVariants.Contained, color = variant === enums_1.ButtonVariants.Text
14
14
  ? enums_1.ButtonColors.Grey
15
- : enums_1.ButtonColors.Primary, loading, disabled, children, className, selected, ...restProps } = props;
16
- return ((0, jsx_runtime_1.jsxs)(styles_1.StyledButton, { variant: variant, ref: ref, color: color, disabled: disabled, selected: selected, ...restProps, className: (0, utils_1.classNames)(className, {
15
+ : enums_1.ButtonColors.Primary, loading, disabled, children, className, ...restProps } = props;
16
+ return ((0, jsx_runtime_1.jsxs)(styles_1.StyledButton, { variant: variant, ref: ref, color: color, disabled: disabled, ...restProps, className: (0, utils_1.classNames)(className, {
17
17
  [constants_1.buttonClassnames.loading]: loading,
18
- [constants_1.buttonClassnames.selected]: selected,
19
18
  }), "aria-disabled": loading, children: [loading && ((0, jsx_runtime_1.jsx)(styles_1.StyledLoader, { color: loadingIndicatorColor, size: "small", "$color": color, "$variant": variant, "$isDisabled": disabled })), children] }));
20
19
  };
21
20
  exports.Button = (0, forwardRefWithGeneric_1.forwardRefWithGeneric)(UnwrappedButton);
@@ -1,5 +1,4 @@
1
1
  export { buttonClasses } from '@mui/material';
2
2
  export declare const buttonClassnames: {
3
3
  loading: string;
4
- selected: string;
5
4
  };
@@ -6,5 +6,4 @@ var material_1 = require("@mui/material");
6
6
  Object.defineProperty(exports, "buttonClasses", { enumerable: true, get: function () { return material_1.buttonClasses; } });
7
7
  exports.buttonClassnames = {
8
8
  loading: (0, utils_1.createUIKitClassname)('button_loading'),
9
- selected: (0, utils_1.createUIKitClassname)('button_selected'),
10
9
  };
@@ -6,6 +6,3 @@ export declare const DEFAULT_TRANSFORM_ORIGIN: {
6
6
  vertical: string;
7
7
  horizontal: string;
8
8
  };
9
- export declare const confirmActionClassnames: {
10
- actionComponent: string;
11
- };
@@ -1,7 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.confirmActionClassnames = exports.DEFAULT_TRANSFORM_ORIGIN = exports.DEFAULT_ANCHOR_ORIGIN = void 0;
4
- const utils_1 = require("../utils");
3
+ exports.DEFAULT_TRANSFORM_ORIGIN = exports.DEFAULT_ANCHOR_ORIGIN = void 0;
5
4
  exports.DEFAULT_ANCHOR_ORIGIN = {
6
5
  vertical: 'bottom',
7
6
  horizontal: 'right',
@@ -10,6 +9,3 @@ exports.DEFAULT_TRANSFORM_ORIGIN = {
10
9
  vertical: 'top',
11
10
  horizontal: 'right',
12
11
  };
13
- exports.confirmActionClassnames = {
14
- actionComponent: (0, utils_1.createUIKitClassname)('confirm-action__action-component'),
15
- };
@@ -1,2 +1 @@
1
1
  export { ConfirmAction, type ConfirmActionProps, type ActionComponentParams, } from './ConfirmAction';
2
- export { confirmActionClassnames } from './constants';
@@ -1,7 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.confirmActionClassnames = exports.ConfirmAction = void 0;
3
+ exports.ConfirmAction = void 0;
4
4
  var ConfirmAction_1 = require("./ConfirmAction");
5
5
  Object.defineProperty(exports, "ConfirmAction", { enumerable: true, get: function () { return ConfirmAction_1.ConfirmAction; } });
6
- var constants_1 = require("./constants");
7
- Object.defineProperty(exports, "confirmActionClassnames", { enumerable: true, get: function () { return constants_1.confirmActionClassnames; } });
@@ -5,8 +5,6 @@ type UseLogicParams = ConfirmActionProps;
5
5
  export declare const useLogic: ({ confirmButtonProps: externalConfirmButtonProps, onConfirm, }: UseLogicParams) => {
6
6
  actionComponentProps: {
7
7
  onClick: (event: import("react").SyntheticEvent<Element, Event>) => void;
8
- className: string;
9
- selected: boolean;
10
8
  };
11
9
  popoverProps: {
12
10
  open: boolean;
@@ -3,7 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.useLogic = void 0;
4
4
  const Button_1 = require("../../Button");
5
5
  const hooks_1 = require("../../hooks");
6
- const constants_1 = require("../constants");
7
6
  const useLogic = ({ confirmButtonProps: externalConfirmButtonProps, onConfirm, }) => {
8
7
  const { isOpen, anchor, actions } = (0, hooks_1.usePopover)();
9
8
  const { isAccented } = externalConfirmButtonProps || {};
@@ -20,8 +19,6 @@ const useLogic = ({ confirmButtonProps: externalConfirmButtonProps, onConfirm, }
20
19
  return {
21
20
  actionComponentProps: {
22
21
  onClick: actions.open,
23
- className: constants_1.confirmActionClassnames.actionComponent,
24
- selected: isOpen,
25
22
  },
26
23
  popoverProps: {
27
24
  open: isOpen,
@@ -5,7 +5,7 @@ const jsx_runtime_1 = require("react/jsx-runtime");
5
5
  const react_1 = require("react");
6
6
  const react_imask_1 = require("react-imask");
7
7
  const TextField_1 = require("../TextField");
8
- const MaskedTextField = (0, react_imask_1.IMaskMixin)(({ ...props }) => {
8
+ const MaskedTextField = (0, react_imask_1.IMaskMixin)(({ onChange, ...props }) => {
9
9
  const textFieldProps = props;
10
10
  return (0, jsx_runtime_1.jsx)(TextField_1.TextField, { ...textFieldProps });
11
11
  });
@@ -17,12 +17,6 @@ exports.MaskField = (0, react_1.forwardRef)(({ onChange, onAccept, ...props }, r
17
17
  }
18
18
  onChange?.(value);
19
19
  };
20
- const handleOnChange = (event) => {
21
- // Вызов onChange чинит валидацию пустого поля на onBlur внутри Wizard
22
- if (event.target.value === '') {
23
- onChange?.(event.target.value);
24
- }
25
- };
26
20
  // фикс фокуса при клике на submit формы
27
21
  // (достигается путем вызова ref)
28
22
  const newRef = (...args) => {
@@ -31,5 +25,5 @@ exports.MaskField = (0, react_1.forwardRef)(({ onChange, onAccept, ...props }, r
31
25
  }
32
26
  return ref;
33
27
  };
34
- return ((0, jsx_runtime_1.jsx)(MaskedTextField, { ...maskFieldProps, inputRef: newRef, onAccept: handleMaskFieldAccept, onChange: handleOnChange }));
28
+ return ((0, jsx_runtime_1.jsx)(MaskedTextField, { ...maskFieldProps, inputRef: newRef, onAccept: handleMaskFieldAccept }));
35
29
  });
@@ -6,7 +6,7 @@ const styles_1 = require("../styles");
6
6
  exports.StyledDialogActions = (0, styles_1.styled)(DialogActions_1.DialogActions) `
7
7
  position: relative;
8
8
 
9
- padding: ${({ theme }) => theme.spacing(4, 6)};
9
+ padding-top: ${({ theme }) => theme.spacing(6)};
10
10
 
11
11
  /* Декоративный разделитель между действиями и контентной частью SideDialog */
12
12
  &::after {
@@ -4,5 +4,6 @@ exports.StyledDialogContent = void 0;
4
4
  const DialogContent_1 = require("../DialogContent");
5
5
  const styles_1 = require("../styles");
6
6
  exports.StyledDialogContent = (0, styles_1.styled)(DialogContent_1.DialogContent) `
7
- padding: ${({ theme }) => theme.spacing(4, 6)};
7
+ padding-top: ${({ theme }) => theme.spacing(4)};
8
+ padding-bottom: 0;
8
9
  `;
@@ -18,10 +18,10 @@ exports.Wrapper = styles_1.styled.div `
18
18
 
19
19
  min-height: 88px;
20
20
  padding: ${({ theme }) => theme.spacing(4)};
21
-
22
- border: 1px dashed
23
- ${({ theme, $isActive, $isError }) => getBorderColor(theme, $isActive, $isError)};
21
+
24
22
  border-radius: ${({ theme }) => theme.shape.medium};
23
+ outline: 1px dashed
24
+ ${({ theme, $isActive, $isError }) => getBorderColor(theme, $isActive, $isError)};
25
25
 
26
26
  transition: ${({ theme }) => theme.transitions.create(['background', 'border'], {
27
27
  duration: theme.transitions.duration.short,
@@ -27,7 +27,7 @@ export * from './Collapse';
27
27
  export * from './CollapsibleTypography';
28
28
  export { ComplianceStatus, type ComplianceStatusItem, type ComplianceStatusProps, } from './ComplianceStatus';
29
29
  export * from './ConfigProvider';
30
- export { ConfirmAction, type ConfirmActionProps, confirmActionClassnames, } from './ConfirmAction';
30
+ export { ConfirmAction, type ConfirmActionProps } from './ConfirmAction';
31
31
  export * from './ConfirmDialog';
32
32
  export * from './ContentState';
33
33
  export { CopyTypography, type CopyTypographyProps } from './CopyTypography';
@@ -14,9 +14,9 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- exports.FileUploaderFile = exports.FileUploaderDropzone = exports.FileUploader = exports.Filename = exports.Fieldset = exports.Grow = exports.Slide = exports.Zoom = exports.Fade = exports.expansionPanelClassnames = exports.ExpansionPanel = exports.EmailOrPhoneField = exports.EmailField = exports.DescriptionList = exports.DescriptionCell = exports.datePickerClassnames = exports.DatePicker = exports.DataGridMinimalisticPagination = exports.DataGridSecondaryActionsSkeleton = exports.DataGridSecondaryActions = exports.DataGridMainActions = exports.DataGridActionCell = exports.SidebarContext = exports.SidebarSkeleton = exports.DashboardContext = exports.SidebarPopover = exports.SidebarCounter = exports.SidebarButton = exports.MenuSidebarButton = exports.DashboardLayout = exports.DashboardAlert = exports.Counter = exports.CopyTypography = exports.confirmActionClassnames = exports.ConfirmAction = exports.ComplianceStatus = exports.CodeField = exports.BulletListItem = exports.BulletListInlineItem = exports.BulletList = exports.Breadcrumbs = exports.AvatarGroup = exports.Avatar = exports.AutoSaveIndicator = exports.AsyncAutocomplete = exports.Alert = exports.alertClassnames = exports.AddressAutocomplete = exports.useMainActions = exports.ActionGroup = void 0;
18
- exports.Placeholder = exports.LoadingPlaceholder = exports.useHidePersonalData = exports.PersonalData = exports.Pagination = exports.pageHeaderClassnames = exports.pageContentClassnames = exports.PagePinnableAside = exports.PageLayoutLoader = exports.PageLayoutFooter = exports.PageLayoutContainer = exports.PageLayout = exports.PageHeader = exports.PageContextProvider = exports.PageContext = exports.PageContentHeaderActions = exports.PageContentHeader = exports.PageContent = exports.PageAsideBlock = exports.PageAside = exports.PageAlert = exports.PageActions = exports.PageActionSkeleton = exports.NumberField = exports.NumberedListItem = exports.NumberedList = exports.notFoundPageClassnames = exports.NotFoundPage = exports.MenuOrganizationSkeleton = exports.MenuOrganization = exports.DateRangePicker = exports.DataGridColumnHintIcon = exports.DataGridInfinite = exports.DataGrid = exports.MinimalisticPagination = exports.loaderClassnames = exports.Loader = exports.Link = exports.InfiniteDataList = exports.InputGroup = exports.Iframe = exports.HintIcon = exports.GuidTypography = exports.previewFileUploaderClassnames = exports.fileUploaderClassnames = exports.usePreviewFileUploader = exports.useFileUploader = exports.PreviewFileUploaderFile = exports.PreviewFileUploaderDropZone = exports.PreviewFileUploader = void 0;
19
- exports.WelcomeScreen = exports.redirectToLink = exports.createUIKitClassname = exports.classNames = exports.TreeLikeList = exports.TreeLikeAutocomplete = exports.TreeAutocomplete = exports.TreeList = exports.MultipleTreeList = exports.UNSTABLE_SecondsCountdownService = exports.svgIconClassnames = exports.SvgIcon = exports.StepSlider = exports.StepperWizard = exports.staticDaysCalendarClassnames = exports.StaticDaysCalendar = exports.Skeleton = exports.SearchField = exports.ScrollToTopButton = exports.RadioGroupContext = exports.RadioGroup = exports.RadioField = exports.radioCardClassnames = exports.RadioCard = exports.Radio = exports.radioClassnames = void 0;
17
+ exports.PreviewFileUploader = exports.FileUploaderFile = exports.FileUploaderDropzone = exports.FileUploader = exports.Filename = exports.Fieldset = exports.Grow = exports.Slide = exports.Zoom = exports.Fade = exports.expansionPanelClassnames = exports.ExpansionPanel = exports.EmailOrPhoneField = exports.EmailField = exports.DescriptionList = exports.DescriptionCell = exports.datePickerClassnames = exports.DatePicker = exports.DataGridMinimalisticPagination = exports.DataGridSecondaryActionsSkeleton = exports.DataGridSecondaryActions = exports.DataGridMainActions = exports.DataGridActionCell = exports.SidebarContext = exports.SidebarSkeleton = exports.DashboardContext = exports.SidebarPopover = exports.SidebarCounter = exports.SidebarButton = exports.MenuSidebarButton = exports.DashboardLayout = exports.DashboardAlert = exports.Counter = exports.CopyTypography = exports.ConfirmAction = exports.ComplianceStatus = exports.CodeField = exports.BulletListItem = exports.BulletListInlineItem = exports.BulletList = exports.Breadcrumbs = exports.AvatarGroup = exports.Avatar = exports.AutoSaveIndicator = exports.AsyncAutocomplete = exports.Alert = exports.alertClassnames = exports.AddressAutocomplete = exports.useMainActions = exports.ActionGroup = void 0;
18
+ exports.radioClassnames = exports.Placeholder = exports.LoadingPlaceholder = exports.useHidePersonalData = exports.PersonalData = exports.Pagination = exports.pageHeaderClassnames = exports.pageContentClassnames = exports.PagePinnableAside = exports.PageLayoutLoader = exports.PageLayoutFooter = exports.PageLayoutContainer = exports.PageLayout = exports.PageHeader = exports.PageContextProvider = exports.PageContext = exports.PageContentHeaderActions = exports.PageContentHeader = exports.PageContent = exports.PageAsideBlock = exports.PageAside = exports.PageAlert = exports.PageActions = exports.PageActionSkeleton = exports.NumberField = exports.NumberedListItem = exports.NumberedList = exports.notFoundPageClassnames = exports.NotFoundPage = exports.MenuOrganizationSkeleton = exports.MenuOrganization = exports.DateRangePicker = exports.DataGridColumnHintIcon = exports.DataGridInfinite = exports.DataGrid = exports.MinimalisticPagination = exports.loaderClassnames = exports.Loader = exports.Link = exports.InfiniteDataList = exports.InputGroup = exports.Iframe = exports.HintIcon = exports.GuidTypography = exports.previewFileUploaderClassnames = exports.fileUploaderClassnames = exports.usePreviewFileUploader = exports.useFileUploader = exports.PreviewFileUploaderFile = exports.PreviewFileUploaderDropZone = void 0;
19
+ exports.WelcomeScreen = exports.redirectToLink = exports.createUIKitClassname = exports.classNames = exports.TreeLikeList = exports.TreeLikeAutocomplete = exports.TreeAutocomplete = exports.TreeList = exports.MultipleTreeList = exports.UNSTABLE_SecondsCountdownService = exports.svgIconClassnames = exports.SvgIcon = exports.StepSlider = exports.StepperWizard = exports.staticDaysCalendarClassnames = exports.StaticDaysCalendar = exports.Skeleton = exports.SearchField = exports.ScrollToTopButton = exports.RadioGroupContext = exports.RadioGroup = exports.RadioField = exports.radioCardClassnames = exports.RadioCard = exports.Radio = void 0;
20
20
  __exportStar(require("./Accordion"), exports);
21
21
  var ActionGroup_1 = require("./ActionGroup");
22
22
  Object.defineProperty(exports, "ActionGroup", { enumerable: true, get: function () { return ActionGroup_1.ActionGroup; } });
@@ -63,7 +63,6 @@ Object.defineProperty(exports, "ComplianceStatus", { enumerable: true, get: func
63
63
  __exportStar(require("./ConfigProvider"), exports);
64
64
  var ConfirmAction_1 = require("./ConfirmAction");
65
65
  Object.defineProperty(exports, "ConfirmAction", { enumerable: true, get: function () { return ConfirmAction_1.ConfirmAction; } });
66
- Object.defineProperty(exports, "confirmActionClassnames", { enumerable: true, get: function () { return ConfirmAction_1.confirmActionClassnames; } });
67
66
  __exportStar(require("./ConfirmDialog"), exports);
68
67
  __exportStar(require("./ContentState"), exports);
69
68
  var CopyTypography_1 = require("./CopyTypography");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astral/ui",
3
- "version": "4.17.5",
3
+ "version": "4.18.0-rc.1",
4
4
  "browser": "./index.js",
5
5
  "main": "./node/index.js",
6
6
  "dependencies": {