@rufous/ui 0.3.42 → 0.3.44
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.cjs +1726 -1676
- package/dist/main.d.cts +372 -37
- package/dist/main.d.ts +372 -37
- package/dist/main.js +1195 -1193
- package/package.json +1 -1
package/dist/main.d.cts
CHANGED
|
@@ -104,30 +104,35 @@ declare const APP_THEMES: {
|
|
|
104
104
|
};
|
|
105
105
|
};
|
|
106
106
|
|
|
107
|
-
interface ArchivedIconProps extends
|
|
107
|
+
interface ArchivedIconProps extends React.SVGProps<SVGSVGElement> {
|
|
108
108
|
color?: string;
|
|
109
|
+
size?: number;
|
|
109
110
|
}
|
|
110
|
-
declare const ArchivedIcon:
|
|
111
|
+
declare const ArchivedIcon: React.FC<ArchivedIconProps>;
|
|
111
112
|
|
|
112
|
-
interface CopyIconProps extends
|
|
113
|
+
interface CopyIconProps extends React.SVGProps<SVGSVGElement> {
|
|
113
114
|
color?: string;
|
|
115
|
+
size?: number;
|
|
114
116
|
}
|
|
115
|
-
declare const CopyIcon:
|
|
117
|
+
declare const CopyIcon: React.FC<CopyIconProps>;
|
|
116
118
|
|
|
117
119
|
interface EditIconProps extends React__default.SVGProps<SVGSVGElement> {
|
|
118
120
|
color?: string;
|
|
121
|
+
size?: number;
|
|
119
122
|
}
|
|
120
123
|
declare const EditIcon: React__default.FC<EditIconProps>;
|
|
121
124
|
|
|
122
125
|
interface HeplOutlinedIconProps extends React__default.SVGProps<SVGSVGElement> {
|
|
123
126
|
color?: string;
|
|
127
|
+
size?: number;
|
|
124
128
|
}
|
|
125
129
|
declare const HelpOutlinedIcon: React__default.FC<HeplOutlinedIconProps>;
|
|
126
130
|
|
|
127
|
-
interface HierarchyIconProps extends
|
|
131
|
+
interface HierarchyIconProps extends React.SVGProps<SVGSVGElement> {
|
|
128
132
|
color?: string;
|
|
133
|
+
size?: number;
|
|
129
134
|
}
|
|
130
|
-
declare const HierarchyIcon:
|
|
135
|
+
declare const HierarchyIcon: React.FC<HierarchyIconProps>;
|
|
131
136
|
|
|
132
137
|
interface NineDotMenuIconProps extends React__default.SVGProps<SVGSVGElement> {
|
|
133
138
|
color?: string;
|
|
@@ -139,108 +144,128 @@ interface RufousLauncherIconProps extends React__default.SVGProps<SVGSVGElement>
|
|
|
139
144
|
}
|
|
140
145
|
declare const RufousLauncherIcon: React__default.FC<RufousLauncherIconProps>;
|
|
141
146
|
|
|
142
|
-
interface UnArchivedIconProps extends
|
|
147
|
+
interface UnArchivedIconProps extends React.SVGProps<SVGSVGElement> {
|
|
143
148
|
color?: string;
|
|
149
|
+
size?: number;
|
|
144
150
|
}
|
|
145
|
-
declare const UnArchivedIcon:
|
|
151
|
+
declare const UnArchivedIcon: React.FC<UnArchivedIconProps>;
|
|
146
152
|
|
|
147
|
-
interface WorkItemIconProps extends
|
|
153
|
+
interface WorkItemIconProps extends React.SVGProps<SVGSVGElement> {
|
|
148
154
|
color?: string;
|
|
155
|
+
size?: number;
|
|
149
156
|
}
|
|
150
|
-
declare const WorkItemIcon:
|
|
157
|
+
declare const WorkItemIcon: React.FC<WorkItemIconProps>;
|
|
151
158
|
|
|
152
|
-
interface DownloadIconProps extends
|
|
159
|
+
interface DownloadIconProps extends React.SVGProps<SVGSVGElement> {
|
|
153
160
|
color?: string;
|
|
161
|
+
size?: number;
|
|
154
162
|
}
|
|
155
|
-
declare const DownloadIcon:
|
|
163
|
+
declare const DownloadIcon: React.FC<DownloadIconProps>;
|
|
156
164
|
|
|
157
165
|
interface ActivateUserProps extends React.SVGProps<SVGSVGElement> {
|
|
158
166
|
color?: string;
|
|
167
|
+
size?: number;
|
|
159
168
|
}
|
|
160
169
|
declare const ActivateUserIcon: React.FC<ActivateUserProps>;
|
|
161
170
|
|
|
162
171
|
interface AssignGroupProps extends React.SVGProps<SVGSVGElement> {
|
|
163
172
|
color?: string;
|
|
173
|
+
size?: number;
|
|
164
174
|
}
|
|
165
175
|
declare const AssignGroupIcon: React.FC<AssignGroupProps>;
|
|
166
176
|
|
|
167
177
|
interface DifficultyAllProps extends React.SVGProps<SVGSVGElement> {
|
|
168
178
|
color?: string;
|
|
179
|
+
size?: number;
|
|
169
180
|
}
|
|
170
181
|
declare const DifficultyAllIcon: React.FC<DifficultyAllProps>;
|
|
171
182
|
|
|
172
183
|
interface DifficultyEasyProps extends React.SVGProps<SVGSVGElement> {
|
|
173
184
|
color?: string;
|
|
185
|
+
size?: number;
|
|
174
186
|
}
|
|
175
187
|
declare const DifficultyEasyIcon: React.FC<DifficultyEasyProps>;
|
|
176
188
|
|
|
177
189
|
interface DifficultyHardProps extends React.SVGProps<SVGSVGElement> {
|
|
178
190
|
color?: string;
|
|
191
|
+
size?: number;
|
|
179
192
|
}
|
|
180
193
|
declare const DifficultyHardIcon: React.FC<DifficultyHardProps>;
|
|
181
194
|
|
|
182
195
|
interface DifficultyMediumProps extends React.SVGProps<SVGSVGElement> {
|
|
183
196
|
color?: string;
|
|
197
|
+
size?: number;
|
|
184
198
|
}
|
|
185
199
|
declare const DifficultyMediumIcon: React.FC<DifficultyMediumProps>;
|
|
186
200
|
|
|
187
201
|
interface InactiveGroupProps extends React.SVGProps<SVGSVGElement> {
|
|
188
202
|
color?: string;
|
|
203
|
+
size?: number;
|
|
189
204
|
}
|
|
190
205
|
declare const InactiveGroupIcon: React.FC<InactiveGroupProps>;
|
|
191
206
|
|
|
192
|
-
interface
|
|
207
|
+
interface InvoiceIconProps extends React.SVGProps<SVGSVGElement> {
|
|
193
208
|
color?: string;
|
|
209
|
+
size?: number;
|
|
194
210
|
}
|
|
195
|
-
declare const InvoiceIcon: React.FC<
|
|
211
|
+
declare const InvoiceIcon: React.FC<InvoiceIconProps>;
|
|
196
212
|
|
|
197
|
-
interface
|
|
213
|
+
interface LogsIconProps extends React.SVGProps<SVGSVGElement> {
|
|
198
214
|
color?: string;
|
|
215
|
+
size?: number;
|
|
199
216
|
}
|
|
200
|
-
declare const LogsIcon: React.FC<
|
|
217
|
+
declare const LogsIcon: React.FC<LogsIconProps>;
|
|
201
218
|
|
|
202
|
-
interface
|
|
219
|
+
interface QuestionStatusAllProps extends React.SVGProps<SVGSVGElement> {
|
|
203
220
|
color?: string;
|
|
221
|
+
size?: number;
|
|
204
222
|
}
|
|
205
|
-
declare const QuestionStatusAllIcon: React.FC<
|
|
223
|
+
declare const QuestionStatusAllIcon: React.FC<QuestionStatusAllProps>;
|
|
206
224
|
|
|
207
|
-
interface
|
|
225
|
+
interface QuestionStatusPrivateProps extends React.SVGProps<SVGSVGElement> {
|
|
208
226
|
color?: string;
|
|
227
|
+
size?: number;
|
|
209
228
|
}
|
|
210
|
-
declare const QuestionStatusPrivateIcon: React.FC<
|
|
229
|
+
declare const QuestionStatusPrivateIcon: React.FC<QuestionStatusPrivateProps>;
|
|
211
230
|
|
|
212
|
-
interface
|
|
231
|
+
interface QuestionStatusPublicProps extends React.SVGProps<SVGSVGElement> {
|
|
213
232
|
color?: string;
|
|
233
|
+
size?: number;
|
|
214
234
|
}
|
|
215
|
-
declare const QuestionStatusPublicIcon: React.FC<
|
|
235
|
+
declare const QuestionStatusPublicIcon: React.FC<QuestionStatusPublicProps>;
|
|
216
236
|
|
|
217
237
|
interface QuestionTypeAllIconProps extends React.SVGProps<SVGSVGElement> {
|
|
218
238
|
color?: string;
|
|
239
|
+
size?: number;
|
|
219
240
|
}
|
|
220
241
|
declare const QuestionTypeAllIcon: React.FC<QuestionTypeAllIconProps>;
|
|
221
242
|
|
|
222
|
-
interface
|
|
243
|
+
interface QuestionTypeCodingProps extends React.SVGProps<SVGSVGElement> {
|
|
223
244
|
color?: string;
|
|
245
|
+
size?: number;
|
|
224
246
|
}
|
|
225
|
-
declare const QuestionTypeCodingIcon: React.FC<
|
|
247
|
+
declare const QuestionTypeCodingIcon: React.FC<QuestionTypeCodingProps>;
|
|
226
248
|
|
|
227
|
-
interface
|
|
249
|
+
interface QuestionTypeDescriptiveProps extends React.SVGProps<SVGSVGElement> {
|
|
228
250
|
color?: string;
|
|
251
|
+
size?: number;
|
|
229
252
|
}
|
|
230
|
-
declare const QuestionTypeDescriptiveIcon: React.FC<
|
|
253
|
+
declare const QuestionTypeDescriptiveIcon: React.FC<QuestionTypeDescriptiveProps>;
|
|
231
254
|
|
|
232
255
|
interface QuestionTypeMultipleIconProps extends React.SVGProps<SVGSVGElement> {
|
|
233
256
|
color?: string;
|
|
234
257
|
}
|
|
235
258
|
declare const QuestionTypeMultipleIcon: React.FC<QuestionTypeMultipleIconProps>;
|
|
236
259
|
|
|
237
|
-
interface
|
|
260
|
+
interface QuestionTypeSingleProps extends React.SVGProps<SVGSVGElement> {
|
|
238
261
|
color?: string;
|
|
262
|
+
size?: number;
|
|
239
263
|
}
|
|
240
|
-
declare const QuestionTypeSingleIcon: React.FC<
|
|
264
|
+
declare const QuestionTypeSingleIcon: React.FC<QuestionTypeSingleProps>;
|
|
241
265
|
|
|
242
266
|
interface ResendInviteIconProps extends React.SVGProps<SVGSVGElement> {
|
|
243
267
|
color?: string;
|
|
268
|
+
size?: number;
|
|
244
269
|
}
|
|
245
270
|
declare const ResendInviteIcon: React.FC<ResendInviteIconProps>;
|
|
246
271
|
|
|
@@ -261,16 +286,19 @@ declare const UnsubscribeIcon: React.FC<UnsubscribeIconProps>;
|
|
|
261
286
|
|
|
262
287
|
interface UploadIconProps extends React.SVGProps<SVGSVGElement> {
|
|
263
288
|
color?: string;
|
|
289
|
+
size?: number;
|
|
264
290
|
}
|
|
265
291
|
declare const UploadIcon: React.FC<UploadIconProps>;
|
|
266
292
|
|
|
267
293
|
interface ViewIconProps extends React.SVGProps<SVGSVGElement> {
|
|
268
294
|
color?: string;
|
|
295
|
+
size?: number;
|
|
269
296
|
}
|
|
270
297
|
declare const ViewIcon: React.FC<ViewIconProps>;
|
|
271
298
|
|
|
272
299
|
interface UserAssignIconProps extends React.SVGProps<SVGSVGElement> {
|
|
273
300
|
color?: string;
|
|
301
|
+
size?: number;
|
|
274
302
|
}
|
|
275
303
|
declare const UserAssignIcon: React.FC<UserAssignIconProps>;
|
|
276
304
|
|
|
@@ -281,46 +309,55 @@ declare const RufousBirdIcon: React.FC<RufousBirdIconProps>;
|
|
|
281
309
|
|
|
282
310
|
interface TickIconProps extends React.SVGProps<SVGSVGElement> {
|
|
283
311
|
color?: string;
|
|
312
|
+
size?: number;
|
|
284
313
|
}
|
|
285
314
|
declare const TickIcon: React.FC<TickIconProps>;
|
|
286
315
|
|
|
287
316
|
interface TimerIconProps extends React.SVGProps<SVGSVGElement> {
|
|
288
317
|
color?: string;
|
|
318
|
+
size?: number;
|
|
289
319
|
}
|
|
290
320
|
declare const TimerIcon: React.FC<TimerIconProps>;
|
|
291
321
|
|
|
292
322
|
interface TrashIconProps extends React.SVGProps<SVGSVGElement> {
|
|
293
323
|
color?: string;
|
|
324
|
+
size?: number;
|
|
294
325
|
}
|
|
295
326
|
declare const TrashIcon: React.FC<TrashIconProps>;
|
|
296
327
|
|
|
297
|
-
interface
|
|
328
|
+
interface EditChatIconProps extends React.SVGProps<SVGSVGElement> {
|
|
298
329
|
color?: string;
|
|
330
|
+
size?: number;
|
|
299
331
|
}
|
|
300
|
-
declare const EditChatIcon: React.FC<
|
|
332
|
+
declare const EditChatIcon: React.FC<EditChatIconProps>;
|
|
301
333
|
|
|
302
334
|
interface SidebarProps extends React.SVGProps<SVGSVGElement> {
|
|
303
335
|
color?: string;
|
|
336
|
+
size?: number;
|
|
304
337
|
}
|
|
305
338
|
declare const SidebarIcon: React.FC<SidebarProps>;
|
|
306
339
|
|
|
307
|
-
interface NotificationIconProps extends
|
|
340
|
+
interface NotificationIconProps extends React.SVGProps<SVGSVGElement> {
|
|
308
341
|
color?: string;
|
|
342
|
+
size?: number;
|
|
309
343
|
}
|
|
310
|
-
declare const NotificationIcon:
|
|
344
|
+
declare const NotificationIcon: React.FC<NotificationIconProps>;
|
|
311
345
|
|
|
312
|
-
interface RefreshIconProps extends
|
|
346
|
+
interface RefreshIconProps extends React.SVGProps<SVGSVGElement> {
|
|
313
347
|
color?: string;
|
|
348
|
+
size?: number;
|
|
314
349
|
}
|
|
315
|
-
declare const RefreshIcon:
|
|
350
|
+
declare const RefreshIcon: React.FC<RefreshIconProps>;
|
|
316
351
|
|
|
317
352
|
interface DollarIconProps extends React.SVGProps<SVGSVGElement> {
|
|
318
353
|
color?: string;
|
|
354
|
+
size?: number;
|
|
319
355
|
}
|
|
320
356
|
declare const DollarIcon: React.FC<DollarIconProps>;
|
|
321
357
|
|
|
322
358
|
interface EngagementIconProps extends React.SVGProps<SVGSVGElement> {
|
|
323
359
|
color?: string;
|
|
360
|
+
size?: number;
|
|
324
361
|
}
|
|
325
362
|
declare const EngagementIcon: React.FC<EngagementIconProps>;
|
|
326
363
|
|
|
@@ -336,16 +373,19 @@ declare const IndustryIcon: React.FC<IndustryIconProps>;
|
|
|
336
373
|
|
|
337
374
|
interface MinExperienceIconProps extends React.SVGProps<SVGSVGElement> {
|
|
338
375
|
color?: string;
|
|
376
|
+
size?: number;
|
|
339
377
|
}
|
|
340
378
|
declare const MinExperienceIcon: React.FC<MinExperienceIconProps>;
|
|
341
379
|
|
|
342
380
|
interface ProjectIconProps extends React.SVGProps<SVGSVGElement> {
|
|
343
381
|
color?: string;
|
|
382
|
+
size?: number;
|
|
344
383
|
}
|
|
345
384
|
declare const ProjectIcon: React.FC<ProjectIconProps>;
|
|
346
385
|
|
|
347
386
|
interface RolesIconProps extends React.SVGProps<SVGSVGElement> {
|
|
348
387
|
color?: string;
|
|
388
|
+
size?: number;
|
|
349
389
|
}
|
|
350
390
|
declare const RolesIcon: React.FC<RolesIconProps>;
|
|
351
391
|
|
|
@@ -356,39 +396,334 @@ declare const RufousAiIcon: React.FC<RufousAiIconProps>;
|
|
|
356
396
|
|
|
357
397
|
interface CloseProps extends React.SVGProps<SVGSVGElement> {
|
|
358
398
|
color?: string;
|
|
399
|
+
size?: number;
|
|
359
400
|
}
|
|
360
401
|
declare const CloseIcon: React.FC<CloseProps>;
|
|
361
402
|
|
|
362
|
-
interface
|
|
403
|
+
interface LocationPinIconProps extends React.SVGProps<SVGSVGElement> {
|
|
363
404
|
color?: string;
|
|
405
|
+
size?: number;
|
|
364
406
|
}
|
|
365
|
-
declare const LocationPinIcon: React.FC<
|
|
407
|
+
declare const LocationPinIcon: React.FC<LocationPinIconProps>;
|
|
366
408
|
|
|
367
409
|
interface DownloadPdfProps extends React.SVGProps<SVGSVGElement> {
|
|
368
410
|
color?: string;
|
|
411
|
+
size?: number;
|
|
369
412
|
}
|
|
370
413
|
declare const DownloadPdfIcon: React.FC<DownloadPdfProps>;
|
|
371
414
|
|
|
372
415
|
interface SoftSkillsIconProps extends React.SVGProps<SVGSVGElement> {
|
|
373
416
|
color?: string;
|
|
417
|
+
size?: number;
|
|
374
418
|
}
|
|
375
419
|
declare const SoftSkillsIcon: React.FC<SoftSkillsIconProps>;
|
|
376
420
|
|
|
377
421
|
interface TechnicalSkillsIconProps extends React.SVGProps<SVGSVGElement> {
|
|
378
422
|
color?: string;
|
|
423
|
+
size?: number;
|
|
379
424
|
}
|
|
380
425
|
declare const TechnicalSkillsIcon: React.FC<TechnicalSkillsIconProps>;
|
|
381
426
|
|
|
382
427
|
interface QualificationsIconProps extends React.SVGProps<SVGSVGElement> {
|
|
383
428
|
color?: string;
|
|
429
|
+
size?: number;
|
|
384
430
|
}
|
|
385
431
|
declare const QualificationsIcon: React.FC<QualificationsIconProps>;
|
|
386
432
|
|
|
387
433
|
interface CameraIconProps extends React.SVGProps<SVGSVGElement> {
|
|
388
434
|
color?: string;
|
|
435
|
+
size?: number;
|
|
389
436
|
}
|
|
390
437
|
declare const CameraIcon: React.FC<CameraIconProps>;
|
|
391
438
|
|
|
439
|
+
interface PlusIconProps extends React.SVGProps<SVGSVGElement> {
|
|
440
|
+
color?: string;
|
|
441
|
+
size?: number;
|
|
442
|
+
}
|
|
443
|
+
declare const PlusIcon: React.FC<PlusIconProps>;
|
|
444
|
+
|
|
445
|
+
interface MinusIconProps extends React.SVGProps<SVGSVGElement> {
|
|
446
|
+
color?: string;
|
|
447
|
+
size?: number;
|
|
448
|
+
}
|
|
449
|
+
declare const MinusIcon: React.FC<MinusIconProps>;
|
|
450
|
+
|
|
451
|
+
interface SearchIconProps extends React.SVGProps<SVGSVGElement> {
|
|
452
|
+
color?: string;
|
|
453
|
+
size?: number;
|
|
454
|
+
}
|
|
455
|
+
declare const SearchIcon: React.FC<SearchIconProps>;
|
|
456
|
+
|
|
457
|
+
interface SendIconProps extends React.SVGProps<SVGSVGElement> {
|
|
458
|
+
color?: string;
|
|
459
|
+
size?: number;
|
|
460
|
+
}
|
|
461
|
+
declare const SendIcon: React.FC<SendIconProps>;
|
|
462
|
+
|
|
463
|
+
interface HomeIconProps extends React.SVGProps<SVGSVGElement> {
|
|
464
|
+
color?: string;
|
|
465
|
+
size?: number;
|
|
466
|
+
}
|
|
467
|
+
declare const HomeIcon: React.FC<HomeIconProps>;
|
|
468
|
+
|
|
469
|
+
interface SettingsIconProps extends React.SVGProps<SVGSVGElement> {
|
|
470
|
+
color?: string;
|
|
471
|
+
size?: number;
|
|
472
|
+
}
|
|
473
|
+
declare const SettingsIcon: React.FC<SettingsIconProps>;
|
|
474
|
+
|
|
475
|
+
interface UserIconProps extends React.SVGProps<SVGSVGElement> {
|
|
476
|
+
color?: string;
|
|
477
|
+
size?: number;
|
|
478
|
+
}
|
|
479
|
+
declare const UserIcon: React.FC<UserIconProps>;
|
|
480
|
+
|
|
481
|
+
interface UsersIconProps extends React.SVGProps<SVGSVGElement> {
|
|
482
|
+
color?: string;
|
|
483
|
+
size?: number;
|
|
484
|
+
}
|
|
485
|
+
declare const UsersIcon: React.FC<UsersIconProps>;
|
|
486
|
+
|
|
487
|
+
interface MailIconProps extends React.SVGProps<SVGSVGElement> {
|
|
488
|
+
color?: string;
|
|
489
|
+
size?: number;
|
|
490
|
+
}
|
|
491
|
+
declare const MailIcon: React.FC<MailIconProps>;
|
|
492
|
+
|
|
493
|
+
interface PhoneIconProps extends React.SVGProps<SVGSVGElement> {
|
|
494
|
+
color?: string;
|
|
495
|
+
size?: number;
|
|
496
|
+
}
|
|
497
|
+
declare const PhoneIcon: React.FC<PhoneIconProps>;
|
|
498
|
+
|
|
499
|
+
interface CheckCircleIconProps extends React.SVGProps<SVGSVGElement> {
|
|
500
|
+
color?: string;
|
|
501
|
+
size?: number;
|
|
502
|
+
}
|
|
503
|
+
declare const CheckCircleIcon: React.FC<CheckCircleIconProps>;
|
|
504
|
+
|
|
505
|
+
interface XCircleIconProps extends React.SVGProps<SVGSVGElement> {
|
|
506
|
+
color?: string;
|
|
507
|
+
size?: number;
|
|
508
|
+
}
|
|
509
|
+
declare const XCircleIcon: React.FC<XCircleIconProps>;
|
|
510
|
+
|
|
511
|
+
interface InfoIconProps extends React.SVGProps<SVGSVGElement> {
|
|
512
|
+
color?: string;
|
|
513
|
+
size?: number;
|
|
514
|
+
}
|
|
515
|
+
declare const InfoIcon: React.FC<InfoIconProps>;
|
|
516
|
+
|
|
517
|
+
interface AlertTriangleIconProps extends React.SVGProps<SVGSVGElement> {
|
|
518
|
+
color?: string;
|
|
519
|
+
size?: number;
|
|
520
|
+
}
|
|
521
|
+
declare const AlertTriangleIcon: React.FC<AlertTriangleIconProps>;
|
|
522
|
+
|
|
523
|
+
interface ArrowLeftIconProps extends React.SVGProps<SVGSVGElement> {
|
|
524
|
+
color?: string;
|
|
525
|
+
size?: number;
|
|
526
|
+
}
|
|
527
|
+
declare const ArrowLeftIcon: React.FC<ArrowLeftIconProps>;
|
|
528
|
+
|
|
529
|
+
interface ArrowRightIconProps extends React.SVGProps<SVGSVGElement> {
|
|
530
|
+
color?: string;
|
|
531
|
+
size?: number;
|
|
532
|
+
}
|
|
533
|
+
declare const ArrowRightIcon: React.FC<ArrowRightIconProps>;
|
|
534
|
+
|
|
535
|
+
interface ArrowUpIconProps extends React.SVGProps<SVGSVGElement> {
|
|
536
|
+
color?: string;
|
|
537
|
+
size?: number;
|
|
538
|
+
}
|
|
539
|
+
declare const ArrowUpIcon: React.FC<ArrowUpIconProps>;
|
|
540
|
+
|
|
541
|
+
interface ArrowDownIconProps extends React.SVGProps<SVGSVGElement> {
|
|
542
|
+
color?: string;
|
|
543
|
+
size?: number;
|
|
544
|
+
}
|
|
545
|
+
declare const ArrowDownIcon: React.FC<ArrowDownIconProps>;
|
|
546
|
+
|
|
547
|
+
interface ChevronUpIconProps extends React.SVGProps<SVGSVGElement> {
|
|
548
|
+
color?: string;
|
|
549
|
+
size?: number;
|
|
550
|
+
}
|
|
551
|
+
declare const ChevronUpIcon: React.FC<ChevronUpIconProps>;
|
|
552
|
+
|
|
553
|
+
interface ChevronDownIconProps extends React.SVGProps<SVGSVGElement> {
|
|
554
|
+
color?: string;
|
|
555
|
+
size?: number;
|
|
556
|
+
}
|
|
557
|
+
declare const ChevronDownIcon: React.FC<ChevronDownIconProps>;
|
|
558
|
+
|
|
559
|
+
interface ChevronLeftIconProps extends React.SVGProps<SVGSVGElement> {
|
|
560
|
+
color?: string;
|
|
561
|
+
size?: number;
|
|
562
|
+
}
|
|
563
|
+
declare const ChevronLeftIcon: React.FC<ChevronLeftIconProps>;
|
|
564
|
+
|
|
565
|
+
interface ChevronRightIconProps extends React.SVGProps<SVGSVGElement> {
|
|
566
|
+
color?: string;
|
|
567
|
+
size?: number;
|
|
568
|
+
}
|
|
569
|
+
declare const ChevronRightIcon: React.FC<ChevronRightIconProps>;
|
|
570
|
+
|
|
571
|
+
interface FilterIconProps extends React.SVGProps<SVGSVGElement> {
|
|
572
|
+
color?: string;
|
|
573
|
+
size?: number;
|
|
574
|
+
}
|
|
575
|
+
declare const FilterIcon: React.FC<FilterIconProps>;
|
|
576
|
+
|
|
577
|
+
interface GridViewIconProps extends React.SVGProps<SVGSVGElement> {
|
|
578
|
+
color?: string;
|
|
579
|
+
size?: number;
|
|
580
|
+
}
|
|
581
|
+
declare const GridViewIcon: React.FC<GridViewIconProps>;
|
|
582
|
+
|
|
583
|
+
interface ListViewIconProps extends React.SVGProps<SVGSVGElement> {
|
|
584
|
+
color?: string;
|
|
585
|
+
size?: number;
|
|
586
|
+
}
|
|
587
|
+
declare const ListViewIcon: React.FC<ListViewIconProps>;
|
|
588
|
+
|
|
589
|
+
interface StarIconProps extends React.SVGProps<SVGSVGElement> {
|
|
590
|
+
color?: string;
|
|
591
|
+
size?: number;
|
|
592
|
+
}
|
|
593
|
+
declare const StarIcon: React.FC<StarIconProps>;
|
|
594
|
+
|
|
595
|
+
interface HeartIconProps extends React.SVGProps<SVGSVGElement> {
|
|
596
|
+
color?: string;
|
|
597
|
+
size?: number;
|
|
598
|
+
}
|
|
599
|
+
declare const HeartIcon: React.FC<HeartIconProps>;
|
|
600
|
+
|
|
601
|
+
interface ShareIconProps extends React.SVGProps<SVGSVGElement> {
|
|
602
|
+
color?: string;
|
|
603
|
+
size?: number;
|
|
604
|
+
}
|
|
605
|
+
declare const ShareIcon: React.FC<ShareIconProps>;
|
|
606
|
+
|
|
607
|
+
interface LockIconProps extends React.SVGProps<SVGSVGElement> {
|
|
608
|
+
color?: string;
|
|
609
|
+
size?: number;
|
|
610
|
+
}
|
|
611
|
+
declare const LockIcon: React.FC<LockIconProps>;
|
|
612
|
+
|
|
613
|
+
interface UnlockIconProps extends React.SVGProps<SVGSVGElement> {
|
|
614
|
+
color?: string;
|
|
615
|
+
size?: number;
|
|
616
|
+
}
|
|
617
|
+
declare const UnlockIcon: React.FC<UnlockIconProps>;
|
|
618
|
+
|
|
619
|
+
interface EyeOffIconProps extends React.SVGProps<SVGSVGElement> {
|
|
620
|
+
color?: string;
|
|
621
|
+
size?: number;
|
|
622
|
+
}
|
|
623
|
+
declare const EyeOffIcon: React.FC<EyeOffIconProps>;
|
|
624
|
+
|
|
625
|
+
interface MenuIconProps extends React.SVGProps<SVGSVGElement> {
|
|
626
|
+
color?: string;
|
|
627
|
+
size?: number;
|
|
628
|
+
}
|
|
629
|
+
declare const MenuIcon: React.FC<MenuIconProps>;
|
|
630
|
+
|
|
631
|
+
interface MoreHorizontalIconProps extends React.SVGProps<SVGSVGElement> {
|
|
632
|
+
color?: string;
|
|
633
|
+
size?: number;
|
|
634
|
+
}
|
|
635
|
+
declare const MoreHorizontalIcon: React.FC<MoreHorizontalIconProps>;
|
|
636
|
+
|
|
637
|
+
interface MoreVerticalIconProps extends React.SVGProps<SVGSVGElement> {
|
|
638
|
+
color?: string;
|
|
639
|
+
size?: number;
|
|
640
|
+
}
|
|
641
|
+
declare const MoreVerticalIcon: React.FC<MoreVerticalIconProps>;
|
|
642
|
+
|
|
643
|
+
interface ExternalLinkIconProps extends React.SVGProps<SVGSVGElement> {
|
|
644
|
+
color?: string;
|
|
645
|
+
size?: number;
|
|
646
|
+
}
|
|
647
|
+
declare const ExternalLinkIcon: React.FC<ExternalLinkIconProps>;
|
|
648
|
+
|
|
649
|
+
interface SaveIconProps extends React.SVGProps<SVGSVGElement> {
|
|
650
|
+
color?: string;
|
|
651
|
+
size?: number;
|
|
652
|
+
}
|
|
653
|
+
declare const SaveIcon: React.FC<SaveIconProps>;
|
|
654
|
+
|
|
655
|
+
interface BookmarkIconProps extends React.SVGProps<SVGSVGElement> {
|
|
656
|
+
color?: string;
|
|
657
|
+
size?: number;
|
|
658
|
+
}
|
|
659
|
+
declare const BookmarkIcon: React.FC<BookmarkIconProps>;
|
|
660
|
+
|
|
661
|
+
interface GlobeIconProps extends React.SVGProps<SVGSVGElement> {
|
|
662
|
+
color?: string;
|
|
663
|
+
size?: number;
|
|
664
|
+
}
|
|
665
|
+
declare const GlobeIcon: React.FC<GlobeIconProps>;
|
|
666
|
+
|
|
667
|
+
interface SunIconProps extends React.SVGProps<SVGSVGElement> {
|
|
668
|
+
color?: string;
|
|
669
|
+
size?: number;
|
|
670
|
+
}
|
|
671
|
+
declare const SunIcon: React.FC<SunIconProps>;
|
|
672
|
+
|
|
673
|
+
interface MoonIconProps extends React.SVGProps<SVGSVGElement> {
|
|
674
|
+
color?: string;
|
|
675
|
+
size?: number;
|
|
676
|
+
}
|
|
677
|
+
declare const MoonIcon: React.FC<MoonIconProps>;
|
|
678
|
+
|
|
679
|
+
interface TagIconProps extends React.SVGProps<SVGSVGElement> {
|
|
680
|
+
color?: string;
|
|
681
|
+
size?: number;
|
|
682
|
+
}
|
|
683
|
+
declare const TagIcon: React.FC<TagIconProps>;
|
|
684
|
+
|
|
685
|
+
interface FlagIconProps extends React.SVGProps<SVGSVGElement> {
|
|
686
|
+
color?: string;
|
|
687
|
+
size?: number;
|
|
688
|
+
}
|
|
689
|
+
declare const FlagIcon: React.FC<FlagIconProps>;
|
|
690
|
+
|
|
691
|
+
interface ClipboardIconProps extends React.SVGProps<SVGSVGElement> {
|
|
692
|
+
color?: string;
|
|
693
|
+
size?: number;
|
|
694
|
+
}
|
|
695
|
+
declare const ClipboardIcon: React.FC<ClipboardIconProps>;
|
|
696
|
+
|
|
697
|
+
interface PaperclipIconProps extends React.SVGProps<SVGSVGElement> {
|
|
698
|
+
color?: string;
|
|
699
|
+
size?: number;
|
|
700
|
+
}
|
|
701
|
+
declare const PaperclipIcon: React.FC<PaperclipIconProps>;
|
|
702
|
+
|
|
703
|
+
interface LinkIconProps extends React.SVGProps<SVGSVGElement> {
|
|
704
|
+
color?: string;
|
|
705
|
+
size?: number;
|
|
706
|
+
}
|
|
707
|
+
declare const LinkIcon: React.FC<LinkIconProps>;
|
|
708
|
+
|
|
709
|
+
interface PrintIconProps extends React.SVGProps<SVGSVGElement> {
|
|
710
|
+
color?: string;
|
|
711
|
+
size?: number;
|
|
712
|
+
}
|
|
713
|
+
declare const PrintIcon: React.FC<PrintIconProps>;
|
|
714
|
+
|
|
715
|
+
interface ZoomInIconProps extends React.SVGProps<SVGSVGElement> {
|
|
716
|
+
color?: string;
|
|
717
|
+
size?: number;
|
|
718
|
+
}
|
|
719
|
+
declare const ZoomInIcon: React.FC<ZoomInIconProps>;
|
|
720
|
+
|
|
721
|
+
interface ZoomOutIconProps extends React.SVGProps<SVGSVGElement> {
|
|
722
|
+
color?: string;
|
|
723
|
+
size?: number;
|
|
724
|
+
}
|
|
725
|
+
declare const ZoomOutIcon: React.FC<ZoomOutIconProps>;
|
|
726
|
+
|
|
392
727
|
type SxProp = {
|
|
393
728
|
[key: string]: string | number | SxProp | undefined | null;
|
|
394
729
|
};
|
|
@@ -2588,4 +2923,4 @@ declare function useStatesSearch(debounceMs?: number): SearchResult<EnhancedStat
|
|
|
2588
2923
|
*/
|
|
2589
2924
|
declare function useCitiesSearch(debounceMs?: number): SearchResult<EnhancedCity>;
|
|
2590
2925
|
|
|
2591
|
-
export { APP_THEMES, Accordion, AccordionDetails, type AccordionDetailsProps, type AccordionProps, AccordionSummary, type AccordionSummaryProps, type Action, ActivateUserIcon, AddButton, AddressLookup, ArchivedIcon, AssignGroupIcon, Autocomplete, type AutocompleteProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, BaseDialog, Box, type BoxProps, Breadcrumbs, type BreadcrumbsProps, Button, type ButtonProps, CameraIcon, CancelButton, Card, CardActions, type CardActionsProps, CardContent, type CardContentProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, type CardProps, Checkbox, type CheckboxProps, Chip, type ChipProps, CircularProgress, CircularProgressIcon, type CircularProgressIconProps, CloseIcon, Collapse, type CollapseProps, type Column, CopyIcon, CustomImage, CustomTaskItem, CustomVideo, CustomYoutube, DataGrid, type DataGridProps, DateField, type DateFieldProps, type DateFormatString, DateRangeField, type DateRangeFieldProps, type DateRangeValue, DifficultyAllIcon, DifficultyEasyIcon, DifficultyHardIcon, DifficultyMediumIcon, Divider, type DividerProps, DollarIcon, DownloadIcon, DownloadPdfIcon, Drawer, type DrawerProps, EditChatIcon, EditIcon, EngagementIcon, type EnhancedCity, type EnhancedCountry, type EnhancedState, Fade, type FadeProps, FontFamily, FontSize, FunctionIcon, Grid, type GridProps, Grow, type GrowProps, HelpOutlinedIcon, HierarchyIcon, INDENT_STEP, IconButton, type IconButtonProps, ImageField, type ImageFieldProps, InactiveGroupIcon, Indent, IndustryIcon, InvoiceIcon, LineHeight, Link, type LinkProps, List, ListItem, ListItemButton, type ListItemButtonProps, ListItemIcon, type ListItemIconProps, type ListItemProps, ListItemText, type ListItemTextProps, type ListProps, ListStyle, ListSubheader, type ListSubheaderProps, LocationPinIcon, LogsIcon, MAX_INDENT, Menu, MenuDivider, MenuItem, type MenuItemProps, MenuList, type MenuListProps, type MenuProps, MinExperienceIcon, NineDotMenuIcon, NotificationIcon, type NumberVariant, Paper, type PaperProps, PhoneField, type PhoneFieldProps, Popover, type PopoverProps, Popper, type PopperProps, ProjectIcon, QualificationsIcon, QuestionStatusAllIcon, QuestionStatusPrivateIcon, QuestionStatusPublicIcon, QuestionTypeAllIcon, QuestionTypeCodingIcon, QuestionTypeDescriptiveIcon, QuestionTypeMultipleIcon, QuestionTypeSingleIcon, Radio, RadioGroup, type RadioGroupProps, type RadioProps, Rating, type RatingProps, RefreshIcon, ResendInviteIcon, RolesIcon, RufousAiIcon, RufousBirdIcon, RufousLauncherIcon, RufousLogoLoader, type RufousLogoLoaderProps, RufousTextContent, type RufousTextContentProps, RufousTextEditor, type MentionItemData as RufousTextEditorMentionItem, type RufousTextEditorProps, RufousThemeProvider, STATUS_COLORS, STATUS_IMAGES, STATUS_LABELS, Select, type SelectProps, SidebarIcon, Skeleton, type SkeletonProps, Slide, type SlideProps, Slider, type SliderProps, SmartSelect, type SmartSelectProps, Snackbar, type SnackbarProps, SoftSkillsIcon, type SortDirection, Stack, type StackProps, StandardButton, Step, StepButton, type StepButtonProps, StepContent, type StepContentProps, StepLabel, type StepLabelProps, type StepProps, Stepper, type StepperProps, SubmitButton, SubscribeIcon, SuspendUserIcon, Switch, type SwitchProps, type SxProp, Tab, TabPanel, type TabPanelProps, type TabProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableContainer, type TableContainerProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TablePagination, type TablePaginationProps, type TableProps, TableRow, type TableRowProps, TableSortLabel, type TableSortLabelProps, Tabs, type TabsProps, TechnicalSkillsIcon, TextField, type TextFieldProps, TickIcon, TimerIcon, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, Tooltip, type TooltipProps, TrashIcon, type TreeNode, TreeSelect, type TreeSelectMultiValue, type TreeSelectProps, type TreeSelectValue, Typography, type TypographyProps, UnArchivedIcon, UnsubscribeIcon, UploadIcon, UserAssignIcon, type UserOption, UserSelectionField, type UserSelectionFieldProps, ViewIcon, WorkItemIcon, Zoom, type ZoomProps, getAllCountries, getCitiesByName, getCitiesOfCountry, getCitiesOfState, getCityByName, getCountriesByName, getCountryByCode, getCountryByName, getStateByCode, getStateByName, getStatesByName, getStatesOfCountry, transformLegacyTodos, useCitiesSearch, useCountriesSearch, useRufousTheme, useStatesSearch };
|
|
2926
|
+
export { APP_THEMES, Accordion, AccordionDetails, type AccordionDetailsProps, type AccordionProps, AccordionSummary, type AccordionSummaryProps, type Action, ActivateUserIcon, AddButton, AddressLookup, AlertTriangleIcon, ArchivedIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, AssignGroupIcon, Autocomplete, type AutocompleteProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, BaseDialog, BookmarkIcon, Box, type BoxProps, Breadcrumbs, type BreadcrumbsProps, Button, type ButtonProps, CameraIcon, CancelButton, Card, CardActions, type CardActionsProps, CardContent, type CardContentProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, type CardProps, CheckCircleIcon, Checkbox, type CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, Chip, type ChipProps, CircularProgress, CircularProgressIcon, type CircularProgressIconProps, ClipboardIcon, CloseIcon, Collapse, type CollapseProps, type Column, CopyIcon, CustomImage, CustomTaskItem, CustomVideo, CustomYoutube, DataGrid, type DataGridProps, DateField, type DateFieldProps, type DateFormatString, DateRangeField, type DateRangeFieldProps, type DateRangeValue, DifficultyAllIcon, DifficultyEasyIcon, DifficultyHardIcon, DifficultyMediumIcon, Divider, type DividerProps, DollarIcon, DownloadIcon, DownloadPdfIcon, Drawer, type DrawerProps, EditChatIcon, EditIcon, EngagementIcon, type EnhancedCity, type EnhancedCountry, type EnhancedState, ExternalLinkIcon, EyeOffIcon, Fade, type FadeProps, FilterIcon, FlagIcon, FontFamily, FontSize, FunctionIcon, GlobeIcon, Grid, type GridProps, GridViewIcon, Grow, type GrowProps, HeartIcon, HelpOutlinedIcon, HierarchyIcon, HomeIcon, INDENT_STEP, IconButton, type IconButtonProps, ImageField, type ImageFieldProps, InactiveGroupIcon, Indent, IndustryIcon, InfoIcon, InvoiceIcon, LineHeight, Link, LinkIcon, type LinkProps, List, ListItem, ListItemButton, type ListItemButtonProps, ListItemIcon, type ListItemIconProps, type ListItemProps, ListItemText, type ListItemTextProps, type ListProps, ListStyle, ListSubheader, type ListSubheaderProps, ListViewIcon, LocationPinIcon, LockIcon, LogsIcon, MAX_INDENT, MailIcon, Menu, MenuDivider, MenuIcon, MenuItem, type MenuItemProps, MenuList, type MenuListProps, type MenuProps, MinExperienceIcon, MinusIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, NineDotMenuIcon, NotificationIcon, type NumberVariant, Paper, type PaperProps, PaperclipIcon, PhoneField, type PhoneFieldProps, PhoneIcon, PlusIcon, Popover, type PopoverProps, Popper, type PopperProps, PrintIcon, ProjectIcon, QualificationsIcon, QuestionStatusAllIcon, QuestionStatusPrivateIcon, QuestionStatusPublicIcon, QuestionTypeAllIcon, QuestionTypeCodingIcon, QuestionTypeDescriptiveIcon, QuestionTypeMultipleIcon, QuestionTypeSingleIcon, Radio, RadioGroup, type RadioGroupProps, type RadioProps, Rating, type RatingProps, RefreshIcon, ResendInviteIcon, RolesIcon, RufousAiIcon, RufousBirdIcon, RufousLauncherIcon, RufousLogoLoader, type RufousLogoLoaderProps, RufousTextContent, type RufousTextContentProps, RufousTextEditor, type MentionItemData as RufousTextEditorMentionItem, type RufousTextEditorProps, RufousThemeProvider, STATUS_COLORS, STATUS_IMAGES, STATUS_LABELS, SaveIcon, SearchIcon, Select, type SelectProps, SendIcon, SettingsIcon, ShareIcon, SidebarIcon, Skeleton, type SkeletonProps, Slide, type SlideProps, Slider, type SliderProps, SmartSelect, type SmartSelectProps, Snackbar, type SnackbarProps, SoftSkillsIcon, type SortDirection, Stack, type StackProps, StandardButton, StarIcon, Step, StepButton, type StepButtonProps, StepContent, type StepContentProps, StepLabel, type StepLabelProps, type StepProps, Stepper, type StepperProps, SubmitButton, SubscribeIcon, SunIcon, SuspendUserIcon, Switch, type SwitchProps, type SxProp, Tab, TabPanel, type TabPanelProps, type TabProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableContainer, type TableContainerProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TablePagination, type TablePaginationProps, type TableProps, TableRow, type TableRowProps, TableSortLabel, type TableSortLabelProps, Tabs, type TabsProps, TagIcon, TechnicalSkillsIcon, TextField, type TextFieldProps, TickIcon, TimerIcon, ToggleButton, ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, Tooltip, type TooltipProps, TrashIcon, type TreeNode, TreeSelect, type TreeSelectMultiValue, type TreeSelectProps, type TreeSelectValue, Typography, type TypographyProps, UnArchivedIcon, UnlockIcon, UnsubscribeIcon, UploadIcon, UserAssignIcon, UserIcon, type UserOption, UserSelectionField, type UserSelectionFieldProps, UsersIcon, ViewIcon, WorkItemIcon, XCircleIcon, Zoom, ZoomInIcon, ZoomOutIcon, type ZoomProps, getAllCountries, getCitiesByName, getCitiesOfCountry, getCitiesOfState, getCityByName, getCountriesByName, getCountryByCode, getCountryByName, getStateByCode, getStateByName, getStatesByName, getStatesOfCountry, transformLegacyTodos, useCitiesSearch, useCountriesSearch, useRufousTheme, useStatesSearch };
|