@rocket.chat/fuselage 0.6.3-dev.354 → 0.6.3-dev.358
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/components/Box/index.d.ts +14 -1
- package/dist/components/Message/Message.d.ts +154 -19
- package/dist/components/Message/Message.d.ts.map +1 -1
- package/dist/components/Options/Option/index.d.ts +31 -14
- package/dist/components/Options/Option/index.d.ts.map +1 -0
- package/dist/components/ProgressBar/index.d.ts +3 -3
- package/dist/components/Tooltip/Tooltip.d.ts +3 -3
- package/dist/fuselage.development.js +113 -478
- package/dist/fuselage.development.js.map +1 -1
- package/dist/fuselage.production.js +1 -1
- package/package.json +19 -19
|
@@ -9,7 +9,20 @@ import {
|
|
|
9
9
|
SVGAttributes,
|
|
10
10
|
} from 'react';
|
|
11
11
|
|
|
12
|
-
type FontScale =
|
|
12
|
+
type FontScale =
|
|
13
|
+
| 'hero'
|
|
14
|
+
| 'h1'
|
|
15
|
+
| 'h2'
|
|
16
|
+
| 'h3'
|
|
17
|
+
| 'h4'
|
|
18
|
+
| 'h5'
|
|
19
|
+
| 'p1'
|
|
20
|
+
| 'p2'
|
|
21
|
+
| 'p3'
|
|
22
|
+
| 'p4'
|
|
23
|
+
| 'c1'
|
|
24
|
+
| 'c2'
|
|
25
|
+
| 'micro';
|
|
13
26
|
|
|
14
27
|
type BoxProps = PropsWithChildren<{
|
|
15
28
|
is?: ElementType;
|
|
@@ -139,10 +139,10 @@ declare const _default: React.ForwardRefExoticComponent<React.AllHTMLAttributes<
|
|
|
139
139
|
paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
140
140
|
pie?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
141
141
|
paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
142
|
-
fontFamily?: import("csstype").Property.FontFamily | ("h1" | "
|
|
142
|
+
fontFamily?: import("csstype").Property.FontFamily | ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | undefined;
|
|
143
143
|
fontSize?: string | number | (string & {}) | undefined;
|
|
144
144
|
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
145
|
-
fontWeight?: ("h1" | "
|
|
145
|
+
fontWeight?: ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | import("csstype").Property.FontWeight | undefined;
|
|
146
146
|
letterSpacing?: string | number | undefined;
|
|
147
147
|
lineHeight?: string | number | (string & {}) | (number & {}) | undefined;
|
|
148
148
|
textAlign?: import("csstype").Property.TextAlign | undefined;
|
|
@@ -155,7 +155,7 @@ declare const _default: React.ForwardRefExoticComponent<React.AllHTMLAttributes<
|
|
|
155
155
|
size?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
156
156
|
minSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
157
157
|
maxSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
158
|
-
fontScale?: ("h1" | "
|
|
158
|
+
fontScale?: ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | undefined;
|
|
159
159
|
} & {
|
|
160
160
|
children?: React.ReactNode;
|
|
161
161
|
} & Omit<React.AllHTMLAttributes<HTMLOrSVGElement>, "className"> & Omit<React.SVGAttributes<SVGElement>, keyof React.AllHTMLAttributes<HTMLOrSVGElement>> & React.RefAttributes<unknown>> & {
|
|
@@ -265,10 +265,10 @@ declare const _default: React.ForwardRefExoticComponent<React.AllHTMLAttributes<
|
|
|
265
265
|
paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
266
266
|
pie?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
267
267
|
paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
268
|
-
fontFamily?: import("csstype").Property.FontFamily | ("h1" | "
|
|
268
|
+
fontFamily?: import("csstype").Property.FontFamily | ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | undefined;
|
|
269
269
|
fontSize?: string | number | (string & {}) | undefined;
|
|
270
270
|
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
271
|
-
fontWeight?: ("h1" | "
|
|
271
|
+
fontWeight?: ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | import("csstype").Property.FontWeight | undefined;
|
|
272
272
|
letterSpacing?: string | number | undefined;
|
|
273
273
|
lineHeight?: string | number | (string & {}) | (number & {}) | undefined;
|
|
274
274
|
textAlign?: import("csstype").Property.TextAlign | undefined;
|
|
@@ -281,7 +281,7 @@ declare const _default: React.ForwardRefExoticComponent<React.AllHTMLAttributes<
|
|
|
281
281
|
size?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
282
282
|
minSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
283
283
|
maxSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
284
|
-
fontScale?: ("h1" | "
|
|
284
|
+
fontScale?: ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | undefined;
|
|
285
285
|
} & {
|
|
286
286
|
children?: React.ReactNode;
|
|
287
287
|
} & Omit<React.AllHTMLAttributes<HTMLOrSVGElement>, "className"> & Omit<React.SVGAttributes<SVGElement>, keyof React.AllHTMLAttributes<HTMLOrSVGElement>> & React.RefAttributes<unknown>>;
|
|
@@ -392,10 +392,10 @@ declare const _default: React.ForwardRefExoticComponent<React.AllHTMLAttributes<
|
|
|
392
392
|
paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
393
393
|
pie?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
394
394
|
paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
395
|
-
fontFamily?: import("csstype").Property.FontFamily | ("h1" | "
|
|
395
|
+
fontFamily?: import("csstype").Property.FontFamily | ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | undefined;
|
|
396
396
|
fontSize?: string | number | (string & {}) | undefined;
|
|
397
397
|
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
398
|
-
fontWeight?: ("h1" | "
|
|
398
|
+
fontWeight?: ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | import("csstype").Property.FontWeight | undefined;
|
|
399
399
|
letterSpacing?: string | number | undefined;
|
|
400
400
|
lineHeight?: string | number | (string & {}) | (number & {}) | undefined;
|
|
401
401
|
textAlign?: import("csstype").Property.TextAlign | undefined;
|
|
@@ -408,7 +408,7 @@ declare const _default: React.ForwardRefExoticComponent<React.AllHTMLAttributes<
|
|
|
408
408
|
size?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
409
409
|
minSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
410
410
|
maxSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
411
|
-
fontScale?: ("h1" | "
|
|
411
|
+
fontScale?: ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | undefined;
|
|
412
412
|
} & {
|
|
413
413
|
children?: React.ReactNode;
|
|
414
414
|
} & Omit<React.AllHTMLAttributes<HTMLOrSVGElement>, "className"> & Omit<React.SVGAttributes<SVGElement>, keyof React.AllHTMLAttributes<HTMLOrSVGElement>> & React.RefAttributes<unknown> & {
|
|
@@ -527,10 +527,10 @@ declare const _default: React.ForwardRefExoticComponent<React.AllHTMLAttributes<
|
|
|
527
527
|
paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
528
528
|
pie?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
529
529
|
paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
530
|
-
fontFamily?: import("csstype").Property.FontFamily | ("h1" | "
|
|
530
|
+
fontFamily?: import("csstype").Property.FontFamily | ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | undefined;
|
|
531
531
|
fontSize?: string | number | (string & {}) | undefined;
|
|
532
532
|
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
533
|
-
fontWeight?: ("h1" | "
|
|
533
|
+
fontWeight?: ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | import("csstype").Property.FontWeight | undefined;
|
|
534
534
|
letterSpacing?: string | number | undefined;
|
|
535
535
|
lineHeight?: string | number | (string & {}) | (number & {}) | undefined;
|
|
536
536
|
textAlign?: import("csstype").Property.TextAlign | undefined;
|
|
@@ -543,7 +543,7 @@ declare const _default: React.ForwardRefExoticComponent<React.AllHTMLAttributes<
|
|
|
543
543
|
size?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
544
544
|
minSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
545
545
|
maxSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
546
|
-
fontScale?: ("h1" | "
|
|
546
|
+
fontScale?: ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | undefined;
|
|
547
547
|
} & {
|
|
548
548
|
children?: React.ReactNode;
|
|
549
549
|
} & Omit<React.AllHTMLAttributes<HTMLOrSVGElement>, "className"> & Omit<React.SVGAttributes<SVGElement>, keyof React.AllHTMLAttributes<HTMLOrSVGElement>> & React.RefAttributes<unknown> & {
|
|
@@ -657,10 +657,10 @@ declare const _default: React.ForwardRefExoticComponent<React.AllHTMLAttributes<
|
|
|
657
657
|
paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
658
658
|
pie?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
659
659
|
paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
660
|
-
fontFamily?: import("csstype").Property.FontFamily | ("h1" | "
|
|
660
|
+
fontFamily?: import("csstype").Property.FontFamily | ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | undefined;
|
|
661
661
|
fontSize?: string | number | (string & {}) | undefined;
|
|
662
662
|
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
663
|
-
fontWeight?: ("h1" | "
|
|
663
|
+
fontWeight?: ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | import("csstype").Property.FontWeight | undefined;
|
|
664
664
|
letterSpacing?: string | number | undefined;
|
|
665
665
|
lineHeight?: string | number | (string & {}) | (number & {}) | undefined;
|
|
666
666
|
textAlign?: import("csstype").Property.TextAlign | undefined;
|
|
@@ -673,7 +673,7 @@ declare const _default: React.ForwardRefExoticComponent<React.AllHTMLAttributes<
|
|
|
673
673
|
size?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
674
674
|
minSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
675
675
|
maxSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
676
|
-
fontScale?: ("h1" | "
|
|
676
|
+
fontScale?: ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | undefined;
|
|
677
677
|
} & {
|
|
678
678
|
children?: React.ReactNode;
|
|
679
679
|
} & Omit<React.AllHTMLAttributes<HTMLOrSVGElement>, "className"> & Omit<React.SVGAttributes<SVGElement>, keyof React.AllHTMLAttributes<HTMLOrSVGElement>> & React.RefAttributes<unknown> & {
|
|
@@ -796,10 +796,10 @@ declare const _default: React.ForwardRefExoticComponent<React.AllHTMLAttributes<
|
|
|
796
796
|
paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
797
797
|
pie?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
798
798
|
paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
799
|
-
fontFamily?: import("csstype").Property.FontFamily | ("h1" | "
|
|
799
|
+
fontFamily?: import("csstype").Property.FontFamily | ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | undefined;
|
|
800
800
|
fontSize?: string | number | (string & {}) | undefined;
|
|
801
801
|
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
802
|
-
fontWeight?: ("h1" | "
|
|
802
|
+
fontWeight?: ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | import("csstype").Property.FontWeight | undefined;
|
|
803
803
|
letterSpacing?: string | number | undefined;
|
|
804
804
|
lineHeight?: string | number | (string & {}) | (number & {}) | undefined;
|
|
805
805
|
textAlign?: import("csstype").Property.TextAlign | undefined;
|
|
@@ -812,7 +812,7 @@ declare const _default: React.ForwardRefExoticComponent<React.AllHTMLAttributes<
|
|
|
812
812
|
size?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
813
813
|
minSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
814
814
|
maxSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
815
|
-
fontScale?: ("h1" | "
|
|
815
|
+
fontScale?: ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | undefined;
|
|
816
816
|
} & {
|
|
817
817
|
children?: React.ReactNode;
|
|
818
818
|
} & Omit<React.AllHTMLAttributes<HTMLOrSVGElement>, "className"> & Omit<React.SVGAttributes<SVGElement>, keyof React.AllHTMLAttributes<HTMLOrSVGElement>> & React.RefAttributes<unknown> & {
|
|
@@ -840,7 +840,142 @@ declare const _default: React.ForwardRefExoticComponent<React.AllHTMLAttributes<
|
|
|
840
840
|
};
|
|
841
841
|
optionWidth?: (import("csstype").Property.Width<string | number> & (string | number)) | undefined;
|
|
842
842
|
placement?: import("@rocket.chat/fuselage-hooks").Placements | undefined;
|
|
843
|
-
renderItem?: ((props:
|
|
843
|
+
renderItem?: ((props: {
|
|
844
|
+
is?: (React.ElementType<any> & string) | undefined;
|
|
845
|
+
id?: string | undefined;
|
|
846
|
+
children: React.ReactNode;
|
|
847
|
+
label?: string | undefined;
|
|
848
|
+
focus?: boolean | undefined;
|
|
849
|
+
selected?: boolean | undefined;
|
|
850
|
+
className?: string | (<T extends readonly unknown[]>(...args: T) => string) | (string | (<T extends readonly unknown[]>(...args: T) => string))[] | undefined;
|
|
851
|
+
ref?: React.Ref<Element> | undefined;
|
|
852
|
+
icon?: string | undefined;
|
|
853
|
+
avatar?: React.ReactNode;
|
|
854
|
+
title?: string | undefined;
|
|
855
|
+
onClick?: Pick<{
|
|
856
|
+
is?: React.ElementType<any> | undefined;
|
|
857
|
+
className?: string | (<T extends readonly unknown[]>(...args: T) => string) | (string | (<T extends readonly unknown[]>(...args: T) => string))[] | undefined;
|
|
858
|
+
style?: React.CSSProperties | undefined;
|
|
859
|
+
border?: import("csstype").Property.Border<string | number> | undefined;
|
|
860
|
+
borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
|
|
861
|
+
borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
|
|
862
|
+
borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
|
|
863
|
+
borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
|
|
864
|
+
borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
|
|
865
|
+
borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
|
|
866
|
+
borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
|
|
867
|
+
borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
|
|
868
|
+
borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
|
|
869
|
+
borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
|
|
870
|
+
borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
|
|
871
|
+
borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
|
|
872
|
+
borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
|
|
873
|
+
borderStyle?: import("csstype").Property.BorderStyle | undefined;
|
|
874
|
+
borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
|
|
875
|
+
borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
|
|
876
|
+
borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
|
|
877
|
+
borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
|
|
878
|
+
borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
|
|
879
|
+
borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
880
|
+
borderColor?: import("csstype").Property.BorderColor | undefined;
|
|
881
|
+
borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
|
|
882
|
+
borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
|
|
883
|
+
borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
|
|
884
|
+
borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
|
|
885
|
+
borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
|
|
886
|
+
borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
887
|
+
borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
888
|
+
borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
|
|
889
|
+
borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
|
|
890
|
+
borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
|
|
891
|
+
borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
|
|
892
|
+
color?: import("csstype").Property.Color | undefined;
|
|
893
|
+
backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
|
|
894
|
+
bg?: import("csstype").Property.BackgroundColor | undefined;
|
|
895
|
+
opacity?: import("csstype").Property.Opacity | undefined;
|
|
896
|
+
alignItems?: import("csstype").Property.AlignItems | undefined;
|
|
897
|
+
alignContent?: import("csstype").Property.AlignContent | undefined;
|
|
898
|
+
justifyItems?: import("csstype").Property.JustifyItems | undefined;
|
|
899
|
+
justifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
900
|
+
flexWrap?: import("csstype").Property.FlexWrap | undefined;
|
|
901
|
+
flexDirection?: import("csstype").Property.FlexDirection | undefined;
|
|
902
|
+
flexGrow?: import("csstype").Property.FlexGrow | undefined;
|
|
903
|
+
flexShrink?: import("csstype").Property.FlexShrink | undefined;
|
|
904
|
+
flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
|
|
905
|
+
justifySelf?: import("csstype").Property.JustifySelf | undefined;
|
|
906
|
+
alignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
907
|
+
order?: import("csstype").Property.Order | undefined;
|
|
908
|
+
w?: import("csstype").Property.Width<string | number> | undefined;
|
|
909
|
+
width?: import("csstype").Property.Width<string | number> | undefined;
|
|
910
|
+
minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
|
|
911
|
+
maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
|
|
912
|
+
h?: import("csstype").Property.Height<string | number> | undefined;
|
|
913
|
+
height?: import("csstype").Property.Height<string | number> | undefined;
|
|
914
|
+
minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
|
|
915
|
+
maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
|
|
916
|
+
display?: import("csstype").Property.Display | undefined;
|
|
917
|
+
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
918
|
+
overflow?: import("csstype").Property.Overflow | undefined;
|
|
919
|
+
overflowX?: import("csstype").Property.OverflowX | undefined;
|
|
920
|
+
overflowY?: import("csstype").Property.OverflowY | undefined;
|
|
921
|
+
position?: import("csstype").Property.Position | undefined;
|
|
922
|
+
zIndex?: import("csstype").Property.ZIndex | undefined;
|
|
923
|
+
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
924
|
+
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
925
|
+
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
926
|
+
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
927
|
+
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
928
|
+
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
929
|
+
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
930
|
+
m?: import("csstype").Property.Margin<string | number> | undefined;
|
|
931
|
+
margin?: import("csstype").Property.Margin<string | number> | undefined;
|
|
932
|
+
mb?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
933
|
+
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
934
|
+
mbs?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
|
|
935
|
+
marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
|
|
936
|
+
mbe?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
|
|
937
|
+
marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
|
|
938
|
+
mi?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
939
|
+
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
940
|
+
mis?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
941
|
+
marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
942
|
+
mie?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
943
|
+
marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
944
|
+
p?: import("csstype").Property.Padding<string | number> | undefined;
|
|
945
|
+
padding?: import("csstype").Property.Padding<string | number> | undefined;
|
|
946
|
+
pb?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
947
|
+
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
948
|
+
pbs?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
|
|
949
|
+
paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
|
|
950
|
+
pbe?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
|
|
951
|
+
paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
|
|
952
|
+
pi?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
953
|
+
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
954
|
+
pis?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
955
|
+
paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
956
|
+
pie?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
957
|
+
paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
958
|
+
fontFamily?: import("csstype").Property.FontFamily | ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | undefined;
|
|
959
|
+
fontSize?: string | number | (string & {}) | undefined;
|
|
960
|
+
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
961
|
+
fontWeight?: ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | import("csstype").Property.FontWeight | undefined;
|
|
962
|
+
letterSpacing?: string | number | undefined;
|
|
963
|
+
lineHeight?: string | number | (string & {}) | (number & {}) | undefined;
|
|
964
|
+
textAlign?: import("csstype").Property.TextAlign | undefined;
|
|
965
|
+
textTransform?: import("csstype").Property.TextTransform | undefined;
|
|
966
|
+
textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
967
|
+
elevation?: "0" | "1" | "2" | undefined;
|
|
968
|
+
invisible?: boolean | undefined;
|
|
969
|
+
withRichContent?: string | boolean | undefined;
|
|
970
|
+
withTruncatedText?: boolean | undefined;
|
|
971
|
+
size?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
972
|
+
minSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
973
|
+
maxSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
974
|
+
fontScale?: ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | undefined;
|
|
975
|
+
} & {
|
|
976
|
+
children?: React.ReactNode;
|
|
977
|
+
} & Omit<React.AllHTMLAttributes<HTMLOrSVGElement>, "className"> & Omit<React.SVGAttributes<SVGElement>, keyof React.AllHTMLAttributes<HTMLOrSVGElement>> & React.RefAttributes<unknown>, "onClick"> | undefined;
|
|
978
|
+
}) => React.ReactNode) | undefined;
|
|
844
979
|
}>;
|
|
845
980
|
};
|
|
846
981
|
Container: React.FC<{}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Message.d.ts","sourceRoot":"","sources":["../../../src/components/Message/Message.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EACZ,iBAAiB,EACjB,EAAE,EAEF,YAAY,EACZ,SAAS,EACV,MAAM,OAAO,CAAC;AAEf,OAAO,wBAAwB,CAAC;AAQhC,eAAO,MAAM,gBAAgB,EAAE,EAI9B,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,EAOnC,CAAC;AAEF,aAAK,yBAAyB,GAAG;IAC/B,QAAQ,CAAC,EAAE,SAAS,CAAC;CACtB,CAAC;AAEF,eAAO,MAAM,oBAAoB,UACxB,yBAAyB,KAC/B,YAKF,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,EAQ3B,CAAC;AAEF,aAAK,gBAAgB,GAAG,iBAAiB,CAAC,cAAc,CAAC,GAAG;IAC1D,KAAK,CAAC,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;CACnB,CAAC;AAEF,eAAO,MAAM,WAAW,mCAIrB,gBAAgB,KAAG,YAerB,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,EAAE,CAAC;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,CAenD,CAAC;AAOF,eAAO,MAAM,OAAO;;;wCA4BnB,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,EAAE,CAAC;IAAE,QAAQ,EAAE,MAAM,CAAA;CAAE,CAQnD,CAAC;AAEJ,eAAO,MAAM,WAAW,EAAE,EAAE,CAAC;IAAE,QAAQ,EAAE,MAAM,CAAA;CAAE,CAShD,CAAC;AACF,eAAO,MAAM,eAAe,EAAE,EAAE,CAAC;IAAE,QAAQ,EAAE,MAAM,CAAA;CAAE,CAQlD,CAAC;AAEJ,eAAO,MAAM,WAAW,EAAE,EAAE,CAAC;IAAE,QAAQ,EAAE,MAAM,CAAA;CAAE,CAYhD,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,EAO1B,CAAC
|
|
1
|
+
{"version":3,"file":"Message.d.ts","sourceRoot":"","sources":["../../../src/components/Message/Message.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EACZ,iBAAiB,EACjB,EAAE,EAEF,YAAY,EACZ,SAAS,EACV,MAAM,OAAO,CAAC;AAEf,OAAO,wBAAwB,CAAC;AAQhC,eAAO,MAAM,gBAAgB,EAAE,EAI9B,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,EAOnC,CAAC;AAEF,aAAK,yBAAyB,GAAG;IAC/B,QAAQ,CAAC,EAAE,SAAS,CAAC;CACtB,CAAC;AAEF,eAAO,MAAM,oBAAoB,UACxB,yBAAyB,KAC/B,YAKF,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,EAQ3B,CAAC;AAEF,aAAK,gBAAgB,GAAG,iBAAiB,CAAC,cAAc,CAAC,GAAG;IAC1D,KAAK,CAAC,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;CACnB,CAAC;AAEF,eAAO,MAAM,WAAW,mCAIrB,gBAAgB,KAAG,YAerB,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,EAAE,CAAC;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,CAenD,CAAC;AAOF,eAAO,MAAM,OAAO;;;wCA4BnB,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,EAAE,CAAC;IAAE,QAAQ,EAAE,MAAM,CAAA;CAAE,CAQnD,CAAC;AAEJ,eAAO,MAAM,WAAW,EAAE,EAAE,CAAC;IAAE,QAAQ,EAAE,MAAM,CAAA;CAAE,CAShD,CAAC;AACF,eAAO,MAAM,eAAe,EAAE,EAAE,CAAC;IAAE,QAAQ,EAAE,MAAM,CAAA;CAAE,CAQlD,CAAC;AAEJ,eAAO,MAAM,WAAW,EAAE,EAAE,CAAC;IAAE,QAAQ,EAAE,MAAM,CAAA;CAAE,CAYhD,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,EAO1B,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEF,wBAeG"}
|
|
@@ -1,16 +1,33 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import React, { FC, Ref, ComponentProps, ReactNode } from 'react';
|
|
3
2
|
import { Box } from '../../Box';
|
|
4
|
-
|
|
5
|
-
type OptionProps = {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
3
|
+
export declare const OptionMenu: FC;
|
|
4
|
+
declare type OptionProps = {
|
|
5
|
+
is?: ComponentProps<typeof Box>['is'];
|
|
6
|
+
id?: string;
|
|
7
|
+
children: ReactNode;
|
|
8
|
+
label?: string;
|
|
9
|
+
focus?: boolean;
|
|
10
|
+
selected?: boolean;
|
|
11
|
+
className?: ComponentProps<typeof Box>['className'];
|
|
12
|
+
ref?: Ref<Element>;
|
|
13
|
+
icon?: string;
|
|
14
|
+
avatar?: ReactNode;
|
|
15
|
+
title?: string;
|
|
16
|
+
onClick?: Pick<ComponentProps<typeof Box>, 'onClick'>;
|
|
15
17
|
};
|
|
16
|
-
export const Option:
|
|
18
|
+
export declare const Option: React.MemoExoticComponent<({ is: Tag, id, children, label, focus, selected, className, ref, icon, avatar, title, onClick, ...options }: OptionProps) => JSX.Element>;
|
|
19
|
+
declare const _default: React.NamedExoticComponent<OptionProps> & {
|
|
20
|
+
readonly type: ({ is: Tag, id, children, label, focus, selected, className, ref, icon, avatar, title, onClick, ...options }: OptionProps) => JSX.Element;
|
|
21
|
+
} & {
|
|
22
|
+
Description: React.FC<{}>;
|
|
23
|
+
Skeleton: () => JSX.Element;
|
|
24
|
+
Avatar: React.FC<{}>;
|
|
25
|
+
Menu: React.FC<{}>;
|
|
26
|
+
Icon: ({ name }: {
|
|
27
|
+
name: string;
|
|
28
|
+
}) => JSX.Element;
|
|
29
|
+
Column: React.FC<{}>;
|
|
30
|
+
Content: React.FC<{}>;
|
|
31
|
+
};
|
|
32
|
+
export default _default;
|
|
33
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Options/Option/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAElE,OAAO,EAAE,GAAG,EAAE,MAAM,WAAW,CAAC;AAiChC,eAAO,MAAM,UAAU,EAAE,EAExB,CAAC;AAEF,aAAK,WAAW,GAAG;IACjB,EAAE,CAAC,EAAE,cAAc,CAAC,OAAO,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC;IACtC,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,SAAS,CAAC;IACpB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,cAAc,CAAC,OAAO,GAAG,CAAC,CAAC,WAAW,CAAC,CAAC;IACpD,GAAG,CAAC,EAAE,GAAG,CAAC,OAAO,CAAC,CAAC;IACnB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,SAAS,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,CAAC,OAAO,GAAG,CAAC,EAAE,SAAS,CAAC,CAAC;CACvD,CAAC;AAEF,eAAO,MAAM,MAAM,0IAed,WAAW,iBA0Bf,CAAC;;;;;;;;;;;;;;AAEF,wBAQG"}
|
|
@@ -103,10 +103,10 @@ export declare const ProgressBar: React.ForwardRefExoticComponent<Pick<{
|
|
|
103
103
|
paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
104
104
|
pie?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
105
105
|
paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
106
|
-
fontFamily?: import("csstype").Property.FontFamily | ("h1" | "
|
|
106
|
+
fontFamily?: import("csstype").Property.FontFamily | ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | undefined;
|
|
107
107
|
fontSize?: string | number | (string & {}) | undefined;
|
|
108
108
|
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
109
|
-
fontWeight?: ("h1" | "
|
|
109
|
+
fontWeight?: ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | import("csstype").Property.FontWeight | undefined;
|
|
110
110
|
letterSpacing?: string | number | undefined;
|
|
111
111
|
lineHeight?: string | number | (string & {}) | (number & {}) | undefined;
|
|
112
112
|
textAlign?: import("csstype").Property.TextAlign | undefined;
|
|
@@ -119,7 +119,7 @@ export declare const ProgressBar: React.ForwardRefExoticComponent<Pick<{
|
|
|
119
119
|
size?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
120
120
|
minSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
121
121
|
maxSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
122
|
-
fontScale?: ("h1" | "
|
|
122
|
+
fontScale?: ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | undefined;
|
|
123
123
|
} & Omit<React.AllHTMLAttributes<HTMLOrSVGElement>, "className"> & Omit<React.SVGAttributes<SVGElement>, keyof React.AllHTMLAttributes<HTMLOrSVGElement>> & React.RefAttributes<unknown> & {
|
|
124
124
|
barColor?: ComponentProps<typeof Box>['bg'];
|
|
125
125
|
percentage: number;
|
|
@@ -102,10 +102,10 @@ declare const Tooltip: React.ForwardRefExoticComponent<Pick<{
|
|
|
102
102
|
paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
103
103
|
pie?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
104
104
|
paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
105
|
-
fontFamily?: import("csstype").Property.FontFamily | ("h1" | "
|
|
105
|
+
fontFamily?: import("csstype").Property.FontFamily | ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | undefined;
|
|
106
106
|
fontSize?: string | number | (string & {}) | undefined;
|
|
107
107
|
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
108
|
-
fontWeight?: ("h1" | "
|
|
108
|
+
fontWeight?: ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | import("csstype").Property.FontWeight | undefined;
|
|
109
109
|
letterSpacing?: string | number | undefined;
|
|
110
110
|
lineHeight?: string | number | (string & {}) | (number & {}) | undefined;
|
|
111
111
|
textAlign?: import("csstype").Property.TextAlign | undefined;
|
|
@@ -118,7 +118,7 @@ declare const Tooltip: React.ForwardRefExoticComponent<Pick<{
|
|
|
118
118
|
size?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
119
119
|
minSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
120
120
|
maxSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
121
|
-
fontScale?: ("h1" | "
|
|
121
|
+
fontScale?: ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | undefined;
|
|
122
122
|
} & Omit<React.AllHTMLAttributes<HTMLOrSVGElement>, "className"> & Omit<React.SVGAttributes<SVGElement>, keyof React.AllHTMLAttributes<HTMLOrSVGElement>> & React.RefAttributes<unknown> & {
|
|
123
123
|
placement?: "left" | "right" | "bottom" | "top" | "top-start" | "top-middle" | "top-end" | "bottom-start" | "bottom-middle" | "bottom-end" | null | undefined;
|
|
124
124
|
}, "string" | "y" | "r" | "default" | "disabled" | "type" | "color" | "fontSize" | "fontWeight" | "lineHeight" | "letterSpacing" | "className" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoFocus" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "cite" | "classID" | "cols" | "colSpan" | "content" | "controls" | "coords" | "crossOrigin" | "data" | "dateTime" | "defer" | "download" | "encType" | "form" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "height" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "label" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "multiple" | "muted" | "name" | "nonce" | "noValidate" | "open" | "optimum" | "pattern" | "placeholder" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "size" | "sizes" | "span" | "src" | "srcDoc" | "srcLang" | "srcSet" | "start" | "step" | "summary" | "target" | "useMap" | "value" | "width" | "wmode" | "wrap" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "accentHeight" | "accumulate" | "additive" | "alignmentBaseline" | "allowReorder" | "alphabetic" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baselineShift" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clip" | "clipPath" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cursor" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "direction" | "display" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "end" | "exponent" | "externalResourcesRequired" | "fill" | "fillOpacity" | "fillRule" | "filter" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "fontFamily" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "format" | "fr" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "hanging" | "horizAdvX" | "horizOriginX" | "ideographic" | "imageRendering" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "markerUnits" | "markerWidth" | "mask" | "maskContentUnits" | "maskUnits" | "mathematical" | "mode" | "numOctaves" | "offset" | "opacity" | "operator" | "order" | "orient" | "orientation" | "origin" | "overflow" | "overlinePosition" | "overlineThickness" | "paintOrder" | "panose1" | "path" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "pointerEvents" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rotate" | "rx" | "ry" | "scale" | "seed" | "shapeRendering" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "stopColor" | "stopOpacity" | "strikethroughPosition" | "strikethroughThickness" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textAnchor" | "textDecoration" | "textLength" | "textRendering" | "to" | "transform" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeBidi" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "visibility" | "vMathematical" | "widths" | "wordSpacing" | "writingMode" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "yChannelSelector" | "z" | "zoomAndPan" | "p" | "border" | "inset" | "borderBlock" | "borderBlockStart" | "borderBlockEnd" | "borderInline" | "borderInlineStart" | "borderInlineEnd" | "borderWidth" | "borderBlockWidth" | "borderBlockStartWidth" | "borderBlockEndWidth" | "borderInlineWidth" | "borderInlineStartWidth" | "borderInlineEndWidth" | "borderStyle" | "borderBlockStyle" | "borderBlockStartStyle" | "borderBlockEndStyle" | "borderInlineStyle" | "borderInlineStartStyle" | "borderInlineEndStyle" | "borderColor" | "borderBlockColor" | "borderBlockStartColor" | "borderBlockEndColor" | "borderInlineColor" | "borderInlineStartColor" | "borderInlineEndColor" | "borderRadius" | "borderStartStartRadius" | "borderStartEndRadius" | "borderEndStartRadius" | "borderEndEndRadius" | "backgroundColor" | "alignItems" | "alignContent" | "justifyItems" | "justifyContent" | "flexWrap" | "flexDirection" | "flexGrow" | "flexShrink" | "flexBasis" | "justifySelf" | "alignSelf" | "minWidth" | "maxWidth" | "minHeight" | "maxHeight" | "verticalAlign" | "overflowX" | "overflowY" | "position" | "zIndex" | "insetBlock" | "insetBlockStart" | "insetBlockEnd" | "insetInline" | "insetInlineStart" | "insetInlineEnd" | "margin" | "marginBlock" | "marginBlockStart" | "marginBlockEnd" | "marginInline" | "marginInlineStart" | "marginInlineEnd" | "padding" | "paddingBlock" | "paddingBlockStart" | "paddingBlockEnd" | "paddingInline" | "paddingInlineStart" | "paddingInlineEnd" | "textAlign" | "textTransform" | "textDecorationLine" | "bg" | "w" | "h" | "m" | "mb" | "mbs" | "mbe" | "mi" | "mis" | "mie" | "pb" | "pbs" | "pbe" | "pi" | "pis" | "pie" | "invisible" | "withRichContent" | "withTruncatedText" | "minSize" | "maxSize" | "fontScale" | "key" | "placement"> & React.RefAttributes<HTMLElement>>;
|