@rocket.chat/fuselage 0.28.0 → 0.30.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/LICENSE +1 -1
  2. package/dist/components/Box/Flex/index.d.ts +32 -0
  3. package/dist/components/Box/index.d.ts +1 -0
  4. package/dist/components/EmailInput/index.d.ts +4 -1
  5. package/dist/components/Grid/index.d.ts +10 -2
  6. package/dist/components/Message/Message.d.ts +845 -9
  7. package/dist/components/Message/Message.d.ts.map +1 -1
  8. package/dist/components/Message/ThreadMessage/index.d.ts +1 -1
  9. package/dist/components/Message/ThreadMessage/index.d.ts.map +1 -1
  10. package/dist/components/Message/index.d.ts +1 -1
  11. package/dist/components/Message/index.d.ts.map +1 -1
  12. package/dist/components/Modal/index.d.ts +2 -1
  13. package/dist/components/Options/index.d.ts +3 -1
  14. package/dist/components/Options/useCursor.d.ts +10 -0
  15. package/dist/components/Options/useCursor.d.ts.map +1 -0
  16. package/dist/components/Options/useVisible.d.ts +3 -0
  17. package/dist/components/Options/useVisible.d.ts.map +1 -0
  18. package/dist/components/PasswordInput/PasswordInput.d.ts +1 -1
  19. package/dist/components/ProgressBar/index.d.ts +128 -8
  20. package/dist/components/ProgressBar/index.d.ts.map +1 -0
  21. package/dist/components/ProgressBar/spec.d.ts +2 -0
  22. package/dist/components/ProgressBar/spec.d.ts.map +1 -0
  23. package/dist/components/Sidebar/index.d.ts +29 -3
  24. package/dist/components/TextAreaInput/index.d.ts +4 -1
  25. package/dist/components/UrlInput/UrlInput.d.ts +1 -1
  26. package/dist/fuselage.development.js +12392 -11590
  27. package/dist/fuselage.development.js.map +1 -1
  28. package/dist/fuselage.production.js +1 -1
  29. package/dist/helpers/prependClassName.d.ts +4 -1
  30. package/dist/helpers/prependClassName.d.ts.map +1 -1
  31. package/package.json +28 -22
@@ -1,15 +1,851 @@
1
- import { ComponentProps, FC, ForwardRefExoticComponent } from 'react';
1
+ import React, { AllHTMLAttributes, FC, ReactElement, ReactNode } from 'react';
2
2
  import './Messages.styles.scss';
3
- import { Box } from '../Box';
4
- export declare const MessageLeftContainer: FC;
3
+ declare type MessageLeftContainerProps = {
4
+ children?: ReactNode;
5
+ };
6
+ export declare const MessageLeftContainer: (props: MessageLeftContainerProps) => ReactElement;
7
+ declare type MessageBodyProps = AllHTMLAttributes<HTMLDivElement> & {
8
+ clamp?: 2 | 3 | 4;
9
+ };
5
10
  export declare const MessageBlock: FC<{
6
11
  className?: string;
7
12
  }>;
8
- declare type MessageProps = ComponentProps<typeof Box> & {
9
- clickable?: true | false;
10
- sequential?: boolean;
11
- className: string;
13
+ declare const _default: React.ForwardRefExoticComponent<React.AllHTMLAttributes<HTMLDivElement> & {
14
+ clickable?: boolean | undefined;
15
+ sequential?: boolean | undefined;
16
+ } & React.RefAttributes<HTMLDivElement>> & {
17
+ Metrics: React.FC<{}> & {
18
+ Item: React.FC<{
19
+ is?: React.ElementType<any> | undefined;
20
+ className?: string | (<T extends readonly unknown[]>(...args: T) => string) | (string | (<T extends readonly unknown[]>(...args: T) => string))[] | undefined;
21
+ style?: React.CSSProperties | undefined;
22
+ border?: import("csstype").Property.Border<string | number> | undefined;
23
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
24
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
25
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
26
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
27
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
28
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
29
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
30
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
31
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
32
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
33
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
34
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
35
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
36
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
37
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
38
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
39
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
40
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
41
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
42
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
43
+ borderColor?: import("csstype").Property.BorderColor | undefined;
44
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
45
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
46
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
47
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
48
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
49
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
50
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
51
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
52
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
53
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
54
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
55
+ color?: import("csstype").Property.Color | undefined;
56
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
57
+ bg?: import("csstype").Property.BackgroundColor | undefined;
58
+ opacity?: import("csstype").Property.Opacity | undefined;
59
+ alignItems?: import("csstype").Property.AlignItems | undefined;
60
+ alignContent?: import("csstype").Property.AlignContent | undefined;
61
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
62
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
63
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
64
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
65
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
66
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
67
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
68
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
69
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
70
+ order?: import("csstype").Property.Order | undefined;
71
+ w?: import("csstype").Property.Width<string | number> | undefined;
72
+ width?: import("csstype").Property.Width<string | number> | undefined;
73
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
74
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
75
+ h?: import("csstype").Property.Height<string | number> | undefined;
76
+ height?: import("csstype").Property.Height<string | number> | undefined;
77
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
78
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
79
+ display?: import("csstype").Property.Display | undefined;
80
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
81
+ overflow?: import("csstype").Property.Overflow | undefined;
82
+ overflowX?: import("csstype").Property.OverflowX | undefined;
83
+ overflowY?: import("csstype").Property.OverflowY | undefined;
84
+ position?: import("csstype").Property.Position | undefined;
85
+ zIndex?: import("csstype").Property.ZIndex | undefined;
86
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
87
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
88
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
89
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
90
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
91
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
92
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
93
+ m?: import("csstype").Property.Margin<string | number> | undefined;
94
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
95
+ mb?: import("csstype").Property.MarginBlock<string | number> | undefined;
96
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
97
+ mbs?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
98
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
99
+ mbe?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
100
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
101
+ mi?: import("csstype").Property.MarginInline<string | number> | undefined;
102
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
103
+ mis?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
104
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
105
+ mie?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
106
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
107
+ p?: import("csstype").Property.Padding<string | number> | undefined;
108
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
109
+ pb?: import("csstype").Property.PaddingBlock<string | number> | undefined;
110
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
111
+ pbs?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
112
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
113
+ pbe?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
114
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
115
+ pi?: import("csstype").Property.PaddingInline<string | number> | undefined;
116
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
117
+ pis?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
118
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
119
+ pie?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
120
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
121
+ fontFamily?: import("csstype").Property.FontFamily | ("h1" | "s1" | "s2" | "p1" | "p2" | "c1" | "c2" | "micro") | undefined;
122
+ fontSize?: string | number | (string & {}) | undefined;
123
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
124
+ fontWeight?: ("h1" | "s1" | "s2" | "p1" | "p2" | "c1" | "c2" | "micro") | import("csstype").Property.FontWeight | undefined;
125
+ letterSpacing?: string | number | undefined;
126
+ lineHeight?: string | number | (string & {}) | (number & {}) | undefined;
127
+ textAlign?: import("csstype").Property.TextAlign | undefined;
128
+ textTransform?: import("csstype").Property.TextTransform | undefined;
129
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
130
+ elevation?: "0" | "1" | "2" | undefined;
131
+ invisible?: boolean | undefined;
132
+ withRichContent?: string | boolean | undefined;
133
+ withTruncatedText?: boolean | undefined;
134
+ size?: import("csstype").Property.BlockSize<string | number> | undefined;
135
+ minSize?: import("csstype").Property.BlockSize<string | number> | undefined;
136
+ maxSize?: import("csstype").Property.BlockSize<string | number> | undefined;
137
+ fontScale?: ("h1" | "s1" | "s2" | "p1" | "p2" | "c1" | "c2" | "micro") | undefined;
138
+ } & {
139
+ children?: React.ReactNode;
140
+ } & Omit<React.AllHTMLAttributes<HTMLOrSVGElement>, "className"> & Omit<React.SVGAttributes<SVGElement>, keyof React.AllHTMLAttributes<HTMLOrSVGElement>> & React.RefAttributes<unknown>> & {
141
+ Icon: React.FC<{
142
+ name: "thread" | "user" | "clock" | "discussion";
143
+ }>;
144
+ Label: React.FC<{
145
+ is?: React.ElementType<any> | undefined;
146
+ className?: string | (<T extends readonly unknown[]>(...args: T) => string) | (string | (<T extends readonly unknown[]>(...args: T) => string))[] | undefined;
147
+ style?: React.CSSProperties | undefined;
148
+ border?: import("csstype").Property.Border<string | number> | undefined;
149
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
150
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
151
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
152
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
153
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
154
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
155
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
156
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
157
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
158
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
159
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
160
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
161
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
162
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
163
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
164
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
165
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
166
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
167
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
168
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
169
+ borderColor?: import("csstype").Property.BorderColor | undefined;
170
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
171
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
172
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
173
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
174
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
175
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
176
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
177
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
178
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
179
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
180
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
181
+ color?: import("csstype").Property.Color | undefined;
182
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
183
+ bg?: import("csstype").Property.BackgroundColor | undefined;
184
+ opacity?: import("csstype").Property.Opacity | undefined;
185
+ alignItems?: import("csstype").Property.AlignItems | undefined;
186
+ alignContent?: import("csstype").Property.AlignContent | undefined;
187
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
188
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
189
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
190
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
191
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
192
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
193
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
194
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
195
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
196
+ order?: import("csstype").Property.Order | undefined;
197
+ w?: import("csstype").Property.Width<string | number> | undefined;
198
+ width?: import("csstype").Property.Width<string | number> | undefined;
199
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
200
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
201
+ h?: import("csstype").Property.Height<string | number> | undefined;
202
+ height?: import("csstype").Property.Height<string | number> | undefined;
203
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
204
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
205
+ display?: import("csstype").Property.Display | undefined;
206
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
207
+ overflow?: import("csstype").Property.Overflow | undefined;
208
+ overflowX?: import("csstype").Property.OverflowX | undefined;
209
+ overflowY?: import("csstype").Property.OverflowY | undefined;
210
+ position?: import("csstype").Property.Position | undefined;
211
+ zIndex?: import("csstype").Property.ZIndex | undefined;
212
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
213
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
214
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
215
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
216
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
217
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
218
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
219
+ m?: import("csstype").Property.Margin<string | number> | undefined;
220
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
221
+ mb?: import("csstype").Property.MarginBlock<string | number> | undefined;
222
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
223
+ mbs?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
224
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
225
+ mbe?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
226
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
227
+ mi?: import("csstype").Property.MarginInline<string | number> | undefined;
228
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
229
+ mis?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
230
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
231
+ mie?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
232
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
233
+ p?: import("csstype").Property.Padding<string | number> | undefined;
234
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
235
+ pb?: import("csstype").Property.PaddingBlock<string | number> | undefined;
236
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
237
+ pbs?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
238
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
239
+ pbe?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
240
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
241
+ pi?: import("csstype").Property.PaddingInline<string | number> | undefined;
242
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
243
+ pis?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
244
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
245
+ pie?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
246
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
247
+ fontFamily?: import("csstype").Property.FontFamily | ("h1" | "s1" | "s2" | "p1" | "p2" | "c1" | "c2" | "micro") | undefined;
248
+ fontSize?: string | number | (string & {}) | undefined;
249
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
250
+ fontWeight?: ("h1" | "s1" | "s2" | "p1" | "p2" | "c1" | "c2" | "micro") | import("csstype").Property.FontWeight | undefined;
251
+ letterSpacing?: string | number | undefined;
252
+ lineHeight?: string | number | (string & {}) | (number & {}) | undefined;
253
+ textAlign?: import("csstype").Property.TextAlign | undefined;
254
+ textTransform?: import("csstype").Property.TextTransform | undefined;
255
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
256
+ elevation?: "0" | "1" | "2" | undefined;
257
+ invisible?: boolean | undefined;
258
+ withRichContent?: string | boolean | undefined;
259
+ withTruncatedText?: boolean | undefined;
260
+ size?: import("csstype").Property.BlockSize<string | number> | undefined;
261
+ minSize?: import("csstype").Property.BlockSize<string | number> | undefined;
262
+ maxSize?: import("csstype").Property.BlockSize<string | number> | undefined;
263
+ fontScale?: ("h1" | "s1" | "s2" | "p1" | "p2" | "c1" | "c2" | "micro") | undefined;
264
+ } & {
265
+ children?: React.ReactNode;
266
+ } & Omit<React.AllHTMLAttributes<HTMLOrSVGElement>, "className"> & Omit<React.SVGAttributes<SVGElement>, keyof React.AllHTMLAttributes<HTMLOrSVGElement>> & React.RefAttributes<unknown>>;
267
+ };
268
+ Following: React.FC<{
269
+ name: "bell" | "bell-off";
270
+ }>;
271
+ Reply: React.FC<{
272
+ is?: React.ElementType<any> | undefined;
273
+ className?: string | (<T extends readonly unknown[]>(...args: T) => string) | (string | (<T extends readonly unknown[]>(...args: T) => string))[] | undefined;
274
+ style?: React.CSSProperties | undefined;
275
+ border?: import("csstype").Property.Border<string | number> | undefined;
276
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
277
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
278
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
279
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
280
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
281
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
282
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
283
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
284
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
285
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
286
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
287
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
288
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
289
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
290
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
291
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
292
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
293
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
294
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
295
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
296
+ borderColor?: import("csstype").Property.BorderColor | undefined;
297
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
298
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
299
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
300
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
301
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
302
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
303
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
304
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
305
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
306
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
307
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
308
+ color?: import("csstype").Property.Color | undefined;
309
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
310
+ bg?: import("csstype").Property.BackgroundColor | undefined;
311
+ opacity?: import("csstype").Property.Opacity | undefined;
312
+ alignItems?: import("csstype").Property.AlignItems | undefined;
313
+ alignContent?: import("csstype").Property.AlignContent | undefined;
314
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
315
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
316
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
317
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
318
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
319
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
320
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
321
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
322
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
323
+ order?: import("csstype").Property.Order | undefined;
324
+ w?: import("csstype").Property.Width<string | number> | undefined;
325
+ width?: import("csstype").Property.Width<string | number> | undefined;
326
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
327
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
328
+ h?: import("csstype").Property.Height<string | number> | undefined;
329
+ height?: import("csstype").Property.Height<string | number> | undefined;
330
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
331
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
332
+ display?: import("csstype").Property.Display | undefined;
333
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
334
+ overflow?: import("csstype").Property.Overflow | undefined;
335
+ overflowX?: import("csstype").Property.OverflowX | undefined;
336
+ overflowY?: import("csstype").Property.OverflowY | undefined;
337
+ position?: import("csstype").Property.Position | undefined;
338
+ zIndex?: import("csstype").Property.ZIndex | undefined;
339
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
340
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
341
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
342
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
343
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
344
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
345
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
346
+ m?: import("csstype").Property.Margin<string | number> | undefined;
347
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
348
+ mb?: import("csstype").Property.MarginBlock<string | number> | undefined;
349
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
350
+ mbs?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
351
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
352
+ mbe?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
353
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
354
+ mi?: import("csstype").Property.MarginInline<string | number> | undefined;
355
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
356
+ mis?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
357
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
358
+ mie?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
359
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
360
+ p?: import("csstype").Property.Padding<string | number> | undefined;
361
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
362
+ pb?: import("csstype").Property.PaddingBlock<string | number> | undefined;
363
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
364
+ pbs?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
365
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
366
+ pbe?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
367
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
368
+ pi?: import("csstype").Property.PaddingInline<string | number> | undefined;
369
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
370
+ pis?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
371
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
372
+ pie?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
373
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
374
+ fontFamily?: import("csstype").Property.FontFamily | ("h1" | "s1" | "s2" | "p1" | "p2" | "c1" | "c2" | "micro") | undefined;
375
+ fontSize?: string | number | (string & {}) | undefined;
376
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
377
+ fontWeight?: ("h1" | "s1" | "s2" | "p1" | "p2" | "c1" | "c2" | "micro") | import("csstype").Property.FontWeight | undefined;
378
+ letterSpacing?: string | number | undefined;
379
+ lineHeight?: string | number | (string & {}) | (number & {}) | undefined;
380
+ textAlign?: import("csstype").Property.TextAlign | undefined;
381
+ textTransform?: import("csstype").Property.TextTransform | undefined;
382
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
383
+ elevation?: "0" | "1" | "2" | undefined;
384
+ invisible?: boolean | undefined;
385
+ withRichContent?: string | boolean | undefined;
386
+ withTruncatedText?: boolean | undefined;
387
+ size?: import("csstype").Property.BlockSize<string | number> | undefined;
388
+ minSize?: import("csstype").Property.BlockSize<string | number> | undefined;
389
+ maxSize?: import("csstype").Property.BlockSize<string | number> | undefined;
390
+ fontScale?: ("h1" | "s1" | "s2" | "p1" | "p2" | "c1" | "c2" | "micro") | undefined;
391
+ } & {
392
+ children?: React.ReactNode;
393
+ } & Omit<React.AllHTMLAttributes<HTMLOrSVGElement>, "className"> & Omit<React.SVGAttributes<SVGElement>, keyof React.AllHTMLAttributes<HTMLOrSVGElement>> & React.RefAttributes<unknown> & {
394
+ info?: boolean | undefined;
395
+ success?: boolean | undefined;
396
+ warning?: boolean | undefined;
397
+ danger?: boolean | undefined;
398
+ primary?: boolean | undefined;
399
+ ghost?: boolean | undefined;
400
+ nude?: boolean | undefined;
401
+ ghostish?: boolean | undefined;
402
+ small?: boolean | undefined;
403
+ square?: boolean | undefined;
404
+ }>;
405
+ };
406
+ Toolbox: React.FC<{
407
+ is?: React.ElementType<any> | undefined;
408
+ className?: string | (<T extends readonly unknown[]>(...args: T) => string) | (string | (<T extends readonly unknown[]>(...args: T) => string))[] | undefined;
409
+ style?: React.CSSProperties | undefined;
410
+ border?: import("csstype").Property.Border<string | number> | undefined;
411
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
412
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
413
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
414
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
415
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
416
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
417
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
418
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
419
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
420
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
421
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
422
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
423
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
424
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
425
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
426
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
427
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
428
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
429
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
430
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
431
+ borderColor?: import("csstype").Property.BorderColor | undefined;
432
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
433
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
434
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
435
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
436
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
437
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
438
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
439
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
440
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
441
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
442
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
443
+ color?: import("csstype").Property.Color | undefined;
444
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
445
+ bg?: import("csstype").Property.BackgroundColor | undefined;
446
+ opacity?: import("csstype").Property.Opacity | undefined;
447
+ alignItems?: import("csstype").Property.AlignItems | undefined;
448
+ alignContent?: import("csstype").Property.AlignContent | undefined;
449
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
450
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
451
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
452
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
453
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
454
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
455
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
456
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
457
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
458
+ order?: import("csstype").Property.Order | undefined;
459
+ w?: import("csstype").Property.Width<string | number> | undefined;
460
+ width?: import("csstype").Property.Width<string | number> | undefined;
461
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
462
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
463
+ h?: import("csstype").Property.Height<string | number> | undefined;
464
+ height?: import("csstype").Property.Height<string | number> | undefined;
465
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
466
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
467
+ display?: import("csstype").Property.Display | undefined;
468
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
469
+ overflow?: import("csstype").Property.Overflow | undefined;
470
+ overflowX?: import("csstype").Property.OverflowX | undefined;
471
+ overflowY?: import("csstype").Property.OverflowY | undefined;
472
+ position?: import("csstype").Property.Position | undefined;
473
+ zIndex?: import("csstype").Property.ZIndex | undefined;
474
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
475
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
476
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
477
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
478
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
479
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
480
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
481
+ m?: import("csstype").Property.Margin<string | number> | undefined;
482
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
483
+ mb?: import("csstype").Property.MarginBlock<string | number> | undefined;
484
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
485
+ mbs?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
486
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
487
+ mbe?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
488
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
489
+ mi?: import("csstype").Property.MarginInline<string | number> | undefined;
490
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
491
+ mis?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
492
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
493
+ mie?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
494
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
495
+ p?: import("csstype").Property.Padding<string | number> | undefined;
496
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
497
+ pb?: import("csstype").Property.PaddingBlock<string | number> | undefined;
498
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
499
+ pbs?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
500
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
501
+ pbe?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
502
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
503
+ pi?: import("csstype").Property.PaddingInline<string | number> | undefined;
504
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
505
+ pis?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
506
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
507
+ pie?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
508
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
509
+ fontFamily?: import("csstype").Property.FontFamily | ("h1" | "s1" | "s2" | "p1" | "p2" | "c1" | "c2" | "micro") | undefined;
510
+ fontSize?: string | number | (string & {}) | undefined;
511
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
512
+ fontWeight?: ("h1" | "s1" | "s2" | "p1" | "p2" | "c1" | "c2" | "micro") | import("csstype").Property.FontWeight | undefined;
513
+ letterSpacing?: string | number | undefined;
514
+ lineHeight?: string | number | (string & {}) | (number & {}) | undefined;
515
+ textAlign?: import("csstype").Property.TextAlign | undefined;
516
+ textTransform?: import("csstype").Property.TextTransform | undefined;
517
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
518
+ elevation?: "0" | "1" | "2" | undefined;
519
+ invisible?: boolean | undefined;
520
+ withRichContent?: string | boolean | undefined;
521
+ withTruncatedText?: boolean | undefined;
522
+ size?: import("csstype").Property.BlockSize<string | number> | undefined;
523
+ minSize?: import("csstype").Property.BlockSize<string | number> | undefined;
524
+ maxSize?: import("csstype").Property.BlockSize<string | number> | undefined;
525
+ fontScale?: ("h1" | "s1" | "s2" | "p1" | "p2" | "c1" | "c2" | "micro") | undefined;
526
+ } & {
527
+ children?: React.ReactNode;
528
+ } & Omit<React.AllHTMLAttributes<HTMLOrSVGElement>, "className"> & Omit<React.SVGAttributes<SVGElement>, keyof React.AllHTMLAttributes<HTMLOrSVGElement>> & React.RefAttributes<unknown> & {
529
+ align?: "start" | "end" | "center" | undefined;
530
+ stretch?: boolean | undefined;
531
+ wrap?: boolean | undefined;
532
+ vertical?: boolean | undefined;
533
+ small?: boolean | undefined;
534
+ medium?: boolean | undefined;
535
+ }> & {
536
+ Item: React.FC<{
537
+ is?: React.ElementType<any> | undefined;
538
+ className?: string | (<T extends readonly unknown[]>(...args: T) => string) | (string | (<T extends readonly unknown[]>(...args: T) => string))[] | undefined;
539
+ style?: React.CSSProperties | undefined;
540
+ border?: import("csstype").Property.Border<string | number> | undefined;
541
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
542
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
543
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
544
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
545
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
546
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
547
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
548
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
549
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
550
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
551
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
552
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
553
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
554
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
555
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
556
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
557
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
558
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
559
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
560
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
561
+ borderColor?: import("csstype").Property.BorderColor | undefined;
562
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
563
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
564
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
565
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
566
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
567
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
568
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
569
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
570
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
571
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
572
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
573
+ color?: import("csstype").Property.Color | undefined;
574
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
575
+ bg?: import("csstype").Property.BackgroundColor | undefined;
576
+ opacity?: import("csstype").Property.Opacity | undefined;
577
+ alignItems?: import("csstype").Property.AlignItems | undefined;
578
+ alignContent?: import("csstype").Property.AlignContent | undefined;
579
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
580
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
581
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
582
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
583
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
584
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
585
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
586
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
587
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
588
+ order?: import("csstype").Property.Order | undefined;
589
+ w?: import("csstype").Property.Width<string | number> | undefined;
590
+ width?: import("csstype").Property.Width<string | number> | undefined;
591
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
592
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
593
+ h?: import("csstype").Property.Height<string | number> | undefined;
594
+ height?: import("csstype").Property.Height<string | number> | undefined;
595
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
596
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
597
+ display?: import("csstype").Property.Display | undefined;
598
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
599
+ overflow?: import("csstype").Property.Overflow | undefined;
600
+ overflowX?: import("csstype").Property.OverflowX | undefined;
601
+ overflowY?: import("csstype").Property.OverflowY | undefined;
602
+ position?: import("csstype").Property.Position | undefined;
603
+ zIndex?: import("csstype").Property.ZIndex | undefined;
604
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
605
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
606
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
607
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
608
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
609
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
610
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
611
+ m?: import("csstype").Property.Margin<string | number> | undefined;
612
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
613
+ mb?: import("csstype").Property.MarginBlock<string | number> | undefined;
614
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
615
+ mbs?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
616
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
617
+ mbe?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
618
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
619
+ mi?: import("csstype").Property.MarginInline<string | number> | undefined;
620
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
621
+ mis?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
622
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
623
+ mie?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
624
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
625
+ p?: import("csstype").Property.Padding<string | number> | undefined;
626
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
627
+ pb?: import("csstype").Property.PaddingBlock<string | number> | undefined;
628
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
629
+ pbs?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
630
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
631
+ pbe?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
632
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
633
+ pi?: import("csstype").Property.PaddingInline<string | number> | undefined;
634
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
635
+ pis?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
636
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
637
+ pie?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
638
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
639
+ fontFamily?: import("csstype").Property.FontFamily | ("h1" | "s1" | "s2" | "p1" | "p2" | "c1" | "c2" | "micro") | undefined;
640
+ fontSize?: string | number | (string & {}) | undefined;
641
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
642
+ fontWeight?: ("h1" | "s1" | "s2" | "p1" | "p2" | "c1" | "c2" | "micro") | import("csstype").Property.FontWeight | undefined;
643
+ letterSpacing?: string | number | undefined;
644
+ lineHeight?: string | number | (string & {}) | (number & {}) | undefined;
645
+ textAlign?: import("csstype").Property.TextAlign | undefined;
646
+ textTransform?: import("csstype").Property.TextTransform | undefined;
647
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
648
+ elevation?: "0" | "1" | "2" | undefined;
649
+ invisible?: boolean | undefined;
650
+ withRichContent?: string | boolean | undefined;
651
+ withTruncatedText?: boolean | undefined;
652
+ size?: import("csstype").Property.BlockSize<string | number> | undefined;
653
+ minSize?: import("csstype").Property.BlockSize<string | number> | undefined;
654
+ maxSize?: import("csstype").Property.BlockSize<string | number> | undefined;
655
+ fontScale?: ("h1" | "s1" | "s2" | "p1" | "p2" | "c1" | "c2" | "micro") | undefined;
656
+ } & {
657
+ children?: React.ReactNode;
658
+ } & Omit<React.AllHTMLAttributes<HTMLOrSVGElement>, "className"> & Omit<React.SVGAttributes<SVGElement>, keyof React.AllHTMLAttributes<HTMLOrSVGElement>> & React.RefAttributes<unknown> & {
659
+ info?: boolean | undefined;
660
+ success?: boolean | undefined;
661
+ warning?: boolean | undefined;
662
+ danger?: boolean | undefined;
663
+ primary?: boolean | undefined;
664
+ ghost?: boolean | undefined;
665
+ nude?: boolean | undefined;
666
+ ghostish?: boolean | undefined;
667
+ small?: boolean | undefined;
668
+ square?: boolean | undefined;
669
+ } & {
670
+ icon: string;
671
+ mini?: boolean | undefined;
672
+ tiny?: boolean | undefined;
673
+ }>;
674
+ Wrapper: React.FC<{}>;
675
+ Menu: React.FC<Omit<{
676
+ is?: React.ElementType<any> | undefined;
677
+ className?: string | (<T extends readonly unknown[]>(...args: T) => string) | (string | (<T extends readonly unknown[]>(...args: T) => string))[] | undefined;
678
+ style?: React.CSSProperties | undefined;
679
+ border?: import("csstype").Property.Border<string | number> | undefined;
680
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
681
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
682
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
683
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
684
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
685
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
686
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
687
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
688
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
689
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
690
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
691
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
692
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
693
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
694
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
695
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
696
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
697
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
698
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
699
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
700
+ borderColor?: import("csstype").Property.BorderColor | undefined;
701
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
702
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
703
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
704
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
705
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
706
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
707
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
708
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
709
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
710
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
711
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
712
+ color?: import("csstype").Property.Color | undefined;
713
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
714
+ bg?: import("csstype").Property.BackgroundColor | undefined;
715
+ opacity?: import("csstype").Property.Opacity | undefined;
716
+ alignItems?: import("csstype").Property.AlignItems | undefined;
717
+ alignContent?: import("csstype").Property.AlignContent | undefined;
718
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
719
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
720
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
721
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
722
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
723
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
724
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
725
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
726
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
727
+ order?: import("csstype").Property.Order | undefined;
728
+ w?: import("csstype").Property.Width<string | number> | undefined;
729
+ width?: import("csstype").Property.Width<string | number> | undefined;
730
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
731
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
732
+ h?: import("csstype").Property.Height<string | number> | undefined;
733
+ height?: import("csstype").Property.Height<string | number> | undefined;
734
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
735
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
736
+ display?: import("csstype").Property.Display | undefined;
737
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
738
+ overflow?: import("csstype").Property.Overflow | undefined;
739
+ overflowX?: import("csstype").Property.OverflowX | undefined;
740
+ overflowY?: import("csstype").Property.OverflowY | undefined;
741
+ position?: import("csstype").Property.Position | undefined;
742
+ zIndex?: import("csstype").Property.ZIndex | undefined;
743
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
744
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
745
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
746
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
747
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
748
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
749
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
750
+ m?: import("csstype").Property.Margin<string | number> | undefined;
751
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
752
+ mb?: import("csstype").Property.MarginBlock<string | number> | undefined;
753
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
754
+ mbs?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
755
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
756
+ mbe?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
757
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
758
+ mi?: import("csstype").Property.MarginInline<string | number> | undefined;
759
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
760
+ mis?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
761
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
762
+ mie?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
763
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
764
+ p?: import("csstype").Property.Padding<string | number> | undefined;
765
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
766
+ pb?: import("csstype").Property.PaddingBlock<string | number> | undefined;
767
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
768
+ pbs?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
769
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
770
+ pbe?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
771
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
772
+ pi?: import("csstype").Property.PaddingInline<string | number> | undefined;
773
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
774
+ pis?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
775
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
776
+ pie?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
777
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
778
+ fontFamily?: import("csstype").Property.FontFamily | ("h1" | "s1" | "s2" | "p1" | "p2" | "c1" | "c2" | "micro") | undefined;
779
+ fontSize?: string | number | (string & {}) | undefined;
780
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
781
+ fontWeight?: ("h1" | "s1" | "s2" | "p1" | "p2" | "c1" | "c2" | "micro") | import("csstype").Property.FontWeight | undefined;
782
+ letterSpacing?: string | number | undefined;
783
+ lineHeight?: string | number | (string & {}) | (number & {}) | undefined;
784
+ textAlign?: import("csstype").Property.TextAlign | undefined;
785
+ textTransform?: import("csstype").Property.TextTransform | undefined;
786
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
787
+ elevation?: "0" | "1" | "2" | undefined;
788
+ invisible?: boolean | undefined;
789
+ withRichContent?: string | boolean | undefined;
790
+ withTruncatedText?: boolean | undefined;
791
+ size?: import("csstype").Property.BlockSize<string | number> | undefined;
792
+ minSize?: import("csstype").Property.BlockSize<string | number> | undefined;
793
+ maxSize?: import("csstype").Property.BlockSize<string | number> | undefined;
794
+ fontScale?: ("h1" | "s1" | "s2" | "p1" | "p2" | "c1" | "c2" | "micro") | undefined;
795
+ } & {
796
+ children?: React.ReactNode;
797
+ } & Omit<React.AllHTMLAttributes<HTMLOrSVGElement>, "className"> & Omit<React.SVGAttributes<SVGElement>, keyof React.AllHTMLAttributes<HTMLOrSVGElement>> & React.RefAttributes<unknown> & {
798
+ info?: boolean | undefined;
799
+ success?: boolean | undefined;
800
+ warning?: boolean | undefined;
801
+ danger?: boolean | undefined;
802
+ primary?: boolean | undefined;
803
+ ghost?: boolean | undefined;
804
+ nude?: boolean | undefined;
805
+ ghostish?: boolean | undefined;
806
+ small?: boolean | undefined;
807
+ square?: boolean | undefined;
808
+ } & {
809
+ icon: string;
810
+ mini?: boolean | undefined;
811
+ tiny?: boolean | undefined;
812
+ }, "icon"> & {
813
+ icon?: string | undefined;
814
+ options: {
815
+ [id: string]: {
816
+ label: any;
817
+ action: () => void;
818
+ };
819
+ };
820
+ optionWidth?: (import("csstype").Property.Width<string | number> & (string | number)) | undefined;
821
+ placement?: import("@rocket.chat/fuselage-hooks").Placements | undefined;
822
+ renderItem?: ((props: import("..").OptionProps) => React.ReactNode) | undefined;
823
+ }>;
824
+ };
825
+ Container: React.FC<{}>;
826
+ ContainerFixed: React.FC<{}>;
827
+ LeftContainer: (props: MessageLeftContainerProps) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
828
+ Header: React.FC<{}>;
829
+ Body: ({ clamp, className, ...props }: MessageBodyProps) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
830
+ Block: React.FC<{
831
+ className?: string | undefined;
832
+ }>;
833
+ Timestamp: React.FC<{
834
+ children: string;
835
+ }>;
836
+ Name: React.FC<{
837
+ children: string;
838
+ }>;
839
+ Username: React.FC<{
840
+ children: string;
841
+ }>;
842
+ Roles: React.FC<{}>;
843
+ Role: React.FC<{
844
+ children: string;
845
+ }>;
846
+ Divider: React.FC<{
847
+ unreadLabel?: string | undefined;
848
+ }>;
12
849
  };
13
- export declare const Message: ForwardRefExoticComponent<MessageProps>;
14
- export {};
850
+ export default _default;
15
851
  //# sourceMappingURL=Message.d.ts.map