@ckbox/components 2.9.1 → 2.10.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/dist/index.d.ts +732 -504
- package/dist/index.js +1 -1
- package/dist/styles/ckbox.css +1 -1
- package/dist/styles/themes/lark.css +1 -1
- package/icons/AutoMode.svg +3 -0
- package/icons/KeyboardArrowDown.svg +3 -0
- package/icons/MoreHoriz.svg +1 -0
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -8,8 +8,8 @@ import { TransitionProps } from 'react-transition-group/Transition';
|
|
|
8
8
|
import Cropper$1 from 'cropperjs';
|
|
9
9
|
import * as react_dnd from 'react-dnd';
|
|
10
10
|
|
|
11
|
-
declare const Avatar: React$1.
|
|
12
|
-
interface Props$
|
|
11
|
+
declare const Avatar: React$1.ForwardRefExoticComponent<Props$3G & React$1.RefAttributes<HTMLDivElement>>;
|
|
12
|
+
interface Props$3G {
|
|
13
13
|
/**
|
|
14
14
|
* ID used for determining color.
|
|
15
15
|
*/
|
|
@@ -28,26 +28,6 @@ interface Props$3y {
|
|
|
28
28
|
showFullName?: boolean;
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
-
declare const Bottombar: React$1.ForwardRefExoticComponent<Props$3x & React$1.RefAttributes<HTMLDivElement>>;
|
|
32
|
-
interface Props$3x {
|
|
33
|
-
/**
|
|
34
|
-
* Main content of the component.
|
|
35
|
-
*/
|
|
36
|
-
children: React$1.ReactNode;
|
|
37
|
-
/**
|
|
38
|
-
* Content rendered on the right side of the bar.
|
|
39
|
-
*/
|
|
40
|
-
sideContent: React$1.ReactNode;
|
|
41
|
-
/**
|
|
42
|
-
* Content rendered as status summary in a absolute left-positioned container
|
|
43
|
-
*/
|
|
44
|
-
statusContent?: React$1.ReactNode;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
type ButtonSize = 'small' | 'medium' | 'large';
|
|
48
|
-
type ButtonType = 'fill' | 'outline' | 'plain' | 'link';
|
|
49
|
-
type ButtonColor = 'action' | 'success' | 'danger' | 'neutral';
|
|
50
|
-
|
|
51
31
|
declare const AccessTimeOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
52
32
|
|
|
53
33
|
declare const AddOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
@@ -66,6 +46,8 @@ declare const ArrowRightOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JS
|
|
|
66
46
|
|
|
67
47
|
declare const ArticleOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
68
48
|
|
|
49
|
+
declare const AutoMode: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
50
|
+
|
|
69
51
|
declare const CheckCircleOutlineOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
70
52
|
|
|
71
53
|
declare const CheckOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
@@ -140,6 +122,8 @@ declare const InfoOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Elem
|
|
|
140
122
|
|
|
141
123
|
declare const Inventory2Outlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
142
124
|
|
|
125
|
+
declare const KeyboardArrowDown: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
126
|
+
|
|
143
127
|
declare const KeyboardDoubleArrowLeftOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
144
128
|
|
|
145
129
|
declare const KeyboardDoubleArrowRightOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
@@ -152,6 +136,8 @@ declare const LockOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Elem
|
|
|
152
136
|
|
|
153
137
|
declare const ManageAccountsOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
154
138
|
|
|
139
|
+
declare const MoreHoriz: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
140
|
+
|
|
155
141
|
declare const MoreVertOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
156
142
|
|
|
157
143
|
declare const OpenInFull: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
@@ -188,7 +174,7 @@ declare const Warning: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
|
188
174
|
|
|
189
175
|
declare const WarningAmberOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
190
176
|
|
|
191
|
-
interface Props$
|
|
177
|
+
interface Props$3F {
|
|
192
178
|
/**
|
|
193
179
|
* Toggles optional icon animation.
|
|
194
180
|
*/
|
|
@@ -203,15 +189,15 @@ interface Props$3w {
|
|
|
203
189
|
'data-testid'?: string;
|
|
204
190
|
}
|
|
205
191
|
|
|
206
|
-
declare const ArrowRightOutlinedAnimated: React$1.FC<Props$
|
|
192
|
+
declare const ArrowRightOutlinedAnimated: React$1.FC<Props$3F>;
|
|
207
193
|
|
|
208
|
-
declare const SettingsOutlinedAnimated: React$1.FC<Props$
|
|
194
|
+
declare const SettingsOutlinedAnimated: React$1.FC<Props$3F>;
|
|
209
195
|
|
|
210
|
-
declare const SortAscending: React$1.FC<Props$
|
|
196
|
+
declare const SortAscending: React$1.FC<Props$3F>;
|
|
211
197
|
|
|
212
|
-
declare const SortDescending: React$1.FC<Props$
|
|
198
|
+
declare const SortDescending: React$1.FC<Props$3F>;
|
|
213
199
|
|
|
214
|
-
declare const Spinner: React$1.FC<Props$
|
|
200
|
+
declare const Spinner: React$1.FC<Props$3F>;
|
|
215
201
|
|
|
216
202
|
declare const icons$1_AccessTimeOutlined: typeof AccessTimeOutlined;
|
|
217
203
|
declare const icons$1_AddOutlined: typeof AddOutlined;
|
|
@@ -223,6 +209,7 @@ declare const icons$1_ArrowForwardOutlined: typeof ArrowForwardOutlined;
|
|
|
223
209
|
declare const icons$1_ArrowRightOutlined: typeof ArrowRightOutlined;
|
|
224
210
|
declare const icons$1_ArrowRightOutlinedAnimated: typeof ArrowRightOutlinedAnimated;
|
|
225
211
|
declare const icons$1_ArticleOutlined: typeof ArticleOutlined;
|
|
212
|
+
declare const icons$1_AutoMode: typeof AutoMode;
|
|
226
213
|
declare const icons$1_CheckCircleOutlineOutlined: typeof CheckCircleOutlineOutlined;
|
|
227
214
|
declare const icons$1_CheckOutlined: typeof CheckOutlined;
|
|
228
215
|
declare const icons$1_ChevronLeftOutlined: typeof ChevronLeftOutlined;
|
|
@@ -260,12 +247,14 @@ declare const icons$1_FolderOutlined: typeof FolderOutlined;
|
|
|
260
247
|
declare const icons$1_HighlightOffOutlined: typeof HighlightOffOutlined;
|
|
261
248
|
declare const icons$1_InfoOutlined: typeof InfoOutlined;
|
|
262
249
|
declare const icons$1_Inventory2Outlined: typeof Inventory2Outlined;
|
|
250
|
+
declare const icons$1_KeyboardArrowDown: typeof KeyboardArrowDown;
|
|
263
251
|
declare const icons$1_KeyboardDoubleArrowLeftOutlined: typeof KeyboardDoubleArrowLeftOutlined;
|
|
264
252
|
declare const icons$1_KeyboardDoubleArrowRightOutlined: typeof KeyboardDoubleArrowRightOutlined;
|
|
265
253
|
declare const icons$1_LastPageOutlined: typeof LastPageOutlined;
|
|
266
254
|
declare const icons$1_LockOpenOutlined: typeof LockOpenOutlined;
|
|
267
255
|
declare const icons$1_LockOutlined: typeof LockOutlined;
|
|
268
256
|
declare const icons$1_ManageAccountsOutlined: typeof ManageAccountsOutlined;
|
|
257
|
+
declare const icons$1_MoreHoriz: typeof MoreHoriz;
|
|
269
258
|
declare const icons$1_MoreVertOutlined: typeof MoreVertOutlined;
|
|
270
259
|
declare const icons$1_OpenInFull: typeof OpenInFull;
|
|
271
260
|
declare const icons$1_OpenInNew: typeof OpenInNew;
|
|
@@ -300,6 +289,7 @@ declare namespace icons$1 {
|
|
|
300
289
|
icons$1_ArrowRightOutlined as ArrowRightOutlined,
|
|
301
290
|
icons$1_ArrowRightOutlinedAnimated as ArrowRightOutlinedAnimated,
|
|
302
291
|
icons$1_ArticleOutlined as ArticleOutlined,
|
|
292
|
+
icons$1_AutoMode as AutoMode,
|
|
303
293
|
icons$1_CheckCircleOutlineOutlined as CheckCircleOutlineOutlined,
|
|
304
294
|
icons$1_CheckOutlined as CheckOutlined,
|
|
305
295
|
icons$1_ChevronLeftOutlined as ChevronLeftOutlined,
|
|
@@ -337,12 +327,14 @@ declare namespace icons$1 {
|
|
|
337
327
|
icons$1_HighlightOffOutlined as HighlightOffOutlined,
|
|
338
328
|
icons$1_InfoOutlined as InfoOutlined,
|
|
339
329
|
icons$1_Inventory2Outlined as Inventory2Outlined,
|
|
330
|
+
icons$1_KeyboardArrowDown as KeyboardArrowDown,
|
|
340
331
|
icons$1_KeyboardDoubleArrowLeftOutlined as KeyboardDoubleArrowLeftOutlined,
|
|
341
332
|
icons$1_KeyboardDoubleArrowRightOutlined as KeyboardDoubleArrowRightOutlined,
|
|
342
333
|
icons$1_LastPageOutlined as LastPageOutlined,
|
|
343
334
|
icons$1_LockOpenOutlined as LockOpenOutlined,
|
|
344
335
|
icons$1_LockOutlined as LockOutlined,
|
|
345
336
|
icons$1_ManageAccountsOutlined as ManageAccountsOutlined,
|
|
337
|
+
icons$1_MoreHoriz as MoreHoriz,
|
|
346
338
|
icons$1_MoreVertOutlined as MoreVertOutlined,
|
|
347
339
|
icons$1_OpenInFull as OpenInFull,
|
|
348
340
|
icons$1_OpenInNew as OpenInNew,
|
|
@@ -376,8 +368,8 @@ type IconName = keyof typeof icons$1;
|
|
|
376
368
|
type IconSize = 'small' | 'base' | 'medium' | 'big' | 'bigger' | 'biggest' | 'humongous';
|
|
377
369
|
type IconColor = 'accent' | 'danger' | 'default' | 'disabled' | 'muted' | 'success' | 'warning';
|
|
378
370
|
|
|
379
|
-
declare const Icon: React$1.FC<Props$
|
|
380
|
-
interface Props$
|
|
371
|
+
declare const Icon: React$1.FC<Props$3E>;
|
|
372
|
+
interface Props$3E {
|
|
381
373
|
/**
|
|
382
374
|
* Toggles optional icon animation.
|
|
383
375
|
*/
|
|
@@ -407,8 +399,48 @@ interface Props$3v {
|
|
|
407
399
|
size?: IconSize;
|
|
408
400
|
}
|
|
409
401
|
|
|
410
|
-
declare const
|
|
411
|
-
interface Props$
|
|
402
|
+
declare const ActionBanner: React$1.FC<Props$3D>;
|
|
403
|
+
interface Props$3D {
|
|
404
|
+
/**
|
|
405
|
+
* Icon displayed for action button.
|
|
406
|
+
*/
|
|
407
|
+
actionIcon?: IconName;
|
|
408
|
+
/**
|
|
409
|
+
* Label displayed inside header.
|
|
410
|
+
*/
|
|
411
|
+
headerLabel: string;
|
|
412
|
+
/**
|
|
413
|
+
* Callback invoked on action.
|
|
414
|
+
*/
|
|
415
|
+
onAction: () => void;
|
|
416
|
+
/**
|
|
417
|
+
* Action button's label.
|
|
418
|
+
*/
|
|
419
|
+
actionLabel: string;
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
declare const Bottombar: React$1.ForwardRefExoticComponent<Props$3C & React$1.RefAttributes<HTMLDivElement>>;
|
|
423
|
+
interface Props$3C {
|
|
424
|
+
/**
|
|
425
|
+
* Main content of the component.
|
|
426
|
+
*/
|
|
427
|
+
children: React$1.ReactNode;
|
|
428
|
+
/**
|
|
429
|
+
* Content rendered on the right side of the bar.
|
|
430
|
+
*/
|
|
431
|
+
sideContent: React$1.ReactNode;
|
|
432
|
+
/**
|
|
433
|
+
* Content rendered as status summary in a absolute left-positioned container
|
|
434
|
+
*/
|
|
435
|
+
statusContent?: React$1.ReactNode;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
type ButtonSize = 'tiny' | 'small' | 'medium' | 'large';
|
|
439
|
+
type ButtonType = 'fill' | 'outline' | 'plain' | 'link';
|
|
440
|
+
type ButtonColor = 'action' | 'success' | 'danger' | 'neutral';
|
|
441
|
+
|
|
442
|
+
declare const Button: React$1.ForwardRefExoticComponent<Props$3B & React$1.RefAttributes<HTMLButtonElement>>;
|
|
443
|
+
interface Props$3B {
|
|
412
444
|
/**
|
|
413
445
|
* Applies active styling.
|
|
414
446
|
*/
|
|
@@ -503,24 +535,24 @@ interface Props$3u {
|
|
|
503
535
|
disabledLabelWrapping?: boolean;
|
|
504
536
|
}
|
|
505
537
|
|
|
506
|
-
declare const ButtonGroup: React$1.FC<Props$
|
|
507
|
-
interface Props$
|
|
538
|
+
declare const ButtonGroup: React$1.FC<Props$3A>;
|
|
539
|
+
interface Props$3A {
|
|
508
540
|
/**
|
|
509
541
|
* Button components.
|
|
510
542
|
*/
|
|
511
543
|
children: React$1.ReactNode;
|
|
512
544
|
}
|
|
513
545
|
|
|
514
|
-
declare const ButtonRow: React$1.FC<Props$
|
|
515
|
-
interface Props$
|
|
546
|
+
declare const ButtonRow: React$1.FC<Props$3z>;
|
|
547
|
+
interface Props$3z {
|
|
516
548
|
/**
|
|
517
549
|
* Button components.
|
|
518
550
|
*/
|
|
519
551
|
children: React$1.ReactNode;
|
|
520
552
|
}
|
|
521
553
|
|
|
522
|
-
declare const CircularLoader: React$1.ForwardRefExoticComponent<Props$
|
|
523
|
-
interface Props$
|
|
554
|
+
declare const CircularLoader: React$1.ForwardRefExoticComponent<Props$3y & React$1.RefAttributes<HTMLButtonElement>>;
|
|
555
|
+
interface Props$3y {
|
|
524
556
|
/**
|
|
525
557
|
* Component's label.
|
|
526
558
|
*/
|
|
@@ -543,8 +575,8 @@ interface Props$3r {
|
|
|
543
575
|
onClick?: () => void;
|
|
544
576
|
}
|
|
545
577
|
|
|
546
|
-
declare const CoreUploaderProgressPanel: ({ error, errorMessage, completed, actionIcon, actionLabel, onAction, id, title, thumbnailSrc, value, assetSize, displayThumbnail, }: Props$
|
|
547
|
-
interface Props$
|
|
578
|
+
declare const CoreUploaderProgressPanel: ({ error, errorMessage, completed, actionIcon, actionLabel, onAction, id, title, thumbnailSrc, value, assetSize, displayThumbnail, }: Props$3x) => React$1.JSX.Element;
|
|
579
|
+
interface Props$3x {
|
|
548
580
|
/**
|
|
549
581
|
* Source string used for thumbnail.
|
|
550
582
|
*/
|
|
@@ -599,8 +631,8 @@ interface Props$3q {
|
|
|
599
631
|
actionIcon?: IconName;
|
|
600
632
|
}
|
|
601
633
|
|
|
602
|
-
declare const CoreUploaderWorkingArea: React$1.ForwardRefExoticComponent<Props$
|
|
603
|
-
interface Props$
|
|
634
|
+
declare const CoreUploaderWorkingArea: React$1.ForwardRefExoticComponent<Props$3w & React$1.RefAttributes<HTMLDivElement>>;
|
|
635
|
+
interface Props$3w {
|
|
604
636
|
/**
|
|
605
637
|
* Label displayed by component.
|
|
606
638
|
*/
|
|
@@ -619,8 +651,8 @@ interface Props$3p {
|
|
|
619
651
|
uploadButton: React$1.ReactNode;
|
|
620
652
|
}
|
|
621
653
|
|
|
622
|
-
declare const CoreUploaderErrorPanel: ({ children, errorTitle, errorSubTitle }: Props$
|
|
623
|
-
interface Props$
|
|
654
|
+
declare const CoreUploaderErrorPanel: ({ children, errorTitle, errorSubTitle }: Props$3v) => React$1.JSX.Element;
|
|
655
|
+
interface Props$3v {
|
|
624
656
|
/**
|
|
625
657
|
* Content displayed inside error panel.
|
|
626
658
|
*/
|
|
@@ -635,8 +667,8 @@ interface Props$3o {
|
|
|
635
667
|
errorSubTitle: string;
|
|
636
668
|
}
|
|
637
669
|
|
|
638
|
-
declare const CoreUploaderView: ({ header, footer }: Props$
|
|
639
|
-
interface Props$
|
|
670
|
+
declare const CoreUploaderView: ({ header, footer }: Props$3u) => React$1.JSX.Element;
|
|
671
|
+
interface Props$3u {
|
|
640
672
|
/**
|
|
641
673
|
* Content displayed as header element.
|
|
642
674
|
*/
|
|
@@ -647,8 +679,8 @@ interface Props$3n {
|
|
|
647
679
|
footer?: React$1.ReactNode;
|
|
648
680
|
}
|
|
649
681
|
|
|
650
|
-
declare const DialogNextTitle: React$1.ForwardRefExoticComponent<Props$
|
|
651
|
-
interface Props$
|
|
682
|
+
declare const DialogNextTitle: React$1.ForwardRefExoticComponent<Props$3t & React$1.RefAttributes<HTMLDivElement>>;
|
|
683
|
+
interface Props$3t {
|
|
652
684
|
/**
|
|
653
685
|
* Main content of the component.
|
|
654
686
|
*/
|
|
@@ -667,8 +699,8 @@ interface Props$3m {
|
|
|
667
699
|
titleId?: string;
|
|
668
700
|
}
|
|
669
701
|
|
|
670
|
-
declare const DialogNextColumn: React$1.ForwardRefExoticComponent<Props$
|
|
671
|
-
interface Props$
|
|
702
|
+
declare const DialogNextColumn: React$1.ForwardRefExoticComponent<Props$3s & React$1.RefAttributes<HTMLDivElement>>;
|
|
703
|
+
interface Props$3s {
|
|
672
704
|
/**
|
|
673
705
|
* Main content of the component.
|
|
674
706
|
*/
|
|
@@ -679,8 +711,8 @@ interface Props$3l {
|
|
|
679
711
|
className?: string;
|
|
680
712
|
}
|
|
681
713
|
|
|
682
|
-
declare const DialogNextContent: React$1.ForwardRefExoticComponent<Props$
|
|
683
|
-
interface Props$
|
|
714
|
+
declare const DialogNextContent: React$1.ForwardRefExoticComponent<Props$3r & React$1.RefAttributes<HTMLDivElement>>;
|
|
715
|
+
interface Props$3r {
|
|
684
716
|
/**
|
|
685
717
|
* Main content of the component.
|
|
686
718
|
*/
|
|
@@ -699,8 +731,8 @@ interface Props$3k {
|
|
|
699
731
|
id?: string;
|
|
700
732
|
}
|
|
701
733
|
|
|
702
|
-
declare const DialogNextFooter: React$1.ForwardRefExoticComponent<Props$
|
|
703
|
-
interface Props$
|
|
734
|
+
declare const DialogNextFooter: React$1.ForwardRefExoticComponent<Props$3q & React$1.RefAttributes<HTMLDivElement>>;
|
|
735
|
+
interface Props$3q {
|
|
704
736
|
/**
|
|
705
737
|
* Main content of the component.
|
|
706
738
|
*/
|
|
@@ -711,8 +743,8 @@ interface Props$3j {
|
|
|
711
743
|
className?: string;
|
|
712
744
|
}
|
|
713
745
|
|
|
714
|
-
declare const DialogNextCloseButton: React$1.ForwardRefExoticComponent<Props$
|
|
715
|
-
interface Props$
|
|
746
|
+
declare const DialogNextCloseButton: React$1.ForwardRefExoticComponent<Props$3p & React$1.RefAttributes<HTMLButtonElement>>;
|
|
747
|
+
interface Props$3p {
|
|
716
748
|
/**
|
|
717
749
|
* Close button's label.
|
|
718
750
|
*/
|
|
@@ -723,8 +755,8 @@ interface Props$3i {
|
|
|
723
755
|
className?: string;
|
|
724
756
|
}
|
|
725
757
|
|
|
726
|
-
declare const DialogNextHeader: React$1.ForwardRefExoticComponent<Props$
|
|
727
|
-
interface Props$
|
|
758
|
+
declare const DialogNextHeader: React$1.ForwardRefExoticComponent<Props$3o & React$1.RefAttributes<HTMLDivElement>>;
|
|
759
|
+
interface Props$3o {
|
|
728
760
|
/**
|
|
729
761
|
* Main content of the component.
|
|
730
762
|
*/
|
|
@@ -735,16 +767,16 @@ interface Props$3h {
|
|
|
735
767
|
className?: string;
|
|
736
768
|
}
|
|
737
769
|
|
|
738
|
-
declare const DialogNextSeparator: React$1.ForwardRefExoticComponent<Props$
|
|
739
|
-
interface Props$
|
|
770
|
+
declare const DialogNextSeparator: React$1.ForwardRefExoticComponent<Props$3n & React$1.RefAttributes<HTMLDivElement>>;
|
|
771
|
+
interface Props$3n {
|
|
740
772
|
/**
|
|
741
773
|
* Sets root header class.
|
|
742
774
|
*/
|
|
743
775
|
className?: string;
|
|
744
776
|
}
|
|
745
777
|
|
|
746
|
-
declare const DialogNext: React$1.ForwardRefExoticComponent<Props$
|
|
747
|
-
interface Props$
|
|
778
|
+
declare const DialogNext: React$1.ForwardRefExoticComponent<Props$3m & React$1.RefAttributes<HTMLDivElement>>;
|
|
779
|
+
interface Props$3m {
|
|
748
780
|
/**
|
|
749
781
|
* Main content of the component.
|
|
750
782
|
*/
|
|
@@ -783,16 +815,16 @@ interface Props$3f {
|
|
|
783
815
|
alert?: boolean;
|
|
784
816
|
}
|
|
785
817
|
|
|
786
|
-
declare const DialogActions: React$1.FC<Props$
|
|
787
|
-
interface Props$
|
|
818
|
+
declare const DialogActions: React$1.FC<Props$3l>;
|
|
819
|
+
interface Props$3l {
|
|
788
820
|
/**
|
|
789
821
|
* Main content of the component.
|
|
790
822
|
*/
|
|
791
823
|
children: React$1.ReactNode;
|
|
792
824
|
}
|
|
793
825
|
|
|
794
|
-
declare const DialogColumn: React$1.ForwardRefExoticComponent<Props$
|
|
795
|
-
interface Props$
|
|
826
|
+
declare const DialogColumn: React$1.ForwardRefExoticComponent<Props$3k & React$1.RefAttributes<HTMLDivElement>>;
|
|
827
|
+
interface Props$3k extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
796
828
|
/**
|
|
797
829
|
* Main content of the component.
|
|
798
830
|
*/
|
|
@@ -803,8 +835,8 @@ interface Props$3d extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
803
835
|
overflow?: boolean;
|
|
804
836
|
}
|
|
805
837
|
|
|
806
|
-
declare const DialogFooter: React$1.FC<Props$
|
|
807
|
-
interface Props$
|
|
838
|
+
declare const DialogFooter: React$1.FC<Props$3j>;
|
|
839
|
+
interface Props$3j {
|
|
808
840
|
/**
|
|
809
841
|
* Main content of the component.
|
|
810
842
|
*/
|
|
@@ -820,8 +852,8 @@ interface Props$3c {
|
|
|
820
852
|
}[];
|
|
821
853
|
}
|
|
822
854
|
|
|
823
|
-
declare const DialogHeader: React$1.FC<Props$
|
|
824
|
-
interface Props$
|
|
855
|
+
declare const DialogHeader: React$1.FC<Props$3i>;
|
|
856
|
+
interface Props$3i {
|
|
825
857
|
/**
|
|
826
858
|
* Sets focus on close button on mount.
|
|
827
859
|
*/
|
|
@@ -844,8 +876,8 @@ interface Props$3b {
|
|
|
844
876
|
type?: 'success' | 'error' | 'info';
|
|
845
877
|
}
|
|
846
878
|
|
|
847
|
-
declare const DialogProgressHeader: React$1.FC<Props$
|
|
848
|
-
interface Props$
|
|
879
|
+
declare const DialogProgressHeader: React$1.FC<Props$3h>;
|
|
880
|
+
interface Props$3h {
|
|
849
881
|
/**
|
|
850
882
|
* Sets focus on close button on mount.
|
|
851
883
|
*/
|
|
@@ -876,16 +908,16 @@ interface Props$3a {
|
|
|
876
908
|
title?: string;
|
|
877
909
|
}
|
|
878
910
|
|
|
879
|
-
declare const DialogRow: React$1.FC<Props$
|
|
880
|
-
interface Props$
|
|
911
|
+
declare const DialogRow: React$1.FC<Props$3g>;
|
|
912
|
+
interface Props$3g extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
881
913
|
/**
|
|
882
914
|
* Main content of the component.
|
|
883
915
|
*/
|
|
884
916
|
children: React$1.ReactNode;
|
|
885
917
|
}
|
|
886
918
|
|
|
887
|
-
declare const DialogSection: React$1.FC<Props$
|
|
888
|
-
interface Props$
|
|
919
|
+
declare const DialogSection: React$1.FC<Props$3f>;
|
|
920
|
+
interface Props$3f {
|
|
889
921
|
/**
|
|
890
922
|
* Main content of the component.
|
|
891
923
|
*/
|
|
@@ -1004,35 +1036,35 @@ interface DialogProps extends DialogSwitchProps {
|
|
|
1004
1036
|
* Entry component for the dialog.
|
|
1005
1037
|
* Initializes selected dialog mode and optionally adds common options and draggability if needed.
|
|
1006
1038
|
*/
|
|
1007
|
-
declare const Dialog: React$1.FC<Props$
|
|
1008
|
-
type Props$
|
|
1039
|
+
declare const Dialog: React$1.FC<Props$3e>;
|
|
1040
|
+
type Props$3e = DialogProps;
|
|
1009
1041
|
|
|
1010
|
-
interface Props$
|
|
1042
|
+
interface Props$3d {
|
|
1011
1043
|
/**
|
|
1012
1044
|
* Sets root class.
|
|
1013
1045
|
*/
|
|
1014
1046
|
className: string;
|
|
1015
1047
|
}
|
|
1016
1048
|
|
|
1017
|
-
declare const Zip: React$1.FC<Props$
|
|
1049
|
+
declare const Zip: React$1.FC<Props$3d>;
|
|
1018
1050
|
|
|
1019
|
-
declare const Empty: React$1.FC<Props$
|
|
1051
|
+
declare const Empty: React$1.FC<Props$3d>;
|
|
1020
1052
|
|
|
1021
|
-
declare const Excel: React$1.FC<Props$
|
|
1053
|
+
declare const Excel: React$1.FC<Props$3d>;
|
|
1022
1054
|
|
|
1023
|
-
declare const Img: React$1.FC<Props$
|
|
1055
|
+
declare const Img: React$1.FC<Props$3d>;
|
|
1024
1056
|
|
|
1025
|
-
declare const Movie: React$1.FC<Props$
|
|
1057
|
+
declare const Movie: React$1.FC<Props$3d>;
|
|
1026
1058
|
|
|
1027
|
-
declare const Music: React$1.FC<Props$
|
|
1059
|
+
declare const Music: React$1.FC<Props$3d>;
|
|
1028
1060
|
|
|
1029
|
-
declare const Pdf: React$1.FC<Props$
|
|
1061
|
+
declare const Pdf: React$1.FC<Props$3d>;
|
|
1030
1062
|
|
|
1031
|
-
declare const Ppt: React$1.FC<Props$
|
|
1063
|
+
declare const Ppt: React$1.FC<Props$3d>;
|
|
1032
1064
|
|
|
1033
|
-
declare const Txt: React$1.FC<Props$
|
|
1065
|
+
declare const Txt: React$1.FC<Props$3d>;
|
|
1034
1066
|
|
|
1035
|
-
declare const Word: React$1.FC<Props$
|
|
1067
|
+
declare const Word: React$1.FC<Props$3d>;
|
|
1036
1068
|
|
|
1037
1069
|
declare const icons_Empty: typeof Empty;
|
|
1038
1070
|
declare const icons_Excel: typeof Excel;
|
|
@@ -1058,9 +1090,9 @@ declare namespace icons {
|
|
|
1058
1090
|
};
|
|
1059
1091
|
}
|
|
1060
1092
|
|
|
1061
|
-
declare const DocIcon: React$1.FC<Props$
|
|
1093
|
+
declare const DocIcon: React$1.FC<Props$3c>;
|
|
1062
1094
|
type DocIconName = keyof typeof icons;
|
|
1063
|
-
interface Props$
|
|
1095
|
+
interface Props$3c {
|
|
1064
1096
|
/**
|
|
1065
1097
|
* Name of selected icon.
|
|
1066
1098
|
*/
|
|
@@ -1071,8 +1103,8 @@ interface Props$35 {
|
|
|
1071
1103
|
limitSize?: boolean;
|
|
1072
1104
|
}
|
|
1073
1105
|
|
|
1074
|
-
declare const GalleryFigure: React$1.ForwardRefExoticComponent<Props$
|
|
1075
|
-
interface Props$
|
|
1106
|
+
declare const GalleryFigure: React$1.ForwardRefExoticComponent<Props$3b & React$1.RefAttributes<HTMLElement>>;
|
|
1107
|
+
interface Props$3b {
|
|
1076
1108
|
/**
|
|
1077
1109
|
* Main content of the component.
|
|
1078
1110
|
*/
|
|
@@ -1095,8 +1127,8 @@ interface Props$34 {
|
|
|
1095
1127
|
'data-visible'?: boolean;
|
|
1096
1128
|
}
|
|
1097
1129
|
|
|
1098
|
-
declare const GalleryItem: React$1.ForwardRefExoticComponent<Props$
|
|
1099
|
-
interface Props$
|
|
1130
|
+
declare const GalleryItem: React$1.ForwardRefExoticComponent<Props$3a & React$1.RefAttributes<HTMLDivElement>>;
|
|
1131
|
+
interface Props$3a {
|
|
1100
1132
|
/**
|
|
1101
1133
|
* Sets item as active.
|
|
1102
1134
|
*/
|
|
@@ -1151,8 +1183,8 @@ interface Props$33 {
|
|
|
1151
1183
|
onCheckboxClick?: React$1.MouseEventHandler<HTMLButtonElement>;
|
|
1152
1184
|
}
|
|
1153
1185
|
|
|
1154
|
-
declare const Gallery: React$1.FC<Props$
|
|
1155
|
-
interface Props$
|
|
1186
|
+
declare const Gallery: React$1.FC<Props$39>;
|
|
1187
|
+
interface Props$39 {
|
|
1156
1188
|
/**
|
|
1157
1189
|
* Main content of the component.
|
|
1158
1190
|
*/
|
|
@@ -1171,8 +1203,8 @@ interface Props$32 {
|
|
|
1171
1203
|
zoom?: number;
|
|
1172
1204
|
}
|
|
1173
1205
|
|
|
1174
|
-
declare const Link: React$1.FC<Props$
|
|
1175
|
-
interface Props$
|
|
1206
|
+
declare const Link: React$1.FC<Props$38>;
|
|
1207
|
+
interface Props$38 {
|
|
1176
1208
|
/**
|
|
1177
1209
|
* URL to pass to the link element.
|
|
1178
1210
|
*/
|
|
@@ -1183,8 +1215,16 @@ interface Props$31 {
|
|
|
1183
1215
|
children: React$1.ReactNode;
|
|
1184
1216
|
}
|
|
1185
1217
|
|
|
1186
|
-
declare const
|
|
1187
|
-
interface Props$
|
|
1218
|
+
declare const MenuColumn: React$1.FC<Props$37>;
|
|
1219
|
+
interface Props$37 {
|
|
1220
|
+
/**
|
|
1221
|
+
* Main content of the component.
|
|
1222
|
+
*/
|
|
1223
|
+
children: React$1.ReactNode;
|
|
1224
|
+
}
|
|
1225
|
+
|
|
1226
|
+
declare const MenuItem: React$1.FC<Props$36>;
|
|
1227
|
+
interface Props$36 {
|
|
1188
1228
|
/**
|
|
1189
1229
|
* Disables auto-close on click.
|
|
1190
1230
|
*/
|
|
@@ -1201,6 +1241,10 @@ interface Props$30 {
|
|
|
1201
1241
|
* Icon size.
|
|
1202
1242
|
*/
|
|
1203
1243
|
iconSize?: IconSize;
|
|
1244
|
+
/**
|
|
1245
|
+
* Icon color.
|
|
1246
|
+
*/
|
|
1247
|
+
iconColor?: IconColor;
|
|
1204
1248
|
/**
|
|
1205
1249
|
* Action label.
|
|
1206
1250
|
*/
|
|
@@ -1211,8 +1255,28 @@ interface Props$30 {
|
|
|
1211
1255
|
onClick?: () => void;
|
|
1212
1256
|
}
|
|
1213
1257
|
|
|
1214
|
-
declare const
|
|
1215
|
-
interface Props$
|
|
1258
|
+
declare const MenuLabel: React$1.FC<Props$35>;
|
|
1259
|
+
interface Props$35 {
|
|
1260
|
+
/**
|
|
1261
|
+
* Main content of the component.
|
|
1262
|
+
*/
|
|
1263
|
+
label: string;
|
|
1264
|
+
/**
|
|
1265
|
+
* Name of icon to display with the label.
|
|
1266
|
+
*/
|
|
1267
|
+
iconName?: IconName;
|
|
1268
|
+
/**
|
|
1269
|
+
* Adds disabled styling to the label.
|
|
1270
|
+
*/
|
|
1271
|
+
disabled?: boolean;
|
|
1272
|
+
/**
|
|
1273
|
+
* Adds margin to the label.
|
|
1274
|
+
*/
|
|
1275
|
+
margin?: boolean;
|
|
1276
|
+
}
|
|
1277
|
+
|
|
1278
|
+
declare const MenuSubSection: React$1.FC<Props$34>;
|
|
1279
|
+
interface Props$34 {
|
|
1216
1280
|
/**
|
|
1217
1281
|
* Main content of the component.
|
|
1218
1282
|
*/
|
|
@@ -1239,8 +1303,8 @@ interface Props$2$ {
|
|
|
1239
1303
|
title: string;
|
|
1240
1304
|
}
|
|
1241
1305
|
|
|
1242
|
-
declare const MenuSection: React$1.FC<Props$
|
|
1243
|
-
interface Props$
|
|
1306
|
+
declare const MenuSection: React$1.FC<Props$33>;
|
|
1307
|
+
interface Props$33 {
|
|
1244
1308
|
/**
|
|
1245
1309
|
* Main content of the component.
|
|
1246
1310
|
*/
|
|
@@ -1253,6 +1317,66 @@ interface Props$2_ {
|
|
|
1253
1317
|
* Title of the section.
|
|
1254
1318
|
*/
|
|
1255
1319
|
title: string;
|
|
1320
|
+
/**
|
|
1321
|
+
* Adds compact styling.
|
|
1322
|
+
*/
|
|
1323
|
+
compact?: boolean;
|
|
1324
|
+
}
|
|
1325
|
+
|
|
1326
|
+
declare const MenuSearchInput: React$1.ForwardRefExoticComponent<Props$32 & React$1.RefAttributes<HTMLInputElement>>;
|
|
1327
|
+
interface Props$32 {
|
|
1328
|
+
/**
|
|
1329
|
+
* Input's name to register.
|
|
1330
|
+
*/
|
|
1331
|
+
name?: string;
|
|
1332
|
+
/**
|
|
1333
|
+
* Callback invoked when the blur event is fired.
|
|
1334
|
+
*/
|
|
1335
|
+
onBlur?: (evt: React$1.ChangeEvent) => void;
|
|
1336
|
+
/**
|
|
1337
|
+
* Callback invoked when the value is changed.
|
|
1338
|
+
*/
|
|
1339
|
+
onChange?: (evt: React$1.ChangeEvent<HTMLInputElement>) => void;
|
|
1340
|
+
/**
|
|
1341
|
+
* Callback invoked when the element receives focus.
|
|
1342
|
+
*/
|
|
1343
|
+
onFocus?: (evt: React$1.ChangeEvent) => void;
|
|
1344
|
+
/**
|
|
1345
|
+
* Input's placeholder text.
|
|
1346
|
+
*/
|
|
1347
|
+
placeholder?: string;
|
|
1348
|
+
/**
|
|
1349
|
+
* Input's value.
|
|
1350
|
+
*/
|
|
1351
|
+
value?: string;
|
|
1352
|
+
/**
|
|
1353
|
+
* Applies compact styling.
|
|
1354
|
+
*/
|
|
1355
|
+
compact?: boolean;
|
|
1356
|
+
}
|
|
1357
|
+
|
|
1358
|
+
declare const MenuItemButton: React$1.FC<Props$31>;
|
|
1359
|
+
interface Props$31 {
|
|
1360
|
+
/**
|
|
1361
|
+
* Main content.
|
|
1362
|
+
*/
|
|
1363
|
+
children: React$1.ReactNode;
|
|
1364
|
+
/**
|
|
1365
|
+
* Callback executed on button click.
|
|
1366
|
+
*/
|
|
1367
|
+
onClick?: () => void;
|
|
1368
|
+
}
|
|
1369
|
+
|
|
1370
|
+
declare const MenuFooterButton: React$1.FC<Props$30>;
|
|
1371
|
+
interface Props$30 {
|
|
1372
|
+
/**
|
|
1373
|
+
* Main content.
|
|
1374
|
+
*/
|
|
1375
|
+
label: string;
|
|
1376
|
+
/**
|
|
1377
|
+
* Callback executed on button click.
|
|
1378
|
+
*/
|
|
1379
|
+
onClick?: () => void;
|
|
1256
1380
|
}
|
|
1257
1381
|
|
|
1258
1382
|
interface PopperContext {
|
|
@@ -1272,16 +1396,16 @@ type PopperAnchorRef = HTMLElement | null | undefined;
|
|
|
1272
1396
|
type PopperOffsetValue = 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
1273
1397
|
type PopperOffset = [PopperOffsetValue, PopperOffsetValue];
|
|
1274
1398
|
|
|
1275
|
-
declare const PopperArrow: React__default.FC<Props$
|
|
1276
|
-
interface Props$
|
|
1399
|
+
declare const PopperArrow: React__default.FC<Props$2$>;
|
|
1400
|
+
interface Props$2$ {
|
|
1277
1401
|
/**
|
|
1278
1402
|
* Sets arrow size.
|
|
1279
1403
|
*/
|
|
1280
1404
|
size?: 'sm' | 'md';
|
|
1281
1405
|
}
|
|
1282
1406
|
|
|
1283
|
-
declare const Popper: React__default.ForwardRefExoticComponent<Props$
|
|
1284
|
-
interface Props$
|
|
1407
|
+
declare const Popper: React__default.ForwardRefExoticComponent<Props$2_ & React__default.RefAttributes<HTMLElement>>;
|
|
1408
|
+
interface Props$2_ {
|
|
1285
1409
|
/**
|
|
1286
1410
|
* Anchor element. Popper will be mounted to this element.
|
|
1287
1411
|
*/
|
|
@@ -1320,8 +1444,8 @@ interface Props$2Y {
|
|
|
1320
1444
|
onKeyDown?: React__default.KeyboardEventHandler;
|
|
1321
1445
|
}
|
|
1322
1446
|
|
|
1323
|
-
declare const Menu: React$1.ForwardRefExoticComponent<Props$
|
|
1324
|
-
interface Props$
|
|
1447
|
+
declare const Menu: React$1.ForwardRefExoticComponent<Props$2Z & React$1.RefAttributes<HTMLDivElement>>;
|
|
1448
|
+
interface Props$2Z {
|
|
1325
1449
|
/**
|
|
1326
1450
|
* Anchor element.
|
|
1327
1451
|
*/
|
|
@@ -1352,16 +1476,16 @@ interface Props$2X {
|
|
|
1352
1476
|
sameWidth?: boolean;
|
|
1353
1477
|
}
|
|
1354
1478
|
|
|
1355
|
-
declare const ModalDialogActionContent: React$1.ForwardRefExoticComponent<Props$
|
|
1356
|
-
interface Props$
|
|
1479
|
+
declare const ModalDialogActionContent: React$1.ForwardRefExoticComponent<Props$2Y & React$1.RefAttributes<HTMLDivElement>>;
|
|
1480
|
+
interface Props$2Y {
|
|
1357
1481
|
/**
|
|
1358
1482
|
* Main content of the component.
|
|
1359
1483
|
*/
|
|
1360
1484
|
children?: React$1.ReactNode;
|
|
1361
1485
|
}
|
|
1362
1486
|
|
|
1363
|
-
declare const ModalDialogActionItem: React$1.ForwardRefExoticComponent<Props$
|
|
1364
|
-
interface Props$
|
|
1487
|
+
declare const ModalDialogActionItem: React$1.ForwardRefExoticComponent<Props$2X & React$1.RefAttributes<HTMLLIElement>>;
|
|
1488
|
+
interface Props$2X {
|
|
1365
1489
|
/**
|
|
1366
1490
|
* Main content of the component.
|
|
1367
1491
|
*/
|
|
@@ -1380,8 +1504,8 @@ interface Props$2V {
|
|
|
1380
1504
|
isLoading?: boolean;
|
|
1381
1505
|
}
|
|
1382
1506
|
|
|
1383
|
-
declare const ModalDialogCallout: React$1.ForwardRefExoticComponent<Props$
|
|
1384
|
-
interface Props$
|
|
1507
|
+
declare const ModalDialogCallout: React$1.ForwardRefExoticComponent<Props$2W & React$1.RefAttributes<HTMLDivElement>>;
|
|
1508
|
+
interface Props$2W {
|
|
1385
1509
|
/**
|
|
1386
1510
|
* Main content of the component.
|
|
1387
1511
|
*/
|
|
@@ -1396,8 +1520,8 @@ interface Props$2U {
|
|
|
1396
1520
|
type: 'error' | 'warning';
|
|
1397
1521
|
}
|
|
1398
1522
|
|
|
1399
|
-
declare const ModalDialogContent: React$1.ForwardRefExoticComponent<Props$
|
|
1400
|
-
interface Props$
|
|
1523
|
+
declare const ModalDialogContent: React$1.ForwardRefExoticComponent<Props$2V & React$1.RefAttributes<HTMLDivElement>>;
|
|
1524
|
+
interface Props$2V {
|
|
1401
1525
|
/**
|
|
1402
1526
|
* Main content of the component.
|
|
1403
1527
|
*/
|
|
@@ -1408,8 +1532,8 @@ interface Props$2T {
|
|
|
1408
1532
|
id?: string;
|
|
1409
1533
|
}
|
|
1410
1534
|
|
|
1411
|
-
declare const ModalDialogContentColumn: React$1.ForwardRefExoticComponent<Props$
|
|
1412
|
-
interface Props$
|
|
1535
|
+
declare const ModalDialogContentColumn: React$1.ForwardRefExoticComponent<Props$2U & React$1.RefAttributes<HTMLDivElement>>;
|
|
1536
|
+
interface Props$2U {
|
|
1413
1537
|
/**
|
|
1414
1538
|
* Main content of the component.
|
|
1415
1539
|
*/
|
|
@@ -1420,8 +1544,8 @@ interface Props$2S {
|
|
|
1420
1544
|
id?: string;
|
|
1421
1545
|
}
|
|
1422
1546
|
|
|
1423
|
-
declare const ModalDialogList: React$1.ForwardRefExoticComponent<Props$
|
|
1424
|
-
interface Props$
|
|
1547
|
+
declare const ModalDialogList: React$1.ForwardRefExoticComponent<Props$2T & React$1.RefAttributes<HTMLDivElement>>;
|
|
1548
|
+
interface Props$2T {
|
|
1425
1549
|
/**
|
|
1426
1550
|
* Sets the dialog content ID.
|
|
1427
1551
|
*/
|
|
@@ -1436,16 +1560,16 @@ interface Props$2R {
|
|
|
1436
1560
|
children: React$1.ReactNode;
|
|
1437
1561
|
}
|
|
1438
1562
|
|
|
1439
|
-
declare const ModalDialogListItem: React$1.ForwardRefExoticComponent<Props$
|
|
1440
|
-
interface Props$
|
|
1563
|
+
declare const ModalDialogListItem: React$1.ForwardRefExoticComponent<Props$2S & React$1.RefAttributes<HTMLLIElement>>;
|
|
1564
|
+
interface Props$2S {
|
|
1441
1565
|
/**
|
|
1442
1566
|
* Item to display in the list.
|
|
1443
1567
|
*/
|
|
1444
1568
|
children: React$1.ReactNode;
|
|
1445
1569
|
}
|
|
1446
1570
|
|
|
1447
|
-
declare const ModalDialogFooter: React$1.ForwardRefExoticComponent<Props$
|
|
1448
|
-
interface Props$
|
|
1571
|
+
declare const ModalDialogFooter: React$1.ForwardRefExoticComponent<Props$2R & React$1.RefAttributes<HTMLDivElement>>;
|
|
1572
|
+
interface Props$2R {
|
|
1449
1573
|
/**
|
|
1450
1574
|
* Main content of the component.
|
|
1451
1575
|
*/
|
|
@@ -1456,16 +1580,16 @@ interface Props$2P {
|
|
|
1456
1580
|
spaceBetween?: boolean;
|
|
1457
1581
|
}
|
|
1458
1582
|
|
|
1459
|
-
declare const ModalDialogFooterAction: React$1.ForwardRefExoticComponent<Props$
|
|
1460
|
-
interface Props$
|
|
1583
|
+
declare const ModalDialogFooterAction: React$1.ForwardRefExoticComponent<Props$2Q & React$1.RefAttributes<HTMLDivElement>>;
|
|
1584
|
+
interface Props$2Q {
|
|
1461
1585
|
/**
|
|
1462
1586
|
* Main content of the component.
|
|
1463
1587
|
*/
|
|
1464
1588
|
children?: React$1.ReactNode;
|
|
1465
1589
|
}
|
|
1466
1590
|
|
|
1467
|
-
declare const ModalDialogHeader: React$1.ForwardRefExoticComponent<Props$
|
|
1468
|
-
interface Props$
|
|
1591
|
+
declare const ModalDialogHeader: React$1.ForwardRefExoticComponent<Props$2P & React$1.RefAttributes<HTMLDivElement>>;
|
|
1592
|
+
interface Props$2P {
|
|
1469
1593
|
/**
|
|
1470
1594
|
* Enables the top border accent.
|
|
1471
1595
|
*/
|
|
@@ -1477,7 +1601,7 @@ interface Props$2N {
|
|
|
1477
1601
|
/**
|
|
1478
1602
|
* Name of selected icon.
|
|
1479
1603
|
*/
|
|
1480
|
-
icon?: 'info' | 'success' | 'error' | 'warning' | React$1.ReactElement<Props$
|
|
1604
|
+
icon?: 'info' | 'success' | 'error' | 'warning' | React$1.ReactElement<Props$3E>;
|
|
1481
1605
|
/**
|
|
1482
1606
|
* Optional sub title of the modal.
|
|
1483
1607
|
*/
|
|
@@ -1492,8 +1616,8 @@ interface Props$2N {
|
|
|
1492
1616
|
titleId?: string;
|
|
1493
1617
|
}
|
|
1494
1618
|
|
|
1495
|
-
declare const ModalDialog: React$1.ForwardRefExoticComponent<Props$
|
|
1496
|
-
interface Props$
|
|
1619
|
+
declare const ModalDialog: React$1.ForwardRefExoticComponent<Props$2O & React$1.RefAttributes<HTMLDivElement>>;
|
|
1620
|
+
interface Props$2O {
|
|
1497
1621
|
/**
|
|
1498
1622
|
* Main content of the component.
|
|
1499
1623
|
*/
|
|
@@ -1591,8 +1715,8 @@ interface NavbarContext {
|
|
|
1591
1715
|
declare const NavbarContext: React$1.Context<NavbarContext>;
|
|
1592
1716
|
declare const useNavbarCtx: () => NavbarContext;
|
|
1593
1717
|
|
|
1594
|
-
declare const NavbarItem: React$1.
|
|
1595
|
-
interface Props$
|
|
1718
|
+
declare const NavbarItem: React$1.ForwardRefExoticComponent<Props$2N & React$1.RefAttributes<HTMLDivElement>>;
|
|
1719
|
+
interface Props$2N {
|
|
1596
1720
|
/**
|
|
1597
1721
|
* Applies active styling.
|
|
1598
1722
|
*/
|
|
@@ -1659,8 +1783,8 @@ interface Props$2L {
|
|
|
1659
1783
|
onDelete?: () => void;
|
|
1660
1784
|
}
|
|
1661
1785
|
|
|
1662
|
-
declare const NavbarItemContainer: React$1.FC<Props$
|
|
1663
|
-
interface Props$
|
|
1786
|
+
declare const NavbarItemContainer: React$1.FC<Props$2M>;
|
|
1787
|
+
interface Props$2M {
|
|
1664
1788
|
/**
|
|
1665
1789
|
* Marks container as active.
|
|
1666
1790
|
*/
|
|
@@ -1671,8 +1795,8 @@ interface Props$2K {
|
|
|
1671
1795
|
children: React$1.ReactNode;
|
|
1672
1796
|
}
|
|
1673
1797
|
|
|
1674
|
-
declare const NavbarItemContent: React$1.FC<Props$
|
|
1675
|
-
interface Props$
|
|
1798
|
+
declare const NavbarItemContent: React$1.FC<Props$2L>;
|
|
1799
|
+
interface Props$2L {
|
|
1676
1800
|
/**
|
|
1677
1801
|
* Adds enter / exit animation.
|
|
1678
1802
|
*/
|
|
@@ -1691,8 +1815,8 @@ interface Props$2J {
|
|
|
1691
1815
|
hidden?: boolean;
|
|
1692
1816
|
}
|
|
1693
1817
|
|
|
1694
|
-
declare const NavbarItemLabel: React$1.FC<Props$
|
|
1695
|
-
interface Props$
|
|
1818
|
+
declare const NavbarItemLabel: React$1.FC<Props$2K>;
|
|
1819
|
+
interface Props$2K {
|
|
1696
1820
|
/**
|
|
1697
1821
|
* Toggles icon animation if parent item is hovered.
|
|
1698
1822
|
*/
|
|
@@ -1704,11 +1828,11 @@ interface Props$2I {
|
|
|
1704
1828
|
/**
|
|
1705
1829
|
* Displayed icon.
|
|
1706
1830
|
*/
|
|
1707
|
-
icon?: React$1.ReactElement<Props$
|
|
1831
|
+
icon?: React$1.ReactElement<Props$3E>;
|
|
1708
1832
|
}
|
|
1709
1833
|
|
|
1710
|
-
declare const NavbarItemsGroup: React$1.FC<Props$
|
|
1711
|
-
interface Props$
|
|
1834
|
+
declare const NavbarItemsGroup: React$1.FC<Props$2J>;
|
|
1835
|
+
interface Props$2J {
|
|
1712
1836
|
/**
|
|
1713
1837
|
* Animates group on collapse.
|
|
1714
1838
|
*/
|
|
@@ -1727,8 +1851,8 @@ interface Props$2H {
|
|
|
1727
1851
|
level?: number;
|
|
1728
1852
|
}
|
|
1729
1853
|
|
|
1730
|
-
declare const NavbarLink: React$1.FC<Props$
|
|
1731
|
-
interface Props$
|
|
1854
|
+
declare const NavbarLink: React$1.FC<Props$2I>;
|
|
1855
|
+
interface Props$2I {
|
|
1732
1856
|
/**
|
|
1733
1857
|
* Renders link content.
|
|
1734
1858
|
*/
|
|
@@ -1741,8 +1865,8 @@ interface Props$2G {
|
|
|
1741
1865
|
href?: string;
|
|
1742
1866
|
}
|
|
1743
1867
|
|
|
1744
|
-
declare const NavbarScrollableContent: React$1.FC<Props$
|
|
1745
|
-
interface Props$
|
|
1868
|
+
declare const NavbarScrollableContent: React$1.FC<Props$2H>;
|
|
1869
|
+
interface Props$2H {
|
|
1746
1870
|
/**
|
|
1747
1871
|
* Main content of the component.
|
|
1748
1872
|
*/
|
|
@@ -1751,8 +1875,8 @@ interface Props$2F {
|
|
|
1751
1875
|
|
|
1752
1876
|
declare const NavbarSeparator: React$1.FC;
|
|
1753
1877
|
|
|
1754
|
-
declare const NavbarToggleButton: React$1.FC<Props$
|
|
1755
|
-
interface Props$
|
|
1878
|
+
declare const NavbarToggleButton: React$1.FC<Props$2G>;
|
|
1879
|
+
interface Props$2G {
|
|
1756
1880
|
/**
|
|
1757
1881
|
* Label shown when navbar will collapse.
|
|
1758
1882
|
*/
|
|
@@ -1767,8 +1891,8 @@ interface Props$2E {
|
|
|
1767
1891
|
openLabel?: string;
|
|
1768
1892
|
}
|
|
1769
1893
|
|
|
1770
|
-
declare const Navbar: React$1.FC<Props$
|
|
1771
|
-
interface Props$
|
|
1894
|
+
declare const Navbar: React$1.FC<Props$2F>;
|
|
1895
|
+
interface Props$2F {
|
|
1772
1896
|
/**
|
|
1773
1897
|
* Labels navigation element.
|
|
1774
1898
|
*/
|
|
@@ -1787,8 +1911,8 @@ interface Props$2D {
|
|
|
1787
1911
|
onActiveItemFocus?: () => void;
|
|
1788
1912
|
}
|
|
1789
1913
|
|
|
1790
|
-
declare const Modal: React$1.FC<Props$
|
|
1791
|
-
interface Props$
|
|
1914
|
+
declare const Modal: React$1.FC<Props$2E>;
|
|
1915
|
+
interface Props$2E {
|
|
1792
1916
|
/**
|
|
1793
1917
|
* Optional children.
|
|
1794
1918
|
*/
|
|
@@ -1811,16 +1935,16 @@ interface Props$2C {
|
|
|
1811
1935
|
variant?: 'transparent' | 'semi-transparent';
|
|
1812
1936
|
}
|
|
1813
1937
|
|
|
1814
|
-
declare const PanelActions: React$1.FC<Props$
|
|
1815
|
-
interface Props$
|
|
1938
|
+
declare const PanelActions: React$1.FC<Props$2D>;
|
|
1939
|
+
interface Props$2D {
|
|
1816
1940
|
/**
|
|
1817
1941
|
* Main content of the component.
|
|
1818
1942
|
*/
|
|
1819
1943
|
children?: React$1.ReactNode;
|
|
1820
1944
|
}
|
|
1821
1945
|
|
|
1822
|
-
declare const PanelCheckbox: React$1.FC<Props$
|
|
1823
|
-
interface Props$
|
|
1946
|
+
declare const PanelCheckbox: React$1.FC<Props$2C>;
|
|
1947
|
+
interface Props$2C {
|
|
1824
1948
|
/**
|
|
1825
1949
|
* Sets current input's value.
|
|
1826
1950
|
*/
|
|
@@ -1839,16 +1963,16 @@ interface Props$2A {
|
|
|
1839
1963
|
description?: React$1.ReactNode;
|
|
1840
1964
|
}
|
|
1841
1965
|
|
|
1842
|
-
declare const PanelColumn: React$1.FC<Props$
|
|
1843
|
-
interface Props$
|
|
1966
|
+
declare const PanelColumn: React$1.FC<Props$2B>;
|
|
1967
|
+
interface Props$2B {
|
|
1844
1968
|
/**
|
|
1845
1969
|
* Main content of the component.
|
|
1846
1970
|
*/
|
|
1847
1971
|
children: React$1.ReactNode;
|
|
1848
1972
|
}
|
|
1849
1973
|
|
|
1850
|
-
declare const PanelContent: React$1.ForwardRefExoticComponent<Props$
|
|
1851
|
-
interface Props$
|
|
1974
|
+
declare const PanelContent: React$1.ForwardRefExoticComponent<Props$2A & React$1.RefAttributes<HTMLDivElement>>;
|
|
1975
|
+
interface Props$2A {
|
|
1852
1976
|
/**
|
|
1853
1977
|
* Main content of the component.
|
|
1854
1978
|
*/
|
|
@@ -1867,8 +1991,8 @@ interface Props$2y {
|
|
|
1867
1991
|
header?: string;
|
|
1868
1992
|
}
|
|
1869
1993
|
|
|
1870
|
-
declare const PanelContentProp: React$1.FC<Props$
|
|
1871
|
-
interface Props$
|
|
1994
|
+
declare const PanelContentProp: React$1.FC<Props$2z>;
|
|
1995
|
+
interface Props$2z {
|
|
1872
1996
|
/**
|
|
1873
1997
|
* Property label.
|
|
1874
1998
|
*/
|
|
@@ -1881,8 +2005,8 @@ interface Props$2x {
|
|
|
1881
2005
|
|
|
1882
2006
|
declare const PanelDragHandle: React$1.ForwardRefExoticComponent<React$1.RefAttributes<HTMLDivElement>>;
|
|
1883
2007
|
|
|
1884
|
-
declare const PanelList: React$1.FC<Props$
|
|
1885
|
-
interface Props$
|
|
2008
|
+
declare const PanelList: React$1.FC<Props$2y>;
|
|
2009
|
+
interface Props$2y {
|
|
1886
2010
|
/**
|
|
1887
2011
|
* Main content.
|
|
1888
2012
|
*/
|
|
@@ -1897,16 +2021,16 @@ interface Props$2w {
|
|
|
1897
2021
|
toolbarLoading?: boolean;
|
|
1898
2022
|
}
|
|
1899
2023
|
|
|
1900
|
-
declare const PanelListDivider: React$1.FC<Props$
|
|
1901
|
-
interface Props$
|
|
2024
|
+
declare const PanelListDivider: React$1.FC<Props$2x>;
|
|
2025
|
+
interface Props$2x {
|
|
1902
2026
|
/**
|
|
1903
2027
|
* Toggles component opacity.
|
|
1904
2028
|
*/
|
|
1905
2029
|
opaque?: boolean;
|
|
1906
2030
|
}
|
|
1907
2031
|
|
|
1908
|
-
declare const PanelSide: React$1.FC<Props$
|
|
1909
|
-
interface Props$
|
|
2032
|
+
declare const PanelSide: React$1.FC<Props$2w>;
|
|
2033
|
+
interface Props$2w {
|
|
1910
2034
|
/**
|
|
1911
2035
|
* Custom content rendered instead of icon.
|
|
1912
2036
|
*/
|
|
@@ -1928,8 +2052,8 @@ interface Props$2u {
|
|
|
1928
2052
|
verticalSpacing?: boolean;
|
|
1929
2053
|
}
|
|
1930
2054
|
|
|
1931
|
-
declare const PanelSkeleton: React$1.FC<Props$
|
|
1932
|
-
interface Props$
|
|
2055
|
+
declare const PanelSkeleton: React$1.FC<Props$2v>;
|
|
2056
|
+
interface Props$2v {
|
|
1933
2057
|
/**
|
|
1934
2058
|
* Number of loading blocks.
|
|
1935
2059
|
*/
|
|
@@ -1944,8 +2068,8 @@ interface Props$2t {
|
|
|
1944
2068
|
spacing?: boolean;
|
|
1945
2069
|
}
|
|
1946
2070
|
|
|
1947
|
-
declare const PanelTitle: React$1.ForwardRefExoticComponent<Props$
|
|
1948
|
-
interface Props$
|
|
2071
|
+
declare const PanelTitle: React$1.ForwardRefExoticComponent<Props$2u & React$1.RefAttributes<HTMLDivElement>>;
|
|
2072
|
+
interface Props$2u extends Omit<Props$2A, 'children'> {
|
|
1949
2073
|
/**
|
|
1950
2074
|
* Panel's title.
|
|
1951
2075
|
*/
|
|
@@ -1960,8 +2084,8 @@ interface Props$2s extends Omit<Props$2y, 'children'> {
|
|
|
1960
2084
|
tooltip?: string;
|
|
1961
2085
|
}
|
|
1962
2086
|
|
|
1963
|
-
declare const PanelDescriptionItem: React$1.FC<Props$
|
|
1964
|
-
interface Props$
|
|
2087
|
+
declare const PanelDescriptionItem: React$1.FC<Props$2t>;
|
|
2088
|
+
interface Props$2t {
|
|
1965
2089
|
/**
|
|
1966
2090
|
* Main components content.
|
|
1967
2091
|
*/
|
|
@@ -2047,8 +2171,8 @@ declare const useListDnd: (initItems: ListDndItem[]) => {
|
|
|
2047
2171
|
setDraggable: ListDndSetDraggable;
|
|
2048
2172
|
};
|
|
2049
2173
|
|
|
2050
|
-
declare const SortableDndListItem: React$1.FC<Props$
|
|
2051
|
-
interface Props$
|
|
2174
|
+
declare const SortableDndListItem: React$1.FC<Props$2s>;
|
|
2175
|
+
interface Props$2s {
|
|
2052
2176
|
/**
|
|
2053
2177
|
* Current item's index in a list.
|
|
2054
2178
|
*/
|
|
@@ -2090,8 +2214,8 @@ interface SortableDndListContextShape {
|
|
|
2090
2214
|
onDragEnd?: ListDndOnDragEnd;
|
|
2091
2215
|
}
|
|
2092
2216
|
|
|
2093
|
-
declare const SortableDndList: React$1.FC<Props$
|
|
2094
|
-
interface Props$
|
|
2217
|
+
declare const SortableDndList: React$1.FC<Props$2r>;
|
|
2218
|
+
interface Props$2r extends SortableDndListContextShape {
|
|
2095
2219
|
/**
|
|
2096
2220
|
* Main content of the component.
|
|
2097
2221
|
*/
|
|
@@ -2109,8 +2233,8 @@ interface PanelContextShape extends Partial<ListDndChildProps> {
|
|
|
2109
2233
|
edit?: boolean;
|
|
2110
2234
|
}
|
|
2111
2235
|
|
|
2112
|
-
declare const Panel: React$1.ForwardRefExoticComponent<Props$
|
|
2113
|
-
interface Props$
|
|
2236
|
+
declare const Panel: React$1.ForwardRefExoticComponent<Props$2q & React$1.RefAttributes<HTMLDivElement>>;
|
|
2237
|
+
interface Props$2q extends PanelContextShape {
|
|
2114
2238
|
/**
|
|
2115
2239
|
* Main content of the component.
|
|
2116
2240
|
*/
|
|
@@ -2129,8 +2253,8 @@ interface Props$2o extends PanelContextShape {
|
|
|
2129
2253
|
elevated?: boolean;
|
|
2130
2254
|
}
|
|
2131
2255
|
|
|
2132
|
-
declare const Pagination: React$1.FC<Props$
|
|
2133
|
-
interface Props$
|
|
2256
|
+
declare const Pagination: React$1.FC<Props$2p>;
|
|
2257
|
+
interface Props$2p {
|
|
2134
2258
|
/**
|
|
2135
2259
|
* Disables interaction with pagination.
|
|
2136
2260
|
*/
|
|
@@ -2173,24 +2297,24 @@ interface Props$2n {
|
|
|
2173
2297
|
prevPageLabel?: string;
|
|
2174
2298
|
}
|
|
2175
2299
|
|
|
2176
|
-
declare const Permissions: React$1.FC<Props$
|
|
2177
|
-
interface Props$
|
|
2300
|
+
declare const Permissions: React$1.FC<Props$2o>;
|
|
2301
|
+
interface Props$2o {
|
|
2178
2302
|
/**
|
|
2179
2303
|
* Main content of the component.
|
|
2180
2304
|
*/
|
|
2181
2305
|
children: React$1.ReactNode;
|
|
2182
2306
|
}
|
|
2183
2307
|
|
|
2184
|
-
declare const PermissionsPanel: ({ children }: Props$
|
|
2185
|
-
interface Props$
|
|
2308
|
+
declare const PermissionsPanel: ({ children }: Props$2n) => React$1.JSX.Element;
|
|
2309
|
+
interface Props$2n {
|
|
2186
2310
|
/**
|
|
2187
2311
|
* Main content of the component.
|
|
2188
2312
|
*/
|
|
2189
2313
|
children?: React$1.ReactNode;
|
|
2190
2314
|
}
|
|
2191
2315
|
|
|
2192
|
-
declare const PermissionsTitle: React$1.FC<Props$
|
|
2193
|
-
interface Props$
|
|
2316
|
+
declare const PermissionsTitle: React$1.FC<Props$2m>;
|
|
2317
|
+
interface Props$2m {
|
|
2194
2318
|
/**
|
|
2195
2319
|
* Flag to enable select all mode.
|
|
2196
2320
|
*/
|
|
@@ -2215,24 +2339,24 @@ interface Props$2k {
|
|
|
2215
2339
|
onSelectAll?: (checked: boolean) => void;
|
|
2216
2340
|
}
|
|
2217
2341
|
|
|
2218
|
-
declare const PermissionsContent: ({ children }: Props$
|
|
2219
|
-
interface Props$
|
|
2342
|
+
declare const PermissionsContent: ({ children }: Props$2l) => React$1.JSX.Element;
|
|
2343
|
+
interface Props$2l {
|
|
2220
2344
|
/**
|
|
2221
2345
|
* Main content of the component.
|
|
2222
2346
|
*/
|
|
2223
2347
|
children: React$1.ReactNode;
|
|
2224
2348
|
}
|
|
2225
2349
|
|
|
2226
|
-
declare const PermissionsForm: ({ children }: Props$
|
|
2227
|
-
interface Props$
|
|
2350
|
+
declare const PermissionsForm: ({ children }: Props$2k) => React$1.JSX.Element;
|
|
2351
|
+
interface Props$2k {
|
|
2228
2352
|
/**
|
|
2229
2353
|
* Main content of the component.
|
|
2230
2354
|
*/
|
|
2231
2355
|
children: React$1.ReactNode;
|
|
2232
2356
|
}
|
|
2233
2357
|
|
|
2234
|
-
declare const PermissionsFormGroup: ({ children, title, isCompact }: Props$
|
|
2235
|
-
interface Props$
|
|
2358
|
+
declare const PermissionsFormGroup: ({ children, title, isCompact }: Props$2j) => React$1.JSX.Element;
|
|
2359
|
+
interface Props$2j {
|
|
2236
2360
|
/**
|
|
2237
2361
|
* Title of the form group.
|
|
2238
2362
|
*/
|
|
@@ -2247,8 +2371,8 @@ interface Props$2h {
|
|
|
2247
2371
|
isCompact?: boolean;
|
|
2248
2372
|
}
|
|
2249
2373
|
|
|
2250
|
-
declare const PermissionsFormInput: ({ checked, label, tooltip, onChange }: Props$
|
|
2251
|
-
interface Props$
|
|
2374
|
+
declare const PermissionsFormInput: ({ checked, label, tooltip, onChange }: Props$2i) => React$1.JSX.Element;
|
|
2375
|
+
interface Props$2i {
|
|
2252
2376
|
/**
|
|
2253
2377
|
* Flag to indicate if the input is checked.
|
|
2254
2378
|
*/
|
|
@@ -2269,16 +2393,16 @@ interface Props$2g {
|
|
|
2269
2393
|
onChange: (checked: boolean) => void;
|
|
2270
2394
|
}
|
|
2271
2395
|
|
|
2272
|
-
declare const PermissionsActions: ({ children }: Props$
|
|
2273
|
-
interface Props$
|
|
2396
|
+
declare const PermissionsActions: ({ children }: Props$2h) => React$1.JSX.Element;
|
|
2397
|
+
interface Props$2h {
|
|
2274
2398
|
/**
|
|
2275
2399
|
* Main content of the component.
|
|
2276
2400
|
*/
|
|
2277
2401
|
children?: React$1.ReactNode;
|
|
2278
2402
|
}
|
|
2279
2403
|
|
|
2280
|
-
declare const PermissionsScopeHeader: React$1.FC<Props$
|
|
2281
|
-
interface Props$
|
|
2404
|
+
declare const PermissionsScopeHeader: React$1.FC<Props$2g>;
|
|
2405
|
+
interface Props$2g {
|
|
2282
2406
|
/**
|
|
2283
2407
|
* Description label to display.
|
|
2284
2408
|
*/
|
|
@@ -2289,8 +2413,8 @@ interface Props$2e {
|
|
|
2289
2413
|
children: React$1.ReactNode;
|
|
2290
2414
|
}
|
|
2291
2415
|
|
|
2292
|
-
declare const PermissionsScopeList: React$1.FC<Props$
|
|
2293
|
-
interface Props$
|
|
2416
|
+
declare const PermissionsScopeList: React$1.FC<Props$2f>;
|
|
2417
|
+
interface Props$2f {
|
|
2294
2418
|
/**
|
|
2295
2419
|
* Description label to display.
|
|
2296
2420
|
*/
|
|
@@ -2301,8 +2425,8 @@ interface Props$2d {
|
|
|
2301
2425
|
children: React$1.ReactNode;
|
|
2302
2426
|
}
|
|
2303
2427
|
|
|
2304
|
-
declare const PermissionTag: ({ active, children }: Props$
|
|
2305
|
-
interface Props$
|
|
2428
|
+
declare const PermissionTag: ({ active, children }: Props$2e) => React$1.JSX.Element;
|
|
2429
|
+
interface Props$2e {
|
|
2306
2430
|
/**
|
|
2307
2431
|
* Toggles active state of the component.
|
|
2308
2432
|
*/
|
|
@@ -2318,8 +2442,8 @@ type PermissionMap = {
|
|
|
2318
2442
|
[key in PermissionName]: boolean;
|
|
2319
2443
|
};
|
|
2320
2444
|
|
|
2321
|
-
declare const PermissionsManagementPanelHeader: React$1.FC<Props$
|
|
2322
|
-
interface Props$
|
|
2445
|
+
declare const PermissionsManagementPanelHeader: React$1.FC<Props$2d>;
|
|
2446
|
+
interface Props$2d {
|
|
2323
2447
|
/**
|
|
2324
2448
|
* Title to display.
|
|
2325
2449
|
*/
|
|
@@ -2338,8 +2462,8 @@ interface Props$2b {
|
|
|
2338
2462
|
onClose: () => void;
|
|
2339
2463
|
}
|
|
2340
2464
|
|
|
2341
|
-
declare const PermissionsManagementPanelRulesHeader: React$1.FC<Props$
|
|
2342
|
-
interface Props$
|
|
2465
|
+
declare const PermissionsManagementPanelRulesHeader: React$1.FC<Props$2c>;
|
|
2466
|
+
interface Props$2c {
|
|
2343
2467
|
/**
|
|
2344
2468
|
* Title to display.
|
|
2345
2469
|
*/
|
|
@@ -2350,16 +2474,16 @@ interface Props$2a {
|
|
|
2350
2474
|
children: React$1.ReactNode;
|
|
2351
2475
|
}
|
|
2352
2476
|
|
|
2353
|
-
declare const PermissionsManagementPanel: React$1.FC<Props$
|
|
2354
|
-
interface Props$
|
|
2477
|
+
declare const PermissionsManagementPanel: React$1.FC<Props$2b>;
|
|
2478
|
+
interface Props$2b {
|
|
2355
2479
|
/**
|
|
2356
2480
|
* Main content of the component.
|
|
2357
2481
|
*/
|
|
2358
2482
|
children: React$1.ReactNode;
|
|
2359
2483
|
}
|
|
2360
2484
|
|
|
2361
|
-
declare const ProgressPanel: React$1.ForwardRefExoticComponent<Props$
|
|
2362
|
-
interface Props$
|
|
2485
|
+
declare const ProgressPanel: React$1.ForwardRefExoticComponent<Props$2a & React$1.RefAttributes<HTMLDivElement>>;
|
|
2486
|
+
interface Props$2a {
|
|
2363
2487
|
/**
|
|
2364
2488
|
* Additional info rendered close to a title.
|
|
2365
2489
|
*/
|
|
@@ -2402,8 +2526,8 @@ interface Props$28 {
|
|
|
2402
2526
|
navigationLabel?: string;
|
|
2403
2527
|
}
|
|
2404
2528
|
|
|
2405
|
-
declare const PropertiesTableRow: React$1.FC<Props$
|
|
2406
|
-
interface Props$
|
|
2529
|
+
declare const PropertiesTableRow: React$1.FC<Props$29>;
|
|
2530
|
+
interface Props$29 {
|
|
2407
2531
|
/**
|
|
2408
2532
|
* Item's label.
|
|
2409
2533
|
*/
|
|
@@ -2414,16 +2538,16 @@ interface Props$27 {
|
|
|
2414
2538
|
value: React$1.ReactNode;
|
|
2415
2539
|
}
|
|
2416
2540
|
|
|
2417
|
-
declare const PropertiesTable: React$1.FC<Props$
|
|
2418
|
-
interface Props$
|
|
2541
|
+
declare const PropertiesTable: React$1.FC<Props$28>;
|
|
2542
|
+
interface Props$28 {
|
|
2419
2543
|
/**
|
|
2420
2544
|
* Main content of the component.
|
|
2421
2545
|
*/
|
|
2422
2546
|
children: React$1.ReactNode;
|
|
2423
2547
|
}
|
|
2424
2548
|
|
|
2425
|
-
declare const ResponsiveImageFit: React$1.FC<Props$
|
|
2426
|
-
interface Props$
|
|
2549
|
+
declare const ResponsiveImageFit: React$1.FC<Props$27>;
|
|
2550
|
+
interface Props$27 {
|
|
2427
2551
|
/**
|
|
2428
2552
|
* Image alt text.
|
|
2429
2553
|
*/
|
|
@@ -2462,8 +2586,8 @@ interface Props$25 {
|
|
|
2462
2586
|
sizes?: number;
|
|
2463
2587
|
}
|
|
2464
2588
|
|
|
2465
|
-
declare const ResponsiveImageFallback: React$1.FC<Props$
|
|
2466
|
-
interface Props$
|
|
2589
|
+
declare const ResponsiveImageFallback: React$1.FC<Props$26>;
|
|
2590
|
+
interface Props$26 {
|
|
2467
2591
|
/**
|
|
2468
2592
|
* Indicates if cover is allowed for the image.
|
|
2469
2593
|
*/
|
|
@@ -2490,8 +2614,8 @@ interface Props$24 {
|
|
|
2490
2614
|
showFallback?: boolean;
|
|
2491
2615
|
}
|
|
2492
2616
|
|
|
2493
|
-
declare const ResponsiveImageScalable: React$1.FC<Props$
|
|
2494
|
-
interface Props$
|
|
2617
|
+
declare const ResponsiveImageScalable: React$1.FC<Props$25>;
|
|
2618
|
+
interface Props$25 {
|
|
2495
2619
|
/**
|
|
2496
2620
|
* Image alt text.
|
|
2497
2621
|
*/
|
|
@@ -2540,8 +2664,8 @@ interface Props$23 {
|
|
|
2540
2664
|
|
|
2541
2665
|
declare const ResponsiveImageSkeleton: React$1.FC;
|
|
2542
2666
|
|
|
2543
|
-
declare const ResponsiveImage: React$1.FC<Props$
|
|
2544
|
-
interface Props$
|
|
2667
|
+
declare const ResponsiveImage: React$1.FC<Props$24>;
|
|
2668
|
+
interface Props$24 {
|
|
2545
2669
|
/**
|
|
2546
2670
|
* List of available breakpoints.
|
|
2547
2671
|
*/
|
|
@@ -2564,8 +2688,8 @@ interface Props$22 {
|
|
|
2564
2688
|
loader?: React$1.ReactNode;
|
|
2565
2689
|
}
|
|
2566
2690
|
|
|
2567
|
-
declare const Skeleton: React$1.FC<Props$
|
|
2568
|
-
interface Props$
|
|
2691
|
+
declare const Skeleton: React$1.FC<Props$23>;
|
|
2692
|
+
interface Props$23 {
|
|
2569
2693
|
/**
|
|
2570
2694
|
* Optional class name. It overrides class responsible for background color.
|
|
2571
2695
|
*/
|
|
@@ -2580,8 +2704,8 @@ interface Props$21 {
|
|
|
2580
2704
|
width?: string;
|
|
2581
2705
|
}
|
|
2582
2706
|
|
|
2583
|
-
declare const SortButton: React$1.FC<Props$
|
|
2584
|
-
interface Props$
|
|
2707
|
+
declare const SortButton: React$1.FC<Props$22>;
|
|
2708
|
+
interface Props$22 {
|
|
2585
2709
|
/**
|
|
2586
2710
|
* Button's aria label.
|
|
2587
2711
|
*/
|
|
@@ -2598,10 +2722,18 @@ interface Props$20 {
|
|
|
2598
2722
|
* Sets `click` event handler.
|
|
2599
2723
|
*/
|
|
2600
2724
|
onClick?: () => void;
|
|
2725
|
+
/**
|
|
2726
|
+
* Determines if inactive button styling should be used.
|
|
2727
|
+
*/
|
|
2728
|
+
inactive?: boolean;
|
|
2729
|
+
/**
|
|
2730
|
+
* Button's sizing.
|
|
2731
|
+
*/
|
|
2732
|
+
sizing?: ButtonSize;
|
|
2601
2733
|
}
|
|
2602
2734
|
|
|
2603
|
-
declare const SwitchView: React$1.FC<Props$
|
|
2604
|
-
interface Props$
|
|
2735
|
+
declare const SwitchView: React$1.FC<Props$21>;
|
|
2736
|
+
interface Props$21 {
|
|
2605
2737
|
/**
|
|
2606
2738
|
* Main content of the component.
|
|
2607
2739
|
*/
|
|
@@ -2612,8 +2744,8 @@ interface Props$1$ {
|
|
|
2612
2744
|
id?: string | string[];
|
|
2613
2745
|
}
|
|
2614
2746
|
|
|
2615
|
-
declare const Switch: React$1.FC<Props$
|
|
2616
|
-
interface Props$
|
|
2747
|
+
declare const Switch: React$1.FC<Props$20>;
|
|
2748
|
+
interface Props$20 {
|
|
2617
2749
|
/**
|
|
2618
2750
|
* Main content of the component.
|
|
2619
2751
|
*/
|
|
@@ -2624,8 +2756,8 @@ interface Props$1_ {
|
|
|
2624
2756
|
match?: string;
|
|
2625
2757
|
}
|
|
2626
2758
|
|
|
2627
|
-
declare const SwitchInput: React$1.FC<Props$
|
|
2628
|
-
interface Props$
|
|
2759
|
+
declare const SwitchInput: React$1.FC<Props$1$>;
|
|
2760
|
+
interface Props$1$ {
|
|
2629
2761
|
/**
|
|
2630
2762
|
* Sets current input's value.
|
|
2631
2763
|
*/
|
|
@@ -2644,8 +2776,8 @@ interface Props$1Z {
|
|
|
2644
2776
|
onChange: (checked: boolean) => void;
|
|
2645
2777
|
}
|
|
2646
2778
|
|
|
2647
|
-
declare const TagList: React$1.FC<Props$
|
|
2648
|
-
interface Props$
|
|
2779
|
+
declare const TagList: React$1.FC<Props$1_>;
|
|
2780
|
+
interface Props$1_ {
|
|
2649
2781
|
/**
|
|
2650
2782
|
* Main content of the component.
|
|
2651
2783
|
*/
|
|
@@ -2656,8 +2788,8 @@ interface Props$1Y {
|
|
|
2656
2788
|
className?: string;
|
|
2657
2789
|
}
|
|
2658
2790
|
|
|
2659
|
-
declare const TagLabel: React$1.FC<Props$
|
|
2660
|
-
interface Props$
|
|
2791
|
+
declare const TagLabel: React$1.FC<Props$1Z>;
|
|
2792
|
+
interface Props$1Z {
|
|
2661
2793
|
/**
|
|
2662
2794
|
* Emphasizes tag content.
|
|
2663
2795
|
*/
|
|
@@ -2668,8 +2800,8 @@ interface Props$1X {
|
|
|
2668
2800
|
children: React$1.ReactNode;
|
|
2669
2801
|
}
|
|
2670
2802
|
|
|
2671
|
-
declare const Tag: React$1.ForwardRefExoticComponent<Props$
|
|
2672
|
-
interface Props$
|
|
2803
|
+
declare const Tag: React$1.ForwardRefExoticComponent<Props$1Y & React$1.RefAttributes<HTMLDivElement>>;
|
|
2804
|
+
interface Props$1Y {
|
|
2673
2805
|
/**
|
|
2674
2806
|
* Sets component's children.
|
|
2675
2807
|
*/
|
|
@@ -2700,8 +2832,8 @@ interface Props$1W {
|
|
|
2700
2832
|
removeLabel?: string;
|
|
2701
2833
|
}
|
|
2702
2834
|
|
|
2703
|
-
declare const TagInput: React$1.FC<Props$
|
|
2704
|
-
interface Props$
|
|
2835
|
+
declare const TagInput: React$1.FC<Props$1X>;
|
|
2836
|
+
interface Props$1X {
|
|
2705
2837
|
/**
|
|
2706
2838
|
* Input's class name.
|
|
2707
2839
|
*/
|
|
@@ -2753,8 +2885,8 @@ interface Props$1V {
|
|
|
2753
2885
|
disabled?: boolean;
|
|
2754
2886
|
}
|
|
2755
2887
|
|
|
2756
|
-
declare const Tab: React$1.FC<Props$
|
|
2757
|
-
interface Props$
|
|
2888
|
+
declare const Tab: React$1.FC<Props$1W>;
|
|
2889
|
+
interface Props$1W {
|
|
2758
2890
|
/**
|
|
2759
2891
|
* Main content.
|
|
2760
2892
|
*/
|
|
@@ -2771,10 +2903,14 @@ interface Props$1U {
|
|
|
2771
2903
|
* Associated panel's ID.
|
|
2772
2904
|
*/
|
|
2773
2905
|
panelId: string;
|
|
2906
|
+
/**
|
|
2907
|
+
* Determines scrolling and sizing behavior.
|
|
2908
|
+
*/
|
|
2909
|
+
variant?: 'default' | 'fullscreen';
|
|
2774
2910
|
}
|
|
2775
2911
|
|
|
2776
|
-
declare const TabPanel: React$1.FC<Props$
|
|
2777
|
-
interface Props$
|
|
2912
|
+
declare const TabPanel: React$1.FC<Props$1V>;
|
|
2913
|
+
interface Props$1V {
|
|
2778
2914
|
/**
|
|
2779
2915
|
* Main content of the component.
|
|
2780
2916
|
*/
|
|
@@ -2787,10 +2923,14 @@ interface Props$1T {
|
|
|
2787
2923
|
* Panel's unique ID.
|
|
2788
2924
|
*/
|
|
2789
2925
|
id: string;
|
|
2926
|
+
/**
|
|
2927
|
+
* Optional class to append.
|
|
2928
|
+
*/
|
|
2929
|
+
className?: string;
|
|
2790
2930
|
}
|
|
2791
2931
|
|
|
2792
|
-
declare const Tabs: React$1.FC<Props$
|
|
2793
|
-
interface Props$
|
|
2932
|
+
declare const Tabs: React$1.FC<Props$1U>;
|
|
2933
|
+
interface Props$1U {
|
|
2794
2934
|
/**
|
|
2795
2935
|
* Currently selected tab.
|
|
2796
2936
|
*/
|
|
@@ -2805,8 +2945,8 @@ interface Props$1S {
|
|
|
2805
2945
|
onSelect?: (id: string) => void;
|
|
2806
2946
|
}
|
|
2807
2947
|
|
|
2808
|
-
declare const Tooltip: React$1.FC<Props$
|
|
2809
|
-
interface Props$
|
|
2948
|
+
declare const Tooltip: React$1.FC<Props$1T>;
|
|
2949
|
+
interface Props$1T {
|
|
2810
2950
|
/**
|
|
2811
2951
|
* Main content of the component.
|
|
2812
2952
|
* It must be a single child that accepts `ref`.
|
|
@@ -2832,8 +2972,8 @@ interface Props$1R {
|
|
|
2832
2972
|
wrap?: boolean;
|
|
2833
2973
|
}
|
|
2834
2974
|
|
|
2835
|
-
declare const TopbarAction: React$1.FC<Props$
|
|
2836
|
-
interface Props$
|
|
2975
|
+
declare const TopbarAction: React$1.FC<Props$1S>;
|
|
2976
|
+
interface Props$1S {
|
|
2837
2977
|
/**
|
|
2838
2978
|
* Applies active styling.
|
|
2839
2979
|
*/
|
|
@@ -2864,8 +3004,8 @@ interface Props$1Q {
|
|
|
2864
3004
|
onClick?: () => void;
|
|
2865
3005
|
}
|
|
2866
3006
|
|
|
2867
|
-
declare const Topbar: React$1.FC<Props$
|
|
2868
|
-
interface Props$
|
|
3007
|
+
declare const Topbar: React$1.FC<Props$1R>;
|
|
3008
|
+
interface Props$1R {
|
|
2869
3009
|
/**
|
|
2870
3010
|
* Main content of the component.
|
|
2871
3011
|
*/
|
|
@@ -4030,8 +4170,8 @@ declare namespace validators_d {
|
|
|
4030
4170
|
};
|
|
4031
4171
|
}
|
|
4032
4172
|
|
|
4033
|
-
declare const ViewDialog: React$1.FC<Props$
|
|
4034
|
-
interface Props$
|
|
4173
|
+
declare const ViewDialog: React$1.FC<Props$1Q>;
|
|
4174
|
+
interface Props$1Q {
|
|
4035
4175
|
/**
|
|
4036
4176
|
* Main content of the component.
|
|
4037
4177
|
*/
|
|
@@ -4094,8 +4234,8 @@ interface Props$1O {
|
|
|
4094
4234
|
label?: string;
|
|
4095
4235
|
}
|
|
4096
4236
|
|
|
4097
|
-
declare const UIProvider: React$1.FC<Props$
|
|
4098
|
-
interface Props$
|
|
4237
|
+
declare const UIProvider: React$1.FC<Props$1P>;
|
|
4238
|
+
interface Props$1P {
|
|
4099
4239
|
/**
|
|
4100
4240
|
* Main content.
|
|
4101
4241
|
*/
|
|
@@ -4123,7 +4263,7 @@ interface Props$1N {
|
|
|
4123
4263
|
/**
|
|
4124
4264
|
* Dialog mode options.
|
|
4125
4265
|
*/
|
|
4126
|
-
dialog?: Omit<Props$
|
|
4266
|
+
dialog?: Omit<Props$1Q, 'children'>;
|
|
4127
4267
|
/**
|
|
4128
4268
|
* Name of selected theme.
|
|
4129
4269
|
*/
|
|
@@ -4146,16 +4286,16 @@ interface Props$1N {
|
|
|
4146
4286
|
choosableFileExtensions?: string[];
|
|
4147
4287
|
}
|
|
4148
4288
|
|
|
4149
|
-
declare const View: React$1.FC<Props$
|
|
4150
|
-
interface Props$
|
|
4289
|
+
declare const View: React$1.FC<Props$1O>;
|
|
4290
|
+
interface Props$1O {
|
|
4151
4291
|
/**
|
|
4152
4292
|
* Sets component's children.
|
|
4153
4293
|
*/
|
|
4154
4294
|
children?: React$1.ReactNode;
|
|
4155
4295
|
}
|
|
4156
4296
|
|
|
4157
|
-
declare const ViewContent: React$1.ForwardRefExoticComponent<Props$
|
|
4158
|
-
interface Props$
|
|
4297
|
+
declare const ViewContent: React$1.ForwardRefExoticComponent<Props$1N & React$1.RefAttributes<HTMLDivElement>>;
|
|
4298
|
+
interface Props$1N {
|
|
4159
4299
|
/**
|
|
4160
4300
|
* Sets component's children.
|
|
4161
4301
|
*/
|
|
@@ -4178,8 +4318,8 @@ interface Props$1L {
|
|
|
4178
4318
|
spacing?: 'xl';
|
|
4179
4319
|
}
|
|
4180
4320
|
|
|
4181
|
-
declare const ViewContentBar: React$1.FC<Props$
|
|
4182
|
-
interface Props$
|
|
4321
|
+
declare const ViewContentBar: React$1.FC<Props$1M>;
|
|
4322
|
+
interface Props$1M {
|
|
4183
4323
|
/**
|
|
4184
4324
|
* Sets component's children.
|
|
4185
4325
|
*/
|
|
@@ -4190,48 +4330,52 @@ interface Props$1K {
|
|
|
4190
4330
|
justify?: 'start' | 'end';
|
|
4191
4331
|
}
|
|
4192
4332
|
|
|
4193
|
-
declare const ViewContentWrapper: React$1.FC<Props$
|
|
4194
|
-
interface Props$
|
|
4333
|
+
declare const ViewContentWrapper: React$1.FC<Props$1L>;
|
|
4334
|
+
interface Props$1L {
|
|
4195
4335
|
/**
|
|
4196
4336
|
* Sets component's children.
|
|
4197
4337
|
*/
|
|
4198
4338
|
children?: React$1.ReactNode;
|
|
4199
4339
|
}
|
|
4200
4340
|
|
|
4201
|
-
declare const ViewFooter: React$1.FC<Props$
|
|
4202
|
-
interface Props$
|
|
4341
|
+
declare const ViewFooter: React$1.FC<Props$1K>;
|
|
4342
|
+
interface Props$1K {
|
|
4203
4343
|
/**
|
|
4204
4344
|
* Sets component's children.
|
|
4205
4345
|
*/
|
|
4206
4346
|
children?: React$1.ReactNode;
|
|
4207
4347
|
}
|
|
4208
4348
|
|
|
4209
|
-
declare const ViewHeader: React$1.FC<Props$
|
|
4210
|
-
interface Props$
|
|
4349
|
+
declare const ViewHeader: React$1.FC<Props$1J>;
|
|
4350
|
+
interface Props$1J {
|
|
4211
4351
|
/**
|
|
4212
4352
|
* Sets component's children.
|
|
4213
4353
|
*/
|
|
4214
4354
|
children?: React$1.ReactNode;
|
|
4215
4355
|
}
|
|
4216
4356
|
|
|
4217
|
-
declare const ViewPaper: React$1.ForwardRefExoticComponent<Props$
|
|
4218
|
-
interface Props$
|
|
4357
|
+
declare const ViewPaper: React$1.ForwardRefExoticComponent<Props$1I & React$1.RefAttributes<HTMLDivElement>>;
|
|
4358
|
+
interface Props$1I {
|
|
4219
4359
|
/**
|
|
4220
4360
|
* Sets component's children.
|
|
4221
4361
|
*/
|
|
4222
4362
|
children: React$1.ReactNode;
|
|
4363
|
+
/**
|
|
4364
|
+
* Determines scrolling and sizing behavior.
|
|
4365
|
+
*/
|
|
4366
|
+
variant?: 'default' | 'fullscreen';
|
|
4223
4367
|
}
|
|
4224
4368
|
|
|
4225
|
-
declare const ViewSideContent: React$1.FC<Props$
|
|
4226
|
-
interface Props$
|
|
4369
|
+
declare const ViewSideContent: React$1.FC<Props$1H>;
|
|
4370
|
+
interface Props$1H {
|
|
4227
4371
|
/**
|
|
4228
4372
|
* Sets component's children.
|
|
4229
4373
|
*/
|
|
4230
4374
|
children?: React$1.ReactNode;
|
|
4231
4375
|
}
|
|
4232
4376
|
|
|
4233
|
-
declare const ViewWrapper: React$1.FC<Props$
|
|
4234
|
-
interface Props$
|
|
4377
|
+
declare const ViewWrapper: React$1.FC<Props$1G>;
|
|
4378
|
+
interface Props$1G {
|
|
4235
4379
|
/**
|
|
4236
4380
|
* Main content of the component.
|
|
4237
4381
|
*/
|
|
@@ -4242,8 +4386,8 @@ interface Props$1E {
|
|
|
4242
4386
|
navbar?: React$1.ReactNode;
|
|
4243
4387
|
}
|
|
4244
4388
|
|
|
4245
|
-
declare const RangeSlider: React$1.FC<Props$
|
|
4246
|
-
type Props$
|
|
4389
|
+
declare const RangeSlider: React$1.FC<Props$1F>;
|
|
4390
|
+
type Props$1F = {
|
|
4247
4391
|
/**
|
|
4248
4392
|
* Slider value.
|
|
4249
4393
|
*/
|
|
@@ -4276,8 +4420,8 @@ type Props$1D = {
|
|
|
4276
4420
|
showLabels?: boolean;
|
|
4277
4421
|
};
|
|
4278
4422
|
|
|
4279
|
-
declare const FormFeedback: React$1.FC<Props$
|
|
4280
|
-
type Props$
|
|
4423
|
+
declare const FormFeedback: React$1.FC<Props$1E>;
|
|
4424
|
+
type Props$1E = {
|
|
4281
4425
|
/**
|
|
4282
4426
|
* Main content of the component.
|
|
4283
4427
|
*/
|
|
@@ -4292,8 +4436,8 @@ type Props$1C = {
|
|
|
4292
4436
|
warning?: boolean;
|
|
4293
4437
|
};
|
|
4294
4438
|
|
|
4295
|
-
declare const FormGroup: React$1.FC<Props$
|
|
4296
|
-
interface Props$
|
|
4439
|
+
declare const FormGroup: React$1.FC<Props$1D>;
|
|
4440
|
+
interface Props$1D {
|
|
4297
4441
|
/**
|
|
4298
4442
|
* Main content of the component.
|
|
4299
4443
|
*/
|
|
@@ -4304,24 +4448,24 @@ interface Props$1B {
|
|
|
4304
4448
|
halfWidth?: boolean;
|
|
4305
4449
|
}
|
|
4306
4450
|
|
|
4307
|
-
declare const FormGroupColumn: React$1.FC<Props$
|
|
4308
|
-
interface Props$
|
|
4451
|
+
declare const FormGroupColumn: React$1.FC<Props$1C>;
|
|
4452
|
+
interface Props$1C {
|
|
4309
4453
|
/**
|
|
4310
4454
|
* Main content of the component.
|
|
4311
4455
|
*/
|
|
4312
4456
|
children: React$1.ReactNode;
|
|
4313
4457
|
}
|
|
4314
4458
|
|
|
4315
|
-
declare const FormGroupInfo: React$1.FC<Props$
|
|
4316
|
-
interface Props$
|
|
4459
|
+
declare const FormGroupInfo: React$1.FC<Props$1B>;
|
|
4460
|
+
interface Props$1B {
|
|
4317
4461
|
/**
|
|
4318
4462
|
* Main content of the component.
|
|
4319
4463
|
*/
|
|
4320
4464
|
children: React$1.ReactNode;
|
|
4321
4465
|
}
|
|
4322
4466
|
|
|
4323
|
-
declare const FormInputLabel: React$1.FC<Props$
|
|
4324
|
-
type Props$
|
|
4467
|
+
declare const FormInputLabel: React$1.FC<Props$1A>;
|
|
4468
|
+
type Props$1A = {
|
|
4325
4469
|
/**
|
|
4326
4470
|
* Main content of the component.
|
|
4327
4471
|
*/
|
|
@@ -4340,8 +4484,8 @@ type Props$1y = {
|
|
|
4340
4484
|
iconName?: IconName;
|
|
4341
4485
|
};
|
|
4342
4486
|
|
|
4343
|
-
declare const Form: React$1.ForwardRefExoticComponent<Props$
|
|
4344
|
-
type Props$
|
|
4487
|
+
declare const Form: React$1.ForwardRefExoticComponent<Props$1z & React$1.RefAttributes<HTMLFormElement>>;
|
|
4488
|
+
type Props$1z = {
|
|
4345
4489
|
/**
|
|
4346
4490
|
* Main content of the component.
|
|
4347
4491
|
*/
|
|
@@ -4364,8 +4508,8 @@ type Props$1x = {
|
|
|
4364
4508
|
onSubmit: React$1.FormEventHandler<HTMLFormElement>;
|
|
4365
4509
|
};
|
|
4366
4510
|
|
|
4367
|
-
declare const EmptyViewLabel: React$1.FC<Props$
|
|
4368
|
-
interface Props$
|
|
4511
|
+
declare const EmptyViewLabel: React$1.FC<Props$1y>;
|
|
4512
|
+
interface Props$1y {
|
|
4369
4513
|
/**
|
|
4370
4514
|
* Main content of the component.
|
|
4371
4515
|
*/
|
|
@@ -4376,8 +4520,8 @@ interface Props$1w {
|
|
|
4376
4520
|
muted?: boolean;
|
|
4377
4521
|
}
|
|
4378
4522
|
|
|
4379
|
-
declare const EmptyView: React$1.ForwardRefExoticComponent<Props$
|
|
4380
|
-
interface Props$
|
|
4523
|
+
declare const EmptyView: React$1.ForwardRefExoticComponent<Props$1x & React$1.RefAttributes<HTMLDivElement>>;
|
|
4524
|
+
interface Props$1x {
|
|
4381
4525
|
/**
|
|
4382
4526
|
* Adds active styling.
|
|
4383
4527
|
*/
|
|
@@ -4400,8 +4544,8 @@ interface Props$1v {
|
|
|
4400
4544
|
type?: 'dropzone' | 'default';
|
|
4401
4545
|
}
|
|
4402
4546
|
|
|
4403
|
-
declare const Ellipsis: React$1.FC<Props$
|
|
4404
|
-
interface Props$
|
|
4547
|
+
declare const Ellipsis: React$1.FC<Props$1w>;
|
|
4548
|
+
interface Props$1w {
|
|
4405
4549
|
/**
|
|
4406
4550
|
* Items to display.
|
|
4407
4551
|
*/
|
|
@@ -4412,8 +4556,8 @@ interface Props$1u {
|
|
|
4412
4556
|
maxVisibleItems?: number;
|
|
4413
4557
|
}
|
|
4414
4558
|
|
|
4415
|
-
declare const FilePreviewActions: React$1.FC<Props$
|
|
4416
|
-
interface Props$
|
|
4559
|
+
declare const FilePreviewActions: React$1.FC<Props$1v>;
|
|
4560
|
+
interface Props$1v {
|
|
4417
4561
|
/**
|
|
4418
4562
|
* Label of the back button.
|
|
4419
4563
|
*/
|
|
@@ -4428,33 +4572,33 @@ interface Props$1t {
|
|
|
4428
4572
|
title: string;
|
|
4429
4573
|
}
|
|
4430
4574
|
|
|
4431
|
-
declare const FilePreviewColumn: React$1.FC<Props$
|
|
4432
|
-
interface Props$
|
|
4575
|
+
declare const FilePreviewColumn: React$1.FC<Props$1u>;
|
|
4576
|
+
interface Props$1u {
|
|
4433
4577
|
/**
|
|
4434
4578
|
* Main content of the component.
|
|
4435
4579
|
*/
|
|
4436
4580
|
children: React$1.ReactNode;
|
|
4437
4581
|
}
|
|
4438
4582
|
|
|
4439
|
-
declare const FilePreviewContent: React$1.ForwardRefExoticComponent<Props$
|
|
4440
|
-
interface Props$
|
|
4583
|
+
declare const FilePreviewContent: React$1.ForwardRefExoticComponent<Props$1t & React$1.RefAttributes<HTMLDivElement>>;
|
|
4584
|
+
interface Props$1t {
|
|
4441
4585
|
/**
|
|
4442
4586
|
* Main content of the component.
|
|
4443
4587
|
*/
|
|
4444
4588
|
children: React$1.ReactNode;
|
|
4445
4589
|
}
|
|
4446
4590
|
|
|
4447
|
-
declare const FilePreviewHoverable: React$1.ForwardRefExoticComponent<Props$
|
|
4448
|
-
interface Props$
|
|
4591
|
+
declare const FilePreviewHoverable: React$1.ForwardRefExoticComponent<Props$1s & React$1.RefAttributes<HTMLDivElement>>;
|
|
4592
|
+
interface Props$1s {
|
|
4449
4593
|
/**
|
|
4450
4594
|
* Main content of the component.
|
|
4451
4595
|
*/
|
|
4452
4596
|
children: React$1.ReactNode;
|
|
4453
4597
|
}
|
|
4454
4598
|
|
|
4455
|
-
declare const FilePreviewNavButton: React$1.FC<Props$
|
|
4599
|
+
declare const FilePreviewNavButton: React$1.FC<Props$1r>;
|
|
4456
4600
|
type Side = 'left' | 'right';
|
|
4457
|
-
interface Props$
|
|
4601
|
+
interface Props$1r {
|
|
4458
4602
|
/**
|
|
4459
4603
|
* Disables button.
|
|
4460
4604
|
*/
|
|
@@ -4477,16 +4621,16 @@ interface Props$1p {
|
|
|
4477
4621
|
tooltipPlacement?: PopperPlacement;
|
|
4478
4622
|
}
|
|
4479
4623
|
|
|
4480
|
-
declare const FilePreviewTooltip: React$1.FC<Props$
|
|
4481
|
-
interface Props$
|
|
4624
|
+
declare const FilePreviewTooltip: React$1.FC<Props$1q>;
|
|
4625
|
+
interface Props$1q {
|
|
4482
4626
|
/**
|
|
4483
4627
|
* Main content of the tooltip.
|
|
4484
4628
|
*/
|
|
4485
4629
|
children?: React$1.ReactNode;
|
|
4486
4630
|
}
|
|
4487
4631
|
|
|
4488
|
-
declare const FilePreview: React$1.ForwardRefExoticComponent<Props$
|
|
4489
|
-
interface Props$
|
|
4632
|
+
declare const FilePreview: React$1.ForwardRefExoticComponent<Props$1p & React$1.RefAttributes<HTMLDivElement>>;
|
|
4633
|
+
interface Props$1p {
|
|
4490
4634
|
/**
|
|
4491
4635
|
* Main content of the component.
|
|
4492
4636
|
*/
|
|
@@ -4536,8 +4680,8 @@ interface SelectionAreaCoords {
|
|
|
4536
4680
|
height: number;
|
|
4537
4681
|
}
|
|
4538
4682
|
|
|
4539
|
-
declare const SelectionArea: React$1.FC<Props$
|
|
4540
|
-
interface Props$
|
|
4683
|
+
declare const SelectionArea: React$1.FC<Props$1o>;
|
|
4684
|
+
interface Props$1o {
|
|
4541
4685
|
/**
|
|
4542
4686
|
* Selection area container.
|
|
4543
4687
|
*/
|
|
@@ -4639,8 +4783,8 @@ type SelectToggleHandler = (opt: SelectOption) => void;
|
|
|
4639
4783
|
*/
|
|
4640
4784
|
type SelectKeyboardNextIdGetter = (options: SelectOption[], currentIndex: number) => SelectOption | undefined;
|
|
4641
4785
|
|
|
4642
|
-
declare const SelectListboxGrid: React$1.FC<Props$
|
|
4643
|
-
interface Props$
|
|
4786
|
+
declare const SelectListboxGrid: React$1.FC<Props$1n>;
|
|
4787
|
+
interface Props$1n {
|
|
4644
4788
|
/**
|
|
4645
4789
|
* Main content of the component.
|
|
4646
4790
|
*/
|
|
@@ -4651,8 +4795,8 @@ interface Props$1l {
|
|
|
4651
4795
|
noOptionsLabel?: string;
|
|
4652
4796
|
}
|
|
4653
4797
|
|
|
4654
|
-
declare const Select: React$1.FC<Props$
|
|
4655
|
-
interface Props$
|
|
4798
|
+
declare const Select: React$1.FC<Props$1m>;
|
|
4799
|
+
interface Props$1m {
|
|
4656
4800
|
/**
|
|
4657
4801
|
* Aria label for clear button.
|
|
4658
4802
|
*/
|
|
@@ -4739,8 +4883,8 @@ interface Props$1k {
|
|
|
4739
4883
|
size?: 'base' | 'small' | 'medium';
|
|
4740
4884
|
}
|
|
4741
4885
|
|
|
4742
|
-
declare const Notifications: React$1.FC<Props$
|
|
4743
|
-
interface Props$
|
|
4886
|
+
declare const Notifications: React$1.FC<Props$1l>;
|
|
4887
|
+
interface Props$1l {
|
|
4744
4888
|
/**
|
|
4745
4889
|
* Container's position will be adjusted in accordance with provided element's height.
|
|
4746
4890
|
*/
|
|
@@ -4753,11 +4897,11 @@ interface Props$1j {
|
|
|
4753
4897
|
|
|
4754
4898
|
type NotificationType = 'success' | 'error' | 'warning';
|
|
4755
4899
|
|
|
4756
|
-
declare const Notification: React$1.FC<Props$
|
|
4900
|
+
declare const Notification: React$1.FC<Props$1k>;
|
|
4757
4901
|
/**
|
|
4758
4902
|
* `Notification` component is rendered as part of `TransitionGroup` and therefore gets transition props in addition to its regular props.
|
|
4759
4903
|
*/
|
|
4760
|
-
type Props$
|
|
4904
|
+
type Props$1k = Partial<TransitionProps> & {
|
|
4761
4905
|
/**
|
|
4762
4906
|
* Main content of the component.
|
|
4763
4907
|
*/
|
|
@@ -4784,8 +4928,8 @@ type Props$1i = Partial<TransitionProps> & {
|
|
|
4784
4928
|
type: NotificationType;
|
|
4785
4929
|
};
|
|
4786
4930
|
|
|
4787
|
-
declare const CopyableInput: React$1.FC<Props$
|
|
4788
|
-
interface Props$
|
|
4931
|
+
declare const CopyableInput: React$1.FC<Props$1j>;
|
|
4932
|
+
interface Props$1j {
|
|
4789
4933
|
/**
|
|
4790
4934
|
* Unique input's id.
|
|
4791
4935
|
*/
|
|
@@ -4808,8 +4952,8 @@ interface Props$1h {
|
|
|
4808
4952
|
labelCopied: string;
|
|
4809
4953
|
}
|
|
4810
4954
|
|
|
4811
|
-
declare const CopyableLabel: React$1.FC<Props$
|
|
4812
|
-
interface Props$
|
|
4955
|
+
declare const CopyableLabel: React$1.FC<Props$1i>;
|
|
4956
|
+
interface Props$1i {
|
|
4813
4957
|
/**
|
|
4814
4958
|
* Label's text. This text will be copied to clipboard upon clicking on the label.
|
|
4815
4959
|
*/
|
|
@@ -4828,8 +4972,8 @@ interface Props$1g {
|
|
|
4828
4972
|
labelCopied: string;
|
|
4829
4973
|
}
|
|
4830
4974
|
|
|
4831
|
-
declare const CopyButton: React$1.FC<Props$
|
|
4832
|
-
interface Props$
|
|
4975
|
+
declare const CopyButton: React$1.FC<Props$1h>;
|
|
4976
|
+
interface Props$1h {
|
|
4833
4977
|
/**
|
|
4834
4978
|
* Value to be copied to clipboard.
|
|
4835
4979
|
*/
|
|
@@ -4902,8 +5046,8 @@ interface ContainerQueryContext {
|
|
|
4902
5046
|
declare const ContainerQueryContext: React$1.Context<ContainerQueryContext>;
|
|
4903
5047
|
declare const useContainerQuery: () => ContainerQueryContext;
|
|
4904
5048
|
|
|
4905
|
-
declare const ContainerQueryProvider: React$1.FC<Props$
|
|
4906
|
-
interface Props$
|
|
5049
|
+
declare const ContainerQueryProvider: React$1.FC<Props$1g>;
|
|
5050
|
+
interface Props$1g {
|
|
4907
5051
|
/**
|
|
4908
5052
|
* Maps breakpoint keys to width values. Each key corresponds to minimum value (in px).
|
|
4909
5053
|
*/
|
|
@@ -4918,8 +5062,8 @@ interface Props$1e {
|
|
|
4918
5062
|
containerEl?: HTMLElement | null;
|
|
4919
5063
|
}
|
|
4920
5064
|
|
|
4921
|
-
declare const ContainerQuery: React$1.FC<Props$
|
|
4922
|
-
interface Props$
|
|
5065
|
+
declare const ContainerQuery: React$1.FC<Props$1f>;
|
|
5066
|
+
interface Props$1f {
|
|
4923
5067
|
/**
|
|
4924
5068
|
* Main content of the component.
|
|
4925
5069
|
*/
|
|
@@ -4943,8 +5087,8 @@ interface FixedContext {
|
|
|
4943
5087
|
declare const FixedContext: React$1.Context<FixedContext>;
|
|
4944
5088
|
declare const useFixedCtx: () => FixedContext;
|
|
4945
5089
|
|
|
4946
|
-
declare const FixedProvider: React$1.FC<Props$
|
|
4947
|
-
interface Props$
|
|
5090
|
+
declare const FixedProvider: React$1.FC<Props$1e>;
|
|
5091
|
+
interface Props$1e {
|
|
4948
5092
|
/**
|
|
4949
5093
|
* Main content of the component.
|
|
4950
5094
|
*/
|
|
@@ -4956,16 +5100,16 @@ interface Props$1c {
|
|
|
4956
5100
|
rootEl?: HTMLElement | null;
|
|
4957
5101
|
}
|
|
4958
5102
|
|
|
4959
|
-
declare const Fixed: React$1.FC<Props$
|
|
4960
|
-
interface Props$
|
|
5103
|
+
declare const Fixed: React$1.FC<Props$1d>;
|
|
5104
|
+
interface Props$1d {
|
|
4961
5105
|
/**
|
|
4962
5106
|
* Main content of the component.
|
|
4963
5107
|
*/
|
|
4964
5108
|
children: React$1.ReactNode;
|
|
4965
5109
|
}
|
|
4966
5110
|
|
|
4967
|
-
declare const LoadingButton: React$1.ForwardRefExoticComponent<Props$
|
|
4968
|
-
interface Props$
|
|
5111
|
+
declare const LoadingButton: React$1.ForwardRefExoticComponent<Props$1c & React$1.RefAttributes<HTMLButtonElement>>;
|
|
5112
|
+
interface Props$1c extends Props$3B {
|
|
4969
5113
|
/**
|
|
4970
5114
|
* Delays loader appearance. Defaults to `true`.
|
|
4971
5115
|
*/
|
|
@@ -4980,8 +5124,8 @@ interface Props$1a extends Props$3u {
|
|
|
4980
5124
|
loaderPosition?: 'left' | 'center' | 'right';
|
|
4981
5125
|
}
|
|
4982
5126
|
|
|
4983
|
-
declare const ListItem: React$1.FC<Props$
|
|
4984
|
-
interface Props$
|
|
5127
|
+
declare const ListItem: React$1.FC<Props$1b>;
|
|
5128
|
+
interface Props$1b {
|
|
4985
5129
|
/**
|
|
4986
5130
|
* Main content of the component.
|
|
4987
5131
|
*/
|
|
@@ -4992,16 +5136,16 @@ interface Props$19 {
|
|
|
4992
5136
|
onClick?: () => void;
|
|
4993
5137
|
}
|
|
4994
5138
|
|
|
4995
|
-
declare const ListItemActions: React$1.FC<Props$
|
|
4996
|
-
interface Props$
|
|
5139
|
+
declare const ListItemActions: React$1.FC<Props$1a>;
|
|
5140
|
+
interface Props$1a {
|
|
4997
5141
|
/**
|
|
4998
5142
|
* Main content of the component.
|
|
4999
5143
|
*/
|
|
5000
5144
|
children: React$1.ReactNode;
|
|
5001
5145
|
}
|
|
5002
5146
|
|
|
5003
|
-
declare const ListItemContent: React$1.FC<Props$
|
|
5004
|
-
interface Props$
|
|
5147
|
+
declare const ListItemContent: React$1.FC<Props$19>;
|
|
5148
|
+
interface Props$19 {
|
|
5005
5149
|
/**
|
|
5006
5150
|
* Main content of the component.
|
|
5007
5151
|
*/
|
|
@@ -5012,8 +5156,8 @@ interface Props$17 {
|
|
|
5012
5156
|
muted?: boolean;
|
|
5013
5157
|
}
|
|
5014
5158
|
|
|
5015
|
-
declare const List: React$1.FC<Props$
|
|
5016
|
-
interface Props$
|
|
5159
|
+
declare const List: React$1.FC<Props$18>;
|
|
5160
|
+
interface Props$18 {
|
|
5017
5161
|
/**
|
|
5018
5162
|
* Main content of the component.
|
|
5019
5163
|
*/
|
|
@@ -5024,32 +5168,32 @@ interface Props$16 {
|
|
|
5024
5168
|
className?: string;
|
|
5025
5169
|
}
|
|
5026
5170
|
|
|
5027
|
-
declare const SearchDialogActions: React$1.FC<Props$
|
|
5028
|
-
interface Props$
|
|
5171
|
+
declare const SearchDialogActions: React$1.FC<Props$17>;
|
|
5172
|
+
interface Props$17 {
|
|
5029
5173
|
/**
|
|
5030
5174
|
* Main content of the component.
|
|
5031
5175
|
*/
|
|
5032
5176
|
children: React$1.ReactNode;
|
|
5033
5177
|
}
|
|
5034
5178
|
|
|
5035
|
-
declare const SearchDialogContent: React$1.FC<Props$
|
|
5036
|
-
interface Props$
|
|
5179
|
+
declare const SearchDialogContent: React$1.FC<Props$16>;
|
|
5180
|
+
interface Props$16 {
|
|
5037
5181
|
/**
|
|
5038
5182
|
* Main content of the component.
|
|
5039
5183
|
*/
|
|
5040
5184
|
children: React$1.ReactNode;
|
|
5041
5185
|
}
|
|
5042
5186
|
|
|
5043
|
-
declare const SearchDialogFallback: React$1.FC<Props$
|
|
5044
|
-
interface Props$
|
|
5187
|
+
declare const SearchDialogFallback: React$1.FC<Props$15>;
|
|
5188
|
+
interface Props$15 {
|
|
5045
5189
|
/**
|
|
5046
5190
|
* Main content of the component.
|
|
5047
5191
|
*/
|
|
5048
5192
|
children: React$1.ReactNode;
|
|
5049
5193
|
}
|
|
5050
5194
|
|
|
5051
|
-
declare const SearchDialogHeader: React$1.FC<Props$
|
|
5052
|
-
interface Props$
|
|
5195
|
+
declare const SearchDialogHeader: React$1.FC<Props$14>;
|
|
5196
|
+
interface Props$14 {
|
|
5053
5197
|
/**
|
|
5054
5198
|
* Optional action rendered next to close button.
|
|
5055
5199
|
*/
|
|
@@ -5072,8 +5216,8 @@ interface Props$12 {
|
|
|
5072
5216
|
onSubmit?: React$1.FormEventHandler;
|
|
5073
5217
|
}
|
|
5074
5218
|
|
|
5075
|
-
declare const SearchDialogInput: React$1.ForwardRefExoticComponent<Props$
|
|
5076
|
-
interface Props$
|
|
5219
|
+
declare const SearchDialogInput: React$1.ForwardRefExoticComponent<Props$13 & React$1.RefAttributes<HTMLInputElement>>;
|
|
5220
|
+
interface Props$13 {
|
|
5077
5221
|
/**
|
|
5078
5222
|
* Input's name to register.
|
|
5079
5223
|
*/
|
|
@@ -5100,8 +5244,8 @@ interface Props$11 {
|
|
|
5100
5244
|
value?: string;
|
|
5101
5245
|
}
|
|
5102
5246
|
|
|
5103
|
-
declare const SearchDialogSection: React$1.FC<Props$
|
|
5104
|
-
interface Props$
|
|
5247
|
+
declare const SearchDialogSection: React$1.FC<Props$12>;
|
|
5248
|
+
interface Props$12 {
|
|
5105
5249
|
/**
|
|
5106
5250
|
* Main content of the component.
|
|
5107
5251
|
*/
|
|
@@ -5116,8 +5260,8 @@ interface Props$10 {
|
|
|
5116
5260
|
headerButtons?: React$1.ReactNode;
|
|
5117
5261
|
}
|
|
5118
5262
|
|
|
5119
|
-
declare const SearchDialog: React$1.FC<Props
|
|
5120
|
-
interface Props
|
|
5263
|
+
declare const SearchDialog: React$1.FC<Props$11>;
|
|
5264
|
+
interface Props$11 {
|
|
5121
5265
|
/**
|
|
5122
5266
|
* Main content of the component.
|
|
5123
5267
|
*/
|
|
@@ -5136,24 +5280,24 @@ interface Props$$ {
|
|
|
5136
5280
|
open?: boolean;
|
|
5137
5281
|
}
|
|
5138
5282
|
|
|
5139
|
-
declare const DrawerActions: React$1.FC<Props$
|
|
5140
|
-
interface Props$
|
|
5283
|
+
declare const DrawerActions: React$1.FC<Props$10>;
|
|
5284
|
+
interface Props$10 {
|
|
5141
5285
|
/**
|
|
5142
5286
|
* Main content of the component.
|
|
5143
5287
|
*/
|
|
5144
5288
|
children: React$1.ReactNode;
|
|
5145
5289
|
}
|
|
5146
5290
|
|
|
5147
|
-
declare const DrawerContent: React$1.FC<Props
|
|
5148
|
-
interface Props
|
|
5291
|
+
declare const DrawerContent: React$1.FC<Props$$>;
|
|
5292
|
+
interface Props$$ {
|
|
5149
5293
|
/**
|
|
5150
5294
|
* Main content of the component.
|
|
5151
5295
|
*/
|
|
5152
5296
|
children: React$1.ReactNode;
|
|
5153
5297
|
}
|
|
5154
5298
|
|
|
5155
|
-
declare const DrawerHeader: React$1.FC<Props$
|
|
5156
|
-
interface Props$
|
|
5299
|
+
declare const DrawerHeader: React$1.FC<Props$_>;
|
|
5300
|
+
interface Props$_ {
|
|
5157
5301
|
/**
|
|
5158
5302
|
* Text displayed as title in the bar.
|
|
5159
5303
|
*/
|
|
@@ -5172,8 +5316,8 @@ interface Props$Y {
|
|
|
5172
5316
|
iconRender?: IconRenderProp;
|
|
5173
5317
|
}
|
|
5174
5318
|
|
|
5175
|
-
declare const DrawerSection: React$1.ForwardRefExoticComponent<Props$
|
|
5176
|
-
interface Props$
|
|
5319
|
+
declare const DrawerSection: React$1.ForwardRefExoticComponent<Props$Z & React$1.RefAttributes<HTMLDivElement>>;
|
|
5320
|
+
interface Props$Z {
|
|
5177
5321
|
/**
|
|
5178
5322
|
* Main content of the component.
|
|
5179
5323
|
*/
|
|
@@ -5188,8 +5332,8 @@ interface Props$X {
|
|
|
5188
5332
|
centeredContent?: boolean;
|
|
5189
5333
|
}
|
|
5190
5334
|
|
|
5191
|
-
declare const Drawer: React$1.FC<Props$
|
|
5192
|
-
interface Props$
|
|
5335
|
+
declare const Drawer: React$1.FC<Props$Y>;
|
|
5336
|
+
interface Props$Y {
|
|
5193
5337
|
/**
|
|
5194
5338
|
* Main content of the component.
|
|
5195
5339
|
*/
|
|
@@ -5212,8 +5356,8 @@ interface Props$W {
|
|
|
5212
5356
|
fixed?: boolean;
|
|
5213
5357
|
}
|
|
5214
5358
|
|
|
5215
|
-
declare const TextEllipsis: React$1.
|
|
5216
|
-
interface Props$
|
|
5359
|
+
declare const TextEllipsis: React$1.ForwardRefExoticComponent<Props$X & React$1.RefAttributes<HTMLDivElement>>;
|
|
5360
|
+
interface Props$X {
|
|
5217
5361
|
/**
|
|
5218
5362
|
* Text content.
|
|
5219
5363
|
*/
|
|
@@ -5223,13 +5367,17 @@ interface Props$V {
|
|
|
5223
5367
|
*/
|
|
5224
5368
|
fontSize?: 'small';
|
|
5225
5369
|
/**
|
|
5226
|
-
* Flag indicating if text should wrap.
|
|
5370
|
+
* Flag indicating if text should wrap. Does not apply to nested children tags.
|
|
5227
5371
|
*/
|
|
5228
5372
|
wrap?: boolean;
|
|
5373
|
+
/**
|
|
5374
|
+
* Allows to add title to text content.
|
|
5375
|
+
*/
|
|
5376
|
+
title?: string;
|
|
5229
5377
|
}
|
|
5230
5378
|
|
|
5231
|
-
declare const FileInput: React$1.ForwardRefExoticComponent<Props$
|
|
5232
|
-
interface Props$
|
|
5379
|
+
declare const FileInput: React$1.ForwardRefExoticComponent<Props$W & React$1.RefAttributes<HTMLInputElement>>;
|
|
5380
|
+
interface Props$W {
|
|
5233
5381
|
/**
|
|
5234
5382
|
* Specify comma-separated list of allowed file extensions.
|
|
5235
5383
|
*/
|
|
@@ -5248,24 +5396,24 @@ interface Props$U {
|
|
|
5248
5396
|
onChange?: React$1.ChangeEventHandler<HTMLInputElement>;
|
|
5249
5397
|
}
|
|
5250
5398
|
|
|
5251
|
-
declare const NavigationDialogContent: React$1.ForwardRefExoticComponent<Props$
|
|
5252
|
-
interface Props$
|
|
5399
|
+
declare const NavigationDialogContent: React$1.ForwardRefExoticComponent<Props$V & React$1.RefAttributes<HTMLDivElement>>;
|
|
5400
|
+
interface Props$V {
|
|
5253
5401
|
/**
|
|
5254
5402
|
* Main content of the component.
|
|
5255
5403
|
*/
|
|
5256
5404
|
children?: React$1.ReactNode;
|
|
5257
5405
|
}
|
|
5258
5406
|
|
|
5259
|
-
declare const NavigationDialogFallbackContent: React$1.ForwardRefExoticComponent<Props$
|
|
5260
|
-
interface Props$
|
|
5407
|
+
declare const NavigationDialogFallbackContent: React$1.ForwardRefExoticComponent<Props$U & React$1.RefAttributes<HTMLDivElement>>;
|
|
5408
|
+
interface Props$U {
|
|
5261
5409
|
/**
|
|
5262
5410
|
* Main content of the component.
|
|
5263
5411
|
*/
|
|
5264
5412
|
children?: React$1.ReactNode;
|
|
5265
5413
|
}
|
|
5266
5414
|
|
|
5267
|
-
declare const NavigationDialogFooter: React$1.ForwardRefExoticComponent<Props$
|
|
5268
|
-
interface Props$
|
|
5415
|
+
declare const NavigationDialogFooter: React$1.ForwardRefExoticComponent<Props$T & React$1.RefAttributes<HTMLDivElement>>;
|
|
5416
|
+
interface Props$T {
|
|
5269
5417
|
/**
|
|
5270
5418
|
* Main content of the component.
|
|
5271
5419
|
*/
|
|
@@ -5276,8 +5424,8 @@ interface Props$R {
|
|
|
5276
5424
|
className?: string;
|
|
5277
5425
|
}
|
|
5278
5426
|
|
|
5279
|
-
declare const NavigationDialogHeader: React$1.ForwardRefExoticComponent<Props$
|
|
5280
|
-
interface Props$
|
|
5427
|
+
declare const NavigationDialogHeader: React$1.ForwardRefExoticComponent<Props$S & React$1.RefAttributes<HTMLDivElement>>;
|
|
5428
|
+
interface Props$S {
|
|
5281
5429
|
/**
|
|
5282
5430
|
* Optional action component rendered next to title.
|
|
5283
5431
|
*/
|
|
@@ -5300,8 +5448,8 @@ interface Props$Q {
|
|
|
5300
5448
|
titleId?: string;
|
|
5301
5449
|
}
|
|
5302
5450
|
|
|
5303
|
-
declare const NavigationDialogItem: React$1.ForwardRefExoticComponent<Props$
|
|
5304
|
-
interface Props$
|
|
5451
|
+
declare const NavigationDialogItem: React$1.ForwardRefExoticComponent<Props$R & React$1.RefAttributes<HTMLLIElement>>;
|
|
5452
|
+
interface Props$R {
|
|
5305
5453
|
/**
|
|
5306
5454
|
* Indicates if navbar item is active.
|
|
5307
5455
|
*/
|
|
@@ -5324,20 +5472,20 @@ interface Props$P {
|
|
|
5324
5472
|
onDoubleClick?: () => void;
|
|
5325
5473
|
}
|
|
5326
5474
|
|
|
5327
|
-
declare const NavigationDialogItemAction: React$1.FC<Props$
|
|
5328
|
-
interface Props$
|
|
5475
|
+
declare const NavigationDialogItemAction: React$1.FC<Props$Q>;
|
|
5476
|
+
interface Props$Q {
|
|
5329
5477
|
/**
|
|
5330
5478
|
* Optional button.
|
|
5331
5479
|
*/
|
|
5332
|
-
button?: React$1.ReactElement<Props$
|
|
5480
|
+
button?: React$1.ReactElement<Props$3B> | null;
|
|
5333
5481
|
/**
|
|
5334
5482
|
* Optional icon.
|
|
5335
5483
|
*/
|
|
5336
|
-
icon?: React$1.ReactElement<Props$
|
|
5484
|
+
icon?: React$1.ReactElement<Props$3E> | ((props: Props$3E) => React$1.ReactNode) | null;
|
|
5337
5485
|
}
|
|
5338
5486
|
|
|
5339
|
-
declare const NavigationDialogItemLabel: React$1.FC<Props$
|
|
5340
|
-
interface Props$
|
|
5487
|
+
declare const NavigationDialogItemLabel: React$1.FC<Props$P>;
|
|
5488
|
+
interface Props$P {
|
|
5341
5489
|
/**
|
|
5342
5490
|
* Main content of the component.
|
|
5343
5491
|
*/
|
|
@@ -5345,11 +5493,11 @@ interface Props$N {
|
|
|
5345
5493
|
/**
|
|
5346
5494
|
* Displayed icon.
|
|
5347
5495
|
*/
|
|
5348
|
-
icon?: React$1.ReactElement<Props$
|
|
5496
|
+
icon?: React$1.ReactElement<Props$3E>;
|
|
5349
5497
|
}
|
|
5350
5498
|
|
|
5351
|
-
declare const NavigationDialog: React$1.ForwardRefExoticComponent<Props$
|
|
5352
|
-
interface Props$
|
|
5499
|
+
declare const NavigationDialog: React$1.ForwardRefExoticComponent<Props$O & React$1.RefAttributes<HTMLDivElement>>;
|
|
5500
|
+
interface Props$O {
|
|
5353
5501
|
/**
|
|
5354
5502
|
* Main content of the component.
|
|
5355
5503
|
*/
|
|
@@ -5376,8 +5524,8 @@ interface Props$M {
|
|
|
5376
5524
|
open?: boolean;
|
|
5377
5525
|
}
|
|
5378
5526
|
|
|
5379
|
-
declare const CheckboxLabel: React$1.ForwardRefExoticComponent<Props$
|
|
5380
|
-
interface Props$
|
|
5527
|
+
declare const CheckboxLabel: React$1.ForwardRefExoticComponent<Props$N & React$1.RefAttributes<HTMLLabelElement>>;
|
|
5528
|
+
interface Props$N {
|
|
5381
5529
|
/**
|
|
5382
5530
|
* Main content of the component.
|
|
5383
5531
|
*/
|
|
@@ -5388,8 +5536,8 @@ interface Props$L {
|
|
|
5388
5536
|
labelFor?: string;
|
|
5389
5537
|
}
|
|
5390
5538
|
|
|
5391
|
-
declare const Checkbox: React$1.FC<Props$
|
|
5392
|
-
interface Props$
|
|
5539
|
+
declare const Checkbox: React$1.FC<Props$M>;
|
|
5540
|
+
interface Props$M {
|
|
5393
5541
|
/**
|
|
5394
5542
|
* Optional content of the component.
|
|
5395
5543
|
*/
|
|
@@ -5727,8 +5875,8 @@ declare function getClampedDimension(dimension: string): number;
|
|
|
5727
5875
|
*/
|
|
5728
5876
|
declare const getClampedDimensions: (width: string, height: string) => [number, number];
|
|
5729
5877
|
|
|
5730
|
-
declare const ImageEditorDimensionsInput: React$1.FC<Props$
|
|
5731
|
-
interface Props$
|
|
5878
|
+
declare const ImageEditorDimensionsInput: React$1.FC<Props$L>;
|
|
5879
|
+
interface Props$L {
|
|
5732
5880
|
/**
|
|
5733
5881
|
* Indicates whether input is disabled.
|
|
5734
5882
|
*/
|
|
@@ -5755,8 +5903,8 @@ interface Props$J {
|
|
|
5755
5903
|
value: string;
|
|
5756
5904
|
}
|
|
5757
5905
|
|
|
5758
|
-
declare const ImageEditorActions: React$1.FC<Props$
|
|
5759
|
-
interface Props$
|
|
5906
|
+
declare const ImageEditorActions: React$1.FC<Props$K>;
|
|
5907
|
+
interface Props$K {
|
|
5760
5908
|
/**
|
|
5761
5909
|
* Label of the back button.
|
|
5762
5910
|
*/
|
|
@@ -5771,26 +5919,26 @@ interface Props$I {
|
|
|
5771
5919
|
title?: string;
|
|
5772
5920
|
}
|
|
5773
5921
|
|
|
5774
|
-
declare const ImageEditorApplyButton: React$1.ForwardRefExoticComponent<Omit<Props$
|
|
5922
|
+
declare const ImageEditorApplyButton: React$1.ForwardRefExoticComponent<Omit<Props$3B, "onClick"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
5775
5923
|
|
|
5776
|
-
declare const ImageEditorButtonsGroup: React$1.ForwardRefExoticComponent<Props$
|
|
5777
|
-
interface Props$
|
|
5924
|
+
declare const ImageEditorButtonsGroup: React$1.ForwardRefExoticComponent<Props$J & React$1.RefAttributes<HTMLDivElement>>;
|
|
5925
|
+
interface Props$J {
|
|
5778
5926
|
/**
|
|
5779
5927
|
* Main content of the component.
|
|
5780
5928
|
*/
|
|
5781
5929
|
children?: React$1.ReactNode;
|
|
5782
5930
|
}
|
|
5783
5931
|
|
|
5784
|
-
declare const ImageEditorButtonsRow: React$1.ForwardRefExoticComponent<Props$
|
|
5785
|
-
interface Props$
|
|
5932
|
+
declare const ImageEditorButtonsRow: React$1.ForwardRefExoticComponent<Props$I & React$1.RefAttributes<HTMLDivElement>>;
|
|
5933
|
+
interface Props$I {
|
|
5786
5934
|
/**
|
|
5787
5935
|
* Main content of the component.
|
|
5788
5936
|
*/
|
|
5789
5937
|
children?: React$1.ReactNode;
|
|
5790
5938
|
}
|
|
5791
5939
|
|
|
5792
|
-
declare const ImageEditorCanvas: React$1.ForwardRefExoticComponent<Props$
|
|
5793
|
-
interface Props$
|
|
5940
|
+
declare const ImageEditorCanvas: React$1.ForwardRefExoticComponent<Props$H & React$1.RefAttributes<HTMLDivElement>>;
|
|
5941
|
+
interface Props$H {
|
|
5794
5942
|
/**
|
|
5795
5943
|
* Alternative text description of the image.
|
|
5796
5944
|
*/
|
|
@@ -5801,16 +5949,16 @@ interface Props$F {
|
|
|
5801
5949
|
loadingLabel?: string;
|
|
5802
5950
|
}
|
|
5803
5951
|
|
|
5804
|
-
declare const ImageEditorContent: React$1.ForwardRefExoticComponent<Props$
|
|
5805
|
-
interface Props$
|
|
5952
|
+
declare const ImageEditorContent: React$1.ForwardRefExoticComponent<Props$G & React$1.RefAttributes<HTMLDivElement>>;
|
|
5953
|
+
interface Props$G {
|
|
5806
5954
|
/**
|
|
5807
5955
|
* Main content of the component.
|
|
5808
5956
|
*/
|
|
5809
5957
|
children?: React$1.ReactNode;
|
|
5810
5958
|
}
|
|
5811
5959
|
|
|
5812
|
-
declare const ImageEditorCropBoxDimensions: React$1.ForwardRefExoticComponent<Props$
|
|
5813
|
-
interface Props$
|
|
5960
|
+
declare const ImageEditorCropBoxDimensions: React$1.ForwardRefExoticComponent<Props$F & React$1.RefAttributes<HTMLDivElement>>;
|
|
5961
|
+
interface Props$F {
|
|
5814
5962
|
/**
|
|
5815
5963
|
* Label displayed above the height input.
|
|
5816
5964
|
*/
|
|
@@ -5829,8 +5977,8 @@ interface Props$D {
|
|
|
5829
5977
|
widthLabel?: string;
|
|
5830
5978
|
}
|
|
5831
5979
|
|
|
5832
|
-
declare const ImageEditorCropCard: React$1.ForwardRefExoticComponent<Props$
|
|
5833
|
-
interface Props$
|
|
5980
|
+
declare const ImageEditorCropCard: React$1.ForwardRefExoticComponent<Props$E & React$1.RefAttributes<HTMLDivElement>>;
|
|
5981
|
+
interface Props$E {
|
|
5834
5982
|
/**
|
|
5835
5983
|
* Aspect ratio to set on the crop box.
|
|
5836
5984
|
*/
|
|
@@ -5846,11 +5994,11 @@ interface Props$C {
|
|
|
5846
5994
|
/**
|
|
5847
5995
|
* Icon to display.
|
|
5848
5996
|
*/
|
|
5849
|
-
icon?: React$1.ReactElement<Props$
|
|
5997
|
+
icon?: React$1.ReactElement<Props$3E>;
|
|
5850
5998
|
}
|
|
5851
5999
|
|
|
5852
|
-
declare const ImageEditorCropCardFreeform: React$1.ForwardRefExoticComponent<Props$
|
|
5853
|
-
interface Props$
|
|
6000
|
+
declare const ImageEditorCropCardFreeform: React$1.ForwardRefExoticComponent<Props$D & React$1.RefAttributes<HTMLDivElement>>;
|
|
6001
|
+
interface Props$D {
|
|
5854
6002
|
/**
|
|
5855
6003
|
* Main content of the component.
|
|
5856
6004
|
*/
|
|
@@ -5858,19 +6006,19 @@ interface Props$B {
|
|
|
5858
6006
|
/**
|
|
5859
6007
|
* Icon to display
|
|
5860
6008
|
*/
|
|
5861
|
-
icon?: React$1.ReactElement<Props$
|
|
6009
|
+
icon?: React$1.ReactElement<Props$3E>;
|
|
5862
6010
|
}
|
|
5863
6011
|
|
|
5864
|
-
declare const ImageEditorCropCardList: React$1.ForwardRefExoticComponent<Props$
|
|
5865
|
-
interface Props$
|
|
6012
|
+
declare const ImageEditorCropCardList: React$1.ForwardRefExoticComponent<Props$C & React$1.RefAttributes<HTMLDivElement>>;
|
|
6013
|
+
interface Props$C {
|
|
5866
6014
|
/**
|
|
5867
6015
|
* Main content of the component.
|
|
5868
6016
|
*/
|
|
5869
6017
|
children?: React$1.ReactNode;
|
|
5870
6018
|
}
|
|
5871
6019
|
|
|
5872
|
-
declare const ImageEditorCropCardOriginal: React$1.ForwardRefExoticComponent<Props$
|
|
5873
|
-
interface Props$
|
|
6020
|
+
declare const ImageEditorCropCardOriginal: React$1.ForwardRefExoticComponent<Props$B & React$1.RefAttributes<HTMLDivElement>>;
|
|
6021
|
+
interface Props$B {
|
|
5874
6022
|
/**
|
|
5875
6023
|
* Main content of the component.
|
|
5876
6024
|
*/
|
|
@@ -5878,11 +6026,11 @@ interface Props$z {
|
|
|
5878
6026
|
/**
|
|
5879
6027
|
* Icon to display
|
|
5880
6028
|
*/
|
|
5881
|
-
icon?: React$1.ReactElement<Props$
|
|
6029
|
+
icon?: React$1.ReactElement<Props$3E>;
|
|
5882
6030
|
}
|
|
5883
6031
|
|
|
5884
|
-
declare const ImageEditorDemoLabel: React$1.FC<Props$
|
|
5885
|
-
interface Props$
|
|
6032
|
+
declare const ImageEditorDemoLabel: React$1.FC<Props$A>;
|
|
6033
|
+
interface Props$A {
|
|
5886
6034
|
/**
|
|
5887
6035
|
* Renders link content
|
|
5888
6036
|
*/
|
|
@@ -5893,28 +6041,28 @@ interface Props$y {
|
|
|
5893
6041
|
creditHref?: string;
|
|
5894
6042
|
}
|
|
5895
6043
|
|
|
5896
|
-
declare const ImageEditorFlipHorizontalButton: React$1.FC<Omit<Props$
|
|
6044
|
+
declare const ImageEditorFlipHorizontalButton: React$1.FC<Omit<Props$3B, 'children' | 'onClick'>>;
|
|
5897
6045
|
|
|
5898
|
-
declare const ImageEditorFlipVerticalButton: React$1.FC<Omit<Props$
|
|
6046
|
+
declare const ImageEditorFlipVerticalButton: React$1.FC<Omit<Props$3B, 'children' | 'onClick'>>;
|
|
5899
6047
|
|
|
5900
|
-
declare const ImageEditorLoader: React$1.ForwardRefExoticComponent<Props$
|
|
5901
|
-
interface Props$
|
|
6048
|
+
declare const ImageEditorLoader: React$1.ForwardRefExoticComponent<Props$z & React$1.RefAttributes<HTMLDivElement>>;
|
|
6049
|
+
interface Props$z {
|
|
5902
6050
|
/**
|
|
5903
6051
|
* Main content of the component.
|
|
5904
6052
|
*/
|
|
5905
6053
|
children?: React$1.ReactNode;
|
|
5906
6054
|
}
|
|
5907
6055
|
|
|
5908
|
-
declare const ImageEditorMenu: React$1.ForwardRefExoticComponent<Props$
|
|
5909
|
-
interface Props$
|
|
6056
|
+
declare const ImageEditorMenu: React$1.ForwardRefExoticComponent<Props$y & React$1.RefAttributes<HTMLDivElement>>;
|
|
6057
|
+
interface Props$y {
|
|
5910
6058
|
/**
|
|
5911
6059
|
* Main content of the component.
|
|
5912
6060
|
*/
|
|
5913
6061
|
children?: React$1.ReactNode;
|
|
5914
6062
|
}
|
|
5915
6063
|
|
|
5916
|
-
declare const ImageEditorMenuContainer: React$1.ForwardRefExoticComponent<Props$
|
|
5917
|
-
interface Props$
|
|
6064
|
+
declare const ImageEditorMenuContainer: React$1.ForwardRefExoticComponent<Props$x & React$1.RefAttributes<HTMLDivElement>>;
|
|
6065
|
+
interface Props$x {
|
|
5918
6066
|
/**
|
|
5919
6067
|
* Main content of the component.
|
|
5920
6068
|
*/
|
|
@@ -5929,8 +6077,8 @@ interface Props$v {
|
|
|
5929
6077
|
muted?: boolean;
|
|
5930
6078
|
}
|
|
5931
6079
|
|
|
5932
|
-
declare const ImageEditorMenuSection: React$1.ForwardRefExoticComponent<Props$
|
|
5933
|
-
interface Props$
|
|
6080
|
+
declare const ImageEditorMenuSection: React$1.ForwardRefExoticComponent<Props$w & React$1.RefAttributes<HTMLDivElement>>;
|
|
6081
|
+
interface Props$w {
|
|
5934
6082
|
/**
|
|
5935
6083
|
* Main content of the component.
|
|
5936
6084
|
*/
|
|
@@ -5941,8 +6089,8 @@ interface Props$u {
|
|
|
5941
6089
|
title?: string;
|
|
5942
6090
|
}
|
|
5943
6091
|
|
|
5944
|
-
declare const ImageEditorMenuSubSection: React$1.ForwardRefExoticComponent<Props$
|
|
5945
|
-
interface Props$
|
|
6092
|
+
declare const ImageEditorMenuSubSection: React$1.ForwardRefExoticComponent<Props$v & React$1.RefAttributes<HTMLDivElement>>;
|
|
6093
|
+
interface Props$v {
|
|
5946
6094
|
/**
|
|
5947
6095
|
* Main content of the component.
|
|
5948
6096
|
*/
|
|
@@ -5957,8 +6105,8 @@ interface Props$t {
|
|
|
5957
6105
|
title?: string;
|
|
5958
6106
|
}
|
|
5959
6107
|
|
|
5960
|
-
declare const ImageEditorPresetSelect: React$1.FC<Props$
|
|
5961
|
-
interface Props$
|
|
6108
|
+
declare const ImageEditorPresetSelect: React$1.FC<Props$u>;
|
|
6109
|
+
interface Props$u {
|
|
5962
6110
|
/**
|
|
5963
6111
|
* Aria label for clear button.
|
|
5964
6112
|
*/
|
|
@@ -5973,10 +6121,10 @@ interface Props$s {
|
|
|
5973
6121
|
placeholder?: string;
|
|
5974
6122
|
}
|
|
5975
6123
|
|
|
5976
|
-
declare const ImageEditorResetButton: React$1.ForwardRefExoticComponent<Omit<Props$
|
|
6124
|
+
declare const ImageEditorResetButton: React$1.ForwardRefExoticComponent<Omit<Props$3B, "onClick"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
5977
6125
|
|
|
5978
|
-
declare const ImageEditorResizeDimensions: React$1.ForwardRefExoticComponent<Props$
|
|
5979
|
-
interface Props$
|
|
6126
|
+
declare const ImageEditorResizeDimensions: React$1.ForwardRefExoticComponent<Props$t & React$1.RefAttributes<HTMLDivElement>>;
|
|
6127
|
+
interface Props$t {
|
|
5980
6128
|
/**
|
|
5981
6129
|
* Error message.
|
|
5982
6130
|
*/
|
|
@@ -5991,12 +6139,12 @@ interface Props$r {
|
|
|
5991
6139
|
widthInput: React$1.ReactNode;
|
|
5992
6140
|
}
|
|
5993
6141
|
|
|
5994
|
-
declare const ImageEditorRotateLeftButton: React$1.FC<Omit<Props$
|
|
6142
|
+
declare const ImageEditorRotateLeftButton: React$1.FC<Omit<Props$3B, 'children' | 'onClick'>>;
|
|
5995
6143
|
|
|
5996
|
-
declare const ImageEditorRotateRightButton: React$1.FC<Omit<Props$
|
|
6144
|
+
declare const ImageEditorRotateRightButton: React$1.FC<Omit<Props$3B, 'children' | 'onClick'>>;
|
|
5997
6145
|
|
|
5998
|
-
declare const ImageEditorSaveDialog: React$1.ForwardRefExoticComponent<Props$
|
|
5999
|
-
interface Props$
|
|
6146
|
+
declare const ImageEditorSaveDialog: React$1.ForwardRefExoticComponent<Props$s & React$1.RefAttributes<HTMLDivElement>>;
|
|
6147
|
+
interface Props$s {
|
|
6000
6148
|
/**
|
|
6001
6149
|
* Main content of the component.
|
|
6002
6150
|
*/
|
|
@@ -6007,16 +6155,16 @@ interface Props$q {
|
|
|
6007
6155
|
labelledBy?: string;
|
|
6008
6156
|
}
|
|
6009
6157
|
|
|
6010
|
-
declare const ImageEditorSaveDialogActions: React$1.ForwardRefExoticComponent<Props$
|
|
6011
|
-
interface Props$
|
|
6158
|
+
declare const ImageEditorSaveDialogActions: React$1.ForwardRefExoticComponent<Props$r & React$1.RefAttributes<HTMLDivElement>>;
|
|
6159
|
+
interface Props$r {
|
|
6012
6160
|
/**
|
|
6013
6161
|
* Main content of the component.
|
|
6014
6162
|
*/
|
|
6015
6163
|
children: React$1.ReactNode;
|
|
6016
6164
|
}
|
|
6017
6165
|
|
|
6018
|
-
declare const ImageEditorSaveDialogCanvas: React$1.ForwardRefExoticComponent<Props$
|
|
6019
|
-
interface Props$
|
|
6166
|
+
declare const ImageEditorSaveDialogCanvas: React$1.ForwardRefExoticComponent<Props$q & React$1.RefAttributes<HTMLDivElement>>;
|
|
6167
|
+
interface Props$q {
|
|
6020
6168
|
/**
|
|
6021
6169
|
* Main content of the component.
|
|
6022
6170
|
*/
|
|
@@ -6027,10 +6175,10 @@ interface Props$o {
|
|
|
6027
6175
|
title?: string;
|
|
6028
6176
|
}
|
|
6029
6177
|
|
|
6030
|
-
declare const ImageEditorPreviewCloseButton: React$1.ForwardRefExoticComponent<Omit<Props$
|
|
6178
|
+
declare const ImageEditorPreviewCloseButton: React$1.ForwardRefExoticComponent<Omit<Props$3B, "onClick"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
6031
6179
|
|
|
6032
|
-
declare const ImageEditorSaveDialogHeader: React$1.ForwardRefExoticComponent<Props$
|
|
6033
|
-
interface Props$
|
|
6180
|
+
declare const ImageEditorSaveDialogHeader: React$1.ForwardRefExoticComponent<Props$p & React$1.RefAttributes<HTMLDivElement>>;
|
|
6181
|
+
interface Props$p {
|
|
6034
6182
|
/**
|
|
6035
6183
|
* Main content of the component.
|
|
6036
6184
|
*/
|
|
@@ -6045,28 +6193,28 @@ interface Props$n {
|
|
|
6045
6193
|
titleId?: string;
|
|
6046
6194
|
}
|
|
6047
6195
|
|
|
6048
|
-
declare const ImageEditorSaveDialogImage: React$1.ForwardRefExoticComponent<Props$
|
|
6049
|
-
interface Props$
|
|
6196
|
+
declare const ImageEditorSaveDialogImage: React$1.ForwardRefExoticComponent<Props$o & React$1.RefAttributes<HTMLDivElement>>;
|
|
6197
|
+
interface Props$o {
|
|
6050
6198
|
/**
|
|
6051
6199
|
* Alternative text description of the preview image.
|
|
6052
6200
|
*/
|
|
6053
6201
|
alt: string;
|
|
6054
6202
|
}
|
|
6055
6203
|
|
|
6056
|
-
declare const ImageEditorSaveDialogInfo: React$1.ForwardRefExoticComponent<Props$
|
|
6204
|
+
declare const ImageEditorSaveDialogInfo: React$1.ForwardRefExoticComponent<Props$1z & React$1.RefAttributes<HTMLFormElement>>;
|
|
6057
6205
|
|
|
6058
|
-
declare const ImageEditorSaveDialogPreview: React$1.ForwardRefExoticComponent<Props$
|
|
6059
|
-
interface Props$
|
|
6206
|
+
declare const ImageEditorSaveDialogPreview: React$1.ForwardRefExoticComponent<Props$n & React$1.RefAttributes<HTMLDivElement>>;
|
|
6207
|
+
interface Props$n {
|
|
6060
6208
|
/**
|
|
6061
6209
|
* Main content of the component.
|
|
6062
6210
|
*/
|
|
6063
6211
|
children?: React$1.ReactNode;
|
|
6064
6212
|
}
|
|
6065
6213
|
|
|
6066
|
-
declare const ImageEditorSaveDialogSaveButton: React$1.ForwardRefExoticComponent<Props$
|
|
6214
|
+
declare const ImageEditorSaveDialogSaveButton: React$1.ForwardRefExoticComponent<Props$1c & React$1.RefAttributes<HTMLButtonElement>>;
|
|
6067
6215
|
|
|
6068
|
-
declare const ImageEditorSaveDialogSection: React$1.ForwardRefExoticComponent<Props$
|
|
6069
|
-
interface Props$
|
|
6216
|
+
declare const ImageEditorSaveDialogSection: React$1.ForwardRefExoticComponent<Props$m & React$1.RefAttributes<HTMLDivElement>>;
|
|
6217
|
+
interface Props$m {
|
|
6070
6218
|
/**
|
|
6071
6219
|
* Main content of the component.
|
|
6072
6220
|
*/
|
|
@@ -6081,15 +6229,15 @@ interface Props$k {
|
|
|
6081
6229
|
title?: string;
|
|
6082
6230
|
}
|
|
6083
6231
|
|
|
6084
|
-
declare const ImageEditorToolbar: React$1.ForwardRefExoticComponent<Props$
|
|
6085
|
-
interface Props$
|
|
6232
|
+
declare const ImageEditorToolbar: React$1.ForwardRefExoticComponent<Props$l & React$1.RefAttributes<HTMLDivElement>>;
|
|
6233
|
+
interface Props$l {
|
|
6086
6234
|
/**
|
|
6087
6235
|
* Main content of the component.
|
|
6088
6236
|
*/
|
|
6089
6237
|
children: React$1.ReactNode;
|
|
6090
6238
|
}
|
|
6091
6239
|
|
|
6092
|
-
interface Props$
|
|
6240
|
+
interface Props$k {
|
|
6093
6241
|
/**
|
|
6094
6242
|
* Main button content.
|
|
6095
6243
|
*/
|
|
@@ -6104,46 +6252,46 @@ interface Props$i {
|
|
|
6104
6252
|
onClick?: React$1.MouseEventHandler;
|
|
6105
6253
|
}
|
|
6106
6254
|
|
|
6107
|
-
declare const ImageEditorToolbarFlipHorizontalButton: React$1.FC<Omit<Props$
|
|
6255
|
+
declare const ImageEditorToolbarFlipHorizontalButton: React$1.FC<Omit<Props$k, 'children' | 'onClick'>>;
|
|
6108
6256
|
|
|
6109
|
-
declare const ImageEditorToolbarFlipVerticalButton: React$1.FC<Omit<Props$
|
|
6257
|
+
declare const ImageEditorToolbarFlipVerticalButton: React$1.FC<Omit<Props$k, 'children' | 'onClick'>>;
|
|
6110
6258
|
|
|
6111
6259
|
declare const ImageEditorToolbarImageSize: React$1.ForwardRefExoticComponent<React$1.RefAttributes<HTMLDivElement>>;
|
|
6112
6260
|
|
|
6113
|
-
declare const ImageEditorToolbarRotateLeftButton: React$1.FC<Omit<Props$
|
|
6261
|
+
declare const ImageEditorToolbarRotateLeftButton: React$1.FC<Omit<Props$k, 'children' | 'onClick'>>;
|
|
6114
6262
|
|
|
6115
|
-
declare const ImageEditorToolbarRotateRightButton: React$1.FC<Omit<Props$
|
|
6263
|
+
declare const ImageEditorToolbarRotateRightButton: React$1.FC<Omit<Props$k, 'children' | 'onClick'>>;
|
|
6116
6264
|
|
|
6117
|
-
declare const ImageEditorToolbarSection: React$1.ForwardRefExoticComponent<Props$
|
|
6118
|
-
interface Props$
|
|
6265
|
+
declare const ImageEditorToolbarSection: React$1.ForwardRefExoticComponent<Props$j & React$1.RefAttributes<HTMLDivElement>>;
|
|
6266
|
+
interface Props$j {
|
|
6119
6267
|
/**
|
|
6120
6268
|
* Main content of the component.
|
|
6121
6269
|
*/
|
|
6122
6270
|
children: React$1.ReactNode;
|
|
6123
6271
|
}
|
|
6124
6272
|
|
|
6125
|
-
declare const ImageEditorToolbarZoomInButton: React$1.FC<Omit<Props$
|
|
6273
|
+
declare const ImageEditorToolbarZoomInButton: React$1.FC<Omit<Props$k, 'children' | 'onClick'>>;
|
|
6126
6274
|
|
|
6127
|
-
declare const ImageEditorToolbarZoomOutButton: React$1.FC<Omit<Props$
|
|
6275
|
+
declare const ImageEditorToolbarZoomOutButton: React$1.FC<Omit<Props$k, 'children' | 'onClick'>>;
|
|
6128
6276
|
|
|
6129
|
-
declare const ImageEditorToolbarZoomValue: React$1.ForwardRefExoticComponent<Props$
|
|
6130
|
-
interface Props$
|
|
6277
|
+
declare const ImageEditorToolbarZoomValue: React$1.ForwardRefExoticComponent<Props$i & React$1.RefAttributes<HTMLButtonElement>>;
|
|
6278
|
+
interface Props$i {
|
|
6131
6279
|
/**
|
|
6132
6280
|
* Optional aria-label for the button.
|
|
6133
6281
|
*/
|
|
6134
6282
|
label: string;
|
|
6135
6283
|
}
|
|
6136
6284
|
|
|
6137
|
-
declare const ImageEditorWorkspace: React$1.ForwardRefExoticComponent<Props$
|
|
6138
|
-
interface Props$
|
|
6285
|
+
declare const ImageEditorWorkspace: React$1.ForwardRefExoticComponent<Props$h & React$1.RefAttributes<HTMLDivElement>>;
|
|
6286
|
+
interface Props$h {
|
|
6139
6287
|
/**
|
|
6140
6288
|
* Main content of the component.
|
|
6141
6289
|
*/
|
|
6142
6290
|
children?: React$1.ReactNode;
|
|
6143
6291
|
}
|
|
6144
6292
|
|
|
6145
|
-
declare const ImageEditor: React$1.ForwardRefExoticComponent<Props$
|
|
6146
|
-
interface Props$
|
|
6293
|
+
declare const ImageEditor: React$1.ForwardRefExoticComponent<Props$g & React$1.RefAttributes<HTMLDivElement>>;
|
|
6294
|
+
interface Props$g {
|
|
6147
6295
|
/**
|
|
6148
6296
|
* Main content of the component.
|
|
6149
6297
|
*/
|
|
@@ -6174,8 +6322,8 @@ interface Props$e {
|
|
|
6174
6322
|
originalImageSrc?: string;
|
|
6175
6323
|
}
|
|
6176
6324
|
|
|
6177
|
-
declare const Textarea: React$1.ForwardRefExoticComponent<Props$
|
|
6178
|
-
interface Props$
|
|
6325
|
+
declare const Textarea: React$1.ForwardRefExoticComponent<Props$f & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
6326
|
+
interface Props$f {
|
|
6179
6327
|
/**
|
|
6180
6328
|
* Input's class name.
|
|
6181
6329
|
*/
|
|
@@ -6244,8 +6392,8 @@ declare const TextFieldInput: React$1.ForwardRefExoticComponent<React$1.InputHTM
|
|
|
6244
6392
|
type TextFieldSize = 'md' | 'base';
|
|
6245
6393
|
type TextFieldVariant = 'outlined' | 'underlined';
|
|
6246
6394
|
|
|
6247
|
-
declare const TextField: React$1.ForwardRefExoticComponent<Props$
|
|
6248
|
-
interface Props$
|
|
6395
|
+
declare const TextField: React$1.ForwardRefExoticComponent<Props$e & React$1.RefAttributes<HTMLDivElement>>;
|
|
6396
|
+
interface Props$e {
|
|
6249
6397
|
/**
|
|
6250
6398
|
* Text field's adornment.
|
|
6251
6399
|
*/
|
|
@@ -6280,8 +6428,8 @@ interface Props$c {
|
|
|
6280
6428
|
variant?: TextFieldVariant;
|
|
6281
6429
|
}
|
|
6282
6430
|
|
|
6283
|
-
declare const Pill: React$1.FC<Props$
|
|
6284
|
-
interface Props$
|
|
6431
|
+
declare const Pill: React$1.FC<Props$d>;
|
|
6432
|
+
interface Props$d {
|
|
6285
6433
|
/**
|
|
6286
6434
|
* Whether component is active.
|
|
6287
6435
|
*/
|
|
@@ -6297,7 +6445,7 @@ interface Props$b {
|
|
|
6297
6445
|
/**
|
|
6298
6446
|
* Icon to display.
|
|
6299
6447
|
*/
|
|
6300
|
-
icon?: React$1.ReactElement<Props$
|
|
6448
|
+
icon?: React$1.ReactElement<Props$3E>;
|
|
6301
6449
|
/**
|
|
6302
6450
|
* Unique ID of a tab.
|
|
6303
6451
|
*/
|
|
@@ -6308,16 +6456,16 @@ interface Props$b {
|
|
|
6308
6456
|
onClick?: React$1.MouseEventHandler<HTMLButtonElement>;
|
|
6309
6457
|
}
|
|
6310
6458
|
|
|
6311
|
-
declare const Pills: React$1.FC<Props$
|
|
6312
|
-
interface Props$
|
|
6459
|
+
declare const Pills: React$1.FC<Props$c>;
|
|
6460
|
+
interface Props$c {
|
|
6313
6461
|
/**
|
|
6314
6462
|
* Main content of the component.
|
|
6315
6463
|
*/
|
|
6316
6464
|
children: React$1.ReactNode;
|
|
6317
6465
|
}
|
|
6318
6466
|
|
|
6319
|
-
declare const PdfViewer: React$1.FC<Props$
|
|
6320
|
-
interface Props$
|
|
6467
|
+
declare const PdfViewer: React$1.FC<Props$b>;
|
|
6468
|
+
interface Props$b {
|
|
6321
6469
|
/**
|
|
6322
6470
|
* Location of data source.
|
|
6323
6471
|
*/
|
|
@@ -6328,20 +6476,24 @@ interface Props$9 {
|
|
|
6328
6476
|
title: string;
|
|
6329
6477
|
}
|
|
6330
6478
|
|
|
6331
|
-
declare const TableBody: React$1.FC<Props$
|
|
6332
|
-
interface Props$
|
|
6479
|
+
declare const TableBody: React$1.FC<Props$a>;
|
|
6480
|
+
interface Props$a {
|
|
6333
6481
|
/**
|
|
6334
6482
|
* Main content of the component.
|
|
6335
6483
|
*/
|
|
6336
6484
|
children: React$1.ReactNode;
|
|
6337
6485
|
}
|
|
6338
6486
|
|
|
6339
|
-
declare const TableCell: React$1.FC<Props$
|
|
6340
|
-
interface Props$
|
|
6487
|
+
declare const TableCell: React$1.FC<Props$9>;
|
|
6488
|
+
interface Props$9 {
|
|
6341
6489
|
/**
|
|
6342
6490
|
* Text alignment.
|
|
6343
6491
|
*/
|
|
6344
6492
|
align?: 'left' | 'right';
|
|
6493
|
+
/**
|
|
6494
|
+
* Causes table cell to shrink.
|
|
6495
|
+
*/
|
|
6496
|
+
shrink?: boolean;
|
|
6345
6497
|
/**
|
|
6346
6498
|
* Main content of the component.
|
|
6347
6499
|
*/
|
|
@@ -6350,26 +6502,46 @@ interface Props$7 {
|
|
|
6350
6502
|
* Optional root class name.
|
|
6351
6503
|
*/
|
|
6352
6504
|
className?: string;
|
|
6505
|
+
/**
|
|
6506
|
+
* Optionally sets preferred column minimum width in relation to entire table.
|
|
6507
|
+
*/
|
|
6508
|
+
minWidth?: string;
|
|
6353
6509
|
}
|
|
6354
6510
|
|
|
6355
|
-
declare const TableContainer: React$1.FC<Props$
|
|
6356
|
-
interface Props$
|
|
6511
|
+
declare const TableContainer: React$1.FC<Props$8>;
|
|
6512
|
+
interface Props$8 {
|
|
6357
6513
|
/**
|
|
6358
6514
|
* Main content of the component.
|
|
6359
6515
|
*/
|
|
6360
6516
|
children: React$1.ReactNode;
|
|
6361
6517
|
}
|
|
6362
6518
|
|
|
6363
|
-
declare const
|
|
6364
|
-
interface Props$
|
|
6519
|
+
declare const TableDatetimeCell: React$1.FC<Props$7>;
|
|
6520
|
+
interface Props$7 {
|
|
6521
|
+
/**
|
|
6522
|
+
* Text alignment.
|
|
6523
|
+
*/
|
|
6524
|
+
align?: 'left' | 'right';
|
|
6365
6525
|
/**
|
|
6366
6526
|
* Main content of the component.
|
|
6367
6527
|
*/
|
|
6368
6528
|
children: React$1.ReactNode;
|
|
6529
|
+
/**
|
|
6530
|
+
* Optional root class name.
|
|
6531
|
+
*/
|
|
6532
|
+
className?: string;
|
|
6369
6533
|
}
|
|
6370
6534
|
|
|
6371
|
-
declare const
|
|
6372
|
-
interface Props$
|
|
6535
|
+
declare const TableHead: React$1.FC<Props$6>;
|
|
6536
|
+
interface Props$6 {
|
|
6537
|
+
/**
|
|
6538
|
+
* Main content of the component.
|
|
6539
|
+
*/
|
|
6540
|
+
children: React$1.ReactNode;
|
|
6541
|
+
}
|
|
6542
|
+
|
|
6543
|
+
declare const TableHeader: React$1.FC<Props$5>;
|
|
6544
|
+
interface Props$5 {
|
|
6373
6545
|
/**
|
|
6374
6546
|
* Text alignment.
|
|
6375
6547
|
*/
|
|
@@ -6384,6 +6556,50 @@ interface Props$4 {
|
|
|
6384
6556
|
className?: string;
|
|
6385
6557
|
}
|
|
6386
6558
|
|
|
6559
|
+
declare const TablePagination: React$1.FC<Props$4>;
|
|
6560
|
+
interface Props$4 {
|
|
6561
|
+
/**
|
|
6562
|
+
* Disables interaction with pagination.
|
|
6563
|
+
*/
|
|
6564
|
+
disabled?: boolean;
|
|
6565
|
+
/**
|
|
6566
|
+
* Aria label for input element.
|
|
6567
|
+
*/
|
|
6568
|
+
enterPageLabel: string;
|
|
6569
|
+
/**
|
|
6570
|
+
* Total number of pages.
|
|
6571
|
+
*/
|
|
6572
|
+
totalPages: number;
|
|
6573
|
+
/**
|
|
6574
|
+
* Label indicating total number of pages.
|
|
6575
|
+
*/
|
|
6576
|
+
totalPagesLabel: string;
|
|
6577
|
+
/**
|
|
6578
|
+
* Callback invoked when page is changed.
|
|
6579
|
+
*/
|
|
6580
|
+
onPageChange: (page: number) => void;
|
|
6581
|
+
/**
|
|
6582
|
+
* Currently selected page.
|
|
6583
|
+
*/
|
|
6584
|
+
page: number;
|
|
6585
|
+
/**
|
|
6586
|
+
* Label for the first page button.
|
|
6587
|
+
*/
|
|
6588
|
+
firstPageLabel?: string;
|
|
6589
|
+
/**
|
|
6590
|
+
* Label for the last page button.
|
|
6591
|
+
*/
|
|
6592
|
+
lastPageLabel?: string;
|
|
6593
|
+
/**
|
|
6594
|
+
* Label for the next page button.
|
|
6595
|
+
*/
|
|
6596
|
+
nextPageLabel?: string;
|
|
6597
|
+
/**
|
|
6598
|
+
* Label for the previous page button.
|
|
6599
|
+
*/
|
|
6600
|
+
prevPageLabel?: string;
|
|
6601
|
+
}
|
|
6602
|
+
|
|
6387
6603
|
declare const TableRow: React$1.FC<Props$3>;
|
|
6388
6604
|
interface Props$3 {
|
|
6389
6605
|
/**
|
|
@@ -6398,6 +6614,10 @@ interface Props$2 {
|
|
|
6398
6614
|
* Main content of the component.
|
|
6399
6615
|
*/
|
|
6400
6616
|
children: React$1.ReactNode;
|
|
6617
|
+
/**
|
|
6618
|
+
* Side content of the component.
|
|
6619
|
+
*/
|
|
6620
|
+
side?: React$1.ReactNode;
|
|
6401
6621
|
}
|
|
6402
6622
|
|
|
6403
6623
|
declare const Table: React$1.FC<Props$1>;
|
|
@@ -6410,6 +6630,14 @@ interface Props$1 {
|
|
|
6410
6630
|
* Optional root class name.
|
|
6411
6631
|
*/
|
|
6412
6632
|
className?: string;
|
|
6633
|
+
/**
|
|
6634
|
+
* Optional footer under the table component.
|
|
6635
|
+
*/
|
|
6636
|
+
footer?: React$1.ReactNode;
|
|
6637
|
+
/**
|
|
6638
|
+
* Determines if table should have a border surrounding it.
|
|
6639
|
+
*/
|
|
6640
|
+
outlined?: boolean;
|
|
6413
6641
|
}
|
|
6414
6642
|
|
|
6415
6643
|
declare const Banner: React$1.FC<Props>;
|
|
@@ -6436,5 +6664,5 @@ interface Props {
|
|
|
6436
6664
|
closeLabel?: string;
|
|
6437
6665
|
}
|
|
6438
6666
|
|
|
6439
|
-
export { Avatar, Banner, Bottombar, Button, ButtonGroup, ButtonRow, COLLAPSE_THRESHOLD, CONTAINER_QUERY_BREAKPOINTS, CROPPER_FLIP_FACTOR, CROPPER_FULL_ROTATION, CROPPER_INIT_SCALE, CROPPER_MIN_ZOOM_VALUE, CROPPER_ROTATION_ANGLE, CROPPER_ZOOM_FACTOR, CROPPER_ZOOM_STEP, CROPPER_ZOOM_STEP_FINE, CROPPER_ZOOM_THRESHOLD, Checkbox, CheckboxLabel, CircularLoader, ContainerQuery, ContainerQueryProvider, CopyButton, CopyableInput, CopyableLabel, CoreUploaderErrorPanel, CoreUploaderProgressPanel, CoreUploaderView, CoreUploaderWorkingArea, Dialog, DialogActions, DialogColumn, DialogFooter, DialogHeader, DialogNext, DialogNextCloseButton, DialogNextColumn, DialogNextContent, DialogNextFooter, DialogNextHeader, DialogNextSeparator, DialogNextTitle, DialogProgressHeader, DialogRow, DialogSection, DocIcon, Drawer, DrawerActions, DrawerContent, DrawerHeader, DrawerSection, Ellipsis, EmptyView, EmptyViewLabel, FileInput, FilePreview, FilePreviewActions, FilePreviewColumn, FilePreviewContent, FilePreviewHoverable, FilePreviewNavButton, FilePreviewTooltip, Fixed, FixedContext, FixedProvider, Form, FormFeedback, FormGroup, FormGroupColumn, FormGroupInfo, FormInputLabel, Gallery, GalleryFigure, GalleryItem, Icon, ImageEditor, ImageEditorActions, ImageEditorApplyButton, ImageEditorButtonsGroup, ImageEditorButtonsRow, ImageEditorCanvas, ImageEditorContent, ImageEditorContext, ImageEditorCropBoxDimensions, ImageEditorCropCard, ImageEditorCropCardFreeform, ImageEditorCropCardList, ImageEditorCropCardOriginal, ImageEditorDemoLabel, ImageEditorDimensionsInput, ImageEditorFlipHorizontalButton, ImageEditorFlipVerticalButton, ImageEditorLoader, ImageEditorMenu, ImageEditorMenuContainer, ImageEditorMenuSection, ImageEditorMenuSubSection, ImageEditorPresetSelect, ImageEditorPreviewContext, ImageEditorResetButton, ImageEditorResizeDimensions, ImageEditorRotateLeftButton, ImageEditorRotateRightButton, ImageEditorSaveDialog, ImageEditorSaveDialogActions, ImageEditorSaveDialogCanvas, ImageEditorPreviewCloseButton as ImageEditorSaveDialogCloseButton, ImageEditorSaveDialogHeader, ImageEditorSaveDialogImage, ImageEditorSaveDialogInfo, ImageEditorSaveDialogPreview, ImageEditorSaveDialogSaveButton, ImageEditorSaveDialogSection, ImageEditorToolbar, ImageEditorToolbarFlipHorizontalButton, ImageEditorToolbarFlipVerticalButton, ImageEditorToolbarImageSize, ImageEditorToolbarRotateLeftButton, ImageEditorToolbarRotateRightButton, ImageEditorToolbarSection, ImageEditorToolbarZoomInButton, ImageEditorToolbarZoomOutButton, ImageEditorToolbarZoomValue, ImageEditorWorkspace, Link, List, ListItem, ListItemActions, ListItemContent, LoadingButton, Menu, MenuItem, MenuSection, MenuSubSection, ModalDialog, ModalDialogActionContent, ModalDialogActionItem, ModalDialogCallout, ModalDialogContent, ModalDialogContentColumn, ModalDialogFooter, ModalDialogFooterAction, ModalDialogHeader, ModalDialogList, ModalDialogListItem, MouseEventButton, NAVBAR_COLLAPSED_WIDTH, NAVBAR_LOADING_DELAY, NAVBAR_MAX_WIDTH, NAVBAR_MIN_WIDTH, NAVBAR_PREVIEW_TIMEOUT, Navbar, NavbarContext, NavbarItem, NavbarItemContainer, NavbarItemContent, NavbarItemLabel, NavbarItemsGroup, NavbarLink, NavbarScrollableContent, NavbarSeparator, NavbarToggleButton, NavigationDialog, NavigationDialogContent, NavigationDialogFallbackContent, NavigationDialogFooter, NavigationDialogHeader, NavigationDialogItem, NavigationDialogItemAction, NavigationDialogItemLabel, Notification, Notifications, Modal as Overlay, Pagination, Panel, PanelActions, PanelCheckbox, PanelColumn, PanelContent, PanelContentProp, PanelDescriptionItem, PanelDragHandle, PanelList, PanelListDivider, PanelSide, PanelSkeleton, PanelTitle, PdfViewer, PermissionTag, Permissions, PermissionsActions, PermissionsContent, PermissionsForm, PermissionsFormGroup, PermissionsFormInput, PermissionsManagementPanel, PermissionsManagementPanelHeader, PermissionsManagementPanelRulesHeader, PermissionsPanel, PermissionsScopeHeader, PermissionsScopeList, PermissionsTitle, Pill, Pills, Popper, PopperArrow, PopperContext, ProgressPanel, PropertiesTable, PropertiesTableRow, RangeSlider, ResponsiveImage, ResponsiveImageFallback, ResponsiveImageFit, ResponsiveImageScalable, ResponsiveImageSkeleton, SearchDialog, SearchDialogActions, SearchDialogContent, SearchDialogFallback, SearchDialogHeader, SearchDialogInput, SearchDialogSection, Select, SelectListboxGrid, SelectionArea, Skeleton, SortButton, SortableDndList, SortableDndListItem, Switch, SwitchInput, SwitchView, Tab, TabPanel, Table, TableBody, TableCell, TableContainer, TableHead, TableHeader, TableRow, TableToolbar, Tabs, Tag, TagInput, TagLabel, TagList, TextEllipsis, TextField, TextFieldInput, Textarea, Tooltip, Topbar, TopbarAction, UIContext, UIProvider, View, ViewContent, ViewContentBar, ViewContentWrapper, ViewDialog, ViewFooter, ViewHeader, ViewPaper, ViewSideContent, ViewWrapper, areItemsIdentical, base64FromBlurHash, checkIfDropFilesHaveFolders, clamp, clsx, formatTimeDistance, getAllFileEntries, getAllFiles, getClampedDimension, getClampedDimensions, getKeyHandler, getPixelCountFromImageBlob, getScrollVectors, getStandardDeviation, getValidChildren, hasOwnProperty, imageEditorContextDefaultValue, imageEditorPreviewContextDefaultValue, isClipboardItemSupported, matchesCombination, navbarContextInitProps, noOp, rInterval, readAllDirectoryEntries, readEntriesPromise, readFromClipboard, tryReadFromClipboard, tryWriteTextToClipboard, tryWriteToClipboard, uiContextInitProps, useBatchUpdate, useClickAway, useContainerKeyDown, useContainerQuery, useCropper, useCropperCrop, useCropperRotate, useCropperScale, useCropperZoom, useDeferredLoader, useDeferredUnmount, useDelay, useDownload, useDraggable, useElementVisibility, useFilesDrop, useFixedCtx, useForkRef, useGridSelection, useImageEditorContext, useImageEditorPreviewContext, useIsMounted, useIsomorphicLayoutEffect, useItemsOverflow, useListDnd, useNavbarCtx, usePopperCtx, useResettableTimeout, useResize, useResponsiveSizes, useScaleDown, useScroll, useScrollDnd, useToggle, useUIContext, validators_d as validators, writeTextToClipboard, writeToClipboard };
|
|
6440
|
-
export type { ButtonColor, ButtonSize, ButtonType, CropperDimensions, CropperLockedDimension, Dimensions, DocIconName, DragDimensionsHandler, DragHandler, DraggableOptions, DraggableState, DropFile, DropItem, IconColor, IconName, Props$
|
|
6667
|
+
export { ActionBanner, Avatar, Banner, Bottombar, Button, ButtonGroup, ButtonRow, COLLAPSE_THRESHOLD, CONTAINER_QUERY_BREAKPOINTS, CROPPER_FLIP_FACTOR, CROPPER_FULL_ROTATION, CROPPER_INIT_SCALE, CROPPER_MIN_ZOOM_VALUE, CROPPER_ROTATION_ANGLE, CROPPER_ZOOM_FACTOR, CROPPER_ZOOM_STEP, CROPPER_ZOOM_STEP_FINE, CROPPER_ZOOM_THRESHOLD, Checkbox, CheckboxLabel, CircularLoader, ContainerQuery, ContainerQueryProvider, CopyButton, CopyableInput, CopyableLabel, CoreUploaderErrorPanel, CoreUploaderProgressPanel, CoreUploaderView, CoreUploaderWorkingArea, Dialog, DialogActions, DialogColumn, DialogFooter, DialogHeader, DialogNext, DialogNextCloseButton, DialogNextColumn, DialogNextContent, DialogNextFooter, DialogNextHeader, DialogNextSeparator, DialogNextTitle, DialogProgressHeader, DialogRow, DialogSection, DocIcon, Drawer, DrawerActions, DrawerContent, DrawerHeader, DrawerSection, Ellipsis, EmptyView, EmptyViewLabel, FileInput, FilePreview, FilePreviewActions, FilePreviewColumn, FilePreviewContent, FilePreviewHoverable, FilePreviewNavButton, FilePreviewTooltip, Fixed, FixedContext, FixedProvider, Form, FormFeedback, FormGroup, FormGroupColumn, FormGroupInfo, FormInputLabel, Gallery, GalleryFigure, GalleryItem, Icon, ImageEditor, ImageEditorActions, ImageEditorApplyButton, ImageEditorButtonsGroup, ImageEditorButtonsRow, ImageEditorCanvas, ImageEditorContent, ImageEditorContext, ImageEditorCropBoxDimensions, ImageEditorCropCard, ImageEditorCropCardFreeform, ImageEditorCropCardList, ImageEditorCropCardOriginal, ImageEditorDemoLabel, ImageEditorDimensionsInput, ImageEditorFlipHorizontalButton, ImageEditorFlipVerticalButton, ImageEditorLoader, ImageEditorMenu, ImageEditorMenuContainer, ImageEditorMenuSection, ImageEditorMenuSubSection, ImageEditorPresetSelect, ImageEditorPreviewContext, ImageEditorResetButton, ImageEditorResizeDimensions, ImageEditorRotateLeftButton, ImageEditorRotateRightButton, ImageEditorSaveDialog, ImageEditorSaveDialogActions, ImageEditorSaveDialogCanvas, ImageEditorPreviewCloseButton as ImageEditorSaveDialogCloseButton, ImageEditorSaveDialogHeader, ImageEditorSaveDialogImage, ImageEditorSaveDialogInfo, ImageEditorSaveDialogPreview, ImageEditorSaveDialogSaveButton, ImageEditorSaveDialogSection, ImageEditorToolbar, ImageEditorToolbarFlipHorizontalButton, ImageEditorToolbarFlipVerticalButton, ImageEditorToolbarImageSize, ImageEditorToolbarRotateLeftButton, ImageEditorToolbarRotateRightButton, ImageEditorToolbarSection, ImageEditorToolbarZoomInButton, ImageEditorToolbarZoomOutButton, ImageEditorToolbarZoomValue, ImageEditorWorkspace, Link, List, ListItem, ListItemActions, ListItemContent, LoadingButton, Menu, MenuColumn, MenuFooterButton, MenuItem, MenuItemButton, MenuLabel, MenuSearchInput, MenuSection, MenuSubSection, ModalDialog, ModalDialogActionContent, ModalDialogActionItem, ModalDialogCallout, ModalDialogContent, ModalDialogContentColumn, ModalDialogFooter, ModalDialogFooterAction, ModalDialogHeader, ModalDialogList, ModalDialogListItem, MouseEventButton, NAVBAR_COLLAPSED_WIDTH, NAVBAR_LOADING_DELAY, NAVBAR_MAX_WIDTH, NAVBAR_MIN_WIDTH, NAVBAR_PREVIEW_TIMEOUT, Navbar, NavbarContext, NavbarItem, NavbarItemContainer, NavbarItemContent, NavbarItemLabel, NavbarItemsGroup, NavbarLink, NavbarScrollableContent, NavbarSeparator, NavbarToggleButton, NavigationDialog, NavigationDialogContent, NavigationDialogFallbackContent, NavigationDialogFooter, NavigationDialogHeader, NavigationDialogItem, NavigationDialogItemAction, NavigationDialogItemLabel, Notification, Notifications, Modal as Overlay, Pagination, Panel, PanelActions, PanelCheckbox, PanelColumn, PanelContent, PanelContentProp, PanelDescriptionItem, PanelDragHandle, PanelList, PanelListDivider, PanelSide, PanelSkeleton, PanelTitle, PdfViewer, PermissionTag, Permissions, PermissionsActions, PermissionsContent, PermissionsForm, PermissionsFormGroup, PermissionsFormInput, PermissionsManagementPanel, PermissionsManagementPanelHeader, PermissionsManagementPanelRulesHeader, PermissionsPanel, PermissionsScopeHeader, PermissionsScopeList, PermissionsTitle, Pill, Pills, Popper, PopperArrow, PopperContext, ProgressPanel, PropertiesTable, PropertiesTableRow, RangeSlider, ResponsiveImage, ResponsiveImageFallback, ResponsiveImageFit, ResponsiveImageScalable, ResponsiveImageSkeleton, SearchDialog, SearchDialogActions, SearchDialogContent, SearchDialogFallback, SearchDialogHeader, SearchDialogInput, SearchDialogSection, Select, SelectListboxGrid, SelectionArea, Skeleton, SortButton, SortableDndList, SortableDndListItem, Switch, SwitchInput, SwitchView, Tab, TabPanel, Table, TableBody, TableCell, TableContainer, TableDatetimeCell, TableHead, TableHeader, TablePagination, TableRow, TableToolbar, Tabs, Tag, TagInput, TagLabel, TagList, TextEllipsis, TextField, TextFieldInput, Textarea, Tooltip, Topbar, TopbarAction, UIContext, UIProvider, View, ViewContent, ViewContentBar, ViewContentWrapper, ViewDialog, ViewFooter, ViewHeader, ViewPaper, ViewSideContent, ViewWrapper, areItemsIdentical, base64FromBlurHash, checkIfDropFilesHaveFolders, clamp, clsx, formatTimeDistance, getAllFileEntries, getAllFiles, getClampedDimension, getClampedDimensions, getKeyHandler, getPixelCountFromImageBlob, getScrollVectors, getStandardDeviation, getValidChildren, hasOwnProperty, imageEditorContextDefaultValue, imageEditorPreviewContextDefaultValue, isClipboardItemSupported, matchesCombination, navbarContextInitProps, noOp, rInterval, readAllDirectoryEntries, readEntriesPromise, readFromClipboard, tryReadFromClipboard, tryWriteTextToClipboard, tryWriteToClipboard, uiContextInitProps, useBatchUpdate, useClickAway, useContainerKeyDown, useContainerQuery, useCropper, useCropperCrop, useCropperRotate, useCropperScale, useCropperZoom, useDeferredLoader, useDeferredUnmount, useDelay, useDownload, useDraggable, useElementVisibility, useFilesDrop, useFixedCtx, useForkRef, useGridSelection, useImageEditorContext, useImageEditorPreviewContext, useIsMounted, useIsomorphicLayoutEffect, useItemsOverflow, useListDnd, useNavbarCtx, usePopperCtx, useResettableTimeout, useResize, useResponsiveSizes, useScaleDown, useScroll, useScrollDnd, useToggle, useUIContext, validators_d as validators, writeTextToClipboard, writeToClipboard };
|
|
6668
|
+
export type { ButtonColor, ButtonSize, ButtonType, CropperDimensions, CropperLockedDimension, Dimensions, DocIconName, DragDimensionsHandler, DragHandler, DraggableOptions, DraggableState, DropFile, DropItem, IconColor, IconName, Props$3E as IconProps, IconRenderProp, IconRenderer, IconSize, ImageEditorEditingResult, ImageEditorPresetGroup, ImageEditorPresetOption, KeyAction, KeyCombination, KeyEventLike, KeyModifier, KeyProps, ListDndChildProps, ListDndItem, ListDndItemHookProps, ListDndMoveItem, ListDndOnDragEnd, ListDndSetDraggable, ListDndSetDraggablePartial, ListboxProps, OnScrollHandler, PermissionMap, PermissionName, PopperAnchorRef, PopperOffset, PopperOffsetValue, PopperPlacement, Props$3E as Props, RInterval, ResizeOptions, ScrollCoordsConfig, ScrollOptions, SelectKeyboardNavProps, SelectKeyboardNextIdGetter, SelectOption, SelectRenderableOption, SelectSection, SelectToggleHandler, SelectionAreaCoords, Props$f as TextareaProps, Props$1P as UIProviderProps, UseFilesDropProps, Props$1Q as ViewDialogProps, XYCoord };
|