@rufous/ui 0.3.41 → 0.3.43
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 +1718 -1677
- package/dist/main.d.cts +375 -39
- package/dist/main.d.ts +375 -39
- package/dist/main.js +1187 -1194
- 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
|
|
|
@@ -249,10 +274,11 @@ interface SubscribeIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
249
274
|
}
|
|
250
275
|
declare const SubscribeIcon: React.FC<SubscribeIconProps>;
|
|
251
276
|
|
|
252
|
-
interface
|
|
277
|
+
interface SuspendUserProps extends React.SVGProps<SVGSVGElement> {
|
|
253
278
|
color?: string;
|
|
279
|
+
size?: number;
|
|
254
280
|
}
|
|
255
|
-
declare const SuspendUserIcon: React.FC<
|
|
281
|
+
declare const SuspendUserIcon: React.FC<SuspendUserProps>;
|
|
256
282
|
|
|
257
283
|
interface UnsubscribeIconProps extends React.SVGProps<SVGSVGElement> {
|
|
258
284
|
color?: string;
|
|
@@ -261,16 +287,19 @@ declare const UnsubscribeIcon: React.FC<UnsubscribeIconProps>;
|
|
|
261
287
|
|
|
262
288
|
interface UploadIconProps extends React.SVGProps<SVGSVGElement> {
|
|
263
289
|
color?: string;
|
|
290
|
+
size?: number;
|
|
264
291
|
}
|
|
265
292
|
declare const UploadIcon: React.FC<UploadIconProps>;
|
|
266
293
|
|
|
267
294
|
interface ViewIconProps extends React.SVGProps<SVGSVGElement> {
|
|
268
295
|
color?: string;
|
|
296
|
+
size?: number;
|
|
269
297
|
}
|
|
270
298
|
declare const ViewIcon: React.FC<ViewIconProps>;
|
|
271
299
|
|
|
272
300
|
interface UserAssignIconProps extends React.SVGProps<SVGSVGElement> {
|
|
273
301
|
color?: string;
|
|
302
|
+
size?: number;
|
|
274
303
|
}
|
|
275
304
|
declare const UserAssignIcon: React.FC<UserAssignIconProps>;
|
|
276
305
|
|
|
@@ -281,46 +310,55 @@ declare const RufousBirdIcon: React.FC<RufousBirdIconProps>;
|
|
|
281
310
|
|
|
282
311
|
interface TickIconProps extends React.SVGProps<SVGSVGElement> {
|
|
283
312
|
color?: string;
|
|
313
|
+
size?: number;
|
|
284
314
|
}
|
|
285
315
|
declare const TickIcon: React.FC<TickIconProps>;
|
|
286
316
|
|
|
287
317
|
interface TimerIconProps extends React.SVGProps<SVGSVGElement> {
|
|
288
318
|
color?: string;
|
|
319
|
+
size?: number;
|
|
289
320
|
}
|
|
290
321
|
declare const TimerIcon: React.FC<TimerIconProps>;
|
|
291
322
|
|
|
292
323
|
interface TrashIconProps extends React.SVGProps<SVGSVGElement> {
|
|
293
324
|
color?: string;
|
|
325
|
+
size?: number;
|
|
294
326
|
}
|
|
295
327
|
declare const TrashIcon: React.FC<TrashIconProps>;
|
|
296
328
|
|
|
297
|
-
interface
|
|
329
|
+
interface EditChatIconProps extends React.SVGProps<SVGSVGElement> {
|
|
298
330
|
color?: string;
|
|
331
|
+
size?: number;
|
|
299
332
|
}
|
|
300
|
-
declare const EditChatIcon: React.FC<
|
|
333
|
+
declare const EditChatIcon: React.FC<EditChatIconProps>;
|
|
301
334
|
|
|
302
335
|
interface SidebarProps extends React.SVGProps<SVGSVGElement> {
|
|
303
336
|
color?: string;
|
|
337
|
+
size?: number;
|
|
304
338
|
}
|
|
305
339
|
declare const SidebarIcon: React.FC<SidebarProps>;
|
|
306
340
|
|
|
307
|
-
interface NotificationIconProps extends
|
|
341
|
+
interface NotificationIconProps extends React.SVGProps<SVGSVGElement> {
|
|
308
342
|
color?: string;
|
|
343
|
+
size?: number;
|
|
309
344
|
}
|
|
310
|
-
declare const NotificationIcon:
|
|
345
|
+
declare const NotificationIcon: React.FC<NotificationIconProps>;
|
|
311
346
|
|
|
312
|
-
interface RefreshIconProps extends
|
|
347
|
+
interface RefreshIconProps extends React.SVGProps<SVGSVGElement> {
|
|
313
348
|
color?: string;
|
|
349
|
+
size?: number;
|
|
314
350
|
}
|
|
315
|
-
declare const RefreshIcon:
|
|
351
|
+
declare const RefreshIcon: React.FC<RefreshIconProps>;
|
|
316
352
|
|
|
317
353
|
interface DollarIconProps extends React.SVGProps<SVGSVGElement> {
|
|
318
354
|
color?: string;
|
|
355
|
+
size?: number;
|
|
319
356
|
}
|
|
320
357
|
declare const DollarIcon: React.FC<DollarIconProps>;
|
|
321
358
|
|
|
322
359
|
interface EngagementIconProps extends React.SVGProps<SVGSVGElement> {
|
|
323
360
|
color?: string;
|
|
361
|
+
size?: number;
|
|
324
362
|
}
|
|
325
363
|
declare const EngagementIcon: React.FC<EngagementIconProps>;
|
|
326
364
|
|
|
@@ -336,16 +374,19 @@ declare const IndustryIcon: React.FC<IndustryIconProps>;
|
|
|
336
374
|
|
|
337
375
|
interface MinExperienceIconProps extends React.SVGProps<SVGSVGElement> {
|
|
338
376
|
color?: string;
|
|
377
|
+
size?: number;
|
|
339
378
|
}
|
|
340
379
|
declare const MinExperienceIcon: React.FC<MinExperienceIconProps>;
|
|
341
380
|
|
|
342
381
|
interface ProjectIconProps extends React.SVGProps<SVGSVGElement> {
|
|
343
382
|
color?: string;
|
|
383
|
+
size?: number;
|
|
344
384
|
}
|
|
345
385
|
declare const ProjectIcon: React.FC<ProjectIconProps>;
|
|
346
386
|
|
|
347
387
|
interface RolesIconProps extends React.SVGProps<SVGSVGElement> {
|
|
348
388
|
color?: string;
|
|
389
|
+
size?: number;
|
|
349
390
|
}
|
|
350
391
|
declare const RolesIcon: React.FC<RolesIconProps>;
|
|
351
392
|
|
|
@@ -356,39 +397,334 @@ declare const RufousAiIcon: React.FC<RufousAiIconProps>;
|
|
|
356
397
|
|
|
357
398
|
interface CloseProps extends React.SVGProps<SVGSVGElement> {
|
|
358
399
|
color?: string;
|
|
400
|
+
size?: number;
|
|
359
401
|
}
|
|
360
402
|
declare const CloseIcon: React.FC<CloseProps>;
|
|
361
403
|
|
|
362
|
-
interface
|
|
404
|
+
interface LocationPinIconProps extends React.SVGProps<SVGSVGElement> {
|
|
363
405
|
color?: string;
|
|
406
|
+
size?: number;
|
|
364
407
|
}
|
|
365
|
-
declare const LocationPinIcon: React.FC<
|
|
408
|
+
declare const LocationPinIcon: React.FC<LocationPinIconProps>;
|
|
366
409
|
|
|
367
410
|
interface DownloadPdfProps extends React.SVGProps<SVGSVGElement> {
|
|
368
411
|
color?: string;
|
|
412
|
+
size?: number;
|
|
369
413
|
}
|
|
370
414
|
declare const DownloadPdfIcon: React.FC<DownloadPdfProps>;
|
|
371
415
|
|
|
372
416
|
interface SoftSkillsIconProps extends React.SVGProps<SVGSVGElement> {
|
|
373
417
|
color?: string;
|
|
418
|
+
size?: number;
|
|
374
419
|
}
|
|
375
420
|
declare const SoftSkillsIcon: React.FC<SoftSkillsIconProps>;
|
|
376
421
|
|
|
377
422
|
interface TechnicalSkillsIconProps extends React.SVGProps<SVGSVGElement> {
|
|
378
423
|
color?: string;
|
|
424
|
+
size?: number;
|
|
379
425
|
}
|
|
380
426
|
declare const TechnicalSkillsIcon: React.FC<TechnicalSkillsIconProps>;
|
|
381
427
|
|
|
382
428
|
interface QualificationsIconProps extends React.SVGProps<SVGSVGElement> {
|
|
383
429
|
color?: string;
|
|
430
|
+
size?: number;
|
|
384
431
|
}
|
|
385
432
|
declare const QualificationsIcon: React.FC<QualificationsIconProps>;
|
|
386
433
|
|
|
387
434
|
interface CameraIconProps extends React.SVGProps<SVGSVGElement> {
|
|
388
435
|
color?: string;
|
|
436
|
+
size?: number;
|
|
389
437
|
}
|
|
390
438
|
declare const CameraIcon: React.FC<CameraIconProps>;
|
|
391
439
|
|
|
440
|
+
interface PlusIconProps extends React.SVGProps<SVGSVGElement> {
|
|
441
|
+
color?: string;
|
|
442
|
+
size?: number;
|
|
443
|
+
}
|
|
444
|
+
declare const PlusIcon: React.FC<PlusIconProps>;
|
|
445
|
+
|
|
446
|
+
interface MinusIconProps extends React.SVGProps<SVGSVGElement> {
|
|
447
|
+
color?: string;
|
|
448
|
+
size?: number;
|
|
449
|
+
}
|
|
450
|
+
declare const MinusIcon: React.FC<MinusIconProps>;
|
|
451
|
+
|
|
452
|
+
interface SearchIconProps extends React.SVGProps<SVGSVGElement> {
|
|
453
|
+
color?: string;
|
|
454
|
+
size?: number;
|
|
455
|
+
}
|
|
456
|
+
declare const SearchIcon: React.FC<SearchIconProps>;
|
|
457
|
+
|
|
458
|
+
interface SendIconProps extends React.SVGProps<SVGSVGElement> {
|
|
459
|
+
color?: string;
|
|
460
|
+
size?: number;
|
|
461
|
+
}
|
|
462
|
+
declare const SendIcon: React.FC<SendIconProps>;
|
|
463
|
+
|
|
464
|
+
interface HomeIconProps extends React.SVGProps<SVGSVGElement> {
|
|
465
|
+
color?: string;
|
|
466
|
+
size?: number;
|
|
467
|
+
}
|
|
468
|
+
declare const HomeIcon: React.FC<HomeIconProps>;
|
|
469
|
+
|
|
470
|
+
interface SettingsIconProps extends React.SVGProps<SVGSVGElement> {
|
|
471
|
+
color?: string;
|
|
472
|
+
size?: number;
|
|
473
|
+
}
|
|
474
|
+
declare const SettingsIcon: React.FC<SettingsIconProps>;
|
|
475
|
+
|
|
476
|
+
interface UserIconProps extends React.SVGProps<SVGSVGElement> {
|
|
477
|
+
color?: string;
|
|
478
|
+
size?: number;
|
|
479
|
+
}
|
|
480
|
+
declare const UserIcon: React.FC<UserIconProps>;
|
|
481
|
+
|
|
482
|
+
interface UsersIconProps extends React.SVGProps<SVGSVGElement> {
|
|
483
|
+
color?: string;
|
|
484
|
+
size?: number;
|
|
485
|
+
}
|
|
486
|
+
declare const UsersIcon: React.FC<UsersIconProps>;
|
|
487
|
+
|
|
488
|
+
interface MailIconProps extends React.SVGProps<SVGSVGElement> {
|
|
489
|
+
color?: string;
|
|
490
|
+
size?: number;
|
|
491
|
+
}
|
|
492
|
+
declare const MailIcon: React.FC<MailIconProps>;
|
|
493
|
+
|
|
494
|
+
interface PhoneIconProps extends React.SVGProps<SVGSVGElement> {
|
|
495
|
+
color?: string;
|
|
496
|
+
size?: number;
|
|
497
|
+
}
|
|
498
|
+
declare const PhoneIcon: React.FC<PhoneIconProps>;
|
|
499
|
+
|
|
500
|
+
interface CheckCircleIconProps extends React.SVGProps<SVGSVGElement> {
|
|
501
|
+
color?: string;
|
|
502
|
+
size?: number;
|
|
503
|
+
}
|
|
504
|
+
declare const CheckCircleIcon: React.FC<CheckCircleIconProps>;
|
|
505
|
+
|
|
506
|
+
interface XCircleIconProps extends React.SVGProps<SVGSVGElement> {
|
|
507
|
+
color?: string;
|
|
508
|
+
size?: number;
|
|
509
|
+
}
|
|
510
|
+
declare const XCircleIcon: React.FC<XCircleIconProps>;
|
|
511
|
+
|
|
512
|
+
interface InfoIconProps extends React.SVGProps<SVGSVGElement> {
|
|
513
|
+
color?: string;
|
|
514
|
+
size?: number;
|
|
515
|
+
}
|
|
516
|
+
declare const InfoIcon: React.FC<InfoIconProps>;
|
|
517
|
+
|
|
518
|
+
interface AlertTriangleIconProps extends React.SVGProps<SVGSVGElement> {
|
|
519
|
+
color?: string;
|
|
520
|
+
size?: number;
|
|
521
|
+
}
|
|
522
|
+
declare const AlertTriangleIcon: React.FC<AlertTriangleIconProps>;
|
|
523
|
+
|
|
524
|
+
interface ArrowLeftIconProps extends React.SVGProps<SVGSVGElement> {
|
|
525
|
+
color?: string;
|
|
526
|
+
size?: number;
|
|
527
|
+
}
|
|
528
|
+
declare const ArrowLeftIcon: React.FC<ArrowLeftIconProps>;
|
|
529
|
+
|
|
530
|
+
interface ArrowRightIconProps extends React.SVGProps<SVGSVGElement> {
|
|
531
|
+
color?: string;
|
|
532
|
+
size?: number;
|
|
533
|
+
}
|
|
534
|
+
declare const ArrowRightIcon: React.FC<ArrowRightIconProps>;
|
|
535
|
+
|
|
536
|
+
interface ArrowUpIconProps extends React.SVGProps<SVGSVGElement> {
|
|
537
|
+
color?: string;
|
|
538
|
+
size?: number;
|
|
539
|
+
}
|
|
540
|
+
declare const ArrowUpIcon: React.FC<ArrowUpIconProps>;
|
|
541
|
+
|
|
542
|
+
interface ArrowDownIconProps extends React.SVGProps<SVGSVGElement> {
|
|
543
|
+
color?: string;
|
|
544
|
+
size?: number;
|
|
545
|
+
}
|
|
546
|
+
declare const ArrowDownIcon: React.FC<ArrowDownIconProps>;
|
|
547
|
+
|
|
548
|
+
interface ChevronUpIconProps extends React.SVGProps<SVGSVGElement> {
|
|
549
|
+
color?: string;
|
|
550
|
+
size?: number;
|
|
551
|
+
}
|
|
552
|
+
declare const ChevronUpIcon: React.FC<ChevronUpIconProps>;
|
|
553
|
+
|
|
554
|
+
interface ChevronDownIconProps extends React.SVGProps<SVGSVGElement> {
|
|
555
|
+
color?: string;
|
|
556
|
+
size?: number;
|
|
557
|
+
}
|
|
558
|
+
declare const ChevronDownIcon: React.FC<ChevronDownIconProps>;
|
|
559
|
+
|
|
560
|
+
interface ChevronLeftIconProps extends React.SVGProps<SVGSVGElement> {
|
|
561
|
+
color?: string;
|
|
562
|
+
size?: number;
|
|
563
|
+
}
|
|
564
|
+
declare const ChevronLeftIcon: React.FC<ChevronLeftIconProps>;
|
|
565
|
+
|
|
566
|
+
interface ChevronRightIconProps extends React.SVGProps<SVGSVGElement> {
|
|
567
|
+
color?: string;
|
|
568
|
+
size?: number;
|
|
569
|
+
}
|
|
570
|
+
declare const ChevronRightIcon: React.FC<ChevronRightIconProps>;
|
|
571
|
+
|
|
572
|
+
interface FilterIconProps extends React.SVGProps<SVGSVGElement> {
|
|
573
|
+
color?: string;
|
|
574
|
+
size?: number;
|
|
575
|
+
}
|
|
576
|
+
declare const FilterIcon: React.FC<FilterIconProps>;
|
|
577
|
+
|
|
578
|
+
interface GridViewIconProps extends React.SVGProps<SVGSVGElement> {
|
|
579
|
+
color?: string;
|
|
580
|
+
size?: number;
|
|
581
|
+
}
|
|
582
|
+
declare const GridViewIcon: React.FC<GridViewIconProps>;
|
|
583
|
+
|
|
584
|
+
interface ListViewIconProps extends React.SVGProps<SVGSVGElement> {
|
|
585
|
+
color?: string;
|
|
586
|
+
size?: number;
|
|
587
|
+
}
|
|
588
|
+
declare const ListViewIcon: React.FC<ListViewIconProps>;
|
|
589
|
+
|
|
590
|
+
interface StarIconProps extends React.SVGProps<SVGSVGElement> {
|
|
591
|
+
color?: string;
|
|
592
|
+
size?: number;
|
|
593
|
+
}
|
|
594
|
+
declare const StarIcon: React.FC<StarIconProps>;
|
|
595
|
+
|
|
596
|
+
interface HeartIconProps extends React.SVGProps<SVGSVGElement> {
|
|
597
|
+
color?: string;
|
|
598
|
+
size?: number;
|
|
599
|
+
}
|
|
600
|
+
declare const HeartIcon: React.FC<HeartIconProps>;
|
|
601
|
+
|
|
602
|
+
interface ShareIconProps extends React.SVGProps<SVGSVGElement> {
|
|
603
|
+
color?: string;
|
|
604
|
+
size?: number;
|
|
605
|
+
}
|
|
606
|
+
declare const ShareIcon: React.FC<ShareIconProps>;
|
|
607
|
+
|
|
608
|
+
interface LockIconProps extends React.SVGProps<SVGSVGElement> {
|
|
609
|
+
color?: string;
|
|
610
|
+
size?: number;
|
|
611
|
+
}
|
|
612
|
+
declare const LockIcon: React.FC<LockIconProps>;
|
|
613
|
+
|
|
614
|
+
interface UnlockIconProps extends React.SVGProps<SVGSVGElement> {
|
|
615
|
+
color?: string;
|
|
616
|
+
size?: number;
|
|
617
|
+
}
|
|
618
|
+
declare const UnlockIcon: React.FC<UnlockIconProps>;
|
|
619
|
+
|
|
620
|
+
interface EyeOffIconProps extends React.SVGProps<SVGSVGElement> {
|
|
621
|
+
color?: string;
|
|
622
|
+
size?: number;
|
|
623
|
+
}
|
|
624
|
+
declare const EyeOffIcon: React.FC<EyeOffIconProps>;
|
|
625
|
+
|
|
626
|
+
interface MenuIconProps extends React.SVGProps<SVGSVGElement> {
|
|
627
|
+
color?: string;
|
|
628
|
+
size?: number;
|
|
629
|
+
}
|
|
630
|
+
declare const MenuIcon: React.FC<MenuIconProps>;
|
|
631
|
+
|
|
632
|
+
interface MoreHorizontalIconProps extends React.SVGProps<SVGSVGElement> {
|
|
633
|
+
color?: string;
|
|
634
|
+
size?: number;
|
|
635
|
+
}
|
|
636
|
+
declare const MoreHorizontalIcon: React.FC<MoreHorizontalIconProps>;
|
|
637
|
+
|
|
638
|
+
interface MoreVerticalIconProps extends React.SVGProps<SVGSVGElement> {
|
|
639
|
+
color?: string;
|
|
640
|
+
size?: number;
|
|
641
|
+
}
|
|
642
|
+
declare const MoreVerticalIcon: React.FC<MoreVerticalIconProps>;
|
|
643
|
+
|
|
644
|
+
interface ExternalLinkIconProps extends React.SVGProps<SVGSVGElement> {
|
|
645
|
+
color?: string;
|
|
646
|
+
size?: number;
|
|
647
|
+
}
|
|
648
|
+
declare const ExternalLinkIcon: React.FC<ExternalLinkIconProps>;
|
|
649
|
+
|
|
650
|
+
interface SaveIconProps extends React.SVGProps<SVGSVGElement> {
|
|
651
|
+
color?: string;
|
|
652
|
+
size?: number;
|
|
653
|
+
}
|
|
654
|
+
declare const SaveIcon: React.FC<SaveIconProps>;
|
|
655
|
+
|
|
656
|
+
interface BookmarkIconProps extends React.SVGProps<SVGSVGElement> {
|
|
657
|
+
color?: string;
|
|
658
|
+
size?: number;
|
|
659
|
+
}
|
|
660
|
+
declare const BookmarkIcon: React.FC<BookmarkIconProps>;
|
|
661
|
+
|
|
662
|
+
interface GlobeIconProps extends React.SVGProps<SVGSVGElement> {
|
|
663
|
+
color?: string;
|
|
664
|
+
size?: number;
|
|
665
|
+
}
|
|
666
|
+
declare const GlobeIcon: React.FC<GlobeIconProps>;
|
|
667
|
+
|
|
668
|
+
interface SunIconProps extends React.SVGProps<SVGSVGElement> {
|
|
669
|
+
color?: string;
|
|
670
|
+
size?: number;
|
|
671
|
+
}
|
|
672
|
+
declare const SunIcon: React.FC<SunIconProps>;
|
|
673
|
+
|
|
674
|
+
interface MoonIconProps extends React.SVGProps<SVGSVGElement> {
|
|
675
|
+
color?: string;
|
|
676
|
+
size?: number;
|
|
677
|
+
}
|
|
678
|
+
declare const MoonIcon: React.FC<MoonIconProps>;
|
|
679
|
+
|
|
680
|
+
interface TagIconProps extends React.SVGProps<SVGSVGElement> {
|
|
681
|
+
color?: string;
|
|
682
|
+
size?: number;
|
|
683
|
+
}
|
|
684
|
+
declare const TagIcon: React.FC<TagIconProps>;
|
|
685
|
+
|
|
686
|
+
interface FlagIconProps extends React.SVGProps<SVGSVGElement> {
|
|
687
|
+
color?: string;
|
|
688
|
+
size?: number;
|
|
689
|
+
}
|
|
690
|
+
declare const FlagIcon: React.FC<FlagIconProps>;
|
|
691
|
+
|
|
692
|
+
interface ClipboardIconProps extends React.SVGProps<SVGSVGElement> {
|
|
693
|
+
color?: string;
|
|
694
|
+
size?: number;
|
|
695
|
+
}
|
|
696
|
+
declare const ClipboardIcon: React.FC<ClipboardIconProps>;
|
|
697
|
+
|
|
698
|
+
interface PaperclipIconProps extends React.SVGProps<SVGSVGElement> {
|
|
699
|
+
color?: string;
|
|
700
|
+
size?: number;
|
|
701
|
+
}
|
|
702
|
+
declare const PaperclipIcon: React.FC<PaperclipIconProps>;
|
|
703
|
+
|
|
704
|
+
interface LinkIconProps extends React.SVGProps<SVGSVGElement> {
|
|
705
|
+
color?: string;
|
|
706
|
+
size?: number;
|
|
707
|
+
}
|
|
708
|
+
declare const LinkIcon: React.FC<LinkIconProps>;
|
|
709
|
+
|
|
710
|
+
interface PrintIconProps extends React.SVGProps<SVGSVGElement> {
|
|
711
|
+
color?: string;
|
|
712
|
+
size?: number;
|
|
713
|
+
}
|
|
714
|
+
declare const PrintIcon: React.FC<PrintIconProps>;
|
|
715
|
+
|
|
716
|
+
interface ZoomInIconProps extends React.SVGProps<SVGSVGElement> {
|
|
717
|
+
color?: string;
|
|
718
|
+
size?: number;
|
|
719
|
+
}
|
|
720
|
+
declare const ZoomInIcon: React.FC<ZoomInIconProps>;
|
|
721
|
+
|
|
722
|
+
interface ZoomOutIconProps extends React.SVGProps<SVGSVGElement> {
|
|
723
|
+
color?: string;
|
|
724
|
+
size?: number;
|
|
725
|
+
}
|
|
726
|
+
declare const ZoomOutIcon: React.FC<ZoomOutIconProps>;
|
|
727
|
+
|
|
392
728
|
type SxProp = {
|
|
393
729
|
[key: string]: string | number | SxProp | undefined | null;
|
|
394
730
|
};
|
|
@@ -2588,4 +2924,4 @@ declare function useStatesSearch(debounceMs?: number): SearchResult<EnhancedStat
|
|
|
2588
2924
|
*/
|
|
2589
2925
|
declare function useCitiesSearch(debounceMs?: number): SearchResult<EnhancedCity>;
|
|
2590
2926
|
|
|
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 };
|
|
2927
|
+
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 };
|