@dynamic-framework/ui-react 1.7.3 → 1.8.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.
- package/README.md +6 -2
- package/dist/css/dynamic-ui-non-root.css +17060 -0
- package/dist/css/dynamic-ui-non-root.min.css +1 -0
- package/dist/css/{dynamic-root.css → dynamic-ui-root.css} +5 -0
- package/dist/css/{dynamic-root.min.css → dynamic-ui-root.min.css} +1 -1
- package/dist/css/dynamic-ui.css +132 -60
- package/dist/css/dynamic-ui.min.css +1 -1
- package/dist/index.esm.js +413 -550
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +571 -724
- package/dist/index.js.map +1 -1
- package/dist/types/components/{DAlert.d.ts → DAlert/DAlert.d.ts} +3 -5
- package/dist/types/components/DAlert/index.d.ts +2 -0
- package/dist/types/components/{DBadge.d.ts → DBadge/DBadge.d.ts} +2 -4
- package/dist/types/components/DBadge/index.d.ts +2 -0
- package/dist/types/components/DBoxFile/DBoxFile.d.ts +9 -0
- package/dist/types/components/DBoxFile/index.d.ts +2 -0
- package/dist/types/components/{DButton.d.ts → DButton/DButton.d.ts} +3 -5
- package/dist/types/components/DButton/index.d.ts +2 -0
- package/dist/types/components/DCard/DCard.d.ts +13 -0
- package/dist/types/components/DCard/components/DCardBody.d.ts +5 -0
- package/dist/types/components/DCard/components/DCardFooter.d.ts +5 -0
- package/dist/types/components/DCard/components/DCardHeader.d.ts +5 -0
- package/dist/types/components/DCard/index.d.ts +5 -0
- package/dist/types/components/DCardAccount/DCardAccount.d.ts +13 -0
- package/dist/types/components/DCardAccount/index.d.ts +2 -0
- package/dist/types/components/DCarousel/DCarousel.d.ts +10 -0
- package/dist/types/components/DCarousel/index.d.ts +3 -0
- package/dist/types/components/DChip/DChip.d.ts +10 -0
- package/dist/types/components/DChip/index.d.ts +2 -0
- package/dist/types/components/DCollapse/DCollapse.d.ts +11 -0
- package/dist/types/components/DCollapse/index.d.ts +2 -0
- package/dist/types/components/{DCollapseIconText.d.ts → DCollapseIconText/DCollapseIconText.d.ts} +3 -3
- package/dist/types/components/DCollapseIconText/index.d.ts +2 -0
- package/dist/types/components/DCurrencyText/DCurrencyText.d.ts +7 -0
- package/dist/types/components/DCurrencyText/index.d.ts +2 -0
- package/dist/types/components/DDatePicker/DDatePicker.d.ts +21 -0
- package/dist/types/components/DDatePicker/index.d.ts +2 -0
- package/dist/types/components/{DDatePickerHeader.d.ts → DDatePickerHeader/DDatePickerHeader.d.ts} +5 -4
- package/dist/types/components/DDatePickerHeader/index.d.ts +2 -0
- package/dist/types/components/{DDatePickerInput.d.ts → DDatePickerInput/DDatePickerInput.d.ts} +3 -2
- package/dist/types/components/DDatePickerInput/index.d.ts +2 -0
- package/dist/types/components/DDatePickerTime/DDatePickerTime.d.ts +9 -0
- package/dist/types/components/DDatePickerTime/index.d.ts +2 -0
- package/dist/types/components/DIcon/DIcon.d.ts +16 -0
- package/dist/types/components/DIcon/index.d.ts +2 -0
- package/dist/types/components/DInput/DInput.d.ts +15 -0
- package/dist/types/components/DInput/index.d.ts +2 -0
- package/dist/types/components/{DInputCheck.d.ts → DInputCheck/DInputCheck.d.ts} +3 -3
- package/dist/types/components/DInputCheck/index.d.ts +2 -0
- package/dist/types/components/DInputCounter/DInputCounter.d.ts +20 -0
- package/dist/types/components/DInputCounter/index.d.ts +2 -0
- package/dist/types/components/DInputCurrency/DInputCurrency.d.ts +21 -0
- package/dist/types/components/DInputCurrency/index.d.ts +2 -0
- package/dist/types/components/DInputCurrencyBase/DInputCurrencyBase.d.ts +23 -0
- package/dist/types/components/DInputCurrencyBase/index.d.ts +2 -0
- package/dist/types/components/DInputPassword/DInputPassword.d.ts +5 -0
- package/dist/types/components/DInputPassword/index.d.ts +2 -0
- package/dist/types/components/{DInputPin.d.ts → DInputPin/DInputPin.d.ts} +3 -3
- package/dist/types/components/DInputPin/index.d.ts +2 -0
- package/dist/types/components/DInputSearch/DInputSearch.d.ts +17 -0
- package/dist/types/components/DInputSearch/index.d.ts +2 -0
- package/dist/types/components/{DInputSelect.d.ts → DInputSelect/DInputSelect.d.ts} +3 -4
- package/dist/types/components/DInputSelect/index.d.ts +3 -0
- package/dist/types/components/{DInputSwitch.d.ts → DInputSwitch/DInputSwitch.d.ts} +4 -3
- package/dist/types/components/DInputSwitch/index.d.ts +2 -0
- package/dist/types/components/DList/DList.d.ts +14 -0
- package/dist/types/components/DList/components/DListItem.d.ts +10 -0
- package/dist/types/components/DList/index.d.ts +3 -0
- package/dist/types/components/DListItemMovement/DListItemMovement.d.ts +10 -0
- package/dist/types/components/DListItemMovement/index.d.ts +2 -0
- package/dist/types/components/DModal/DModal.d.ts +21 -0
- package/dist/types/components/DModal/components/DModalBody.d.ts +7 -0
- package/dist/types/components/DModal/components/DModalFooter.d.ts +7 -0
- package/dist/types/components/{DModalHeader.d.ts → DModal/components/DModalHeader.d.ts} +3 -2
- package/dist/types/components/DModal/index.d.ts +5 -0
- package/dist/types/components/DMonthPicker/DMonthPicker.d.ts +9 -0
- package/dist/types/components/DMonthPicker/index.d.ts +2 -0
- package/dist/types/components/DOffcanvas/DOffcanvas.d.ts +18 -0
- package/dist/types/components/DOffcanvas/components/DOffcanvasBody.d.ts +7 -0
- package/dist/types/components/{DOffcanvasFooter.d.ts → DOffcanvas/components/DOffcanvasFooter.d.ts} +3 -2
- package/dist/types/components/{DOffcanvasHeader.d.ts → DOffcanvas/components/DOffcanvasHeader.d.ts} +3 -2
- package/dist/types/components/DOffcanvas/index.d.ts +5 -0
- package/dist/types/components/DPaginator/index.d.ts +2 -0
- package/dist/types/components/{DPopover.d.ts → DPopover/DPopover.d.ts} +3 -2
- package/dist/types/components/DPopover/index.d.ts +2 -0
- package/dist/types/components/DProgress/DProgress.d.ts +10 -0
- package/dist/types/components/DProgress/index.d.ts +2 -0
- package/dist/types/components/{DQuickActionButton.d.ts → DQuickActionButton/DQuickActionButton.d.ts} +2 -4
- package/dist/types/components/DQuickActionButton/index.d.ts +2 -0
- package/dist/types/components/{DQuickActionCheck.d.ts → DQuickActionCheck/DQuickActionCheck.d.ts} +3 -3
- package/dist/types/components/DQuickActionCheck/index.d.ts +2 -0
- package/dist/types/components/{DQuickActionSelect.d.ts → DQuickActionSelect/DQuickActionSelect.d.ts} +3 -3
- package/dist/types/components/DQuickActionSelect/index.d.ts +2 -0
- package/dist/types/components/{DQuickActionSwitch.d.ts → DQuickActionSwitch/DQuickActionSwitch.d.ts} +3 -3
- package/dist/types/components/DQuickActionSwitch/index.d.ts +2 -0
- package/dist/types/components/DSkeleton/index.d.ts +2 -0
- package/dist/types/components/{DStepper.d.ts → DStepper/DStepper.d.ts} +3 -3
- package/dist/types/components/DStepper/index.d.ts +2 -0
- package/dist/types/components/{DStepperDesktop.d.ts → DStepperDesktop/DStepperDesktop.d.ts} +3 -2
- package/dist/types/components/DStepperDesktop/index.d.ts +2 -0
- package/dist/types/components/DStepperMobile/DStepperMobile.d.ts +12 -0
- package/dist/types/components/DStepperMobile/index.d.ts +2 -0
- package/dist/types/components/DTabs/DTabs.d.ts +19 -0
- package/dist/types/components/DTabs/TabContext.d.ts +8 -0
- package/dist/types/components/DTabs/components/DTabContent.d.ts +7 -0
- package/dist/types/components/DTabs/index.d.ts +5 -0
- package/dist/types/components/{DToastContainer.d.ts → DToastContainer/DToastContainer.d.ts} +3 -2
- package/dist/types/components/DToastContainer/index.d.ts +3 -0
- package/dist/types/{hooks → components/DToastContainer}/useToast.d.ts +1 -1
- package/dist/types/components/{DTooltip.d.ts → DTooltip/DTooltip.d.ts} +3 -4
- package/dist/types/components/DTooltip/index.d.ts +2 -0
- package/dist/types/components/index.d.ts +11 -26
- package/dist/types/components/interface.d.ts +9 -4
- package/dist/types/contexts/DContext.d.ts +13 -0
- package/dist/types/contexts/index.d.ts +1 -1
- package/dist/types/hooks/index.d.ts +3 -4
- package/dist/types/hooks/useInputCurrency.d.ts +16 -0
- package/dist/types/hooks/useProvidedRefOrCreate.d.ts +16 -0
- package/dist/types/types/index.d.ts +1 -0
- package/dist/types/types/polymorphic.d.ts +37 -0
- package/dist/types/utils/index.d.ts +0 -1
- package/package.json +48 -55
- package/src/style/abstracts/variables/_buttons.scss +1 -1
- package/src/style/abstracts/variables/_forms.scss +4 -4
- package/src/style/abstracts/variables/_toasts.scss +1 -1
- package/src/style/abstracts/variables/_typography.scss +1 -1
- package/src/style/base/_+import.scss +0 -3
- package/src/style/components/_d-input.scss +10 -5
- package/src/style/components/_d-monthpicker.scss +8 -0
- package/src/style/dynamic-ui-non-root.scss +13 -0
- package/src/style/dynamic-ui-root.scss +5 -0
- package/src/style/dynamic-ui.scss +2 -0
- package/src/style/root/_+import.scss +2 -0
- package/src/style/{base → root}/_root.scss +6 -0
- package/dist/types/components/DBoxFile.d.ts +0 -9
- package/dist/types/components/DCard.d.ts +0 -7
- package/dist/types/components/DCardAccount.d.ts +0 -13
- package/dist/types/components/DCardBody.d.ts +0 -6
- package/dist/types/components/DCardFooter.d.ts +0 -6
- package/dist/types/components/DCardHeader.d.ts +0 -6
- package/dist/types/components/DCarousel.d.ts +0 -7
- package/dist/types/components/DChip.d.ts +0 -10
- package/dist/types/components/DCollapse.d.ts +0 -11
- package/dist/types/components/DCurrencyText.d.ts +0 -6
- package/dist/types/components/DDatePicker.d.ts +0 -20
- package/dist/types/components/DDatePickerTime.d.ts +0 -8
- package/dist/types/components/DFormikInput.d.ts +0 -7
- package/dist/types/components/DFormikInputCurrency.d.ts +0 -7
- package/dist/types/components/DFormikInputSelect.d.ts +0 -6
- package/dist/types/components/DIcon.d.ts +0 -16
- package/dist/types/components/DInput.d.ts +0 -32
- package/dist/types/components/DInputCounter.d.ts +0 -22
- package/dist/types/components/DInputCurrency.d.ts +0 -5
- package/dist/types/components/DInputCurrencyBase.d.ts +0 -25
- package/dist/types/components/DInputPassword.d.ts +0 -17
- package/dist/types/components/DInputSearch.d.ts +0 -19
- package/dist/types/components/DList.d.ts +0 -11
- package/dist/types/components/DListItem.d.ts +0 -10
- package/dist/types/components/DListItemMovement.d.ts +0 -10
- package/dist/types/components/DModal.d.ts +0 -14
- package/dist/types/components/DModalBody.d.ts +0 -6
- package/dist/types/components/DModalFooter.d.ts +0 -6
- package/dist/types/components/DMonthPicker.d.ts +0 -7
- package/dist/types/components/DOffcanvas.d.ts +0 -11
- package/dist/types/components/DOffcanvasBody.d.ts +0 -6
- package/dist/types/components/DProgress.d.ts +0 -9
- package/dist/types/components/DStepperMobile.d.ts +0 -11
- package/dist/types/components/DTabContent.d.ts +0 -6
- package/dist/types/components/DTabs.d.ts +0 -19
- package/dist/types/contexts/LiquidContext.d.ts +0 -14
- package/dist/types/hooks/useScreenshot.d.ts +0 -5
- package/dist/types/hooks/useScreenshotDownload.d.ts +0 -5
- package/dist/types/hooks/useScreenshotWebShare.d.ts +0 -5
- package/dist/types/stories/components/DBadge.stories.d.ts +0 -8
- package/dist/types/stories/components/DBoxFile.stories.d.ts +0 -6
- package/dist/types/stories/components/DButton.stories.d.ts +0 -35
- package/dist/types/stories/components/DChip.stories.d.ts +0 -9
- package/dist/types/stories/components/DCurrencyText.stories.d.ts +0 -6
- package/dist/types/stories/components/DDatePicker.stories.d.ts +0 -14
- package/dist/types/stories/components/DFormikInput.stories.d.ts +0 -7
- package/dist/types/stories/components/DFormikInputCurrency.stories.d.ts +0 -8
- package/dist/types/stories/components/DFormikInputSelect.stories.d.ts +0 -7
- package/dist/types/stories/components/DIcon.stories.d.ts +0 -7
- package/dist/types/stories/components/DInput.stories.d.ts +0 -11
- package/dist/types/stories/components/DInputCheck.stories.d.ts +0 -13
- package/dist/types/stories/components/DInputCounter.stories.d.ts +0 -9
- package/dist/types/stories/components/DInputCurrency.stories.d.ts +0 -11
- package/dist/types/stories/components/DInputCurrencyBase.stories.d.ts +0 -11
- package/dist/types/stories/components/DInputPassword.stories.d.ts +0 -10
- package/dist/types/stories/components/DInputPin.stories.d.ts +0 -10
- package/dist/types/stories/components/DInputSearch.stories.d.ts +0 -10
- package/dist/types/stories/components/DInputSelect.stories.d.ts +0 -14
- package/dist/types/stories/components/DInputSwitch.stories.d.ts +0 -11
- package/dist/types/stories/components/DList.stories.d.ts +0 -10
- package/dist/types/stories/components/DListItem.stories.d.ts +0 -9
- package/dist/types/stories/components/DListItemMovement.stories.d.ts +0 -7
- package/dist/types/stories/components/DPaginator.stories.d.ts +0 -10
- package/dist/types/stories/components/DProgress.stories.d.ts +0 -12
- package/dist/types/stories/components/DQuickActionButton.stories.d.ts +0 -10
- package/dist/types/stories/components/DQuickActionCheck.stories.d.ts +0 -8
- package/dist/types/stories/components/DQuickActionSelect.stories.d.ts +0 -8
- package/dist/types/stories/components/DQuickActionSwitch.stories.d.ts +0 -9
- package/dist/types/stories/components/DSkeleton.stories.d.ts +0 -6
- package/dist/types/stories/components/DStepper.stories.d.ts +0 -7
- package/dist/types/stories/components/DStepperDesktop.stories.d.ts +0 -7
- package/dist/types/stories/components/DStepperMobile.stories.d.ts +0 -6
- package/dist/types/stories/components/DTooltip.stories.d.ts +0 -18
- package/dist/types/stories/config/constants.d.ts +0 -7
- package/dist/types/stories/config/liquidConfig.d.ts +0 -1
- package/dist/types/stories/hooks/useFormatCurrency.stories.d.ts +0 -6
- package/dist/types/stories/hooks/useModalContext.stories.d.ts +0 -6
- package/dist/types/stories/hooks/useOffcanvasContext.stories.d.ts +0 -7
- package/dist/types/stories/hooks/useToast.stories.d.ts +0 -17
- package/dist/types/stories/patterns/DAlert.stories.d.ts +0 -24
- package/dist/types/stories/patterns/DCard.stories.d.ts +0 -10
- package/dist/types/stories/patterns/DCardAccount.stories.d.ts +0 -6
- package/dist/types/stories/patterns/DCarousel.stories.d.ts +0 -9
- package/dist/types/stories/patterns/DCollapse.stories.d.ts +0 -8
- package/dist/types/stories/patterns/DCollapseIconText.stories.d.ts +0 -6
- package/dist/types/stories/patterns/DModal.stories.d.ts +0 -12
- package/dist/types/stories/patterns/DOffcanvas.stories.d.ts +0 -12
- package/dist/types/stories/patterns/DPopover.stories.d.ts +0 -9
- package/dist/types/stories/patterns/DTabs.stories.d.ts +0 -7
- package/dist/types/utils/liquid-parser.d.ts +0 -20
- package/src/style/dynamic-root.scss +0 -6
- /package/dist/types/components/{DCarouselSlide.d.ts → DCarousel/components/DCarouselSlide.d.ts} +0 -0
- /package/dist/types/components/{DPaginator.d.ts → DPaginator/DPaginator.d.ts} +0 -0
- /package/dist/types/components/{DSkeleton.d.ts → DSkeleton/DSkeleton.d.ts} +0 -0
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import type { Options } from 'currency.js';
|
|
2
|
-
import type { EndIcon, LabelIcon, StartIcon } from './interface';
|
|
3
|
-
type Props = LabelIcon & StartIcon & EndIcon & {
|
|
4
|
-
id: string;
|
|
5
|
-
name?: string;
|
|
6
|
-
className?: string;
|
|
7
|
-
label?: string;
|
|
8
|
-
placeholder?: string;
|
|
9
|
-
value?: number;
|
|
10
|
-
isDisabled?: boolean;
|
|
11
|
-
isReadOnly?: boolean;
|
|
12
|
-
isLoading?: boolean;
|
|
13
|
-
hint?: string;
|
|
14
|
-
isInvalid?: boolean;
|
|
15
|
-
isValid?: boolean;
|
|
16
|
-
minValue?: number;
|
|
17
|
-
maxValue?: number;
|
|
18
|
-
currencyOptions: Options;
|
|
19
|
-
currencyCode?: string;
|
|
20
|
-
onChange?: (value?: number) => void;
|
|
21
|
-
onBlur?: (value?: number) => void;
|
|
22
|
-
onFocus?: (value?: number) => void;
|
|
23
|
-
};
|
|
24
|
-
export default function DInputCurrencyBase({ id, name, className, label, placeholder, value, isDisabled, isReadOnly, isLoading, hint, isInvalid, isValid, minValue, maxValue, currencyOptions, currencyCode, onChange, onBlur, onFocus, ...rest }: Props): import("react/jsx-runtime").JSX.Element;
|
|
25
|
-
export {};
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import type { LabelIcon } from './interface';
|
|
2
|
-
type Props = LabelIcon & {
|
|
3
|
-
id: string;
|
|
4
|
-
name?: string;
|
|
5
|
-
label?: string;
|
|
6
|
-
placeholder?: string;
|
|
7
|
-
value?: string;
|
|
8
|
-
isDisabled?: boolean;
|
|
9
|
-
isReadOnly?: boolean;
|
|
10
|
-
isLoading?: boolean;
|
|
11
|
-
hint?: string;
|
|
12
|
-
isInvalid?: boolean;
|
|
13
|
-
isValid?: boolean;
|
|
14
|
-
onChange?: (value: string) => void;
|
|
15
|
-
};
|
|
16
|
-
export default function DInputPassword({ id, name, label, placeholder, value, isDisabled, isReadOnly, isLoading, hint, isInvalid, isValid, onChange, ...rest }: Props): import("react/jsx-runtime").JSX.Element;
|
|
17
|
-
export {};
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import type { ChangeEvent } from 'react';
|
|
2
|
-
import type { LabelIcon } from './interface';
|
|
3
|
-
type Props = LabelIcon & {
|
|
4
|
-
id: string;
|
|
5
|
-
name?: string;
|
|
6
|
-
label?: string;
|
|
7
|
-
placeholder?: string;
|
|
8
|
-
value?: string;
|
|
9
|
-
isDisabled?: boolean;
|
|
10
|
-
isReadOnly?: boolean;
|
|
11
|
-
isLoading?: boolean;
|
|
12
|
-
hint?: string;
|
|
13
|
-
isInvalid?: boolean;
|
|
14
|
-
isValid?: boolean;
|
|
15
|
-
onChange?: (event: ChangeEvent<HTMLInputElement>) => void;
|
|
16
|
-
onClick?: (newValue: string | undefined) => void;
|
|
17
|
-
};
|
|
18
|
-
export default function DInputSearch({ id, name, label, placeholder, value, isDisabled, isReadOnly, isLoading, hint, isInvalid, isValid, onChange, onClick, ...rest }: Props): import("react/jsx-runtime").JSX.Element;
|
|
19
|
-
export {};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import type { PropsWithChildren } from 'react';
|
|
2
|
-
import type { BreakpointSize } from './interface';
|
|
3
|
-
type Props = PropsWithChildren<{
|
|
4
|
-
className?: string;
|
|
5
|
-
isFlush?: boolean;
|
|
6
|
-
isNumbered?: boolean;
|
|
7
|
-
isHorizontal?: boolean;
|
|
8
|
-
horizontalBreakpoint?: BreakpointSize;
|
|
9
|
-
}>;
|
|
10
|
-
export default function DList({ children, className, isFlush, isNumbered, isHorizontal, horizontalBreakpoint, }: Props): import("react/jsx-runtime").JSX.Element;
|
|
11
|
-
export {};
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import type { PropsWithChildren } from 'react';
|
|
2
|
-
type Props = PropsWithChildren<{
|
|
3
|
-
className?: string;
|
|
4
|
-
isActive?: boolean;
|
|
5
|
-
isDisabled?: boolean;
|
|
6
|
-
theme?: string;
|
|
7
|
-
onClick?: () => void;
|
|
8
|
-
}>;
|
|
9
|
-
export default function DListItem({ children, className, isActive, isDisabled, theme, onClick, }: Props): import("react/jsx-runtime").JSX.Element;
|
|
10
|
-
export {};
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import type { ComponentProps } from 'react';
|
|
2
|
-
import DListItem from './DListItem';
|
|
3
|
-
type Props = Omit<ComponentProps<typeof DListItem>, 'children'> & {
|
|
4
|
-
description: string;
|
|
5
|
-
date: string;
|
|
6
|
-
amount: number;
|
|
7
|
-
classNameMovement?: string;
|
|
8
|
-
};
|
|
9
|
-
export default function DListItemMovement({ description, date, amount, classNameMovement, ...props }: Props): import("react/jsx-runtime").JSX.Element;
|
|
10
|
-
export {};
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import type { PropsWithChildren } from 'react';
|
|
2
|
-
import type { ModalFullScreenFrom, ModalSize } from './interface';
|
|
3
|
-
type Props = PropsWithChildren<{
|
|
4
|
-
name: string;
|
|
5
|
-
className?: string;
|
|
6
|
-
isStatic?: boolean;
|
|
7
|
-
isScrollable?: boolean;
|
|
8
|
-
isCentered?: boolean;
|
|
9
|
-
isFullScreen?: boolean;
|
|
10
|
-
fullScreenFrom?: ModalFullScreenFrom;
|
|
11
|
-
modalSize?: ModalSize;
|
|
12
|
-
}>;
|
|
13
|
-
export default function DModal({ name, className, isStatic, isScrollable, isCentered, isFullScreen, fullScreenFrom, modalSize, children, }: Props): import("react/jsx-runtime").JSX.Element;
|
|
14
|
-
export {};
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import type { PropsWithChildren } from 'react';
|
|
2
|
-
type Props = PropsWithChildren<{
|
|
3
|
-
actionPlacement?: 'start' | 'end' | 'fill' | 'center';
|
|
4
|
-
}>;
|
|
5
|
-
export default function DModalFooter({ actionPlacement, children, }: Props): import("react/jsx-runtime").JSX.Element;
|
|
6
|
-
export {};
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import type { ReactDatePickerProps } from 'react-datepicker';
|
|
2
|
-
type Props = Omit<ReactDatePickerProps, 'onChange' | 'selectsRange'> & {
|
|
3
|
-
date: string;
|
|
4
|
-
onChangeDate: (value: Date | null) => void;
|
|
5
|
-
};
|
|
6
|
-
export default function DMonthPicker({ onChangeDate, date, ...props }: Props): import("react/jsx-runtime").JSX.Element;
|
|
7
|
-
export {};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import type { PropsWithChildren } from 'react';
|
|
2
|
-
import type { OffcanvasPositionToggleFrom } from './interface';
|
|
3
|
-
type Props = PropsWithChildren<{
|
|
4
|
-
name: string;
|
|
5
|
-
className?: string;
|
|
6
|
-
isStatic?: boolean;
|
|
7
|
-
isScrollable?: boolean;
|
|
8
|
-
openFrom?: OffcanvasPositionToggleFrom;
|
|
9
|
-
}>;
|
|
10
|
-
export default function DOffcanvas({ name, className, isStatic, isScrollable, openFrom, children, }: Props): import("react/jsx-runtime").JSX.Element;
|
|
11
|
-
export {};
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
type Props = {
|
|
2
|
-
currentValue: number;
|
|
3
|
-
minValue?: number;
|
|
4
|
-
maxValue?: number;
|
|
5
|
-
hideCurrentValue?: boolean;
|
|
6
|
-
enableStripedAnimation?: boolean;
|
|
7
|
-
};
|
|
8
|
-
export default function DProgress({ currentValue, minValue, maxValue, hideCurrentValue, enableStripedAnimation, }: Props): import("react/jsx-runtime").JSX.Element;
|
|
9
|
-
export {};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
type Step = {
|
|
2
|
-
label: string;
|
|
3
|
-
description?: string;
|
|
4
|
-
value: number;
|
|
5
|
-
};
|
|
6
|
-
type Props = {
|
|
7
|
-
options: Array<Step>;
|
|
8
|
-
currentStep: number;
|
|
9
|
-
};
|
|
10
|
-
export default function DStepper({ options, currentStep, }: Props): import("react/jsx-runtime").JSX.Element;
|
|
11
|
-
export {};
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import type { PropsWithChildren } from 'react';
|
|
2
|
-
export type DTabOption = {
|
|
3
|
-
label: string;
|
|
4
|
-
tab: string;
|
|
5
|
-
isDisabled?: boolean;
|
|
6
|
-
};
|
|
7
|
-
type Props = PropsWithChildren<{
|
|
8
|
-
onChange: (option: DTabOption) => void;
|
|
9
|
-
options: Array<DTabOption>;
|
|
10
|
-
defaultSelected: string;
|
|
11
|
-
className?: string;
|
|
12
|
-
isVertical?: boolean;
|
|
13
|
-
}>;
|
|
14
|
-
type TabContextState = {
|
|
15
|
-
isSelected: (tab: DTabOption['tab']) => boolean;
|
|
16
|
-
};
|
|
17
|
-
export default function DTabs({ children, defaultSelected, onChange, options, className, isVertical, }: Props): import("react/jsx-runtime").JSX.Element;
|
|
18
|
-
export declare function useTabContext(): TabContextState;
|
|
19
|
-
export {};
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import type { PropsWithChildren } from 'react';
|
|
2
|
-
interface LiquidContextInterface {
|
|
3
|
-
language: string;
|
|
4
|
-
currency: {
|
|
5
|
-
symbol: string;
|
|
6
|
-
precision: number;
|
|
7
|
-
separator: string;
|
|
8
|
-
decimal: string;
|
|
9
|
-
};
|
|
10
|
-
}
|
|
11
|
-
export declare const LiquidContext: import("react").Context<LiquidContextInterface>;
|
|
12
|
-
export declare function LiquidContextProvider({ children, }: PropsWithChildren): import("react/jsx-runtime").JSX.Element;
|
|
13
|
-
export declare function useLiquidContext(): LiquidContextInterface;
|
|
14
|
-
export default LiquidContext;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DBadge } from '../../components';
|
|
3
|
-
declare const config: Meta<typeof DBadge>;
|
|
4
|
-
export default config;
|
|
5
|
-
type Story = StoryObj<typeof DBadge>;
|
|
6
|
-
export declare const Default: Story;
|
|
7
|
-
export declare const Dot: Story;
|
|
8
|
-
export declare const Empty: Story;
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DButton } from '../../components';
|
|
3
|
-
declare const config: Meta<typeof DButton>;
|
|
4
|
-
export default config;
|
|
5
|
-
type Story = StoryObj<typeof DButton>;
|
|
6
|
-
export declare const Primary: Story;
|
|
7
|
-
export declare const PrimaryHover: Story;
|
|
8
|
-
export declare const PrimaryFocus: Story;
|
|
9
|
-
export declare const PrimaryDisabled: Story;
|
|
10
|
-
export declare const PrimaryActive: Story;
|
|
11
|
-
export declare const PrimaryIconRight: Story;
|
|
12
|
-
export declare const PrimaryLoading: Story;
|
|
13
|
-
export declare const PrimaryLoadingIconRight: Story;
|
|
14
|
-
export declare const PrimarySm: Story;
|
|
15
|
-
export declare const PrimaryLg: Story;
|
|
16
|
-
export declare const Secondary: Story;
|
|
17
|
-
export declare const SecondaryHover: Story;
|
|
18
|
-
export declare const SecondaryFocus: Story;
|
|
19
|
-
export declare const SecondaryDisabled: Story;
|
|
20
|
-
export declare const SecondaryActive: Story;
|
|
21
|
-
export declare const SecondaryIconRight: Story;
|
|
22
|
-
export declare const SecondaryLoading: Story;
|
|
23
|
-
export declare const SecondaryLoadingIconRight: Story;
|
|
24
|
-
export declare const SecondarySm: Story;
|
|
25
|
-
export declare const SecondaryLg: Story;
|
|
26
|
-
export declare const Link: Story;
|
|
27
|
-
export declare const LinkHover: Story;
|
|
28
|
-
export declare const LinkFocus: Story;
|
|
29
|
-
export declare const LinkDisabled: Story;
|
|
30
|
-
export declare const LinkActive: Story;
|
|
31
|
-
export declare const LinkIconRight: Story;
|
|
32
|
-
export declare const LinkLoading: Story;
|
|
33
|
-
export declare const LinkLoadingIconRight: Story;
|
|
34
|
-
export declare const LinkSm: Story;
|
|
35
|
-
export declare const LinkLg: Story;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DChip } from '../../components';
|
|
3
|
-
declare const config: Meta<typeof DChip>;
|
|
4
|
-
export default config;
|
|
5
|
-
type Story = StoryObj<typeof DChip>;
|
|
6
|
-
export declare const Primary: Story;
|
|
7
|
-
export declare const Secondary: Story;
|
|
8
|
-
export declare const Icon: Story;
|
|
9
|
-
export declare const Close: Story;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DDatePicker } from '../../components';
|
|
3
|
-
declare const config: Meta<typeof DDatePicker>;
|
|
4
|
-
export default config;
|
|
5
|
-
type Story = StoryObj<typeof DDatePicker>;
|
|
6
|
-
export declare const Default: Story;
|
|
7
|
-
export declare const DefaultWithMonth: Story;
|
|
8
|
-
export declare const Inline: Story;
|
|
9
|
-
export declare const WithTime: Story;
|
|
10
|
-
export declare const WithMonthSelector: Story;
|
|
11
|
-
export declare const MonthPicker: Story;
|
|
12
|
-
export declare const DateRange: Story;
|
|
13
|
-
export declare const DateRangeWithMonthSelector: Story;
|
|
14
|
-
export declare const OnPortal: Story;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DFormikInput } from '../../components';
|
|
3
|
-
declare const config: Meta<typeof DFormikInput>;
|
|
4
|
-
export default config;
|
|
5
|
-
type Story = StoryObj<typeof DFormikInput>;
|
|
6
|
-
export declare const Default: Story;
|
|
7
|
-
export declare const Empty: Story;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DFormikInputCurrency } from '../../components';
|
|
3
|
-
declare const config: Meta<typeof DFormikInputCurrency>;
|
|
4
|
-
export default config;
|
|
5
|
-
type Story = StoryObj<typeof DFormikInputCurrency>;
|
|
6
|
-
export declare const Default: Story;
|
|
7
|
-
export declare const Empty: Story;
|
|
8
|
-
export declare const WithErrors: Story;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DFormikInputSelect } from '../../components';
|
|
3
|
-
declare const config: Meta<typeof DFormikInputSelect>;
|
|
4
|
-
export default config;
|
|
5
|
-
type Story = StoryObj<typeof DFormikInputSelect>;
|
|
6
|
-
export declare const Default: Story;
|
|
7
|
-
export declare const Empty: Story;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DIcon } from '../../components';
|
|
3
|
-
declare const meta: Meta<typeof DIcon>;
|
|
4
|
-
export default meta;
|
|
5
|
-
type Story = StoryObj<typeof DIcon>;
|
|
6
|
-
export declare const Default: Story;
|
|
7
|
-
export declare const Circle: Story;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DInput } from '../../components';
|
|
3
|
-
declare const config: Meta<typeof DInput>;
|
|
4
|
-
export default config;
|
|
5
|
-
type Story = StoryObj<typeof DInput>;
|
|
6
|
-
export declare const Default: Story;
|
|
7
|
-
export declare const Value: Story;
|
|
8
|
-
export declare const Error: Story;
|
|
9
|
-
export declare const Confirm: Story;
|
|
10
|
-
export declare const Disabled: Story;
|
|
11
|
-
export declare const Text: Story;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DInputCheck } from '../../components';
|
|
3
|
-
declare const config: Meta<typeof DInputCheck>;
|
|
4
|
-
export default config;
|
|
5
|
-
type Story = StoryObj<typeof DInputCheck>;
|
|
6
|
-
export declare const CheckboxWithoutLabel: Story;
|
|
7
|
-
export declare const CheckboxDefault: Story;
|
|
8
|
-
export declare const CheckboxChecked: Story;
|
|
9
|
-
export declare const CheckboxDisabled: Story;
|
|
10
|
-
export declare const RadioWithoutLabel: Story;
|
|
11
|
-
export declare const RadioDefault: Story;
|
|
12
|
-
export declare const RadioChecked: Story;
|
|
13
|
-
export declare const RadioDisabled: Story;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DInputCounter } from '../../components';
|
|
3
|
-
declare const config: Meta<typeof DInputCounter>;
|
|
4
|
-
export default config;
|
|
5
|
-
type Story = StoryObj<typeof DInputCounter>;
|
|
6
|
-
export declare const Default: Story;
|
|
7
|
-
export declare const Error: Story;
|
|
8
|
-
export declare const Confirm: Story;
|
|
9
|
-
export declare const Disabled: Story;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DInputCurrency } from '../../components';
|
|
3
|
-
declare const config: Meta<typeof DInputCurrency>;
|
|
4
|
-
export default config;
|
|
5
|
-
type Story = StoryObj<typeof DInputCurrency>;
|
|
6
|
-
export declare const Default: Story;
|
|
7
|
-
export declare const Value: Story;
|
|
8
|
-
export declare const Error: Story;
|
|
9
|
-
export declare const Confirm: Story;
|
|
10
|
-
export declare const Disabled: Story;
|
|
11
|
-
export declare const WithCurrencyCode: Story;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DInputCurrencyBase } from '../../components';
|
|
3
|
-
declare const config: Meta<typeof DInputCurrencyBase>;
|
|
4
|
-
export default config;
|
|
5
|
-
type Story = StoryObj<typeof DInputCurrencyBase>;
|
|
6
|
-
export declare const Default: Story;
|
|
7
|
-
export declare const Value: Story;
|
|
8
|
-
export declare const Error: Story;
|
|
9
|
-
export declare const Confirm: Story;
|
|
10
|
-
export declare const Disabled: Story;
|
|
11
|
-
export declare const WithCurrencyCode: Story;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DInputPassword } from '../../components';
|
|
3
|
-
declare const config: Meta<typeof DInputPassword>;
|
|
4
|
-
export default config;
|
|
5
|
-
type Story = StoryObj<typeof DInputPassword>;
|
|
6
|
-
export declare const Default: Story;
|
|
7
|
-
export declare const Value: Story;
|
|
8
|
-
export declare const Error: Story;
|
|
9
|
-
export declare const Confirm: Story;
|
|
10
|
-
export declare const Disabled: Story;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DInputPin } from '../../components';
|
|
3
|
-
declare const config: Meta<typeof DInputPin>;
|
|
4
|
-
export default config;
|
|
5
|
-
type Story = StoryObj<typeof DInputPin>;
|
|
6
|
-
export declare const Default: Story;
|
|
7
|
-
export declare const WithoutLabel: Story;
|
|
8
|
-
export declare const Error: Story;
|
|
9
|
-
export declare const Confirm: Story;
|
|
10
|
-
export declare const Disabled: Story;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DInputSearch } from '../../components';
|
|
3
|
-
declare const config: Meta<typeof DInputSearch>;
|
|
4
|
-
export default config;
|
|
5
|
-
type Story = StoryObj<typeof DInputSearch>;
|
|
6
|
-
export declare const Default: Story;
|
|
7
|
-
export declare const Value: Story;
|
|
8
|
-
export declare const Error: Story;
|
|
9
|
-
export declare const Confirm: Story;
|
|
10
|
-
export declare const Disabled: Story;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DInputSelect } from '../../components';
|
|
3
|
-
import type { DInputSelectProps } from '../../components';
|
|
4
|
-
declare const config: Meta<typeof DInputSelect>;
|
|
5
|
-
export default config;
|
|
6
|
-
type Story = StoryObj<typeof DInputSelect>;
|
|
7
|
-
export declare const Default: Story;
|
|
8
|
-
export declare const Selected: Story;
|
|
9
|
-
export declare const Disabled: Story;
|
|
10
|
-
export declare const Icon: Story;
|
|
11
|
-
export declare const Extractors: StoryObj<DInputSelectProps<{
|
|
12
|
-
id: string;
|
|
13
|
-
text: string;
|
|
14
|
-
}>>;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DInputSwitch } from '../../components';
|
|
3
|
-
declare const config: Meta<typeof DInputSwitch>;
|
|
4
|
-
export default config;
|
|
5
|
-
type Story = StoryObj<typeof DInputSwitch>;
|
|
6
|
-
export declare const WithoutLabel: Story;
|
|
7
|
-
export declare const Default: Story;
|
|
8
|
-
export declare const Checked: Story;
|
|
9
|
-
export declare const Readonly: Story;
|
|
10
|
-
export declare const Disabled: Story;
|
|
11
|
-
export declare const CheckedDisabled: Story;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DList } from '../../components';
|
|
3
|
-
declare const config: Meta<typeof DList>;
|
|
4
|
-
export default config;
|
|
5
|
-
type Story = StoryObj<typeof DList>;
|
|
6
|
-
export declare const Default: Story;
|
|
7
|
-
export declare const Flush: Story;
|
|
8
|
-
export declare const Numbered: Story;
|
|
9
|
-
export declare const Horizontal: Story;
|
|
10
|
-
export declare const HorizontalWithBreakpoint: Story;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DListItem } from '../../components';
|
|
3
|
-
declare const config: Meta<typeof DListItem>;
|
|
4
|
-
export default config;
|
|
5
|
-
type Story = StoryObj<typeof DListItem>;
|
|
6
|
-
export declare const Default: Story;
|
|
7
|
-
export declare const Active: Story;
|
|
8
|
-
export declare const Disabled: Story;
|
|
9
|
-
export declare const WithTheme: Story;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DListItemMovement } from '../../components';
|
|
3
|
-
declare const config: Meta<typeof DListItemMovement>;
|
|
4
|
-
export default config;
|
|
5
|
-
type Story = StoryObj<typeof DListItemMovement>;
|
|
6
|
-
export declare const Movement: Story;
|
|
7
|
-
export declare const Movements: Story;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DPaginator } from '../../components';
|
|
3
|
-
declare const meta: Meta<typeof DPaginator>;
|
|
4
|
-
export default meta;
|
|
5
|
-
type Story = StoryObj<typeof DPaginator>;
|
|
6
|
-
export declare const Default: Story;
|
|
7
|
-
export declare const LabelArrows: Story;
|
|
8
|
-
export declare const NoArrows: Story;
|
|
9
|
-
export declare const CustomCurrentPage: Story;
|
|
10
|
-
export declare const CustomMaxWidth: Story;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DProgress } from '../../components';
|
|
3
|
-
declare const config: Meta<typeof DProgress>;
|
|
4
|
-
export default config;
|
|
5
|
-
type Story = StoryObj<typeof DProgress>;
|
|
6
|
-
export declare const Default: Story;
|
|
7
|
-
export declare const Stripped: Story;
|
|
8
|
-
export declare const Valueless: Story;
|
|
9
|
-
export declare const Zero: Story;
|
|
10
|
-
export declare const Two: Story;
|
|
11
|
-
export declare const TwoValueless: Story;
|
|
12
|
-
export declare const OneHundred: Story;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DQuickActionButton } from '../../components';
|
|
3
|
-
declare const config: Meta<typeof DQuickActionButton>;
|
|
4
|
-
export default config;
|
|
5
|
-
type Story = StoryObj<typeof DQuickActionButton>;
|
|
6
|
-
export declare const PersonalInfo: Story;
|
|
7
|
-
export declare const ButtonDoubleAction: Story;
|
|
8
|
-
export declare const AccountBox: Story;
|
|
9
|
-
export declare const Info: Story;
|
|
10
|
-
export declare const PersonList: Story;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DQuickActionCheck } from '../../components';
|
|
3
|
-
declare const config: Meta<typeof DQuickActionCheck>;
|
|
4
|
-
export default config;
|
|
5
|
-
type Story = StoryObj<typeof DQuickActionCheck>;
|
|
6
|
-
export declare const Default: Story;
|
|
7
|
-
export declare const Example: Story;
|
|
8
|
-
export declare const Checked: Story;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DQuickActionSelect } from '../../components';
|
|
3
|
-
declare const config: Meta<typeof DQuickActionSelect>;
|
|
4
|
-
export default config;
|
|
5
|
-
type Story = StoryObj<typeof DQuickActionSelect>;
|
|
6
|
-
export declare const Default: Story;
|
|
7
|
-
export declare const Example: Story;
|
|
8
|
-
export declare const Selected: Story;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DQuickActionSwitch } from '../../components';
|
|
3
|
-
declare const config: Meta<typeof DQuickActionSwitch>;
|
|
4
|
-
export default config;
|
|
5
|
-
type Story = StoryObj<typeof DQuickActionSwitch>;
|
|
6
|
-
export declare const Default: Story;
|
|
7
|
-
export declare const Checked: Story;
|
|
8
|
-
export declare const DefaultDisabled: Story;
|
|
9
|
-
export declare const CheckedDisabled: Story;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DStepper } from '../../components';
|
|
3
|
-
declare const config: Meta<typeof DStepper>;
|
|
4
|
-
export default config;
|
|
5
|
-
type Story = StoryObj<typeof DStepper>;
|
|
6
|
-
export declare const Default: Story;
|
|
7
|
-
export declare const Vertical: Story;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DStepperDesktop } from '../../components';
|
|
3
|
-
declare const config: Meta<typeof DStepperDesktop>;
|
|
4
|
-
export default config;
|
|
5
|
-
type Story = StoryObj<typeof DStepperDesktop>;
|
|
6
|
-
export declare const Default: Story;
|
|
7
|
-
export declare const Vertical: Story;
|