@lets-events/react 7.1.0 → 7.2.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/.turbo/turbo-build.log +9 -10
- package/CHANGELOG.md +12 -0
- package/dist/index.d.mts +1571 -71
- package/dist/index.d.ts +1571 -71
- package/dist/index.js +1025 -229
- package/dist/index.mjs +988 -200
- package/package.json +1 -1
- package/src/components/Alert.tsx +200 -153
- package/src/components/Badge.tsx +0 -1
- package/src/components/Calendar/index.tsx +5 -2
- package/src/components/Card.tsx +69 -0
- package/src/components/Step.tsx +107 -91
- package/src/components/Text.tsx +5 -7
- package/src/components/TextField.tsx +52 -43
- package/src/components/TextareaField.tsx +101 -0
- package/src/components/TimePicker.tsx +30 -4
- package/src/index.tsx +2 -0
package/dist/index.d.mts
CHANGED
|
@@ -5,10 +5,11 @@ import PropTypes from 'prop-types';
|
|
|
5
5
|
import * as _stitches_react_types_styled_component from '@stitches/react/types/styled-component';
|
|
6
6
|
import * as _stitches_react_types_css_util from '@stitches/react/types/css-util';
|
|
7
7
|
import * as react from 'react';
|
|
8
|
-
import react__default, { ComponentProps, ElementType } from 'react';
|
|
8
|
+
import react__default, { ComponentProps, ElementType, ReactNode } from 'react';
|
|
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, Dialog, AlertDialog, Switch as Switch$1 } from '@radix-ui/themes';
|
|
11
11
|
import { CSS } from '@stitches/react';
|
|
12
|
+
import { MaskOptions, format, unformat } from '@react-input/mask';
|
|
12
13
|
|
|
13
14
|
interface IconProps extends Omit<FontAwesomeIconProps, "icon" | "size"> {
|
|
14
15
|
name: IconName;
|
|
@@ -2674,7 +2675,7 @@ declare const TextFieldSlotStyled: _stitches_react_types_styled_component.Styled
|
|
|
2674
2675
|
zIndex: "zIndices";
|
|
2675
2676
|
}, {}>>;
|
|
2676
2677
|
type TextFieldProps = ComponentProps<typeof TextFieldStyled> & {
|
|
2677
|
-
addon?:
|
|
2678
|
+
addon?: ReactNode;
|
|
2678
2679
|
placeholder?: string;
|
|
2679
2680
|
children?: React.ReactNode;
|
|
2680
2681
|
isValid?: boolean;
|
|
@@ -2682,18 +2683,21 @@ type TextFieldProps = ComponentProps<typeof TextFieldStyled> & {
|
|
|
2682
2683
|
typography?: string;
|
|
2683
2684
|
fontWeight?: 'regular' | 'medium' | 'semibold' | 'bold';
|
|
2684
2685
|
textAlign?: 'left' | 'right' | 'center';
|
|
2686
|
+
mask?: MaskOptions;
|
|
2685
2687
|
};
|
|
2686
2688
|
type TextFieldSlotProps = Omit<ComponentProps<typeof TextFieldStyled>, 'color'> & {
|
|
2687
2689
|
placeholder?: string;
|
|
2688
2690
|
children?: React.ReactNode;
|
|
2689
2691
|
position?: 'flex-start' | 'flex-end';
|
|
2690
2692
|
onClick?: () => void;
|
|
2691
|
-
color?:
|
|
2693
|
+
color?: 'error' | 'success' | undefined;
|
|
2692
2694
|
typography?: string;
|
|
2693
2695
|
fontWeight?: 'regular' | 'medium' | 'semibold' | 'bold';
|
|
2694
2696
|
textAlign?: 'left' | 'right' | 'center';
|
|
2695
2697
|
};
|
|
2696
|
-
declare
|
|
2698
|
+
declare const maskFormat: typeof format;
|
|
2699
|
+
declare const maskUnformat: typeof unformat;
|
|
2700
|
+
declare function TextField({ children, isValid, name, color, typography, fontWeight, addon, textAlign, mask, ...props }: TextFieldProps): react_jsx_runtime.JSX.Element;
|
|
2697
2701
|
declare function TextFieldSlot({ children, position, onClick, typography, fontWeight, textAlign, ...props }: TextFieldSlotProps): react_jsx_runtime.JSX.Element;
|
|
2698
2702
|
|
|
2699
2703
|
declare const RadioGroupStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<RadioGroup$1.RootProps & react.RefAttributes<HTMLDivElement>>, {
|
|
@@ -7245,16 +7249,7 @@ declare const TimerPickerContentStyled: _stitches_react_types_styled_component.S
|
|
|
7245
7249
|
transition: "transitions";
|
|
7246
7250
|
zIndex: "zIndices";
|
|
7247
7251
|
}, {}>>;
|
|
7248
|
-
|
|
7249
|
-
selected: string | undefined;
|
|
7250
|
-
setSelected: react__default.Dispatch<react__default.SetStateAction<string | undefined>>;
|
|
7251
|
-
position?: "bottom" | "top";
|
|
7252
|
-
};
|
|
7253
|
-
declare function TimePicker({ selected, setSelected, position, }: TimePickerProps): react_jsx_runtime.JSX.Element;
|
|
7254
|
-
|
|
7255
|
-
declare const AlertDialogSimpleStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<AlertDialog.ContentProps & react.RefAttributes<HTMLDivElement>>, {
|
|
7256
|
-
color?: "info" | "warning" | "error" | "success" | undefined;
|
|
7257
|
-
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
7252
|
+
declare const InputStyled: _stitches_react_types_styled_component.StyledComponent<"input", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
7258
7253
|
colors: {
|
|
7259
7254
|
brand50: string;
|
|
7260
7255
|
brand100: string;
|
|
@@ -7624,8 +7619,15 @@ declare const AlertDialogSimpleStyled: _stitches_react_types_styled_component.St
|
|
|
7624
7619
|
transition: "transitions";
|
|
7625
7620
|
zIndex: "zIndices";
|
|
7626
7621
|
}, {}>>;
|
|
7627
|
-
|
|
7628
|
-
|
|
7622
|
+
type TimePickerProps = {
|
|
7623
|
+
selected: string | undefined;
|
|
7624
|
+
setSelected: react__default.Dispatch<react__default.SetStateAction<string | undefined>>;
|
|
7625
|
+
position?: "bottom" | "top";
|
|
7626
|
+
};
|
|
7627
|
+
declare function TimePicker({ selected, setSelected, position, }: TimePickerProps): react_jsx_runtime.JSX.Element;
|
|
7628
|
+
|
|
7629
|
+
declare const AlertDialogSimpleStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<AlertDialog.ContentProps & react.RefAttributes<HTMLDivElement>>, {
|
|
7630
|
+
color?: "info" | "warning" | "error" | "success" | undefined;
|
|
7629
7631
|
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
7630
7632
|
colors: {
|
|
7631
7633
|
brand50: string;
|
|
@@ -7996,7 +7998,9 @@ declare const AlertDialogCompleteStyled: _stitches_react_types_styled_component.
|
|
|
7996
7998
|
transition: "transitions";
|
|
7997
7999
|
zIndex: "zIndices";
|
|
7998
8000
|
}, {}>>;
|
|
7999
|
-
declare const
|
|
8001
|
+
declare const AlertDialogCompleteStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<AlertDialog.ContentProps & react.RefAttributes<HTMLDivElement>>, {
|
|
8002
|
+
color?: undefined;
|
|
8003
|
+
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
8000
8004
|
colors: {
|
|
8001
8005
|
brand50: string;
|
|
8002
8006
|
brand100: string;
|
|
@@ -8366,7 +8370,7 @@ declare const AlertDialogDescriptionStyled: _stitches_react_types_styled_compone
|
|
|
8366
8370
|
transition: "transitions";
|
|
8367
8371
|
zIndex: "zIndices";
|
|
8368
8372
|
}, {}>>;
|
|
8369
|
-
declare const
|
|
8373
|
+
declare const AlertDialogDescriptionStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<AlertDialog.DescriptionProps & react.RefAttributes<HTMLParagraphElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
8370
8374
|
colors: {
|
|
8371
8375
|
brand50: string;
|
|
8372
8376
|
brand100: string;
|
|
@@ -8736,7 +8740,7 @@ declare const AlertDialogTitleStyled: _stitches_react_types_styled_component.Sty
|
|
|
8736
8740
|
transition: "transitions";
|
|
8737
8741
|
zIndex: "zIndices";
|
|
8738
8742
|
}, {}>>;
|
|
8739
|
-
declare const
|
|
8743
|
+
declare const AlertDialogTitleStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<AlertDialog.TitleProps & react.RefAttributes<HTMLHeadingElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
8740
8744
|
colors: {
|
|
8741
8745
|
brand50: string;
|
|
8742
8746
|
brand100: string;
|
|
@@ -9106,7 +9110,7 @@ declare const AlertDialogSubtitleStyled: _stitches_react_types_styled_component.
|
|
|
9106
9110
|
transition: "transitions";
|
|
9107
9111
|
zIndex: "zIndices";
|
|
9108
9112
|
}, {}>>;
|
|
9109
|
-
declare const
|
|
9113
|
+
declare const AlertDialogSubtitleStyled: _stitches_react_types_styled_component.StyledComponent<typeof Text, {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
9110
9114
|
colors: {
|
|
9111
9115
|
brand50: string;
|
|
9112
9116
|
brand100: string;
|
|
@@ -9476,7 +9480,7 @@ declare const AlertDialogRowStyled: _stitches_react_types_styled_component.Style
|
|
|
9476
9480
|
transition: "transitions";
|
|
9477
9481
|
zIndex: "zIndices";
|
|
9478
9482
|
}, {}>>;
|
|
9479
|
-
declare const
|
|
9483
|
+
declare const AlertDialogRowStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
9480
9484
|
colors: {
|
|
9481
9485
|
brand50: string;
|
|
9482
9486
|
brand100: string;
|
|
@@ -9846,29 +9850,7 @@ declare const AlertDialoghrStyled: _stitches_react_types_styled_component.Styled
|
|
|
9846
9850
|
transition: "transitions";
|
|
9847
9851
|
zIndex: "zIndices";
|
|
9848
9852
|
}, {}>>;
|
|
9849
|
-
|
|
9850
|
-
trigger: React.ReactNode;
|
|
9851
|
-
color?: 'error' | 'warning' | 'success' | 'info';
|
|
9852
|
-
simpleAlert?: {
|
|
9853
|
-
description: string;
|
|
9854
|
-
cancel: boolean;
|
|
9855
|
-
};
|
|
9856
|
-
completAlert?: {
|
|
9857
|
-
title?: string;
|
|
9858
|
-
subtitle?: string;
|
|
9859
|
-
description: string;
|
|
9860
|
-
cancel: boolean;
|
|
9861
|
-
cancelText?: string;
|
|
9862
|
-
actionText?: string;
|
|
9863
|
-
onAction?: () => void;
|
|
9864
|
-
};
|
|
9865
|
-
};
|
|
9866
|
-
declare function Alert({ color, trigger, completAlert, simpleAlert, ...props }: AlertProps): react_jsx_runtime.JSX.Element;
|
|
9867
|
-
|
|
9868
|
-
declare const SwitchStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<_radix_ui_themes.SwitchProps & react.RefAttributes<HTMLButtonElement>>, {
|
|
9869
|
-
color?: "brand" | undefined;
|
|
9870
|
-
size?: "sm" | "md" | "lg" | undefined;
|
|
9871
|
-
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
9853
|
+
declare const AlertDialoghrStyled: _stitches_react_types_styled_component.StyledComponent<"hr", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
9872
9854
|
colors: {
|
|
9873
9855
|
brand50: string;
|
|
9874
9856
|
brand100: string;
|
|
@@ -10238,13 +10220,29 @@ declare const SwitchStyled: _stitches_react_types_styled_component.StyledCompone
|
|
|
10238
10220
|
transition: "transitions";
|
|
10239
10221
|
zIndex: "zIndices";
|
|
10240
10222
|
}, {}>>;
|
|
10241
|
-
type
|
|
10242
|
-
|
|
10243
|
-
|
|
10223
|
+
type AlertProps = {
|
|
10224
|
+
trigger: React.ReactNode;
|
|
10225
|
+
color?: "error" | "warning" | "success" | "info";
|
|
10226
|
+
simpleAlert?: {
|
|
10227
|
+
description: string;
|
|
10228
|
+
cancel: boolean;
|
|
10229
|
+
};
|
|
10230
|
+
completAlert?: {
|
|
10231
|
+
title?: string;
|
|
10232
|
+
subtitle?: string;
|
|
10233
|
+
description: string;
|
|
10234
|
+
cancel: boolean;
|
|
10235
|
+
cancelText?: string;
|
|
10236
|
+
actionText?: string;
|
|
10237
|
+
onAction?: () => void;
|
|
10238
|
+
};
|
|
10244
10239
|
};
|
|
10245
|
-
declare function
|
|
10240
|
+
declare function Alert({ color, trigger, completAlert, simpleAlert, ...props }: AlertProps): react_jsx_runtime.JSX.Element;
|
|
10246
10241
|
|
|
10247
|
-
declare const
|
|
10242
|
+
declare const SwitchStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<_radix_ui_themes.SwitchProps & react.RefAttributes<HTMLButtonElement>>, {
|
|
10243
|
+
color?: "brand" | undefined;
|
|
10244
|
+
size?: "sm" | "md" | "lg" | undefined;
|
|
10245
|
+
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
10248
10246
|
colors: {
|
|
10249
10247
|
brand50: string;
|
|
10250
10248
|
brand100: string;
|
|
@@ -10614,28 +10612,1530 @@ declare const StepStyled: _stitches_react_types_styled_component.StyledComponent
|
|
|
10614
10612
|
transition: "transitions";
|
|
10615
10613
|
zIndex: "zIndices";
|
|
10616
10614
|
}, {}>>;
|
|
10617
|
-
type
|
|
10618
|
-
|
|
10619
|
-
|
|
10615
|
+
type SwitchProps = ComponentProps<typeof Switch$1> & {
|
|
10616
|
+
color?: 'brand';
|
|
10617
|
+
size?: 'sm' | 'md' | 'lg';
|
|
10620
10618
|
};
|
|
10621
|
-
declare function
|
|
10622
|
-
|
|
10623
|
-
|
|
10624
|
-
|
|
10625
|
-
|
|
10626
|
-
|
|
10627
|
-
|
|
10628
|
-
|
|
10629
|
-
|
|
10630
|
-
|
|
10631
|
-
|
|
10632
|
-
|
|
10633
|
-
|
|
10634
|
-
|
|
10635
|
-
|
|
10636
|
-
|
|
10637
|
-
|
|
10638
|
-
|
|
10619
|
+
declare function Switch(props: SwitchProps): react_jsx_runtime.JSX.Element;
|
|
10620
|
+
|
|
10621
|
+
declare const StepStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
10622
|
+
colors: {
|
|
10623
|
+
brand50: string;
|
|
10624
|
+
brand100: string;
|
|
10625
|
+
brand200: string;
|
|
10626
|
+
brand300: string;
|
|
10627
|
+
brand400: string;
|
|
10628
|
+
brand500: string;
|
|
10629
|
+
brand600: string;
|
|
10630
|
+
brand700: string;
|
|
10631
|
+
brand800: string;
|
|
10632
|
+
brand900: string;
|
|
10633
|
+
brand950: string;
|
|
10634
|
+
blue50: string;
|
|
10635
|
+
blue100: string;
|
|
10636
|
+
blue200: string;
|
|
10637
|
+
blue300: string;
|
|
10638
|
+
blue400: string;
|
|
10639
|
+
blue500: string;
|
|
10640
|
+
blue600: string;
|
|
10641
|
+
blue700: string;
|
|
10642
|
+
blue800: string;
|
|
10643
|
+
blue900: string;
|
|
10644
|
+
blue950: string;
|
|
10645
|
+
red50: string;
|
|
10646
|
+
red100: string;
|
|
10647
|
+
red200: string;
|
|
10648
|
+
red300: string;
|
|
10649
|
+
red400: string;
|
|
10650
|
+
red500: string;
|
|
10651
|
+
red600: string;
|
|
10652
|
+
red700: string;
|
|
10653
|
+
red800: string;
|
|
10654
|
+
red900: string;
|
|
10655
|
+
red950: string;
|
|
10656
|
+
purple50: string;
|
|
10657
|
+
purple100: string;
|
|
10658
|
+
purple200: string;
|
|
10659
|
+
purple300: string;
|
|
10660
|
+
purple400: string;
|
|
10661
|
+
purple500: string;
|
|
10662
|
+
purple600: string;
|
|
10663
|
+
purple700: string;
|
|
10664
|
+
purple800: string;
|
|
10665
|
+
purple900: string;
|
|
10666
|
+
purple950: string;
|
|
10667
|
+
yellow50: string;
|
|
10668
|
+
yellow100: string;
|
|
10669
|
+
yellow200: string;
|
|
10670
|
+
yellow300: string;
|
|
10671
|
+
yellow400: string;
|
|
10672
|
+
yellow500: string;
|
|
10673
|
+
yellow600: string;
|
|
10674
|
+
yellow700: string;
|
|
10675
|
+
yellow800: string;
|
|
10676
|
+
yellow900: string;
|
|
10677
|
+
yellow950: string;
|
|
10678
|
+
dark50: string;
|
|
10679
|
+
dark100: string;
|
|
10680
|
+
dark200: string;
|
|
10681
|
+
dark300: string;
|
|
10682
|
+
dark400: string;
|
|
10683
|
+
dark500: string;
|
|
10684
|
+
dark600: string;
|
|
10685
|
+
dark700: string;
|
|
10686
|
+
dark800: string;
|
|
10687
|
+
dark900: string;
|
|
10688
|
+
dark950: string;
|
|
10689
|
+
neutral50: string;
|
|
10690
|
+
neutral100: string;
|
|
10691
|
+
neutral200: string;
|
|
10692
|
+
neutral300: string;
|
|
10693
|
+
neutral400: string;
|
|
10694
|
+
neutral500: string;
|
|
10695
|
+
neutral600: string;
|
|
10696
|
+
neutral700: string;
|
|
10697
|
+
neutral800: string;
|
|
10698
|
+
neutral900: string;
|
|
10699
|
+
neutral950: string;
|
|
10700
|
+
green50: string;
|
|
10701
|
+
green100: string;
|
|
10702
|
+
green200: string;
|
|
10703
|
+
green300: string;
|
|
10704
|
+
green400: string;
|
|
10705
|
+
green500: string;
|
|
10706
|
+
green600: string;
|
|
10707
|
+
green700: string;
|
|
10708
|
+
green800: string;
|
|
10709
|
+
green900: string;
|
|
10710
|
+
green950: string;
|
|
10711
|
+
grey50: string;
|
|
10712
|
+
grey100: string;
|
|
10713
|
+
grey200: string;
|
|
10714
|
+
grey300: string;
|
|
10715
|
+
grey400: string;
|
|
10716
|
+
grey500: string;
|
|
10717
|
+
grey600: string;
|
|
10718
|
+
grey700: string;
|
|
10719
|
+
grey800: string;
|
|
10720
|
+
grey900: string;
|
|
10721
|
+
grey950: string;
|
|
10722
|
+
error50: string;
|
|
10723
|
+
error100: string;
|
|
10724
|
+
error200: string;
|
|
10725
|
+
error300: string;
|
|
10726
|
+
error400: string;
|
|
10727
|
+
error500: string;
|
|
10728
|
+
error600: string;
|
|
10729
|
+
error700: string;
|
|
10730
|
+
error800: string;
|
|
10731
|
+
error900: string;
|
|
10732
|
+
error950: string;
|
|
10733
|
+
success50: string;
|
|
10734
|
+
success100: string;
|
|
10735
|
+
success200: string;
|
|
10736
|
+
success300: string;
|
|
10737
|
+
success400: string;
|
|
10738
|
+
success500: string;
|
|
10739
|
+
success600: string;
|
|
10740
|
+
success700: string;
|
|
10741
|
+
success800: string;
|
|
10742
|
+
success900: string;
|
|
10743
|
+
success950: string;
|
|
10744
|
+
warning50: string;
|
|
10745
|
+
warning100: string;
|
|
10746
|
+
warning200: string;
|
|
10747
|
+
warning300: string;
|
|
10748
|
+
warning400: string;
|
|
10749
|
+
warning500: string;
|
|
10750
|
+
warning600: string;
|
|
10751
|
+
warning700: string;
|
|
10752
|
+
warning800: string;
|
|
10753
|
+
warning900: string;
|
|
10754
|
+
warning950: string;
|
|
10755
|
+
info50: string;
|
|
10756
|
+
info100: string;
|
|
10757
|
+
info200: string;
|
|
10758
|
+
info300: string;
|
|
10759
|
+
info400: string;
|
|
10760
|
+
info500: string;
|
|
10761
|
+
info600: string;
|
|
10762
|
+
info700: string;
|
|
10763
|
+
info800: string;
|
|
10764
|
+
info900: string;
|
|
10765
|
+
info950: string;
|
|
10766
|
+
};
|
|
10767
|
+
fontSizes: {
|
|
10768
|
+
2: string;
|
|
10769
|
+
4: string;
|
|
10770
|
+
6: string;
|
|
10771
|
+
8: string;
|
|
10772
|
+
10: string;
|
|
10773
|
+
12: string;
|
|
10774
|
+
13: string;
|
|
10775
|
+
14: string;
|
|
10776
|
+
16: string;
|
|
10777
|
+
18: string;
|
|
10778
|
+
20: string;
|
|
10779
|
+
22: string;
|
|
10780
|
+
24: string;
|
|
10781
|
+
32: string;
|
|
10782
|
+
36: string;
|
|
10783
|
+
40: string;
|
|
10784
|
+
48: string;
|
|
10785
|
+
56: string;
|
|
10786
|
+
64: string;
|
|
10787
|
+
72: string;
|
|
10788
|
+
80: string;
|
|
10789
|
+
xs: string;
|
|
10790
|
+
sm: string;
|
|
10791
|
+
md: string;
|
|
10792
|
+
lg: string;
|
|
10793
|
+
'2xl': string;
|
|
10794
|
+
'3xl': string;
|
|
10795
|
+
'4xl': string;
|
|
10796
|
+
full: string;
|
|
10797
|
+
};
|
|
10798
|
+
fonts: {
|
|
10799
|
+
default: string;
|
|
10800
|
+
};
|
|
10801
|
+
fontWeights: {
|
|
10802
|
+
regular: string;
|
|
10803
|
+
medium: string;
|
|
10804
|
+
semibold: string;
|
|
10805
|
+
bold: string;
|
|
10806
|
+
};
|
|
10807
|
+
lineHeights: {
|
|
10808
|
+
smaller: string;
|
|
10809
|
+
shorter: string;
|
|
10810
|
+
short: string;
|
|
10811
|
+
base: string;
|
|
10812
|
+
tall: string;
|
|
10813
|
+
};
|
|
10814
|
+
radii: {
|
|
10815
|
+
'3xs': string;
|
|
10816
|
+
'2xs': string;
|
|
10817
|
+
xs: string;
|
|
10818
|
+
sm: string;
|
|
10819
|
+
md: string;
|
|
10820
|
+
lg: string;
|
|
10821
|
+
xl: string;
|
|
10822
|
+
'2xl': string;
|
|
10823
|
+
'3xl': string;
|
|
10824
|
+
'4xl': string;
|
|
10825
|
+
'5xl': string;
|
|
10826
|
+
'6xl': string;
|
|
10827
|
+
'7xl': string;
|
|
10828
|
+
'8xl': string;
|
|
10829
|
+
'9xl': string;
|
|
10830
|
+
'10xl': string;
|
|
10831
|
+
'11xl': string;
|
|
10832
|
+
'12xl': string;
|
|
10833
|
+
'13xl': string;
|
|
10834
|
+
'14xl': string;
|
|
10835
|
+
full: string;
|
|
10836
|
+
};
|
|
10837
|
+
space: {
|
|
10838
|
+
2: string;
|
|
10839
|
+
4: string;
|
|
10840
|
+
6: string;
|
|
10841
|
+
8: string;
|
|
10842
|
+
10: string;
|
|
10843
|
+
12: string;
|
|
10844
|
+
13: string;
|
|
10845
|
+
14: string;
|
|
10846
|
+
16: string;
|
|
10847
|
+
18: string;
|
|
10848
|
+
20: string;
|
|
10849
|
+
22: string;
|
|
10850
|
+
24: string;
|
|
10851
|
+
32: string;
|
|
10852
|
+
36: string;
|
|
10853
|
+
40: string;
|
|
10854
|
+
48: string;
|
|
10855
|
+
56: string;
|
|
10856
|
+
64: string;
|
|
10857
|
+
72: string;
|
|
10858
|
+
80: string;
|
|
10859
|
+
full: string;
|
|
10860
|
+
};
|
|
10861
|
+
}, {
|
|
10862
|
+
height: "space";
|
|
10863
|
+
width: "space";
|
|
10864
|
+
gap: "space";
|
|
10865
|
+
gridGap: "space";
|
|
10866
|
+
columnGap: "space";
|
|
10867
|
+
gridColumnGap: "space";
|
|
10868
|
+
rowGap: "space";
|
|
10869
|
+
gridRowGap: "space";
|
|
10870
|
+
inset: "space";
|
|
10871
|
+
insetBlock: "space";
|
|
10872
|
+
insetBlockEnd: "space";
|
|
10873
|
+
insetBlockStart: "space";
|
|
10874
|
+
insetInline: "space";
|
|
10875
|
+
insetInlineEnd: "space";
|
|
10876
|
+
insetInlineStart: "space";
|
|
10877
|
+
margin: "space";
|
|
10878
|
+
marginTop: "space";
|
|
10879
|
+
marginRight: "space";
|
|
10880
|
+
marginBottom: "space";
|
|
10881
|
+
marginLeft: "space";
|
|
10882
|
+
marginBlock: "space";
|
|
10883
|
+
marginBlockEnd: "space";
|
|
10884
|
+
marginBlockStart: "space";
|
|
10885
|
+
marginInline: "space";
|
|
10886
|
+
marginInlineEnd: "space";
|
|
10887
|
+
marginInlineStart: "space";
|
|
10888
|
+
padding: "space";
|
|
10889
|
+
paddingTop: "space";
|
|
10890
|
+
paddingRight: "space";
|
|
10891
|
+
paddingBottom: "space";
|
|
10892
|
+
paddingLeft: "space";
|
|
10893
|
+
paddingBlock: "space";
|
|
10894
|
+
paddingBlockEnd: "space";
|
|
10895
|
+
paddingBlockStart: "space";
|
|
10896
|
+
paddingInline: "space";
|
|
10897
|
+
paddingInlineEnd: "space";
|
|
10898
|
+
paddingInlineStart: "space";
|
|
10899
|
+
scrollMargin: "space";
|
|
10900
|
+
scrollMarginTop: "space";
|
|
10901
|
+
scrollMarginRight: "space";
|
|
10902
|
+
scrollMarginBottom: "space";
|
|
10903
|
+
scrollMarginLeft: "space";
|
|
10904
|
+
scrollMarginBlock: "space";
|
|
10905
|
+
scrollMarginBlockEnd: "space";
|
|
10906
|
+
scrollMarginBlockStart: "space";
|
|
10907
|
+
scrollMarginInline: "space";
|
|
10908
|
+
scrollMarginInlineEnd: "space";
|
|
10909
|
+
scrollMarginInlineStart: "space";
|
|
10910
|
+
scrollPadding: "space";
|
|
10911
|
+
scrollPaddingTop: "space";
|
|
10912
|
+
scrollPaddingRight: "space";
|
|
10913
|
+
scrollPaddingBottom: "space";
|
|
10914
|
+
scrollPaddingLeft: "space";
|
|
10915
|
+
scrollPaddingBlock: "space";
|
|
10916
|
+
scrollPaddingBlockEnd: "space";
|
|
10917
|
+
scrollPaddingBlockStart: "space";
|
|
10918
|
+
scrollPaddingInline: "space";
|
|
10919
|
+
scrollPaddingInlineEnd: "space";
|
|
10920
|
+
scrollPaddingInlineStart: "space";
|
|
10921
|
+
top: "space";
|
|
10922
|
+
right: "space";
|
|
10923
|
+
bottom: "space";
|
|
10924
|
+
left: "space";
|
|
10925
|
+
fontSize: "fontSizes";
|
|
10926
|
+
background: "colors";
|
|
10927
|
+
backgroundColor: "colors";
|
|
10928
|
+
backgroundImage: "colors";
|
|
10929
|
+
borderImage: "colors";
|
|
10930
|
+
border: "colors";
|
|
10931
|
+
borderBlock: "colors";
|
|
10932
|
+
borderBlockEnd: "colors";
|
|
10933
|
+
borderBlockStart: "colors";
|
|
10934
|
+
borderBottom: "colors";
|
|
10935
|
+
borderBottomColor: "colors";
|
|
10936
|
+
borderColor: "colors";
|
|
10937
|
+
borderInline: "colors";
|
|
10938
|
+
borderInlineEnd: "colors";
|
|
10939
|
+
borderInlineStart: "colors";
|
|
10940
|
+
borderLeft: "colors";
|
|
10941
|
+
borderLeftColor: "colors";
|
|
10942
|
+
borderRight: "colors";
|
|
10943
|
+
borderRightColor: "colors";
|
|
10944
|
+
borderTop: "colors";
|
|
10945
|
+
borderTopColor: "colors";
|
|
10946
|
+
caretColor: "colors";
|
|
10947
|
+
color: "colors";
|
|
10948
|
+
columnRuleColor: "colors";
|
|
10949
|
+
outline: "colors";
|
|
10950
|
+
outlineColor: "colors";
|
|
10951
|
+
fill: "colors";
|
|
10952
|
+
stroke: "colors";
|
|
10953
|
+
textDecorationColor: "colors";
|
|
10954
|
+
fontFamily: "fonts";
|
|
10955
|
+
fontWeight: "fontWeights";
|
|
10956
|
+
lineHeight: "lineHeights";
|
|
10957
|
+
letterSpacing: "letterSpacings";
|
|
10958
|
+
blockSize: "sizes";
|
|
10959
|
+
minBlockSize: "sizes";
|
|
10960
|
+
maxBlockSize: "sizes";
|
|
10961
|
+
inlineSize: "sizes";
|
|
10962
|
+
minInlineSize: "sizes";
|
|
10963
|
+
maxInlineSize: "sizes";
|
|
10964
|
+
minWidth: "sizes";
|
|
10965
|
+
maxWidth: "sizes";
|
|
10966
|
+
minHeight: "sizes";
|
|
10967
|
+
maxHeight: "sizes";
|
|
10968
|
+
flexBasis: "sizes";
|
|
10969
|
+
gridTemplateColumns: "sizes";
|
|
10970
|
+
gridTemplateRows: "sizes";
|
|
10971
|
+
borderWidth: "borderWidths";
|
|
10972
|
+
borderTopWidth: "borderWidths";
|
|
10973
|
+
borderLeftWidth: "borderWidths";
|
|
10974
|
+
borderRightWidth: "borderWidths";
|
|
10975
|
+
borderBottomWidth: "borderWidths";
|
|
10976
|
+
borderStyle: "borderStyles";
|
|
10977
|
+
borderTopStyle: "borderStyles";
|
|
10978
|
+
borderLeftStyle: "borderStyles";
|
|
10979
|
+
borderRightStyle: "borderStyles";
|
|
10980
|
+
borderBottomStyle: "borderStyles";
|
|
10981
|
+
borderRadius: "radii";
|
|
10982
|
+
borderTopLeftRadius: "radii";
|
|
10983
|
+
borderTopRightRadius: "radii";
|
|
10984
|
+
borderBottomRightRadius: "radii";
|
|
10985
|
+
borderBottomLeftRadius: "radii";
|
|
10986
|
+
boxShadow: "shadows";
|
|
10987
|
+
textShadow: "shadows";
|
|
10988
|
+
transition: "transitions";
|
|
10989
|
+
zIndex: "zIndices";
|
|
10990
|
+
}, {}>>;
|
|
10991
|
+
type StepProps = ComponentProps<typeof StepStyled> & {
|
|
10992
|
+
children: react__default.ReactNode;
|
|
10993
|
+
defaultValue: number;
|
|
10994
|
+
};
|
|
10995
|
+
declare function Step({ children, defaultValue, ...props }: StepProps): react_jsx_runtime.JSX.Element;
|
|
10996
|
+
declare function StepTrigger({ value, children, currentStep, ...props }: {
|
|
10997
|
+
value: number;
|
|
10998
|
+
children: react__default.ReactNode | string;
|
|
10999
|
+
currentStep?: number;
|
|
11000
|
+
onClick: () => void;
|
|
11001
|
+
}): react_jsx_runtime.JSX.Element;
|
|
11002
|
+
declare function StepContent({ value, children, ...props }: {
|
|
11003
|
+
value: number;
|
|
11004
|
+
children: react__default.ReactNode;
|
|
11005
|
+
}): react_jsx_runtime.JSX.Element;
|
|
11006
|
+
declare function StepList({ children, currentStep, ...props }: {
|
|
11007
|
+
children: react__default.ReactNode;
|
|
11008
|
+
currentStep: number;
|
|
11009
|
+
}): react_jsx_runtime.JSX.Element;
|
|
11010
|
+
declare function StepWrapper({ children, ...props }: {
|
|
11011
|
+
children: react__default.ReactNode;
|
|
11012
|
+
}): react_jsx_runtime.JSX.Element;
|
|
11013
|
+
|
|
11014
|
+
declare const CardStyled: _stitches_react_types_styled_component.StyledComponent<react__default.ForwardRefExoticComponent<_radix_ui_themes.CardProps & react__default.RefAttributes<HTMLDivElement>>, {
|
|
11015
|
+
color?: "error" | "primary" | "disable" | undefined;
|
|
11016
|
+
boxShadow?: boolean | "false" | "true" | undefined;
|
|
11017
|
+
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
11018
|
+
colors: {
|
|
11019
|
+
brand50: string;
|
|
11020
|
+
brand100: string;
|
|
11021
|
+
brand200: string;
|
|
11022
|
+
brand300: string;
|
|
11023
|
+
brand400: string;
|
|
11024
|
+
brand500: string;
|
|
11025
|
+
brand600: string;
|
|
11026
|
+
brand700: string;
|
|
11027
|
+
brand800: string;
|
|
11028
|
+
brand900: string;
|
|
11029
|
+
brand950: string;
|
|
11030
|
+
blue50: string;
|
|
11031
|
+
blue100: string;
|
|
11032
|
+
blue200: string;
|
|
11033
|
+
blue300: string;
|
|
11034
|
+
blue400: string;
|
|
11035
|
+
blue500: string;
|
|
11036
|
+
blue600: string;
|
|
11037
|
+
blue700: string;
|
|
11038
|
+
blue800: string;
|
|
11039
|
+
blue900: string;
|
|
11040
|
+
blue950: string;
|
|
11041
|
+
red50: string;
|
|
11042
|
+
red100: string;
|
|
11043
|
+
red200: string;
|
|
11044
|
+
red300: string;
|
|
11045
|
+
red400: string;
|
|
11046
|
+
red500: string;
|
|
11047
|
+
red600: string;
|
|
11048
|
+
red700: string;
|
|
11049
|
+
red800: string;
|
|
11050
|
+
red900: string;
|
|
11051
|
+
red950: string;
|
|
11052
|
+
purple50: string;
|
|
11053
|
+
purple100: string;
|
|
11054
|
+
purple200: string;
|
|
11055
|
+
purple300: string;
|
|
11056
|
+
purple400: string;
|
|
11057
|
+
purple500: string;
|
|
11058
|
+
purple600: string;
|
|
11059
|
+
purple700: string;
|
|
11060
|
+
purple800: string;
|
|
11061
|
+
purple900: string;
|
|
11062
|
+
purple950: string;
|
|
11063
|
+
yellow50: string;
|
|
11064
|
+
yellow100: string;
|
|
11065
|
+
yellow200: string;
|
|
11066
|
+
yellow300: string;
|
|
11067
|
+
yellow400: string;
|
|
11068
|
+
yellow500: string;
|
|
11069
|
+
yellow600: string;
|
|
11070
|
+
yellow700: string;
|
|
11071
|
+
yellow800: string;
|
|
11072
|
+
yellow900: string;
|
|
11073
|
+
yellow950: string;
|
|
11074
|
+
dark50: string;
|
|
11075
|
+
dark100: string;
|
|
11076
|
+
dark200: string;
|
|
11077
|
+
dark300: string;
|
|
11078
|
+
dark400: string;
|
|
11079
|
+
dark500: string;
|
|
11080
|
+
dark600: string;
|
|
11081
|
+
dark700: string;
|
|
11082
|
+
dark800: string;
|
|
11083
|
+
dark900: string;
|
|
11084
|
+
dark950: string;
|
|
11085
|
+
neutral50: string;
|
|
11086
|
+
neutral100: string;
|
|
11087
|
+
neutral200: string;
|
|
11088
|
+
neutral300: string;
|
|
11089
|
+
neutral400: string;
|
|
11090
|
+
neutral500: string;
|
|
11091
|
+
neutral600: string;
|
|
11092
|
+
neutral700: string;
|
|
11093
|
+
neutral800: string;
|
|
11094
|
+
neutral900: string;
|
|
11095
|
+
neutral950: string;
|
|
11096
|
+
green50: string;
|
|
11097
|
+
green100: string;
|
|
11098
|
+
green200: string;
|
|
11099
|
+
green300: string;
|
|
11100
|
+
green400: string;
|
|
11101
|
+
green500: string;
|
|
11102
|
+
green600: string;
|
|
11103
|
+
green700: string;
|
|
11104
|
+
green800: string;
|
|
11105
|
+
green900: string;
|
|
11106
|
+
green950: string;
|
|
11107
|
+
grey50: string;
|
|
11108
|
+
grey100: string;
|
|
11109
|
+
grey200: string;
|
|
11110
|
+
grey300: string;
|
|
11111
|
+
grey400: string;
|
|
11112
|
+
grey500: string;
|
|
11113
|
+
grey600: string;
|
|
11114
|
+
grey700: string;
|
|
11115
|
+
grey800: string;
|
|
11116
|
+
grey900: string;
|
|
11117
|
+
grey950: string;
|
|
11118
|
+
error50: string;
|
|
11119
|
+
error100: string;
|
|
11120
|
+
error200: string;
|
|
11121
|
+
error300: string;
|
|
11122
|
+
error400: string;
|
|
11123
|
+
error500: string;
|
|
11124
|
+
error600: string;
|
|
11125
|
+
error700: string;
|
|
11126
|
+
error800: string;
|
|
11127
|
+
error900: string;
|
|
11128
|
+
error950: string;
|
|
11129
|
+
success50: string;
|
|
11130
|
+
success100: string;
|
|
11131
|
+
success200: string;
|
|
11132
|
+
success300: string;
|
|
11133
|
+
success400: string;
|
|
11134
|
+
success500: string;
|
|
11135
|
+
success600: string;
|
|
11136
|
+
success700: string;
|
|
11137
|
+
success800: string;
|
|
11138
|
+
success900: string;
|
|
11139
|
+
success950: string;
|
|
11140
|
+
warning50: string;
|
|
11141
|
+
warning100: string;
|
|
11142
|
+
warning200: string;
|
|
11143
|
+
warning300: string;
|
|
11144
|
+
warning400: string;
|
|
11145
|
+
warning500: string;
|
|
11146
|
+
warning600: string;
|
|
11147
|
+
warning700: string;
|
|
11148
|
+
warning800: string;
|
|
11149
|
+
warning900: string;
|
|
11150
|
+
warning950: string;
|
|
11151
|
+
info50: string;
|
|
11152
|
+
info100: string;
|
|
11153
|
+
info200: string;
|
|
11154
|
+
info300: string;
|
|
11155
|
+
info400: string;
|
|
11156
|
+
info500: string;
|
|
11157
|
+
info600: string;
|
|
11158
|
+
info700: string;
|
|
11159
|
+
info800: string;
|
|
11160
|
+
info900: string;
|
|
11161
|
+
info950: string;
|
|
11162
|
+
};
|
|
11163
|
+
fontSizes: {
|
|
11164
|
+
2: string;
|
|
11165
|
+
4: string;
|
|
11166
|
+
6: string;
|
|
11167
|
+
8: string;
|
|
11168
|
+
10: string;
|
|
11169
|
+
12: string;
|
|
11170
|
+
13: string;
|
|
11171
|
+
14: string;
|
|
11172
|
+
16: string;
|
|
11173
|
+
18: string;
|
|
11174
|
+
20: string;
|
|
11175
|
+
22: string;
|
|
11176
|
+
24: string;
|
|
11177
|
+
32: string;
|
|
11178
|
+
36: string;
|
|
11179
|
+
40: string;
|
|
11180
|
+
48: string;
|
|
11181
|
+
56: string;
|
|
11182
|
+
64: string;
|
|
11183
|
+
72: string;
|
|
11184
|
+
80: string;
|
|
11185
|
+
xs: string;
|
|
11186
|
+
sm: string;
|
|
11187
|
+
md: string;
|
|
11188
|
+
lg: string;
|
|
11189
|
+
'2xl': string;
|
|
11190
|
+
'3xl': string;
|
|
11191
|
+
'4xl': string;
|
|
11192
|
+
full: string;
|
|
11193
|
+
};
|
|
11194
|
+
fonts: {
|
|
11195
|
+
default: string;
|
|
11196
|
+
};
|
|
11197
|
+
fontWeights: {
|
|
11198
|
+
regular: string;
|
|
11199
|
+
medium: string;
|
|
11200
|
+
semibold: string;
|
|
11201
|
+
bold: string;
|
|
11202
|
+
};
|
|
11203
|
+
lineHeights: {
|
|
11204
|
+
smaller: string;
|
|
11205
|
+
shorter: string;
|
|
11206
|
+
short: string;
|
|
11207
|
+
base: string;
|
|
11208
|
+
tall: string;
|
|
11209
|
+
};
|
|
11210
|
+
radii: {
|
|
11211
|
+
'3xs': string;
|
|
11212
|
+
'2xs': string;
|
|
11213
|
+
xs: string;
|
|
11214
|
+
sm: string;
|
|
11215
|
+
md: string;
|
|
11216
|
+
lg: string;
|
|
11217
|
+
xl: string;
|
|
11218
|
+
'2xl': string;
|
|
11219
|
+
'3xl': string;
|
|
11220
|
+
'4xl': string;
|
|
11221
|
+
'5xl': string;
|
|
11222
|
+
'6xl': string;
|
|
11223
|
+
'7xl': string;
|
|
11224
|
+
'8xl': string;
|
|
11225
|
+
'9xl': string;
|
|
11226
|
+
'10xl': string;
|
|
11227
|
+
'11xl': string;
|
|
11228
|
+
'12xl': string;
|
|
11229
|
+
'13xl': string;
|
|
11230
|
+
'14xl': string;
|
|
11231
|
+
full: string;
|
|
11232
|
+
};
|
|
11233
|
+
space: {
|
|
11234
|
+
2: string;
|
|
11235
|
+
4: string;
|
|
11236
|
+
6: string;
|
|
11237
|
+
8: string;
|
|
11238
|
+
10: string;
|
|
11239
|
+
12: string;
|
|
11240
|
+
13: string;
|
|
11241
|
+
14: string;
|
|
11242
|
+
16: string;
|
|
11243
|
+
18: string;
|
|
11244
|
+
20: string;
|
|
11245
|
+
22: string;
|
|
11246
|
+
24: string;
|
|
11247
|
+
32: string;
|
|
11248
|
+
36: string;
|
|
11249
|
+
40: string;
|
|
11250
|
+
48: string;
|
|
11251
|
+
56: string;
|
|
11252
|
+
64: string;
|
|
11253
|
+
72: string;
|
|
11254
|
+
80: string;
|
|
11255
|
+
full: string;
|
|
11256
|
+
};
|
|
11257
|
+
}, {
|
|
11258
|
+
height: "space";
|
|
11259
|
+
width: "space";
|
|
11260
|
+
gap: "space";
|
|
11261
|
+
gridGap: "space";
|
|
11262
|
+
columnGap: "space";
|
|
11263
|
+
gridColumnGap: "space";
|
|
11264
|
+
rowGap: "space";
|
|
11265
|
+
gridRowGap: "space";
|
|
11266
|
+
inset: "space";
|
|
11267
|
+
insetBlock: "space";
|
|
11268
|
+
insetBlockEnd: "space";
|
|
11269
|
+
insetBlockStart: "space";
|
|
11270
|
+
insetInline: "space";
|
|
11271
|
+
insetInlineEnd: "space";
|
|
11272
|
+
insetInlineStart: "space";
|
|
11273
|
+
margin: "space";
|
|
11274
|
+
marginTop: "space";
|
|
11275
|
+
marginRight: "space";
|
|
11276
|
+
marginBottom: "space";
|
|
11277
|
+
marginLeft: "space";
|
|
11278
|
+
marginBlock: "space";
|
|
11279
|
+
marginBlockEnd: "space";
|
|
11280
|
+
marginBlockStart: "space";
|
|
11281
|
+
marginInline: "space";
|
|
11282
|
+
marginInlineEnd: "space";
|
|
11283
|
+
marginInlineStart: "space";
|
|
11284
|
+
padding: "space";
|
|
11285
|
+
paddingTop: "space";
|
|
11286
|
+
paddingRight: "space";
|
|
11287
|
+
paddingBottom: "space";
|
|
11288
|
+
paddingLeft: "space";
|
|
11289
|
+
paddingBlock: "space";
|
|
11290
|
+
paddingBlockEnd: "space";
|
|
11291
|
+
paddingBlockStart: "space";
|
|
11292
|
+
paddingInline: "space";
|
|
11293
|
+
paddingInlineEnd: "space";
|
|
11294
|
+
paddingInlineStart: "space";
|
|
11295
|
+
scrollMargin: "space";
|
|
11296
|
+
scrollMarginTop: "space";
|
|
11297
|
+
scrollMarginRight: "space";
|
|
11298
|
+
scrollMarginBottom: "space";
|
|
11299
|
+
scrollMarginLeft: "space";
|
|
11300
|
+
scrollMarginBlock: "space";
|
|
11301
|
+
scrollMarginBlockEnd: "space";
|
|
11302
|
+
scrollMarginBlockStart: "space";
|
|
11303
|
+
scrollMarginInline: "space";
|
|
11304
|
+
scrollMarginInlineEnd: "space";
|
|
11305
|
+
scrollMarginInlineStart: "space";
|
|
11306
|
+
scrollPadding: "space";
|
|
11307
|
+
scrollPaddingTop: "space";
|
|
11308
|
+
scrollPaddingRight: "space";
|
|
11309
|
+
scrollPaddingBottom: "space";
|
|
11310
|
+
scrollPaddingLeft: "space";
|
|
11311
|
+
scrollPaddingBlock: "space";
|
|
11312
|
+
scrollPaddingBlockEnd: "space";
|
|
11313
|
+
scrollPaddingBlockStart: "space";
|
|
11314
|
+
scrollPaddingInline: "space";
|
|
11315
|
+
scrollPaddingInlineEnd: "space";
|
|
11316
|
+
scrollPaddingInlineStart: "space";
|
|
11317
|
+
top: "space";
|
|
11318
|
+
right: "space";
|
|
11319
|
+
bottom: "space";
|
|
11320
|
+
left: "space";
|
|
11321
|
+
fontSize: "fontSizes";
|
|
11322
|
+
background: "colors";
|
|
11323
|
+
backgroundColor: "colors";
|
|
11324
|
+
backgroundImage: "colors";
|
|
11325
|
+
borderImage: "colors";
|
|
11326
|
+
border: "colors";
|
|
11327
|
+
borderBlock: "colors";
|
|
11328
|
+
borderBlockEnd: "colors";
|
|
11329
|
+
borderBlockStart: "colors";
|
|
11330
|
+
borderBottom: "colors";
|
|
11331
|
+
borderBottomColor: "colors";
|
|
11332
|
+
borderColor: "colors";
|
|
11333
|
+
borderInline: "colors";
|
|
11334
|
+
borderInlineEnd: "colors";
|
|
11335
|
+
borderInlineStart: "colors";
|
|
11336
|
+
borderLeft: "colors";
|
|
11337
|
+
borderLeftColor: "colors";
|
|
11338
|
+
borderRight: "colors";
|
|
11339
|
+
borderRightColor: "colors";
|
|
11340
|
+
borderTop: "colors";
|
|
11341
|
+
borderTopColor: "colors";
|
|
11342
|
+
caretColor: "colors";
|
|
11343
|
+
color: "colors";
|
|
11344
|
+
columnRuleColor: "colors";
|
|
11345
|
+
outline: "colors";
|
|
11346
|
+
outlineColor: "colors";
|
|
11347
|
+
fill: "colors";
|
|
11348
|
+
stroke: "colors";
|
|
11349
|
+
textDecorationColor: "colors";
|
|
11350
|
+
fontFamily: "fonts";
|
|
11351
|
+
fontWeight: "fontWeights";
|
|
11352
|
+
lineHeight: "lineHeights";
|
|
11353
|
+
letterSpacing: "letterSpacings";
|
|
11354
|
+
blockSize: "sizes";
|
|
11355
|
+
minBlockSize: "sizes";
|
|
11356
|
+
maxBlockSize: "sizes";
|
|
11357
|
+
inlineSize: "sizes";
|
|
11358
|
+
minInlineSize: "sizes";
|
|
11359
|
+
maxInlineSize: "sizes";
|
|
11360
|
+
minWidth: "sizes";
|
|
11361
|
+
maxWidth: "sizes";
|
|
11362
|
+
minHeight: "sizes";
|
|
11363
|
+
maxHeight: "sizes";
|
|
11364
|
+
flexBasis: "sizes";
|
|
11365
|
+
gridTemplateColumns: "sizes";
|
|
11366
|
+
gridTemplateRows: "sizes";
|
|
11367
|
+
borderWidth: "borderWidths";
|
|
11368
|
+
borderTopWidth: "borderWidths";
|
|
11369
|
+
borderLeftWidth: "borderWidths";
|
|
11370
|
+
borderRightWidth: "borderWidths";
|
|
11371
|
+
borderBottomWidth: "borderWidths";
|
|
11372
|
+
borderStyle: "borderStyles";
|
|
11373
|
+
borderTopStyle: "borderStyles";
|
|
11374
|
+
borderLeftStyle: "borderStyles";
|
|
11375
|
+
borderRightStyle: "borderStyles";
|
|
11376
|
+
borderBottomStyle: "borderStyles";
|
|
11377
|
+
borderRadius: "radii";
|
|
11378
|
+
borderTopLeftRadius: "radii";
|
|
11379
|
+
borderTopRightRadius: "radii";
|
|
11380
|
+
borderBottomRightRadius: "radii";
|
|
11381
|
+
borderBottomLeftRadius: "radii";
|
|
11382
|
+
boxShadow: "shadows";
|
|
11383
|
+
textShadow: "shadows";
|
|
11384
|
+
transition: "transitions";
|
|
11385
|
+
zIndex: "zIndices";
|
|
11386
|
+
}, {}>>;
|
|
11387
|
+
declare const CardContainer: _stitches_react_types_styled_component.StyledComponent<react__default.ForwardRefExoticComponent<_radix_ui_themes.BoxProps & react__default.RefAttributes<HTMLDivElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
11388
|
+
colors: {
|
|
11389
|
+
brand50: string;
|
|
11390
|
+
brand100: string;
|
|
11391
|
+
brand200: string;
|
|
11392
|
+
brand300: string;
|
|
11393
|
+
brand400: string;
|
|
11394
|
+
brand500: string;
|
|
11395
|
+
brand600: string;
|
|
11396
|
+
brand700: string;
|
|
11397
|
+
brand800: string;
|
|
11398
|
+
brand900: string;
|
|
11399
|
+
brand950: string;
|
|
11400
|
+
blue50: string;
|
|
11401
|
+
blue100: string;
|
|
11402
|
+
blue200: string;
|
|
11403
|
+
blue300: string;
|
|
11404
|
+
blue400: string;
|
|
11405
|
+
blue500: string;
|
|
11406
|
+
blue600: string;
|
|
11407
|
+
blue700: string;
|
|
11408
|
+
blue800: string;
|
|
11409
|
+
blue900: string;
|
|
11410
|
+
blue950: string;
|
|
11411
|
+
red50: string;
|
|
11412
|
+
red100: string;
|
|
11413
|
+
red200: string;
|
|
11414
|
+
red300: string;
|
|
11415
|
+
red400: string;
|
|
11416
|
+
red500: string;
|
|
11417
|
+
red600: string;
|
|
11418
|
+
red700: string;
|
|
11419
|
+
red800: string;
|
|
11420
|
+
red900: string;
|
|
11421
|
+
red950: string;
|
|
11422
|
+
purple50: string;
|
|
11423
|
+
purple100: string;
|
|
11424
|
+
purple200: string;
|
|
11425
|
+
purple300: string;
|
|
11426
|
+
purple400: string;
|
|
11427
|
+
purple500: string;
|
|
11428
|
+
purple600: string;
|
|
11429
|
+
purple700: string;
|
|
11430
|
+
purple800: string;
|
|
11431
|
+
purple900: string;
|
|
11432
|
+
purple950: string;
|
|
11433
|
+
yellow50: string;
|
|
11434
|
+
yellow100: string;
|
|
11435
|
+
yellow200: string;
|
|
11436
|
+
yellow300: string;
|
|
11437
|
+
yellow400: string;
|
|
11438
|
+
yellow500: string;
|
|
11439
|
+
yellow600: string;
|
|
11440
|
+
yellow700: string;
|
|
11441
|
+
yellow800: string;
|
|
11442
|
+
yellow900: string;
|
|
11443
|
+
yellow950: string;
|
|
11444
|
+
dark50: string;
|
|
11445
|
+
dark100: string;
|
|
11446
|
+
dark200: string;
|
|
11447
|
+
dark300: string;
|
|
11448
|
+
dark400: string;
|
|
11449
|
+
dark500: string;
|
|
11450
|
+
dark600: string;
|
|
11451
|
+
dark700: string;
|
|
11452
|
+
dark800: string;
|
|
11453
|
+
dark900: string;
|
|
11454
|
+
dark950: string;
|
|
11455
|
+
neutral50: string;
|
|
11456
|
+
neutral100: string;
|
|
11457
|
+
neutral200: string;
|
|
11458
|
+
neutral300: string;
|
|
11459
|
+
neutral400: string;
|
|
11460
|
+
neutral500: string;
|
|
11461
|
+
neutral600: string;
|
|
11462
|
+
neutral700: string;
|
|
11463
|
+
neutral800: string;
|
|
11464
|
+
neutral900: string;
|
|
11465
|
+
neutral950: string;
|
|
11466
|
+
green50: string;
|
|
11467
|
+
green100: string;
|
|
11468
|
+
green200: string;
|
|
11469
|
+
green300: string;
|
|
11470
|
+
green400: string;
|
|
11471
|
+
green500: string;
|
|
11472
|
+
green600: string;
|
|
11473
|
+
green700: string;
|
|
11474
|
+
green800: string;
|
|
11475
|
+
green900: string;
|
|
11476
|
+
green950: string;
|
|
11477
|
+
grey50: string;
|
|
11478
|
+
grey100: string;
|
|
11479
|
+
grey200: string;
|
|
11480
|
+
grey300: string;
|
|
11481
|
+
grey400: string;
|
|
11482
|
+
grey500: string;
|
|
11483
|
+
grey600: string;
|
|
11484
|
+
grey700: string;
|
|
11485
|
+
grey800: string;
|
|
11486
|
+
grey900: string;
|
|
11487
|
+
grey950: string;
|
|
11488
|
+
error50: string;
|
|
11489
|
+
error100: string;
|
|
11490
|
+
error200: string;
|
|
11491
|
+
error300: string;
|
|
11492
|
+
error400: string;
|
|
11493
|
+
error500: string;
|
|
11494
|
+
error600: string;
|
|
11495
|
+
error700: string;
|
|
11496
|
+
error800: string;
|
|
11497
|
+
error900: string;
|
|
11498
|
+
error950: string;
|
|
11499
|
+
success50: string;
|
|
11500
|
+
success100: string;
|
|
11501
|
+
success200: string;
|
|
11502
|
+
success300: string;
|
|
11503
|
+
success400: string;
|
|
11504
|
+
success500: string;
|
|
11505
|
+
success600: string;
|
|
11506
|
+
success700: string;
|
|
11507
|
+
success800: string;
|
|
11508
|
+
success900: string;
|
|
11509
|
+
success950: string;
|
|
11510
|
+
warning50: string;
|
|
11511
|
+
warning100: string;
|
|
11512
|
+
warning200: string;
|
|
11513
|
+
warning300: string;
|
|
11514
|
+
warning400: string;
|
|
11515
|
+
warning500: string;
|
|
11516
|
+
warning600: string;
|
|
11517
|
+
warning700: string;
|
|
11518
|
+
warning800: string;
|
|
11519
|
+
warning900: string;
|
|
11520
|
+
warning950: string;
|
|
11521
|
+
info50: string;
|
|
11522
|
+
info100: string;
|
|
11523
|
+
info200: string;
|
|
11524
|
+
info300: string;
|
|
11525
|
+
info400: string;
|
|
11526
|
+
info500: string;
|
|
11527
|
+
info600: string;
|
|
11528
|
+
info700: string;
|
|
11529
|
+
info800: string;
|
|
11530
|
+
info900: string;
|
|
11531
|
+
info950: string;
|
|
11532
|
+
};
|
|
11533
|
+
fontSizes: {
|
|
11534
|
+
2: string;
|
|
11535
|
+
4: string;
|
|
11536
|
+
6: string;
|
|
11537
|
+
8: string;
|
|
11538
|
+
10: string;
|
|
11539
|
+
12: string;
|
|
11540
|
+
13: string;
|
|
11541
|
+
14: string;
|
|
11542
|
+
16: string;
|
|
11543
|
+
18: string;
|
|
11544
|
+
20: string;
|
|
11545
|
+
22: string;
|
|
11546
|
+
24: string;
|
|
11547
|
+
32: string;
|
|
11548
|
+
36: string;
|
|
11549
|
+
40: string;
|
|
11550
|
+
48: string;
|
|
11551
|
+
56: string;
|
|
11552
|
+
64: string;
|
|
11553
|
+
72: string;
|
|
11554
|
+
80: string;
|
|
11555
|
+
xs: string;
|
|
11556
|
+
sm: string;
|
|
11557
|
+
md: string;
|
|
11558
|
+
lg: string;
|
|
11559
|
+
'2xl': string;
|
|
11560
|
+
'3xl': string;
|
|
11561
|
+
'4xl': string;
|
|
11562
|
+
full: string;
|
|
11563
|
+
};
|
|
11564
|
+
fonts: {
|
|
11565
|
+
default: string;
|
|
11566
|
+
};
|
|
11567
|
+
fontWeights: {
|
|
11568
|
+
regular: string;
|
|
11569
|
+
medium: string;
|
|
11570
|
+
semibold: string;
|
|
11571
|
+
bold: string;
|
|
11572
|
+
};
|
|
11573
|
+
lineHeights: {
|
|
11574
|
+
smaller: string;
|
|
11575
|
+
shorter: string;
|
|
11576
|
+
short: string;
|
|
11577
|
+
base: string;
|
|
11578
|
+
tall: string;
|
|
11579
|
+
};
|
|
11580
|
+
radii: {
|
|
11581
|
+
'3xs': string;
|
|
11582
|
+
'2xs': string;
|
|
11583
|
+
xs: string;
|
|
11584
|
+
sm: string;
|
|
11585
|
+
md: string;
|
|
11586
|
+
lg: string;
|
|
11587
|
+
xl: string;
|
|
11588
|
+
'2xl': string;
|
|
11589
|
+
'3xl': string;
|
|
11590
|
+
'4xl': string;
|
|
11591
|
+
'5xl': string;
|
|
11592
|
+
'6xl': string;
|
|
11593
|
+
'7xl': string;
|
|
11594
|
+
'8xl': string;
|
|
11595
|
+
'9xl': string;
|
|
11596
|
+
'10xl': string;
|
|
11597
|
+
'11xl': string;
|
|
11598
|
+
'12xl': string;
|
|
11599
|
+
'13xl': string;
|
|
11600
|
+
'14xl': string;
|
|
11601
|
+
full: string;
|
|
11602
|
+
};
|
|
11603
|
+
space: {
|
|
11604
|
+
2: string;
|
|
11605
|
+
4: string;
|
|
11606
|
+
6: string;
|
|
11607
|
+
8: string;
|
|
11608
|
+
10: string;
|
|
11609
|
+
12: string;
|
|
11610
|
+
13: string;
|
|
11611
|
+
14: string;
|
|
11612
|
+
16: string;
|
|
11613
|
+
18: string;
|
|
11614
|
+
20: string;
|
|
11615
|
+
22: string;
|
|
11616
|
+
24: string;
|
|
11617
|
+
32: string;
|
|
11618
|
+
36: string;
|
|
11619
|
+
40: string;
|
|
11620
|
+
48: string;
|
|
11621
|
+
56: string;
|
|
11622
|
+
64: string;
|
|
11623
|
+
72: string;
|
|
11624
|
+
80: string;
|
|
11625
|
+
full: string;
|
|
11626
|
+
};
|
|
11627
|
+
}, {
|
|
11628
|
+
height: "space";
|
|
11629
|
+
width: "space";
|
|
11630
|
+
gap: "space";
|
|
11631
|
+
gridGap: "space";
|
|
11632
|
+
columnGap: "space";
|
|
11633
|
+
gridColumnGap: "space";
|
|
11634
|
+
rowGap: "space";
|
|
11635
|
+
gridRowGap: "space";
|
|
11636
|
+
inset: "space";
|
|
11637
|
+
insetBlock: "space";
|
|
11638
|
+
insetBlockEnd: "space";
|
|
11639
|
+
insetBlockStart: "space";
|
|
11640
|
+
insetInline: "space";
|
|
11641
|
+
insetInlineEnd: "space";
|
|
11642
|
+
insetInlineStart: "space";
|
|
11643
|
+
margin: "space";
|
|
11644
|
+
marginTop: "space";
|
|
11645
|
+
marginRight: "space";
|
|
11646
|
+
marginBottom: "space";
|
|
11647
|
+
marginLeft: "space";
|
|
11648
|
+
marginBlock: "space";
|
|
11649
|
+
marginBlockEnd: "space";
|
|
11650
|
+
marginBlockStart: "space";
|
|
11651
|
+
marginInline: "space";
|
|
11652
|
+
marginInlineEnd: "space";
|
|
11653
|
+
marginInlineStart: "space";
|
|
11654
|
+
padding: "space";
|
|
11655
|
+
paddingTop: "space";
|
|
11656
|
+
paddingRight: "space";
|
|
11657
|
+
paddingBottom: "space";
|
|
11658
|
+
paddingLeft: "space";
|
|
11659
|
+
paddingBlock: "space";
|
|
11660
|
+
paddingBlockEnd: "space";
|
|
11661
|
+
paddingBlockStart: "space";
|
|
11662
|
+
paddingInline: "space";
|
|
11663
|
+
paddingInlineEnd: "space";
|
|
11664
|
+
paddingInlineStart: "space";
|
|
11665
|
+
scrollMargin: "space";
|
|
11666
|
+
scrollMarginTop: "space";
|
|
11667
|
+
scrollMarginRight: "space";
|
|
11668
|
+
scrollMarginBottom: "space";
|
|
11669
|
+
scrollMarginLeft: "space";
|
|
11670
|
+
scrollMarginBlock: "space";
|
|
11671
|
+
scrollMarginBlockEnd: "space";
|
|
11672
|
+
scrollMarginBlockStart: "space";
|
|
11673
|
+
scrollMarginInline: "space";
|
|
11674
|
+
scrollMarginInlineEnd: "space";
|
|
11675
|
+
scrollMarginInlineStart: "space";
|
|
11676
|
+
scrollPadding: "space";
|
|
11677
|
+
scrollPaddingTop: "space";
|
|
11678
|
+
scrollPaddingRight: "space";
|
|
11679
|
+
scrollPaddingBottom: "space";
|
|
11680
|
+
scrollPaddingLeft: "space";
|
|
11681
|
+
scrollPaddingBlock: "space";
|
|
11682
|
+
scrollPaddingBlockEnd: "space";
|
|
11683
|
+
scrollPaddingBlockStart: "space";
|
|
11684
|
+
scrollPaddingInline: "space";
|
|
11685
|
+
scrollPaddingInlineEnd: "space";
|
|
11686
|
+
scrollPaddingInlineStart: "space";
|
|
11687
|
+
top: "space";
|
|
11688
|
+
right: "space";
|
|
11689
|
+
bottom: "space";
|
|
11690
|
+
left: "space";
|
|
11691
|
+
fontSize: "fontSizes";
|
|
11692
|
+
background: "colors";
|
|
11693
|
+
backgroundColor: "colors";
|
|
11694
|
+
backgroundImage: "colors";
|
|
11695
|
+
borderImage: "colors";
|
|
11696
|
+
border: "colors";
|
|
11697
|
+
borderBlock: "colors";
|
|
11698
|
+
borderBlockEnd: "colors";
|
|
11699
|
+
borderBlockStart: "colors";
|
|
11700
|
+
borderBottom: "colors";
|
|
11701
|
+
borderBottomColor: "colors";
|
|
11702
|
+
borderColor: "colors";
|
|
11703
|
+
borderInline: "colors";
|
|
11704
|
+
borderInlineEnd: "colors";
|
|
11705
|
+
borderInlineStart: "colors";
|
|
11706
|
+
borderLeft: "colors";
|
|
11707
|
+
borderLeftColor: "colors";
|
|
11708
|
+
borderRight: "colors";
|
|
11709
|
+
borderRightColor: "colors";
|
|
11710
|
+
borderTop: "colors";
|
|
11711
|
+
borderTopColor: "colors";
|
|
11712
|
+
caretColor: "colors";
|
|
11713
|
+
color: "colors";
|
|
11714
|
+
columnRuleColor: "colors";
|
|
11715
|
+
outline: "colors";
|
|
11716
|
+
outlineColor: "colors";
|
|
11717
|
+
fill: "colors";
|
|
11718
|
+
stroke: "colors";
|
|
11719
|
+
textDecorationColor: "colors";
|
|
11720
|
+
fontFamily: "fonts";
|
|
11721
|
+
fontWeight: "fontWeights";
|
|
11722
|
+
lineHeight: "lineHeights";
|
|
11723
|
+
letterSpacing: "letterSpacings";
|
|
11724
|
+
blockSize: "sizes";
|
|
11725
|
+
minBlockSize: "sizes";
|
|
11726
|
+
maxBlockSize: "sizes";
|
|
11727
|
+
inlineSize: "sizes";
|
|
11728
|
+
minInlineSize: "sizes";
|
|
11729
|
+
maxInlineSize: "sizes";
|
|
11730
|
+
minWidth: "sizes";
|
|
11731
|
+
maxWidth: "sizes";
|
|
11732
|
+
minHeight: "sizes";
|
|
11733
|
+
maxHeight: "sizes";
|
|
11734
|
+
flexBasis: "sizes";
|
|
11735
|
+
gridTemplateColumns: "sizes";
|
|
11736
|
+
gridTemplateRows: "sizes";
|
|
11737
|
+
borderWidth: "borderWidths";
|
|
11738
|
+
borderTopWidth: "borderWidths";
|
|
11739
|
+
borderLeftWidth: "borderWidths";
|
|
11740
|
+
borderRightWidth: "borderWidths";
|
|
11741
|
+
borderBottomWidth: "borderWidths";
|
|
11742
|
+
borderStyle: "borderStyles";
|
|
11743
|
+
borderTopStyle: "borderStyles";
|
|
11744
|
+
borderLeftStyle: "borderStyles";
|
|
11745
|
+
borderRightStyle: "borderStyles";
|
|
11746
|
+
borderBottomStyle: "borderStyles";
|
|
11747
|
+
borderRadius: "radii";
|
|
11748
|
+
borderTopLeftRadius: "radii";
|
|
11749
|
+
borderTopRightRadius: "radii";
|
|
11750
|
+
borderBottomRightRadius: "radii";
|
|
11751
|
+
borderBottomLeftRadius: "radii";
|
|
11752
|
+
boxShadow: "shadows";
|
|
11753
|
+
textShadow: "shadows";
|
|
11754
|
+
transition: "transitions";
|
|
11755
|
+
zIndex: "zIndices";
|
|
11756
|
+
}, {}>>;
|
|
11757
|
+
type CardProps = ComponentProps<typeof CardStyled> & {
|
|
11758
|
+
children: react__default.ReactNode;
|
|
11759
|
+
as?: ElementType;
|
|
11760
|
+
};
|
|
11761
|
+
declare function Card({ asChild, children, ...props }: CardProps): react_jsx_runtime.JSX.Element;
|
|
11762
|
+
|
|
11763
|
+
declare const TextareaFieldStyle: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<_radix_ui_themes.TextAreaProps & react.RefAttributes<HTMLTextAreaElement>>, {
|
|
11764
|
+
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;
|
|
11765
|
+
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
11766
|
+
colors: {
|
|
11767
|
+
brand50: string;
|
|
11768
|
+
brand100: string;
|
|
11769
|
+
brand200: string;
|
|
11770
|
+
brand300: string;
|
|
11771
|
+
brand400: string;
|
|
11772
|
+
brand500: string;
|
|
11773
|
+
brand600: string;
|
|
11774
|
+
brand700: string;
|
|
11775
|
+
brand800: string;
|
|
11776
|
+
brand900: string;
|
|
11777
|
+
brand950: string;
|
|
11778
|
+
blue50: string;
|
|
11779
|
+
blue100: string;
|
|
11780
|
+
blue200: string;
|
|
11781
|
+
blue300: string;
|
|
11782
|
+
blue400: string;
|
|
11783
|
+
blue500: string;
|
|
11784
|
+
blue600: string;
|
|
11785
|
+
blue700: string;
|
|
11786
|
+
blue800: string;
|
|
11787
|
+
blue900: string;
|
|
11788
|
+
blue950: string;
|
|
11789
|
+
red50: string;
|
|
11790
|
+
red100: string;
|
|
11791
|
+
red200: string;
|
|
11792
|
+
red300: string;
|
|
11793
|
+
red400: string;
|
|
11794
|
+
red500: string;
|
|
11795
|
+
red600: string;
|
|
11796
|
+
red700: string;
|
|
11797
|
+
red800: string;
|
|
11798
|
+
red900: string;
|
|
11799
|
+
red950: string;
|
|
11800
|
+
purple50: string;
|
|
11801
|
+
purple100: string;
|
|
11802
|
+
purple200: string;
|
|
11803
|
+
purple300: string;
|
|
11804
|
+
purple400: string;
|
|
11805
|
+
purple500: string;
|
|
11806
|
+
purple600: string;
|
|
11807
|
+
purple700: string;
|
|
11808
|
+
purple800: string;
|
|
11809
|
+
purple900: string;
|
|
11810
|
+
purple950: string;
|
|
11811
|
+
yellow50: string;
|
|
11812
|
+
yellow100: string;
|
|
11813
|
+
yellow200: string;
|
|
11814
|
+
yellow300: string;
|
|
11815
|
+
yellow400: string;
|
|
11816
|
+
yellow500: string;
|
|
11817
|
+
yellow600: string;
|
|
11818
|
+
yellow700: string;
|
|
11819
|
+
yellow800: string;
|
|
11820
|
+
yellow900: string;
|
|
11821
|
+
yellow950: string;
|
|
11822
|
+
dark50: string;
|
|
11823
|
+
dark100: string;
|
|
11824
|
+
dark200: string;
|
|
11825
|
+
dark300: string;
|
|
11826
|
+
dark400: string;
|
|
11827
|
+
dark500: string;
|
|
11828
|
+
dark600: string;
|
|
11829
|
+
dark700: string;
|
|
11830
|
+
dark800: string;
|
|
11831
|
+
dark900: string;
|
|
11832
|
+
dark950: string;
|
|
11833
|
+
neutral50: string;
|
|
11834
|
+
neutral100: string;
|
|
11835
|
+
neutral200: string;
|
|
11836
|
+
neutral300: string;
|
|
11837
|
+
neutral400: string;
|
|
11838
|
+
neutral500: string;
|
|
11839
|
+
neutral600: string;
|
|
11840
|
+
neutral700: string;
|
|
11841
|
+
neutral800: string;
|
|
11842
|
+
neutral900: string;
|
|
11843
|
+
neutral950: string;
|
|
11844
|
+
green50: string;
|
|
11845
|
+
green100: string;
|
|
11846
|
+
green200: string;
|
|
11847
|
+
green300: string;
|
|
11848
|
+
green400: string;
|
|
11849
|
+
green500: string;
|
|
11850
|
+
green600: string;
|
|
11851
|
+
green700: string;
|
|
11852
|
+
green800: string;
|
|
11853
|
+
green900: string;
|
|
11854
|
+
green950: string;
|
|
11855
|
+
grey50: string;
|
|
11856
|
+
grey100: string;
|
|
11857
|
+
grey200: string;
|
|
11858
|
+
grey300: string;
|
|
11859
|
+
grey400: string;
|
|
11860
|
+
grey500: string;
|
|
11861
|
+
grey600: string;
|
|
11862
|
+
grey700: string;
|
|
11863
|
+
grey800: string;
|
|
11864
|
+
grey900: string;
|
|
11865
|
+
grey950: string;
|
|
11866
|
+
error50: string;
|
|
11867
|
+
error100: string;
|
|
11868
|
+
error200: string;
|
|
11869
|
+
error300: string;
|
|
11870
|
+
error400: string;
|
|
11871
|
+
error500: string;
|
|
11872
|
+
error600: string;
|
|
11873
|
+
error700: string;
|
|
11874
|
+
error800: string;
|
|
11875
|
+
error900: string;
|
|
11876
|
+
error950: string;
|
|
11877
|
+
success50: string;
|
|
11878
|
+
success100: string;
|
|
11879
|
+
success200: string;
|
|
11880
|
+
success300: string;
|
|
11881
|
+
success400: string;
|
|
11882
|
+
success500: string;
|
|
11883
|
+
success600: string;
|
|
11884
|
+
success700: string;
|
|
11885
|
+
success800: string;
|
|
11886
|
+
success900: string;
|
|
11887
|
+
success950: string;
|
|
11888
|
+
warning50: string;
|
|
11889
|
+
warning100: string;
|
|
11890
|
+
warning200: string;
|
|
11891
|
+
warning300: string;
|
|
11892
|
+
warning400: string;
|
|
11893
|
+
warning500: string;
|
|
11894
|
+
warning600: string;
|
|
11895
|
+
warning700: string;
|
|
11896
|
+
warning800: string;
|
|
11897
|
+
warning900: string;
|
|
11898
|
+
warning950: string;
|
|
11899
|
+
info50: string;
|
|
11900
|
+
info100: string;
|
|
11901
|
+
info200: string;
|
|
11902
|
+
info300: string;
|
|
11903
|
+
info400: string;
|
|
11904
|
+
info500: string;
|
|
11905
|
+
info600: string;
|
|
11906
|
+
info700: string;
|
|
11907
|
+
info800: string;
|
|
11908
|
+
info900: string;
|
|
11909
|
+
info950: string;
|
|
11910
|
+
};
|
|
11911
|
+
fontSizes: {
|
|
11912
|
+
2: string;
|
|
11913
|
+
4: string;
|
|
11914
|
+
6: string;
|
|
11915
|
+
8: string;
|
|
11916
|
+
10: string;
|
|
11917
|
+
12: string;
|
|
11918
|
+
13: string;
|
|
11919
|
+
14: string;
|
|
11920
|
+
16: string;
|
|
11921
|
+
18: string;
|
|
11922
|
+
20: string;
|
|
11923
|
+
22: string;
|
|
11924
|
+
24: string;
|
|
11925
|
+
32: string;
|
|
11926
|
+
36: string;
|
|
11927
|
+
40: string;
|
|
11928
|
+
48: string;
|
|
11929
|
+
56: string;
|
|
11930
|
+
64: string;
|
|
11931
|
+
72: string;
|
|
11932
|
+
80: string;
|
|
11933
|
+
xs: string;
|
|
11934
|
+
sm: string;
|
|
11935
|
+
md: string;
|
|
11936
|
+
lg: string;
|
|
11937
|
+
'2xl': string;
|
|
11938
|
+
'3xl': string;
|
|
11939
|
+
'4xl': string;
|
|
11940
|
+
full: string;
|
|
11941
|
+
};
|
|
11942
|
+
fonts: {
|
|
11943
|
+
default: string;
|
|
11944
|
+
};
|
|
11945
|
+
fontWeights: {
|
|
11946
|
+
regular: string;
|
|
11947
|
+
medium: string;
|
|
11948
|
+
semibold: string;
|
|
11949
|
+
bold: string;
|
|
11950
|
+
};
|
|
11951
|
+
lineHeights: {
|
|
11952
|
+
smaller: string;
|
|
11953
|
+
shorter: string;
|
|
11954
|
+
short: string;
|
|
11955
|
+
base: string;
|
|
11956
|
+
tall: string;
|
|
11957
|
+
};
|
|
11958
|
+
radii: {
|
|
11959
|
+
'3xs': string;
|
|
11960
|
+
'2xs': string;
|
|
11961
|
+
xs: string;
|
|
11962
|
+
sm: string;
|
|
11963
|
+
md: string;
|
|
11964
|
+
lg: string;
|
|
11965
|
+
xl: string;
|
|
11966
|
+
'2xl': string;
|
|
11967
|
+
'3xl': string;
|
|
11968
|
+
'4xl': string;
|
|
11969
|
+
'5xl': string;
|
|
11970
|
+
'6xl': string;
|
|
11971
|
+
'7xl': string;
|
|
11972
|
+
'8xl': string;
|
|
11973
|
+
'9xl': string;
|
|
11974
|
+
'10xl': string;
|
|
11975
|
+
'11xl': string;
|
|
11976
|
+
'12xl': string;
|
|
11977
|
+
'13xl': string;
|
|
11978
|
+
'14xl': string;
|
|
11979
|
+
full: string;
|
|
11980
|
+
};
|
|
11981
|
+
space: {
|
|
11982
|
+
2: string;
|
|
11983
|
+
4: string;
|
|
11984
|
+
6: string;
|
|
11985
|
+
8: string;
|
|
11986
|
+
10: string;
|
|
11987
|
+
12: string;
|
|
11988
|
+
13: string;
|
|
11989
|
+
14: string;
|
|
11990
|
+
16: string;
|
|
11991
|
+
18: string;
|
|
11992
|
+
20: string;
|
|
11993
|
+
22: string;
|
|
11994
|
+
24: string;
|
|
11995
|
+
32: string;
|
|
11996
|
+
36: string;
|
|
11997
|
+
40: string;
|
|
11998
|
+
48: string;
|
|
11999
|
+
56: string;
|
|
12000
|
+
64: string;
|
|
12001
|
+
72: string;
|
|
12002
|
+
80: string;
|
|
12003
|
+
full: string;
|
|
12004
|
+
};
|
|
12005
|
+
}, {
|
|
12006
|
+
height: "space";
|
|
12007
|
+
width: "space";
|
|
12008
|
+
gap: "space";
|
|
12009
|
+
gridGap: "space";
|
|
12010
|
+
columnGap: "space";
|
|
12011
|
+
gridColumnGap: "space";
|
|
12012
|
+
rowGap: "space";
|
|
12013
|
+
gridRowGap: "space";
|
|
12014
|
+
inset: "space";
|
|
12015
|
+
insetBlock: "space";
|
|
12016
|
+
insetBlockEnd: "space";
|
|
12017
|
+
insetBlockStart: "space";
|
|
12018
|
+
insetInline: "space";
|
|
12019
|
+
insetInlineEnd: "space";
|
|
12020
|
+
insetInlineStart: "space";
|
|
12021
|
+
margin: "space";
|
|
12022
|
+
marginTop: "space";
|
|
12023
|
+
marginRight: "space";
|
|
12024
|
+
marginBottom: "space";
|
|
12025
|
+
marginLeft: "space";
|
|
12026
|
+
marginBlock: "space";
|
|
12027
|
+
marginBlockEnd: "space";
|
|
12028
|
+
marginBlockStart: "space";
|
|
12029
|
+
marginInline: "space";
|
|
12030
|
+
marginInlineEnd: "space";
|
|
12031
|
+
marginInlineStart: "space";
|
|
12032
|
+
padding: "space";
|
|
12033
|
+
paddingTop: "space";
|
|
12034
|
+
paddingRight: "space";
|
|
12035
|
+
paddingBottom: "space";
|
|
12036
|
+
paddingLeft: "space";
|
|
12037
|
+
paddingBlock: "space";
|
|
12038
|
+
paddingBlockEnd: "space";
|
|
12039
|
+
paddingBlockStart: "space";
|
|
12040
|
+
paddingInline: "space";
|
|
12041
|
+
paddingInlineEnd: "space";
|
|
12042
|
+
paddingInlineStart: "space";
|
|
12043
|
+
scrollMargin: "space";
|
|
12044
|
+
scrollMarginTop: "space";
|
|
12045
|
+
scrollMarginRight: "space";
|
|
12046
|
+
scrollMarginBottom: "space";
|
|
12047
|
+
scrollMarginLeft: "space";
|
|
12048
|
+
scrollMarginBlock: "space";
|
|
12049
|
+
scrollMarginBlockEnd: "space";
|
|
12050
|
+
scrollMarginBlockStart: "space";
|
|
12051
|
+
scrollMarginInline: "space";
|
|
12052
|
+
scrollMarginInlineEnd: "space";
|
|
12053
|
+
scrollMarginInlineStart: "space";
|
|
12054
|
+
scrollPadding: "space";
|
|
12055
|
+
scrollPaddingTop: "space";
|
|
12056
|
+
scrollPaddingRight: "space";
|
|
12057
|
+
scrollPaddingBottom: "space";
|
|
12058
|
+
scrollPaddingLeft: "space";
|
|
12059
|
+
scrollPaddingBlock: "space";
|
|
12060
|
+
scrollPaddingBlockEnd: "space";
|
|
12061
|
+
scrollPaddingBlockStart: "space";
|
|
12062
|
+
scrollPaddingInline: "space";
|
|
12063
|
+
scrollPaddingInlineEnd: "space";
|
|
12064
|
+
scrollPaddingInlineStart: "space";
|
|
12065
|
+
top: "space";
|
|
12066
|
+
right: "space";
|
|
12067
|
+
bottom: "space";
|
|
12068
|
+
left: "space";
|
|
12069
|
+
fontSize: "fontSizes";
|
|
12070
|
+
background: "colors";
|
|
12071
|
+
backgroundColor: "colors";
|
|
12072
|
+
backgroundImage: "colors";
|
|
12073
|
+
borderImage: "colors";
|
|
12074
|
+
border: "colors";
|
|
12075
|
+
borderBlock: "colors";
|
|
12076
|
+
borderBlockEnd: "colors";
|
|
12077
|
+
borderBlockStart: "colors";
|
|
12078
|
+
borderBottom: "colors";
|
|
12079
|
+
borderBottomColor: "colors";
|
|
12080
|
+
borderColor: "colors";
|
|
12081
|
+
borderInline: "colors";
|
|
12082
|
+
borderInlineEnd: "colors";
|
|
12083
|
+
borderInlineStart: "colors";
|
|
12084
|
+
borderLeft: "colors";
|
|
12085
|
+
borderLeftColor: "colors";
|
|
12086
|
+
borderRight: "colors";
|
|
12087
|
+
borderRightColor: "colors";
|
|
12088
|
+
borderTop: "colors";
|
|
12089
|
+
borderTopColor: "colors";
|
|
12090
|
+
caretColor: "colors";
|
|
12091
|
+
color: "colors";
|
|
12092
|
+
columnRuleColor: "colors";
|
|
12093
|
+
outline: "colors";
|
|
12094
|
+
outlineColor: "colors";
|
|
12095
|
+
fill: "colors";
|
|
12096
|
+
stroke: "colors";
|
|
12097
|
+
textDecorationColor: "colors";
|
|
12098
|
+
fontFamily: "fonts";
|
|
12099
|
+
fontWeight: "fontWeights";
|
|
12100
|
+
lineHeight: "lineHeights";
|
|
12101
|
+
letterSpacing: "letterSpacings";
|
|
12102
|
+
blockSize: "sizes";
|
|
12103
|
+
minBlockSize: "sizes";
|
|
12104
|
+
maxBlockSize: "sizes";
|
|
12105
|
+
inlineSize: "sizes";
|
|
12106
|
+
minInlineSize: "sizes";
|
|
12107
|
+
maxInlineSize: "sizes";
|
|
12108
|
+
minWidth: "sizes";
|
|
12109
|
+
maxWidth: "sizes";
|
|
12110
|
+
minHeight: "sizes";
|
|
12111
|
+
maxHeight: "sizes";
|
|
12112
|
+
flexBasis: "sizes";
|
|
12113
|
+
gridTemplateColumns: "sizes";
|
|
12114
|
+
gridTemplateRows: "sizes";
|
|
12115
|
+
borderWidth: "borderWidths";
|
|
12116
|
+
borderTopWidth: "borderWidths";
|
|
12117
|
+
borderLeftWidth: "borderWidths";
|
|
12118
|
+
borderRightWidth: "borderWidths";
|
|
12119
|
+
borderBottomWidth: "borderWidths";
|
|
12120
|
+
borderStyle: "borderStyles";
|
|
12121
|
+
borderTopStyle: "borderStyles";
|
|
12122
|
+
borderLeftStyle: "borderStyles";
|
|
12123
|
+
borderRightStyle: "borderStyles";
|
|
12124
|
+
borderBottomStyle: "borderStyles";
|
|
12125
|
+
borderRadius: "radii";
|
|
12126
|
+
borderTopLeftRadius: "radii";
|
|
12127
|
+
borderTopRightRadius: "radii";
|
|
12128
|
+
borderBottomRightRadius: "radii";
|
|
12129
|
+
borderBottomLeftRadius: "radii";
|
|
12130
|
+
boxShadow: "shadows";
|
|
12131
|
+
textShadow: "shadows";
|
|
12132
|
+
transition: "transitions";
|
|
12133
|
+
zIndex: "zIndices";
|
|
12134
|
+
}, {}>>;
|
|
12135
|
+
type TextareaFieldProps = ComponentProps<typeof TextareaFieldStyle> & {
|
|
12136
|
+
limit: number;
|
|
12137
|
+
};
|
|
12138
|
+
declare function TextareaField({ maxLength, ...props }: TextareaFieldProps): react_jsx_runtime.JSX.Element;
|
|
10639
12139
|
|
|
10640
12140
|
declare const FlexStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<_radix_ui_themes.FlexProps & react.RefAttributes<HTMLDivElement>>, {
|
|
10641
12141
|
display?: "flex" | "inline-flex" | undefined;
|
|
@@ -12169,4 +13669,4 @@ type SectionProps = ComponentProps<typeof SectionStyled> & {
|
|
|
12169
13669
|
};
|
|
12170
13670
|
declare function Section({ children, ...props }: SectionProps): react_jsx_runtime.JSX.Element;
|
|
12171
13671
|
|
|
12172
|
-
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, CheckboxGroup, type CheckboxGroupProps, CheckboxGroupStyled, CheckboxItem, type CheckboxItemProps, Container, type ContainerProps, ContainerStyled, DropdownMenu, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuProps, Filter, FilterItem, type FilterItemProps, type FilterProps, Flex, type FlexProps, FlexStyled, Grid, type GridProps, GridStyled, Icon, Modal, ModalContentStyled, type ModalProps, ModalStyled, ModalTitleStyled, RadioGroup, type RadioGroupProps, RadioGroupStyled, RadioItem, type RadioItemProps, Section, type SectionProps, SectionStyled, Step, StepContent, StepList, type StepProps, StepStyled, StepTrigger, StepWrapper, Switch, type SwitchProps, SwitchStyled, Text, TextField, type TextFieldProps, TextFieldSlot, type TextFieldSlotProps, TextFieldSlotStyled, TextFieldStyled, type TextProps, TextStyle, TimePicker, TimePickerDropdownStyled, TimePickerFooterStyled, type TimePickerProps, TimePickerStyled, TimerPickerContentStyled };
|
|
13672
|
+
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, CardContainer, type CardProps, CardStyled, CheckboxGroup, type CheckboxGroupProps, CheckboxGroupStyled, CheckboxItem, type CheckboxItemProps, Container, type ContainerProps, ContainerStyled, DropdownMenu, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuProps, Filter, FilterItem, type FilterItemProps, type FilterProps, Flex, type FlexProps, FlexStyled, Grid, type GridProps, GridStyled, Icon, InputStyled, Modal, ModalContentStyled, type ModalProps, ModalStyled, ModalTitleStyled, RadioGroup, type RadioGroupProps, RadioGroupStyled, RadioItem, type RadioItemProps, Section, type SectionProps, SectionStyled, Step, StepContent, StepList, type StepProps, StepStyled, StepTrigger, StepWrapper, Switch, type SwitchProps, SwitchStyled, Text, TextField, type TextFieldProps, TextFieldSlot, type TextFieldSlotProps, TextFieldSlotStyled, TextFieldStyled, type TextProps, TextStyle, TextareaField, type TextareaFieldProps, TextareaFieldStyle, TimePicker, TimePickerDropdownStyled, TimePickerFooterStyled, type TimePickerProps, TimePickerStyled, TimerPickerContentStyled, maskFormat, maskUnformat };
|