@rocket.chat/fuselage 0.47.1 → 0.49.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -0
- package/dist/components/PaletteStyleTag/PaletteStyleTag.d.ts +19 -0
- package/dist/components/PaletteStyleTag/PaletteStyleTag.d.ts.map +1 -0
- package/dist/components/PaletteStyleTag/helpers/convertToCss.d.ts +2 -0
- package/dist/components/PaletteStyleTag/helpers/convertToCss.d.ts.map +1 -0
- package/dist/components/PaletteStyleTag/helpers/getPalette.d.ts +354 -0
- package/dist/components/PaletteStyleTag/helpers/getPalette.d.ts.map +1 -0
- package/dist/components/PaletteStyleTag/helpers/isHexColor.d.ts +2 -0
- package/dist/components/PaletteStyleTag/helpers/isHexColor.d.ts.map +1 -0
- package/dist/components/PaletteStyleTag/helpers/isLightColor.d.ts +2 -0
- package/dist/components/PaletteStyleTag/helpers/isLightColor.d.ts.map +1 -0
- package/dist/components/PaletteStyleTag/hooks/useCreateStyleContainer.d.ts +2 -0
- package/dist/components/PaletteStyleTag/hooks/useCreateStyleContainer.d.ts.map +1 -0
- package/dist/components/PaletteStyleTag/index.d.ts +2 -0
- package/dist/components/PaletteStyleTag/index.d.ts.map +1 -0
- package/dist/components/PaletteStyleTag/lib/codeBlockStyles.d.ts +2 -0
- package/dist/components/PaletteStyleTag/lib/codeBlockStyles.d.ts.map +1 -0
- package/dist/components/PaletteStyleTag/lib/themePalettes.d.ts +10 -0
- package/dist/components/PaletteStyleTag/lib/themePalettes.d.ts.map +1 -0
- package/dist/components/PaletteStyleTag/types/themes.d.ts +3 -0
- package/dist/components/PaletteStyleTag/types/themes.d.ts.map +1 -0
- package/dist/components/Sidebar/Item.d.ts +4 -4
- package/dist/components/Sidebar/Item.d.ts.map +1 -1
- package/dist/components/Sidebar/SidebarActions.d.ts +8 -5
- package/dist/components/Sidebar/SidebarActions.d.ts.map +1 -1
- package/dist/components/Sidebar/TopBar/TopBar.d.ts +8 -0
- package/dist/components/Sidebar/TopBar/TopBar.d.ts.map +1 -0
- package/dist/components/Sidebar/TopBar/TopBarAction.d.ts +42 -0
- package/dist/components/Sidebar/TopBar/TopBarAction.d.ts.map +1 -0
- package/dist/components/Sidebar/TopBar/TopBarActions.d.ts +10 -0
- package/dist/components/Sidebar/TopBar/TopBarActions.d.ts.map +1 -0
- package/dist/components/Sidebar/TopBar/TopBarSection.d.ts +8 -0
- package/dist/components/Sidebar/TopBar/TopBarSection.d.ts.map +1 -0
- package/dist/components/Sidebar/TopBar/TopBarTitle.d.ts +7 -0
- package/dist/components/Sidebar/TopBar/TopBarTitle.d.ts.map +1 -0
- package/dist/components/Sidebar/TopBar/TopBarToolBox.d.ts +8 -0
- package/dist/components/Sidebar/TopBar/TopBarToolBox.d.ts.map +1 -0
- package/dist/components/Sidebar/TopBar/TopBarWrapper.d.ts +7 -0
- package/dist/components/Sidebar/TopBar/TopBarWrapper.d.ts.map +1 -0
- package/dist/components/Sidebar/TopBar/index.d.ts +93 -0
- package/dist/components/Sidebar/TopBar/index.d.ts.map +1 -0
- package/dist/components/Sidebar/index.d.ts +4 -4
- package/dist/components/Sidebar/index.d.ts.map +1 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/fuselage.css +1 -1
- package/dist/fuselage.css.map +1 -1
- package/dist/fuselage.development.js +942 -45
- package/dist/fuselage.development.js.map +1 -1
- package/dist/fuselage.production.js +1 -1
- package/package.json +2 -2
- package/dist/components/Sidebar/TopBar.d.ts +0 -134
- package/dist/components/Sidebar/TopBar.d.ts.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 0.49.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1289](https://github.com/RocketChat/fuselage/pull/1289) [`a40d471bd`](https://github.com/RocketChat/fuselage/commit/a40d471bdf71babf652f5df3108a05d92f08d975) Thanks [@juliajforesti](https://github.com/juliajforesti)! - feat(fuselage): new `PaletteStyleTag` component
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`a40d471bd`](https://github.com/RocketChat/fuselage/commit/a40d471bdf71babf652f5df3108a05d92f08d975)]:
|
|
12
|
+
- @rocket.chat/fuselage-tokens@0.33.0
|
|
13
|
+
|
|
14
|
+
## 0.48.0
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- [#1303](https://github.com/RocketChat/fuselage/pull/1303) [`168ff5b12`](https://github.com/RocketChat/fuselage/commit/168ff5b12a6ce1ddf3ba6a881d3634326516faee) Thanks [@dougfabris](https://github.com/dougfabris)! - feat(fuselage): Adds `Tag` focus state
|
|
19
|
+
|
|
3
20
|
## 0.47.1
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { Themes } from './types/themes';
|
|
3
|
+
export declare const PaletteStyleTag: React.NamedExoticComponent<{
|
|
4
|
+
theme?: Themes | undefined;
|
|
5
|
+
/**
|
|
6
|
+
* Default is `main-palette`.
|
|
7
|
+
*/
|
|
8
|
+
tagId?: string | undefined;
|
|
9
|
+
/**
|
|
10
|
+
* Token prefix. Default is `--rcx-color`.
|
|
11
|
+
*/
|
|
12
|
+
prefix?: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* Default is `:root`.
|
|
15
|
+
*/
|
|
16
|
+
selector?: string | undefined;
|
|
17
|
+
}>;
|
|
18
|
+
export default PaletteStyleTag;
|
|
19
|
+
//# sourceMappingURL=PaletteStyleTag.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PaletteStyleTag.d.ts","sourceRoot":"","sources":["../../../src/components/PaletteStyleTag/PaletteStyleTag.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAe,MAAM,OAAO,CAAC;AAOpC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AAQ7C,eAAO,MAAM,eAAe;;IAO1B;;OAEG;;IAEH;;OAEG;;IAEH;;OAEG;;EAaH,CAAC;AAEH,eAAe,eAAe,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"convertToCss.d.ts","sourceRoot":"","sources":["../../../../src/components/PaletteStyleTag/helpers/convertToCss.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY,WACf,OAAO,MAAM,EAAE,MAAM,CAAC,UACtB,MAAM,8BAKI,CAAC"}
|
|
@@ -0,0 +1,354 @@
|
|
|
1
|
+
import type { Themes } from '../types/themes';
|
|
2
|
+
export declare const getTokens: (theme: Themes) => {
|
|
3
|
+
badge: {
|
|
4
|
+
"level-0": string;
|
|
5
|
+
"level-1": string;
|
|
6
|
+
"level-2": string;
|
|
7
|
+
"level-3": string;
|
|
8
|
+
"level-4": string;
|
|
9
|
+
} | {
|
|
10
|
+
"level-0": string;
|
|
11
|
+
"level-1": string;
|
|
12
|
+
"level-2": string;
|
|
13
|
+
"level-3": string;
|
|
14
|
+
"level-4": string;
|
|
15
|
+
} | {
|
|
16
|
+
"level-0": string;
|
|
17
|
+
"level-1": string;
|
|
18
|
+
"level-2": string;
|
|
19
|
+
"level-3": string;
|
|
20
|
+
"level-4": string;
|
|
21
|
+
};
|
|
22
|
+
button: {
|
|
23
|
+
backgroundPrimaryDefault: string;
|
|
24
|
+
backgroundPrimaryHover: string;
|
|
25
|
+
backgroundPrimaryPress: string;
|
|
26
|
+
backgroundPrimaryFocus: string;
|
|
27
|
+
backgroundPrimaryKeyfocus: string;
|
|
28
|
+
backgroundPrimaryDisabled: string;
|
|
29
|
+
fontOnPrimary: string;
|
|
30
|
+
fontOnPrimaryDisabled: string;
|
|
31
|
+
backgroundSecondaryDefault: string;
|
|
32
|
+
backgroundSecondaryHover: string;
|
|
33
|
+
backgroundSecondaryPress: string;
|
|
34
|
+
backgroundSecondaryFocus: string;
|
|
35
|
+
backgroundSecondaryKeyfocus: string;
|
|
36
|
+
backgroundSecondaryDisabled: string;
|
|
37
|
+
fontOnSecondary: string;
|
|
38
|
+
fontOnSecondaryDisabled: string;
|
|
39
|
+
backgroundSecondaryDangerDefault: string;
|
|
40
|
+
backgroundSecondaryDangerHover: string;
|
|
41
|
+
backgroundSecondaryDangerPress: string;
|
|
42
|
+
backgroundSecondaryDangerFocus: string;
|
|
43
|
+
backgroundSecondaryDangerKeyfocus: string;
|
|
44
|
+
backgroundSecondaryDangerDisabled: string;
|
|
45
|
+
fontOnSecondaryDanger: string;
|
|
46
|
+
onSecondaryDangerDisabled: string;
|
|
47
|
+
backgroundDangerDefault: string;
|
|
48
|
+
backgroundDangerHover: string;
|
|
49
|
+
backgroundDangerPress: string;
|
|
50
|
+
backgroundDangerFocus: string;
|
|
51
|
+
backgroundDangerKeyfocus: string;
|
|
52
|
+
backgroundDangerDisabled: string;
|
|
53
|
+
fontOnDanger: string;
|
|
54
|
+
fontOnDangerDisabled: string;
|
|
55
|
+
backgroundSuccessDefault: string;
|
|
56
|
+
backgroundSuccessHover: string;
|
|
57
|
+
backgroundSuccessPress: string;
|
|
58
|
+
backgroundSuccessFocus: string;
|
|
59
|
+
backgroundSuccessKeyfocus: string;
|
|
60
|
+
backgroundSuccessDisabled: string;
|
|
61
|
+
fontOnSuccess: string;
|
|
62
|
+
fontOnSuccessDisabled: string;
|
|
63
|
+
} | {
|
|
64
|
+
backgroundPrimaryDefault: string;
|
|
65
|
+
backgroundPrimaryHover: string;
|
|
66
|
+
backgroundPrimaryPress: string;
|
|
67
|
+
backgroundPrimaryFocus: string;
|
|
68
|
+
backgroundPrimaryKeyfocus: string;
|
|
69
|
+
backgroundPrimaryDisabled: string;
|
|
70
|
+
fontOnPrimary: string;
|
|
71
|
+
fontOnPrimaryDisabled: string;
|
|
72
|
+
backgroundSecondaryDefault: string;
|
|
73
|
+
backgroundSecondaryHover: string;
|
|
74
|
+
backgroundSecondaryPress: string;
|
|
75
|
+
backgroundSecondaryFocus: string;
|
|
76
|
+
backgroundSecondaryKeyfocus: string;
|
|
77
|
+
backgroundSecondaryDisabled: string;
|
|
78
|
+
fontOnSecondary: string;
|
|
79
|
+
fontOnSecondaryDisabled: string;
|
|
80
|
+
backgroundSecondaryDangerDefault: string;
|
|
81
|
+
backgroundSecondaryDangerHover: string;
|
|
82
|
+
backgroundSecondaryDangerPress: string;
|
|
83
|
+
backgroundSecondaryDangerFocus: string;
|
|
84
|
+
backgroundSecondaryDangerKeyfocus: string;
|
|
85
|
+
backgroundSecondaryDangerDisabled: string;
|
|
86
|
+
fontOnSecondaryDanger: string;
|
|
87
|
+
onSecondaryDangerDisabled: string;
|
|
88
|
+
backgroundDangerDefault: string;
|
|
89
|
+
backgroundDangerHover: string;
|
|
90
|
+
backgroundDangerPress: string;
|
|
91
|
+
backgroundDangerFocus: string;
|
|
92
|
+
backgroundDangerKeyfocus: string;
|
|
93
|
+
backgroundDangerDisabled: string;
|
|
94
|
+
fontOnDanger: string;
|
|
95
|
+
fontOnDangerDisabled: string;
|
|
96
|
+
backgroundSuccessDefault: string;
|
|
97
|
+
backgroundSuccessHover: string;
|
|
98
|
+
backgroundSuccessPress: string;
|
|
99
|
+
backgroundSuccessFocus: string;
|
|
100
|
+
backgroundSuccessKeyfocus: string;
|
|
101
|
+
backgroundSuccessDisabled: string;
|
|
102
|
+
fontOnSuccess: string;
|
|
103
|
+
fontOnSuccessDisabled: string;
|
|
104
|
+
} | {
|
|
105
|
+
backgroundPrimaryDefault: string;
|
|
106
|
+
backgroundPrimaryHover: string;
|
|
107
|
+
backgroundPrimaryPress: string;
|
|
108
|
+
backgroundPrimaryFocus: string;
|
|
109
|
+
backgroundPrimaryKeyfocus: string;
|
|
110
|
+
backgroundPrimaryDisabled: string;
|
|
111
|
+
fontOnPrimary: string;
|
|
112
|
+
fontOnPrimaryDisabled: string;
|
|
113
|
+
backgroundSecondaryDefault: string;
|
|
114
|
+
backgroundSecondaryHover: string;
|
|
115
|
+
backgroundSecondaryPress: string;
|
|
116
|
+
backgroundSecondaryFocus: string;
|
|
117
|
+
backgroundSecondaryKeyfocus: string;
|
|
118
|
+
backgroundSecondaryDisabled: string;
|
|
119
|
+
fontOnSecondary: string;
|
|
120
|
+
fontOnSecondaryDisabled: string;
|
|
121
|
+
backgroundSecondaryDangerDefault: string;
|
|
122
|
+
backgroundSecondaryDangerHover: string;
|
|
123
|
+
backgroundSecondaryDangerPress: string;
|
|
124
|
+
backgroundSecondaryDangerFocus: string;
|
|
125
|
+
backgroundSecondaryDangerKeyfocus: string;
|
|
126
|
+
backgroundSecondaryDangerDisabled: string;
|
|
127
|
+
fontOnSecondaryDanger: string;
|
|
128
|
+
onSecondaryDangerDisabled: string;
|
|
129
|
+
backgroundDangerDefault: string;
|
|
130
|
+
backgroundDangerHover: string;
|
|
131
|
+
backgroundDangerPress: string;
|
|
132
|
+
backgroundDangerFocus: string;
|
|
133
|
+
backgroundDangerKeyfocus: string;
|
|
134
|
+
backgroundDangerDisabled: string;
|
|
135
|
+
fontOnDanger: string;
|
|
136
|
+
fontOnDangerDisabled: string;
|
|
137
|
+
backgroundSuccessDefault: string;
|
|
138
|
+
backgroundSuccessHover: string;
|
|
139
|
+
backgroundSuccessPress: string;
|
|
140
|
+
backgroundSuccessFocus: string;
|
|
141
|
+
backgroundSuccessKeyfocus: string;
|
|
142
|
+
backgroundSuccessDisabled: string;
|
|
143
|
+
fontOnSuccess: string;
|
|
144
|
+
fontOnSuccessDisabled: string;
|
|
145
|
+
};
|
|
146
|
+
font: {
|
|
147
|
+
white: string;
|
|
148
|
+
disabled: string;
|
|
149
|
+
annotation: string;
|
|
150
|
+
hint: string;
|
|
151
|
+
secondaryInfo: string;
|
|
152
|
+
default: string;
|
|
153
|
+
titlesLabels: string;
|
|
154
|
+
info: string;
|
|
155
|
+
danger: string;
|
|
156
|
+
pureWhite: string;
|
|
157
|
+
pureBlack: string;
|
|
158
|
+
} | {
|
|
159
|
+
white: string;
|
|
160
|
+
disabled: string;
|
|
161
|
+
annotation: string;
|
|
162
|
+
hint: string;
|
|
163
|
+
secondaryInfo: string;
|
|
164
|
+
default: string;
|
|
165
|
+
titlesLabels: string;
|
|
166
|
+
info: string;
|
|
167
|
+
danger: string;
|
|
168
|
+
pureWhite: string;
|
|
169
|
+
pureBlack: string;
|
|
170
|
+
} | {
|
|
171
|
+
white: string;
|
|
172
|
+
disabled: string;
|
|
173
|
+
annotation: string;
|
|
174
|
+
hint: string;
|
|
175
|
+
secondaryInfo: string;
|
|
176
|
+
default: string;
|
|
177
|
+
titlesLabels: string;
|
|
178
|
+
info: string;
|
|
179
|
+
danger: string;
|
|
180
|
+
pureWhite: string;
|
|
181
|
+
pureBlack: string;
|
|
182
|
+
};
|
|
183
|
+
shadow: {
|
|
184
|
+
highlight: string;
|
|
185
|
+
danger: string;
|
|
186
|
+
"elevation-border": string;
|
|
187
|
+
"elevation-1": string;
|
|
188
|
+
"elevation-2x": string;
|
|
189
|
+
"elevation-2y": string;
|
|
190
|
+
} | {
|
|
191
|
+
highlight: string;
|
|
192
|
+
danger: string;
|
|
193
|
+
"elevation-border": string;
|
|
194
|
+
"elevation-1": string;
|
|
195
|
+
"elevation-2x": string;
|
|
196
|
+
"elevation-2y": string;
|
|
197
|
+
} | {
|
|
198
|
+
highlight: string;
|
|
199
|
+
danger: string;
|
|
200
|
+
"elevation-border": string;
|
|
201
|
+
"elevation-1": string;
|
|
202
|
+
"elevation-2x": string;
|
|
203
|
+
"elevation-2y": string;
|
|
204
|
+
};
|
|
205
|
+
status: {
|
|
206
|
+
info: string;
|
|
207
|
+
"font-on-info": string;
|
|
208
|
+
success: string;
|
|
209
|
+
"font-on-success": string;
|
|
210
|
+
danger: string;
|
|
211
|
+
"font-on-danger": string;
|
|
212
|
+
warning: string;
|
|
213
|
+
"font-on-warning": string;
|
|
214
|
+
"warning-2": string;
|
|
215
|
+
"font-on-warning-2": string;
|
|
216
|
+
"service-1": string;
|
|
217
|
+
"font-on-service-1": string;
|
|
218
|
+
"service-2": string;
|
|
219
|
+
"font-on-service-2": string;
|
|
220
|
+
"service-3": string;
|
|
221
|
+
"font-on-service-3": string;
|
|
222
|
+
} | {
|
|
223
|
+
info: string;
|
|
224
|
+
"font-on-info": string;
|
|
225
|
+
success: string;
|
|
226
|
+
"font-on-success": string;
|
|
227
|
+
danger: string;
|
|
228
|
+
"font-on-danger": string;
|
|
229
|
+
warning: string;
|
|
230
|
+
"font-on-warning": string;
|
|
231
|
+
"warning-2": string;
|
|
232
|
+
"font-on-warning-2": string;
|
|
233
|
+
"service-1": string;
|
|
234
|
+
"font-on-service-1": string;
|
|
235
|
+
"service-2": string;
|
|
236
|
+
"font-on-service-2": string;
|
|
237
|
+
"service-3": string;
|
|
238
|
+
"font-on-service-3": string;
|
|
239
|
+
} | {
|
|
240
|
+
info: string;
|
|
241
|
+
"font-on-info": string;
|
|
242
|
+
success: string;
|
|
243
|
+
"font-on-success": string;
|
|
244
|
+
danger: string;
|
|
245
|
+
"font-on-danger": string;
|
|
246
|
+
warning: string;
|
|
247
|
+
"font-on-warning": string;
|
|
248
|
+
"warning-2": string;
|
|
249
|
+
"font-on-warning-2": string;
|
|
250
|
+
"service-1": string;
|
|
251
|
+
"font-on-service-1": string;
|
|
252
|
+
"service-2": string;
|
|
253
|
+
"font-on-service-2": string;
|
|
254
|
+
"service-3": string;
|
|
255
|
+
"font-on-service-3": string;
|
|
256
|
+
};
|
|
257
|
+
statusBullet: {
|
|
258
|
+
online: string;
|
|
259
|
+
away: string;
|
|
260
|
+
busy: string;
|
|
261
|
+
disabled: string;
|
|
262
|
+
offline: string;
|
|
263
|
+
loading: string;
|
|
264
|
+
} | {
|
|
265
|
+
online: string;
|
|
266
|
+
away: string;
|
|
267
|
+
busy: string;
|
|
268
|
+
disabled: string;
|
|
269
|
+
offline: string;
|
|
270
|
+
loading: string;
|
|
271
|
+
} | {
|
|
272
|
+
online: string;
|
|
273
|
+
away: string;
|
|
274
|
+
busy: string;
|
|
275
|
+
disabled: string;
|
|
276
|
+
offline: string;
|
|
277
|
+
loading: string;
|
|
278
|
+
};
|
|
279
|
+
stroke: {
|
|
280
|
+
extraLight: string;
|
|
281
|
+
light: string;
|
|
282
|
+
medium: string;
|
|
283
|
+
dark: string;
|
|
284
|
+
extraDark: string;
|
|
285
|
+
extraLightHighlight: string;
|
|
286
|
+
highlight: string;
|
|
287
|
+
extraLightError: string;
|
|
288
|
+
error: string;
|
|
289
|
+
} | {
|
|
290
|
+
extraLight: string;
|
|
291
|
+
light: string;
|
|
292
|
+
medium: string;
|
|
293
|
+
dark: string;
|
|
294
|
+
extraDark: string;
|
|
295
|
+
extraLightHighlight: string;
|
|
296
|
+
highlight: string;
|
|
297
|
+
extraLightError: string;
|
|
298
|
+
error: string;
|
|
299
|
+
} | {
|
|
300
|
+
extraLight: string;
|
|
301
|
+
light: string;
|
|
302
|
+
medium: string;
|
|
303
|
+
dark: string;
|
|
304
|
+
extraDark: string;
|
|
305
|
+
extraLightHighlight: string;
|
|
306
|
+
highlight: string;
|
|
307
|
+
extraLightError: string;
|
|
308
|
+
error: string;
|
|
309
|
+
};
|
|
310
|
+
surface: {
|
|
311
|
+
light: string;
|
|
312
|
+
tint: string;
|
|
313
|
+
room: string;
|
|
314
|
+
neutral: string;
|
|
315
|
+
disabled: string;
|
|
316
|
+
hover: string;
|
|
317
|
+
selected: string;
|
|
318
|
+
dark: string;
|
|
319
|
+
featured: string;
|
|
320
|
+
featuredHover: string;
|
|
321
|
+
sidebar: string;
|
|
322
|
+
overlay: string;
|
|
323
|
+
} | {
|
|
324
|
+
light: string;
|
|
325
|
+
tint: string;
|
|
326
|
+
room: string;
|
|
327
|
+
neutral: string;
|
|
328
|
+
disabled: string;
|
|
329
|
+
hover: string;
|
|
330
|
+
selected: string;
|
|
331
|
+
dark: string;
|
|
332
|
+
featured: string;
|
|
333
|
+
featuredHover: string;
|
|
334
|
+
sidebar: string;
|
|
335
|
+
overlay: string;
|
|
336
|
+
} | {
|
|
337
|
+
light: string;
|
|
338
|
+
tint: string;
|
|
339
|
+
room: string;
|
|
340
|
+
neutral: string;
|
|
341
|
+
disabled: string;
|
|
342
|
+
hover: string;
|
|
343
|
+
selected: string;
|
|
344
|
+
dark: string;
|
|
345
|
+
featured: string;
|
|
346
|
+
featuredHover: string;
|
|
347
|
+
sidebar: string;
|
|
348
|
+
overlay: string;
|
|
349
|
+
};
|
|
350
|
+
};
|
|
351
|
+
export declare const getThemePalette: (theme: Themes) => {
|
|
352
|
+
[x: string]: string;
|
|
353
|
+
};
|
|
354
|
+
//# sourceMappingURL=getPalette.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getPalette.d.ts","sourceRoot":"","sources":["../../../../src/components/PaletteStyleTag/helpers/getPalette.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAE9C,eAAO,MAAM,SAAS,UAAW,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAatC,CAAC;AAEF,eAAO,MAAM,eAAe,UAAW,MAAM;;CA0V5C,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"isHexColor.d.ts","sourceRoot":"","sources":["../../../../src/components/PaletteStyleTag/helpers/isHexColor.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,UAAU,QAAS,MAAM,KAAG,OACkC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"isLightColor.d.ts","sourceRoot":"","sources":["../../../../src/components/PaletteStyleTag/helpers/isLightColor.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY,UAAW,MAAM,KAAG,OAO5C,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useCreateStyleContainer.d.ts","sourceRoot":"","sources":["../../../../src/components/PaletteStyleTag/hooks/useCreateStyleContainer.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,uBAAuB,OAAQ,MAAM,gBAiBxC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/PaletteStyleTag/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC"}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export declare const codeBlock = "pre code.hljs {\n\tdisplay: block;\n\toverflow-x: auto;\n\tpadding: 1em;\n}\ncode.hljs {\n\tpadding: 3px 5px;\n}\n.hljs {\n\tbackground: #1d1f21;\n\tcolor: #c5c8c6;\n}\n.hljs span::selection,\n.hljs::selection {\n\tbackground: #373b41;\n}\n.hljs span::-moz-selection,\n.hljs::-moz-selection {\n\tbackground: #373b41;\n}\n.hljs-name,\n.hljs-title {\n\tcolor: #f0c674;\n}\n.hljs-comment,\n.hljs-meta,\n.hljs-meta .hljs-keyword {\n\tcolor: #707880;\n}\n.hljs-deletion,\n.hljs-link,\n.hljs-literal,\n.hljs-number,\n.hljs-symbol {\n\tcolor: #c66;\n}\n.hljs-addition,\n.hljs-doctag,\n.hljs-regexp,\n.hljs-selector-attr,\n.hljs-selector-pseudo,\n.hljs-string {\n\tcolor: #b5bd68;\n}\n.hljs-attribute,\n.hljs-code,\n.hljs-selector-id {\n\tcolor: #b294bb;\n}\n.hljs-bullet,\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-tag {\n\tcolor: #81a2be;\n}\n.hljs-subst,\n.hljs-template-tag,\n.hljs-template-variable,\n.hljs-variable {\n\tcolor: #8abeb7;\n}\n.hljs-built_in,\n.hljs-quote,\n.hljs-section,\n.hljs-selector-class,\n.hljs-type {\n\tcolor: #de935f;\n}\n.hljs-emphasis {\n\tfont-style: italic;\n}\n.hljs-strong {\n\tfont-weight: 700;\n}";
|
|
2
|
+
//# sourceMappingURL=codeBlockStyles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"codeBlockStyles.d.ts","sourceRoot":"","sources":["../../../../src/components/PaletteStyleTag/lib/codeBlockStyles.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,SAAS,4mCAyEpB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"themePalettes.d.ts","sourceRoot":"","sources":["../../../../src/components/PaletteStyleTag/lib/themePalettes.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;CAA2B,CAAC;AAC9C,eAAO,MAAM,YAAY;;CAAmC,CAAC;AAC7D,eAAO,MAAM,IAAI;;CAA0B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"themes.d.ts","sourceRoot":"","sources":["../../../../src/components/PaletteStyleTag/types/themes.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,eAAe,GAAG,OAAO,GAAG,MAAM,GAAG,MAAM,GAAG,eAAe,CAAC;AAE1E,MAAM,MAAM,MAAM,GAAG,OAAO,GAAG,MAAM,GAAG,eAAe,CAAC"}
|
|
@@ -61,14 +61,14 @@ type SidebarItemAvatarProps = {
|
|
|
61
61
|
children?: ReactNode;
|
|
62
62
|
} & AllHTMLAttributes<HTMLElement>;
|
|
63
63
|
export declare const SidebarItemAvatar: ({ ...props }: SidebarItemAvatarProps) => JSX.Element;
|
|
64
|
-
export declare const SidebarItemActions:
|
|
64
|
+
export declare const SidebarItemActions: React.ForwardRefExoticComponent<Pick<{
|
|
65
65
|
align?: "start" | "end" | "center" | undefined;
|
|
66
66
|
stretch?: boolean | undefined;
|
|
67
67
|
wrap?: boolean | undefined;
|
|
68
68
|
vertical?: boolean | undefined;
|
|
69
69
|
small?: boolean | undefined;
|
|
70
70
|
large?: boolean | undefined;
|
|
71
|
-
} & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement
|
|
71
|
+
} & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>, "small" | "wrap" | "large" | "key" | "vertical" | "align" | "stretch" | keyof React.HTMLAttributes<HTMLDivElement>> & React.RefAttributes<HTMLDivElement>>;
|
|
72
72
|
type SidebarItemActionProps = ComponentProps<typeof SidebarAction>;
|
|
73
73
|
export declare const SidebarItemAction: (props: SidebarItemActionProps) => JSX.Element;
|
|
74
74
|
declare const _default: (({ selected, highlighted, clickable, featured, is: Tag, children, ...props }: SidebarItemProps) => JSX.Element) & {
|
|
@@ -81,14 +81,14 @@ declare const _default: (({ selected, highlighted, clickable, featured, is: Tag,
|
|
|
81
81
|
Wrapper: ({ className, ...props }: SidebarItemWrapperProps) => JSX.Element;
|
|
82
82
|
Icon: ({ highlighted, children, icon, className: _className, ...props }: SidebarItemIconProps) => JSX.Element;
|
|
83
83
|
Avatar: ({ ...props }: SidebarItemAvatarProps) => JSX.Element;
|
|
84
|
-
Actions:
|
|
84
|
+
Actions: React.ForwardRefExoticComponent<Pick<{
|
|
85
85
|
align?: "start" | "end" | "center" | undefined;
|
|
86
86
|
stretch?: boolean | undefined;
|
|
87
87
|
wrap?: boolean | undefined;
|
|
88
88
|
vertical?: boolean | undefined;
|
|
89
89
|
small?: boolean | undefined;
|
|
90
90
|
large?: boolean | undefined;
|
|
91
|
-
} & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement
|
|
91
|
+
} & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>, "small" | "wrap" | "large" | "key" | "vertical" | "align" | "stretch" | keyof React.HTMLAttributes<HTMLDivElement>> & React.RefAttributes<HTMLDivElement>>;
|
|
92
92
|
Action: (props: Pick<Pick<{
|
|
93
93
|
icon: "sort" | "bold" | "link" | "strike" | "download" | "list" | "clip" | "italic" | "audio" | "code" | "menu" | "video" | "circle" | "image" | "stop" | "key" | "copy" | React.ReactElement<any, string | React.JSXElementConstructor<any>> | "address-book" | "airplane" | "arrow-back" | "arrow-collapse" | "arrow-down" | "arrow-down-box" | "arrow-expand" | "arrow-fall" | "arrow-forward" | "arrow-jump" | "arrow-loop" | "arrow-return" | "arrow-rise" | "arrow-stack-up" | "arrow-up" | "arrow-up-box" | "at" | "attachment-file" | "avatar" | "backspace" | "bag" | "ball" | "balloon" | "balloon-arrow-left" | "balloon-arrow-top-right" | "balloon-close-top-right" | "balloon-ellipsis" | "balloon-exclamation" | "balloon-off" | "balloons" | "balloon-text" | "ban" | "bell" | "bell-off" | "book" | "brush" | "burger" | "burger-arrow-left" | "burger-menu" | "business" | "calendar" | "camera" | "card" | "check" | "chevron-double-down" | "chevron-double-up" | "chevron-down" | "chevron-expand" | "chevron-left" | "chevron-right" | "chevron-up" | "circle-arrow-down" | "circle-check" | "circle-cross" | "circle-exclamation" | "circle-half" | "circle-quarter" | "circle-three-quarters" | "clipboard" | "clock" | "cloud-arrow-down" | "cloud-arrow-up" | "cloud-plus" | "code-block" | "cog" | "compass" | "condensed-view" | "crop" | "cross" | "cross-small" | "cube" | "customize" | "dashboard" | "desktop" | "desktop-text" | "dialpad" | "doc" | "document-eye" | "doner" | "emoji" | "emoji-neutral" | "emoji-plus" | "equal" | "eraser" | "error-circle" | "exit" | "extended-view" | "eye" | "eye-off" | "file" | "fingerprint" | "flag" | "flask" | "folder" | "formula" | "globe" | "globe-cross" | "globe-off" | "group-by-type" | "hash" | "hashtag-lock" | "h-bar" | "headphone" | "headphone-off" | "headset" | "help" | "history" | "home" | "info" | "joystick" | "kebab" | "keyboard" | "lamp-bulb" | "language" | "leaf" | "lightning" | "list-bullets" | "list-numbers" | "live" | "lock" | "login" | "magnifier" | "mail" | "mail-arrow-top-right" | "meatballs" | "medium-view" | "members" | "mic" | "mic-off" | "mobile" | "mobile-check" | "mobile-exclamation" | "moon" | "musical-note" | "new-window" | "notebook-hashtag" | "notebook-hashtag-crossed" | "pause" | "pause-shape-filled" | "pause-unfilled" | "pencil" | "pencil-box" | "percentage" | "person-arms-spread" | "phone" | "phone-disabled" | "phone-in" | "phone-issue" | "phone-off" | "phone-out" | "pin" | "pin-map" | "play" | "play-shape-filled" | "play-unfilled" | "plus" | "plus-small" | "podcast" | "quote" | "rec" | "refresh" | "rocket" | "send" | "send-filled" | "sheet" | "shield" | "shield-blank" | "shield-check" | "signal" | "smart" | "sms" | "sort-az" | "spanner" | "squares" | "stack" | "star" | "star-filled" | "stop-unfilled" | "stopwatch" | "store" | "success-circle" | "sun" | "tag" | "team" | "team-arrow-right" | "team-lock" | "text-decrease" | "text-increase" | "trash" | "underline" | "undo" | "user" | "user-arrow-right" | "user-lock" | "user-plus" | "video-disabled" | "video-filled" | "video-off" | "volume" | "volume-disabled" | "volume-lock" | "volume-off" | "warning" | "zip" | "add-reaction" | "add-user" | "attachment" | "back" | "baloon-arrow-left" | "baloon-arrow-top-right" | "baloon-close-top-right" | "baloon-ellipsis" | "baloon-exclamation" | "baloons" | "baloon-text" | "cancel" | "canned-response" | "chat" | "checkmark-circled" | "circled-arrow-down" | "computer" | "contact" | "discover" | "discussion" | "edit" | "edit-rounded" | "file-document" | "file-generic" | "file-google-drive" | "file-pdf" | "files-audio" | "file-sheets" | "files-video" | "files-zip" | "game" | "hashtag" | "import" | "info-circled" | "jump" | "jump-to-message" | "katex" | "map-pin" | "message" | "message-disabled" | "modal-warning" | "multiline" | "omnichannel" | "palette" | "permalink" | "post" | "queue" | "reload" | "reply-directly" | "report" | "send-active" | "share" | "shield-alt" | "sign-out" | "sort-amount-down" | "th-list" | "thread" | "upload" | "user-rounded" | "file-keynote" | "hand-pointer" | "list-alt" | "livechat" | "loading" | "play-solid" | "reply" | "adobe" | "facebook" | "github" | "gitlab" | "google" | "google-drive" | "hubot" | "linkedin" | "rocketchat" | "twitter";
|
|
94
94
|
primary?: boolean | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Item.d.ts","sourceRoot":"","sources":["../../../src/components/Sidebar/Item.tsx"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"Item.d.ts","sourceRoot":"","sources":["../../../src/components/Sidebar/Item.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1,8 +1,12 @@
|
|
|
1
|
-
import type { ComponentProps } from 'react';
|
|
2
1
|
import React from 'react';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
export declare const SidebarActions: React.ForwardRefExoticComponent<Pick<{
|
|
3
|
+
align?: "start" | "end" | "center" | undefined;
|
|
4
|
+
stretch?: boolean | undefined;
|
|
5
|
+
wrap?: boolean | undefined;
|
|
6
|
+
vertical?: boolean | undefined;
|
|
7
|
+
small?: boolean | undefined;
|
|
8
|
+
large?: boolean | undefined;
|
|
9
|
+
} & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>, "small" | "wrap" | "large" | "key" | "vertical" | "align" | "stretch" | keyof React.HTMLAttributes<HTMLDivElement>> & React.RefAttributes<HTMLDivElement>>;
|
|
6
10
|
export declare const SidebarAction: React.ForwardRefExoticComponent<Pick<Pick<{
|
|
7
11
|
icon: "sort" | "bold" | "link" | "strike" | "download" | "list" | "clip" | "italic" | "audio" | "code" | "menu" | "video" | "circle" | "image" | "stop" | "key" | "copy" | React.ReactElement<any, string | React.JSXElementConstructor<any>> | "address-book" | "airplane" | "arrow-back" | "arrow-collapse" | "arrow-down" | "arrow-down-box" | "arrow-expand" | "arrow-fall" | "arrow-forward" | "arrow-jump" | "arrow-loop" | "arrow-return" | "arrow-rise" | "arrow-stack-up" | "arrow-up" | "arrow-up-box" | "at" | "attachment-file" | "avatar" | "backspace" | "bag" | "ball" | "balloon" | "balloon-arrow-left" | "balloon-arrow-top-right" | "balloon-close-top-right" | "balloon-ellipsis" | "balloon-exclamation" | "balloon-off" | "balloons" | "balloon-text" | "ban" | "bell" | "bell-off" | "book" | "brush" | "burger" | "burger-arrow-left" | "burger-menu" | "business" | "calendar" | "camera" | "card" | "check" | "chevron-double-down" | "chevron-double-up" | "chevron-down" | "chevron-expand" | "chevron-left" | "chevron-right" | "chevron-up" | "circle-arrow-down" | "circle-check" | "circle-cross" | "circle-exclamation" | "circle-half" | "circle-quarter" | "circle-three-quarters" | "clipboard" | "clock" | "cloud-arrow-down" | "cloud-arrow-up" | "cloud-plus" | "code-block" | "cog" | "compass" | "condensed-view" | "crop" | "cross" | "cross-small" | "cube" | "customize" | "dashboard" | "desktop" | "desktop-text" | "dialpad" | "doc" | "document-eye" | "doner" | "emoji" | "emoji-neutral" | "emoji-plus" | "equal" | "eraser" | "error-circle" | "exit" | "extended-view" | "eye" | "eye-off" | "file" | "fingerprint" | "flag" | "flask" | "folder" | "formula" | "globe" | "globe-cross" | "globe-off" | "group-by-type" | "hash" | "hashtag-lock" | "h-bar" | "headphone" | "headphone-off" | "headset" | "help" | "history" | "home" | "info" | "joystick" | "kebab" | "keyboard" | "lamp-bulb" | "language" | "leaf" | "lightning" | "list-bullets" | "list-numbers" | "live" | "lock" | "login" | "magnifier" | "mail" | "mail-arrow-top-right" | "meatballs" | "medium-view" | "members" | "mic" | "mic-off" | "mobile" | "mobile-check" | "mobile-exclamation" | "moon" | "musical-note" | "new-window" | "notebook-hashtag" | "notebook-hashtag-crossed" | "pause" | "pause-shape-filled" | "pause-unfilled" | "pencil" | "pencil-box" | "percentage" | "person-arms-spread" | "phone" | "phone-disabled" | "phone-in" | "phone-issue" | "phone-off" | "phone-out" | "pin" | "pin-map" | "play" | "play-shape-filled" | "play-unfilled" | "plus" | "plus-small" | "podcast" | "quote" | "rec" | "refresh" | "rocket" | "send" | "send-filled" | "sheet" | "shield" | "shield-blank" | "shield-check" | "signal" | "smart" | "sms" | "sort-az" | "spanner" | "squares" | "stack" | "star" | "star-filled" | "stop-unfilled" | "stopwatch" | "store" | "success-circle" | "sun" | "tag" | "team" | "team-arrow-right" | "team-lock" | "text-decrease" | "text-increase" | "trash" | "underline" | "undo" | "user" | "user-arrow-right" | "user-lock" | "user-plus" | "video-disabled" | "video-filled" | "video-off" | "volume" | "volume-disabled" | "volume-lock" | "volume-off" | "warning" | "zip" | "add-reaction" | "add-user" | "attachment" | "back" | "baloon-arrow-left" | "baloon-arrow-top-right" | "baloon-close-top-right" | "baloon-ellipsis" | "baloon-exclamation" | "baloons" | "baloon-text" | "cancel" | "canned-response" | "chat" | "checkmark-circled" | "circled-arrow-down" | "computer" | "contact" | "discover" | "discussion" | "edit" | "edit-rounded" | "file-document" | "file-generic" | "file-google-drive" | "file-pdf" | "files-audio" | "file-sheets" | "files-video" | "files-zip" | "game" | "hashtag" | "import" | "info-circled" | "jump" | "jump-to-message" | "katex" | "map-pin" | "message" | "message-disabled" | "modal-warning" | "multiline" | "omnichannel" | "palette" | "permalink" | "post" | "queue" | "reload" | "reply-directly" | "report" | "send-active" | "share" | "shield-alt" | "sign-out" | "sort-amount-down" | "th-list" | "thread" | "upload" | "user-rounded" | "file-keynote" | "hand-pointer" | "list-alt" | "livechat" | "loading" | "play-solid" | "reply" | "adobe" | "facebook" | "github" | "gitlab" | "google" | "google-drive" | "hubot" | "linkedin" | "rocketchat" | "twitter";
|
|
8
12
|
primary?: boolean | undefined;
|
|
@@ -37,5 +41,4 @@ export declare const SidebarAction: React.ForwardRefExoticComponent<Pick<Pick<{
|
|
|
37
41
|
tiny?: boolean | undefined;
|
|
38
42
|
mini?: boolean | undefined;
|
|
39
43
|
}> & React.RefAttributes<HTMLElement>>;
|
|
40
|
-
export {};
|
|
41
44
|
//# sourceMappingURL=SidebarActions.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SidebarActions.d.ts","sourceRoot":"","sources":["../../../src/components/Sidebar/SidebarActions.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SidebarActions.d.ts","sourceRoot":"","sources":["../../../src/components/Sidebar/SidebarActions.tsx"],"names":[],"mappings":"AACA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAO1C,eAAO,MAAM,cAAc;;;;;;;0OAKzB,CAAC;AAIH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sCAKxB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TopBar.d.ts","sourceRoot":"","sources":["../../../../src/components/Sidebar/TopBar/TopBar.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAGvC,KAAK,WAAW,GAAG;IACjB,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,eAAO,MAAM,MAAM,4BAA6B,WAAW,gBAO1D,CAAC"}
|