@mirohq/design-system-stitches 2.2.3 → 2.2.4
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/dist/types.d.ts +426 -422
- package/package.json +3 -3
package/dist/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import React__default, { ElementType, ComponentPropsWithRef, ComponentType } from 'react';
|
|
2
|
+
import React__default, { ElementType, PropsWithChildren, ComponentPropsWithRef, ComponentType } from 'react';
|
|
3
3
|
import { CSS as CSS$1, VariantProps } from '@stitches/react';
|
|
4
4
|
import { OnlyHTMLAttributes } from '@mirohq/design-system-types';
|
|
5
5
|
import * as _stitches_react_types_styled_component from '@stitches/react/types/styled-component';
|
|
@@ -953,7 +953,7 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
953
953
|
className: string;
|
|
954
954
|
selector: string;
|
|
955
955
|
} & (Argument0 extends string ? _stitches_react_types_stitches.ThemeTokens<Argument1, ""> : _stitches_react_types_stitches.ThemeTokens<Argument0, "">);
|
|
956
|
-
declare const css: <Composers extends (string | _stitches_react_types_util.Function | React.
|
|
956
|
+
declare const css: <Composers extends (string | _stitches_react_types_util.Function | React.JSXElementConstructor<any> | React.ExoticComponent<any> | {
|
|
957
957
|
[name: string]: unknown;
|
|
958
958
|
})[], CSS = CSSUtil.CSS<{}, {
|
|
959
959
|
'border-widths': {
|
|
@@ -1382,7 +1382,7 @@ declare const css: <Composers extends (string | _stitches_react_types_util.Funct
|
|
|
1382
1382
|
readonly [CSSUtil.$$PropertyValue]: "width";
|
|
1383
1383
|
};
|
|
1384
1384
|
};
|
|
1385
|
-
}>>(...composers: { [K in keyof Composers]: string extends Composers[K] ? Composers[K] : Composers[K] extends string | _stitches_react_types_util.Function | React.
|
|
1385
|
+
}>>(...composers: { [K in keyof Composers]: string extends Composers[K] ? Composers[K] : Composers[K] extends string | _stitches_react_types_util.Function | React.JSXElementConstructor<any> | React.ExoticComponent<any> ? Composers[K] : _stitches_react_types_stitches.RemoveIndex<CSS> & {
|
|
1386
1386
|
variants?: {
|
|
1387
1387
|
[x: string]: {
|
|
1388
1388
|
[x: string]: CSS;
|
|
@@ -2694,14 +2694,14 @@ declare type FontFace = CSSUtil.Native.AtRule.FontFace;
|
|
|
2694
2694
|
declare const fontFace: (...fonts: FontFace[]) => string;
|
|
2695
2695
|
|
|
2696
2696
|
declare type ForbiddenProps = 'className' | 'style' | 'as';
|
|
2697
|
-
declare type AllowedProps = 'css' | 'asChild' | 'UNSAFE_style';
|
|
2697
|
+
declare type AllowedProps = 'css' | 'asChild' | 'UNSAFE_style' | 'children';
|
|
2698
2698
|
declare type SafeProps<T> = Omit<T, ForbiddenProps>;
|
|
2699
2699
|
declare type CSS = CSS$1<typeof config>;
|
|
2700
2700
|
/**
|
|
2701
2701
|
* Build a type with all props from a element and Stitches CSS keys
|
|
2702
2702
|
* and remove dangerous attributes that could cause styles issues
|
|
2703
2703
|
*/
|
|
2704
|
-
declare type StyledComponentProps<Element extends ElementType> = SafeProps<ComponentPropsWithRef<Element
|
|
2704
|
+
declare type StyledComponentProps<Element extends ElementType> = PropsWithChildren<SafeProps<ComponentPropsWithRef<Element>>>;
|
|
2705
2705
|
/**
|
|
2706
2706
|
* Filter out all non-html props and forbidden attributes from the extended component.
|
|
2707
2707
|
*
|
|
@@ -2900,440 +2900,444 @@ interface CustomStylesProps {
|
|
|
2900
2900
|
css?: CSS;
|
|
2901
2901
|
UNSAFE_style?: CSS;
|
|
2902
2902
|
}
|
|
2903
|
-
declare const styled: <Element_1 extends _stitches_react_types_util.Function | keyof JSX.IntrinsicElements | React__default.ComponentType<any> = "span", Composers extends string | _stitches_react_types_util.Function | React__default.
|
|
2903
|
+
declare const styled: <Element_1 extends _stitches_react_types_util.Function | keyof JSX.IntrinsicElements | React__default.ComponentType<any> = "span", Composers extends string | _stitches_react_types_util.Function | React__default.JSXElementConstructor<any> | React__default.ExoticComponent<any> | {
|
|
2904
2904
|
[name: string]: unknown;
|
|
2905
2905
|
} = {}>(element: Element_1, composers?: Styles<Composers> | undefined) => React__default.ForwardRefExoticComponent<React__default.PropsWithoutRef<Omit<StyledComponentProps$1<[Composers]>, keyof (typeof $$StyledComponentProps extends keyof Composers ? Composers[keyof Composers & typeof $$StyledComponentProps] : Composers extends {
|
|
2906
2906
|
variants: {
|
|
2907
2907
|
[name: string]: unknown;
|
|
2908
2908
|
};
|
|
2909
|
-
} ? Composers["variants"] extends infer T ? { [K in keyof T]?: _stitches_react_types_util.Widen<keyof Composers["variants"][K]> | undefined; } : never : {})> & TransformProps<StyledComponentProps$1<[Composers]>, {}> &
|
|
2910
|
-
|
|
2911
|
-
|
|
2912
|
-
|
|
2913
|
-
|
|
2914
|
-
|
|
2915
|
-
|
|
2916
|
-
|
|
2917
|
-
|
|
2918
|
-
|
|
2919
|
-
|
|
2920
|
-
|
|
2921
|
-
|
|
2922
|
-
|
|
2923
|
-
|
|
2924
|
-
|
|
2925
|
-
|
|
2926
|
-
|
|
2927
|
-
|
|
2928
|
-
|
|
2929
|
-
|
|
2930
|
-
|
|
2931
|
-
|
|
2932
|
-
|
|
2933
|
-
|
|
2934
|
-
|
|
2935
|
-
|
|
2936
|
-
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
|
|
2940
|
-
|
|
2941
|
-
|
|
2942
|
-
|
|
2943
|
-
|
|
2944
|
-
|
|
2945
|
-
|
|
2946
|
-
|
|
2947
|
-
|
|
2948
|
-
|
|
2949
|
-
|
|
2950
|
-
|
|
2951
|
-
|
|
2952
|
-
|
|
2953
|
-
|
|
2954
|
-
|
|
2955
|
-
|
|
2956
|
-
|
|
2957
|
-
|
|
2958
|
-
|
|
2959
|
-
|
|
2960
|
-
|
|
2961
|
-
|
|
2962
|
-
|
|
2963
|
-
|
|
2964
|
-
|
|
2965
|
-
|
|
2966
|
-
|
|
2967
|
-
|
|
2968
|
-
|
|
2969
|
-
|
|
2970
|
-
|
|
2971
|
-
|
|
2972
|
-
|
|
2973
|
-
|
|
2974
|
-
|
|
2975
|
-
|
|
2976
|
-
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
|
|
2980
|
-
|
|
2981
|
-
|
|
2982
|
-
|
|
2983
|
-
|
|
2984
|
-
|
|
2985
|
-
|
|
2986
|
-
|
|
2987
|
-
|
|
2988
|
-
|
|
2989
|
-
|
|
2990
|
-
|
|
2991
|
-
|
|
2992
|
-
|
|
2993
|
-
|
|
2994
|
-
|
|
2995
|
-
|
|
2996
|
-
|
|
2997
|
-
|
|
2998
|
-
|
|
2999
|
-
|
|
3000
|
-
|
|
3001
|
-
|
|
3002
|
-
|
|
3003
|
-
|
|
3004
|
-
|
|
3005
|
-
|
|
3006
|
-
|
|
3007
|
-
|
|
3008
|
-
|
|
3009
|
-
|
|
3010
|
-
|
|
3011
|
-
|
|
3012
|
-
|
|
3013
|
-
|
|
3014
|
-
|
|
3015
|
-
|
|
3016
|
-
|
|
3017
|
-
|
|
3018
|
-
|
|
3019
|
-
|
|
3020
|
-
|
|
3021
|
-
|
|
3022
|
-
|
|
3023
|
-
|
|
3024
|
-
|
|
3025
|
-
|
|
3026
|
-
|
|
3027
|
-
|
|
3028
|
-
|
|
3029
|
-
|
|
3030
|
-
|
|
3031
|
-
|
|
3032
|
-
|
|
3033
|
-
|
|
3034
|
-
|
|
3035
|
-
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
|
|
3039
|
-
|
|
3040
|
-
|
|
3041
|
-
|
|
3042
|
-
|
|
3043
|
-
|
|
3044
|
-
|
|
3045
|
-
|
|
3046
|
-
|
|
3047
|
-
|
|
3048
|
-
|
|
3049
|
-
|
|
3050
|
-
|
|
3051
|
-
|
|
3052
|
-
|
|
3053
|
-
|
|
3054
|
-
|
|
3055
|
-
|
|
3056
|
-
|
|
3057
|
-
|
|
3058
|
-
|
|
3059
|
-
|
|
3060
|
-
|
|
3061
|
-
|
|
3062
|
-
|
|
3063
|
-
|
|
3064
|
-
|
|
3065
|
-
|
|
3066
|
-
|
|
3067
|
-
|
|
3068
|
-
|
|
3069
|
-
|
|
3070
|
-
|
|
3071
|
-
|
|
3072
|
-
|
|
3073
|
-
|
|
3074
|
-
|
|
3075
|
-
|
|
3076
|
-
|
|
3077
|
-
|
|
3078
|
-
|
|
3079
|
-
|
|
3080
|
-
|
|
3081
|
-
|
|
3082
|
-
|
|
3083
|
-
|
|
3084
|
-
|
|
3085
|
-
|
|
3086
|
-
|
|
3087
|
-
|
|
3088
|
-
|
|
3089
|
-
|
|
3090
|
-
|
|
3091
|
-
|
|
3092
|
-
|
|
3093
|
-
|
|
3094
|
-
|
|
3095
|
-
|
|
3096
|
-
|
|
3097
|
-
space: {
|
|
3098
|
-
readonly none: 0;
|
|
3099
|
-
readonly 50: "4px";
|
|
3100
|
-
readonly 100: "8px";
|
|
3101
|
-
readonly 150: "12px";
|
|
3102
|
-
readonly 200: "16px";
|
|
3103
|
-
readonly 300: "24px";
|
|
3104
|
-
readonly 400: "32px";
|
|
3105
|
-
readonly 500: "64px";
|
|
3106
|
-
readonly 600: "48px";
|
|
3107
|
-
readonly 800: "64px";
|
|
3108
|
-
readonly 1200: "96px";
|
|
3109
|
-
readonly 1600: "128px";
|
|
3110
|
-
};
|
|
3111
|
-
'space-gap': {
|
|
3112
|
-
readonly none: any;
|
|
3113
|
-
readonly 50: any;
|
|
3114
|
-
readonly 100: any;
|
|
3115
|
-
readonly 200: any;
|
|
3116
|
-
readonly 300: any;
|
|
3117
|
-
};
|
|
3118
|
-
'space-inset': {
|
|
3119
|
-
readonly none: any;
|
|
3120
|
-
readonly 50: any;
|
|
3121
|
-
readonly 100: any;
|
|
3122
|
-
readonly 150: any;
|
|
3123
|
-
readonly 200: any;
|
|
3124
|
-
readonly 300: any;
|
|
3125
|
-
readonly 400: any;
|
|
3126
|
-
readonly 600: any;
|
|
3127
|
-
readonly 800: any;
|
|
3128
|
-
readonly 1200: any;
|
|
3129
|
-
readonly 1600: any;
|
|
3130
|
-
};
|
|
3131
|
-
'space-offset': {
|
|
3132
|
-
readonly none: any;
|
|
3133
|
-
readonly 50: any;
|
|
3134
|
-
readonly 100: any;
|
|
3135
|
-
readonly 150: any;
|
|
3136
|
-
readonly 200: any;
|
|
3137
|
-
readonly 300: any;
|
|
3138
|
-
readonly 400: any;
|
|
3139
|
-
readonly 600: any;
|
|
3140
|
-
readonly 800: any;
|
|
3141
|
-
readonly 1200: any;
|
|
3142
|
-
readonly 1600: any;
|
|
3143
|
-
readonly 'stacking-none': any;
|
|
3144
|
-
readonly 'stacking-100': any;
|
|
3145
|
-
readonly 'stacking-200': any;
|
|
3146
|
-
readonly 'stacking-300': any;
|
|
3147
|
-
readonly 'stacking-400': any;
|
|
3148
|
-
readonly 'stacking-500': any;
|
|
3149
|
-
readonly 'stacking-800': any;
|
|
3150
|
-
};
|
|
3151
|
-
'z-indices': {
|
|
3152
|
-
readonly dropdownMenu: 100;
|
|
3153
|
-
readonly popover: 200;
|
|
3154
|
-
readonly tooltip: 300;
|
|
3155
|
-
};
|
|
3156
|
-
}, {
|
|
3157
|
-
readonly background: "colors";
|
|
3158
|
-
readonly backgroundColor: "colors";
|
|
3159
|
-
readonly backgroundImage: "colors";
|
|
3160
|
-
readonly blockSize: "sizes";
|
|
3161
|
-
readonly border: "colors";
|
|
3162
|
-
readonly borderBlock: "colors";
|
|
3163
|
-
readonly borderBlockEnd: "colors";
|
|
3164
|
-
readonly borderBlockStart: "colors";
|
|
3165
|
-
readonly borderBottom: "colors";
|
|
3166
|
-
readonly borderBottomColor: "colors";
|
|
3167
|
-
readonly borderBottomLeftRadius: "radii";
|
|
3168
|
-
readonly borderBottomRightRadius: "radii";
|
|
3169
|
-
readonly borderBottomStyle: "border-styles";
|
|
3170
|
-
readonly borderBottomWidth: "border-widths";
|
|
3171
|
-
readonly borderColor: "colors";
|
|
3172
|
-
readonly borderImage: "colors";
|
|
3173
|
-
readonly borderInline: "colors";
|
|
3174
|
-
readonly borderInlineEnd: "colors";
|
|
3175
|
-
readonly borderInlineStart: "colors";
|
|
3176
|
-
readonly borderLeft: "colors";
|
|
3177
|
-
readonly borderLeftColor: "colors";
|
|
3178
|
-
readonly borderLeftStyle: "border-styles";
|
|
3179
|
-
readonly borderLeftWidth: "border-widths";
|
|
3180
|
-
readonly borderRadius: "radii";
|
|
3181
|
-
readonly borderRight: "colors";
|
|
3182
|
-
readonly borderRightColor: "colors";
|
|
3183
|
-
readonly borderRightStyle: "border-styles";
|
|
3184
|
-
readonly borderRightWidth: "border-widths";
|
|
3185
|
-
readonly borderStyle: "border-styles";
|
|
3186
|
-
readonly borderTop: "colors";
|
|
3187
|
-
readonly borderTopColor: "colors";
|
|
3188
|
-
readonly borderTopLeftRadius: "radii";
|
|
3189
|
-
readonly borderTopRightRadius: "radii";
|
|
3190
|
-
readonly borderTopStyle: "border-styles";
|
|
3191
|
-
readonly borderTopWidth: "border-widths";
|
|
3192
|
-
readonly borderWidth: "border-widths";
|
|
3193
|
-
readonly bottom: "space";
|
|
3194
|
-
readonly boxShadow: "shadows";
|
|
3195
|
-
readonly caretColor: "colors";
|
|
3196
|
-
readonly color: "colors";
|
|
3197
|
-
readonly columnGap: "space-gap";
|
|
3198
|
-
readonly columnRuleColor: "colors";
|
|
3199
|
-
readonly fill: "colors";
|
|
3200
|
-
readonly flexBasis: "sizes";
|
|
3201
|
-
readonly fontFamily: "fonts";
|
|
3202
|
-
readonly fontSize: "font-sizes";
|
|
3203
|
-
readonly fontWeight: "font-weights";
|
|
3204
|
-
readonly gap: "space-gap";
|
|
3205
|
-
readonly gridColumnGap: "space-gap";
|
|
3206
|
-
readonly gridGap: "space-gap";
|
|
3207
|
-
readonly gridRowGap: "space-gap";
|
|
3208
|
-
readonly gridTemplateColumns: "sizes";
|
|
3209
|
-
readonly gridTemplateRows: "sizes";
|
|
3210
|
-
readonly height: "sizes";
|
|
3211
|
-
readonly inlineSize: "sizes";
|
|
3212
|
-
readonly inset: "space-inset";
|
|
3213
|
-
readonly insetBlock: "space-inset";
|
|
3214
|
-
readonly insetBlockEnd: "space-inset";
|
|
3215
|
-
readonly insetBlockStart: "space-inset";
|
|
3216
|
-
readonly insetInline: "space-inset";
|
|
3217
|
-
readonly insetInlineEnd: "space-inset";
|
|
3218
|
-
readonly insetInlineStart: "space-inset";
|
|
3219
|
-
readonly left: "space";
|
|
3220
|
-
readonly letterSpacing: "letter-spacings";
|
|
3221
|
-
readonly lineHeight: "line-heights";
|
|
3222
|
-
readonly margin: "space-offset";
|
|
3223
|
-
readonly marginBlock: "space-offset";
|
|
3224
|
-
readonly marginBlockEnd: "space-offset";
|
|
3225
|
-
readonly marginBlockStart: "space-offset";
|
|
3226
|
-
readonly marginBottom: "space-offset";
|
|
3227
|
-
readonly marginInline: "space-offset";
|
|
3228
|
-
readonly marginInlineEnd: "space-offset";
|
|
3229
|
-
readonly marginInlineStart: "space-offset";
|
|
3230
|
-
readonly marginLeft: "space-offset";
|
|
3231
|
-
readonly marginRight: "space-offset";
|
|
3232
|
-
readonly marginTop: "space-offset";
|
|
3233
|
-
readonly maxBlockSize: "sizes";
|
|
3234
|
-
readonly maxHeight: "sizes";
|
|
3235
|
-
readonly maxInlineSize: "sizes";
|
|
3236
|
-
readonly maxWidth: "sizes";
|
|
3237
|
-
readonly minBlockSize: "sizes";
|
|
3238
|
-
readonly minHeight: "sizes";
|
|
3239
|
-
readonly minInlineSize: "sizes";
|
|
3240
|
-
readonly minWidth: "sizes";
|
|
3241
|
-
readonly outline: "colors";
|
|
3242
|
-
readonly outlineColor: "colors";
|
|
3243
|
-
readonly padding: "space-inset";
|
|
3244
|
-
readonly paddingBlock: "space-inset";
|
|
3245
|
-
readonly paddingBlockEnd: "space-inset";
|
|
3246
|
-
readonly paddingBlockStart: "space-inset";
|
|
3247
|
-
readonly paddingBottom: "space-inset";
|
|
3248
|
-
readonly paddingInline: "space-inset";
|
|
3249
|
-
readonly paddingInlineEnd: "space-inset";
|
|
3250
|
-
readonly paddingInlineStart: "space-inset";
|
|
3251
|
-
readonly paddingLeft: "space-inset";
|
|
3252
|
-
readonly paddingRight: "space-inset";
|
|
3253
|
-
readonly paddingTop: "space-inset";
|
|
3254
|
-
readonly right: "space";
|
|
3255
|
-
readonly rowGap: "space-gap";
|
|
3256
|
-
readonly scrollMargin: "space-offset";
|
|
3257
|
-
readonly scrollMarginBlock: "space-offset";
|
|
3258
|
-
readonly scrollMarginBlockEnd: "space-offset";
|
|
3259
|
-
readonly scrollMarginBlockStart: "space-offset";
|
|
3260
|
-
readonly scrollMarginBottom: "space-offset";
|
|
3261
|
-
readonly scrollMarginInline: "space-offset";
|
|
3262
|
-
readonly scrollMarginInlineEnd: "space-offset";
|
|
3263
|
-
readonly scrollMarginInlineStart: "space-offset";
|
|
3264
|
-
readonly scrollMarginLeft: "space-offset";
|
|
3265
|
-
readonly scrollMarginRight: "space-offset";
|
|
3266
|
-
readonly scrollMarginTop: "space-offset";
|
|
3267
|
-
readonly scrollPadding: "space-inset";
|
|
3268
|
-
readonly scrollPaddingBlock: "space-inset";
|
|
3269
|
-
readonly scrollPaddingBlockEnd: "space-inset";
|
|
3270
|
-
readonly scrollPaddingBlockStart: "space-inset";
|
|
3271
|
-
readonly scrollPaddingBottom: "space-inset";
|
|
3272
|
-
readonly scrollPaddingInline: "space-inset";
|
|
3273
|
-
readonly scrollPaddingInlineEnd: "space-inset";
|
|
3274
|
-
readonly scrollPaddingInlineStart: "space-inset";
|
|
3275
|
-
readonly scrollPaddingLeft: "space-inset";
|
|
3276
|
-
readonly scrollPaddingRight: "space-inset";
|
|
3277
|
-
readonly scrollPaddingTop: "space-inset";
|
|
3278
|
-
readonly stroke: "colors";
|
|
3279
|
-
readonly textDecorationColor: "colors";
|
|
3280
|
-
readonly textShadow: "shadows";
|
|
3281
|
-
readonly top: "space";
|
|
3282
|
-
readonly transition: "transitions";
|
|
3283
|
-
readonly width: "sizes";
|
|
3284
|
-
readonly zIndex: "z-indices";
|
|
3285
|
-
}, {
|
|
3286
|
-
paddingX: (value: {
|
|
3287
|
-
readonly [$$PropertyValue]: "padding";
|
|
3288
|
-
}) => {
|
|
3289
|
-
paddingLeft: {
|
|
3290
|
-
readonly [$$PropertyValue]: "padding";
|
|
2909
|
+
} ? Composers["variants"] extends infer T ? { [K in keyof T]?: _stitches_react_types_util.Widen<keyof Composers["variants"][K]> | undefined; } : never : {})> & TransformProps<StyledComponentProps$1<[Composers]>, {}> & SafeProps<React__default.PropsWithRef<_stitches_react_types_util.Assign<Element_1 extends keyof JSX.IntrinsicElements | React__default.ComponentType<any> ? React__default.ComponentPropsWithRef<Element_1> : never, TransformProps<{}, {}> & {
|
|
2910
|
+
css?: CSSUtil.CSS<{}, {
|
|
2911
|
+
'border-widths': {
|
|
2912
|
+
readonly none: 0;
|
|
2913
|
+
readonly sm: "1px";
|
|
2914
|
+
readonly md: "2px";
|
|
2915
|
+
readonly lg: "4px";
|
|
2916
|
+
};
|
|
2917
|
+
colors: {
|
|
2918
|
+
readonly 'blue-100': any;
|
|
2919
|
+
readonly 'blue-200': any;
|
|
2920
|
+
readonly 'blue-300': any;
|
|
2921
|
+
readonly 'blue-400': any;
|
|
2922
|
+
readonly 'blue-500': any;
|
|
2923
|
+
readonly 'blue-600': any;
|
|
2924
|
+
readonly 'blue-700': any;
|
|
2925
|
+
readonly 'blue-800': any;
|
|
2926
|
+
readonly 'blue-900': any;
|
|
2927
|
+
readonly 'blue-1000': any;
|
|
2928
|
+
readonly 'gray-100': any;
|
|
2929
|
+
readonly 'gray-200': any;
|
|
2930
|
+
readonly 'gray-300': any;
|
|
2931
|
+
readonly 'gray-400': any;
|
|
2932
|
+
readonly 'gray-500': any;
|
|
2933
|
+
readonly 'gray-600': any;
|
|
2934
|
+
readonly 'gray-700': any;
|
|
2935
|
+
readonly 'gray-800': any;
|
|
2936
|
+
readonly 'gray-900': any;
|
|
2937
|
+
readonly 'indigo-100': any;
|
|
2938
|
+
readonly 'indigo-200': any;
|
|
2939
|
+
readonly 'indigo-300': any;
|
|
2940
|
+
readonly 'indigo-400': any;
|
|
2941
|
+
readonly 'indigo-500': any;
|
|
2942
|
+
readonly 'indigo-600': any;
|
|
2943
|
+
readonly 'indigo-700': any;
|
|
2944
|
+
readonly 'indigo-800': any;
|
|
2945
|
+
readonly 'indigo-900': any;
|
|
2946
|
+
readonly 'red-100': any;
|
|
2947
|
+
readonly 'red-200': any;
|
|
2948
|
+
readonly 'red-300': any;
|
|
2949
|
+
readonly 'red-400': any;
|
|
2950
|
+
readonly 'red-500': any;
|
|
2951
|
+
readonly 'red-600': any;
|
|
2952
|
+
readonly 'red-700': any;
|
|
2953
|
+
readonly 'red-800': any;
|
|
2954
|
+
readonly 'red-900': any;
|
|
2955
|
+
readonly 'yellow-100': any;
|
|
2956
|
+
readonly 'yellow-200': any;
|
|
2957
|
+
readonly 'yellow-300': any;
|
|
2958
|
+
readonly 'yellow-400': any;
|
|
2959
|
+
readonly 'yellow-500': any;
|
|
2960
|
+
readonly 'yellow-600': any;
|
|
2961
|
+
readonly 'yellow-700': any;
|
|
2962
|
+
readonly 'yellow-800': any;
|
|
2963
|
+
readonly 'yellow-900': any;
|
|
2964
|
+
readonly 'green-100': any;
|
|
2965
|
+
readonly 'green-200': any;
|
|
2966
|
+
readonly 'green-300': any;
|
|
2967
|
+
readonly 'green-400': any;
|
|
2968
|
+
readonly 'green-500': any;
|
|
2969
|
+
readonly 'green-600': any;
|
|
2970
|
+
readonly 'green-700': any;
|
|
2971
|
+
readonly 'green-800': any;
|
|
2972
|
+
readonly 'green-900': any;
|
|
2973
|
+
readonly black: any;
|
|
2974
|
+
readonly white: any;
|
|
2975
|
+
readonly transparent: any;
|
|
2976
|
+
readonly 'background-neutrals'?: any;
|
|
2977
|
+
readonly 'background-neutrals-body'?: any;
|
|
2978
|
+
readonly 'background-neutrals-container'?: any;
|
|
2979
|
+
readonly 'background-neutrals-inverted'?: any;
|
|
2980
|
+
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
2981
|
+
readonly 'background-neutrals-subtle'?: any;
|
|
2982
|
+
readonly 'background-neutrals-subtle-hover'?: any;
|
|
2983
|
+
readonly 'background-neutrals-subtle-active'?: any;
|
|
2984
|
+
readonly 'background-neutrals-disabled'?: any;
|
|
2985
|
+
readonly 'background-neutrals-controls-disabled'?: any;
|
|
2986
|
+
readonly 'background-neutrals-scrolls'?: any;
|
|
2987
|
+
readonly 'background-neutrals-inactive'?: any;
|
|
2988
|
+
readonly 'background-neutrals-inactive-hover'?: any;
|
|
2989
|
+
readonly 'background-primary-prominent'?: any;
|
|
2990
|
+
readonly 'background-primary-prominent-hover'?: any;
|
|
2991
|
+
readonly 'background-primary-prominent-active'?: any;
|
|
2992
|
+
readonly 'background-primary-prominent-selected'?: any;
|
|
2993
|
+
readonly 'background-primary-subtle'?: any;
|
|
2994
|
+
readonly 'background-primary-subtle-hover'?: any;
|
|
2995
|
+
readonly 'background-primary-subtle-active'?: any;
|
|
2996
|
+
readonly 'background-primary-subtle-selected'?: any;
|
|
2997
|
+
readonly 'background-danger-prominent'?: any;
|
|
2998
|
+
readonly 'background-danger-prominent-hover'?: any;
|
|
2999
|
+
readonly 'background-danger-prominent-active'?: any;
|
|
3000
|
+
readonly 'background-danger'?: any;
|
|
3001
|
+
readonly 'background-danger-hover'?: any;
|
|
3002
|
+
readonly 'background-success'?: any;
|
|
3003
|
+
readonly 'background-warning-subtle'?: any;
|
|
3004
|
+
readonly 'background-warning-prominent'?: any;
|
|
3005
|
+
readonly 'text-neutrals-inverted'?: any;
|
|
3006
|
+
readonly 'text-neutrals'?: any;
|
|
3007
|
+
readonly 'text-neutrals-subtle'?: any;
|
|
3008
|
+
readonly 'text-neutrals-placeholder-only'?: any;
|
|
3009
|
+
readonly 'text-neutrals-placeholder'?: any;
|
|
3010
|
+
readonly 'text-neutrals-disabled'?: any;
|
|
3011
|
+
readonly 'text-primary-inverted'?: any;
|
|
3012
|
+
readonly 'text-primary'?: any;
|
|
3013
|
+
readonly 'text-primary-hover'?: any;
|
|
3014
|
+
readonly 'text-primary-active'?: any;
|
|
3015
|
+
readonly 'text-primary-selected'?: any;
|
|
3016
|
+
readonly 'text-primary-inverted-subtle'?: any;
|
|
3017
|
+
readonly 'text-danger-inverted'?: any;
|
|
3018
|
+
readonly 'text-danger'?: any;
|
|
3019
|
+
readonly 'text-danger-hover'?: any;
|
|
3020
|
+
readonly 'text-danger-active'?: any;
|
|
3021
|
+
readonly 'text-success'?: any;
|
|
3022
|
+
readonly 'text-warning'?: any;
|
|
3023
|
+
readonly 'icon-neutrals-inverted'?: any;
|
|
3024
|
+
readonly 'icon-neutrals'?: any;
|
|
3025
|
+
readonly 'icon-neutrals-with-text'?: any;
|
|
3026
|
+
readonly 'icon-neutrals-subtle'?: any;
|
|
3027
|
+
readonly 'icon-neutrals-disabled'?: any;
|
|
3028
|
+
readonly 'icon-neutrals-search'?: any;
|
|
3029
|
+
readonly 'icon-neutrals-inactive'?: any;
|
|
3030
|
+
readonly 'icon-neutrals-inactive-hover'?: any;
|
|
3031
|
+
readonly 'icon-primary-inverted'?: any;
|
|
3032
|
+
readonly 'icon-primary'?: any;
|
|
3033
|
+
readonly 'icon-primary-hover'?: any;
|
|
3034
|
+
readonly 'icon-primary-active'?: any;
|
|
3035
|
+
readonly 'icon-primary-selected'?: any;
|
|
3036
|
+
readonly 'icon-danger-inverted'?: any;
|
|
3037
|
+
readonly 'icon-danger'?: any;
|
|
3038
|
+
readonly 'icon-danger-hover'?: any;
|
|
3039
|
+
readonly 'icon-danger-active'?: any;
|
|
3040
|
+
readonly 'icon-success-inverted'?: any;
|
|
3041
|
+
readonly 'icon-success'?: any;
|
|
3042
|
+
readonly 'icon-warning'?: any;
|
|
3043
|
+
readonly 'border-focus-outer'?: any;
|
|
3044
|
+
readonly 'border-focus-middle'?: any;
|
|
3045
|
+
readonly 'border-focus-inner'?: any;
|
|
3046
|
+
readonly 'border-neutrals'?: any;
|
|
3047
|
+
readonly 'border-neutrals-hover'?: any;
|
|
3048
|
+
readonly 'border-neutrals-active'?: any;
|
|
3049
|
+
readonly 'border-neutrals-disabled'?: any;
|
|
3050
|
+
readonly 'border-neutrals-controls'?: any;
|
|
3051
|
+
readonly 'border-neutrals-controls-disabled'?: any;
|
|
3052
|
+
readonly 'border-neutrals-subtle'?: any;
|
|
3053
|
+
readonly 'border-neutrals-inverted'?: any;
|
|
3054
|
+
readonly 'border-primary'?: any;
|
|
3055
|
+
readonly 'border-primary-hover'?: any;
|
|
3056
|
+
readonly 'border-primary-active'?: any;
|
|
3057
|
+
readonly 'border-primary-inverted'?: any;
|
|
3058
|
+
readonly 'border-danger'?: any;
|
|
3059
|
+
readonly 'border-success'?: any;
|
|
3060
|
+
readonly 'border-warning'?: any;
|
|
3061
|
+
};
|
|
3062
|
+
'font-sizes': {
|
|
3063
|
+
readonly 150: "0.75rem";
|
|
3064
|
+
readonly 175: "0.875rem";
|
|
3065
|
+
readonly 200: "1rem";
|
|
3066
|
+
readonly 225: "1.125rem";
|
|
3067
|
+
readonly 250: "1.25rem";
|
|
3068
|
+
readonly 300: "1.5rem";
|
|
3069
|
+
readonly 400: "2rem";
|
|
3070
|
+
readonly 500: "2.5rem";
|
|
3071
|
+
readonly 600: "3rem";
|
|
3072
|
+
readonly 800: "4rem";
|
|
3073
|
+
readonly 900: "4.5rem";
|
|
3074
|
+
};
|
|
3075
|
+
radii: {
|
|
3076
|
+
readonly none: 0;
|
|
3077
|
+
readonly half: "999em";
|
|
3078
|
+
readonly 25: "2px";
|
|
3079
|
+
readonly 50: "4px";
|
|
3080
|
+
readonly 75: "6px";
|
|
3081
|
+
readonly 100: "8px";
|
|
3082
|
+
readonly 200: "16px";
|
|
3083
|
+
};
|
|
3084
|
+
shadows: {
|
|
3085
|
+
readonly 50: "0 4px 16px #05003812";
|
|
3086
|
+
readonly 100: "0 8px 32px #05003808";
|
|
3087
|
+
readonly 'focus-small': "0 0 0 2px $colors$border-focus-outer, inset 0 0 0 2px $colors$border-focus-middle, inset 0 0 0 3px $colors$border-focus-inner";
|
|
3088
|
+
readonly 'focus-small-outline': "0 0 0 2px $colors$border-focus-outer, inset 0 0 0 1px $colors$border-focus-middle, inset 0 0 0 2px $colors$border-focus-inner";
|
|
3089
|
+
readonly 'focus-large': "0 0 0 4px $colors$border-focus-inner, inset 0 0 0 2px $colors$border-focus-middle, inset 0 0 0 3px $colors$border-focus-outer";
|
|
3090
|
+
readonly 'focus-controls': "0 0 0 1px $colors$border-focus-inner, 0 0 0 3px $colors$border-focus-middle, 0 0 0 5px $colors$border-focus-outer";
|
|
3091
|
+
};
|
|
3092
|
+
sizes: {
|
|
3093
|
+
readonly number: string;
|
|
3094
|
+
readonly 'icon-200': "16px";
|
|
3095
|
+
readonly 'icon-300': "24px";
|
|
3096
|
+
readonly 'icon-400': "32px";
|
|
3291
3097
|
};
|
|
3292
|
-
|
|
3293
|
-
readonly
|
|
3098
|
+
space: {
|
|
3099
|
+
readonly none: 0;
|
|
3100
|
+
readonly 50: "4px";
|
|
3101
|
+
readonly 100: "8px";
|
|
3102
|
+
readonly 150: "12px";
|
|
3103
|
+
readonly 200: "16px";
|
|
3104
|
+
readonly 300: "24px";
|
|
3105
|
+
readonly 400: "32px";
|
|
3106
|
+
readonly 500: "64px";
|
|
3107
|
+
readonly 600: "48px";
|
|
3108
|
+
readonly 800: "64px";
|
|
3109
|
+
readonly 1200: "96px";
|
|
3110
|
+
readonly 1600: "128px";
|
|
3294
3111
|
};
|
|
3295
|
-
|
|
3296
|
-
|
|
3297
|
-
|
|
3298
|
-
|
|
3299
|
-
|
|
3300
|
-
readonly
|
|
3112
|
+
'space-gap': {
|
|
3113
|
+
readonly none: any;
|
|
3114
|
+
readonly 50: any;
|
|
3115
|
+
readonly 100: any;
|
|
3116
|
+
readonly 200: any;
|
|
3117
|
+
readonly 300: any;
|
|
3301
3118
|
};
|
|
3302
|
-
|
|
3303
|
-
readonly
|
|
3119
|
+
'space-inset': {
|
|
3120
|
+
readonly none: any;
|
|
3121
|
+
readonly 50: any;
|
|
3122
|
+
readonly 100: any;
|
|
3123
|
+
readonly 150: any;
|
|
3124
|
+
readonly 200: any;
|
|
3125
|
+
readonly 300: any;
|
|
3126
|
+
readonly 400: any;
|
|
3127
|
+
readonly 600: any;
|
|
3128
|
+
readonly 800: any;
|
|
3129
|
+
readonly 1200: any;
|
|
3130
|
+
readonly 1600: any;
|
|
3304
3131
|
};
|
|
3305
|
-
|
|
3306
|
-
|
|
3307
|
-
|
|
3308
|
-
|
|
3309
|
-
|
|
3310
|
-
readonly
|
|
3132
|
+
'space-offset': {
|
|
3133
|
+
readonly none: any;
|
|
3134
|
+
readonly 50: any;
|
|
3135
|
+
readonly 100: any;
|
|
3136
|
+
readonly 150: any;
|
|
3137
|
+
readonly 200: any;
|
|
3138
|
+
readonly 300: any;
|
|
3139
|
+
readonly 400: any;
|
|
3140
|
+
readonly 600: any;
|
|
3141
|
+
readonly 800: any;
|
|
3142
|
+
readonly 1200: any;
|
|
3143
|
+
readonly 1600: any;
|
|
3144
|
+
readonly 'stacking-none': any;
|
|
3145
|
+
readonly 'stacking-100': any;
|
|
3146
|
+
readonly 'stacking-200': any;
|
|
3147
|
+
readonly 'stacking-300': any;
|
|
3148
|
+
readonly 'stacking-400': any;
|
|
3149
|
+
readonly 'stacking-500': any;
|
|
3150
|
+
readonly 'stacking-800': any;
|
|
3311
3151
|
};
|
|
3312
|
-
|
|
3313
|
-
readonly
|
|
3152
|
+
'z-indices': {
|
|
3153
|
+
readonly dropdownMenu: 100;
|
|
3154
|
+
readonly popover: 200;
|
|
3155
|
+
readonly tooltip: 300;
|
|
3314
3156
|
};
|
|
3315
|
-
}
|
|
3316
|
-
|
|
3317
|
-
readonly
|
|
3318
|
-
|
|
3319
|
-
|
|
3320
|
-
|
|
3157
|
+
}, {
|
|
3158
|
+
readonly background: "colors";
|
|
3159
|
+
readonly backgroundColor: "colors";
|
|
3160
|
+
readonly backgroundImage: "colors";
|
|
3161
|
+
readonly blockSize: "sizes";
|
|
3162
|
+
readonly border: "colors";
|
|
3163
|
+
readonly borderBlock: "colors";
|
|
3164
|
+
readonly borderBlockEnd: "colors";
|
|
3165
|
+
readonly borderBlockStart: "colors";
|
|
3166
|
+
readonly borderBottom: "colors";
|
|
3167
|
+
readonly borderBottomColor: "colors";
|
|
3168
|
+
readonly borderBottomLeftRadius: "radii";
|
|
3169
|
+
readonly borderBottomRightRadius: "radii";
|
|
3170
|
+
readonly borderBottomStyle: "border-styles";
|
|
3171
|
+
readonly borderBottomWidth: "border-widths";
|
|
3172
|
+
readonly borderColor: "colors";
|
|
3173
|
+
readonly borderImage: "colors";
|
|
3174
|
+
readonly borderInline: "colors";
|
|
3175
|
+
readonly borderInlineEnd: "colors";
|
|
3176
|
+
readonly borderInlineStart: "colors";
|
|
3177
|
+
readonly borderLeft: "colors";
|
|
3178
|
+
readonly borderLeftColor: "colors";
|
|
3179
|
+
readonly borderLeftStyle: "border-styles";
|
|
3180
|
+
readonly borderLeftWidth: "border-widths";
|
|
3181
|
+
readonly borderRadius: "radii";
|
|
3182
|
+
readonly borderRight: "colors";
|
|
3183
|
+
readonly borderRightColor: "colors";
|
|
3184
|
+
readonly borderRightStyle: "border-styles";
|
|
3185
|
+
readonly borderRightWidth: "border-widths";
|
|
3186
|
+
readonly borderStyle: "border-styles";
|
|
3187
|
+
readonly borderTop: "colors";
|
|
3188
|
+
readonly borderTopColor: "colors";
|
|
3189
|
+
readonly borderTopLeftRadius: "radii";
|
|
3190
|
+
readonly borderTopRightRadius: "radii";
|
|
3191
|
+
readonly borderTopStyle: "border-styles";
|
|
3192
|
+
readonly borderTopWidth: "border-widths";
|
|
3193
|
+
readonly borderWidth: "border-widths";
|
|
3194
|
+
readonly bottom: "space";
|
|
3195
|
+
readonly boxShadow: "shadows";
|
|
3196
|
+
readonly caretColor: "colors";
|
|
3197
|
+
readonly color: "colors";
|
|
3198
|
+
readonly columnGap: "space-gap";
|
|
3199
|
+
readonly columnRuleColor: "colors";
|
|
3200
|
+
readonly fill: "colors";
|
|
3201
|
+
readonly flexBasis: "sizes";
|
|
3202
|
+
readonly fontFamily: "fonts";
|
|
3203
|
+
readonly fontSize: "font-sizes";
|
|
3204
|
+
readonly fontWeight: "font-weights";
|
|
3205
|
+
readonly gap: "space-gap";
|
|
3206
|
+
readonly gridColumnGap: "space-gap";
|
|
3207
|
+
readonly gridGap: "space-gap";
|
|
3208
|
+
readonly gridRowGap: "space-gap";
|
|
3209
|
+
readonly gridTemplateColumns: "sizes";
|
|
3210
|
+
readonly gridTemplateRows: "sizes";
|
|
3211
|
+
readonly height: "sizes";
|
|
3212
|
+
readonly inlineSize: "sizes";
|
|
3213
|
+
readonly inset: "space-inset";
|
|
3214
|
+
readonly insetBlock: "space-inset";
|
|
3215
|
+
readonly insetBlockEnd: "space-inset";
|
|
3216
|
+
readonly insetBlockStart: "space-inset";
|
|
3217
|
+
readonly insetInline: "space-inset";
|
|
3218
|
+
readonly insetInlineEnd: "space-inset";
|
|
3219
|
+
readonly insetInlineStart: "space-inset";
|
|
3220
|
+
readonly left: "space";
|
|
3221
|
+
readonly letterSpacing: "letter-spacings";
|
|
3222
|
+
readonly lineHeight: "line-heights";
|
|
3223
|
+
readonly margin: "space-offset";
|
|
3224
|
+
readonly marginBlock: "space-offset";
|
|
3225
|
+
readonly marginBlockEnd: "space-offset";
|
|
3226
|
+
readonly marginBlockStart: "space-offset";
|
|
3227
|
+
readonly marginBottom: "space-offset";
|
|
3228
|
+
readonly marginInline: "space-offset";
|
|
3229
|
+
readonly marginInlineEnd: "space-offset";
|
|
3230
|
+
readonly marginInlineStart: "space-offset";
|
|
3231
|
+
readonly marginLeft: "space-offset";
|
|
3232
|
+
readonly marginRight: "space-offset";
|
|
3233
|
+
readonly marginTop: "space-offset";
|
|
3234
|
+
readonly maxBlockSize: "sizes";
|
|
3235
|
+
readonly maxHeight: "sizes";
|
|
3236
|
+
readonly maxInlineSize: "sizes";
|
|
3237
|
+
readonly maxWidth: "sizes";
|
|
3238
|
+
readonly minBlockSize: "sizes";
|
|
3239
|
+
readonly minHeight: "sizes";
|
|
3240
|
+
readonly minInlineSize: "sizes";
|
|
3241
|
+
readonly minWidth: "sizes";
|
|
3242
|
+
readonly outline: "colors";
|
|
3243
|
+
readonly outlineColor: "colors";
|
|
3244
|
+
readonly padding: "space-inset";
|
|
3245
|
+
readonly paddingBlock: "space-inset";
|
|
3246
|
+
readonly paddingBlockEnd: "space-inset";
|
|
3247
|
+
readonly paddingBlockStart: "space-inset";
|
|
3248
|
+
readonly paddingBottom: "space-inset";
|
|
3249
|
+
readonly paddingInline: "space-inset";
|
|
3250
|
+
readonly paddingInlineEnd: "space-inset";
|
|
3251
|
+
readonly paddingInlineStart: "space-inset";
|
|
3252
|
+
readonly paddingLeft: "space-inset";
|
|
3253
|
+
readonly paddingRight: "space-inset";
|
|
3254
|
+
readonly paddingTop: "space-inset";
|
|
3255
|
+
readonly right: "space";
|
|
3256
|
+
readonly rowGap: "space-gap";
|
|
3257
|
+
readonly scrollMargin: "space-offset";
|
|
3258
|
+
readonly scrollMarginBlock: "space-offset";
|
|
3259
|
+
readonly scrollMarginBlockEnd: "space-offset";
|
|
3260
|
+
readonly scrollMarginBlockStart: "space-offset";
|
|
3261
|
+
readonly scrollMarginBottom: "space-offset";
|
|
3262
|
+
readonly scrollMarginInline: "space-offset";
|
|
3263
|
+
readonly scrollMarginInlineEnd: "space-offset";
|
|
3264
|
+
readonly scrollMarginInlineStart: "space-offset";
|
|
3265
|
+
readonly scrollMarginLeft: "space-offset";
|
|
3266
|
+
readonly scrollMarginRight: "space-offset";
|
|
3267
|
+
readonly scrollMarginTop: "space-offset";
|
|
3268
|
+
readonly scrollPadding: "space-inset";
|
|
3269
|
+
readonly scrollPaddingBlock: "space-inset";
|
|
3270
|
+
readonly scrollPaddingBlockEnd: "space-inset";
|
|
3271
|
+
readonly scrollPaddingBlockStart: "space-inset";
|
|
3272
|
+
readonly scrollPaddingBottom: "space-inset";
|
|
3273
|
+
readonly scrollPaddingInline: "space-inset";
|
|
3274
|
+
readonly scrollPaddingInlineEnd: "space-inset";
|
|
3275
|
+
readonly scrollPaddingInlineStart: "space-inset";
|
|
3276
|
+
readonly scrollPaddingLeft: "space-inset";
|
|
3277
|
+
readonly scrollPaddingRight: "space-inset";
|
|
3278
|
+
readonly scrollPaddingTop: "space-inset";
|
|
3279
|
+
readonly stroke: "colors";
|
|
3280
|
+
readonly textDecorationColor: "colors";
|
|
3281
|
+
readonly textShadow: "shadows";
|
|
3282
|
+
readonly top: "space";
|
|
3283
|
+
readonly transition: "transitions";
|
|
3284
|
+
readonly width: "sizes";
|
|
3285
|
+
readonly zIndex: "z-indices";
|
|
3286
|
+
}, {
|
|
3287
|
+
paddingX: (value: {
|
|
3288
|
+
readonly [$$PropertyValue]: "padding";
|
|
3289
|
+
}) => {
|
|
3290
|
+
paddingLeft: {
|
|
3291
|
+
readonly [$$PropertyValue]: "padding";
|
|
3292
|
+
};
|
|
3293
|
+
paddingRight: {
|
|
3294
|
+
readonly [$$PropertyValue]: "padding";
|
|
3295
|
+
};
|
|
3321
3296
|
};
|
|
3322
|
-
|
|
3297
|
+
paddingY: (value: {
|
|
3298
|
+
readonly [$$PropertyValue]: "padding";
|
|
3299
|
+
}) => {
|
|
3300
|
+
paddingTop: {
|
|
3301
|
+
readonly [$$PropertyValue]: "padding";
|
|
3302
|
+
};
|
|
3303
|
+
paddingBottom: {
|
|
3304
|
+
readonly [$$PropertyValue]: "padding";
|
|
3305
|
+
};
|
|
3306
|
+
};
|
|
3307
|
+
marginX: (value: {
|
|
3323
3308
|
readonly [$$PropertyValue]: "margin";
|
|
3309
|
+
}) => {
|
|
3310
|
+
marginLeft: {
|
|
3311
|
+
readonly [$$PropertyValue]: "margin";
|
|
3312
|
+
};
|
|
3313
|
+
marginRight: {
|
|
3314
|
+
readonly [$$PropertyValue]: "margin";
|
|
3315
|
+
};
|
|
3324
3316
|
};
|
|
3325
|
-
|
|
3326
|
-
|
|
3327
|
-
|
|
3328
|
-
|
|
3329
|
-
|
|
3330
|
-
|
|
3317
|
+
marginY: (value: {
|
|
3318
|
+
readonly [$$PropertyValue]: "margin";
|
|
3319
|
+
}) => {
|
|
3320
|
+
marginTop: {
|
|
3321
|
+
readonly [$$PropertyValue]: "margin";
|
|
3322
|
+
};
|
|
3323
|
+
marginBottom: {
|
|
3324
|
+
readonly [$$PropertyValue]: "margin";
|
|
3325
|
+
};
|
|
3331
3326
|
};
|
|
3332
|
-
|
|
3327
|
+
square: (value: {
|
|
3333
3328
|
readonly [$$PropertyValue]: "width";
|
|
3329
|
+
}) => {
|
|
3330
|
+
width: {
|
|
3331
|
+
readonly [$$PropertyValue]: "width";
|
|
3332
|
+
};
|
|
3333
|
+
height: {
|
|
3334
|
+
readonly [$$PropertyValue]: "width";
|
|
3335
|
+
};
|
|
3334
3336
|
};
|
|
3335
|
-
};
|
|
3336
|
-
}>>> &
|
|
3337
|
+
}> | undefined;
|
|
3338
|
+
}>>> & {
|
|
3339
|
+
children?: React__default.ReactNode;
|
|
3340
|
+
} & CustomStylesProps> & React__default.RefAttributes<React__default.ElementRef<_stitches_react_types_styled_component.StyledComponent<Element_1, {}, {}, CSSUtil.CSS<{}, {
|
|
3337
3341
|
'border-widths': {
|
|
3338
3342
|
readonly none: 0;
|
|
3339
3343
|
readonly sm: "1px";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mirohq/design-system-stitches",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Miro",
|
|
6
6
|
"source": "src/index.ts",
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"react": "^16.14 || ^17 || ^18"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@mirohq/design-
|
|
30
|
-
"@mirohq/design-
|
|
29
|
+
"@mirohq/design-system-types": "^0.4.1",
|
|
30
|
+
"@mirohq/design-tokens": "^2.4.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@mirohq/design-system-primitive": "^1.1.0"
|