@lets-events/react 11.2.0 → 11.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +8 -8
- package/CHANGELOG.md +12 -0
- package/dist/index.d.mts +1728 -209
- package/dist/index.d.ts +1728 -209
- package/dist/index.js +524 -176
- package/dist/index.mjs +496 -148
- package/package.json +1 -1
- package/src/components/Badge.tsx +1 -4
- package/src/components/Button/index.tsx +12 -9
- package/src/components/Button/styledComponents.ts +14 -3
- package/src/components/CheckboxGroup.tsx +129 -147
- package/src/components/Drawer/index.tsx +48 -0
- package/src/components/Drawer/styledComponents.ts +46 -0
- package/src/components/FormFields/MultiSelectFormField.tsx +65 -0
- package/src/components/MenuDropdown/index.tsx +30 -0
- package/src/components/MenuDropdown/styledComponents.ts +31 -0
- package/src/components/MultiSelect.tsx +216 -0
- package/src/components/Text.tsx +1 -2
- package/src/index.tsx +4 -0
package/dist/index.d.mts
CHANGED
|
@@ -9,6 +9,7 @@ import react__default, { ComponentProps, ElementType, ReactNode, JSX } from 'rea
|
|
|
9
9
|
import * as _radix_ui_themes from '@radix-ui/themes';
|
|
10
10
|
import { TextField as TextField$1, RadioGroup as RadioGroup$1, CheckboxGroup as CheckboxGroup$1, DropdownMenu as DropdownMenu$1, AlertDialog, Switch as Switch$1 } from '@radix-ui/themes';
|
|
11
11
|
import { Colors } from '@lets-events/tokens';
|
|
12
|
+
import { VariantProps } from '@stitches/react';
|
|
12
13
|
import { MaskOptions, format, unformat } from '@react-input/mask';
|
|
13
14
|
import { Dialog } from 'radix-ui';
|
|
14
15
|
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
@@ -413,7 +414,7 @@ declare function Text({ color, ...props }: TextProps): react_jsx_runtime.JSX.Ele
|
|
|
413
414
|
declare const ButtonStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<_radix_ui_themes.ButtonProps & react.RefAttributes<HTMLButtonElement>>, {
|
|
414
415
|
color?: "info" | "warning" | "purple" | "white" | "brand" | "error" | "success" | "neutral" | undefined;
|
|
415
416
|
size?: "medium" | "small" | "large" | "extraSmall" | undefined;
|
|
416
|
-
variant?: "text" | "contained" | "outlined" | undefined;
|
|
417
|
+
variant?: "text" | "contained" | "outlined" | "menuDropdownItem" | undefined;
|
|
417
418
|
fontWeight?: "bold" | "medium" | "regular" | "semibold" | undefined;
|
|
418
419
|
outlinedBgColor?: "transparent" | "neutral" | undefined;
|
|
419
420
|
radii?: "full" | undefined;
|
|
@@ -788,7 +789,8 @@ declare const ButtonStyled: _stitches_react_types_styled_component.StyledCompone
|
|
|
788
789
|
zIndex: "zIndices";
|
|
789
790
|
}, {}>>;
|
|
790
791
|
|
|
791
|
-
|
|
792
|
+
type ButtonVariantProps = VariantProps<typeof ButtonStyled>;
|
|
793
|
+
interface ButtonProps extends ComponentProps<typeof ButtonStyled>, ButtonVariantProps {
|
|
792
794
|
asChild?: boolean;
|
|
793
795
|
}
|
|
794
796
|
declare function Button({ asChild, ...props }: ButtonProps): react_jsx_runtime.JSX.Element;
|
|
@@ -3468,39 +3470,7 @@ declare const CheckboxGroupStyled: _stitches_react_types_styled_component.Styled
|
|
|
3468
3470
|
transition: "transitions";
|
|
3469
3471
|
zIndex: "zIndices";
|
|
3470
3472
|
}, {}>>;
|
|
3471
|
-
|
|
3472
|
-
placeholder?: string;
|
|
3473
|
-
children?: React.ReactNode;
|
|
3474
|
-
color?: string;
|
|
3475
|
-
disabled?: boolean;
|
|
3476
|
-
};
|
|
3477
|
-
type CheckboxItemProps = {
|
|
3478
|
-
children?: React.ReactNode;
|
|
3479
|
-
value: string;
|
|
3480
|
-
style?: React.CSSProperties;
|
|
3481
|
-
};
|
|
3482
|
-
declare function CheckboxGroup({ children, ...props }: CheckboxGroupProps): react_jsx_runtime.JSX.Element;
|
|
3483
|
-
declare function CheckboxItem({ children, ...props }: CheckboxItemProps): react_jsx_runtime.JSX.Element;
|
|
3484
|
-
|
|
3485
|
-
type FilterProps = ComponentProps<typeof DropdownMenu$1.Root> & {
|
|
3486
|
-
as?: ElementType;
|
|
3487
|
-
placeholder?: string;
|
|
3488
|
-
fontWeight: 'regular' | 'medium' | 'semibold' | 'bold';
|
|
3489
|
-
typography: 'labelExtraSmall' | 'labelSmall' | 'labelMedium' | 'labelLarge';
|
|
3490
|
-
};
|
|
3491
|
-
type FilterItemProps = ComponentProps<typeof CheckboxItem> & {
|
|
3492
|
-
as?: ElementType;
|
|
3493
|
-
value: string;
|
|
3494
|
-
typography: FilterProps['typography'];
|
|
3495
|
-
fontWeight: FilterProps['fontWeight'];
|
|
3496
|
-
};
|
|
3497
|
-
declare function Filter({ children, placeholder, typography, fontWeight, ...props }: FilterProps): react_jsx_runtime.JSX.Element;
|
|
3498
|
-
declare function FilterItem({ children, ...props }: FilterItemProps): react_jsx_runtime.JSX.Element;
|
|
3499
|
-
|
|
3500
|
-
declare const DropdownMenuItemStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<DropdownMenu$1.ItemProps & react.RefAttributes<HTMLDivElement>>, {
|
|
3501
|
-
typography?: "labelLarge" | "labelMedium" | "labelSmall" | "labelExtraSmall" | undefined;
|
|
3502
|
-
fontWeight?: "bold" | "medium" | "regular" | "semibold" | undefined;
|
|
3503
|
-
}, {}, _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<{}, {
|
|
3504
3474
|
colors: {
|
|
3505
3475
|
brand50: string;
|
|
3506
3476
|
brand100: string;
|
|
@@ -3870,27 +3840,38 @@ declare const DropdownMenuItemStyled: _stitches_react_types_styled_component.Sty
|
|
|
3870
3840
|
transition: "transitions";
|
|
3871
3841
|
zIndex: "zIndices";
|
|
3872
3842
|
}, {}>>;
|
|
3873
|
-
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> & {
|
|
3874
3858
|
as?: ElementType;
|
|
3875
3859
|
placeholder?: string;
|
|
3876
3860
|
fontWeight: 'regular' | 'medium' | 'semibold' | 'bold';
|
|
3877
3861
|
typography: 'labelExtraSmall' | 'labelSmall' | 'labelMedium' | 'labelLarge';
|
|
3878
|
-
children: React.ReactNode;
|
|
3879
3862
|
};
|
|
3880
|
-
type
|
|
3863
|
+
type FilterItemProps = ComponentProps<typeof CheckboxItem> & {
|
|
3881
3864
|
as?: ElementType;
|
|
3882
3865
|
value: string;
|
|
3883
|
-
typography:
|
|
3884
|
-
fontWeight:
|
|
3866
|
+
typography: FilterProps['typography'];
|
|
3867
|
+
fontWeight: FilterProps['fontWeight'];
|
|
3885
3868
|
};
|
|
3886
|
-
declare function
|
|
3887
|
-
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;
|
|
3888
3871
|
|
|
3889
|
-
declare const
|
|
3890
|
-
|
|
3891
|
-
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;
|
|
3892
3874
|
fontWeight?: "bold" | "medium" | "regular" | "semibold" | undefined;
|
|
3893
|
-
radii?: "full" | undefined;
|
|
3894
3875
|
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
3895
3876
|
colors: {
|
|
3896
3877
|
brand50: string;
|
|
@@ -4261,22 +4242,28 @@ declare const BadgeStyled: _stitches_react_types_styled_component.StyledComponen
|
|
|
4261
4242
|
transition: "transitions";
|
|
4262
4243
|
zIndex: "zIndices";
|
|
4263
4244
|
}, {}>>;
|
|
4264
|
-
type
|
|
4245
|
+
type DropdownMenuProps = ComponentProps<typeof DropdownMenu$1.Root> & {
|
|
4265
4246
|
as?: ElementType;
|
|
4266
|
-
|
|
4267
|
-
|
|
4268
|
-
|
|
4269
|
-
};
|
|
4270
|
-
declare function Badge({ asChild, children, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
|
|
4271
|
-
|
|
4272
|
-
type ModalProps = ComponentProps<typeof Dialog.Root> & {
|
|
4273
|
-
trigger?: React.ReactNode;
|
|
4274
|
-
title?: string;
|
|
4247
|
+
placeholder?: string;
|
|
4248
|
+
fontWeight: 'regular' | 'medium' | 'semibold' | 'bold';
|
|
4249
|
+
typography: 'labelExtraSmall' | 'labelSmall' | 'labelMedium' | 'labelLarge';
|
|
4275
4250
|
children: React.ReactNode;
|
|
4276
4251
|
};
|
|
4277
|
-
|
|
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;
|
|
4278
4260
|
|
|
4279
|
-
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<{}, {
|
|
4280
4267
|
colors: {
|
|
4281
4268
|
brand50: string;
|
|
4282
4269
|
brand100: string;
|
|
@@ -4646,18 +4633,21 @@ declare const CalendarStyled: _stitches_react_types_styled_component.StyledCompo
|
|
|
4646
4633
|
transition: "transitions";
|
|
4647
4634
|
zIndex: "zIndices";
|
|
4648
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;
|
|
4649
4642
|
|
|
4650
|
-
type
|
|
4651
|
-
|
|
4652
|
-
|
|
4653
|
-
|
|
4654
|
-
position?: "top" | "bottom";
|
|
4655
|
-
action?: boolean;
|
|
4656
|
-
actionText?: string;
|
|
4643
|
+
type ModalProps = ComponentProps<typeof Dialog.Root> & {
|
|
4644
|
+
trigger?: React.ReactNode;
|
|
4645
|
+
title?: string;
|
|
4646
|
+
children: React.ReactNode;
|
|
4657
4647
|
};
|
|
4658
|
-
declare function
|
|
4648
|
+
declare function Modal({ children, title, trigger, ...props }: ModalProps): react_jsx_runtime.JSX.Element;
|
|
4659
4649
|
|
|
4660
|
-
declare const
|
|
4650
|
+
declare const MenuDropdownContainerStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
4661
4651
|
colors: {
|
|
4662
4652
|
brand50: string;
|
|
4663
4653
|
brand100: string;
|
|
@@ -5027,7 +5017,13 @@ declare const TimePickerStyled: _stitches_react_types_styled_component.StyledCom
|
|
|
5027
5017
|
transition: "transitions";
|
|
5028
5018
|
zIndex: "zIndices";
|
|
5029
5019
|
}, {}>>;
|
|
5030
|
-
|
|
5020
|
+
|
|
5021
|
+
type MenuDropdownProps = ComponentProps<typeof MenuDropdownContainerStyled> & {
|
|
5022
|
+
children: ReactNode;
|
|
5023
|
+
};
|
|
5024
|
+
declare function MenuDropdown({ children }: MenuDropdownProps): react_jsx_runtime.JSX.Element;
|
|
5025
|
+
|
|
5026
|
+
declare const CalendarStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
5031
5027
|
colors: {
|
|
5032
5028
|
brand50: string;
|
|
5033
5029
|
brand100: string;
|
|
@@ -5397,7 +5393,18 @@ declare const TimePickerDropdownStyled: _stitches_react_types_styled_component.S
|
|
|
5397
5393
|
transition: "transitions";
|
|
5398
5394
|
zIndex: "zIndices";
|
|
5399
5395
|
}, {}>>;
|
|
5400
|
-
|
|
5396
|
+
|
|
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;
|
|
5404
|
+
};
|
|
5405
|
+
declare function Calendar({ action, actionText, calendarLayout, selected, setSelected, position, ...props }: CalendarProps): react_jsx_runtime.JSX.Element;
|
|
5406
|
+
|
|
5407
|
+
declare const DrawerOverlayStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
5401
5408
|
colors: {
|
|
5402
5409
|
brand50: string;
|
|
5403
5410
|
brand100: string;
|
|
@@ -5767,7 +5774,18 @@ declare const TimePickerFooterStyled: _stitches_react_types_styled_component.Sty
|
|
|
5767
5774
|
transition: "transitions";
|
|
5768
5775
|
zIndex: "zIndices";
|
|
5769
5776
|
}, {}>>;
|
|
5770
|
-
|
|
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<{}, {
|
|
5771
5789
|
colors: {
|
|
5772
5790
|
brand50: string;
|
|
5773
5791
|
brand100: string;
|
|
@@ -6137,7 +6155,7 @@ declare const TimerPickerContentStyled: _stitches_react_types_styled_component.S
|
|
|
6137
6155
|
transition: "transitions";
|
|
6138
6156
|
zIndex: "zIndices";
|
|
6139
6157
|
}, {}>>;
|
|
6140
|
-
declare const
|
|
6158
|
+
declare const TimePickerDropdownStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
6141
6159
|
colors: {
|
|
6142
6160
|
brand50: string;
|
|
6143
6161
|
brand100: string;
|
|
@@ -6507,7 +6525,7 @@ declare const InputStyled: _stitches_react_types_styled_component.StyledComponen
|
|
|
6507
6525
|
transition: "transitions";
|
|
6508
6526
|
zIndex: "zIndices";
|
|
6509
6527
|
}, {}>>;
|
|
6510
|
-
declare const
|
|
6528
|
+
declare const TimePickerFooterStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
6511
6529
|
colors: {
|
|
6512
6530
|
brand50: string;
|
|
6513
6531
|
brand100: string;
|
|
@@ -6877,16 +6895,7 @@ declare const TimePickerButtonStyled: _stitches_react_types_styled_component.Sty
|
|
|
6877
6895
|
transition: "transitions";
|
|
6878
6896
|
zIndex: "zIndices";
|
|
6879
6897
|
}, {}>>;
|
|
6880
|
-
|
|
6881
|
-
selected: string | undefined;
|
|
6882
|
-
setSelected: react__default.Dispatch<react__default.SetStateAction<string | undefined>>;
|
|
6883
|
-
position?: "bottom" | "top";
|
|
6884
|
-
};
|
|
6885
|
-
declare function TimePicker({ selected, setSelected, position, }: TimePickerProps): react_jsx_runtime.JSX.Element;
|
|
6886
|
-
|
|
6887
|
-
declare const AlertDialogSimpleStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<AlertDialog.ContentProps & react.RefAttributes<HTMLDivElement>>, {
|
|
6888
|
-
color?: "info" | "warning" | "error" | "success" | undefined;
|
|
6889
|
-
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
6898
|
+
declare const TimerPickerContentStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
6890
6899
|
colors: {
|
|
6891
6900
|
brand50: string;
|
|
6892
6901
|
brand100: string;
|
|
@@ -7256,9 +7265,7 @@ declare const AlertDialogSimpleStyled: _stitches_react_types_styled_component.St
|
|
|
7256
7265
|
transition: "transitions";
|
|
7257
7266
|
zIndex: "zIndices";
|
|
7258
7267
|
}, {}>>;
|
|
7259
|
-
declare const
|
|
7260
|
-
color?: undefined;
|
|
7261
|
-
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
7268
|
+
declare const InputStyled: _stitches_react_types_styled_component.StyledComponent<"input", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
7262
7269
|
colors: {
|
|
7263
7270
|
brand50: string;
|
|
7264
7271
|
brand100: string;
|
|
@@ -7628,7 +7635,7 @@ declare const AlertDialogCompleteStyled: _stitches_react_types_styled_component.
|
|
|
7628
7635
|
transition: "transitions";
|
|
7629
7636
|
zIndex: "zIndices";
|
|
7630
7637
|
}, {}>>;
|
|
7631
|
-
declare const
|
|
7638
|
+
declare const TimePickerButtonStyled: _stitches_react_types_styled_component.StyledComponent<"button", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
7632
7639
|
colors: {
|
|
7633
7640
|
brand50: string;
|
|
7634
7641
|
brand100: string;
|
|
@@ -7998,7 +8005,16 @@ declare const AlertDialogDescriptionStyled: _stitches_react_types_styled_compone
|
|
|
7998
8005
|
transition: "transitions";
|
|
7999
8006
|
zIndex: "zIndices";
|
|
8000
8007
|
}, {}>>;
|
|
8001
|
-
|
|
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;
|
|
8017
|
+
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
8002
8018
|
colors: {
|
|
8003
8019
|
brand50: string;
|
|
8004
8020
|
brand100: string;
|
|
@@ -8368,7 +8384,9 @@ declare const AlertDialogTitleStyled: _stitches_react_types_styled_component.Sty
|
|
|
8368
8384
|
transition: "transitions";
|
|
8369
8385
|
zIndex: "zIndices";
|
|
8370
8386
|
}, {}>>;
|
|
8371
|
-
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<{}, {
|
|
8372
8390
|
colors: {
|
|
8373
8391
|
brand50: string;
|
|
8374
8392
|
brand100: string;
|
|
@@ -8738,7 +8756,7 @@ declare const AlertDialogSubtitleStyled: _stitches_react_types_styled_component.
|
|
|
8738
8756
|
transition: "transitions";
|
|
8739
8757
|
zIndex: "zIndices";
|
|
8740
8758
|
}, {}>>;
|
|
8741
|
-
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<{}, {
|
|
8742
8760
|
colors: {
|
|
8743
8761
|
brand50: string;
|
|
8744
8762
|
brand100: string;
|
|
@@ -9108,7 +9126,7 @@ declare const AlertDialogRowStyled: _stitches_react_types_styled_component.Style
|
|
|
9108
9126
|
transition: "transitions";
|
|
9109
9127
|
zIndex: "zIndices";
|
|
9110
9128
|
}, {}>>;
|
|
9111
|
-
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<{}, {
|
|
9112
9130
|
colors: {
|
|
9113
9131
|
brand50: string;
|
|
9114
9132
|
brand100: string;
|
|
@@ -9478,29 +9496,7 @@ declare const AlertDialoghrStyled: _stitches_react_types_styled_component.Styled
|
|
|
9478
9496
|
transition: "transitions";
|
|
9479
9497
|
zIndex: "zIndices";
|
|
9480
9498
|
}, {}>>;
|
|
9481
|
-
|
|
9482
|
-
trigger: React.ReactNode;
|
|
9483
|
-
color?: "error" | "warning" | "success" | "info";
|
|
9484
|
-
simpleAlert?: {
|
|
9485
|
-
description: string;
|
|
9486
|
-
cancel: boolean;
|
|
9487
|
-
};
|
|
9488
|
-
completAlert?: {
|
|
9489
|
-
title?: string;
|
|
9490
|
-
subtitle?: string;
|
|
9491
|
-
description: string;
|
|
9492
|
-
cancel: boolean;
|
|
9493
|
-
cancelText?: string;
|
|
9494
|
-
actionText?: string;
|
|
9495
|
-
onAction?: () => void;
|
|
9496
|
-
};
|
|
9497
|
-
};
|
|
9498
|
-
declare function Alert({ color, trigger, completAlert, simpleAlert, ...props }: AlertProps): react_jsx_runtime.JSX.Element;
|
|
9499
|
-
|
|
9500
|
-
declare const SwitchStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<_radix_ui_themes.SwitchProps & react.RefAttributes<HTMLButtonElement>>, {
|
|
9501
|
-
color?: "brand" | undefined;
|
|
9502
|
-
size?: "sm" | "md" | "lg" | undefined;
|
|
9503
|
-
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
9499
|
+
declare const AlertDialogSubtitleStyled: _stitches_react_types_styled_component.StyledComponent<typeof Text, {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
9504
9500
|
colors: {
|
|
9505
9501
|
brand50: string;
|
|
9506
9502
|
brand100: string;
|
|
@@ -9870,13 +9866,7 @@ declare const SwitchStyled: _stitches_react_types_styled_component.StyledCompone
|
|
|
9870
9866
|
transition: "transitions";
|
|
9871
9867
|
zIndex: "zIndices";
|
|
9872
9868
|
}, {}>>;
|
|
9873
|
-
|
|
9874
|
-
color?: 'brand';
|
|
9875
|
-
size?: 'sm' | 'md' | 'lg';
|
|
9876
|
-
};
|
|
9877
|
-
declare function Switch(props: SwitchProps): react_jsx_runtime.JSX.Element;
|
|
9878
|
-
|
|
9879
|
-
declare const StepStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
9869
|
+
declare const AlertDialogRowStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
9880
9870
|
colors: {
|
|
9881
9871
|
brand50: string;
|
|
9882
9872
|
brand100: string;
|
|
@@ -10246,33 +10236,7 @@ declare const StepStyled: _stitches_react_types_styled_component.StyledComponent
|
|
|
10246
10236
|
transition: "transitions";
|
|
10247
10237
|
zIndex: "zIndices";
|
|
10248
10238
|
}, {}>>;
|
|
10249
|
-
|
|
10250
|
-
children: react__default.ReactNode;
|
|
10251
|
-
defaultValue: number;
|
|
10252
|
-
};
|
|
10253
|
-
declare function Step({ children, defaultValue, ...props }: StepProps): react_jsx_runtime.JSX.Element;
|
|
10254
|
-
declare function StepTrigger({ value, children, currentStep, ...props }: {
|
|
10255
|
-
value: number;
|
|
10256
|
-
children: react__default.ReactNode | string;
|
|
10257
|
-
currentStep?: number;
|
|
10258
|
-
onClick: () => void;
|
|
10259
|
-
}): react_jsx_runtime.JSX.Element;
|
|
10260
|
-
declare function StepContent({ value, children, ...props }: {
|
|
10261
|
-
value: number;
|
|
10262
|
-
children: react__default.ReactNode;
|
|
10263
|
-
}): react_jsx_runtime.JSX.Element;
|
|
10264
|
-
declare function StepList({ children, currentStep, ...props }: {
|
|
10265
|
-
children: react__default.ReactNode;
|
|
10266
|
-
currentStep: number;
|
|
10267
|
-
}): react_jsx_runtime.JSX.Element;
|
|
10268
|
-
declare function StepWrapper({ children, ...props }: {
|
|
10269
|
-
children: react__default.ReactNode;
|
|
10270
|
-
}): react_jsx_runtime.JSX.Element;
|
|
10271
|
-
|
|
10272
|
-
declare const CardStyled: _stitches_react_types_styled_component.StyledComponent<react__default.ForwardRefExoticComponent<_radix_ui_themes.CardProps & react__default.RefAttributes<HTMLDivElement>>, {
|
|
10273
|
-
color?: "error" | "primary" | "disable" | undefined;
|
|
10274
|
-
boxShadow?: boolean | "false" | "true" | undefined;
|
|
10275
|
-
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
10239
|
+
declare const AlertDialoghrStyled: _stitches_react_types_styled_component.StyledComponent<"hr", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
10276
10240
|
colors: {
|
|
10277
10241
|
brand50: string;
|
|
10278
10242
|
brand100: string;
|
|
@@ -10642,9 +10606,1173 @@ declare const CardStyled: _stitches_react_types_styled_component.StyledComponent
|
|
|
10642
10606
|
transition: "transitions";
|
|
10643
10607
|
zIndex: "zIndices";
|
|
10644
10608
|
}, {}>>;
|
|
10645
|
-
type
|
|
10646
|
-
|
|
10647
|
-
|
|
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
|
+
};
|
|
10625
|
+
};
|
|
10626
|
+
declare function Alert({ color, trigger, completAlert, simpleAlert, ...props }: AlertProps): react_jsx_runtime.JSX.Element;
|
|
10627
|
+
|
|
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<{}, {
|
|
10632
|
+
colors: {
|
|
10633
|
+
brand50: string;
|
|
10634
|
+
brand100: string;
|
|
10635
|
+
brand200: string;
|
|
10636
|
+
brand300: string;
|
|
10637
|
+
brand400: string;
|
|
10638
|
+
brand500: string;
|
|
10639
|
+
brand600: string;
|
|
10640
|
+
brand700: string;
|
|
10641
|
+
brand800: string;
|
|
10642
|
+
brand900: string;
|
|
10643
|
+
brand950: string;
|
|
10644
|
+
blue50: string;
|
|
10645
|
+
blue100: string;
|
|
10646
|
+
blue200: string;
|
|
10647
|
+
blue300: string;
|
|
10648
|
+
blue400: string;
|
|
10649
|
+
blue500: string;
|
|
10650
|
+
blue600: string;
|
|
10651
|
+
blue700: string;
|
|
10652
|
+
blue800: string;
|
|
10653
|
+
blue900: string;
|
|
10654
|
+
blue950: string;
|
|
10655
|
+
red50: string;
|
|
10656
|
+
red100: string;
|
|
10657
|
+
red200: string;
|
|
10658
|
+
red300: string;
|
|
10659
|
+
red400: string;
|
|
10660
|
+
red500: string;
|
|
10661
|
+
red600: string;
|
|
10662
|
+
red700: string;
|
|
10663
|
+
red800: string;
|
|
10664
|
+
red900: string;
|
|
10665
|
+
red950: string;
|
|
10666
|
+
purple50: string;
|
|
10667
|
+
purple100: string;
|
|
10668
|
+
purple200: string;
|
|
10669
|
+
purple300: string;
|
|
10670
|
+
purple400: string;
|
|
10671
|
+
purple500: string;
|
|
10672
|
+
purple600: string;
|
|
10673
|
+
purple700: string;
|
|
10674
|
+
purple800: string;
|
|
10675
|
+
purple900: string;
|
|
10676
|
+
purple950: string;
|
|
10677
|
+
yellow50: string;
|
|
10678
|
+
yellow100: string;
|
|
10679
|
+
yellow200: string;
|
|
10680
|
+
yellow300: string;
|
|
10681
|
+
yellow400: string;
|
|
10682
|
+
yellow500: string;
|
|
10683
|
+
yellow600: string;
|
|
10684
|
+
yellow700: string;
|
|
10685
|
+
yellow800: string;
|
|
10686
|
+
yellow900: string;
|
|
10687
|
+
yellow950: string;
|
|
10688
|
+
dark50: string;
|
|
10689
|
+
dark100: string;
|
|
10690
|
+
dark200: string;
|
|
10691
|
+
dark300: string;
|
|
10692
|
+
dark400: string;
|
|
10693
|
+
dark500: string;
|
|
10694
|
+
dark600: string;
|
|
10695
|
+
dark700: string;
|
|
10696
|
+
dark800: string;
|
|
10697
|
+
dark900: string;
|
|
10698
|
+
dark950: string;
|
|
10699
|
+
neutral50: string;
|
|
10700
|
+
neutral100: string;
|
|
10701
|
+
neutral200: string;
|
|
10702
|
+
neutral300: string;
|
|
10703
|
+
neutral400: string;
|
|
10704
|
+
neutral500: string;
|
|
10705
|
+
neutral600: string;
|
|
10706
|
+
neutral700: string;
|
|
10707
|
+
neutral800: string;
|
|
10708
|
+
neutral900: string;
|
|
10709
|
+
neutral950: string;
|
|
10710
|
+
green50: string;
|
|
10711
|
+
green100: string;
|
|
10712
|
+
green200: string;
|
|
10713
|
+
green300: string;
|
|
10714
|
+
green400: string;
|
|
10715
|
+
green500: string;
|
|
10716
|
+
green600: string;
|
|
10717
|
+
green700: string;
|
|
10718
|
+
green800: string;
|
|
10719
|
+
green900: string;
|
|
10720
|
+
green950: string;
|
|
10721
|
+
grey50: string;
|
|
10722
|
+
grey100: string;
|
|
10723
|
+
grey200: string;
|
|
10724
|
+
grey300: string;
|
|
10725
|
+
grey400: string;
|
|
10726
|
+
grey500: string;
|
|
10727
|
+
grey600: string;
|
|
10728
|
+
grey700: string;
|
|
10729
|
+
grey800: string;
|
|
10730
|
+
grey900: string;
|
|
10731
|
+
grey950: string;
|
|
10732
|
+
error50: string;
|
|
10733
|
+
error100: string;
|
|
10734
|
+
error200: string;
|
|
10735
|
+
error300: string;
|
|
10736
|
+
error400: string;
|
|
10737
|
+
error500: string;
|
|
10738
|
+
error600: string;
|
|
10739
|
+
error700: string;
|
|
10740
|
+
error800: string;
|
|
10741
|
+
error900: string;
|
|
10742
|
+
error950: string;
|
|
10743
|
+
success50: string;
|
|
10744
|
+
success100: string;
|
|
10745
|
+
success200: string;
|
|
10746
|
+
success300: string;
|
|
10747
|
+
success400: string;
|
|
10748
|
+
success500: string;
|
|
10749
|
+
success600: string;
|
|
10750
|
+
success700: string;
|
|
10751
|
+
success800: string;
|
|
10752
|
+
success900: string;
|
|
10753
|
+
success950: string;
|
|
10754
|
+
warning50: string;
|
|
10755
|
+
warning100: string;
|
|
10756
|
+
warning200: string;
|
|
10757
|
+
warning300: string;
|
|
10758
|
+
warning400: string;
|
|
10759
|
+
warning500: string;
|
|
10760
|
+
warning600: string;
|
|
10761
|
+
warning700: string;
|
|
10762
|
+
warning800: string;
|
|
10763
|
+
warning900: string;
|
|
10764
|
+
warning950: string;
|
|
10765
|
+
info50: string;
|
|
10766
|
+
info100: string;
|
|
10767
|
+
info200: string;
|
|
10768
|
+
info300: string;
|
|
10769
|
+
info400: string;
|
|
10770
|
+
info500: string;
|
|
10771
|
+
info600: string;
|
|
10772
|
+
info700: string;
|
|
10773
|
+
info800: string;
|
|
10774
|
+
info900: string;
|
|
10775
|
+
info950: string;
|
|
10776
|
+
};
|
|
10777
|
+
fontSizes: {
|
|
10778
|
+
2: string;
|
|
10779
|
+
4: string;
|
|
10780
|
+
6: string;
|
|
10781
|
+
8: string;
|
|
10782
|
+
10: string;
|
|
10783
|
+
12: string;
|
|
10784
|
+
13: string;
|
|
10785
|
+
14: string;
|
|
10786
|
+
16: string;
|
|
10787
|
+
18: string;
|
|
10788
|
+
20: string;
|
|
10789
|
+
22: string;
|
|
10790
|
+
24: string;
|
|
10791
|
+
32: string;
|
|
10792
|
+
36: string;
|
|
10793
|
+
40: string;
|
|
10794
|
+
48: string;
|
|
10795
|
+
56: string;
|
|
10796
|
+
64: string;
|
|
10797
|
+
72: string;
|
|
10798
|
+
80: string;
|
|
10799
|
+
xs: string;
|
|
10800
|
+
sm: string;
|
|
10801
|
+
md: string;
|
|
10802
|
+
lg: string;
|
|
10803
|
+
'2xl': string;
|
|
10804
|
+
'3xl': string;
|
|
10805
|
+
'4xl': string;
|
|
10806
|
+
full: string;
|
|
10807
|
+
};
|
|
10808
|
+
fonts: {
|
|
10809
|
+
default: string;
|
|
10810
|
+
};
|
|
10811
|
+
fontWeights: {
|
|
10812
|
+
regular: string;
|
|
10813
|
+
medium: string;
|
|
10814
|
+
semibold: string;
|
|
10815
|
+
bold: string;
|
|
10816
|
+
};
|
|
10817
|
+
lineHeights: {
|
|
10818
|
+
smaller: string;
|
|
10819
|
+
shorter: string;
|
|
10820
|
+
short: string;
|
|
10821
|
+
base: string;
|
|
10822
|
+
tall: string;
|
|
10823
|
+
};
|
|
10824
|
+
radii: {
|
|
10825
|
+
'3xs': string;
|
|
10826
|
+
'2xs': string;
|
|
10827
|
+
xs: string;
|
|
10828
|
+
sm: string;
|
|
10829
|
+
md: string;
|
|
10830
|
+
lg: string;
|
|
10831
|
+
xl: string;
|
|
10832
|
+
'2xl': string;
|
|
10833
|
+
'3xl': string;
|
|
10834
|
+
'4xl': string;
|
|
10835
|
+
'5xl': string;
|
|
10836
|
+
'6xl': string;
|
|
10837
|
+
'7xl': string;
|
|
10838
|
+
'8xl': string;
|
|
10839
|
+
'9xl': string;
|
|
10840
|
+
'10xl': string;
|
|
10841
|
+
'11xl': string;
|
|
10842
|
+
'12xl': string;
|
|
10843
|
+
'13xl': string;
|
|
10844
|
+
'14xl': string;
|
|
10845
|
+
full: string;
|
|
10846
|
+
};
|
|
10847
|
+
space: {
|
|
10848
|
+
2: string;
|
|
10849
|
+
4: string;
|
|
10850
|
+
6: string;
|
|
10851
|
+
8: string;
|
|
10852
|
+
10: string;
|
|
10853
|
+
12: string;
|
|
10854
|
+
13: string;
|
|
10855
|
+
14: string;
|
|
10856
|
+
16: string;
|
|
10857
|
+
18: string;
|
|
10858
|
+
20: string;
|
|
10859
|
+
22: string;
|
|
10860
|
+
24: string;
|
|
10861
|
+
32: string;
|
|
10862
|
+
36: string;
|
|
10863
|
+
40: string;
|
|
10864
|
+
48: string;
|
|
10865
|
+
56: string;
|
|
10866
|
+
64: string;
|
|
10867
|
+
72: string;
|
|
10868
|
+
80: string;
|
|
10869
|
+
full: string;
|
|
10870
|
+
};
|
|
10871
|
+
}, {
|
|
10872
|
+
height: "space";
|
|
10873
|
+
width: "space";
|
|
10874
|
+
gap: "space";
|
|
10875
|
+
gridGap: "space";
|
|
10876
|
+
columnGap: "space";
|
|
10877
|
+
gridColumnGap: "space";
|
|
10878
|
+
rowGap: "space";
|
|
10879
|
+
gridRowGap: "space";
|
|
10880
|
+
inset: "space";
|
|
10881
|
+
insetBlock: "space";
|
|
10882
|
+
insetBlockEnd: "space";
|
|
10883
|
+
insetBlockStart: "space";
|
|
10884
|
+
insetInline: "space";
|
|
10885
|
+
insetInlineEnd: "space";
|
|
10886
|
+
insetInlineStart: "space";
|
|
10887
|
+
margin: "space";
|
|
10888
|
+
marginTop: "space";
|
|
10889
|
+
marginRight: "space";
|
|
10890
|
+
marginBottom: "space";
|
|
10891
|
+
marginLeft: "space";
|
|
10892
|
+
marginBlock: "space";
|
|
10893
|
+
marginBlockEnd: "space";
|
|
10894
|
+
marginBlockStart: "space";
|
|
10895
|
+
marginInline: "space";
|
|
10896
|
+
marginInlineEnd: "space";
|
|
10897
|
+
marginInlineStart: "space";
|
|
10898
|
+
padding: "space";
|
|
10899
|
+
paddingTop: "space";
|
|
10900
|
+
paddingRight: "space";
|
|
10901
|
+
paddingBottom: "space";
|
|
10902
|
+
paddingLeft: "space";
|
|
10903
|
+
paddingBlock: "space";
|
|
10904
|
+
paddingBlockEnd: "space";
|
|
10905
|
+
paddingBlockStart: "space";
|
|
10906
|
+
paddingInline: "space";
|
|
10907
|
+
paddingInlineEnd: "space";
|
|
10908
|
+
paddingInlineStart: "space";
|
|
10909
|
+
scrollMargin: "space";
|
|
10910
|
+
scrollMarginTop: "space";
|
|
10911
|
+
scrollMarginRight: "space";
|
|
10912
|
+
scrollMarginBottom: "space";
|
|
10913
|
+
scrollMarginLeft: "space";
|
|
10914
|
+
scrollMarginBlock: "space";
|
|
10915
|
+
scrollMarginBlockEnd: "space";
|
|
10916
|
+
scrollMarginBlockStart: "space";
|
|
10917
|
+
scrollMarginInline: "space";
|
|
10918
|
+
scrollMarginInlineEnd: "space";
|
|
10919
|
+
scrollMarginInlineStart: "space";
|
|
10920
|
+
scrollPadding: "space";
|
|
10921
|
+
scrollPaddingTop: "space";
|
|
10922
|
+
scrollPaddingRight: "space";
|
|
10923
|
+
scrollPaddingBottom: "space";
|
|
10924
|
+
scrollPaddingLeft: "space";
|
|
10925
|
+
scrollPaddingBlock: "space";
|
|
10926
|
+
scrollPaddingBlockEnd: "space";
|
|
10927
|
+
scrollPaddingBlockStart: "space";
|
|
10928
|
+
scrollPaddingInline: "space";
|
|
10929
|
+
scrollPaddingInlineEnd: "space";
|
|
10930
|
+
scrollPaddingInlineStart: "space";
|
|
10931
|
+
top: "space";
|
|
10932
|
+
right: "space";
|
|
10933
|
+
bottom: "space";
|
|
10934
|
+
left: "space";
|
|
10935
|
+
fontSize: "fontSizes";
|
|
10936
|
+
background: "colors";
|
|
10937
|
+
backgroundColor: "colors";
|
|
10938
|
+
backgroundImage: "colors";
|
|
10939
|
+
borderImage: "colors";
|
|
10940
|
+
border: "colors";
|
|
10941
|
+
borderBlock: "colors";
|
|
10942
|
+
borderBlockEnd: "colors";
|
|
10943
|
+
borderBlockStart: "colors";
|
|
10944
|
+
borderBottom: "colors";
|
|
10945
|
+
borderBottomColor: "colors";
|
|
10946
|
+
borderColor: "colors";
|
|
10947
|
+
borderInline: "colors";
|
|
10948
|
+
borderInlineEnd: "colors";
|
|
10949
|
+
borderInlineStart: "colors";
|
|
10950
|
+
borderLeft: "colors";
|
|
10951
|
+
borderLeftColor: "colors";
|
|
10952
|
+
borderRight: "colors";
|
|
10953
|
+
borderRightColor: "colors";
|
|
10954
|
+
borderTop: "colors";
|
|
10955
|
+
borderTopColor: "colors";
|
|
10956
|
+
caretColor: "colors";
|
|
10957
|
+
color: "colors";
|
|
10958
|
+
columnRuleColor: "colors";
|
|
10959
|
+
outline: "colors";
|
|
10960
|
+
outlineColor: "colors";
|
|
10961
|
+
fill: "colors";
|
|
10962
|
+
stroke: "colors";
|
|
10963
|
+
textDecorationColor: "colors";
|
|
10964
|
+
fontFamily: "fonts";
|
|
10965
|
+
fontWeight: "fontWeights";
|
|
10966
|
+
lineHeight: "lineHeights";
|
|
10967
|
+
letterSpacing: "letterSpacings";
|
|
10968
|
+
blockSize: "sizes";
|
|
10969
|
+
minBlockSize: "sizes";
|
|
10970
|
+
maxBlockSize: "sizes";
|
|
10971
|
+
inlineSize: "sizes";
|
|
10972
|
+
minInlineSize: "sizes";
|
|
10973
|
+
maxInlineSize: "sizes";
|
|
10974
|
+
minWidth: "sizes";
|
|
10975
|
+
maxWidth: "sizes";
|
|
10976
|
+
minHeight: "sizes";
|
|
10977
|
+
maxHeight: "sizes";
|
|
10978
|
+
flexBasis: "sizes";
|
|
10979
|
+
gridTemplateColumns: "sizes";
|
|
10980
|
+
gridTemplateRows: "sizes";
|
|
10981
|
+
borderWidth: "borderWidths";
|
|
10982
|
+
borderTopWidth: "borderWidths";
|
|
10983
|
+
borderLeftWidth: "borderWidths";
|
|
10984
|
+
borderRightWidth: "borderWidths";
|
|
10985
|
+
borderBottomWidth: "borderWidths";
|
|
10986
|
+
borderStyle: "borderStyles";
|
|
10987
|
+
borderTopStyle: "borderStyles";
|
|
10988
|
+
borderLeftStyle: "borderStyles";
|
|
10989
|
+
borderRightStyle: "borderStyles";
|
|
10990
|
+
borderBottomStyle: "borderStyles";
|
|
10991
|
+
borderRadius: "radii";
|
|
10992
|
+
borderTopLeftRadius: "radii";
|
|
10993
|
+
borderTopRightRadius: "radii";
|
|
10994
|
+
borderBottomRightRadius: "radii";
|
|
10995
|
+
borderBottomLeftRadius: "radii";
|
|
10996
|
+
boxShadow: "shadows";
|
|
10997
|
+
textShadow: "shadows";
|
|
10998
|
+
transition: "transitions";
|
|
10999
|
+
zIndex: "zIndices";
|
|
11000
|
+
}, {}>>;
|
|
11001
|
+
type SwitchProps = ComponentProps<typeof Switch$1> & {
|
|
11002
|
+
color?: 'brand';
|
|
11003
|
+
size?: 'sm' | 'md' | 'lg';
|
|
11004
|
+
};
|
|
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;
|
|
11386
|
+
onClick: () => void;
|
|
11387
|
+
}): react_jsx_runtime.JSX.Element;
|
|
11388
|
+
declare function StepContent({ value, children, ...props }: {
|
|
11389
|
+
value: number;
|
|
11390
|
+
children: react__default.ReactNode;
|
|
11391
|
+
}): react_jsx_runtime.JSX.Element;
|
|
11392
|
+
declare function StepList({ children, currentStep, ...props }: {
|
|
11393
|
+
children: react__default.ReactNode;
|
|
11394
|
+
currentStep: number;
|
|
11395
|
+
}): react_jsx_runtime.JSX.Element;
|
|
11396
|
+
declare function StepWrapper({ children, ...props }: {
|
|
11397
|
+
children: react__default.ReactNode;
|
|
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;
|
|
10648
11776
|
};
|
|
10649
11777
|
declare function Card({ asChild, children, ...props }: CardProps): react_jsx_runtime.JSX.Element;
|
|
10650
11778
|
|
|
@@ -11020,9 +12148,428 @@ declare const TextareaFieldStyle: _stitches_react_types_styled_component.StyledC
|
|
|
11020
12148
|
transition: "transitions";
|
|
11021
12149
|
zIndex: "zIndices";
|
|
11022
12150
|
}, {}>>;
|
|
11023
|
-
declare const TextareaContainer: _stitches_react_types_styled_component.StyledComponent<"div", {
|
|
11024
|
-
color?: "default" | "error" | undefined;
|
|
11025
|
-
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
12151
|
+
declare const TextareaContainer: _stitches_react_types_styled_component.StyledComponent<"div", {
|
|
12152
|
+
color?: "default" | "error" | undefined;
|
|
12153
|
+
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
12154
|
+
colors: {
|
|
12155
|
+
brand50: string;
|
|
12156
|
+
brand100: string;
|
|
12157
|
+
brand200: string;
|
|
12158
|
+
brand300: string;
|
|
12159
|
+
brand400: string;
|
|
12160
|
+
brand500: string;
|
|
12161
|
+
brand600: string;
|
|
12162
|
+
brand700: string;
|
|
12163
|
+
brand800: string;
|
|
12164
|
+
brand900: string;
|
|
12165
|
+
brand950: string;
|
|
12166
|
+
blue50: string;
|
|
12167
|
+
blue100: string;
|
|
12168
|
+
blue200: string;
|
|
12169
|
+
blue300: string;
|
|
12170
|
+
blue400: string;
|
|
12171
|
+
blue500: string;
|
|
12172
|
+
blue600: string;
|
|
12173
|
+
blue700: string;
|
|
12174
|
+
blue800: string;
|
|
12175
|
+
blue900: string;
|
|
12176
|
+
blue950: string;
|
|
12177
|
+
red50: string;
|
|
12178
|
+
red100: string;
|
|
12179
|
+
red200: string;
|
|
12180
|
+
red300: string;
|
|
12181
|
+
red400: string;
|
|
12182
|
+
red500: string;
|
|
12183
|
+
red600: string;
|
|
12184
|
+
red700: string;
|
|
12185
|
+
red800: string;
|
|
12186
|
+
red900: string;
|
|
12187
|
+
red950: string;
|
|
12188
|
+
purple50: string;
|
|
12189
|
+
purple100: string;
|
|
12190
|
+
purple200: string;
|
|
12191
|
+
purple300: string;
|
|
12192
|
+
purple400: string;
|
|
12193
|
+
purple500: string;
|
|
12194
|
+
purple600: string;
|
|
12195
|
+
purple700: string;
|
|
12196
|
+
purple800: string;
|
|
12197
|
+
purple900: string;
|
|
12198
|
+
purple950: string;
|
|
12199
|
+
yellow50: string;
|
|
12200
|
+
yellow100: string;
|
|
12201
|
+
yellow200: string;
|
|
12202
|
+
yellow300: string;
|
|
12203
|
+
yellow400: string;
|
|
12204
|
+
yellow500: string;
|
|
12205
|
+
yellow600: string;
|
|
12206
|
+
yellow700: string;
|
|
12207
|
+
yellow800: string;
|
|
12208
|
+
yellow900: string;
|
|
12209
|
+
yellow950: string;
|
|
12210
|
+
dark50: string;
|
|
12211
|
+
dark100: string;
|
|
12212
|
+
dark200: string;
|
|
12213
|
+
dark300: string;
|
|
12214
|
+
dark400: string;
|
|
12215
|
+
dark500: string;
|
|
12216
|
+
dark600: string;
|
|
12217
|
+
dark700: string;
|
|
12218
|
+
dark800: string;
|
|
12219
|
+
dark900: string;
|
|
12220
|
+
dark950: string;
|
|
12221
|
+
neutral50: string;
|
|
12222
|
+
neutral100: string;
|
|
12223
|
+
neutral200: string;
|
|
12224
|
+
neutral300: string;
|
|
12225
|
+
neutral400: string;
|
|
12226
|
+
neutral500: string;
|
|
12227
|
+
neutral600: string;
|
|
12228
|
+
neutral700: string;
|
|
12229
|
+
neutral800: string;
|
|
12230
|
+
neutral900: string;
|
|
12231
|
+
neutral950: string;
|
|
12232
|
+
green50: string;
|
|
12233
|
+
green100: string;
|
|
12234
|
+
green200: string;
|
|
12235
|
+
green300: string;
|
|
12236
|
+
green400: string;
|
|
12237
|
+
green500: string;
|
|
12238
|
+
green600: string;
|
|
12239
|
+
green700: string;
|
|
12240
|
+
green800: string;
|
|
12241
|
+
green900: string;
|
|
12242
|
+
green950: string;
|
|
12243
|
+
grey50: string;
|
|
12244
|
+
grey100: string;
|
|
12245
|
+
grey200: string;
|
|
12246
|
+
grey300: string;
|
|
12247
|
+
grey400: string;
|
|
12248
|
+
grey500: string;
|
|
12249
|
+
grey600: string;
|
|
12250
|
+
grey700: string;
|
|
12251
|
+
grey800: string;
|
|
12252
|
+
grey900: string;
|
|
12253
|
+
grey950: string;
|
|
12254
|
+
error50: string;
|
|
12255
|
+
error100: string;
|
|
12256
|
+
error200: string;
|
|
12257
|
+
error300: string;
|
|
12258
|
+
error400: string;
|
|
12259
|
+
error500: string;
|
|
12260
|
+
error600: string;
|
|
12261
|
+
error700: string;
|
|
12262
|
+
error800: string;
|
|
12263
|
+
error900: string;
|
|
12264
|
+
error950: string;
|
|
12265
|
+
success50: string;
|
|
12266
|
+
success100: string;
|
|
12267
|
+
success200: string;
|
|
12268
|
+
success300: string;
|
|
12269
|
+
success400: string;
|
|
12270
|
+
success500: string;
|
|
12271
|
+
success600: string;
|
|
12272
|
+
success700: string;
|
|
12273
|
+
success800: string;
|
|
12274
|
+
success900: string;
|
|
12275
|
+
success950: string;
|
|
12276
|
+
warning50: string;
|
|
12277
|
+
warning100: string;
|
|
12278
|
+
warning200: string;
|
|
12279
|
+
warning300: string;
|
|
12280
|
+
warning400: string;
|
|
12281
|
+
warning500: string;
|
|
12282
|
+
warning600: string;
|
|
12283
|
+
warning700: string;
|
|
12284
|
+
warning800: string;
|
|
12285
|
+
warning900: string;
|
|
12286
|
+
warning950: string;
|
|
12287
|
+
info50: string;
|
|
12288
|
+
info100: string;
|
|
12289
|
+
info200: string;
|
|
12290
|
+
info300: string;
|
|
12291
|
+
info400: string;
|
|
12292
|
+
info500: string;
|
|
12293
|
+
info600: string;
|
|
12294
|
+
info700: string;
|
|
12295
|
+
info800: string;
|
|
12296
|
+
info900: string;
|
|
12297
|
+
info950: string;
|
|
12298
|
+
};
|
|
12299
|
+
fontSizes: {
|
|
12300
|
+
2: string;
|
|
12301
|
+
4: string;
|
|
12302
|
+
6: string;
|
|
12303
|
+
8: string;
|
|
12304
|
+
10: string;
|
|
12305
|
+
12: string;
|
|
12306
|
+
13: string;
|
|
12307
|
+
14: string;
|
|
12308
|
+
16: string;
|
|
12309
|
+
18: string;
|
|
12310
|
+
20: string;
|
|
12311
|
+
22: string;
|
|
12312
|
+
24: string;
|
|
12313
|
+
32: string;
|
|
12314
|
+
36: string;
|
|
12315
|
+
40: string;
|
|
12316
|
+
48: string;
|
|
12317
|
+
56: string;
|
|
12318
|
+
64: string;
|
|
12319
|
+
72: string;
|
|
12320
|
+
80: string;
|
|
12321
|
+
xs: string;
|
|
12322
|
+
sm: string;
|
|
12323
|
+
md: string;
|
|
12324
|
+
lg: string;
|
|
12325
|
+
'2xl': string;
|
|
12326
|
+
'3xl': string;
|
|
12327
|
+
'4xl': string;
|
|
12328
|
+
full: string;
|
|
12329
|
+
};
|
|
12330
|
+
fonts: {
|
|
12331
|
+
default: string;
|
|
12332
|
+
};
|
|
12333
|
+
fontWeights: {
|
|
12334
|
+
regular: string;
|
|
12335
|
+
medium: string;
|
|
12336
|
+
semibold: string;
|
|
12337
|
+
bold: string;
|
|
12338
|
+
};
|
|
12339
|
+
lineHeights: {
|
|
12340
|
+
smaller: string;
|
|
12341
|
+
shorter: string;
|
|
12342
|
+
short: string;
|
|
12343
|
+
base: string;
|
|
12344
|
+
tall: string;
|
|
12345
|
+
};
|
|
12346
|
+
radii: {
|
|
12347
|
+
'3xs': string;
|
|
12348
|
+
'2xs': string;
|
|
12349
|
+
xs: string;
|
|
12350
|
+
sm: string;
|
|
12351
|
+
md: string;
|
|
12352
|
+
lg: string;
|
|
12353
|
+
xl: string;
|
|
12354
|
+
'2xl': string;
|
|
12355
|
+
'3xl': string;
|
|
12356
|
+
'4xl': string;
|
|
12357
|
+
'5xl': string;
|
|
12358
|
+
'6xl': string;
|
|
12359
|
+
'7xl': string;
|
|
12360
|
+
'8xl': string;
|
|
12361
|
+
'9xl': string;
|
|
12362
|
+
'10xl': string;
|
|
12363
|
+
'11xl': string;
|
|
12364
|
+
'12xl': string;
|
|
12365
|
+
'13xl': string;
|
|
12366
|
+
'14xl': string;
|
|
12367
|
+
full: string;
|
|
12368
|
+
};
|
|
12369
|
+
space: {
|
|
12370
|
+
2: string;
|
|
12371
|
+
4: string;
|
|
12372
|
+
6: string;
|
|
12373
|
+
8: string;
|
|
12374
|
+
10: string;
|
|
12375
|
+
12: string;
|
|
12376
|
+
13: string;
|
|
12377
|
+
14: string;
|
|
12378
|
+
16: string;
|
|
12379
|
+
18: string;
|
|
12380
|
+
20: string;
|
|
12381
|
+
22: string;
|
|
12382
|
+
24: string;
|
|
12383
|
+
32: string;
|
|
12384
|
+
36: string;
|
|
12385
|
+
40: string;
|
|
12386
|
+
48: string;
|
|
12387
|
+
56: string;
|
|
12388
|
+
64: string;
|
|
12389
|
+
72: string;
|
|
12390
|
+
80: string;
|
|
12391
|
+
full: string;
|
|
12392
|
+
};
|
|
12393
|
+
}, {
|
|
12394
|
+
height: "space";
|
|
12395
|
+
width: "space";
|
|
12396
|
+
gap: "space";
|
|
12397
|
+
gridGap: "space";
|
|
12398
|
+
columnGap: "space";
|
|
12399
|
+
gridColumnGap: "space";
|
|
12400
|
+
rowGap: "space";
|
|
12401
|
+
gridRowGap: "space";
|
|
12402
|
+
inset: "space";
|
|
12403
|
+
insetBlock: "space";
|
|
12404
|
+
insetBlockEnd: "space";
|
|
12405
|
+
insetBlockStart: "space";
|
|
12406
|
+
insetInline: "space";
|
|
12407
|
+
insetInlineEnd: "space";
|
|
12408
|
+
insetInlineStart: "space";
|
|
12409
|
+
margin: "space";
|
|
12410
|
+
marginTop: "space";
|
|
12411
|
+
marginRight: "space";
|
|
12412
|
+
marginBottom: "space";
|
|
12413
|
+
marginLeft: "space";
|
|
12414
|
+
marginBlock: "space";
|
|
12415
|
+
marginBlockEnd: "space";
|
|
12416
|
+
marginBlockStart: "space";
|
|
12417
|
+
marginInline: "space";
|
|
12418
|
+
marginInlineEnd: "space";
|
|
12419
|
+
marginInlineStart: "space";
|
|
12420
|
+
padding: "space";
|
|
12421
|
+
paddingTop: "space";
|
|
12422
|
+
paddingRight: "space";
|
|
12423
|
+
paddingBottom: "space";
|
|
12424
|
+
paddingLeft: "space";
|
|
12425
|
+
paddingBlock: "space";
|
|
12426
|
+
paddingBlockEnd: "space";
|
|
12427
|
+
paddingBlockStart: "space";
|
|
12428
|
+
paddingInline: "space";
|
|
12429
|
+
paddingInlineEnd: "space";
|
|
12430
|
+
paddingInlineStart: "space";
|
|
12431
|
+
scrollMargin: "space";
|
|
12432
|
+
scrollMarginTop: "space";
|
|
12433
|
+
scrollMarginRight: "space";
|
|
12434
|
+
scrollMarginBottom: "space";
|
|
12435
|
+
scrollMarginLeft: "space";
|
|
12436
|
+
scrollMarginBlock: "space";
|
|
12437
|
+
scrollMarginBlockEnd: "space";
|
|
12438
|
+
scrollMarginBlockStart: "space";
|
|
12439
|
+
scrollMarginInline: "space";
|
|
12440
|
+
scrollMarginInlineEnd: "space";
|
|
12441
|
+
scrollMarginInlineStart: "space";
|
|
12442
|
+
scrollPadding: "space";
|
|
12443
|
+
scrollPaddingTop: "space";
|
|
12444
|
+
scrollPaddingRight: "space";
|
|
12445
|
+
scrollPaddingBottom: "space";
|
|
12446
|
+
scrollPaddingLeft: "space";
|
|
12447
|
+
scrollPaddingBlock: "space";
|
|
12448
|
+
scrollPaddingBlockEnd: "space";
|
|
12449
|
+
scrollPaddingBlockStart: "space";
|
|
12450
|
+
scrollPaddingInline: "space";
|
|
12451
|
+
scrollPaddingInlineEnd: "space";
|
|
12452
|
+
scrollPaddingInlineStart: "space";
|
|
12453
|
+
top: "space";
|
|
12454
|
+
right: "space";
|
|
12455
|
+
bottom: "space";
|
|
12456
|
+
left: "space";
|
|
12457
|
+
fontSize: "fontSizes";
|
|
12458
|
+
background: "colors";
|
|
12459
|
+
backgroundColor: "colors";
|
|
12460
|
+
backgroundImage: "colors";
|
|
12461
|
+
borderImage: "colors";
|
|
12462
|
+
border: "colors";
|
|
12463
|
+
borderBlock: "colors";
|
|
12464
|
+
borderBlockEnd: "colors";
|
|
12465
|
+
borderBlockStart: "colors";
|
|
12466
|
+
borderBottom: "colors";
|
|
12467
|
+
borderBottomColor: "colors";
|
|
12468
|
+
borderColor: "colors";
|
|
12469
|
+
borderInline: "colors";
|
|
12470
|
+
borderInlineEnd: "colors";
|
|
12471
|
+
borderInlineStart: "colors";
|
|
12472
|
+
borderLeft: "colors";
|
|
12473
|
+
borderLeftColor: "colors";
|
|
12474
|
+
borderRight: "colors";
|
|
12475
|
+
borderRightColor: "colors";
|
|
12476
|
+
borderTop: "colors";
|
|
12477
|
+
borderTopColor: "colors";
|
|
12478
|
+
caretColor: "colors";
|
|
12479
|
+
color: "colors";
|
|
12480
|
+
columnRuleColor: "colors";
|
|
12481
|
+
outline: "colors";
|
|
12482
|
+
outlineColor: "colors";
|
|
12483
|
+
fill: "colors";
|
|
12484
|
+
stroke: "colors";
|
|
12485
|
+
textDecorationColor: "colors";
|
|
12486
|
+
fontFamily: "fonts";
|
|
12487
|
+
fontWeight: "fontWeights";
|
|
12488
|
+
lineHeight: "lineHeights";
|
|
12489
|
+
letterSpacing: "letterSpacings";
|
|
12490
|
+
blockSize: "sizes";
|
|
12491
|
+
minBlockSize: "sizes";
|
|
12492
|
+
maxBlockSize: "sizes";
|
|
12493
|
+
inlineSize: "sizes";
|
|
12494
|
+
minInlineSize: "sizes";
|
|
12495
|
+
maxInlineSize: "sizes";
|
|
12496
|
+
minWidth: "sizes";
|
|
12497
|
+
maxWidth: "sizes";
|
|
12498
|
+
minHeight: "sizes";
|
|
12499
|
+
maxHeight: "sizes";
|
|
12500
|
+
flexBasis: "sizes";
|
|
12501
|
+
gridTemplateColumns: "sizes";
|
|
12502
|
+
gridTemplateRows: "sizes";
|
|
12503
|
+
borderWidth: "borderWidths";
|
|
12504
|
+
borderTopWidth: "borderWidths";
|
|
12505
|
+
borderLeftWidth: "borderWidths";
|
|
12506
|
+
borderRightWidth: "borderWidths";
|
|
12507
|
+
borderBottomWidth: "borderWidths";
|
|
12508
|
+
borderStyle: "borderStyles";
|
|
12509
|
+
borderTopStyle: "borderStyles";
|
|
12510
|
+
borderLeftStyle: "borderStyles";
|
|
12511
|
+
borderRightStyle: "borderStyles";
|
|
12512
|
+
borderBottomStyle: "borderStyles";
|
|
12513
|
+
borderRadius: "radii";
|
|
12514
|
+
borderTopLeftRadius: "radii";
|
|
12515
|
+
borderTopRightRadius: "radii";
|
|
12516
|
+
borderBottomRightRadius: "radii";
|
|
12517
|
+
borderBottomLeftRadius: "radii";
|
|
12518
|
+
boxShadow: "shadows";
|
|
12519
|
+
textShadow: "shadows";
|
|
12520
|
+
transition: "transitions";
|
|
12521
|
+
zIndex: "zIndices";
|
|
12522
|
+
}, {}>>;
|
|
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<{}, {
|
|
11026
12573
|
colors: {
|
|
11027
12574
|
brand50: string;
|
|
11028
12575
|
brand100: string;
|
|
@@ -11392,56 +12939,17 @@ declare const TextareaContainer: _stitches_react_types_styled_component.StyledCo
|
|
|
11392
12939
|
transition: "transitions";
|
|
11393
12940
|
zIndex: "zIndices";
|
|
11394
12941
|
}, {}>>;
|
|
11395
|
-
|
|
11396
|
-
|
|
11397
|
-
|
|
11398
|
-
|
|
11399
|
-
|
|
11400
|
-
icon: string;
|
|
11401
|
-
}
|
|
11402
|
-
interface ToastOptions {
|
|
11403
|
-
type?: ToastType;
|
|
11404
|
-
title?: string;
|
|
11405
|
-
duration?: number;
|
|
11406
|
-
}
|
|
11407
|
-
interface Toast {
|
|
11408
|
-
id: string;
|
|
11409
|
-
message: string;
|
|
11410
|
-
icon?: IconName;
|
|
11411
|
-
type?: ToastType;
|
|
11412
|
-
duration?: number;
|
|
11413
|
-
createdAt: number;
|
|
11414
|
-
}
|
|
11415
|
-
interface ToastContextType {
|
|
11416
|
-
toasts: Toast[];
|
|
11417
|
-
addToast: (toast: Omit<Toast, 'id' | 'createdAt'>) => string;
|
|
11418
|
-
removeToast: (id: string) => void;
|
|
11419
|
-
removeAllToasts: () => void;
|
|
11420
|
-
}
|
|
11421
|
-
interface ToastProviderProps {
|
|
11422
|
-
children: ReactNode;
|
|
11423
|
-
defaultDuration?: number;
|
|
11424
|
-
maxToasts?: number;
|
|
11425
|
-
swipeDirection?: 'right' | 'left' | 'up' | 'down';
|
|
11426
|
-
}
|
|
11427
|
-
interface ToastComponentProps {
|
|
11428
|
-
toast: Toast;
|
|
11429
|
-
onRemove: (id: string) => void;
|
|
11430
|
-
}
|
|
11431
|
-
interface ToasterShowOptions extends ToastOptions {
|
|
11432
|
-
onClose?: () => void;
|
|
12942
|
+
interface TooltipProps {
|
|
12943
|
+
children: react.ReactNode;
|
|
12944
|
+
content: react.ReactNode;
|
|
12945
|
+
delayDuration?: number;
|
|
12946
|
+
side?: 'top' | 'right' | 'bottom' | 'left';
|
|
11433
12947
|
}
|
|
12948
|
+
declare function Tooltip({ children, content, delayDuration, side, }: TooltipProps): react_jsx_runtime.JSX.Element;
|
|
11434
12949
|
|
|
11435
|
-
declare
|
|
11436
|
-
|
|
11437
|
-
|
|
11438
|
-
|
|
11439
|
-
declare const useToast: () => ToastContextType;
|
|
11440
|
-
|
|
11441
|
-
declare const TooltipProvider: react.FC<TooltipPrimitive.TooltipProviderProps>;
|
|
11442
|
-
declare const TooltipRoot: react.FC<TooltipPrimitive.TooltipProps>;
|
|
11443
|
-
declare const TooltipTrigger: react.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & react.RefAttributes<HTMLButtonElement>>;
|
|
11444
|
-
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<{}, {
|
|
11445
12953
|
colors: {
|
|
11446
12954
|
brand50: string;
|
|
11447
12955
|
brand100: string;
|
|
@@ -11811,13 +13319,17 @@ declare const TooltipContent: _stitches_react_types_styled_component.StyledCompo
|
|
|
11811
13319
|
transition: "transitions";
|
|
11812
13320
|
zIndex: "zIndices";
|
|
11813
13321
|
}, {}>>;
|
|
11814
|
-
|
|
11815
|
-
|
|
11816
|
-
|
|
11817
|
-
|
|
11818
|
-
|
|
11819
|
-
|
|
11820
|
-
|
|
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
|
+
};
|
|
13332
|
+
declare const MultiSelect: react__default.ForwardRefExoticComponent<Omit<MultiSelectProps, "ref"> & react__default.RefAttributes<HTMLDivElement>>;
|
|
11821
13333
|
|
|
11822
13334
|
declare const FlexStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<_radix_ui_themes.FlexProps & react.RefAttributes<HTMLDivElement>>, {
|
|
11823
13335
|
display?: "flex" | "inline-flex" | undefined;
|
|
@@ -13386,4 +14898,11 @@ type FormProps = UseFormProps & {
|
|
|
13386
14898
|
};
|
|
13387
14899
|
declare const Form: ({ onSubmit, children, ...props }: FormProps) => react_jsx_runtime.JSX.Element;
|
|
13388
14900
|
|
|
13389
|
-
|
|
14901
|
+
type MultiSelectFormFieldProps = MultiSelectProps & {
|
|
14902
|
+
name: string;
|
|
14903
|
+
label?: string;
|
|
14904
|
+
required?: boolean;
|
|
14905
|
+
};
|
|
14906
|
+
declare const MultiSelectFormField: ({ name, label, required, ...rest }: MultiSelectFormFieldProps) => react_jsx_runtime.JSX.Element;
|
|
14907
|
+
|
|
14908
|
+
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 };
|