@lets-events/react 11.3.0 → 11.4.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/.eslintrc.json +2 -2
- package/.turbo/turbo-build.log +18 -20
- package/CHANGELOG.md +12 -0
- package/dist/index.d.mts +968 -207
- package/dist/index.d.ts +968 -207
- package/dist/index.js +266 -54
- package/dist/index.mjs +262 -48
- package/package.json +1 -1
- package/src/components/Alert.tsx +303 -303
- package/src/components/Avatar.tsx +55 -55
- package/src/components/Badge.tsx +125 -128
- package/src/components/Box.tsx +3 -3
- package/src/components/Button/index.tsx +16 -16
- package/src/components/Button/styledComponents.ts +287 -287
- package/src/components/ButtonGroup.tsx +484 -484
- package/src/components/Calendar/index.tsx +136 -136
- package/src/components/Calendar/styledComponents.ts +209 -209
- package/src/components/Card.tsx +48 -48
- package/src/components/CheckboxGroup.tsx +196 -214
- package/src/components/Container.tsx +39 -39
- package/src/components/Drawer/index.tsx +48 -48
- package/src/components/Drawer/styledComponents.ts +46 -46
- package/src/components/Dropdown.tsx +167 -167
- package/src/components/Filter.tsx +164 -164
- package/src/components/Flex.tsx +118 -118
- package/src/components/FormFields/ErrorFormMessage.tsx +36 -36
- package/src/components/FormFields/Form.tsx +25 -25
- package/src/components/FormFields/FormLabel.tsx +29 -29
- package/src/components/FormFields/MultiSelectFormField.tsx +59 -0
- package/src/components/FormFields/TextAreaFormField.tsx +46 -46
- package/src/components/FormFields/TextFormField.tsx +46 -46
- package/src/components/Grid.tsx +137 -137
- package/src/components/Icon.tsx +47 -47
- package/src/components/MenuDropdown/index.tsx +30 -30
- package/src/components/MenuDropdown/styledComponents.ts +31 -31
- package/src/components/Modal.tsx +90 -90
- package/src/components/MultiSelect.tsx +218 -0
- package/src/components/RadioGroup.tsx +210 -210
- package/src/components/Section.tsx +33 -33
- package/src/components/Step.tsx +164 -164
- package/src/components/Switch.tsx +108 -108
- package/src/components/Text.tsx +38 -39
- package/src/components/TextField.tsx +315 -315
- package/src/components/TextareaField.tsx +128 -128
- package/src/components/TimePicker.tsx +298 -298
- package/src/components/Toast/components/ToastItem.tsx +41 -41
- package/src/components/Toast/components/ToastProvider.tsx +63 -63
- package/src/components/Toast/hooks/useToast.ts +12 -12
- package/src/components/Toast/index.tsx +5 -5
- package/src/components/Toast/styles/index.ts +135 -135
- package/src/components/Toast/types/index.ts +46 -46
- package/src/components/Tooltip/index.tsx +66 -66
- package/src/components/Tooltip/styles.ts +77 -77
- package/src/hooks/useOnClickOutside.tsx +20 -20
- package/src/index.tsx +44 -42
- package/src/styles/index.ts +38 -38
- package/src/types/typographyValues.ts +178 -178
- package/tsconfig.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -3470,39 +3470,7 @@ declare const CheckboxGroupStyled: _stitches_react_types_styled_component.Styled
|
|
|
3470
3470
|
transition: "transitions";
|
|
3471
3471
|
zIndex: "zIndices";
|
|
3472
3472
|
}, {}>>;
|
|
3473
|
-
|
|
3474
|
-
placeholder?: string;
|
|
3475
|
-
children?: React.ReactNode;
|
|
3476
|
-
color?: string;
|
|
3477
|
-
disabled?: boolean;
|
|
3478
|
-
};
|
|
3479
|
-
type CheckboxItemProps = {
|
|
3480
|
-
children?: React.ReactNode;
|
|
3481
|
-
value: string;
|
|
3482
|
-
style?: React.CSSProperties;
|
|
3483
|
-
};
|
|
3484
|
-
declare function CheckboxGroup({ children, ...props }: CheckboxGroupProps): react_jsx_runtime.JSX.Element;
|
|
3485
|
-
declare function CheckboxItem({ children, ...props }: CheckboxItemProps): react_jsx_runtime.JSX.Element;
|
|
3486
|
-
|
|
3487
|
-
type FilterProps = ComponentProps<typeof DropdownMenu$1.Root> & {
|
|
3488
|
-
as?: ElementType;
|
|
3489
|
-
placeholder?: string;
|
|
3490
|
-
fontWeight: 'regular' | 'medium' | 'semibold' | 'bold';
|
|
3491
|
-
typography: 'labelExtraSmall' | 'labelSmall' | 'labelMedium' | 'labelLarge';
|
|
3492
|
-
};
|
|
3493
|
-
type FilterItemProps = ComponentProps<typeof CheckboxItem> & {
|
|
3494
|
-
as?: ElementType;
|
|
3495
|
-
value: string;
|
|
3496
|
-
typography: FilterProps['typography'];
|
|
3497
|
-
fontWeight: FilterProps['fontWeight'];
|
|
3498
|
-
};
|
|
3499
|
-
declare function Filter({ children, placeholder, typography, fontWeight, ...props }: FilterProps): react_jsx_runtime.JSX.Element;
|
|
3500
|
-
declare function FilterItem({ children, ...props }: FilterItemProps): react_jsx_runtime.JSX.Element;
|
|
3501
|
-
|
|
3502
|
-
declare const DropdownMenuItemStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<DropdownMenu$1.ItemProps & react.RefAttributes<HTMLDivElement>>, {
|
|
3503
|
-
typography?: "labelLarge" | "labelMedium" | "labelSmall" | "labelExtraSmall" | undefined;
|
|
3504
|
-
fontWeight?: "bold" | "medium" | "regular" | "semibold" | undefined;
|
|
3505
|
-
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
3473
|
+
declare const StyledItem: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<CheckboxGroup$1.ItemProps & react.RefAttributes<HTMLButtonElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
3506
3474
|
colors: {
|
|
3507
3475
|
brand50: string;
|
|
3508
3476
|
brand100: string;
|
|
@@ -3872,27 +3840,38 @@ declare const DropdownMenuItemStyled: _stitches_react_types_styled_component.Sty
|
|
|
3872
3840
|
transition: "transitions";
|
|
3873
3841
|
zIndex: "zIndices";
|
|
3874
3842
|
}, {}>>;
|
|
3875
|
-
type
|
|
3843
|
+
type CheckboxGroupProps = ComponentProps<typeof CheckboxGroupStyled> & {
|
|
3844
|
+
placeholder?: string;
|
|
3845
|
+
children?: React.ReactNode;
|
|
3846
|
+
color?: string;
|
|
3847
|
+
disabled?: boolean;
|
|
3848
|
+
};
|
|
3849
|
+
type CheckboxItemProps = ComponentProps<typeof StyledItem> & {
|
|
3850
|
+
children?: React.ReactNode;
|
|
3851
|
+
value: string;
|
|
3852
|
+
style?: React.CSSProperties;
|
|
3853
|
+
};
|
|
3854
|
+
declare function CheckboxGroup({ children, ...props }: CheckboxGroupProps): react_jsx_runtime.JSX.Element;
|
|
3855
|
+
declare function CheckboxItem({ children, ...props }: CheckboxItemProps): react_jsx_runtime.JSX.Element;
|
|
3856
|
+
|
|
3857
|
+
type FilterProps = ComponentProps<typeof DropdownMenu$1.Root> & {
|
|
3876
3858
|
as?: ElementType;
|
|
3877
3859
|
placeholder?: string;
|
|
3878
3860
|
fontWeight: 'regular' | 'medium' | 'semibold' | 'bold';
|
|
3879
3861
|
typography: 'labelExtraSmall' | 'labelSmall' | 'labelMedium' | 'labelLarge';
|
|
3880
|
-
children: React.ReactNode;
|
|
3881
3862
|
};
|
|
3882
|
-
type
|
|
3863
|
+
type FilterItemProps = ComponentProps<typeof CheckboxItem> & {
|
|
3883
3864
|
as?: ElementType;
|
|
3884
3865
|
value: string;
|
|
3885
|
-
typography:
|
|
3886
|
-
fontWeight:
|
|
3866
|
+
typography: FilterProps['typography'];
|
|
3867
|
+
fontWeight: FilterProps['fontWeight'];
|
|
3887
3868
|
};
|
|
3888
|
-
declare function
|
|
3889
|
-
declare function
|
|
3869
|
+
declare function Filter({ children, placeholder, typography, fontWeight, ...props }: FilterProps): react_jsx_runtime.JSX.Element;
|
|
3870
|
+
declare function FilterItem({ children, ...props }: FilterItemProps): react_jsx_runtime.JSX.Element;
|
|
3890
3871
|
|
|
3891
|
-
declare const
|
|
3892
|
-
|
|
3893
|
-
size?: "xs" | "sm" | "md" | "xl" | undefined;
|
|
3872
|
+
declare const DropdownMenuItemStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<DropdownMenu$1.ItemProps & react.RefAttributes<HTMLDivElement>>, {
|
|
3873
|
+
typography?: "labelLarge" | "labelMedium" | "labelSmall" | "labelExtraSmall" | undefined;
|
|
3894
3874
|
fontWeight?: "bold" | "medium" | "regular" | "semibold" | undefined;
|
|
3895
|
-
radii?: "full" | undefined;
|
|
3896
3875
|
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
3897
3876
|
colors: {
|
|
3898
3877
|
brand50: string;
|
|
@@ -4263,22 +4242,28 @@ declare const BadgeStyled: _stitches_react_types_styled_component.StyledComponen
|
|
|
4263
4242
|
transition: "transitions";
|
|
4264
4243
|
zIndex: "zIndices";
|
|
4265
4244
|
}, {}>>;
|
|
4266
|
-
type
|
|
4245
|
+
type DropdownMenuProps = ComponentProps<typeof DropdownMenu$1.Root> & {
|
|
4267
4246
|
as?: ElementType;
|
|
4268
|
-
|
|
4269
|
-
|
|
4270
|
-
|
|
4271
|
-
};
|
|
4272
|
-
declare function Badge({ asChild, children, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
|
|
4273
|
-
|
|
4274
|
-
type ModalProps = ComponentProps<typeof Dialog.Root> & {
|
|
4275
|
-
trigger?: React.ReactNode;
|
|
4276
|
-
title?: string;
|
|
4247
|
+
placeholder?: string;
|
|
4248
|
+
fontWeight: 'regular' | 'medium' | 'semibold' | 'bold';
|
|
4249
|
+
typography: 'labelExtraSmall' | 'labelSmall' | 'labelMedium' | 'labelLarge';
|
|
4277
4250
|
children: React.ReactNode;
|
|
4278
4251
|
};
|
|
4279
|
-
|
|
4252
|
+
type DropdownMenuItemProps = ComponentProps<typeof DropdownMenuItemStyled> & {
|
|
4253
|
+
as?: ElementType;
|
|
4254
|
+
value: string;
|
|
4255
|
+
typography: DropdownMenuProps['typography'];
|
|
4256
|
+
fontWeight: DropdownMenuProps['fontWeight'];
|
|
4257
|
+
};
|
|
4258
|
+
declare function DropdownMenu({ children, placeholder, typography, fontWeight, ...props }: DropdownMenuProps): react_jsx_runtime.JSX.Element;
|
|
4259
|
+
declare function DropdownMenuItem({ children, typography, fontWeight, ...props }: DropdownMenuItemProps): react_jsx_runtime.JSX.Element;
|
|
4280
4260
|
|
|
4281
|
-
declare const
|
|
4261
|
+
declare const BadgeStyled: _stitches_react_types_styled_component.StyledComponent<react__default.ForwardRefExoticComponent<_radix_ui_themes.BadgeProps & react__default.RefAttributes<HTMLSpanElement>>, {
|
|
4262
|
+
color?: "blue" | "green" | "grey" | "orange" | "pink" | "purple" | "red" | "yellow" | "dark" | "light" | "primary" | "disable" | undefined;
|
|
4263
|
+
size?: "xs" | "sm" | "md" | "xl" | undefined;
|
|
4264
|
+
fontWeight?: "bold" | "medium" | "regular" | "semibold" | undefined;
|
|
4265
|
+
radii?: "full" | undefined;
|
|
4266
|
+
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
4282
4267
|
colors: {
|
|
4283
4268
|
brand50: string;
|
|
4284
4269
|
brand100: string;
|
|
@@ -4648,13 +4633,21 @@ declare const MenuDropdownContainerStyled: _stitches_react_types_styled_componen
|
|
|
4648
4633
|
transition: "transitions";
|
|
4649
4634
|
zIndex: "zIndices";
|
|
4650
4635
|
}, {}>>;
|
|
4636
|
+
type BadgeProps = ComponentProps<typeof BadgeStyled> & {
|
|
4637
|
+
as?: ElementType;
|
|
4638
|
+
icon?: boolean;
|
|
4639
|
+
children: react__default.ReactNode;
|
|
4640
|
+
};
|
|
4641
|
+
declare function Badge({ asChild, children, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
|
|
4651
4642
|
|
|
4652
|
-
type
|
|
4653
|
-
|
|
4643
|
+
type ModalProps = ComponentProps<typeof Dialog.Root> & {
|
|
4644
|
+
trigger?: React.ReactNode;
|
|
4645
|
+
title?: string;
|
|
4646
|
+
children: React.ReactNode;
|
|
4654
4647
|
};
|
|
4655
|
-
declare function
|
|
4648
|
+
declare function Modal({ children, title, trigger, ...props }: ModalProps): react_jsx_runtime.JSX.Element;
|
|
4656
4649
|
|
|
4657
|
-
declare const
|
|
4650
|
+
declare const MenuDropdownContainerStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
4658
4651
|
colors: {
|
|
4659
4652
|
brand50: string;
|
|
4660
4653
|
brand100: string;
|
|
@@ -5025,17 +5018,12 @@ declare const CalendarStyled: _stitches_react_types_styled_component.StyledCompo
|
|
|
5025
5018
|
zIndex: "zIndices";
|
|
5026
5019
|
}, {}>>;
|
|
5027
5020
|
|
|
5028
|
-
type
|
|
5029
|
-
|
|
5030
|
-
selected: Date | undefined;
|
|
5031
|
-
setSelected: react__default.Dispatch<react__default.SetStateAction<Date | undefined>>;
|
|
5032
|
-
position?: "top" | "bottom";
|
|
5033
|
-
action?: boolean;
|
|
5034
|
-
actionText?: string;
|
|
5021
|
+
type MenuDropdownProps = ComponentProps<typeof MenuDropdownContainerStyled> & {
|
|
5022
|
+
children: ReactNode;
|
|
5035
5023
|
};
|
|
5036
|
-
declare function
|
|
5024
|
+
declare function MenuDropdown({ children }: MenuDropdownProps): react_jsx_runtime.JSX.Element;
|
|
5037
5025
|
|
|
5038
|
-
declare const
|
|
5026
|
+
declare const CalendarStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
5039
5027
|
colors: {
|
|
5040
5028
|
brand50: string;
|
|
5041
5029
|
brand100: string;
|
|
@@ -5406,17 +5394,17 @@ declare const DrawerOverlayStyled: _stitches_react_types_styled_component.Styled
|
|
|
5406
5394
|
zIndex: "zIndices";
|
|
5407
5395
|
}, {}>>;
|
|
5408
5396
|
|
|
5409
|
-
type
|
|
5410
|
-
|
|
5411
|
-
|
|
5412
|
-
|
|
5413
|
-
|
|
5414
|
-
|
|
5415
|
-
|
|
5397
|
+
type CalendarProps = ComponentProps<typeof CalendarStyled> & {
|
|
5398
|
+
calendarLayout?: "label" | "dropdown" | "dropdown-months" | "dropdown-years";
|
|
5399
|
+
selected: Date | undefined;
|
|
5400
|
+
setSelected: react__default.Dispatch<react__default.SetStateAction<Date | undefined>>;
|
|
5401
|
+
position?: "top" | "bottom";
|
|
5402
|
+
action?: boolean;
|
|
5403
|
+
actionText?: string;
|
|
5416
5404
|
};
|
|
5417
|
-
declare function
|
|
5405
|
+
declare function Calendar({ action, actionText, calendarLayout, selected, setSelected, position, ...props }: CalendarProps): react_jsx_runtime.JSX.Element;
|
|
5418
5406
|
|
|
5419
|
-
declare const
|
|
5407
|
+
declare const DrawerOverlayStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
5420
5408
|
colors: {
|
|
5421
5409
|
brand50: string;
|
|
5422
5410
|
brand100: string;
|
|
@@ -5786,7 +5774,18 @@ declare const TimePickerStyled: _stitches_react_types_styled_component.StyledCom
|
|
|
5786
5774
|
transition: "transitions";
|
|
5787
5775
|
zIndex: "zIndices";
|
|
5788
5776
|
}, {}>>;
|
|
5789
|
-
|
|
5777
|
+
|
|
5778
|
+
type DrawerProps = ComponentProps<typeof DrawerOverlayStyled> & {
|
|
5779
|
+
isOpen: boolean;
|
|
5780
|
+
onClose: () => void;
|
|
5781
|
+
width?: string;
|
|
5782
|
+
backgroundColor?: keyof Colors;
|
|
5783
|
+
title: string;
|
|
5784
|
+
children?: ReactNode;
|
|
5785
|
+
};
|
|
5786
|
+
declare function Drawer({ isOpen, onClose, width, backgroundColor, title, children, }: DrawerProps): react_jsx_runtime.JSX.Element | null;
|
|
5787
|
+
|
|
5788
|
+
declare const TimePickerStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
5790
5789
|
colors: {
|
|
5791
5790
|
brand50: string;
|
|
5792
5791
|
brand100: string;
|
|
@@ -6156,7 +6155,7 @@ declare const TimePickerDropdownStyled: _stitches_react_types_styled_component.S
|
|
|
6156
6155
|
transition: "transitions";
|
|
6157
6156
|
zIndex: "zIndices";
|
|
6158
6157
|
}, {}>>;
|
|
6159
|
-
declare const
|
|
6158
|
+
declare const TimePickerDropdownStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
6160
6159
|
colors: {
|
|
6161
6160
|
brand50: string;
|
|
6162
6161
|
brand100: string;
|
|
@@ -6526,7 +6525,7 @@ declare const TimePickerFooterStyled: _stitches_react_types_styled_component.Sty
|
|
|
6526
6525
|
transition: "transitions";
|
|
6527
6526
|
zIndex: "zIndices";
|
|
6528
6527
|
}, {}>>;
|
|
6529
|
-
declare const
|
|
6528
|
+
declare const TimePickerFooterStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
6530
6529
|
colors: {
|
|
6531
6530
|
brand50: string;
|
|
6532
6531
|
brand100: string;
|
|
@@ -6896,7 +6895,7 @@ declare const TimerPickerContentStyled: _stitches_react_types_styled_component.S
|
|
|
6896
6895
|
transition: "transitions";
|
|
6897
6896
|
zIndex: "zIndices";
|
|
6898
6897
|
}, {}>>;
|
|
6899
|
-
declare const
|
|
6898
|
+
declare const TimerPickerContentStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
6900
6899
|
colors: {
|
|
6901
6900
|
brand50: string;
|
|
6902
6901
|
brand100: string;
|
|
@@ -7266,7 +7265,7 @@ declare const InputStyled: _stitches_react_types_styled_component.StyledComponen
|
|
|
7266
7265
|
transition: "transitions";
|
|
7267
7266
|
zIndex: "zIndices";
|
|
7268
7267
|
}, {}>>;
|
|
7269
|
-
declare const
|
|
7268
|
+
declare const InputStyled: _stitches_react_types_styled_component.StyledComponent<"input", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
7270
7269
|
colors: {
|
|
7271
7270
|
brand50: string;
|
|
7272
7271
|
brand100: string;
|
|
@@ -7636,16 +7635,7 @@ declare const TimePickerButtonStyled: _stitches_react_types_styled_component.Sty
|
|
|
7636
7635
|
transition: "transitions";
|
|
7637
7636
|
zIndex: "zIndices";
|
|
7638
7637
|
}, {}>>;
|
|
7639
|
-
|
|
7640
|
-
selected: string | undefined;
|
|
7641
|
-
setSelected: react__default.Dispatch<react__default.SetStateAction<string | undefined>>;
|
|
7642
|
-
position?: "bottom" | "top";
|
|
7643
|
-
};
|
|
7644
|
-
declare function TimePicker({ selected, setSelected, position, }: TimePickerProps): react_jsx_runtime.JSX.Element;
|
|
7645
|
-
|
|
7646
|
-
declare const AlertDialogSimpleStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<AlertDialog.ContentProps & react.RefAttributes<HTMLDivElement>>, {
|
|
7647
|
-
color?: "info" | "warning" | "error" | "success" | undefined;
|
|
7648
|
-
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
7638
|
+
declare const TimePickerButtonStyled: _stitches_react_types_styled_component.StyledComponent<"button", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
7649
7639
|
colors: {
|
|
7650
7640
|
brand50: string;
|
|
7651
7641
|
brand100: string;
|
|
@@ -8015,8 +8005,15 @@ declare const AlertDialogSimpleStyled: _stitches_react_types_styled_component.St
|
|
|
8015
8005
|
transition: "transitions";
|
|
8016
8006
|
zIndex: "zIndices";
|
|
8017
8007
|
}, {}>>;
|
|
8018
|
-
|
|
8019
|
-
|
|
8008
|
+
type TimePickerProps = {
|
|
8009
|
+
selected: string | undefined;
|
|
8010
|
+
setSelected: react__default.Dispatch<react__default.SetStateAction<string | undefined>>;
|
|
8011
|
+
position?: "bottom" | "top";
|
|
8012
|
+
};
|
|
8013
|
+
declare function TimePicker({ selected, setSelected, position, }: TimePickerProps): react_jsx_runtime.JSX.Element;
|
|
8014
|
+
|
|
8015
|
+
declare const AlertDialogSimpleStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<AlertDialog.ContentProps & react.RefAttributes<HTMLDivElement>>, {
|
|
8016
|
+
color?: "info" | "warning" | "error" | "success" | undefined;
|
|
8020
8017
|
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
8021
8018
|
colors: {
|
|
8022
8019
|
brand50: string;
|
|
@@ -8387,7 +8384,9 @@ declare const AlertDialogCompleteStyled: _stitches_react_types_styled_component.
|
|
|
8387
8384
|
transition: "transitions";
|
|
8388
8385
|
zIndex: "zIndices";
|
|
8389
8386
|
}, {}>>;
|
|
8390
|
-
declare const
|
|
8387
|
+
declare const AlertDialogCompleteStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<AlertDialog.ContentProps & react.RefAttributes<HTMLDivElement>>, {
|
|
8388
|
+
color?: undefined;
|
|
8389
|
+
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
8391
8390
|
colors: {
|
|
8392
8391
|
brand50: string;
|
|
8393
8392
|
brand100: string;
|
|
@@ -8757,7 +8756,7 @@ declare const AlertDialogDescriptionStyled: _stitches_react_types_styled_compone
|
|
|
8757
8756
|
transition: "transitions";
|
|
8758
8757
|
zIndex: "zIndices";
|
|
8759
8758
|
}, {}>>;
|
|
8760
|
-
declare const
|
|
8759
|
+
declare const AlertDialogDescriptionStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<AlertDialog.DescriptionProps & react.RefAttributes<HTMLParagraphElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
8761
8760
|
colors: {
|
|
8762
8761
|
brand50: string;
|
|
8763
8762
|
brand100: string;
|
|
@@ -9127,7 +9126,7 @@ declare const AlertDialogTitleStyled: _stitches_react_types_styled_component.Sty
|
|
|
9127
9126
|
transition: "transitions";
|
|
9128
9127
|
zIndex: "zIndices";
|
|
9129
9128
|
}, {}>>;
|
|
9130
|
-
declare const
|
|
9129
|
+
declare const AlertDialogTitleStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<AlertDialog.TitleProps & react.RefAttributes<HTMLHeadingElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
9131
9130
|
colors: {
|
|
9132
9131
|
brand50: string;
|
|
9133
9132
|
brand100: string;
|
|
@@ -9497,7 +9496,7 @@ declare const AlertDialogSubtitleStyled: _stitches_react_types_styled_component.
|
|
|
9497
9496
|
transition: "transitions";
|
|
9498
9497
|
zIndex: "zIndices";
|
|
9499
9498
|
}, {}>>;
|
|
9500
|
-
declare const
|
|
9499
|
+
declare const AlertDialogSubtitleStyled: _stitches_react_types_styled_component.StyledComponent<typeof Text, {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
9501
9500
|
colors: {
|
|
9502
9501
|
brand50: string;
|
|
9503
9502
|
brand100: string;
|
|
@@ -9867,7 +9866,7 @@ declare const AlertDialogRowStyled: _stitches_react_types_styled_component.Style
|
|
|
9867
9866
|
transition: "transitions";
|
|
9868
9867
|
zIndex: "zIndices";
|
|
9869
9868
|
}, {}>>;
|
|
9870
|
-
declare const
|
|
9869
|
+
declare const AlertDialogRowStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
9871
9870
|
colors: {
|
|
9872
9871
|
brand50: string;
|
|
9873
9872
|
brand100: string;
|
|
@@ -10237,29 +10236,7 @@ declare const AlertDialoghrStyled: _stitches_react_types_styled_component.Styled
|
|
|
10237
10236
|
transition: "transitions";
|
|
10238
10237
|
zIndex: "zIndices";
|
|
10239
10238
|
}, {}>>;
|
|
10240
|
-
|
|
10241
|
-
trigger: React.ReactNode;
|
|
10242
|
-
color?: "error" | "warning" | "success" | "info";
|
|
10243
|
-
simpleAlert?: {
|
|
10244
|
-
description: string;
|
|
10245
|
-
cancel: boolean;
|
|
10246
|
-
};
|
|
10247
|
-
completAlert?: {
|
|
10248
|
-
title?: string;
|
|
10249
|
-
subtitle?: string;
|
|
10250
|
-
description: string;
|
|
10251
|
-
cancel: boolean;
|
|
10252
|
-
cancelText?: string;
|
|
10253
|
-
actionText?: string;
|
|
10254
|
-
onAction?: () => void;
|
|
10255
|
-
};
|
|
10256
|
-
};
|
|
10257
|
-
declare function Alert({ color, trigger, completAlert, simpleAlert, ...props }: AlertProps): react_jsx_runtime.JSX.Element;
|
|
10258
|
-
|
|
10259
|
-
declare const SwitchStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<_radix_ui_themes.SwitchProps & react.RefAttributes<HTMLButtonElement>>, {
|
|
10260
|
-
color?: "brand" | undefined;
|
|
10261
|
-
size?: "sm" | "md" | "lg" | undefined;
|
|
10262
|
-
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
10239
|
+
declare const AlertDialoghrStyled: _stitches_react_types_styled_component.StyledComponent<"hr", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
10263
10240
|
colors: {
|
|
10264
10241
|
brand50: string;
|
|
10265
10242
|
brand100: string;
|
|
@@ -10629,13 +10606,29 @@ declare const SwitchStyled: _stitches_react_types_styled_component.StyledCompone
|
|
|
10629
10606
|
transition: "transitions";
|
|
10630
10607
|
zIndex: "zIndices";
|
|
10631
10608
|
}, {}>>;
|
|
10632
|
-
type
|
|
10633
|
-
|
|
10634
|
-
|
|
10609
|
+
type AlertProps = {
|
|
10610
|
+
trigger: React.ReactNode;
|
|
10611
|
+
color?: "error" | "warning" | "success" | "info";
|
|
10612
|
+
simpleAlert?: {
|
|
10613
|
+
description: string;
|
|
10614
|
+
cancel: boolean;
|
|
10615
|
+
};
|
|
10616
|
+
completAlert?: {
|
|
10617
|
+
title?: string;
|
|
10618
|
+
subtitle?: string;
|
|
10619
|
+
description: string;
|
|
10620
|
+
cancel: boolean;
|
|
10621
|
+
cancelText?: string;
|
|
10622
|
+
actionText?: string;
|
|
10623
|
+
onAction?: () => void;
|
|
10624
|
+
};
|
|
10635
10625
|
};
|
|
10636
|
-
declare function
|
|
10626
|
+
declare function Alert({ color, trigger, completAlert, simpleAlert, ...props }: AlertProps): react_jsx_runtime.JSX.Element;
|
|
10637
10627
|
|
|
10638
|
-
declare const
|
|
10628
|
+
declare const SwitchStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<_radix_ui_themes.SwitchProps & react.RefAttributes<HTMLButtonElement>>, {
|
|
10629
|
+
color?: "brand" | undefined;
|
|
10630
|
+
size?: "sm" | "md" | "lg" | undefined;
|
|
10631
|
+
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
10639
10632
|
colors: {
|
|
10640
10633
|
brand50: string;
|
|
10641
10634
|
brand100: string;
|
|
@@ -11005,15 +10998,391 @@ declare const StepStyled: _stitches_react_types_styled_component.StyledComponent
|
|
|
11005
10998
|
transition: "transitions";
|
|
11006
10999
|
zIndex: "zIndices";
|
|
11007
11000
|
}, {}>>;
|
|
11008
|
-
type
|
|
11009
|
-
|
|
11010
|
-
|
|
11001
|
+
type SwitchProps = ComponentProps<typeof Switch$1> & {
|
|
11002
|
+
color?: 'brand';
|
|
11003
|
+
size?: 'sm' | 'md' | 'lg';
|
|
11011
11004
|
};
|
|
11012
|
-
declare function
|
|
11013
|
-
|
|
11014
|
-
|
|
11015
|
-
|
|
11016
|
-
|
|
11005
|
+
declare function Switch(props: SwitchProps): react_jsx_runtime.JSX.Element;
|
|
11006
|
+
|
|
11007
|
+
declare const StepStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
11008
|
+
colors: {
|
|
11009
|
+
brand50: string;
|
|
11010
|
+
brand100: string;
|
|
11011
|
+
brand200: string;
|
|
11012
|
+
brand300: string;
|
|
11013
|
+
brand400: string;
|
|
11014
|
+
brand500: string;
|
|
11015
|
+
brand600: string;
|
|
11016
|
+
brand700: string;
|
|
11017
|
+
brand800: string;
|
|
11018
|
+
brand900: string;
|
|
11019
|
+
brand950: string;
|
|
11020
|
+
blue50: string;
|
|
11021
|
+
blue100: string;
|
|
11022
|
+
blue200: string;
|
|
11023
|
+
blue300: string;
|
|
11024
|
+
blue400: string;
|
|
11025
|
+
blue500: string;
|
|
11026
|
+
blue600: string;
|
|
11027
|
+
blue700: string;
|
|
11028
|
+
blue800: string;
|
|
11029
|
+
blue900: string;
|
|
11030
|
+
blue950: string;
|
|
11031
|
+
red50: string;
|
|
11032
|
+
red100: string;
|
|
11033
|
+
red200: string;
|
|
11034
|
+
red300: string;
|
|
11035
|
+
red400: string;
|
|
11036
|
+
red500: string;
|
|
11037
|
+
red600: string;
|
|
11038
|
+
red700: string;
|
|
11039
|
+
red800: string;
|
|
11040
|
+
red900: string;
|
|
11041
|
+
red950: string;
|
|
11042
|
+
purple50: string;
|
|
11043
|
+
purple100: string;
|
|
11044
|
+
purple200: string;
|
|
11045
|
+
purple300: string;
|
|
11046
|
+
purple400: string;
|
|
11047
|
+
purple500: string;
|
|
11048
|
+
purple600: string;
|
|
11049
|
+
purple700: string;
|
|
11050
|
+
purple800: string;
|
|
11051
|
+
purple900: string;
|
|
11052
|
+
purple950: string;
|
|
11053
|
+
yellow50: string;
|
|
11054
|
+
yellow100: string;
|
|
11055
|
+
yellow200: string;
|
|
11056
|
+
yellow300: string;
|
|
11057
|
+
yellow400: string;
|
|
11058
|
+
yellow500: string;
|
|
11059
|
+
yellow600: string;
|
|
11060
|
+
yellow700: string;
|
|
11061
|
+
yellow800: string;
|
|
11062
|
+
yellow900: string;
|
|
11063
|
+
yellow950: string;
|
|
11064
|
+
dark50: string;
|
|
11065
|
+
dark100: string;
|
|
11066
|
+
dark200: string;
|
|
11067
|
+
dark300: string;
|
|
11068
|
+
dark400: string;
|
|
11069
|
+
dark500: string;
|
|
11070
|
+
dark600: string;
|
|
11071
|
+
dark700: string;
|
|
11072
|
+
dark800: string;
|
|
11073
|
+
dark900: string;
|
|
11074
|
+
dark950: string;
|
|
11075
|
+
neutral50: string;
|
|
11076
|
+
neutral100: string;
|
|
11077
|
+
neutral200: string;
|
|
11078
|
+
neutral300: string;
|
|
11079
|
+
neutral400: string;
|
|
11080
|
+
neutral500: string;
|
|
11081
|
+
neutral600: string;
|
|
11082
|
+
neutral700: string;
|
|
11083
|
+
neutral800: string;
|
|
11084
|
+
neutral900: string;
|
|
11085
|
+
neutral950: string;
|
|
11086
|
+
green50: string;
|
|
11087
|
+
green100: string;
|
|
11088
|
+
green200: string;
|
|
11089
|
+
green300: string;
|
|
11090
|
+
green400: string;
|
|
11091
|
+
green500: string;
|
|
11092
|
+
green600: string;
|
|
11093
|
+
green700: string;
|
|
11094
|
+
green800: string;
|
|
11095
|
+
green900: string;
|
|
11096
|
+
green950: string;
|
|
11097
|
+
grey50: string;
|
|
11098
|
+
grey100: string;
|
|
11099
|
+
grey200: string;
|
|
11100
|
+
grey300: string;
|
|
11101
|
+
grey400: string;
|
|
11102
|
+
grey500: string;
|
|
11103
|
+
grey600: string;
|
|
11104
|
+
grey700: string;
|
|
11105
|
+
grey800: string;
|
|
11106
|
+
grey900: string;
|
|
11107
|
+
grey950: string;
|
|
11108
|
+
error50: string;
|
|
11109
|
+
error100: string;
|
|
11110
|
+
error200: string;
|
|
11111
|
+
error300: string;
|
|
11112
|
+
error400: string;
|
|
11113
|
+
error500: string;
|
|
11114
|
+
error600: string;
|
|
11115
|
+
error700: string;
|
|
11116
|
+
error800: string;
|
|
11117
|
+
error900: string;
|
|
11118
|
+
error950: string;
|
|
11119
|
+
success50: string;
|
|
11120
|
+
success100: string;
|
|
11121
|
+
success200: string;
|
|
11122
|
+
success300: string;
|
|
11123
|
+
success400: string;
|
|
11124
|
+
success500: string;
|
|
11125
|
+
success600: string;
|
|
11126
|
+
success700: string;
|
|
11127
|
+
success800: string;
|
|
11128
|
+
success900: string;
|
|
11129
|
+
success950: string;
|
|
11130
|
+
warning50: string;
|
|
11131
|
+
warning100: string;
|
|
11132
|
+
warning200: string;
|
|
11133
|
+
warning300: string;
|
|
11134
|
+
warning400: string;
|
|
11135
|
+
warning500: string;
|
|
11136
|
+
warning600: string;
|
|
11137
|
+
warning700: string;
|
|
11138
|
+
warning800: string;
|
|
11139
|
+
warning900: string;
|
|
11140
|
+
warning950: string;
|
|
11141
|
+
info50: string;
|
|
11142
|
+
info100: string;
|
|
11143
|
+
info200: string;
|
|
11144
|
+
info300: string;
|
|
11145
|
+
info400: string;
|
|
11146
|
+
info500: string;
|
|
11147
|
+
info600: string;
|
|
11148
|
+
info700: string;
|
|
11149
|
+
info800: string;
|
|
11150
|
+
info900: string;
|
|
11151
|
+
info950: string;
|
|
11152
|
+
};
|
|
11153
|
+
fontSizes: {
|
|
11154
|
+
2: string;
|
|
11155
|
+
4: string;
|
|
11156
|
+
6: string;
|
|
11157
|
+
8: string;
|
|
11158
|
+
10: string;
|
|
11159
|
+
12: string;
|
|
11160
|
+
13: string;
|
|
11161
|
+
14: string;
|
|
11162
|
+
16: string;
|
|
11163
|
+
18: string;
|
|
11164
|
+
20: string;
|
|
11165
|
+
22: string;
|
|
11166
|
+
24: string;
|
|
11167
|
+
32: string;
|
|
11168
|
+
36: string;
|
|
11169
|
+
40: string;
|
|
11170
|
+
48: string;
|
|
11171
|
+
56: string;
|
|
11172
|
+
64: string;
|
|
11173
|
+
72: string;
|
|
11174
|
+
80: string;
|
|
11175
|
+
xs: string;
|
|
11176
|
+
sm: string;
|
|
11177
|
+
md: string;
|
|
11178
|
+
lg: string;
|
|
11179
|
+
'2xl': string;
|
|
11180
|
+
'3xl': string;
|
|
11181
|
+
'4xl': string;
|
|
11182
|
+
full: string;
|
|
11183
|
+
};
|
|
11184
|
+
fonts: {
|
|
11185
|
+
default: string;
|
|
11186
|
+
};
|
|
11187
|
+
fontWeights: {
|
|
11188
|
+
regular: string;
|
|
11189
|
+
medium: string;
|
|
11190
|
+
semibold: string;
|
|
11191
|
+
bold: string;
|
|
11192
|
+
};
|
|
11193
|
+
lineHeights: {
|
|
11194
|
+
smaller: string;
|
|
11195
|
+
shorter: string;
|
|
11196
|
+
short: string;
|
|
11197
|
+
base: string;
|
|
11198
|
+
tall: string;
|
|
11199
|
+
};
|
|
11200
|
+
radii: {
|
|
11201
|
+
'3xs': string;
|
|
11202
|
+
'2xs': string;
|
|
11203
|
+
xs: string;
|
|
11204
|
+
sm: string;
|
|
11205
|
+
md: string;
|
|
11206
|
+
lg: string;
|
|
11207
|
+
xl: string;
|
|
11208
|
+
'2xl': string;
|
|
11209
|
+
'3xl': string;
|
|
11210
|
+
'4xl': string;
|
|
11211
|
+
'5xl': string;
|
|
11212
|
+
'6xl': string;
|
|
11213
|
+
'7xl': string;
|
|
11214
|
+
'8xl': string;
|
|
11215
|
+
'9xl': string;
|
|
11216
|
+
'10xl': string;
|
|
11217
|
+
'11xl': string;
|
|
11218
|
+
'12xl': string;
|
|
11219
|
+
'13xl': string;
|
|
11220
|
+
'14xl': string;
|
|
11221
|
+
full: string;
|
|
11222
|
+
};
|
|
11223
|
+
space: {
|
|
11224
|
+
2: string;
|
|
11225
|
+
4: string;
|
|
11226
|
+
6: string;
|
|
11227
|
+
8: string;
|
|
11228
|
+
10: string;
|
|
11229
|
+
12: string;
|
|
11230
|
+
13: string;
|
|
11231
|
+
14: string;
|
|
11232
|
+
16: string;
|
|
11233
|
+
18: string;
|
|
11234
|
+
20: string;
|
|
11235
|
+
22: string;
|
|
11236
|
+
24: string;
|
|
11237
|
+
32: string;
|
|
11238
|
+
36: string;
|
|
11239
|
+
40: string;
|
|
11240
|
+
48: string;
|
|
11241
|
+
56: string;
|
|
11242
|
+
64: string;
|
|
11243
|
+
72: string;
|
|
11244
|
+
80: string;
|
|
11245
|
+
full: string;
|
|
11246
|
+
};
|
|
11247
|
+
}, {
|
|
11248
|
+
height: "space";
|
|
11249
|
+
width: "space";
|
|
11250
|
+
gap: "space";
|
|
11251
|
+
gridGap: "space";
|
|
11252
|
+
columnGap: "space";
|
|
11253
|
+
gridColumnGap: "space";
|
|
11254
|
+
rowGap: "space";
|
|
11255
|
+
gridRowGap: "space";
|
|
11256
|
+
inset: "space";
|
|
11257
|
+
insetBlock: "space";
|
|
11258
|
+
insetBlockEnd: "space";
|
|
11259
|
+
insetBlockStart: "space";
|
|
11260
|
+
insetInline: "space";
|
|
11261
|
+
insetInlineEnd: "space";
|
|
11262
|
+
insetInlineStart: "space";
|
|
11263
|
+
margin: "space";
|
|
11264
|
+
marginTop: "space";
|
|
11265
|
+
marginRight: "space";
|
|
11266
|
+
marginBottom: "space";
|
|
11267
|
+
marginLeft: "space";
|
|
11268
|
+
marginBlock: "space";
|
|
11269
|
+
marginBlockEnd: "space";
|
|
11270
|
+
marginBlockStart: "space";
|
|
11271
|
+
marginInline: "space";
|
|
11272
|
+
marginInlineEnd: "space";
|
|
11273
|
+
marginInlineStart: "space";
|
|
11274
|
+
padding: "space";
|
|
11275
|
+
paddingTop: "space";
|
|
11276
|
+
paddingRight: "space";
|
|
11277
|
+
paddingBottom: "space";
|
|
11278
|
+
paddingLeft: "space";
|
|
11279
|
+
paddingBlock: "space";
|
|
11280
|
+
paddingBlockEnd: "space";
|
|
11281
|
+
paddingBlockStart: "space";
|
|
11282
|
+
paddingInline: "space";
|
|
11283
|
+
paddingInlineEnd: "space";
|
|
11284
|
+
paddingInlineStart: "space";
|
|
11285
|
+
scrollMargin: "space";
|
|
11286
|
+
scrollMarginTop: "space";
|
|
11287
|
+
scrollMarginRight: "space";
|
|
11288
|
+
scrollMarginBottom: "space";
|
|
11289
|
+
scrollMarginLeft: "space";
|
|
11290
|
+
scrollMarginBlock: "space";
|
|
11291
|
+
scrollMarginBlockEnd: "space";
|
|
11292
|
+
scrollMarginBlockStart: "space";
|
|
11293
|
+
scrollMarginInline: "space";
|
|
11294
|
+
scrollMarginInlineEnd: "space";
|
|
11295
|
+
scrollMarginInlineStart: "space";
|
|
11296
|
+
scrollPadding: "space";
|
|
11297
|
+
scrollPaddingTop: "space";
|
|
11298
|
+
scrollPaddingRight: "space";
|
|
11299
|
+
scrollPaddingBottom: "space";
|
|
11300
|
+
scrollPaddingLeft: "space";
|
|
11301
|
+
scrollPaddingBlock: "space";
|
|
11302
|
+
scrollPaddingBlockEnd: "space";
|
|
11303
|
+
scrollPaddingBlockStart: "space";
|
|
11304
|
+
scrollPaddingInline: "space";
|
|
11305
|
+
scrollPaddingInlineEnd: "space";
|
|
11306
|
+
scrollPaddingInlineStart: "space";
|
|
11307
|
+
top: "space";
|
|
11308
|
+
right: "space";
|
|
11309
|
+
bottom: "space";
|
|
11310
|
+
left: "space";
|
|
11311
|
+
fontSize: "fontSizes";
|
|
11312
|
+
background: "colors";
|
|
11313
|
+
backgroundColor: "colors";
|
|
11314
|
+
backgroundImage: "colors";
|
|
11315
|
+
borderImage: "colors";
|
|
11316
|
+
border: "colors";
|
|
11317
|
+
borderBlock: "colors";
|
|
11318
|
+
borderBlockEnd: "colors";
|
|
11319
|
+
borderBlockStart: "colors";
|
|
11320
|
+
borderBottom: "colors";
|
|
11321
|
+
borderBottomColor: "colors";
|
|
11322
|
+
borderColor: "colors";
|
|
11323
|
+
borderInline: "colors";
|
|
11324
|
+
borderInlineEnd: "colors";
|
|
11325
|
+
borderInlineStart: "colors";
|
|
11326
|
+
borderLeft: "colors";
|
|
11327
|
+
borderLeftColor: "colors";
|
|
11328
|
+
borderRight: "colors";
|
|
11329
|
+
borderRightColor: "colors";
|
|
11330
|
+
borderTop: "colors";
|
|
11331
|
+
borderTopColor: "colors";
|
|
11332
|
+
caretColor: "colors";
|
|
11333
|
+
color: "colors";
|
|
11334
|
+
columnRuleColor: "colors";
|
|
11335
|
+
outline: "colors";
|
|
11336
|
+
outlineColor: "colors";
|
|
11337
|
+
fill: "colors";
|
|
11338
|
+
stroke: "colors";
|
|
11339
|
+
textDecorationColor: "colors";
|
|
11340
|
+
fontFamily: "fonts";
|
|
11341
|
+
fontWeight: "fontWeights";
|
|
11342
|
+
lineHeight: "lineHeights";
|
|
11343
|
+
letterSpacing: "letterSpacings";
|
|
11344
|
+
blockSize: "sizes";
|
|
11345
|
+
minBlockSize: "sizes";
|
|
11346
|
+
maxBlockSize: "sizes";
|
|
11347
|
+
inlineSize: "sizes";
|
|
11348
|
+
minInlineSize: "sizes";
|
|
11349
|
+
maxInlineSize: "sizes";
|
|
11350
|
+
minWidth: "sizes";
|
|
11351
|
+
maxWidth: "sizes";
|
|
11352
|
+
minHeight: "sizes";
|
|
11353
|
+
maxHeight: "sizes";
|
|
11354
|
+
flexBasis: "sizes";
|
|
11355
|
+
gridTemplateColumns: "sizes";
|
|
11356
|
+
gridTemplateRows: "sizes";
|
|
11357
|
+
borderWidth: "borderWidths";
|
|
11358
|
+
borderTopWidth: "borderWidths";
|
|
11359
|
+
borderLeftWidth: "borderWidths";
|
|
11360
|
+
borderRightWidth: "borderWidths";
|
|
11361
|
+
borderBottomWidth: "borderWidths";
|
|
11362
|
+
borderStyle: "borderStyles";
|
|
11363
|
+
borderTopStyle: "borderStyles";
|
|
11364
|
+
borderLeftStyle: "borderStyles";
|
|
11365
|
+
borderRightStyle: "borderStyles";
|
|
11366
|
+
borderBottomStyle: "borderStyles";
|
|
11367
|
+
borderRadius: "radii";
|
|
11368
|
+
borderTopLeftRadius: "radii";
|
|
11369
|
+
borderTopRightRadius: "radii";
|
|
11370
|
+
borderBottomRightRadius: "radii";
|
|
11371
|
+
borderBottomLeftRadius: "radii";
|
|
11372
|
+
boxShadow: "shadows";
|
|
11373
|
+
textShadow: "shadows";
|
|
11374
|
+
transition: "transitions";
|
|
11375
|
+
zIndex: "zIndices";
|
|
11376
|
+
}, {}>>;
|
|
11377
|
+
type StepProps = ComponentProps<typeof StepStyled> & {
|
|
11378
|
+
children: react__default.ReactNode;
|
|
11379
|
+
defaultValue: number;
|
|
11380
|
+
};
|
|
11381
|
+
declare function Step({ children, defaultValue, ...props }: StepProps): react_jsx_runtime.JSX.Element;
|
|
11382
|
+
declare function StepTrigger({ value, children, currentStep, ...props }: {
|
|
11383
|
+
value: number;
|
|
11384
|
+
children: react__default.ReactNode | string;
|
|
11385
|
+
currentStep?: number;
|
|
11017
11386
|
onClick: () => void;
|
|
11018
11387
|
}): react_jsx_runtime.JSX.Element;
|
|
11019
11388
|
declare function StepContent({ value, children, ...props }: {
|
|
@@ -11026,11 +11395,389 @@ declare function StepList({ children, currentStep, ...props }: {
|
|
|
11026
11395
|
}): react_jsx_runtime.JSX.Element;
|
|
11027
11396
|
declare function StepWrapper({ children, ...props }: {
|
|
11028
11397
|
children: react__default.ReactNode;
|
|
11029
|
-
}): react_jsx_runtime.JSX.Element;
|
|
11398
|
+
}): react_jsx_runtime.JSX.Element;
|
|
11399
|
+
|
|
11400
|
+
declare const CardStyled: _stitches_react_types_styled_component.StyledComponent<react__default.ForwardRefExoticComponent<_radix_ui_themes.CardProps & react__default.RefAttributes<HTMLDivElement>>, {
|
|
11401
|
+
color?: "error" | "primary" | "disable" | undefined;
|
|
11402
|
+
boxShadow?: boolean | "false" | "true" | undefined;
|
|
11403
|
+
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
11404
|
+
colors: {
|
|
11405
|
+
brand50: string;
|
|
11406
|
+
brand100: string;
|
|
11407
|
+
brand200: string;
|
|
11408
|
+
brand300: string;
|
|
11409
|
+
brand400: string;
|
|
11410
|
+
brand500: string;
|
|
11411
|
+
brand600: string;
|
|
11412
|
+
brand700: string;
|
|
11413
|
+
brand800: string;
|
|
11414
|
+
brand900: string;
|
|
11415
|
+
brand950: string;
|
|
11416
|
+
blue50: string;
|
|
11417
|
+
blue100: string;
|
|
11418
|
+
blue200: string;
|
|
11419
|
+
blue300: string;
|
|
11420
|
+
blue400: string;
|
|
11421
|
+
blue500: string;
|
|
11422
|
+
blue600: string;
|
|
11423
|
+
blue700: string;
|
|
11424
|
+
blue800: string;
|
|
11425
|
+
blue900: string;
|
|
11426
|
+
blue950: string;
|
|
11427
|
+
red50: string;
|
|
11428
|
+
red100: string;
|
|
11429
|
+
red200: string;
|
|
11430
|
+
red300: string;
|
|
11431
|
+
red400: string;
|
|
11432
|
+
red500: string;
|
|
11433
|
+
red600: string;
|
|
11434
|
+
red700: string;
|
|
11435
|
+
red800: string;
|
|
11436
|
+
red900: string;
|
|
11437
|
+
red950: string;
|
|
11438
|
+
purple50: string;
|
|
11439
|
+
purple100: string;
|
|
11440
|
+
purple200: string;
|
|
11441
|
+
purple300: string;
|
|
11442
|
+
purple400: string;
|
|
11443
|
+
purple500: string;
|
|
11444
|
+
purple600: string;
|
|
11445
|
+
purple700: string;
|
|
11446
|
+
purple800: string;
|
|
11447
|
+
purple900: string;
|
|
11448
|
+
purple950: string;
|
|
11449
|
+
yellow50: string;
|
|
11450
|
+
yellow100: string;
|
|
11451
|
+
yellow200: string;
|
|
11452
|
+
yellow300: string;
|
|
11453
|
+
yellow400: string;
|
|
11454
|
+
yellow500: string;
|
|
11455
|
+
yellow600: string;
|
|
11456
|
+
yellow700: string;
|
|
11457
|
+
yellow800: string;
|
|
11458
|
+
yellow900: string;
|
|
11459
|
+
yellow950: string;
|
|
11460
|
+
dark50: string;
|
|
11461
|
+
dark100: string;
|
|
11462
|
+
dark200: string;
|
|
11463
|
+
dark300: string;
|
|
11464
|
+
dark400: string;
|
|
11465
|
+
dark500: string;
|
|
11466
|
+
dark600: string;
|
|
11467
|
+
dark700: string;
|
|
11468
|
+
dark800: string;
|
|
11469
|
+
dark900: string;
|
|
11470
|
+
dark950: string;
|
|
11471
|
+
neutral50: string;
|
|
11472
|
+
neutral100: string;
|
|
11473
|
+
neutral200: string;
|
|
11474
|
+
neutral300: string;
|
|
11475
|
+
neutral400: string;
|
|
11476
|
+
neutral500: string;
|
|
11477
|
+
neutral600: string;
|
|
11478
|
+
neutral700: string;
|
|
11479
|
+
neutral800: string;
|
|
11480
|
+
neutral900: string;
|
|
11481
|
+
neutral950: string;
|
|
11482
|
+
green50: string;
|
|
11483
|
+
green100: string;
|
|
11484
|
+
green200: string;
|
|
11485
|
+
green300: string;
|
|
11486
|
+
green400: string;
|
|
11487
|
+
green500: string;
|
|
11488
|
+
green600: string;
|
|
11489
|
+
green700: string;
|
|
11490
|
+
green800: string;
|
|
11491
|
+
green900: string;
|
|
11492
|
+
green950: string;
|
|
11493
|
+
grey50: string;
|
|
11494
|
+
grey100: string;
|
|
11495
|
+
grey200: string;
|
|
11496
|
+
grey300: string;
|
|
11497
|
+
grey400: string;
|
|
11498
|
+
grey500: string;
|
|
11499
|
+
grey600: string;
|
|
11500
|
+
grey700: string;
|
|
11501
|
+
grey800: string;
|
|
11502
|
+
grey900: string;
|
|
11503
|
+
grey950: string;
|
|
11504
|
+
error50: string;
|
|
11505
|
+
error100: string;
|
|
11506
|
+
error200: string;
|
|
11507
|
+
error300: string;
|
|
11508
|
+
error400: string;
|
|
11509
|
+
error500: string;
|
|
11510
|
+
error600: string;
|
|
11511
|
+
error700: string;
|
|
11512
|
+
error800: string;
|
|
11513
|
+
error900: string;
|
|
11514
|
+
error950: string;
|
|
11515
|
+
success50: string;
|
|
11516
|
+
success100: string;
|
|
11517
|
+
success200: string;
|
|
11518
|
+
success300: string;
|
|
11519
|
+
success400: string;
|
|
11520
|
+
success500: string;
|
|
11521
|
+
success600: string;
|
|
11522
|
+
success700: string;
|
|
11523
|
+
success800: string;
|
|
11524
|
+
success900: string;
|
|
11525
|
+
success950: string;
|
|
11526
|
+
warning50: string;
|
|
11527
|
+
warning100: string;
|
|
11528
|
+
warning200: string;
|
|
11529
|
+
warning300: string;
|
|
11530
|
+
warning400: string;
|
|
11531
|
+
warning500: string;
|
|
11532
|
+
warning600: string;
|
|
11533
|
+
warning700: string;
|
|
11534
|
+
warning800: string;
|
|
11535
|
+
warning900: string;
|
|
11536
|
+
warning950: string;
|
|
11537
|
+
info50: string;
|
|
11538
|
+
info100: string;
|
|
11539
|
+
info200: string;
|
|
11540
|
+
info300: string;
|
|
11541
|
+
info400: string;
|
|
11542
|
+
info500: string;
|
|
11543
|
+
info600: string;
|
|
11544
|
+
info700: string;
|
|
11545
|
+
info800: string;
|
|
11546
|
+
info900: string;
|
|
11547
|
+
info950: string;
|
|
11548
|
+
};
|
|
11549
|
+
fontSizes: {
|
|
11550
|
+
2: string;
|
|
11551
|
+
4: string;
|
|
11552
|
+
6: string;
|
|
11553
|
+
8: string;
|
|
11554
|
+
10: string;
|
|
11555
|
+
12: string;
|
|
11556
|
+
13: string;
|
|
11557
|
+
14: string;
|
|
11558
|
+
16: string;
|
|
11559
|
+
18: string;
|
|
11560
|
+
20: string;
|
|
11561
|
+
22: string;
|
|
11562
|
+
24: string;
|
|
11563
|
+
32: string;
|
|
11564
|
+
36: string;
|
|
11565
|
+
40: string;
|
|
11566
|
+
48: string;
|
|
11567
|
+
56: string;
|
|
11568
|
+
64: string;
|
|
11569
|
+
72: string;
|
|
11570
|
+
80: string;
|
|
11571
|
+
xs: string;
|
|
11572
|
+
sm: string;
|
|
11573
|
+
md: string;
|
|
11574
|
+
lg: string;
|
|
11575
|
+
'2xl': string;
|
|
11576
|
+
'3xl': string;
|
|
11577
|
+
'4xl': string;
|
|
11578
|
+
full: string;
|
|
11579
|
+
};
|
|
11580
|
+
fonts: {
|
|
11581
|
+
default: string;
|
|
11582
|
+
};
|
|
11583
|
+
fontWeights: {
|
|
11584
|
+
regular: string;
|
|
11585
|
+
medium: string;
|
|
11586
|
+
semibold: string;
|
|
11587
|
+
bold: string;
|
|
11588
|
+
};
|
|
11589
|
+
lineHeights: {
|
|
11590
|
+
smaller: string;
|
|
11591
|
+
shorter: string;
|
|
11592
|
+
short: string;
|
|
11593
|
+
base: string;
|
|
11594
|
+
tall: string;
|
|
11595
|
+
};
|
|
11596
|
+
radii: {
|
|
11597
|
+
'3xs': string;
|
|
11598
|
+
'2xs': string;
|
|
11599
|
+
xs: string;
|
|
11600
|
+
sm: string;
|
|
11601
|
+
md: string;
|
|
11602
|
+
lg: string;
|
|
11603
|
+
xl: string;
|
|
11604
|
+
'2xl': string;
|
|
11605
|
+
'3xl': string;
|
|
11606
|
+
'4xl': string;
|
|
11607
|
+
'5xl': string;
|
|
11608
|
+
'6xl': string;
|
|
11609
|
+
'7xl': string;
|
|
11610
|
+
'8xl': string;
|
|
11611
|
+
'9xl': string;
|
|
11612
|
+
'10xl': string;
|
|
11613
|
+
'11xl': string;
|
|
11614
|
+
'12xl': string;
|
|
11615
|
+
'13xl': string;
|
|
11616
|
+
'14xl': string;
|
|
11617
|
+
full: string;
|
|
11618
|
+
};
|
|
11619
|
+
space: {
|
|
11620
|
+
2: string;
|
|
11621
|
+
4: string;
|
|
11622
|
+
6: string;
|
|
11623
|
+
8: string;
|
|
11624
|
+
10: string;
|
|
11625
|
+
12: string;
|
|
11626
|
+
13: string;
|
|
11627
|
+
14: string;
|
|
11628
|
+
16: string;
|
|
11629
|
+
18: string;
|
|
11630
|
+
20: string;
|
|
11631
|
+
22: string;
|
|
11632
|
+
24: string;
|
|
11633
|
+
32: string;
|
|
11634
|
+
36: string;
|
|
11635
|
+
40: string;
|
|
11636
|
+
48: string;
|
|
11637
|
+
56: string;
|
|
11638
|
+
64: string;
|
|
11639
|
+
72: string;
|
|
11640
|
+
80: string;
|
|
11641
|
+
full: string;
|
|
11642
|
+
};
|
|
11643
|
+
}, {
|
|
11644
|
+
height: "space";
|
|
11645
|
+
width: "space";
|
|
11646
|
+
gap: "space";
|
|
11647
|
+
gridGap: "space";
|
|
11648
|
+
columnGap: "space";
|
|
11649
|
+
gridColumnGap: "space";
|
|
11650
|
+
rowGap: "space";
|
|
11651
|
+
gridRowGap: "space";
|
|
11652
|
+
inset: "space";
|
|
11653
|
+
insetBlock: "space";
|
|
11654
|
+
insetBlockEnd: "space";
|
|
11655
|
+
insetBlockStart: "space";
|
|
11656
|
+
insetInline: "space";
|
|
11657
|
+
insetInlineEnd: "space";
|
|
11658
|
+
insetInlineStart: "space";
|
|
11659
|
+
margin: "space";
|
|
11660
|
+
marginTop: "space";
|
|
11661
|
+
marginRight: "space";
|
|
11662
|
+
marginBottom: "space";
|
|
11663
|
+
marginLeft: "space";
|
|
11664
|
+
marginBlock: "space";
|
|
11665
|
+
marginBlockEnd: "space";
|
|
11666
|
+
marginBlockStart: "space";
|
|
11667
|
+
marginInline: "space";
|
|
11668
|
+
marginInlineEnd: "space";
|
|
11669
|
+
marginInlineStart: "space";
|
|
11670
|
+
padding: "space";
|
|
11671
|
+
paddingTop: "space";
|
|
11672
|
+
paddingRight: "space";
|
|
11673
|
+
paddingBottom: "space";
|
|
11674
|
+
paddingLeft: "space";
|
|
11675
|
+
paddingBlock: "space";
|
|
11676
|
+
paddingBlockEnd: "space";
|
|
11677
|
+
paddingBlockStart: "space";
|
|
11678
|
+
paddingInline: "space";
|
|
11679
|
+
paddingInlineEnd: "space";
|
|
11680
|
+
paddingInlineStart: "space";
|
|
11681
|
+
scrollMargin: "space";
|
|
11682
|
+
scrollMarginTop: "space";
|
|
11683
|
+
scrollMarginRight: "space";
|
|
11684
|
+
scrollMarginBottom: "space";
|
|
11685
|
+
scrollMarginLeft: "space";
|
|
11686
|
+
scrollMarginBlock: "space";
|
|
11687
|
+
scrollMarginBlockEnd: "space";
|
|
11688
|
+
scrollMarginBlockStart: "space";
|
|
11689
|
+
scrollMarginInline: "space";
|
|
11690
|
+
scrollMarginInlineEnd: "space";
|
|
11691
|
+
scrollMarginInlineStart: "space";
|
|
11692
|
+
scrollPadding: "space";
|
|
11693
|
+
scrollPaddingTop: "space";
|
|
11694
|
+
scrollPaddingRight: "space";
|
|
11695
|
+
scrollPaddingBottom: "space";
|
|
11696
|
+
scrollPaddingLeft: "space";
|
|
11697
|
+
scrollPaddingBlock: "space";
|
|
11698
|
+
scrollPaddingBlockEnd: "space";
|
|
11699
|
+
scrollPaddingBlockStart: "space";
|
|
11700
|
+
scrollPaddingInline: "space";
|
|
11701
|
+
scrollPaddingInlineEnd: "space";
|
|
11702
|
+
scrollPaddingInlineStart: "space";
|
|
11703
|
+
top: "space";
|
|
11704
|
+
right: "space";
|
|
11705
|
+
bottom: "space";
|
|
11706
|
+
left: "space";
|
|
11707
|
+
fontSize: "fontSizes";
|
|
11708
|
+
background: "colors";
|
|
11709
|
+
backgroundColor: "colors";
|
|
11710
|
+
backgroundImage: "colors";
|
|
11711
|
+
borderImage: "colors";
|
|
11712
|
+
border: "colors";
|
|
11713
|
+
borderBlock: "colors";
|
|
11714
|
+
borderBlockEnd: "colors";
|
|
11715
|
+
borderBlockStart: "colors";
|
|
11716
|
+
borderBottom: "colors";
|
|
11717
|
+
borderBottomColor: "colors";
|
|
11718
|
+
borderColor: "colors";
|
|
11719
|
+
borderInline: "colors";
|
|
11720
|
+
borderInlineEnd: "colors";
|
|
11721
|
+
borderInlineStart: "colors";
|
|
11722
|
+
borderLeft: "colors";
|
|
11723
|
+
borderLeftColor: "colors";
|
|
11724
|
+
borderRight: "colors";
|
|
11725
|
+
borderRightColor: "colors";
|
|
11726
|
+
borderTop: "colors";
|
|
11727
|
+
borderTopColor: "colors";
|
|
11728
|
+
caretColor: "colors";
|
|
11729
|
+
color: "colors";
|
|
11730
|
+
columnRuleColor: "colors";
|
|
11731
|
+
outline: "colors";
|
|
11732
|
+
outlineColor: "colors";
|
|
11733
|
+
fill: "colors";
|
|
11734
|
+
stroke: "colors";
|
|
11735
|
+
textDecorationColor: "colors";
|
|
11736
|
+
fontFamily: "fonts";
|
|
11737
|
+
fontWeight: "fontWeights";
|
|
11738
|
+
lineHeight: "lineHeights";
|
|
11739
|
+
letterSpacing: "letterSpacings";
|
|
11740
|
+
blockSize: "sizes";
|
|
11741
|
+
minBlockSize: "sizes";
|
|
11742
|
+
maxBlockSize: "sizes";
|
|
11743
|
+
inlineSize: "sizes";
|
|
11744
|
+
minInlineSize: "sizes";
|
|
11745
|
+
maxInlineSize: "sizes";
|
|
11746
|
+
minWidth: "sizes";
|
|
11747
|
+
maxWidth: "sizes";
|
|
11748
|
+
minHeight: "sizes";
|
|
11749
|
+
maxHeight: "sizes";
|
|
11750
|
+
flexBasis: "sizes";
|
|
11751
|
+
gridTemplateColumns: "sizes";
|
|
11752
|
+
gridTemplateRows: "sizes";
|
|
11753
|
+
borderWidth: "borderWidths";
|
|
11754
|
+
borderTopWidth: "borderWidths";
|
|
11755
|
+
borderLeftWidth: "borderWidths";
|
|
11756
|
+
borderRightWidth: "borderWidths";
|
|
11757
|
+
borderBottomWidth: "borderWidths";
|
|
11758
|
+
borderStyle: "borderStyles";
|
|
11759
|
+
borderTopStyle: "borderStyles";
|
|
11760
|
+
borderLeftStyle: "borderStyles";
|
|
11761
|
+
borderRightStyle: "borderStyles";
|
|
11762
|
+
borderBottomStyle: "borderStyles";
|
|
11763
|
+
borderRadius: "radii";
|
|
11764
|
+
borderTopLeftRadius: "radii";
|
|
11765
|
+
borderTopRightRadius: "radii";
|
|
11766
|
+
borderBottomRightRadius: "radii";
|
|
11767
|
+
borderBottomLeftRadius: "radii";
|
|
11768
|
+
boxShadow: "shadows";
|
|
11769
|
+
textShadow: "shadows";
|
|
11770
|
+
transition: "transitions";
|
|
11771
|
+
zIndex: "zIndices";
|
|
11772
|
+
}, {}>>;
|
|
11773
|
+
type CardProps = ComponentProps<typeof CardStyled> & {
|
|
11774
|
+
children: react__default.ReactNode;
|
|
11775
|
+
as?: ElementType;
|
|
11776
|
+
};
|
|
11777
|
+
declare function Card({ asChild, children, ...props }: CardProps): react_jsx_runtime.JSX.Element;
|
|
11030
11778
|
|
|
11031
|
-
declare const
|
|
11032
|
-
|
|
11033
|
-
boxShadow?: boolean | "false" | "true" | undefined;
|
|
11779
|
+
declare const TextareaFieldStyle: _stitches_react_types_styled_component.StyledComponent<react__default.ForwardRefExoticComponent<_radix_ui_themes.TextAreaProps & react__default.RefAttributes<HTMLTextAreaElement>>, {
|
|
11780
|
+
typography?: "tooltip" | "displayLarge" | "displayMedium" | "displaySmall" | "headline1" | "headline2" | "headline3" | "headline4" | "headline5" | "headline6" | "headline7" | "headline8" | "bodyXL" | "bodyL" | "bodyM" | "bodyS" | "bodyXS" | "bodyXXS" | "badgeLarge" | "badgeMedium" | "badgeSmall" | "badgeExtraSmall" | "popoversRegular" | "captionLarge" | "captionMedium" | "captionSmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "buttonExtraSmall" | "labelLarge" | "labelMedium" | "labelSmall" | "labelExtraSmall" | undefined;
|
|
11034
11781
|
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
11035
11782
|
colors: {
|
|
11036
11783
|
brand50: string;
|
|
@@ -11401,14 +12148,8 @@ declare const CardStyled: _stitches_react_types_styled_component.StyledComponent
|
|
|
11401
12148
|
transition: "transitions";
|
|
11402
12149
|
zIndex: "zIndices";
|
|
11403
12150
|
}, {}>>;
|
|
11404
|
-
|
|
11405
|
-
|
|
11406
|
-
as?: ElementType;
|
|
11407
|
-
};
|
|
11408
|
-
declare function Card({ asChild, children, ...props }: CardProps): react_jsx_runtime.JSX.Element;
|
|
11409
|
-
|
|
11410
|
-
declare const TextareaFieldStyle: _stitches_react_types_styled_component.StyledComponent<react__default.ForwardRefExoticComponent<_radix_ui_themes.TextAreaProps & react__default.RefAttributes<HTMLTextAreaElement>>, {
|
|
11411
|
-
typography?: "tooltip" | "displayLarge" | "displayMedium" | "displaySmall" | "headline1" | "headline2" | "headline3" | "headline4" | "headline5" | "headline6" | "headline7" | "headline8" | "bodyXL" | "bodyL" | "bodyM" | "bodyS" | "bodyXS" | "bodyXXS" | "badgeLarge" | "badgeMedium" | "badgeSmall" | "badgeExtraSmall" | "popoversRegular" | "captionLarge" | "captionMedium" | "captionSmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "buttonExtraSmall" | "labelLarge" | "labelMedium" | "labelSmall" | "labelExtraSmall" | undefined;
|
|
12151
|
+
declare const TextareaContainer: _stitches_react_types_styled_component.StyledComponent<"div", {
|
|
12152
|
+
color?: "default" | "error" | undefined;
|
|
11412
12153
|
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
11413
12154
|
colors: {
|
|
11414
12155
|
brand50: string;
|
|
@@ -11779,9 +12520,56 @@ declare const TextareaFieldStyle: _stitches_react_types_styled_component.StyledC
|
|
|
11779
12520
|
transition: "transitions";
|
|
11780
12521
|
zIndex: "zIndices";
|
|
11781
12522
|
}, {}>>;
|
|
11782
|
-
|
|
11783
|
-
|
|
11784
|
-
|
|
12523
|
+
type TextareaFieldProps = Omit<ComponentProps<typeof TextareaFieldStyle>, "color"> & ComponentProps<typeof TextareaContainer>;
|
|
12524
|
+
declare const TextareaField: react__default.ForwardRefExoticComponent<Omit<TextareaFieldProps, "ref"> & react__default.RefAttributes<HTMLTextAreaElement>>;
|
|
12525
|
+
|
|
12526
|
+
type ToastType = 'success' | 'error' | 'warning' | 'info';
|
|
12527
|
+
interface ToastConfig {
|
|
12528
|
+
icon: string;
|
|
12529
|
+
}
|
|
12530
|
+
interface ToastOptions {
|
|
12531
|
+
type?: ToastType;
|
|
12532
|
+
title?: string;
|
|
12533
|
+
duration?: number;
|
|
12534
|
+
}
|
|
12535
|
+
interface Toast {
|
|
12536
|
+
id: string;
|
|
12537
|
+
message: string;
|
|
12538
|
+
icon?: IconName;
|
|
12539
|
+
type?: ToastType;
|
|
12540
|
+
duration?: number;
|
|
12541
|
+
createdAt: number;
|
|
12542
|
+
}
|
|
12543
|
+
interface ToastContextType {
|
|
12544
|
+
toasts: Toast[];
|
|
12545
|
+
addToast: (toast: Omit<Toast, 'id' | 'createdAt'>) => string;
|
|
12546
|
+
removeToast: (id: string) => void;
|
|
12547
|
+
removeAllToasts: () => void;
|
|
12548
|
+
}
|
|
12549
|
+
interface ToastProviderProps {
|
|
12550
|
+
children: ReactNode;
|
|
12551
|
+
defaultDuration?: number;
|
|
12552
|
+
maxToasts?: number;
|
|
12553
|
+
swipeDirection?: 'right' | 'left' | 'up' | 'down';
|
|
12554
|
+
}
|
|
12555
|
+
interface ToastComponentProps {
|
|
12556
|
+
toast: Toast;
|
|
12557
|
+
onRemove: (id: string) => void;
|
|
12558
|
+
}
|
|
12559
|
+
interface ToasterShowOptions extends ToastOptions {
|
|
12560
|
+
onClose?: () => void;
|
|
12561
|
+
}
|
|
12562
|
+
|
|
12563
|
+
declare function ToastItem({ toast, onRemove, }: ToastComponentProps): react_jsx_runtime.JSX.Element;
|
|
12564
|
+
|
|
12565
|
+
declare function ToastProvider({ children, defaultDuration, maxToasts, swipeDirection, }: ToastProviderProps): react_jsx_runtime.JSX.Element;
|
|
12566
|
+
|
|
12567
|
+
declare const useToast: () => ToastContextType;
|
|
12568
|
+
|
|
12569
|
+
declare const TooltipProvider: react.FC<TooltipPrimitive.TooltipProviderProps>;
|
|
12570
|
+
declare const TooltipRoot: react.FC<TooltipPrimitive.TooltipProps>;
|
|
12571
|
+
declare const TooltipTrigger: react.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & react.RefAttributes<HTMLButtonElement>>;
|
|
12572
|
+
declare const TooltipContent: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<TooltipPrimitive.TooltipContentProps & react.RefAttributes<HTMLDivElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
11785
12573
|
colors: {
|
|
11786
12574
|
brand50: string;
|
|
11787
12575
|
brand100: string;
|
|
@@ -12151,56 +12939,17 @@ declare const TextareaContainer: _stitches_react_types_styled_component.StyledCo
|
|
|
12151
12939
|
transition: "transitions";
|
|
12152
12940
|
zIndex: "zIndices";
|
|
12153
12941
|
}, {}>>;
|
|
12154
|
-
|
|
12155
|
-
|
|
12156
|
-
|
|
12157
|
-
|
|
12158
|
-
|
|
12159
|
-
icon: string;
|
|
12160
|
-
}
|
|
12161
|
-
interface ToastOptions {
|
|
12162
|
-
type?: ToastType;
|
|
12163
|
-
title?: string;
|
|
12164
|
-
duration?: number;
|
|
12165
|
-
}
|
|
12166
|
-
interface Toast {
|
|
12167
|
-
id: string;
|
|
12168
|
-
message: string;
|
|
12169
|
-
icon?: IconName;
|
|
12170
|
-
type?: ToastType;
|
|
12171
|
-
duration?: number;
|
|
12172
|
-
createdAt: number;
|
|
12173
|
-
}
|
|
12174
|
-
interface ToastContextType {
|
|
12175
|
-
toasts: Toast[];
|
|
12176
|
-
addToast: (toast: Omit<Toast, 'id' | 'createdAt'>) => string;
|
|
12177
|
-
removeToast: (id: string) => void;
|
|
12178
|
-
removeAllToasts: () => void;
|
|
12179
|
-
}
|
|
12180
|
-
interface ToastProviderProps {
|
|
12181
|
-
children: ReactNode;
|
|
12182
|
-
defaultDuration?: number;
|
|
12183
|
-
maxToasts?: number;
|
|
12184
|
-
swipeDirection?: 'right' | 'left' | 'up' | 'down';
|
|
12185
|
-
}
|
|
12186
|
-
interface ToastComponentProps {
|
|
12187
|
-
toast: Toast;
|
|
12188
|
-
onRemove: (id: string) => void;
|
|
12189
|
-
}
|
|
12190
|
-
interface ToasterShowOptions extends ToastOptions {
|
|
12191
|
-
onClose?: () => void;
|
|
12942
|
+
interface TooltipProps {
|
|
12943
|
+
children: react.ReactNode;
|
|
12944
|
+
content: react.ReactNode;
|
|
12945
|
+
delayDuration?: number;
|
|
12946
|
+
side?: 'top' | 'right' | 'bottom' | 'left';
|
|
12192
12947
|
}
|
|
12948
|
+
declare function Tooltip({ children, content, delayDuration, side, }: TooltipProps): react_jsx_runtime.JSX.Element;
|
|
12193
12949
|
|
|
12194
|
-
declare
|
|
12195
|
-
|
|
12196
|
-
|
|
12197
|
-
|
|
12198
|
-
declare const useToast: () => ToastContextType;
|
|
12199
|
-
|
|
12200
|
-
declare const TooltipProvider: react.FC<TooltipPrimitive.TooltipProviderProps>;
|
|
12201
|
-
declare const TooltipRoot: react.FC<TooltipPrimitive.TooltipProps>;
|
|
12202
|
-
declare const TooltipTrigger: react.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & react.RefAttributes<HTMLButtonElement>>;
|
|
12203
|
-
declare const TooltipContent: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<TooltipPrimitive.TooltipContentProps & react.RefAttributes<HTMLDivElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
12950
|
+
declare const StyledTrigger: _stitches_react_types_styled_component.StyledComponent<"div", {
|
|
12951
|
+
color?: "default" | "error" | undefined;
|
|
12952
|
+
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
12204
12953
|
colors: {
|
|
12205
12954
|
brand50: string;
|
|
12206
12955
|
brand100: string;
|
|
@@ -12570,13 +13319,18 @@ declare const TooltipContent: _stitches_react_types_styled_component.StyledCompo
|
|
|
12570
13319
|
transition: "transitions";
|
|
12571
13320
|
zIndex: "zIndices";
|
|
12572
13321
|
}, {}>>;
|
|
12573
|
-
|
|
12574
|
-
|
|
12575
|
-
|
|
12576
|
-
|
|
12577
|
-
|
|
12578
|
-
|
|
12579
|
-
|
|
13322
|
+
type MultiSelectProps = ComponentProps<typeof StyledTrigger> & {
|
|
13323
|
+
placeholder?: string;
|
|
13324
|
+
value?: string[];
|
|
13325
|
+
onValueChange?: (v: string[]) => void;
|
|
13326
|
+
options: Array<{
|
|
13327
|
+
label: string;
|
|
13328
|
+
value: string;
|
|
13329
|
+
}>;
|
|
13330
|
+
width?: string;
|
|
13331
|
+
zIndex?: string;
|
|
13332
|
+
};
|
|
13333
|
+
declare const MultiSelect: react__default.ForwardRefExoticComponent<Omit<MultiSelectProps, "ref"> & react__default.RefAttributes<HTMLDivElement>>;
|
|
12580
13334
|
|
|
12581
13335
|
declare const FlexStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<_radix_ui_themes.FlexProps & react.RefAttributes<HTMLDivElement>>, {
|
|
12582
13336
|
display?: "flex" | "inline-flex" | undefined;
|
|
@@ -14145,4 +14899,11 @@ type FormProps = UseFormProps & {
|
|
|
14145
14899
|
};
|
|
14146
14900
|
declare const Form: ({ onSubmit, children, ...props }: FormProps) => react_jsx_runtime.JSX.Element;
|
|
14147
14901
|
|
|
14148
|
-
|
|
14902
|
+
type MultiSelectFormFieldProps = MultiSelectProps & {
|
|
14903
|
+
name: string;
|
|
14904
|
+
label?: string;
|
|
14905
|
+
required?: boolean;
|
|
14906
|
+
};
|
|
14907
|
+
declare const MultiSelectFormField: ({ name, label, required, ...rest }: MultiSelectFormFieldProps) => react_jsx_runtime.JSX.Element;
|
|
14908
|
+
|
|
14909
|
+
export { Alert, AlertDialogCompleteStyled, AlertDialogDescriptionStyled, AlertDialogRowStyled, AlertDialogSimpleStyled, AlertDialogSubtitleStyled, AlertDialogTitleStyled, AlertDialoghrStyled, type AlertProps, Avatar, type AvatarProps, AvatarStyled, Badge, type BadgeProps, BadgeStyled, Box, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupStyled, ButtonItem, type ButtonItemProps, ButtonItemStyled, type ButtonProps, Calendar, type CalendarProps, Card, type CardProps, CardStyled, CheckboxGroup, type CheckboxGroupProps, CheckboxGroupStyled, CheckboxItem, type CheckboxItemProps, Container, type ContainerProps, ContainerStyled, Drawer, type DrawerProps, DropdownMenu, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuProps, ErrorFormMessage, type ErrorFormMessageProps, Filter, FilterItem, type FilterItemProps, type FilterProps, Flex, type FlexProps, FlexStyled, Form, FormLabel, type FormLabelProps, type FormProps, Grid, type GridProps, GridStyled, Icon, InputStyled, MenuDropdown, type MenuDropdownProps, Modal, type ModalProps, MultiSelect, MultiSelectFormField, type MultiSelectFormFieldProps, type MultiSelectProps, RadioGroup, type RadioGroupProps, RadioGroupStyled, RadioItem, type RadioItemProps, Section, type SectionProps, SectionStyled, Step, StepContent, StepList, type StepProps, StepStyled, StepTrigger, StepWrapper, Switch, type SwitchProps, SwitchStyled, Text, TextAreaFormField, type TextAreaFormFieldProps, TextField, type TextFieldProps, TextFieldSlot, type TextFieldSlotProps, TextFieldSlotStyled, TextFieldStyled, TextFormField, type TextFormFieldProps, type TextProps, TextStyle, TextareaField, type TextareaFieldProps, TextareaFieldStyle, TimePicker, TimePickerButtonStyled, TimePickerDropdownStyled, TimePickerFooterStyled, type TimePickerProps, TimePickerStyled, TimerPickerContentStyled, type Toast, type ToastComponentProps, type ToastConfig, type ToastContextType, ToastItem, type ToastOptions, ToastProvider, type ToastProviderProps, type ToastType, type ToasterShowOptions, Tooltip, TooltipContent, type TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, maskFormat, maskUnformat, useToast };
|