@devopness/ui-react 2.145.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/README.md +75 -0
- package/dist/colors/getColor.d.ts +127 -0
- package/dist/colors/index.d.ts +2 -0
- package/dist/colors/types.d.ts +23 -0
- package/dist/components/Buttons/Button/Button.d.ts +64 -0
- package/dist/components/Buttons/Button/Button.styled.d.ts +26 -0
- package/dist/components/Buttons/Button/index.d.ts +1 -0
- package/dist/components/Buttons/index.d.ts +1 -0
- package/dist/components/Primitives/Tooltip/Tooltip.d.ts +41 -0
- package/dist/components/Primitives/Tooltip/Tooltip.styled.d.ts +2 -0
- package/dist/components/Primitives/Tooltip/index.d.ts +1 -0
- package/dist/components/Primitives/index.d.ts +1 -0
- package/dist/components/Templates/Tabs/Tabs.d.ts +20 -0
- package/dist/components/Templates/Tabs/Tabs.styled.d.ts +7 -0
- package/dist/components/Templates/Tabs/index.d.ts +1 -0
- package/dist/components/Templates/index.d.ts +1 -0
- package/dist/components/index.d.ts +3 -0
- package/dist/fonts/getFont.d.ts +15 -0
- package/dist/fonts/index.d.ts +1 -0
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/useWindowSize.d.ts +2 -0
- package/dist/icons/CircleBubble.d.ts +5 -0
- package/dist/icons/getImageAssetUrl.d.ts +7 -0
- package/dist/icons/iconLoader.d.ts +419 -0
- package/dist/icons/index.d.ts +3 -0
- package/dist/index.d.ts +4 -0
- package/dist/ui-react.js +11781 -0
- package/package.json +117 -0
|
@@ -0,0 +1,419 @@
|
|
|
1
|
+
declare const iconList: readonly [{
|
|
2
|
+
readonly type: "icon";
|
|
3
|
+
readonly accessor: "link";
|
|
4
|
+
readonly component: IconType;
|
|
5
|
+
}, {
|
|
6
|
+
readonly type: "icon";
|
|
7
|
+
readonly accessor: "unlink";
|
|
8
|
+
readonly component: IconType;
|
|
9
|
+
}, {
|
|
10
|
+
readonly type: "icon";
|
|
11
|
+
readonly accessor: "tag";
|
|
12
|
+
readonly component: IconType;
|
|
13
|
+
}, {
|
|
14
|
+
readonly type: "icon";
|
|
15
|
+
readonly accessor: "help";
|
|
16
|
+
readonly component: IconType;
|
|
17
|
+
}, {
|
|
18
|
+
readonly type: "icon";
|
|
19
|
+
readonly accessor: "key";
|
|
20
|
+
readonly component: IconType;
|
|
21
|
+
}, {
|
|
22
|
+
readonly type: "icon";
|
|
23
|
+
readonly accessor: "skip";
|
|
24
|
+
readonly component: IconType;
|
|
25
|
+
}, {
|
|
26
|
+
readonly type: "icon";
|
|
27
|
+
readonly accessor: "pending";
|
|
28
|
+
readonly component: IconType;
|
|
29
|
+
}, {
|
|
30
|
+
readonly type: "icon";
|
|
31
|
+
readonly accessor: "loading";
|
|
32
|
+
readonly component: ({ color, size }: {
|
|
33
|
+
color: string;
|
|
34
|
+
size: number;
|
|
35
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
36
|
+
}, {
|
|
37
|
+
readonly type: "icon";
|
|
38
|
+
readonly accessor: "server";
|
|
39
|
+
readonly component: IconType;
|
|
40
|
+
}, {
|
|
41
|
+
readonly type: "icon";
|
|
42
|
+
readonly accessor: "self-hosted";
|
|
43
|
+
readonly component: IconType;
|
|
44
|
+
}, {
|
|
45
|
+
readonly type: "icon";
|
|
46
|
+
readonly accessor: "sortIcon";
|
|
47
|
+
readonly component: IconType;
|
|
48
|
+
}, {
|
|
49
|
+
readonly type: "icon";
|
|
50
|
+
readonly accessor: "add";
|
|
51
|
+
readonly component: IconType;
|
|
52
|
+
}, {
|
|
53
|
+
readonly type: "icon";
|
|
54
|
+
readonly accessor: "plus";
|
|
55
|
+
readonly component: IconType;
|
|
56
|
+
}, {
|
|
57
|
+
readonly type: "icon";
|
|
58
|
+
readonly accessor: "downArrow";
|
|
59
|
+
readonly component: IconType;
|
|
60
|
+
}, {
|
|
61
|
+
readonly type: "icon";
|
|
62
|
+
readonly accessor: "upArrow";
|
|
63
|
+
readonly component: IconType;
|
|
64
|
+
}, {
|
|
65
|
+
readonly type: "icon";
|
|
66
|
+
readonly accessor: "leftArrow";
|
|
67
|
+
readonly component: IconType;
|
|
68
|
+
}, {
|
|
69
|
+
readonly type: "icon";
|
|
70
|
+
readonly accessor: "rightArrow";
|
|
71
|
+
readonly component: IconType;
|
|
72
|
+
}, {
|
|
73
|
+
readonly type: "icon";
|
|
74
|
+
readonly accessor: "config";
|
|
75
|
+
readonly component: IconType;
|
|
76
|
+
}, {
|
|
77
|
+
readonly type: "icon";
|
|
78
|
+
readonly accessor: "userCheck";
|
|
79
|
+
readonly component: IconType;
|
|
80
|
+
}, {
|
|
81
|
+
readonly type: "icon";
|
|
82
|
+
readonly accessor: "userClock";
|
|
83
|
+
readonly component: IconType;
|
|
84
|
+
}, {
|
|
85
|
+
readonly type: "icon";
|
|
86
|
+
readonly accessor: "userTimes";
|
|
87
|
+
readonly component: IconType;
|
|
88
|
+
}, {
|
|
89
|
+
readonly type: "icon";
|
|
90
|
+
readonly accessor: "warningCloud";
|
|
91
|
+
readonly component: IconType;
|
|
92
|
+
}, {
|
|
93
|
+
readonly type: "icon";
|
|
94
|
+
readonly accessor: "error";
|
|
95
|
+
readonly component: IconType;
|
|
96
|
+
}, {
|
|
97
|
+
readonly type: "icon";
|
|
98
|
+
readonly accessor: "warning";
|
|
99
|
+
readonly component: IconType;
|
|
100
|
+
}, {
|
|
101
|
+
readonly type: "icon";
|
|
102
|
+
readonly accessor: "checkCircle";
|
|
103
|
+
readonly component: IconType;
|
|
104
|
+
}, {
|
|
105
|
+
readonly type: "icon";
|
|
106
|
+
readonly accessor: "alarmOn";
|
|
107
|
+
readonly component: IconType;
|
|
108
|
+
}, {
|
|
109
|
+
readonly type: "icon";
|
|
110
|
+
readonly accessor: "dragHandle";
|
|
111
|
+
readonly component: IconType;
|
|
112
|
+
}, {
|
|
113
|
+
readonly type: "icon";
|
|
114
|
+
readonly accessor: "delete";
|
|
115
|
+
readonly component: IconType;
|
|
116
|
+
}, {
|
|
117
|
+
readonly type: "icon";
|
|
118
|
+
readonly accessor: "edit";
|
|
119
|
+
readonly component: IconType;
|
|
120
|
+
}, {
|
|
121
|
+
readonly type: "icon";
|
|
122
|
+
readonly accessor: "lockOpen";
|
|
123
|
+
readonly component: IconType;
|
|
124
|
+
}, {
|
|
125
|
+
readonly type: "icon";
|
|
126
|
+
readonly accessor: "lock";
|
|
127
|
+
readonly component: IconType;
|
|
128
|
+
}, {
|
|
129
|
+
readonly type: "icon";
|
|
130
|
+
readonly accessor: "eye2Line";
|
|
131
|
+
readonly component: IconType;
|
|
132
|
+
}, {
|
|
133
|
+
readonly type: "icon";
|
|
134
|
+
readonly accessor: "cubes";
|
|
135
|
+
readonly component: IconType;
|
|
136
|
+
}, {
|
|
137
|
+
readonly type: "icon";
|
|
138
|
+
readonly accessor: "security";
|
|
139
|
+
readonly component: IconType;
|
|
140
|
+
}, {
|
|
141
|
+
readonly type: "icon";
|
|
142
|
+
readonly accessor: "fillGearFill";
|
|
143
|
+
readonly component: IconType;
|
|
144
|
+
}, {
|
|
145
|
+
readonly type: "icon";
|
|
146
|
+
readonly accessor: "devices";
|
|
147
|
+
readonly component: IconType;
|
|
148
|
+
}, {
|
|
149
|
+
readonly type: "icon";
|
|
150
|
+
readonly accessor: "logout";
|
|
151
|
+
readonly component: IconType;
|
|
152
|
+
}, {
|
|
153
|
+
readonly type: "icon";
|
|
154
|
+
readonly accessor: "codeBadge";
|
|
155
|
+
readonly component: IconType;
|
|
156
|
+
}, {
|
|
157
|
+
readonly type: "icon";
|
|
158
|
+
readonly accessor: "logout";
|
|
159
|
+
readonly component: IconType;
|
|
160
|
+
}, {
|
|
161
|
+
readonly type: "icon";
|
|
162
|
+
readonly accessor: "snooze";
|
|
163
|
+
readonly component: IconType;
|
|
164
|
+
}, {
|
|
165
|
+
readonly type: "icon";
|
|
166
|
+
readonly accessor: "timeroff";
|
|
167
|
+
readonly component: IconType;
|
|
168
|
+
}, {
|
|
169
|
+
readonly type: "icon";
|
|
170
|
+
readonly accessor: "deploy";
|
|
171
|
+
readonly component: IconType;
|
|
172
|
+
}, {
|
|
173
|
+
readonly type: "icon";
|
|
174
|
+
readonly accessor: "outlineCheck";
|
|
175
|
+
readonly component: IconType;
|
|
176
|
+
}, {
|
|
177
|
+
readonly type: "icon";
|
|
178
|
+
readonly accessor: "filledCheck";
|
|
179
|
+
readonly component: IconType;
|
|
180
|
+
}, {
|
|
181
|
+
readonly type: "icon";
|
|
182
|
+
readonly accessor: "settings";
|
|
183
|
+
readonly component: IconType;
|
|
184
|
+
}, {
|
|
185
|
+
readonly type: "icon";
|
|
186
|
+
readonly accessor: "branch";
|
|
187
|
+
readonly component: IconType;
|
|
188
|
+
}, {
|
|
189
|
+
readonly type: "icon";
|
|
190
|
+
readonly accessor: "commit";
|
|
191
|
+
readonly component: IconType;
|
|
192
|
+
}, {
|
|
193
|
+
readonly type: "icon";
|
|
194
|
+
readonly accessor: "user";
|
|
195
|
+
readonly component: IconType;
|
|
196
|
+
}, {
|
|
197
|
+
readonly type: "icon";
|
|
198
|
+
readonly accessor: "copy";
|
|
199
|
+
readonly component: IconType;
|
|
200
|
+
}, {
|
|
201
|
+
readonly type: "icon";
|
|
202
|
+
readonly accessor: "outlineCopy";
|
|
203
|
+
readonly component: IconType;
|
|
204
|
+
}, {
|
|
205
|
+
readonly type: "icon";
|
|
206
|
+
readonly accessor: "lens";
|
|
207
|
+
readonly component: IconType;
|
|
208
|
+
}, {
|
|
209
|
+
readonly type: "icon";
|
|
210
|
+
readonly accessor: "more";
|
|
211
|
+
readonly component: IconType;
|
|
212
|
+
}, {
|
|
213
|
+
readonly type: "icon";
|
|
214
|
+
readonly accessor: "launch";
|
|
215
|
+
readonly component: IconType;
|
|
216
|
+
}, {
|
|
217
|
+
readonly type: "icon";
|
|
218
|
+
readonly accessor: "connect";
|
|
219
|
+
readonly component: IconType;
|
|
220
|
+
}, {
|
|
221
|
+
readonly type: "icon";
|
|
222
|
+
readonly accessor: "cloudServer";
|
|
223
|
+
readonly component: IconType;
|
|
224
|
+
}, {
|
|
225
|
+
readonly type: "icon";
|
|
226
|
+
readonly accessor: "gitBranch";
|
|
227
|
+
readonly component: IconType;
|
|
228
|
+
}, {
|
|
229
|
+
readonly type: "icon";
|
|
230
|
+
readonly accessor: "outlineServer";
|
|
231
|
+
readonly component: IconType;
|
|
232
|
+
}, {
|
|
233
|
+
readonly type: "icon";
|
|
234
|
+
readonly accessor: "storage";
|
|
235
|
+
readonly component: IconType;
|
|
236
|
+
}, {
|
|
237
|
+
readonly type: "icon";
|
|
238
|
+
readonly accessor: "mapPinLine";
|
|
239
|
+
readonly component: IconType;
|
|
240
|
+
}, {
|
|
241
|
+
readonly type: "icon";
|
|
242
|
+
readonly accessor: "outlineSafety";
|
|
243
|
+
readonly component: IconType;
|
|
244
|
+
}, {
|
|
245
|
+
readonly type: "icon";
|
|
246
|
+
readonly accessor: "plusCircle";
|
|
247
|
+
readonly component: IconType;
|
|
248
|
+
}, {
|
|
249
|
+
readonly type: "icon";
|
|
250
|
+
readonly accessor: "riTeamLine";
|
|
251
|
+
readonly component: IconType;
|
|
252
|
+
}, {
|
|
253
|
+
readonly type: "icon";
|
|
254
|
+
readonly accessor: "aiOutlineDollarCircle";
|
|
255
|
+
readonly component: IconType;
|
|
256
|
+
}, {
|
|
257
|
+
readonly type: "icon";
|
|
258
|
+
readonly accessor: "network";
|
|
259
|
+
readonly component: IconType;
|
|
260
|
+
}, {
|
|
261
|
+
readonly type: "icon";
|
|
262
|
+
readonly accessor: "subnet";
|
|
263
|
+
readonly component: IconType;
|
|
264
|
+
}, {
|
|
265
|
+
readonly type: "icon";
|
|
266
|
+
readonly accessor: "mdGroup";
|
|
267
|
+
readonly component: IconType;
|
|
268
|
+
}, {
|
|
269
|
+
readonly type: "icon";
|
|
270
|
+
readonly accessor: "faGlobe";
|
|
271
|
+
readonly component: IconType;
|
|
272
|
+
}, {
|
|
273
|
+
readonly type: "icon";
|
|
274
|
+
readonly accessor: "openInNewWindow";
|
|
275
|
+
readonly component: IconType;
|
|
276
|
+
}, {
|
|
277
|
+
readonly type: "image";
|
|
278
|
+
readonly accessor: "github";
|
|
279
|
+
readonly component: string;
|
|
280
|
+
}, {
|
|
281
|
+
readonly type: "image";
|
|
282
|
+
readonly accessor: "github_white";
|
|
283
|
+
readonly component: string;
|
|
284
|
+
}, {
|
|
285
|
+
readonly type: "image";
|
|
286
|
+
readonly accessor: "gitlab";
|
|
287
|
+
readonly component: string;
|
|
288
|
+
}, {
|
|
289
|
+
readonly type: "image";
|
|
290
|
+
readonly accessor: "bitbucket";
|
|
291
|
+
readonly component: string;
|
|
292
|
+
}, {
|
|
293
|
+
readonly type: "image";
|
|
294
|
+
readonly accessor: "bitbucket_white";
|
|
295
|
+
readonly component: string;
|
|
296
|
+
}, {
|
|
297
|
+
readonly type: "image";
|
|
298
|
+
readonly accessor: "docker";
|
|
299
|
+
readonly component: string;
|
|
300
|
+
}, {
|
|
301
|
+
readonly type: "image";
|
|
302
|
+
readonly accessor: "dotnetcore";
|
|
303
|
+
readonly component: string;
|
|
304
|
+
}, {
|
|
305
|
+
readonly type: "image";
|
|
306
|
+
readonly accessor: "html";
|
|
307
|
+
readonly component: string;
|
|
308
|
+
}, {
|
|
309
|
+
readonly type: "image";
|
|
310
|
+
readonly accessor: "nodejs";
|
|
311
|
+
readonly component: string;
|
|
312
|
+
}, {
|
|
313
|
+
readonly type: "image";
|
|
314
|
+
readonly accessor: "php";
|
|
315
|
+
readonly component: string;
|
|
316
|
+
}, {
|
|
317
|
+
readonly type: "image";
|
|
318
|
+
readonly accessor: "python";
|
|
319
|
+
readonly component: string;
|
|
320
|
+
}, {
|
|
321
|
+
readonly type: "image";
|
|
322
|
+
readonly accessor: "aspnetcore";
|
|
323
|
+
readonly component: string;
|
|
324
|
+
}, {
|
|
325
|
+
readonly type: "image";
|
|
326
|
+
readonly accessor: "laravel";
|
|
327
|
+
readonly component: string;
|
|
328
|
+
}, {
|
|
329
|
+
readonly type: "image";
|
|
330
|
+
readonly accessor: "ubuntu";
|
|
331
|
+
readonly component: string;
|
|
332
|
+
}, {
|
|
333
|
+
readonly type: "image";
|
|
334
|
+
readonly accessor: "centos";
|
|
335
|
+
readonly component: string;
|
|
336
|
+
}, {
|
|
337
|
+
readonly type: "image";
|
|
338
|
+
readonly accessor: "aws";
|
|
339
|
+
readonly component: string;
|
|
340
|
+
}, {
|
|
341
|
+
readonly type: "image";
|
|
342
|
+
readonly accessor: "azure";
|
|
343
|
+
readonly component: string;
|
|
344
|
+
}, {
|
|
345
|
+
readonly type: "image";
|
|
346
|
+
readonly accessor: "digitalocean";
|
|
347
|
+
readonly component: string;
|
|
348
|
+
}, {
|
|
349
|
+
readonly type: "image";
|
|
350
|
+
readonly accessor: "gcp";
|
|
351
|
+
readonly component: string;
|
|
352
|
+
}, {
|
|
353
|
+
readonly type: "image";
|
|
354
|
+
readonly accessor: "parent";
|
|
355
|
+
readonly component: string;
|
|
356
|
+
}, {
|
|
357
|
+
readonly type: "image";
|
|
358
|
+
readonly accessor: "children";
|
|
359
|
+
readonly component: string;
|
|
360
|
+
}, {
|
|
361
|
+
readonly type: "image";
|
|
362
|
+
readonly accessor: "java";
|
|
363
|
+
readonly component: string;
|
|
364
|
+
}, {
|
|
365
|
+
readonly type: "image";
|
|
366
|
+
readonly accessor: "ruby";
|
|
367
|
+
readonly component: string;
|
|
368
|
+
}, {
|
|
369
|
+
readonly type: "image";
|
|
370
|
+
readonly accessor: "shieldLock";
|
|
371
|
+
readonly component: string;
|
|
372
|
+
}, {
|
|
373
|
+
readonly type: "image";
|
|
374
|
+
readonly accessor: "devopness";
|
|
375
|
+
readonly component: string;
|
|
376
|
+
}, {
|
|
377
|
+
readonly type: "icon";
|
|
378
|
+
readonly accessor: "close";
|
|
379
|
+
readonly component: IconType;
|
|
380
|
+
}, {
|
|
381
|
+
readonly type: "icon";
|
|
382
|
+
readonly accessor: "eye";
|
|
383
|
+
readonly component: IconType;
|
|
384
|
+
}, {
|
|
385
|
+
readonly type: "icon";
|
|
386
|
+
readonly accessor: "eyeOff";
|
|
387
|
+
readonly component: IconType;
|
|
388
|
+
}, {
|
|
389
|
+
readonly type: "icon";
|
|
390
|
+
readonly accessor: "passkey";
|
|
391
|
+
readonly component: IconType;
|
|
392
|
+
}, {
|
|
393
|
+
readonly type: "icon";
|
|
394
|
+
readonly accessor: "info";
|
|
395
|
+
readonly component: IconType;
|
|
396
|
+
}, {
|
|
397
|
+
readonly type: "icon";
|
|
398
|
+
readonly accessor: "description";
|
|
399
|
+
readonly component: IconType;
|
|
400
|
+
}, {
|
|
401
|
+
readonly type: "icon";
|
|
402
|
+
readonly accessor: "terminal";
|
|
403
|
+
readonly component: IconType;
|
|
404
|
+
}, {
|
|
405
|
+
readonly type: "icon";
|
|
406
|
+
readonly accessor: "treeView";
|
|
407
|
+
readonly component: IconType;
|
|
408
|
+
}, {
|
|
409
|
+
readonly type: "icon";
|
|
410
|
+
readonly accessor: "folder";
|
|
411
|
+
readonly component: IconType;
|
|
412
|
+
}];
|
|
413
|
+
/**
|
|
414
|
+
* Lists all valid icon accessors
|
|
415
|
+
*/
|
|
416
|
+
type Icon = (typeof iconList)[number]['accessor'];
|
|
417
|
+
declare const iconLoader: (accessorName?: Icon, size?: number, color?: string, opacity?: number, label?: string) => React.JSX.Element;
|
|
418
|
+
export type { Icon };
|
|
419
|
+
export { iconLoader, iconList };
|
package/dist/index.d.ts
ADDED