qt-ui-kit 1.0.115 → 1.0.116
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/index.d.mts +379 -27
- package/dist/index.d.ts +379 -27
- package/dist/index.js +7231 -4387
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8025 -5224
- package/dist/index.mjs.map +1 -1
- package/dist/style.css +123 -21
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import * as React from 'react';
|
|
2
|
+
import * as React$1 from 'react';
|
|
3
3
|
import React__default, { ReactNode, ReactElement } from 'react';
|
|
4
4
|
|
|
5
5
|
declare enum FilterCategory {
|
|
@@ -40,7 +40,9 @@ declare enum BaseIconName {
|
|
|
40
40
|
CHECK = "check",
|
|
41
41
|
LEFT_ARROW = "left_arrow",
|
|
42
42
|
RIGHT_ARROW = "right_arrow",
|
|
43
|
-
EXPAND = "expand"
|
|
43
|
+
EXPAND = "expand",
|
|
44
|
+
DONE = "done",
|
|
45
|
+
NOT_DONE = "not_done"
|
|
44
46
|
}
|
|
45
47
|
declare enum ColorVariants {
|
|
46
48
|
RED = "#FF7E71",
|
|
@@ -79,52 +81,54 @@ type TicketComment = {
|
|
|
79
81
|
emojis?: string[];
|
|
80
82
|
};
|
|
81
83
|
|
|
82
|
-
type BadgeType =
|
|
84
|
+
type BadgeType = "fire" | "insight" | string;
|
|
83
85
|
interface PreviewBadgeData {
|
|
84
86
|
type: BadgeType;
|
|
85
87
|
label?: string;
|
|
86
88
|
}
|
|
87
|
-
type Props$
|
|
89
|
+
type Props$Q = {
|
|
88
90
|
eventID: string;
|
|
89
91
|
onSelected?: (eventID: string) => void;
|
|
90
92
|
selected?: boolean;
|
|
91
93
|
onChecked?: (eventID: string) => void;
|
|
92
94
|
checked?: boolean;
|
|
95
|
+
onBulkChecked?: (eventID: string) => void;
|
|
96
|
+
bulkChecked?: boolean;
|
|
93
97
|
service?: IntegrationService;
|
|
94
98
|
subjectLine?: string;
|
|
95
99
|
body?: string;
|
|
96
100
|
sender?: string;
|
|
97
101
|
source?: string;
|
|
98
102
|
date?: Date;
|
|
99
|
-
onClickGoToSource?: (
|
|
103
|
+
onClickGoToSource?: () => void;
|
|
100
104
|
eventCategory?: string;
|
|
101
105
|
read?: boolean;
|
|
102
106
|
overrideItems?: string[];
|
|
103
107
|
eventBadges?: PreviewBadgeData[];
|
|
104
108
|
onOverride?: (eventID: string, selectedItem: string) => void;
|
|
105
109
|
};
|
|
106
|
-
declare function PreviewCard({ eventID, onSelected, selected, onChecked, checked, service, subjectLine, body, sender, source, date, onClickGoToSource, eventCategory, read,
|
|
110
|
+
declare function PreviewCard({ eventID, onSelected, selected, onChecked, checked: checkedProp, onBulkChecked, bulkChecked: bulkCheckedProp, service, subjectLine, body, sender, source, date, onClickGoToSource, eventCategory, read, eventBadges, onOverride, }: Props$Q): react_jsx_runtime.JSX.Element;
|
|
107
111
|
|
|
108
112
|
type NavButtonKey = "queue" | "account" | "logout";
|
|
109
113
|
type NavButtonConfig$1 = {
|
|
110
114
|
active?: boolean;
|
|
111
115
|
onClick?: () => void;
|
|
112
116
|
};
|
|
113
|
-
type Props$
|
|
117
|
+
type Props$P = {
|
|
114
118
|
buttons?: Partial<Record<NavButtonKey, NavButtonConfig$1>>;
|
|
115
119
|
};
|
|
116
|
-
declare function NavBar({ buttons }: Props$
|
|
120
|
+
declare function NavBar({ buttons }: Props$P): react_jsx_runtime.JSX.Element;
|
|
117
121
|
|
|
118
|
-
type Props$
|
|
122
|
+
type Props$O = {
|
|
119
123
|
eventType?: EventType;
|
|
120
124
|
eventData?: EventGroup[];
|
|
121
125
|
groupUrgency?: UrgencyLevel;
|
|
122
126
|
groupUrgencyText?: string;
|
|
123
127
|
groupSummary?: string;
|
|
124
128
|
};
|
|
125
|
-
declare function EventCard({ eventType, eventData, groupUrgency, groupUrgencyText, groupSummary, }: Props$
|
|
129
|
+
declare function EventCard({ eventType, eventData, groupUrgency, groupUrgencyText, groupSummary, }: Props$O): react_jsx_runtime.JSX.Element;
|
|
126
130
|
|
|
127
|
-
type Props$
|
|
131
|
+
type Props$N = {
|
|
128
132
|
subjectLine?: string;
|
|
129
133
|
to?: string;
|
|
130
134
|
date?: string;
|
|
@@ -134,9 +138,9 @@ type Props$6 = {
|
|
|
134
138
|
attachments?: string;
|
|
135
139
|
body?: string;
|
|
136
140
|
};
|
|
137
|
-
declare function EmailBody({ subjectLine, to, date, from, CC, BCC, attachments, body, }: Props$
|
|
141
|
+
declare function EmailBody({ subjectLine, to, date, from, CC, BCC, attachments, body, }: Props$N): react_jsx_runtime.JSX.Element;
|
|
138
142
|
|
|
139
|
-
type Props$
|
|
143
|
+
type Props$M = {
|
|
140
144
|
messages?: ChatData[];
|
|
141
145
|
};
|
|
142
146
|
type ChatData = {
|
|
@@ -150,9 +154,9 @@ type ChatData = {
|
|
|
150
154
|
images?: string[];
|
|
151
155
|
emojis?: string[];
|
|
152
156
|
};
|
|
153
|
-
declare function ChatBody({ messages }: Props$
|
|
157
|
+
declare function ChatBody({ messages }: Props$M): react_jsx_runtime.JSX.Element;
|
|
154
158
|
|
|
155
|
-
type Props$
|
|
159
|
+
type Props$L = {
|
|
156
160
|
issueNumber?: string;
|
|
157
161
|
notification?: string;
|
|
158
162
|
project?: string;
|
|
@@ -167,13 +171,13 @@ type Props$4 = {
|
|
|
167
171
|
description?: string;
|
|
168
172
|
comments?: TicketComment[];
|
|
169
173
|
};
|
|
170
|
-
declare function TicketBody({ issueNumber, notification, project, task, dueDate, startDate, assignees, reporter, team, location, related, description, comments, }: Props$
|
|
174
|
+
declare function TicketBody({ issueNumber, notification, project, task, dueDate, startDate, assignees, reporter, team, location, related, description, comments, }: Props$L): react_jsx_runtime.JSX.Element;
|
|
171
175
|
|
|
172
176
|
type SearchResult = {
|
|
173
177
|
label: string;
|
|
174
178
|
count: number;
|
|
175
179
|
};
|
|
176
|
-
type Props$
|
|
180
|
+
type Props$K = {
|
|
177
181
|
loading?: boolean;
|
|
178
182
|
results?: SearchResult[];
|
|
179
183
|
initialText?: string;
|
|
@@ -181,7 +185,7 @@ type Props$3 = {
|
|
|
181
185
|
/** Optional debounce for onUpdate calls (ms). Defaults to 250ms. */
|
|
182
186
|
debounceMs?: number;
|
|
183
187
|
};
|
|
184
|
-
declare function SearchBar({ loading, results, initialText, onUpdate, debounceMs, }: Props$
|
|
188
|
+
declare function SearchBar({ loading, results, initialText, onUpdate, debounceMs, }: Props$K): react_jsx_runtime.JSX.Element;
|
|
185
189
|
|
|
186
190
|
type FilterButtonKey = FilterCategory | IntegrationService | MoreFilter;
|
|
187
191
|
type NavButtonConfig = {
|
|
@@ -195,16 +199,30 @@ type FilterBarProps = {
|
|
|
195
199
|
};
|
|
196
200
|
declare function FilterBar({ buttons }: FilterBarProps): react_jsx_runtime.JSX.Element;
|
|
197
201
|
|
|
198
|
-
type
|
|
202
|
+
type BulkAction = {
|
|
203
|
+
label: string;
|
|
204
|
+
icon: React.ReactNode;
|
|
205
|
+
onClick?: () => void;
|
|
206
|
+
disabled?: boolean;
|
|
207
|
+
};
|
|
208
|
+
type Props$J = {
|
|
209
|
+
totalMessages?: number;
|
|
210
|
+
selectedCount?: number;
|
|
211
|
+
onSelectAll?: (selected: boolean) => void;
|
|
212
|
+
actions?: BulkAction[];
|
|
213
|
+
};
|
|
214
|
+
declare function BulkActions({ totalMessages, selectedCount: selectedCountProp, onSelectAll, actions, }: Props$J): react_jsx_runtime.JSX.Element;
|
|
199
215
|
|
|
200
|
-
type
|
|
201
|
-
|
|
216
|
+
type IconSize$F = 16 | 20 | 24 | 36;
|
|
217
|
+
|
|
218
|
+
type Props$I = {
|
|
219
|
+
size?: IconSize$F;
|
|
202
220
|
className?: string;
|
|
203
221
|
service?: IntegrationService;
|
|
204
222
|
};
|
|
205
|
-
declare function BrandIcon({ size, className, service }: Props$
|
|
223
|
+
declare function BrandIcon({ size, className, service }: Props$I): react_jsx_runtime.JSX.Element;
|
|
206
224
|
|
|
207
|
-
type Props$
|
|
225
|
+
type Props$H = {
|
|
208
226
|
isOpen: boolean;
|
|
209
227
|
onClose: () => void;
|
|
210
228
|
children: ReactNode;
|
|
@@ -212,10 +230,10 @@ type Props$1 = {
|
|
|
212
230
|
disableBackdropClick?: boolean;
|
|
213
231
|
disableEscapeKey?: boolean;
|
|
214
232
|
};
|
|
215
|
-
declare function Modal({ isOpen, onClose, children, className, disableBackdropClick, disableEscapeKey, }: Props$
|
|
233
|
+
declare function Modal({ isOpen, onClose, children, className, disableBackdropClick, disableEscapeKey, }: Props$H): React$1.ReactPortal | null;
|
|
216
234
|
|
|
217
235
|
type ConfirmationVariant = "danger" | "primary" | "warning";
|
|
218
|
-
type Props = {
|
|
236
|
+
type Props$G = {
|
|
219
237
|
isOpen: boolean;
|
|
220
238
|
onClose: () => void;
|
|
221
239
|
onConfirm: () => void;
|
|
@@ -226,7 +244,7 @@ type Props = {
|
|
|
226
244
|
variant?: ConfirmationVariant;
|
|
227
245
|
children?: ReactNode;
|
|
228
246
|
};
|
|
229
|
-
declare function ConfirmationModal({ isOpen, onClose, onConfirm, title, message, confirmLabel, cancelLabel, variant, children, }: Props): react_jsx_runtime.JSX.Element;
|
|
247
|
+
declare function ConfirmationModal({ isOpen, onClose, onConfirm, title, message, confirmLabel, cancelLabel, variant, children, }: Props$G): react_jsx_runtime.JSX.Element;
|
|
230
248
|
|
|
231
249
|
interface AccountInfoFieldProps {
|
|
232
250
|
label: string;
|
|
@@ -348,4 +366,338 @@ type Event = {
|
|
|
348
366
|
|
|
349
367
|
declare const fakeMessages: ChatData[];
|
|
350
368
|
|
|
351
|
-
|
|
369
|
+
type IconSize$E = 16 | 20 | 24 | 36;
|
|
370
|
+
type Props$F = {
|
|
371
|
+
size?: IconSize$E;
|
|
372
|
+
color?: string;
|
|
373
|
+
fillColor?: string;
|
|
374
|
+
};
|
|
375
|
+
declare function AlertIcon({ size, color, fillColor, }: Props$F): react_jsx_runtime.JSX.Element;
|
|
376
|
+
|
|
377
|
+
type IconSize$D = 16 | 20 | 24 | 36;
|
|
378
|
+
type Props$E = {
|
|
379
|
+
size?: IconSize$D;
|
|
380
|
+
color?: string;
|
|
381
|
+
fillColor?: string;
|
|
382
|
+
};
|
|
383
|
+
declare function ArrowLeft({ size, color, fillColor, }: Props$E): react_jsx_runtime.JSX.Element;
|
|
384
|
+
|
|
385
|
+
type IconSize$C = 16 | 20 | 24 | 36;
|
|
386
|
+
type Props$D = {
|
|
387
|
+
size?: IconSize$C;
|
|
388
|
+
color?: string;
|
|
389
|
+
fillColor?: string;
|
|
390
|
+
};
|
|
391
|
+
declare function ArrowRight({ size, color, fillColor, }: Props$D): react_jsx_runtime.JSX.Element;
|
|
392
|
+
|
|
393
|
+
type IconSize$B = 16 | 20 | 24 | 36;
|
|
394
|
+
type Props$C = {
|
|
395
|
+
size?: IconSize$B;
|
|
396
|
+
color?: string;
|
|
397
|
+
fillColor?: string;
|
|
398
|
+
};
|
|
399
|
+
declare function BullHorn({ size, color, fillColor, }: Props$C): react_jsx_runtime.JSX.Element;
|
|
400
|
+
|
|
401
|
+
type IconSize$A = 16 | 20 | 24 | 36;
|
|
402
|
+
type Props$B = {
|
|
403
|
+
size?: IconSize$A;
|
|
404
|
+
color?: string;
|
|
405
|
+
fillColor?: string;
|
|
406
|
+
};
|
|
407
|
+
declare function Calc({ size, color, fillColor, }: Props$B): react_jsx_runtime.JSX.Element;
|
|
408
|
+
|
|
409
|
+
type IconSize$z = 16 | 20 | 24 | 36;
|
|
410
|
+
type Props$A = {
|
|
411
|
+
size?: IconSize$z;
|
|
412
|
+
color?: string;
|
|
413
|
+
fillColor?: string;
|
|
414
|
+
};
|
|
415
|
+
declare function ChatNew({ size, color, fillColor, }: Props$A): react_jsx_runtime.JSX.Element;
|
|
416
|
+
|
|
417
|
+
type IconSize$y = 16 | 20 | 24 | 36;
|
|
418
|
+
type Props$z = {
|
|
419
|
+
size?: IconSize$y;
|
|
420
|
+
color?: string;
|
|
421
|
+
fillColor?: string;
|
|
422
|
+
};
|
|
423
|
+
declare function Check({ size, color, fillColor, }: Props$z): react_jsx_runtime.JSX.Element;
|
|
424
|
+
|
|
425
|
+
type IconSize$x = 16 | 20 | 24 | 36;
|
|
426
|
+
type Props$y = {
|
|
427
|
+
size?: IconSize$x;
|
|
428
|
+
color?: string;
|
|
429
|
+
fillColor?: string;
|
|
430
|
+
};
|
|
431
|
+
declare function CheckBox({ size, color, fillColor }: Props$y): react_jsx_runtime.JSX.Element;
|
|
432
|
+
|
|
433
|
+
type IconSize$w = 16 | 20 | 24 | 36;
|
|
434
|
+
type Props$x = {
|
|
435
|
+
size?: IconSize$w;
|
|
436
|
+
color?: string;
|
|
437
|
+
fillColor?: string;
|
|
438
|
+
};
|
|
439
|
+
declare function ChevronDown({ size, color, fillColor, }: Props$x): react_jsx_runtime.JSX.Element;
|
|
440
|
+
|
|
441
|
+
type IconSize$v = 16 | 20 | 24 | 36;
|
|
442
|
+
type Props$w = {
|
|
443
|
+
size?: IconSize$v;
|
|
444
|
+
color?: string;
|
|
445
|
+
fillColor?: string;
|
|
446
|
+
};
|
|
447
|
+
declare function ChevronLeft({ size, color, fillColor, }: Props$w): react_jsx_runtime.JSX.Element;
|
|
448
|
+
|
|
449
|
+
type IconSize$u = 16 | 20 | 24 | 36;
|
|
450
|
+
type Props$v = {
|
|
451
|
+
size?: IconSize$u;
|
|
452
|
+
color?: string;
|
|
453
|
+
fillColor?: string;
|
|
454
|
+
};
|
|
455
|
+
declare function ChevronRight({ size, color, fillColor, }: Props$v): react_jsx_runtime.JSX.Element;
|
|
456
|
+
|
|
457
|
+
type IconSize$t = 16 | 20 | 24 | 36;
|
|
458
|
+
type Props$u = {
|
|
459
|
+
size?: IconSize$t;
|
|
460
|
+
color?: string;
|
|
461
|
+
fillColor?: string;
|
|
462
|
+
};
|
|
463
|
+
declare function ChevronUp({ size, color, fillColor, }: Props$u): react_jsx_runtime.JSX.Element;
|
|
464
|
+
|
|
465
|
+
type IconSize$s = 16 | 20 | 24 | 36;
|
|
466
|
+
type Props$t = {
|
|
467
|
+
size?: IconSize$s;
|
|
468
|
+
color?: string;
|
|
469
|
+
fillColor?: string;
|
|
470
|
+
};
|
|
471
|
+
declare function CircleCheck({ size, color, fillColor, }: Props$t): react_jsx_runtime.JSX.Element;
|
|
472
|
+
|
|
473
|
+
type IconSize$r = 16 | 20 | 24 | 36;
|
|
474
|
+
type Props$s = {
|
|
475
|
+
size?: IconSize$r;
|
|
476
|
+
color?: string;
|
|
477
|
+
fillColor?: string;
|
|
478
|
+
};
|
|
479
|
+
declare function CircleX({ size, color, fillColor, }: Props$s): react_jsx_runtime.JSX.Element;
|
|
480
|
+
|
|
481
|
+
type IconSize$q = 16 | 20 | 24 | 36;
|
|
482
|
+
type Props$r = {
|
|
483
|
+
size?: IconSize$q;
|
|
484
|
+
color?: string;
|
|
485
|
+
fillColor?: string;
|
|
486
|
+
};
|
|
487
|
+
declare function Clipboard({ size, color, fillColor, }: Props$r): react_jsx_runtime.JSX.Element;
|
|
488
|
+
|
|
489
|
+
type IconSize$p = 16 | 20 | 24 | 36;
|
|
490
|
+
type Props$q = {
|
|
491
|
+
size?: IconSize$p;
|
|
492
|
+
color?: string;
|
|
493
|
+
fillColor?: string;
|
|
494
|
+
};
|
|
495
|
+
declare function ClipboardCheck({ size, color, fillColor, }: Props$q): react_jsx_runtime.JSX.Element;
|
|
496
|
+
|
|
497
|
+
type IconSize$o = 16 | 20 | 24 | 36;
|
|
498
|
+
type Props$p = {
|
|
499
|
+
size?: IconSize$o;
|
|
500
|
+
color?: string;
|
|
501
|
+
};
|
|
502
|
+
declare function Close({ size, color }: Props$p): react_jsx_runtime.JSX.Element;
|
|
503
|
+
|
|
504
|
+
type IconSize$n = 16 | 20 | 24 | 36;
|
|
505
|
+
type Props$o = {
|
|
506
|
+
size?: IconSize$n;
|
|
507
|
+
color?: string;
|
|
508
|
+
fillColor?: string;
|
|
509
|
+
};
|
|
510
|
+
declare function CrossDiag({ size, color, fillColor, }: Props$o): react_jsx_runtime.JSX.Element;
|
|
511
|
+
|
|
512
|
+
type IconSize$m = 16 | 20 | 24 | 36;
|
|
513
|
+
type Props$n = {
|
|
514
|
+
size?: IconSize$m;
|
|
515
|
+
color?: string;
|
|
516
|
+
fillColor?: string;
|
|
517
|
+
};
|
|
518
|
+
declare function Dash({ size, color, fillColor, }: Props$n): react_jsx_runtime.JSX.Element;
|
|
519
|
+
|
|
520
|
+
type IconSize$l = 16 | 20 | 24 | 36;
|
|
521
|
+
type Props$m = {
|
|
522
|
+
size?: IconSize$l;
|
|
523
|
+
color?: string;
|
|
524
|
+
fillColor?: string;
|
|
525
|
+
};
|
|
526
|
+
declare function Done({ size, color, fillColor, }: Props$m): react_jsx_runtime.JSX.Element;
|
|
527
|
+
|
|
528
|
+
type IconSize$k = 16 | 20 | 24 | 36;
|
|
529
|
+
type Props$l = {
|
|
530
|
+
size?: IconSize$k;
|
|
531
|
+
color?: string;
|
|
532
|
+
fillColor?: string;
|
|
533
|
+
};
|
|
534
|
+
declare function Download({ size, color, fillColor, }: Props$l): react_jsx_runtime.JSX.Element;
|
|
535
|
+
|
|
536
|
+
type IconSize$j = 16 | 20 | 24 | 36;
|
|
537
|
+
type Props$k = {
|
|
538
|
+
size?: IconSize$j;
|
|
539
|
+
color?: string;
|
|
540
|
+
fillColor?: string;
|
|
541
|
+
};
|
|
542
|
+
declare function ElipsesHori({ size, color, fillColor, }: Props$k): react_jsx_runtime.JSX.Element;
|
|
543
|
+
|
|
544
|
+
type IconSize$i = 16 | 20 | 24 | 36;
|
|
545
|
+
type Props$j = {
|
|
546
|
+
size?: IconSize$i;
|
|
547
|
+
color?: string;
|
|
548
|
+
fillColor?: string;
|
|
549
|
+
};
|
|
550
|
+
declare function ElipsesVert({ size, color, fillColor, }: Props$j): react_jsx_runtime.JSX.Element;
|
|
551
|
+
|
|
552
|
+
type IconSize$h = 16 | 20 | 24 | 36;
|
|
553
|
+
type Props$i = {
|
|
554
|
+
size?: IconSize$h;
|
|
555
|
+
color?: string;
|
|
556
|
+
fillColor?: string;
|
|
557
|
+
};
|
|
558
|
+
declare function Expand({ size, color, fillColor, }: Props$i): react_jsx_runtime.JSX.Element;
|
|
559
|
+
|
|
560
|
+
type IconSize$g = 16 | 20 | 24 | 36;
|
|
561
|
+
type Props$h = {
|
|
562
|
+
size?: IconSize$g;
|
|
563
|
+
color?: string;
|
|
564
|
+
fillColor?: string;
|
|
565
|
+
};
|
|
566
|
+
declare function ExternalLink({ size, color, fillColor, }: Props$h): react_jsx_runtime.JSX.Element;
|
|
567
|
+
|
|
568
|
+
type IconSize$f = 16 | 20 | 24 | 36;
|
|
569
|
+
type Props$g = {
|
|
570
|
+
size?: IconSize$f;
|
|
571
|
+
color?: string;
|
|
572
|
+
fillColor?: string;
|
|
573
|
+
};
|
|
574
|
+
declare function Gear({ size, color, fillColor, }: Props$g): react_jsx_runtime.JSX.Element;
|
|
575
|
+
|
|
576
|
+
type IconSize$e = 16 | 20 | 24 | 36;
|
|
577
|
+
type Props$f = {
|
|
578
|
+
size?: IconSize$e;
|
|
579
|
+
color?: string;
|
|
580
|
+
fillColor?: string;
|
|
581
|
+
};
|
|
582
|
+
declare function Hash({ size, color, fillColor, }: Props$f): react_jsx_runtime.JSX.Element;
|
|
583
|
+
|
|
584
|
+
type IconSize$d = 16 | 20 | 24 | 36;
|
|
585
|
+
type Props$e = {
|
|
586
|
+
size?: IconSize$d;
|
|
587
|
+
color?: string;
|
|
588
|
+
fillColor?: string;
|
|
589
|
+
};
|
|
590
|
+
declare function InsightsIcon({ size, color, fillColor, }: Props$e): react_jsx_runtime.JSX.Element;
|
|
591
|
+
|
|
592
|
+
type IconSize$c = 16 | 20 | 24 | 36;
|
|
593
|
+
type Props$d = {
|
|
594
|
+
size?: IconSize$c;
|
|
595
|
+
color?: string;
|
|
596
|
+
fillColor?: string;
|
|
597
|
+
};
|
|
598
|
+
declare function Loading({ size, color, fillColor, }: Props$d): react_jsx_runtime.JSX.Element;
|
|
599
|
+
|
|
600
|
+
type IconSize$b = 16 | 20 | 24 | 36;
|
|
601
|
+
type Props$c = {
|
|
602
|
+
size?: IconSize$b;
|
|
603
|
+
color?: string;
|
|
604
|
+
fillColor?: string;
|
|
605
|
+
};
|
|
606
|
+
declare function Login({ size, color, fillColor, }: Props$c): react_jsx_runtime.JSX.Element;
|
|
607
|
+
|
|
608
|
+
type IconSize$a = 16 | 20 | 24 | 36;
|
|
609
|
+
type Props$b = {
|
|
610
|
+
size?: IconSize$a;
|
|
611
|
+
color?: string;
|
|
612
|
+
fillColor?: string;
|
|
613
|
+
};
|
|
614
|
+
declare function Logout({ size, color, fillColor, }: Props$b): react_jsx_runtime.JSX.Element;
|
|
615
|
+
|
|
616
|
+
type IconSize$9 = 16 | 20 | 24 | 36;
|
|
617
|
+
type Props$a = {
|
|
618
|
+
size?: IconSize$9;
|
|
619
|
+
color?: string;
|
|
620
|
+
fillColor?: string;
|
|
621
|
+
};
|
|
622
|
+
declare function Mail({ size, color, fillColor, }: Props$a): react_jsx_runtime.JSX.Element;
|
|
623
|
+
|
|
624
|
+
type IconSize$8 = 16 | 20 | 24 | 36;
|
|
625
|
+
type Props$9 = {
|
|
626
|
+
size?: IconSize$8;
|
|
627
|
+
color?: string;
|
|
628
|
+
fillColor?: string;
|
|
629
|
+
};
|
|
630
|
+
declare function NotDone({ size, color, fillColor, }: Props$9): react_jsx_runtime.JSX.Element;
|
|
631
|
+
|
|
632
|
+
type IconSize$7 = 16 | 20 | 24 | 36;
|
|
633
|
+
type Props$8 = {
|
|
634
|
+
size?: IconSize$7;
|
|
635
|
+
color?: string;
|
|
636
|
+
fillColor?: string;
|
|
637
|
+
};
|
|
638
|
+
declare function PlusLarge({ size, color, fillColor, }: Props$8): react_jsx_runtime.JSX.Element;
|
|
639
|
+
|
|
640
|
+
type IconSize$6 = 16 | 20 | 24 | 36;
|
|
641
|
+
type Props$7 = {
|
|
642
|
+
size?: IconSize$6;
|
|
643
|
+
color?: string;
|
|
644
|
+
fillColor?: string;
|
|
645
|
+
};
|
|
646
|
+
declare function PlusSmall({ size, color, fillColor, }: Props$7): react_jsx_runtime.JSX.Element;
|
|
647
|
+
|
|
648
|
+
type IconSize$5 = 16 | 20 | 24 | 36;
|
|
649
|
+
type Props$6 = {
|
|
650
|
+
size?: IconSize$5;
|
|
651
|
+
color?: string;
|
|
652
|
+
fillColor?: string;
|
|
653
|
+
};
|
|
654
|
+
declare function Queue({ size, color, fillColor, }: Props$6): react_jsx_runtime.JSX.Element;
|
|
655
|
+
|
|
656
|
+
type IconSize$4 = 16 | 20 | 24 | 36;
|
|
657
|
+
type Props$5 = {
|
|
658
|
+
size?: IconSize$4;
|
|
659
|
+
color?: string;
|
|
660
|
+
fillColor?: string;
|
|
661
|
+
};
|
|
662
|
+
declare function Search({ size, color, fillColor, }: Props$5): react_jsx_runtime.JSX.Element;
|
|
663
|
+
|
|
664
|
+
type IconSize$3 = 16 | 20 | 24 | 36;
|
|
665
|
+
type Props$4 = {
|
|
666
|
+
size?: IconSize$3;
|
|
667
|
+
color?: string;
|
|
668
|
+
fillColor?: string;
|
|
669
|
+
};
|
|
670
|
+
declare function Settings({ size, color, fillColor, }: Props$4): react_jsx_runtime.JSX.Element;
|
|
671
|
+
|
|
672
|
+
type IconSize$2 = 16 | 20 | 24 | 36;
|
|
673
|
+
type Props$3 = {
|
|
674
|
+
size?: IconSize$2;
|
|
675
|
+
color?: string;
|
|
676
|
+
fillColor?: string;
|
|
677
|
+
};
|
|
678
|
+
declare function ThumbDown({ size, color, fillColor, }: Props$3): react_jsx_runtime.JSX.Element;
|
|
679
|
+
|
|
680
|
+
type IconSize$1 = 16 | 20 | 24 | 36;
|
|
681
|
+
type Props$2 = {
|
|
682
|
+
size?: IconSize$1;
|
|
683
|
+
color?: string;
|
|
684
|
+
fillColor?: string;
|
|
685
|
+
};
|
|
686
|
+
declare function ThumbUp({ size, color, fillColor, }: Props$2): react_jsx_runtime.JSX.Element;
|
|
687
|
+
|
|
688
|
+
type IconSize = 16 | 20 | 24 | 36;
|
|
689
|
+
type Props$1 = {
|
|
690
|
+
size?: IconSize;
|
|
691
|
+
color?: string;
|
|
692
|
+
fillColor?: string;
|
|
693
|
+
};
|
|
694
|
+
declare function Zap({ size, color, fillColor, }: Props$1): react_jsx_runtime.JSX.Element;
|
|
695
|
+
|
|
696
|
+
type Props = {
|
|
697
|
+
size?: number;
|
|
698
|
+
icon?: BaseIconName.FIRE | BaseIconName.ALERT;
|
|
699
|
+
variant?: ColorVariants;
|
|
700
|
+
};
|
|
701
|
+
declare function CategoryIcon({ size, icon, variant }: Props): react_jsx_runtime.JSX.Element;
|
|
702
|
+
|
|
703
|
+
export { AccountInfoField, AccountInfoSection, AccountIntegrationCard, AccountIntegrationCardItem, AlertIcon, ArrowLeft, ArrowRight, type Attachment, BaseIconName, BrandIcon, type BulkAction, BulkActions, BullHorn, Calc, type CalendarData, CategoryIcon, ChatBody, type ChatData, ChatNew, Check, CheckBox, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, CircleCheck, CircleX, Clipboard, ClipboardCheck, Close, ColorVariants, ConfirmationModal, type ConfirmationVariant, CrossDiag, Dash, Done, Download, ElipsesHori, ElipsesVert, EmailBody, type EmailData, type Event, EventCard, type EventData, type EventGroup, EventState, type EventSummaryParts, EventType, Expand, ExternalLink, type ExternalPerson, FilterBar, type FilterButtonKey, FilterCategory, Gear, Hash, type IconSize$F as IconSize, InsightsIcon, IntegrationService, Loading, Login, Logout, Mail, type MessageData, Modal, MoreFilter, NavBar, NotDone, PlusLarge, PlusSmall, PreviewCard, Queue, Search, SearchBar, type SearchResult, Settings, ThumbDown, ThumbUp, TicketBody, type TicketComment, type TicketData, UrgencyLevel, Zap, fakeMessages };
|