@rocket.chat/fuselage 0.6.3-dev.355 → 0.6.3-dev.359

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.
Files changed (30) hide show
  1. package/dist/components/Box/index.d.ts +14 -1
  2. package/dist/components/Menu/index.d.ts +1 -1
  3. package/dist/components/Message/Message.d.ts +153 -19
  4. package/dist/components/Message/Message.d.ts.map +1 -1
  5. package/dist/components/Options/Option/Option.d.ts +18 -0
  6. package/dist/components/Options/Option/Option.d.ts.map +1 -0
  7. package/dist/components/Options/Option/OptionAvatar.d.ts +4 -0
  8. package/dist/components/Options/Option/OptionAvatar.d.ts.map +1 -0
  9. package/dist/components/Options/Option/OptionColumn.d.ts +4 -0
  10. package/dist/components/Options/Option/OptionColumn.d.ts.map +1 -0
  11. package/dist/components/Options/Option/OptionContent.d.ts +4 -0
  12. package/dist/components/Options/Option/OptionContent.d.ts.map +1 -0
  13. package/dist/components/Options/Option/OptionDescription.d.ts +4 -0
  14. package/dist/components/Options/Option/OptionDescription.d.ts.map +1 -0
  15. package/dist/components/Options/Option/OptionIcon.d.ts +7 -0
  16. package/dist/components/Options/Option/OptionIcon.d.ts.map +1 -0
  17. package/dist/components/Options/Option/OptionMenu.d.ts +4 -0
  18. package/dist/components/Options/Option/OptionMenu.d.ts.map +1 -0
  19. package/dist/components/Options/Option/OptionSkeleton.d.ts +3 -0
  20. package/dist/components/Options/Option/OptionSkeleton.d.ts.map +1 -0
  21. package/dist/components/Options/Option/index.d.ts +283 -15
  22. package/dist/components/Options/Option/index.d.ts.map +1 -0
  23. package/dist/components/ProgressBar/index.d.ts +3 -3
  24. package/dist/components/Tooltip/Tooltip.d.ts +3 -3
  25. package/dist/components/index.d.ts +1 -1
  26. package/dist/components/index.d.ts.map +1 -1
  27. package/dist/fuselage.development.js +362 -524
  28. package/dist/fuselage.development.js.map +1 -1
  29. package/dist/fuselage.production.js +1 -1
  30. package/package.json +19 -19
@@ -1,16 +1,284 @@
1
- import { ComponentProps, ForwardRefExoticComponent, ReactNode } from 'react';
2
-
3
- import { Box } from '../../Box';
4
-
5
- type OptionProps = {
6
- id?: string;
7
- avatar?: ReactNode;
8
- label?: string;
9
- focus?: boolean;
10
- selected?: boolean;
11
- icon?: string;
12
- className?: ComponentProps<typeof Box>['className'];
13
- title?: string;
14
- value?: any;
1
+ /// <reference types="react" />
2
+ declare const _default: import("react").NamedExoticComponent<{
3
+ is?: (import("react").ElementType<any> & string) | undefined;
4
+ id?: string | undefined;
5
+ children: import("react").ReactNode;
6
+ label?: string | undefined;
7
+ focus?: boolean | undefined;
8
+ selected?: boolean | undefined;
9
+ className?: string | (<T extends readonly unknown[]>(...args: T) => string) | (string | (<T extends readonly unknown[]>(...args: T) => string))[] | undefined;
10
+ ref?: import("react").Ref<Element> | undefined;
11
+ icon?: string | undefined;
12
+ avatar?: import("react").ReactNode;
13
+ title?: string | undefined;
14
+ } & Pick<{
15
+ is?: import("react").ElementType<any> | undefined;
16
+ className?: string | (<T extends readonly unknown[]>(...args: T) => string) | (string | (<T extends readonly unknown[]>(...args: T) => string))[] | undefined;
17
+ style?: import("react").CSSProperties | undefined;
18
+ border?: import("csstype").Property.Border<string | number> | undefined;
19
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
20
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
21
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
22
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
23
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
24
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
25
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
26
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
27
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
28
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
29
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
30
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
31
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
32
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
33
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
34
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
35
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
36
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
37
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
38
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
39
+ borderColor?: import("csstype").Property.BorderColor | undefined;
40
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
41
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
42
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
43
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
44
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
45
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
46
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
47
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
48
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
49
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
50
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
51
+ color?: import("csstype").Property.Color | undefined;
52
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
53
+ bg?: import("csstype").Property.BackgroundColor | undefined;
54
+ opacity?: import("csstype").Property.Opacity | undefined;
55
+ alignItems?: import("csstype").Property.AlignItems | undefined;
56
+ alignContent?: import("csstype").Property.AlignContent | undefined;
57
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
58
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
59
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
60
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
61
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
62
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
63
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
64
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
65
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
66
+ order?: import("csstype").Property.Order | undefined;
67
+ w?: import("csstype").Property.Width<string | number> | undefined;
68
+ width?: import("csstype").Property.Width<string | number> | undefined;
69
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
70
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
71
+ h?: import("csstype").Property.Height<string | number> | undefined;
72
+ height?: import("csstype").Property.Height<string | number> | undefined;
73
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
74
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
75
+ display?: import("csstype").Property.Display | undefined;
76
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
77
+ overflow?: import("csstype").Property.Overflow | undefined;
78
+ overflowX?: import("csstype").Property.OverflowX | undefined;
79
+ overflowY?: import("csstype").Property.OverflowY | undefined;
80
+ position?: import("csstype").Property.Position | undefined;
81
+ zIndex?: import("csstype").Property.ZIndex | undefined;
82
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
83
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
84
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
85
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
86
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
87
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
88
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
89
+ m?: import("csstype").Property.Margin<string | number> | undefined;
90
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
91
+ mb?: import("csstype").Property.MarginBlock<string | number> | undefined;
92
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
93
+ mbs?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
94
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
95
+ mbe?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
96
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
97
+ mi?: import("csstype").Property.MarginInline<string | number> | undefined;
98
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
99
+ mis?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
100
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
101
+ mie?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
102
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
103
+ p?: import("csstype").Property.Padding<string | number> | undefined;
104
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
105
+ pb?: import("csstype").Property.PaddingBlock<string | number> | undefined;
106
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
107
+ pbs?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
108
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
109
+ pbe?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
110
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
111
+ pi?: import("csstype").Property.PaddingInline<string | number> | undefined;
112
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
113
+ pis?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
114
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
115
+ pie?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
116
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
117
+ fontFamily?: import("csstype").Property.FontFamily | ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | undefined;
118
+ fontSize?: string | number | (string & {}) | undefined;
119
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
120
+ fontWeight?: ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | import("csstype").Property.FontWeight | undefined;
121
+ letterSpacing?: string | number | undefined;
122
+ lineHeight?: string | number | (string & {}) | (number & {}) | undefined;
123
+ textAlign?: import("csstype").Property.TextAlign | undefined;
124
+ textTransform?: import("csstype").Property.TextTransform | undefined;
125
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
126
+ elevation?: "0" | "1" | "2" | undefined;
127
+ invisible?: boolean | undefined;
128
+ withRichContent?: string | boolean | undefined;
129
+ withTruncatedText?: boolean | undefined;
130
+ size?: import("csstype").Property.BlockSize<string | number> | undefined;
131
+ minSize?: import("csstype").Property.BlockSize<string | number> | undefined;
132
+ maxSize?: import("csstype").Property.BlockSize<string | number> | undefined;
133
+ fontScale?: ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | undefined;
134
+ } & {
135
+ children?: import("react").ReactNode;
136
+ } & Omit<import("react").AllHTMLAttributes<HTMLOrSVGElement>, "className"> & Omit<import("react").SVGAttributes<SVGElement>, keyof import("react").AllHTMLAttributes<HTMLOrSVGElement>> & import("react").RefAttributes<unknown>, "onClick">> & {
137
+ readonly type: ({ is: Tag, id, children, label, focus, selected, className, ref, icon, avatar, title, onClick, ...options }: {
138
+ is?: (import("react").ElementType<any> & string) | undefined;
139
+ id?: string | undefined;
140
+ children: import("react").ReactNode;
141
+ label?: string | undefined;
142
+ focus?: boolean | undefined;
143
+ selected?: boolean | undefined;
144
+ className?: string | (<T extends readonly unknown[]>(...args: T) => string) | (string | (<T extends readonly unknown[]>(...args: T) => string))[] | undefined;
145
+ ref?: import("react").Ref<Element> | undefined;
146
+ icon?: string | undefined;
147
+ avatar?: import("react").ReactNode;
148
+ title?: string | undefined;
149
+ } & Pick<{
150
+ is?: import("react").ElementType<any> | undefined;
151
+ className?: string | (<T extends readonly unknown[]>(...args: T) => string) | (string | (<T extends readonly unknown[]>(...args: T) => string))[] | undefined;
152
+ style?: import("react").CSSProperties | undefined;
153
+ border?: import("csstype").Property.Border<string | number> | undefined;
154
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
155
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
156
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
157
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
158
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
159
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
160
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
161
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
162
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
163
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
164
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
165
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
166
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
167
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
168
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
169
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
170
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
171
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
172
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
173
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
174
+ borderColor?: import("csstype").Property.BorderColor | undefined;
175
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
176
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
177
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
178
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
179
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
180
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
181
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
182
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
183
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
184
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
185
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
186
+ color?: import("csstype").Property.Color | undefined;
187
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
188
+ bg?: import("csstype").Property.BackgroundColor | undefined;
189
+ opacity?: import("csstype").Property.Opacity | undefined;
190
+ alignItems?: import("csstype").Property.AlignItems | undefined;
191
+ alignContent?: import("csstype").Property.AlignContent | undefined;
192
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
193
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
194
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
195
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
196
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
197
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
198
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
199
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
200
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
201
+ order?: import("csstype").Property.Order | undefined;
202
+ w?: import("csstype").Property.Width<string | number> | undefined;
203
+ width?: import("csstype").Property.Width<string | number> | undefined;
204
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
205
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
206
+ h?: import("csstype").Property.Height<string | number> | undefined;
207
+ height?: import("csstype").Property.Height<string | number> | undefined;
208
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
209
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
210
+ display?: import("csstype").Property.Display | undefined;
211
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
212
+ overflow?: import("csstype").Property.Overflow | undefined;
213
+ overflowX?: import("csstype").Property.OverflowX | undefined;
214
+ overflowY?: import("csstype").Property.OverflowY | undefined;
215
+ position?: import("csstype").Property.Position | undefined;
216
+ zIndex?: import("csstype").Property.ZIndex | undefined;
217
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
218
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
219
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
220
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
221
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
222
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
223
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
224
+ m?: import("csstype").Property.Margin<string | number> | undefined;
225
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
226
+ mb?: import("csstype").Property.MarginBlock<string | number> | undefined;
227
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
228
+ mbs?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
229
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
230
+ mbe?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
231
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
232
+ mi?: import("csstype").Property.MarginInline<string | number> | undefined;
233
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
234
+ mis?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
235
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
236
+ mie?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
237
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
238
+ p?: import("csstype").Property.Padding<string | number> | undefined;
239
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
240
+ pb?: import("csstype").Property.PaddingBlock<string | number> | undefined;
241
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
242
+ pbs?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
243
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
244
+ pbe?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
245
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
246
+ pi?: import("csstype").Property.PaddingInline<string | number> | undefined;
247
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
248
+ pis?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
249
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
250
+ pie?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
251
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
252
+ fontFamily?: import("csstype").Property.FontFamily | ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | undefined;
253
+ fontSize?: string | number | (string & {}) | undefined;
254
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
255
+ fontWeight?: ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | import("csstype").Property.FontWeight | undefined;
256
+ letterSpacing?: string | number | undefined;
257
+ lineHeight?: string | number | (string & {}) | (number & {}) | undefined;
258
+ textAlign?: import("csstype").Property.TextAlign | undefined;
259
+ textTransform?: import("csstype").Property.TextTransform | undefined;
260
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
261
+ elevation?: "0" | "1" | "2" | undefined;
262
+ invisible?: boolean | undefined;
263
+ withRichContent?: string | boolean | undefined;
264
+ withTruncatedText?: boolean | undefined;
265
+ size?: import("csstype").Property.BlockSize<string | number> | undefined;
266
+ minSize?: import("csstype").Property.BlockSize<string | number> | undefined;
267
+ maxSize?: import("csstype").Property.BlockSize<string | number> | undefined;
268
+ fontScale?: ("hero" | "h1" | "h2" | "h3" | "h4" | "h5" | "p1" | "p2" | "p3" | "p4" | "c1" | "c2" | "micro") | undefined;
269
+ } & {
270
+ children?: import("react").ReactNode;
271
+ } & Omit<import("react").AllHTMLAttributes<HTMLOrSVGElement>, "className"> & Omit<import("react").SVGAttributes<SVGElement>, keyof import("react").AllHTMLAttributes<HTMLOrSVGElement>> & import("react").RefAttributes<unknown>, "onClick">) => JSX.Element;
272
+ } & {
273
+ Description: import("react").FC<{}>;
274
+ Skeleton: () => JSX.Element;
275
+ Avatar: import("react").FC<{}>;
276
+ Menu: import("react").FC<{}>;
277
+ Icon: ({ name, }: {
278
+ name: string | undefined;
279
+ }) => JSX.Element;
280
+ Column: import("react").FC<{}>;
281
+ Content: import("react").FC<{}>;
15
282
  };
16
- export const Option: ForwardRefExoticComponent<OptionProps>;
283
+ export default _default;
284
+ //# 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":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AASA,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" | "s1" | "s2" | "p1" | "p2" | "c1" | "c2" | "micro") | undefined;
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" | "s1" | "s2" | "p1" | "p2" | "c1" | "c2" | "micro") | import("csstype").Property.FontWeight | undefined;
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" | "s1" | "s2" | "p1" | "p2" | "c1" | "c2" | "micro") | undefined;
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" | "s1" | "s2" | "p1" | "p2" | "c1" | "c2" | "micro") | undefined;
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" | "s1" | "s2" | "p1" | "p2" | "c1" | "c2" | "micro") | import("csstype").Property.FontWeight | undefined;
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" | "s1" | "s2" | "p1" | "p2" | "c1" | "c2" | "micro") | undefined;
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>>;
@@ -25,7 +25,7 @@ export * from './Modal';
25
25
  export * from './MultiSelect';
26
26
  export * from './NumberInput';
27
27
  export * from './Options';
28
- export * from './Options/Option';
28
+ export { default as Option } from './Options/Option';
29
29
  export * from './Pagination';
30
30
  export { default as PasswordInput } from './PasswordInput';
31
31
  export * from './StatusBullet';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAC;AAC7C,cAAc,OAAO,CAAC;AACtB,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAC3D,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,QAAQ,CAAC;AACzC,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAC;AAC/C,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC;AAC1B,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAC3D,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,mBAAmB,CAAC;AAClC,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,OAAO,CAAC;AACtB,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,QAAQ,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAC;AAC/C,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAC;AAC7C,cAAc,OAAO,CAAC;AACtB,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAC3D,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,QAAQ,CAAC;AACzC,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAC;AAC/C,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC;AAC1B,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,kBAAkB,CAAC;AACrD,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAC3D,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,mBAAmB,CAAC;AAClC,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,OAAO,CAAC;AACtB,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,QAAQ,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAC;AAC/C,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC"}