@ckbox/components 2.12.0-rc.0 → 2.12.0-rc.2
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 +7 -6
- package/dist/index.d.ts +629 -496
- package/dist/index.js +1 -1
- package/dist/pdf.worker.min.mjs +21 -0
- package/dist/styles/ckbox.css +1 -1
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -9,8 +9,8 @@ import { TransitionProps } from 'react-transition-group/Transition';
|
|
|
9
9
|
import Cropper$1 from 'cropperjs';
|
|
10
10
|
import * as react_dnd from 'react-dnd';
|
|
11
11
|
|
|
12
|
-
declare const Avatar: React$1.ForwardRefExoticComponent<Props$
|
|
13
|
-
interface Props$
|
|
12
|
+
declare const Avatar: React$1.ForwardRefExoticComponent<Props$3P & React$1.RefAttributes<HTMLDivElement>>;
|
|
13
|
+
interface Props$3P {
|
|
14
14
|
/**
|
|
15
15
|
* ID used for determining color.
|
|
16
16
|
*/
|
|
@@ -175,7 +175,7 @@ declare const Warning: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
|
175
175
|
|
|
176
176
|
declare const WarningAmberOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
177
177
|
|
|
178
|
-
interface Props$
|
|
178
|
+
interface Props$3O {
|
|
179
179
|
/**
|
|
180
180
|
* Toggles optional icon animation.
|
|
181
181
|
*/
|
|
@@ -190,15 +190,15 @@ interface Props$3I {
|
|
|
190
190
|
'data-testid'?: string;
|
|
191
191
|
}
|
|
192
192
|
|
|
193
|
-
declare const ArrowRightOutlinedAnimated: React$1.FC<Props$
|
|
193
|
+
declare const ArrowRightOutlinedAnimated: React$1.FC<Props$3O>;
|
|
194
194
|
|
|
195
|
-
declare const SettingsOutlinedAnimated: React$1.FC<Props$
|
|
195
|
+
declare const SettingsOutlinedAnimated: React$1.FC<Props$3O>;
|
|
196
196
|
|
|
197
|
-
declare const SortAscending: React$1.FC<Props$
|
|
197
|
+
declare const SortAscending: React$1.FC<Props$3O>;
|
|
198
198
|
|
|
199
|
-
declare const SortDescending: React$1.FC<Props$
|
|
199
|
+
declare const SortDescending: React$1.FC<Props$3O>;
|
|
200
200
|
|
|
201
|
-
declare const Spinner: React$1.FC<Props$
|
|
201
|
+
declare const Spinner: React$1.FC<Props$3O>;
|
|
202
202
|
|
|
203
203
|
declare const icons$1_AccessTimeOutlined: typeof AccessTimeOutlined;
|
|
204
204
|
declare const icons$1_AddOutlined: typeof AddOutlined;
|
|
@@ -369,8 +369,8 @@ type IconName = keyof typeof icons$1;
|
|
|
369
369
|
type IconSize = 'small' | 'base' | 'medium' | 'big' | 'bigger' | 'biggest' | 'humongous';
|
|
370
370
|
type IconColor = 'accent' | 'danger' | 'default' | 'disabled' | 'muted' | 'success' | 'warning';
|
|
371
371
|
|
|
372
|
-
declare const Icon: React$1.FC<Props$
|
|
373
|
-
interface Props$
|
|
372
|
+
declare const Icon: React$1.FC<Props$3N>;
|
|
373
|
+
interface Props$3N {
|
|
374
374
|
/**
|
|
375
375
|
* Toggles optional icon animation.
|
|
376
376
|
*/
|
|
@@ -400,8 +400,8 @@ interface Props$3H {
|
|
|
400
400
|
size?: IconSize;
|
|
401
401
|
}
|
|
402
402
|
|
|
403
|
-
declare const ActionBanner: React$1.FC<Props$
|
|
404
|
-
interface Props$
|
|
403
|
+
declare const ActionBanner: React$1.FC<Props$3M>;
|
|
404
|
+
interface Props$3M {
|
|
405
405
|
/**
|
|
406
406
|
* Icon displayed for action button.
|
|
407
407
|
*/
|
|
@@ -420,8 +420,8 @@ interface Props$3G {
|
|
|
420
420
|
actionLabel: string;
|
|
421
421
|
}
|
|
422
422
|
|
|
423
|
-
declare const Bottombar: React$1.ForwardRefExoticComponent<Props$
|
|
424
|
-
interface Props$
|
|
423
|
+
declare const Bottombar: React$1.ForwardRefExoticComponent<Props$3L & React$1.RefAttributes<HTMLDivElement>>;
|
|
424
|
+
interface Props$3L {
|
|
425
425
|
/**
|
|
426
426
|
* Main content of the component.
|
|
427
427
|
*/
|
|
@@ -429,7 +429,7 @@ interface Props$3F {
|
|
|
429
429
|
/**
|
|
430
430
|
* Content rendered on the right side of the bar.
|
|
431
431
|
*/
|
|
432
|
-
sideContent
|
|
432
|
+
sideContent?: React$1.ReactNode;
|
|
433
433
|
/**
|
|
434
434
|
* Content rendered as status summary in a absolute left-positioned container
|
|
435
435
|
*/
|
|
@@ -440,8 +440,8 @@ type ButtonSize = 'tiny' | 'small' | 'medium' | 'large';
|
|
|
440
440
|
type ButtonType = 'fill' | 'outline' | 'plain' | 'link';
|
|
441
441
|
type ButtonColor = 'action' | 'success' | 'danger' | 'neutral';
|
|
442
442
|
|
|
443
|
-
declare const Button: React$1.ForwardRefExoticComponent<Props$
|
|
444
|
-
interface Props$
|
|
443
|
+
declare const Button: React$1.ForwardRefExoticComponent<Props$3K & React$1.RefAttributes<HTMLButtonElement>>;
|
|
444
|
+
interface Props$3K {
|
|
445
445
|
/**
|
|
446
446
|
* Applies active styling.
|
|
447
447
|
*/
|
|
@@ -540,24 +540,24 @@ interface Props$3E {
|
|
|
540
540
|
disabledLabelWrapping?: boolean;
|
|
541
541
|
}
|
|
542
542
|
|
|
543
|
-
declare const ButtonGroup: React$1.FC<Props$
|
|
544
|
-
interface Props$
|
|
543
|
+
declare const ButtonGroup: React$1.FC<Props$3J>;
|
|
544
|
+
interface Props$3J {
|
|
545
545
|
/**
|
|
546
546
|
* Button components.
|
|
547
547
|
*/
|
|
548
548
|
children: React$1.ReactNode;
|
|
549
549
|
}
|
|
550
550
|
|
|
551
|
-
declare const ButtonRow: React$1.FC<Props$
|
|
552
|
-
interface Props$
|
|
551
|
+
declare const ButtonRow: React$1.FC<Props$3I>;
|
|
552
|
+
interface Props$3I {
|
|
553
553
|
/**
|
|
554
554
|
* Button components.
|
|
555
555
|
*/
|
|
556
556
|
children: React$1.ReactNode;
|
|
557
557
|
}
|
|
558
558
|
|
|
559
|
-
declare const CircularLoader: React$1.ForwardRefExoticComponent<Props$
|
|
560
|
-
interface Props$
|
|
559
|
+
declare const CircularLoader: React$1.ForwardRefExoticComponent<Props$3H & React$1.RefAttributes<HTMLButtonElement>>;
|
|
560
|
+
interface Props$3H {
|
|
561
561
|
/**
|
|
562
562
|
* Component's label.
|
|
563
563
|
*/
|
|
@@ -580,8 +580,8 @@ interface Props$3B {
|
|
|
580
580
|
onClick?: () => void;
|
|
581
581
|
}
|
|
582
582
|
|
|
583
|
-
declare const CoreUploaderProgressPanel: ({ error, errorMessage, completed, actionIcon, actionLabel, onAction, id, title, thumbnailSrc, value, assetSize, displayThumbnail, }: Props$
|
|
584
|
-
interface Props$
|
|
583
|
+
declare const CoreUploaderProgressPanel: ({ error, errorMessage, completed, actionIcon, actionLabel, onAction, id, title, thumbnailSrc, value, assetSize, displayThumbnail, }: Props$3G) => React$1.JSX.Element;
|
|
584
|
+
interface Props$3G {
|
|
585
585
|
/**
|
|
586
586
|
* Source string used for thumbnail.
|
|
587
587
|
*/
|
|
@@ -636,8 +636,8 @@ interface Props$3A {
|
|
|
636
636
|
actionIcon?: IconName;
|
|
637
637
|
}
|
|
638
638
|
|
|
639
|
-
declare const CoreUploaderWorkingArea: React$1.ForwardRefExoticComponent<Props$
|
|
640
|
-
interface Props$
|
|
639
|
+
declare const CoreUploaderWorkingArea: React$1.ForwardRefExoticComponent<Props$3F & React$1.RefAttributes<HTMLDivElement>>;
|
|
640
|
+
interface Props$3F {
|
|
641
641
|
/**
|
|
642
642
|
* Label displayed by component.
|
|
643
643
|
*/
|
|
@@ -656,8 +656,8 @@ interface Props$3z {
|
|
|
656
656
|
uploadButton: React$1.ReactNode;
|
|
657
657
|
}
|
|
658
658
|
|
|
659
|
-
declare const CoreUploaderErrorPanel: ({ children, errorTitle, errorSubTitle }: Props$
|
|
660
|
-
interface Props$
|
|
659
|
+
declare const CoreUploaderErrorPanel: ({ children, errorTitle, errorSubTitle }: Props$3E) => React$1.JSX.Element;
|
|
660
|
+
interface Props$3E {
|
|
661
661
|
/**
|
|
662
662
|
* Content displayed inside error panel.
|
|
663
663
|
*/
|
|
@@ -672,8 +672,8 @@ interface Props$3y {
|
|
|
672
672
|
errorSubTitle: string;
|
|
673
673
|
}
|
|
674
674
|
|
|
675
|
-
declare const CoreUploaderView: ({ header, footer }: Props$
|
|
676
|
-
interface Props$
|
|
675
|
+
declare const CoreUploaderView: ({ header, footer }: Props$3D) => React$1.JSX.Element;
|
|
676
|
+
interface Props$3D {
|
|
677
677
|
/**
|
|
678
678
|
* Content displayed as header element.
|
|
679
679
|
*/
|
|
@@ -684,8 +684,8 @@ interface Props$3x {
|
|
|
684
684
|
footer?: React$1.ReactNode;
|
|
685
685
|
}
|
|
686
686
|
|
|
687
|
-
declare const DialogNextTitle: React$1.ForwardRefExoticComponent<Props$
|
|
688
|
-
interface Props$
|
|
687
|
+
declare const DialogNextTitle: React$1.ForwardRefExoticComponent<Props$3C & React$1.RefAttributes<HTMLDivElement>>;
|
|
688
|
+
interface Props$3C {
|
|
689
689
|
/**
|
|
690
690
|
* Main content of the component.
|
|
691
691
|
*/
|
|
@@ -704,8 +704,8 @@ interface Props$3w {
|
|
|
704
704
|
titleId?: string;
|
|
705
705
|
}
|
|
706
706
|
|
|
707
|
-
declare const DialogNextColumn: React$1.ForwardRefExoticComponent<Props$
|
|
708
|
-
interface Props$
|
|
707
|
+
declare const DialogNextColumn: React$1.ForwardRefExoticComponent<Props$3B & React$1.RefAttributes<HTMLDivElement>>;
|
|
708
|
+
interface Props$3B {
|
|
709
709
|
/**
|
|
710
710
|
* Main content of the component.
|
|
711
711
|
*/
|
|
@@ -716,8 +716,8 @@ interface Props$3v {
|
|
|
716
716
|
className?: string;
|
|
717
717
|
}
|
|
718
718
|
|
|
719
|
-
declare const DialogNextContent: React$1.ForwardRefExoticComponent<Props$
|
|
720
|
-
interface Props$
|
|
719
|
+
declare const DialogNextContent: React$1.ForwardRefExoticComponent<Props$3A & React$1.RefAttributes<HTMLDivElement>>;
|
|
720
|
+
interface Props$3A {
|
|
721
721
|
/**
|
|
722
722
|
* Main content of the component.
|
|
723
723
|
*/
|
|
@@ -736,8 +736,8 @@ interface Props$3u {
|
|
|
736
736
|
id?: string;
|
|
737
737
|
}
|
|
738
738
|
|
|
739
|
-
declare const DialogNextFooter: React$1.ForwardRefExoticComponent<Props$
|
|
740
|
-
interface Props$
|
|
739
|
+
declare const DialogNextFooter: React$1.ForwardRefExoticComponent<Props$3z & React$1.RefAttributes<HTMLDivElement>>;
|
|
740
|
+
interface Props$3z {
|
|
741
741
|
/**
|
|
742
742
|
* Main content of the component.
|
|
743
743
|
*/
|
|
@@ -748,8 +748,8 @@ interface Props$3t {
|
|
|
748
748
|
className?: string;
|
|
749
749
|
}
|
|
750
750
|
|
|
751
|
-
declare const DialogNextCloseButton: React$1.ForwardRefExoticComponent<Props$
|
|
752
|
-
interface Props$
|
|
751
|
+
declare const DialogNextCloseButton: React$1.ForwardRefExoticComponent<Props$3y & React$1.RefAttributes<HTMLButtonElement>>;
|
|
752
|
+
interface Props$3y {
|
|
753
753
|
/**
|
|
754
754
|
* Close button's label.
|
|
755
755
|
*/
|
|
@@ -760,8 +760,8 @@ interface Props$3s {
|
|
|
760
760
|
className?: string;
|
|
761
761
|
}
|
|
762
762
|
|
|
763
|
-
declare const DialogNextHeader: React$1.ForwardRefExoticComponent<Props$
|
|
764
|
-
interface Props$
|
|
763
|
+
declare const DialogNextHeader: React$1.ForwardRefExoticComponent<Props$3x & React$1.RefAttributes<HTMLDivElement>>;
|
|
764
|
+
interface Props$3x {
|
|
765
765
|
/**
|
|
766
766
|
* Main content of the component.
|
|
767
767
|
*/
|
|
@@ -772,16 +772,16 @@ interface Props$3r {
|
|
|
772
772
|
className?: string;
|
|
773
773
|
}
|
|
774
774
|
|
|
775
|
-
declare const DialogNextSeparator: React$1.ForwardRefExoticComponent<Props$
|
|
776
|
-
interface Props$
|
|
775
|
+
declare const DialogNextSeparator: React$1.ForwardRefExoticComponent<Props$3w & React$1.RefAttributes<HTMLDivElement>>;
|
|
776
|
+
interface Props$3w {
|
|
777
777
|
/**
|
|
778
778
|
* Sets root header class.
|
|
779
779
|
*/
|
|
780
780
|
className?: string;
|
|
781
781
|
}
|
|
782
782
|
|
|
783
|
-
declare const DialogNext: React$1.ForwardRefExoticComponent<Props$
|
|
784
|
-
interface Props$
|
|
783
|
+
declare const DialogNext: React$1.ForwardRefExoticComponent<Props$3v & React$1.RefAttributes<HTMLDivElement>>;
|
|
784
|
+
interface Props$3v {
|
|
785
785
|
/**
|
|
786
786
|
* Main content of the component.
|
|
787
787
|
*/
|
|
@@ -820,16 +820,16 @@ interface Props$3p {
|
|
|
820
820
|
alert?: boolean;
|
|
821
821
|
}
|
|
822
822
|
|
|
823
|
-
declare const DialogActions: React$1.FC<Props$
|
|
824
|
-
interface Props$
|
|
823
|
+
declare const DialogActions: React$1.FC<Props$3u>;
|
|
824
|
+
interface Props$3u {
|
|
825
825
|
/**
|
|
826
826
|
* Main content of the component.
|
|
827
827
|
*/
|
|
828
828
|
children: React$1.ReactNode;
|
|
829
829
|
}
|
|
830
830
|
|
|
831
|
-
declare const DialogColumn: React$1.ForwardRefExoticComponent<Props$
|
|
832
|
-
interface Props$
|
|
831
|
+
declare const DialogColumn: React$1.ForwardRefExoticComponent<Props$3t & React$1.RefAttributes<HTMLDivElement>>;
|
|
832
|
+
interface Props$3t extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
833
833
|
/**
|
|
834
834
|
* Main content of the component.
|
|
835
835
|
*/
|
|
@@ -840,8 +840,8 @@ interface Props$3n extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
840
840
|
overflow?: boolean;
|
|
841
841
|
}
|
|
842
842
|
|
|
843
|
-
declare const DialogFooter: React$1.FC<Props$
|
|
844
|
-
interface Props$
|
|
843
|
+
declare const DialogFooter: React$1.FC<Props$3s>;
|
|
844
|
+
interface Props$3s {
|
|
845
845
|
/**
|
|
846
846
|
* Main content of the component.
|
|
847
847
|
*/
|
|
@@ -857,8 +857,8 @@ interface Props$3m {
|
|
|
857
857
|
}[];
|
|
858
858
|
}
|
|
859
859
|
|
|
860
|
-
declare const DialogHeader: React$1.FC<Props$
|
|
861
|
-
interface Props$
|
|
860
|
+
declare const DialogHeader: React$1.FC<Props$3r>;
|
|
861
|
+
interface Props$3r {
|
|
862
862
|
/**
|
|
863
863
|
* Sets focus on close button on mount.
|
|
864
864
|
*/
|
|
@@ -881,8 +881,8 @@ interface Props$3l {
|
|
|
881
881
|
type?: 'success' | 'error' | 'info';
|
|
882
882
|
}
|
|
883
883
|
|
|
884
|
-
declare const DialogProgressHeader: React$1.FC<Props$
|
|
885
|
-
interface Props$
|
|
884
|
+
declare const DialogProgressHeader: React$1.FC<Props$3q>;
|
|
885
|
+
interface Props$3q {
|
|
886
886
|
/**
|
|
887
887
|
* Sets focus on close button on mount.
|
|
888
888
|
*/
|
|
@@ -913,16 +913,16 @@ interface Props$3k {
|
|
|
913
913
|
title?: string;
|
|
914
914
|
}
|
|
915
915
|
|
|
916
|
-
declare const DialogRow: React$1.FC<Props$
|
|
917
|
-
interface Props$
|
|
916
|
+
declare const DialogRow: React$1.FC<Props$3p>;
|
|
917
|
+
interface Props$3p extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
918
918
|
/**
|
|
919
919
|
* Main content of the component.
|
|
920
920
|
*/
|
|
921
921
|
children: React$1.ReactNode;
|
|
922
922
|
}
|
|
923
923
|
|
|
924
|
-
declare const DialogSection: React$1.FC<Props$
|
|
925
|
-
interface Props$
|
|
924
|
+
declare const DialogSection: React$1.FC<Props$3o>;
|
|
925
|
+
interface Props$3o {
|
|
926
926
|
/**
|
|
927
927
|
* Main content of the component.
|
|
928
928
|
*/
|
|
@@ -1041,35 +1041,35 @@ interface DialogProps extends DialogSwitchProps {
|
|
|
1041
1041
|
* Entry component for the dialog.
|
|
1042
1042
|
* Initializes selected dialog mode and optionally adds common options and draggability if needed.
|
|
1043
1043
|
*/
|
|
1044
|
-
declare const Dialog: React$1.FC<Props$
|
|
1045
|
-
type Props$
|
|
1044
|
+
declare const Dialog: React$1.FC<Props$3n>;
|
|
1045
|
+
type Props$3n = DialogProps;
|
|
1046
1046
|
|
|
1047
|
-
interface Props$
|
|
1047
|
+
interface Props$3m {
|
|
1048
1048
|
/**
|
|
1049
1049
|
* Sets root class.
|
|
1050
1050
|
*/
|
|
1051
1051
|
className: string;
|
|
1052
1052
|
}
|
|
1053
1053
|
|
|
1054
|
-
declare const Zip: React$1.FC<Props$
|
|
1054
|
+
declare const Zip: React$1.FC<Props$3m>;
|
|
1055
1055
|
|
|
1056
|
-
declare const Empty: React$1.FC<Props$
|
|
1056
|
+
declare const Empty: React$1.FC<Props$3m>;
|
|
1057
1057
|
|
|
1058
|
-
declare const Excel: React$1.FC<Props$
|
|
1058
|
+
declare const Excel: React$1.FC<Props$3m>;
|
|
1059
1059
|
|
|
1060
|
-
declare const Img: React$1.FC<Props$
|
|
1060
|
+
declare const Img: React$1.FC<Props$3m>;
|
|
1061
1061
|
|
|
1062
|
-
declare const Movie: React$1.FC<Props$
|
|
1062
|
+
declare const Movie: React$1.FC<Props$3m>;
|
|
1063
1063
|
|
|
1064
|
-
declare const Music: React$1.FC<Props$
|
|
1064
|
+
declare const Music: React$1.FC<Props$3m>;
|
|
1065
1065
|
|
|
1066
|
-
declare const Pdf: React$1.FC<Props$
|
|
1066
|
+
declare const Pdf: React$1.FC<Props$3m>;
|
|
1067
1067
|
|
|
1068
|
-
declare const Ppt: React$1.FC<Props$
|
|
1068
|
+
declare const Ppt: React$1.FC<Props$3m>;
|
|
1069
1069
|
|
|
1070
|
-
declare const Txt: React$1.FC<Props$
|
|
1070
|
+
declare const Txt: React$1.FC<Props$3m>;
|
|
1071
1071
|
|
|
1072
|
-
declare const Word: React$1.FC<Props$
|
|
1072
|
+
declare const Word: React$1.FC<Props$3m>;
|
|
1073
1073
|
|
|
1074
1074
|
declare const icons_Empty: typeof Empty;
|
|
1075
1075
|
declare const icons_Excel: typeof Excel;
|
|
@@ -1095,9 +1095,9 @@ declare namespace icons {
|
|
|
1095
1095
|
};
|
|
1096
1096
|
}
|
|
1097
1097
|
|
|
1098
|
-
declare const DocIcon: React$1.FC<Props$
|
|
1098
|
+
declare const DocIcon: React$1.FC<Props$3l>;
|
|
1099
1099
|
type DocIconName = keyof typeof icons;
|
|
1100
|
-
interface Props$
|
|
1100
|
+
interface Props$3l {
|
|
1101
1101
|
/**
|
|
1102
1102
|
* Name of selected icon.
|
|
1103
1103
|
*/
|
|
@@ -1108,8 +1108,8 @@ interface Props$3f {
|
|
|
1108
1108
|
limitSize?: boolean;
|
|
1109
1109
|
}
|
|
1110
1110
|
|
|
1111
|
-
declare const GalleryFigure: React$1.ForwardRefExoticComponent<Props$
|
|
1112
|
-
interface Props$
|
|
1111
|
+
declare const GalleryFigure: React$1.ForwardRefExoticComponent<Props$3k & React$1.RefAttributes<HTMLElement>>;
|
|
1112
|
+
interface Props$3k {
|
|
1113
1113
|
/**
|
|
1114
1114
|
* Main content of the component.
|
|
1115
1115
|
*/
|
|
@@ -1132,8 +1132,8 @@ interface Props$3e {
|
|
|
1132
1132
|
'data-visible'?: boolean;
|
|
1133
1133
|
}
|
|
1134
1134
|
|
|
1135
|
-
declare const GalleryItem: React$1.ForwardRefExoticComponent<Props$
|
|
1136
|
-
interface Props$
|
|
1135
|
+
declare const GalleryItem: React$1.ForwardRefExoticComponent<Props$3j & React$1.RefAttributes<HTMLDivElement>>;
|
|
1136
|
+
interface Props$3j {
|
|
1137
1137
|
/**
|
|
1138
1138
|
* Sets item as active.
|
|
1139
1139
|
*/
|
|
@@ -1188,8 +1188,8 @@ interface Props$3d {
|
|
|
1188
1188
|
onCheckboxClick?: React$1.MouseEventHandler<HTMLButtonElement>;
|
|
1189
1189
|
}
|
|
1190
1190
|
|
|
1191
|
-
declare const Gallery: React$1.FC<Props$
|
|
1192
|
-
interface Props$
|
|
1191
|
+
declare const Gallery: React$1.FC<Props$3i>;
|
|
1192
|
+
interface Props$3i {
|
|
1193
1193
|
/**
|
|
1194
1194
|
* Main content of the component.
|
|
1195
1195
|
*/
|
|
@@ -1208,8 +1208,8 @@ interface Props$3c {
|
|
|
1208
1208
|
zoom?: number;
|
|
1209
1209
|
}
|
|
1210
1210
|
|
|
1211
|
-
declare const Link: React$1.FC<Props$
|
|
1212
|
-
interface Props$
|
|
1211
|
+
declare const Link: React$1.FC<Props$3h>;
|
|
1212
|
+
interface Props$3h {
|
|
1213
1213
|
/**
|
|
1214
1214
|
* URL to pass to the link element.
|
|
1215
1215
|
*/
|
|
@@ -1218,18 +1218,22 @@ interface Props$3b {
|
|
|
1218
1218
|
* Main content displayed inside the element.
|
|
1219
1219
|
*/
|
|
1220
1220
|
children: React$1.ReactNode;
|
|
1221
|
+
/**
|
|
1222
|
+
* Hides the "open in new tab" icon shown next to the link text.
|
|
1223
|
+
*/
|
|
1224
|
+
hideIcon?: boolean;
|
|
1221
1225
|
}
|
|
1222
1226
|
|
|
1223
|
-
declare const MenuColumn: React$1.FC<Props$
|
|
1224
|
-
interface Props$
|
|
1227
|
+
declare const MenuColumn: React$1.FC<Props$3g>;
|
|
1228
|
+
interface Props$3g {
|
|
1225
1229
|
/**
|
|
1226
1230
|
* Main content of the component.
|
|
1227
1231
|
*/
|
|
1228
1232
|
children: React$1.ReactNode;
|
|
1229
1233
|
}
|
|
1230
1234
|
|
|
1231
|
-
declare const MenuItem: React$1.FC<Props$
|
|
1232
|
-
interface Props$
|
|
1235
|
+
declare const MenuItem: React$1.FC<Props$3f>;
|
|
1236
|
+
interface Props$3f {
|
|
1233
1237
|
/**
|
|
1234
1238
|
* Disables auto-close on click.
|
|
1235
1239
|
*/
|
|
@@ -1260,8 +1264,8 @@ interface Props$39 {
|
|
|
1260
1264
|
onClick?: () => void;
|
|
1261
1265
|
}
|
|
1262
1266
|
|
|
1263
|
-
declare const MenuLabel: React$1.FC<Props$
|
|
1264
|
-
interface Props$
|
|
1267
|
+
declare const MenuLabel: React$1.FC<Props$3e>;
|
|
1268
|
+
interface Props$3e {
|
|
1265
1269
|
/**
|
|
1266
1270
|
* Main content of the component.
|
|
1267
1271
|
*/
|
|
@@ -1280,8 +1284,8 @@ interface Props$38 {
|
|
|
1280
1284
|
margin?: boolean;
|
|
1281
1285
|
}
|
|
1282
1286
|
|
|
1283
|
-
declare const MenuSubSection: React$1.FC<Props$
|
|
1284
|
-
interface Props$
|
|
1287
|
+
declare const MenuSubSection: React$1.FC<Props$3d>;
|
|
1288
|
+
interface Props$3d {
|
|
1285
1289
|
/**
|
|
1286
1290
|
* Main content of the component.
|
|
1287
1291
|
*/
|
|
@@ -1308,8 +1312,8 @@ interface Props$37 {
|
|
|
1308
1312
|
title: string;
|
|
1309
1313
|
}
|
|
1310
1314
|
|
|
1311
|
-
declare const MenuSection: React$1.FC<Props$
|
|
1312
|
-
interface Props$
|
|
1315
|
+
declare const MenuSection: React$1.FC<Props$3c>;
|
|
1316
|
+
interface Props$3c {
|
|
1313
1317
|
/**
|
|
1314
1318
|
* Main content of the component.
|
|
1315
1319
|
*/
|
|
@@ -1328,8 +1332,8 @@ interface Props$36 {
|
|
|
1328
1332
|
compact?: boolean;
|
|
1329
1333
|
}
|
|
1330
1334
|
|
|
1331
|
-
declare const MenuSearchInput: React$1.ForwardRefExoticComponent<Props$
|
|
1332
|
-
interface Props$
|
|
1335
|
+
declare const MenuSearchInput: React$1.ForwardRefExoticComponent<Props$3b & React$1.RefAttributes<HTMLInputElement>>;
|
|
1336
|
+
interface Props$3b {
|
|
1333
1337
|
/**
|
|
1334
1338
|
* Input's name to register.
|
|
1335
1339
|
*/
|
|
@@ -1360,8 +1364,8 @@ interface Props$35 {
|
|
|
1360
1364
|
compact?: boolean;
|
|
1361
1365
|
}
|
|
1362
1366
|
|
|
1363
|
-
declare const MenuItemButton: React$1.FC<Props$
|
|
1364
|
-
interface Props$
|
|
1367
|
+
declare const MenuItemButton: React$1.FC<Props$3a>;
|
|
1368
|
+
interface Props$3a {
|
|
1365
1369
|
/**
|
|
1366
1370
|
* Main content.
|
|
1367
1371
|
*/
|
|
@@ -1372,8 +1376,8 @@ interface Props$34 {
|
|
|
1372
1376
|
onClick?: () => void;
|
|
1373
1377
|
}
|
|
1374
1378
|
|
|
1375
|
-
declare const MenuFooterButton: React$1.FC<Props$
|
|
1376
|
-
interface Props$
|
|
1379
|
+
declare const MenuFooterButton: React$1.FC<Props$39>;
|
|
1380
|
+
interface Props$39 {
|
|
1377
1381
|
/**
|
|
1378
1382
|
* Main content.
|
|
1379
1383
|
*/
|
|
@@ -1401,16 +1405,16 @@ type PopperAnchorRef = HTMLElement | null | undefined;
|
|
|
1401
1405
|
type PopperOffsetValue = 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
1402
1406
|
type PopperOffset = [PopperOffsetValue, PopperOffsetValue];
|
|
1403
1407
|
|
|
1404
|
-
declare const PopperArrow: React__default.FC<Props$
|
|
1405
|
-
interface Props$
|
|
1408
|
+
declare const PopperArrow: React__default.FC<Props$38>;
|
|
1409
|
+
interface Props$38 {
|
|
1406
1410
|
/**
|
|
1407
1411
|
* Sets arrow size.
|
|
1408
1412
|
*/
|
|
1409
1413
|
size?: 'sm' | 'md';
|
|
1410
1414
|
}
|
|
1411
1415
|
|
|
1412
|
-
declare const Popper: React__default.ForwardRefExoticComponent<Props$
|
|
1413
|
-
interface Props$
|
|
1416
|
+
declare const Popper: React__default.ForwardRefExoticComponent<Props$37 & React__default.RefAttributes<HTMLElement>>;
|
|
1417
|
+
interface Props$37 {
|
|
1414
1418
|
/**
|
|
1415
1419
|
* Anchor element. Popper will be mounted to this element.
|
|
1416
1420
|
*/
|
|
@@ -1449,8 +1453,8 @@ interface Props$31 {
|
|
|
1449
1453
|
onKeyDown?: React__default.KeyboardEventHandler;
|
|
1450
1454
|
}
|
|
1451
1455
|
|
|
1452
|
-
declare const Menu: React$1.ForwardRefExoticComponent<Props$
|
|
1453
|
-
interface Props$
|
|
1456
|
+
declare const Menu: React$1.ForwardRefExoticComponent<Props$36 & React$1.RefAttributes<HTMLDivElement>>;
|
|
1457
|
+
interface Props$36 {
|
|
1454
1458
|
/**
|
|
1455
1459
|
* Anchor element.
|
|
1456
1460
|
*/
|
|
@@ -1481,16 +1485,16 @@ interface Props$30 {
|
|
|
1481
1485
|
sameWidth?: boolean;
|
|
1482
1486
|
}
|
|
1483
1487
|
|
|
1484
|
-
declare const ModalDialogActionContent: React$1.ForwardRefExoticComponent<Props$
|
|
1485
|
-
interface Props$
|
|
1488
|
+
declare const ModalDialogActionContent: React$1.ForwardRefExoticComponent<Props$35 & React$1.RefAttributes<HTMLDivElement>>;
|
|
1489
|
+
interface Props$35 {
|
|
1486
1490
|
/**
|
|
1487
1491
|
* Main content of the component.
|
|
1488
1492
|
*/
|
|
1489
1493
|
children?: React$1.ReactNode;
|
|
1490
1494
|
}
|
|
1491
1495
|
|
|
1492
|
-
declare const ModalDialogActionItem: React$1.ForwardRefExoticComponent<Props$
|
|
1493
|
-
interface Props$
|
|
1496
|
+
declare const ModalDialogActionItem: React$1.ForwardRefExoticComponent<Props$34 & React$1.RefAttributes<HTMLLIElement>>;
|
|
1497
|
+
interface Props$34 {
|
|
1494
1498
|
/**
|
|
1495
1499
|
* Main content of the component.
|
|
1496
1500
|
*/
|
|
@@ -1509,8 +1513,8 @@ interface Props$2_ {
|
|
|
1509
1513
|
isLoading?: boolean;
|
|
1510
1514
|
}
|
|
1511
1515
|
|
|
1512
|
-
declare const ModalDialogCallout: React$1.ForwardRefExoticComponent<Props$
|
|
1513
|
-
interface Props$
|
|
1516
|
+
declare const ModalDialogCallout: React$1.ForwardRefExoticComponent<Props$33 & React$1.RefAttributes<HTMLDivElement>>;
|
|
1517
|
+
interface Props$33 {
|
|
1514
1518
|
/**
|
|
1515
1519
|
* Main content of the component.
|
|
1516
1520
|
*/
|
|
@@ -1525,8 +1529,8 @@ interface Props$2Z {
|
|
|
1525
1529
|
type: 'error' | 'warning';
|
|
1526
1530
|
}
|
|
1527
1531
|
|
|
1528
|
-
declare const ModalDialogContent: React$1.ForwardRefExoticComponent<Props$
|
|
1529
|
-
interface Props$
|
|
1532
|
+
declare const ModalDialogContent: React$1.ForwardRefExoticComponent<Props$32 & React$1.RefAttributes<HTMLDivElement>>;
|
|
1533
|
+
interface Props$32 {
|
|
1530
1534
|
/**
|
|
1531
1535
|
* Main content of the component.
|
|
1532
1536
|
*/
|
|
@@ -1537,8 +1541,8 @@ interface Props$2Y {
|
|
|
1537
1541
|
id?: string;
|
|
1538
1542
|
}
|
|
1539
1543
|
|
|
1540
|
-
declare const ModalDialogContentColumn: React$1.ForwardRefExoticComponent<Props$
|
|
1541
|
-
interface Props$
|
|
1544
|
+
declare const ModalDialogContentColumn: React$1.ForwardRefExoticComponent<Props$31 & React$1.RefAttributes<HTMLDivElement>>;
|
|
1545
|
+
interface Props$31 {
|
|
1542
1546
|
/**
|
|
1543
1547
|
* Main content of the component.
|
|
1544
1548
|
*/
|
|
@@ -1549,8 +1553,8 @@ interface Props$2X {
|
|
|
1549
1553
|
id?: string;
|
|
1550
1554
|
}
|
|
1551
1555
|
|
|
1552
|
-
declare const ModalDialogList: React$1.ForwardRefExoticComponent<Props$
|
|
1553
|
-
interface Props$
|
|
1556
|
+
declare const ModalDialogList: React$1.ForwardRefExoticComponent<Props$30 & React$1.RefAttributes<HTMLDivElement>>;
|
|
1557
|
+
interface Props$30 {
|
|
1554
1558
|
/**
|
|
1555
1559
|
* Sets the dialog content ID.
|
|
1556
1560
|
*/
|
|
@@ -1565,16 +1569,16 @@ interface Props$2W {
|
|
|
1565
1569
|
children: React$1.ReactNode;
|
|
1566
1570
|
}
|
|
1567
1571
|
|
|
1568
|
-
declare const ModalDialogListItem: React$1.ForwardRefExoticComponent<Props$
|
|
1569
|
-
interface Props$
|
|
1572
|
+
declare const ModalDialogListItem: React$1.ForwardRefExoticComponent<Props$2$ & React$1.RefAttributes<HTMLLIElement>>;
|
|
1573
|
+
interface Props$2$ {
|
|
1570
1574
|
/**
|
|
1571
1575
|
* Item to display in the list.
|
|
1572
1576
|
*/
|
|
1573
1577
|
children: React$1.ReactNode;
|
|
1574
1578
|
}
|
|
1575
1579
|
|
|
1576
|
-
declare const ModalDialogFooter: React$1.ForwardRefExoticComponent<Props$
|
|
1577
|
-
interface Props$
|
|
1580
|
+
declare const ModalDialogFooter: React$1.ForwardRefExoticComponent<Props$2_ & React$1.RefAttributes<HTMLDivElement>>;
|
|
1581
|
+
interface Props$2_ {
|
|
1578
1582
|
/**
|
|
1579
1583
|
* Main content of the component.
|
|
1580
1584
|
*/
|
|
@@ -1585,16 +1589,16 @@ interface Props$2U {
|
|
|
1585
1589
|
spaceBetween?: boolean;
|
|
1586
1590
|
}
|
|
1587
1591
|
|
|
1588
|
-
declare const ModalDialogFooterAction: React$1.ForwardRefExoticComponent<Props$
|
|
1589
|
-
interface Props$
|
|
1592
|
+
declare const ModalDialogFooterAction: React$1.ForwardRefExoticComponent<Props$2Z & React$1.RefAttributes<HTMLDivElement>>;
|
|
1593
|
+
interface Props$2Z {
|
|
1590
1594
|
/**
|
|
1591
1595
|
* Main content of the component.
|
|
1592
1596
|
*/
|
|
1593
1597
|
children?: React$1.ReactNode;
|
|
1594
1598
|
}
|
|
1595
1599
|
|
|
1596
|
-
declare const ModalDialogHeader: React$1.ForwardRefExoticComponent<Props$
|
|
1597
|
-
interface Props$
|
|
1600
|
+
declare const ModalDialogHeader: React$1.ForwardRefExoticComponent<Props$2Y & React$1.RefAttributes<HTMLDivElement>>;
|
|
1601
|
+
interface Props$2Y {
|
|
1598
1602
|
/**
|
|
1599
1603
|
* Enables the top border accent.
|
|
1600
1604
|
*/
|
|
@@ -1606,7 +1610,7 @@ interface Props$2S {
|
|
|
1606
1610
|
/**
|
|
1607
1611
|
* Name of selected icon.
|
|
1608
1612
|
*/
|
|
1609
|
-
icon?: 'info' | 'success' | 'error' | 'warning' | React$1.ReactElement<Props$
|
|
1613
|
+
icon?: 'info' | 'success' | 'error' | 'warning' | React$1.ReactElement<Props$3N>;
|
|
1610
1614
|
/**
|
|
1611
1615
|
* Optional sub title of the modal.
|
|
1612
1616
|
*/
|
|
@@ -1621,8 +1625,8 @@ interface Props$2S {
|
|
|
1621
1625
|
titleId?: string;
|
|
1622
1626
|
}
|
|
1623
1627
|
|
|
1624
|
-
declare const ModalDialog: React$1.ForwardRefExoticComponent<Props$
|
|
1625
|
-
interface Props$
|
|
1628
|
+
declare const ModalDialog: React$1.ForwardRefExoticComponent<Props$2X & React$1.RefAttributes<HTMLDivElement>>;
|
|
1629
|
+
interface Props$2X {
|
|
1626
1630
|
/**
|
|
1627
1631
|
* Main content of the component.
|
|
1628
1632
|
*/
|
|
@@ -1720,8 +1724,16 @@ interface NavbarContext {
|
|
|
1720
1724
|
declare const NavbarContext: React$1.Context<NavbarContext>;
|
|
1721
1725
|
declare const useNavbarCtx: () => NavbarContext;
|
|
1722
1726
|
|
|
1723
|
-
declare const
|
|
1724
|
-
interface Props$
|
|
1727
|
+
declare const NavbarIcon: React$1.FC<Props$2W>;
|
|
1728
|
+
interface Props$2W {
|
|
1729
|
+
/**
|
|
1730
|
+
* Name of the icon to display.
|
|
1731
|
+
*/
|
|
1732
|
+
name: IconName;
|
|
1733
|
+
}
|
|
1734
|
+
|
|
1735
|
+
declare const NavbarItem: React$1.ForwardRefExoticComponent<Props$2V & React$1.RefAttributes<HTMLDivElement>>;
|
|
1736
|
+
interface Props$2V {
|
|
1725
1737
|
/**
|
|
1726
1738
|
* Applies active styling.
|
|
1727
1739
|
*/
|
|
@@ -1788,8 +1800,8 @@ interface Props$2Q {
|
|
|
1788
1800
|
onDelete?: () => void;
|
|
1789
1801
|
}
|
|
1790
1802
|
|
|
1791
|
-
declare const NavbarItemContainer: React$1.FC<Props$
|
|
1792
|
-
interface Props$
|
|
1803
|
+
declare const NavbarItemContainer: React$1.FC<Props$2U>;
|
|
1804
|
+
interface Props$2U {
|
|
1793
1805
|
/**
|
|
1794
1806
|
* Marks container as active.
|
|
1795
1807
|
*/
|
|
@@ -1800,8 +1812,8 @@ interface Props$2P {
|
|
|
1800
1812
|
children: React$1.ReactNode;
|
|
1801
1813
|
}
|
|
1802
1814
|
|
|
1803
|
-
declare const NavbarItemContent: React$1.FC<Props$
|
|
1804
|
-
interface Props$
|
|
1815
|
+
declare const NavbarItemContent: React$1.FC<Props$2T>;
|
|
1816
|
+
interface Props$2T {
|
|
1805
1817
|
/**
|
|
1806
1818
|
* Adds enter / exit animation.
|
|
1807
1819
|
*/
|
|
@@ -1820,8 +1832,8 @@ interface Props$2O {
|
|
|
1820
1832
|
hidden?: boolean;
|
|
1821
1833
|
}
|
|
1822
1834
|
|
|
1823
|
-
declare const NavbarItemLabel: React$1.FC<Props$
|
|
1824
|
-
interface Props$
|
|
1835
|
+
declare const NavbarItemLabel: React$1.FC<Props$2S>;
|
|
1836
|
+
interface Props$2S {
|
|
1825
1837
|
/**
|
|
1826
1838
|
* Toggles icon animation if parent item is hovered.
|
|
1827
1839
|
*/
|
|
@@ -1833,11 +1845,11 @@ interface Props$2N {
|
|
|
1833
1845
|
/**
|
|
1834
1846
|
* Displayed icon.
|
|
1835
1847
|
*/
|
|
1836
|
-
icon?: React$1.ReactElement<Props$
|
|
1848
|
+
icon?: React$1.ReactElement<Props$3N>;
|
|
1837
1849
|
}
|
|
1838
1850
|
|
|
1839
|
-
declare const NavbarItemsGroup: React$1.FC<Props$
|
|
1840
|
-
interface Props$
|
|
1851
|
+
declare const NavbarItemsGroup: React$1.FC<Props$2R>;
|
|
1852
|
+
interface Props$2R {
|
|
1841
1853
|
/**
|
|
1842
1854
|
* Animates group on collapse.
|
|
1843
1855
|
*/
|
|
@@ -1856,8 +1868,8 @@ interface Props$2M {
|
|
|
1856
1868
|
level?: number;
|
|
1857
1869
|
}
|
|
1858
1870
|
|
|
1859
|
-
declare const NavbarLink: React$1.FC<Props$
|
|
1860
|
-
interface Props$
|
|
1871
|
+
declare const NavbarLink: React$1.FC<Props$2Q>;
|
|
1872
|
+
interface Props$2Q {
|
|
1861
1873
|
/**
|
|
1862
1874
|
* Renders link content.
|
|
1863
1875
|
*/
|
|
@@ -1870,8 +1882,8 @@ interface Props$2L {
|
|
|
1870
1882
|
href?: string;
|
|
1871
1883
|
}
|
|
1872
1884
|
|
|
1873
|
-
declare const NavbarScrollableContent: React$1.FC<Props$
|
|
1874
|
-
interface Props$
|
|
1885
|
+
declare const NavbarScrollableContent: React$1.FC<Props$2P>;
|
|
1886
|
+
interface Props$2P {
|
|
1875
1887
|
/**
|
|
1876
1888
|
* Main content of the component.
|
|
1877
1889
|
*/
|
|
@@ -1880,8 +1892,8 @@ interface Props$2K {
|
|
|
1880
1892
|
|
|
1881
1893
|
declare const NavbarSeparator: React$1.FC;
|
|
1882
1894
|
|
|
1883
|
-
declare const NavbarToggleButton: React$1.FC<Props$
|
|
1884
|
-
interface Props$
|
|
1895
|
+
declare const NavbarToggleButton: React$1.FC<Props$2O>;
|
|
1896
|
+
interface Props$2O {
|
|
1885
1897
|
/**
|
|
1886
1898
|
* Label shown when navbar will collapse.
|
|
1887
1899
|
*/
|
|
@@ -1896,8 +1908,8 @@ interface Props$2J {
|
|
|
1896
1908
|
openLabel?: string;
|
|
1897
1909
|
}
|
|
1898
1910
|
|
|
1899
|
-
declare const Navbar: React$1.FC<Props$
|
|
1900
|
-
interface Props$
|
|
1911
|
+
declare const Navbar: React$1.FC<Props$2N>;
|
|
1912
|
+
interface Props$2N {
|
|
1901
1913
|
/**
|
|
1902
1914
|
* Labels navigation element.
|
|
1903
1915
|
*/
|
|
@@ -1916,8 +1928,8 @@ interface Props$2I {
|
|
|
1916
1928
|
onActiveItemFocus?: () => void;
|
|
1917
1929
|
}
|
|
1918
1930
|
|
|
1919
|
-
declare const Modal: React$1.FC<Props$
|
|
1920
|
-
interface Props$
|
|
1931
|
+
declare const Modal: React$1.FC<Props$2M>;
|
|
1932
|
+
interface Props$2M {
|
|
1921
1933
|
/**
|
|
1922
1934
|
* Optional children.
|
|
1923
1935
|
*/
|
|
@@ -1940,16 +1952,16 @@ interface Props$2H {
|
|
|
1940
1952
|
variant?: 'transparent' | 'semi-transparent';
|
|
1941
1953
|
}
|
|
1942
1954
|
|
|
1943
|
-
declare const PanelActions: React$1.FC<Props$
|
|
1944
|
-
interface Props$
|
|
1955
|
+
declare const PanelActions: React$1.FC<Props$2L>;
|
|
1956
|
+
interface Props$2L {
|
|
1945
1957
|
/**
|
|
1946
1958
|
* Main content of the component.
|
|
1947
1959
|
*/
|
|
1948
1960
|
children?: React$1.ReactNode;
|
|
1949
1961
|
}
|
|
1950
1962
|
|
|
1951
|
-
declare const PanelCheckbox: React$1.FC<Props$
|
|
1952
|
-
interface Props$
|
|
1963
|
+
declare const PanelCheckbox: React$1.FC<Props$2K>;
|
|
1964
|
+
interface Props$2K {
|
|
1953
1965
|
/**
|
|
1954
1966
|
* Sets current input's value.
|
|
1955
1967
|
*/
|
|
@@ -1968,16 +1980,16 @@ interface Props$2F {
|
|
|
1968
1980
|
description?: React$1.ReactNode;
|
|
1969
1981
|
}
|
|
1970
1982
|
|
|
1971
|
-
declare const PanelColumn: React$1.FC<Props$
|
|
1972
|
-
interface Props$
|
|
1983
|
+
declare const PanelColumn: React$1.FC<Props$2J>;
|
|
1984
|
+
interface Props$2J {
|
|
1973
1985
|
/**
|
|
1974
1986
|
* Main content of the component.
|
|
1975
1987
|
*/
|
|
1976
1988
|
children: React$1.ReactNode;
|
|
1977
1989
|
}
|
|
1978
1990
|
|
|
1979
|
-
declare const PanelContent: React$1.ForwardRefExoticComponent<Props$
|
|
1980
|
-
interface Props$
|
|
1991
|
+
declare const PanelContent: React$1.ForwardRefExoticComponent<Props$2I & React$1.RefAttributes<HTMLDivElement>>;
|
|
1992
|
+
interface Props$2I {
|
|
1981
1993
|
/**
|
|
1982
1994
|
* Main content of the component.
|
|
1983
1995
|
*/
|
|
@@ -1996,8 +2008,8 @@ interface Props$2D {
|
|
|
1996
2008
|
header?: string;
|
|
1997
2009
|
}
|
|
1998
2010
|
|
|
1999
|
-
declare const PanelContentProp: React$1.FC<Props$
|
|
2000
|
-
interface Props$
|
|
2011
|
+
declare const PanelContentProp: React$1.FC<Props$2H>;
|
|
2012
|
+
interface Props$2H {
|
|
2001
2013
|
/**
|
|
2002
2014
|
* Property label.
|
|
2003
2015
|
*/
|
|
@@ -2010,8 +2022,8 @@ interface Props$2C {
|
|
|
2010
2022
|
|
|
2011
2023
|
declare const PanelDragHandle: React$1.ForwardRefExoticComponent<React$1.RefAttributes<HTMLDivElement>>;
|
|
2012
2024
|
|
|
2013
|
-
declare const PanelList: React$1.FC<Props$
|
|
2014
|
-
interface Props$
|
|
2025
|
+
declare const PanelList: React$1.FC<Props$2G>;
|
|
2026
|
+
interface Props$2G {
|
|
2015
2027
|
/**
|
|
2016
2028
|
* Main content.
|
|
2017
2029
|
*/
|
|
@@ -2026,16 +2038,16 @@ interface Props$2B {
|
|
|
2026
2038
|
toolbarLoading?: boolean;
|
|
2027
2039
|
}
|
|
2028
2040
|
|
|
2029
|
-
declare const PanelListDivider: React$1.FC<Props$
|
|
2030
|
-
interface Props$
|
|
2041
|
+
declare const PanelListDivider: React$1.FC<Props$2F>;
|
|
2042
|
+
interface Props$2F {
|
|
2031
2043
|
/**
|
|
2032
2044
|
* Toggles component opacity.
|
|
2033
2045
|
*/
|
|
2034
2046
|
opaque?: boolean;
|
|
2035
2047
|
}
|
|
2036
2048
|
|
|
2037
|
-
declare const PanelSide: React$1.FC<Props$
|
|
2038
|
-
interface Props$
|
|
2049
|
+
declare const PanelSide: React$1.FC<Props$2E>;
|
|
2050
|
+
interface Props$2E {
|
|
2039
2051
|
/**
|
|
2040
2052
|
* Custom content rendered instead of icon.
|
|
2041
2053
|
*/
|
|
@@ -2057,8 +2069,8 @@ interface Props$2z {
|
|
|
2057
2069
|
verticalSpacing?: boolean;
|
|
2058
2070
|
}
|
|
2059
2071
|
|
|
2060
|
-
declare const PanelSkeleton: React$1.FC<Props$
|
|
2061
|
-
interface Props$
|
|
2072
|
+
declare const PanelSkeleton: React$1.FC<Props$2D>;
|
|
2073
|
+
interface Props$2D {
|
|
2062
2074
|
/**
|
|
2063
2075
|
* Number of loading blocks.
|
|
2064
2076
|
*/
|
|
@@ -2073,8 +2085,8 @@ interface Props$2y {
|
|
|
2073
2085
|
spacing?: boolean;
|
|
2074
2086
|
}
|
|
2075
2087
|
|
|
2076
|
-
declare const PanelTitle: React$1.ForwardRefExoticComponent<Props$
|
|
2077
|
-
interface Props$
|
|
2088
|
+
declare const PanelTitle: React$1.ForwardRefExoticComponent<Props$2C & React$1.RefAttributes<HTMLDivElement>>;
|
|
2089
|
+
interface Props$2C extends Omit<Props$2I, 'children'> {
|
|
2078
2090
|
/**
|
|
2079
2091
|
* Panel's title.
|
|
2080
2092
|
*/
|
|
@@ -2089,8 +2101,8 @@ interface Props$2x extends Omit<Props$2D, 'children'> {
|
|
|
2089
2101
|
tooltip?: string;
|
|
2090
2102
|
}
|
|
2091
2103
|
|
|
2092
|
-
declare const PanelDescriptionItem: React$1.FC<Props$
|
|
2093
|
-
interface Props$
|
|
2104
|
+
declare const PanelDescriptionItem: React$1.FC<Props$2B>;
|
|
2105
|
+
interface Props$2B {
|
|
2094
2106
|
/**
|
|
2095
2107
|
* Main components content.
|
|
2096
2108
|
*/
|
|
@@ -2176,8 +2188,8 @@ declare const useListDnd: (initItems: ListDndItem[]) => {
|
|
|
2176
2188
|
setDraggable: ListDndSetDraggable;
|
|
2177
2189
|
};
|
|
2178
2190
|
|
|
2179
|
-
declare const SortableDndListItem: React$1.FC<Props$
|
|
2180
|
-
interface Props$
|
|
2191
|
+
declare const SortableDndListItem: React$1.FC<Props$2A>;
|
|
2192
|
+
interface Props$2A {
|
|
2181
2193
|
/**
|
|
2182
2194
|
* Current item's index in a list.
|
|
2183
2195
|
*/
|
|
@@ -2219,8 +2231,8 @@ interface SortableDndListContextShape {
|
|
|
2219
2231
|
onDragEnd?: ListDndOnDragEnd;
|
|
2220
2232
|
}
|
|
2221
2233
|
|
|
2222
|
-
declare const SortableDndList: React$1.FC<Props$
|
|
2223
|
-
interface Props$
|
|
2234
|
+
declare const SortableDndList: React$1.FC<Props$2z>;
|
|
2235
|
+
interface Props$2z extends SortableDndListContextShape {
|
|
2224
2236
|
/**
|
|
2225
2237
|
* Main content of the component.
|
|
2226
2238
|
*/
|
|
@@ -2238,8 +2250,8 @@ interface PanelContextShape extends Partial<ListDndChildProps> {
|
|
|
2238
2250
|
edit?: boolean;
|
|
2239
2251
|
}
|
|
2240
2252
|
|
|
2241
|
-
declare const Panel: React$1.ForwardRefExoticComponent<Props$
|
|
2242
|
-
interface Props$
|
|
2253
|
+
declare const Panel: React$1.ForwardRefExoticComponent<Props$2y & React$1.RefAttributes<HTMLDivElement>>;
|
|
2254
|
+
interface Props$2y extends PanelContextShape {
|
|
2243
2255
|
/**
|
|
2244
2256
|
* Main content of the component.
|
|
2245
2257
|
*/
|
|
@@ -2258,8 +2270,8 @@ interface Props$2t extends PanelContextShape {
|
|
|
2258
2270
|
elevated?: boolean;
|
|
2259
2271
|
}
|
|
2260
2272
|
|
|
2261
|
-
declare const Pagination: React$1.FC<Props$
|
|
2262
|
-
interface Props$
|
|
2273
|
+
declare const Pagination: React$1.FC<Props$2x>;
|
|
2274
|
+
interface Props$2x {
|
|
2263
2275
|
/**
|
|
2264
2276
|
* Disables interaction with pagination.
|
|
2265
2277
|
*/
|
|
@@ -2302,24 +2314,24 @@ interface Props$2s {
|
|
|
2302
2314
|
prevPageLabel?: string;
|
|
2303
2315
|
}
|
|
2304
2316
|
|
|
2305
|
-
declare const Permissions: React$1.FC<Props$
|
|
2306
|
-
interface Props$
|
|
2317
|
+
declare const Permissions: React$1.FC<Props$2w>;
|
|
2318
|
+
interface Props$2w {
|
|
2307
2319
|
/**
|
|
2308
2320
|
* Main content of the component.
|
|
2309
2321
|
*/
|
|
2310
2322
|
children: React$1.ReactNode;
|
|
2311
2323
|
}
|
|
2312
2324
|
|
|
2313
|
-
declare const PermissionsPanel: ({ children }: Props$
|
|
2314
|
-
interface Props$
|
|
2325
|
+
declare const PermissionsPanel: ({ children }: Props$2v) => React$1.JSX.Element;
|
|
2326
|
+
interface Props$2v {
|
|
2315
2327
|
/**
|
|
2316
2328
|
* Main content of the component.
|
|
2317
2329
|
*/
|
|
2318
2330
|
children?: React$1.ReactNode;
|
|
2319
2331
|
}
|
|
2320
2332
|
|
|
2321
|
-
declare const PermissionsTitle: React$1.FC<Props$
|
|
2322
|
-
interface Props$
|
|
2333
|
+
declare const PermissionsTitle: React$1.FC<Props$2u>;
|
|
2334
|
+
interface Props$2u {
|
|
2323
2335
|
/**
|
|
2324
2336
|
* Flag to enable select all mode.
|
|
2325
2337
|
*/
|
|
@@ -2344,24 +2356,24 @@ interface Props$2p {
|
|
|
2344
2356
|
onSelectAll?: (checked: boolean) => void;
|
|
2345
2357
|
}
|
|
2346
2358
|
|
|
2347
|
-
declare const PermissionsContent: ({ children }: Props$
|
|
2348
|
-
interface Props$
|
|
2359
|
+
declare const PermissionsContent: ({ children }: Props$2t) => React$1.JSX.Element;
|
|
2360
|
+
interface Props$2t {
|
|
2349
2361
|
/**
|
|
2350
2362
|
* Main content of the component.
|
|
2351
2363
|
*/
|
|
2352
2364
|
children: React$1.ReactNode;
|
|
2353
2365
|
}
|
|
2354
2366
|
|
|
2355
|
-
declare const PermissionsForm: ({ children }: Props$
|
|
2356
|
-
interface Props$
|
|
2367
|
+
declare const PermissionsForm: ({ children }: Props$2s) => React$1.JSX.Element;
|
|
2368
|
+
interface Props$2s {
|
|
2357
2369
|
/**
|
|
2358
2370
|
* Main content of the component.
|
|
2359
2371
|
*/
|
|
2360
2372
|
children: React$1.ReactNode;
|
|
2361
2373
|
}
|
|
2362
2374
|
|
|
2363
|
-
declare const PermissionsFormGroup: ({ children, title, isCompact }: Props$
|
|
2364
|
-
interface Props$
|
|
2375
|
+
declare const PermissionsFormGroup: ({ children, title, isCompact }: Props$2r) => React$1.JSX.Element;
|
|
2376
|
+
interface Props$2r {
|
|
2365
2377
|
/**
|
|
2366
2378
|
* Title of the form group.
|
|
2367
2379
|
*/
|
|
@@ -2376,8 +2388,8 @@ interface Props$2m {
|
|
|
2376
2388
|
isCompact?: boolean;
|
|
2377
2389
|
}
|
|
2378
2390
|
|
|
2379
|
-
declare const PermissionsFormInput: ({ checked, label, tooltip, onChange }: Props$
|
|
2380
|
-
interface Props$
|
|
2391
|
+
declare const PermissionsFormInput: ({ checked, label, tooltip, onChange }: Props$2q) => React$1.JSX.Element;
|
|
2392
|
+
interface Props$2q {
|
|
2381
2393
|
/**
|
|
2382
2394
|
* Flag to indicate if the input is checked.
|
|
2383
2395
|
*/
|
|
@@ -2398,16 +2410,16 @@ interface Props$2l {
|
|
|
2398
2410
|
onChange: (checked: boolean) => void;
|
|
2399
2411
|
}
|
|
2400
2412
|
|
|
2401
|
-
declare const PermissionsActions: ({ children }: Props$
|
|
2402
|
-
interface Props$
|
|
2413
|
+
declare const PermissionsActions: ({ children }: Props$2p) => React$1.JSX.Element;
|
|
2414
|
+
interface Props$2p {
|
|
2403
2415
|
/**
|
|
2404
2416
|
* Main content of the component.
|
|
2405
2417
|
*/
|
|
2406
2418
|
children?: React$1.ReactNode;
|
|
2407
2419
|
}
|
|
2408
2420
|
|
|
2409
|
-
declare const PermissionsScopeHeader: React$1.FC<Props$
|
|
2410
|
-
interface Props$
|
|
2421
|
+
declare const PermissionsScopeHeader: React$1.FC<Props$2o>;
|
|
2422
|
+
interface Props$2o {
|
|
2411
2423
|
/**
|
|
2412
2424
|
* Description label to display.
|
|
2413
2425
|
*/
|
|
@@ -2418,8 +2430,8 @@ interface Props$2j {
|
|
|
2418
2430
|
children: React$1.ReactNode;
|
|
2419
2431
|
}
|
|
2420
2432
|
|
|
2421
|
-
declare const PermissionsScopeList: React$1.FC<Props$
|
|
2422
|
-
interface Props$
|
|
2433
|
+
declare const PermissionsScopeList: React$1.FC<Props$2n>;
|
|
2434
|
+
interface Props$2n {
|
|
2423
2435
|
/**
|
|
2424
2436
|
* Description label to display.
|
|
2425
2437
|
*/
|
|
@@ -2430,8 +2442,8 @@ interface Props$2i {
|
|
|
2430
2442
|
children: React$1.ReactNode;
|
|
2431
2443
|
}
|
|
2432
2444
|
|
|
2433
|
-
declare const PermissionTag: ({ active, children }: Props$
|
|
2434
|
-
interface Props$
|
|
2445
|
+
declare const PermissionTag: ({ active, children }: Props$2m) => React$1.JSX.Element;
|
|
2446
|
+
interface Props$2m {
|
|
2435
2447
|
/**
|
|
2436
2448
|
* Toggles active state of the component.
|
|
2437
2449
|
*/
|
|
@@ -2447,8 +2459,8 @@ type PermissionMap = {
|
|
|
2447
2459
|
[key in PermissionName]: boolean;
|
|
2448
2460
|
};
|
|
2449
2461
|
|
|
2450
|
-
declare const PermissionsManagementPanelHeader: React$1.FC<Props$
|
|
2451
|
-
interface Props$
|
|
2462
|
+
declare const PermissionsManagementPanelHeader: React$1.FC<Props$2l>;
|
|
2463
|
+
interface Props$2l {
|
|
2452
2464
|
/**
|
|
2453
2465
|
* Title to display.
|
|
2454
2466
|
*/
|
|
@@ -2467,8 +2479,8 @@ interface Props$2g {
|
|
|
2467
2479
|
onClose: () => void;
|
|
2468
2480
|
}
|
|
2469
2481
|
|
|
2470
|
-
declare const PermissionsManagementPanelRulesHeader: React$1.FC<Props$
|
|
2471
|
-
interface Props$
|
|
2482
|
+
declare const PermissionsManagementPanelRulesHeader: React$1.FC<Props$2k>;
|
|
2483
|
+
interface Props$2k {
|
|
2472
2484
|
/**
|
|
2473
2485
|
* Title to display.
|
|
2474
2486
|
*/
|
|
@@ -2479,16 +2491,16 @@ interface Props$2f {
|
|
|
2479
2491
|
children: React$1.ReactNode;
|
|
2480
2492
|
}
|
|
2481
2493
|
|
|
2482
|
-
declare const PermissionsManagementPanel: React$1.FC<Props$
|
|
2483
|
-
interface Props$
|
|
2494
|
+
declare const PermissionsManagementPanel: React$1.FC<Props$2j>;
|
|
2495
|
+
interface Props$2j {
|
|
2484
2496
|
/**
|
|
2485
2497
|
* Main content of the component.
|
|
2486
2498
|
*/
|
|
2487
2499
|
children: React$1.ReactNode;
|
|
2488
2500
|
}
|
|
2489
2501
|
|
|
2490
|
-
declare const ProgressPanel: React$1.ForwardRefExoticComponent<Props$
|
|
2491
|
-
interface Props$
|
|
2502
|
+
declare const ProgressPanel: React$1.ForwardRefExoticComponent<Props$2i & React$1.RefAttributes<HTMLDivElement>>;
|
|
2503
|
+
interface Props$2i {
|
|
2492
2504
|
/**
|
|
2493
2505
|
* Additional info rendered close to a title.
|
|
2494
2506
|
*/
|
|
@@ -2531,8 +2543,32 @@ interface Props$2d {
|
|
|
2531
2543
|
navigationLabel?: string;
|
|
2532
2544
|
}
|
|
2533
2545
|
|
|
2534
|
-
declare const
|
|
2535
|
-
interface Props$
|
|
2546
|
+
declare const PropertiesTableButton: React$1.FC<Props$2h>;
|
|
2547
|
+
interface Props$2h {
|
|
2548
|
+
/**
|
|
2549
|
+
* Click handler.
|
|
2550
|
+
*/
|
|
2551
|
+
onClick: React$1.MouseEventHandler;
|
|
2552
|
+
/**
|
|
2553
|
+
* Icon to display.
|
|
2554
|
+
*/
|
|
2555
|
+
icon?: IconName;
|
|
2556
|
+
/**
|
|
2557
|
+
* Custom icon render function.
|
|
2558
|
+
*/
|
|
2559
|
+
iconRender?: IconRenderProp;
|
|
2560
|
+
/**
|
|
2561
|
+
* Whether the button should be hidden.
|
|
2562
|
+
*/
|
|
2563
|
+
hidden?: boolean;
|
|
2564
|
+
/**
|
|
2565
|
+
* Button content.
|
|
2566
|
+
*/
|
|
2567
|
+
children?: React$1.ReactNode;
|
|
2568
|
+
}
|
|
2569
|
+
|
|
2570
|
+
declare const PropertiesTableRow: React$1.FC<Props$2g>;
|
|
2571
|
+
interface Props$2g {
|
|
2536
2572
|
/**
|
|
2537
2573
|
* Item's label.
|
|
2538
2574
|
*/
|
|
@@ -2543,16 +2579,16 @@ interface Props$2c {
|
|
|
2543
2579
|
value: React$1.ReactNode;
|
|
2544
2580
|
}
|
|
2545
2581
|
|
|
2546
|
-
declare const PropertiesTable: React$1.FC<Props$
|
|
2547
|
-
interface Props$
|
|
2582
|
+
declare const PropertiesTable: React$1.FC<Props$2f>;
|
|
2583
|
+
interface Props$2f {
|
|
2548
2584
|
/**
|
|
2549
2585
|
* Main content of the component.
|
|
2550
2586
|
*/
|
|
2551
2587
|
children: React$1.ReactNode;
|
|
2552
2588
|
}
|
|
2553
2589
|
|
|
2554
|
-
declare const ResponsiveImageFit: React$1.FC<Props$
|
|
2555
|
-
interface Props$
|
|
2590
|
+
declare const ResponsiveImageFit: React$1.FC<Props$2e>;
|
|
2591
|
+
interface Props$2e {
|
|
2556
2592
|
/**
|
|
2557
2593
|
* Image alt text.
|
|
2558
2594
|
*/
|
|
@@ -2591,8 +2627,8 @@ interface Props$2a {
|
|
|
2591
2627
|
sizes?: number;
|
|
2592
2628
|
}
|
|
2593
2629
|
|
|
2594
|
-
declare const ResponsiveImageFallback: React$1.FC<Props$
|
|
2595
|
-
interface Props$
|
|
2630
|
+
declare const ResponsiveImageFallback: React$1.FC<Props$2d>;
|
|
2631
|
+
interface Props$2d {
|
|
2596
2632
|
/**
|
|
2597
2633
|
* Indicates if cover is allowed for the image.
|
|
2598
2634
|
*/
|
|
@@ -2619,8 +2655,8 @@ interface Props$29 {
|
|
|
2619
2655
|
showFallback?: boolean;
|
|
2620
2656
|
}
|
|
2621
2657
|
|
|
2622
|
-
declare const ResponsiveImageScalable: React$1.FC<Props$
|
|
2623
|
-
interface Props$
|
|
2658
|
+
declare const ResponsiveImageScalable: React$1.FC<Props$2c>;
|
|
2659
|
+
interface Props$2c {
|
|
2624
2660
|
/**
|
|
2625
2661
|
* Image alt text.
|
|
2626
2662
|
*/
|
|
@@ -2669,8 +2705,8 @@ interface Props$28 {
|
|
|
2669
2705
|
|
|
2670
2706
|
declare const ResponsiveImageSkeleton: React$1.FC;
|
|
2671
2707
|
|
|
2672
|
-
declare const ResponsiveImage: React$1.FC<Props$
|
|
2673
|
-
interface Props$
|
|
2708
|
+
declare const ResponsiveImage: React$1.FC<Props$2b>;
|
|
2709
|
+
interface Props$2b {
|
|
2674
2710
|
/**
|
|
2675
2711
|
* List of available breakpoints.
|
|
2676
2712
|
*/
|
|
@@ -2693,8 +2729,8 @@ interface Props$27 {
|
|
|
2693
2729
|
loader?: React$1.ReactNode;
|
|
2694
2730
|
}
|
|
2695
2731
|
|
|
2696
|
-
declare const Skeleton: React$1.FC<Props$
|
|
2697
|
-
interface Props$
|
|
2732
|
+
declare const Skeleton: React$1.FC<Props$2a>;
|
|
2733
|
+
interface Props$2a {
|
|
2698
2734
|
/**
|
|
2699
2735
|
* Optional class name. It overrides class responsible for background color.
|
|
2700
2736
|
*/
|
|
@@ -2709,8 +2745,8 @@ interface Props$26 {
|
|
|
2709
2745
|
width?: string;
|
|
2710
2746
|
}
|
|
2711
2747
|
|
|
2712
|
-
declare const SortButton: React$1.FC<Props$
|
|
2713
|
-
interface Props$
|
|
2748
|
+
declare const SortButton: React$1.FC<Props$29>;
|
|
2749
|
+
interface Props$29 {
|
|
2714
2750
|
/**
|
|
2715
2751
|
* Button's aria label.
|
|
2716
2752
|
*/
|
|
@@ -2737,8 +2773,8 @@ interface Props$25 {
|
|
|
2737
2773
|
sizing?: ButtonSize;
|
|
2738
2774
|
}
|
|
2739
2775
|
|
|
2740
|
-
declare const SwitchView: React$1.FC<Props$
|
|
2741
|
-
interface Props$
|
|
2776
|
+
declare const SwitchView: React$1.FC<Props$28>;
|
|
2777
|
+
interface Props$28 {
|
|
2742
2778
|
/**
|
|
2743
2779
|
* Main content of the component.
|
|
2744
2780
|
*/
|
|
@@ -2749,8 +2785,8 @@ interface Props$24 {
|
|
|
2749
2785
|
id?: string | string[];
|
|
2750
2786
|
}
|
|
2751
2787
|
|
|
2752
|
-
declare const Switch: React$1.FC<Props$
|
|
2753
|
-
interface Props$
|
|
2788
|
+
declare const Switch: React$1.FC<Props$27>;
|
|
2789
|
+
interface Props$27 {
|
|
2754
2790
|
/**
|
|
2755
2791
|
* Main content of the component.
|
|
2756
2792
|
*/
|
|
@@ -2761,8 +2797,8 @@ interface Props$23 {
|
|
|
2761
2797
|
match?: string;
|
|
2762
2798
|
}
|
|
2763
2799
|
|
|
2764
|
-
declare const SwitchInput: React$1.FC<Props$
|
|
2765
|
-
interface Props$
|
|
2800
|
+
declare const SwitchInput: React$1.FC<Props$26>;
|
|
2801
|
+
interface Props$26 {
|
|
2766
2802
|
/**
|
|
2767
2803
|
* Sets current input's value.
|
|
2768
2804
|
*/
|
|
@@ -2781,8 +2817,8 @@ interface Props$22 {
|
|
|
2781
2817
|
onChange: (checked: boolean) => void;
|
|
2782
2818
|
}
|
|
2783
2819
|
|
|
2784
|
-
declare const TagList: React$1.FC<Props$
|
|
2785
|
-
interface Props$
|
|
2820
|
+
declare const TagList: React$1.FC<Props$25>;
|
|
2821
|
+
interface Props$25 {
|
|
2786
2822
|
/**
|
|
2787
2823
|
* Main content of the component.
|
|
2788
2824
|
*/
|
|
@@ -2791,10 +2827,14 @@ interface Props$21 {
|
|
|
2791
2827
|
* Optional root class name.
|
|
2792
2828
|
*/
|
|
2793
2829
|
className?: string;
|
|
2830
|
+
/**
|
|
2831
|
+
* Disables wrapping of tags.
|
|
2832
|
+
*/
|
|
2833
|
+
disableWrap?: boolean;
|
|
2794
2834
|
}
|
|
2795
2835
|
|
|
2796
|
-
declare const TagLabel: React$1.FC<Props$
|
|
2797
|
-
interface Props$
|
|
2836
|
+
declare const TagLabel: React$1.FC<Props$24>;
|
|
2837
|
+
interface Props$24 {
|
|
2798
2838
|
/**
|
|
2799
2839
|
* Emphasizes tag content.
|
|
2800
2840
|
*/
|
|
@@ -2805,8 +2845,8 @@ interface Props$20 {
|
|
|
2805
2845
|
children: React$1.ReactNode;
|
|
2806
2846
|
}
|
|
2807
2847
|
|
|
2808
|
-
declare const Tag: React$1.ForwardRefExoticComponent<Props$
|
|
2809
|
-
interface Props$
|
|
2848
|
+
declare const Tag: React$1.ForwardRefExoticComponent<Props$23 & React$1.RefAttributes<HTMLDivElement>>;
|
|
2849
|
+
interface Props$23 {
|
|
2810
2850
|
/**
|
|
2811
2851
|
* Sets component's children.
|
|
2812
2852
|
*/
|
|
@@ -2837,8 +2877,8 @@ interface Props$1$ {
|
|
|
2837
2877
|
removeLabel?: string;
|
|
2838
2878
|
}
|
|
2839
2879
|
|
|
2840
|
-
declare const TagInput: React$1.FC<Props$
|
|
2841
|
-
interface Props$
|
|
2880
|
+
declare const TagInput: React$1.FC<Props$22>;
|
|
2881
|
+
interface Props$22 {
|
|
2842
2882
|
/**
|
|
2843
2883
|
* Input's class name.
|
|
2844
2884
|
*/
|
|
@@ -2890,8 +2930,8 @@ interface Props$1_ {
|
|
|
2890
2930
|
disabled?: boolean;
|
|
2891
2931
|
}
|
|
2892
2932
|
|
|
2893
|
-
declare const Tab: React$1.FC<Props$
|
|
2894
|
-
interface Props$
|
|
2933
|
+
declare const Tab: React$1.FC<Props$21>;
|
|
2934
|
+
interface Props$21 {
|
|
2895
2935
|
/**
|
|
2896
2936
|
* Main content.
|
|
2897
2937
|
*/
|
|
@@ -2914,8 +2954,8 @@ interface Props$1Z {
|
|
|
2914
2954
|
variant?: 'default' | 'fullscreen';
|
|
2915
2955
|
}
|
|
2916
2956
|
|
|
2917
|
-
declare const TabPanel: React$1.FC<Props$
|
|
2918
|
-
interface Props$
|
|
2957
|
+
declare const TabPanel: React$1.FC<Props$20>;
|
|
2958
|
+
interface Props$20 {
|
|
2919
2959
|
/**
|
|
2920
2960
|
* Main content of the component.
|
|
2921
2961
|
*/
|
|
@@ -2934,8 +2974,8 @@ interface Props$1Y {
|
|
|
2934
2974
|
className?: string;
|
|
2935
2975
|
}
|
|
2936
2976
|
|
|
2937
|
-
declare const Tabs: React$1.FC<Props$
|
|
2938
|
-
interface Props$
|
|
2977
|
+
declare const Tabs: React$1.FC<Props$1$>;
|
|
2978
|
+
interface Props$1$ {
|
|
2939
2979
|
/**
|
|
2940
2980
|
* Currently selected tab.
|
|
2941
2981
|
*/
|
|
@@ -2950,8 +2990,8 @@ interface Props$1X {
|
|
|
2950
2990
|
onSelect?: (id: string) => void;
|
|
2951
2991
|
}
|
|
2952
2992
|
|
|
2953
|
-
declare const Tooltip: React$1.FC<Props$
|
|
2954
|
-
interface Props$
|
|
2993
|
+
declare const Tooltip: React$1.FC<Props$1_>;
|
|
2994
|
+
interface Props$1_ {
|
|
2955
2995
|
/**
|
|
2956
2996
|
* Main content of the component.
|
|
2957
2997
|
* It must be a single child that accepts `ref`.
|
|
@@ -2977,8 +3017,24 @@ interface Props$1W {
|
|
|
2977
3017
|
wrap?: boolean;
|
|
2978
3018
|
}
|
|
2979
3019
|
|
|
2980
|
-
declare const
|
|
2981
|
-
interface Props$
|
|
3020
|
+
declare const ChooseTopbarAction: React$1.FC<Props$1Z>;
|
|
3021
|
+
interface Props$1Z {
|
|
3022
|
+
/**
|
|
3023
|
+
* Action label.
|
|
3024
|
+
*/
|
|
3025
|
+
label: string;
|
|
3026
|
+
/**
|
|
3027
|
+
* Displays as disabled.
|
|
3028
|
+
*/
|
|
3029
|
+
disabled?: boolean;
|
|
3030
|
+
/**
|
|
3031
|
+
* Action invoked upon click.
|
|
3032
|
+
*/
|
|
3033
|
+
onClick?: () => void;
|
|
3034
|
+
}
|
|
3035
|
+
|
|
3036
|
+
declare const TopbarAction: React$1.FC<Props$1Y>;
|
|
3037
|
+
interface Props$1Y {
|
|
2982
3038
|
/**
|
|
2983
3039
|
* Applies active styling.
|
|
2984
3040
|
*/
|
|
@@ -3009,8 +3065,8 @@ interface Props$1V {
|
|
|
3009
3065
|
onClick?: () => void;
|
|
3010
3066
|
}
|
|
3011
3067
|
|
|
3012
|
-
declare const Topbar: React$1.FC<Props$
|
|
3013
|
-
interface Props$
|
|
3068
|
+
declare const Topbar: React$1.FC<Props$1X>;
|
|
3069
|
+
interface Props$1X {
|
|
3014
3070
|
/**
|
|
3015
3071
|
* Main content of the component.
|
|
3016
3072
|
*/
|
|
@@ -4191,16 +4247,12 @@ declare namespace validators_d {
|
|
|
4191
4247
|
};
|
|
4192
4248
|
}
|
|
4193
4249
|
|
|
4194
|
-
declare const ViewDialog: React$1.FC<Props$
|
|
4195
|
-
interface Props$
|
|
4250
|
+
declare const ViewDialog: React$1.FC<Props$1W>;
|
|
4251
|
+
interface Props$1W {
|
|
4196
4252
|
/**
|
|
4197
4253
|
* Main content of the component.
|
|
4198
4254
|
*/
|
|
4199
4255
|
children: React$1.ReactNode;
|
|
4200
|
-
/**
|
|
4201
|
-
* Label of close button.
|
|
4202
|
-
*/
|
|
4203
|
-
closeLabel?: string;
|
|
4204
4256
|
/**
|
|
4205
4257
|
* Initial height of dialog window.
|
|
4206
4258
|
*/
|
|
@@ -4255,8 +4307,65 @@ interface Props$1T {
|
|
|
4255
4307
|
label?: string;
|
|
4256
4308
|
}
|
|
4257
4309
|
|
|
4258
|
-
|
|
4259
|
-
|
|
4310
|
+
interface DialogHeaderContext {
|
|
4311
|
+
/**
|
|
4312
|
+
* Mouse down handler that initiates dialog dragging.
|
|
4313
|
+
*/
|
|
4314
|
+
onDragMouseDown?: React$1.MouseEventHandler;
|
|
4315
|
+
/**
|
|
4316
|
+
* Callback invoked upon closing of dialog window.
|
|
4317
|
+
*/
|
|
4318
|
+
onClose?: () => void;
|
|
4319
|
+
}
|
|
4320
|
+
declare const DialogHeaderContext: React$1.Context<DialogHeaderContext>;
|
|
4321
|
+
declare const useDialogHeaderContext: () => DialogHeaderContext;
|
|
4322
|
+
|
|
4323
|
+
declare const ViewDialogHeaderWrapper: React$1.FC<Props$1V>;
|
|
4324
|
+
interface Props$1V {
|
|
4325
|
+
/**
|
|
4326
|
+
* Main content of the component.
|
|
4327
|
+
*/
|
|
4328
|
+
children: React$1.ReactNode;
|
|
4329
|
+
/**
|
|
4330
|
+
* Centered header content.
|
|
4331
|
+
*/
|
|
4332
|
+
centeredContent?: React$1.ReactNode;
|
|
4333
|
+
}
|
|
4334
|
+
|
|
4335
|
+
declare const ViewDialogSearchButton: React$1.FC<Props$1U>;
|
|
4336
|
+
interface Props$1U {
|
|
4337
|
+
/**
|
|
4338
|
+
* Aria label for the search button.
|
|
4339
|
+
*/
|
|
4340
|
+
ariaLabel?: string;
|
|
4341
|
+
/**
|
|
4342
|
+
* Label displayed next to the search icon.
|
|
4343
|
+
*/
|
|
4344
|
+
label: string;
|
|
4345
|
+
/**
|
|
4346
|
+
* Action invoked upon click.
|
|
4347
|
+
*/
|
|
4348
|
+
onClick?: () => void;
|
|
4349
|
+
/**
|
|
4350
|
+
* Whether the clear search button should be displayed.
|
|
4351
|
+
*/
|
|
4352
|
+
canClearSearch?: boolean;
|
|
4353
|
+
/**
|
|
4354
|
+
* Action invoked when clearing search results.
|
|
4355
|
+
*/
|
|
4356
|
+
onSearchClear?: () => void;
|
|
4357
|
+
/**
|
|
4358
|
+
* Tooltip for the clear search button.
|
|
4359
|
+
*/
|
|
4360
|
+
clearSearchTooltip: string;
|
|
4361
|
+
/**
|
|
4362
|
+
* Additional CSS class name.
|
|
4363
|
+
*/
|
|
4364
|
+
className?: string;
|
|
4365
|
+
}
|
|
4366
|
+
|
|
4367
|
+
declare const UIProvider: React$1.FC<Props$1T>;
|
|
4368
|
+
interface Props$1T {
|
|
4260
4369
|
/**
|
|
4261
4370
|
* Main content.
|
|
4262
4371
|
*/
|
|
@@ -4284,7 +4393,7 @@ interface Props$1S {
|
|
|
4284
4393
|
/**
|
|
4285
4394
|
* Dialog mode options.
|
|
4286
4395
|
*/
|
|
4287
|
-
dialog?: Omit<Props$
|
|
4396
|
+
dialog?: Omit<Props$1W, 'children'>;
|
|
4288
4397
|
/**
|
|
4289
4398
|
* Name of selected theme.
|
|
4290
4399
|
*/
|
|
@@ -4307,16 +4416,16 @@ interface Props$1S {
|
|
|
4307
4416
|
choosableFileExtensions?: string[];
|
|
4308
4417
|
}
|
|
4309
4418
|
|
|
4310
|
-
declare const View: React$1.FC<Props$
|
|
4311
|
-
interface Props$
|
|
4419
|
+
declare const View: React$1.FC<Props$1S>;
|
|
4420
|
+
interface Props$1S {
|
|
4312
4421
|
/**
|
|
4313
4422
|
* Sets component's children.
|
|
4314
4423
|
*/
|
|
4315
4424
|
children?: React$1.ReactNode;
|
|
4316
4425
|
}
|
|
4317
4426
|
|
|
4318
|
-
declare const ViewContent: React$1.ForwardRefExoticComponent<Props$
|
|
4319
|
-
interface Props$
|
|
4427
|
+
declare const ViewContent: React$1.ForwardRefExoticComponent<Props$1R & React$1.RefAttributes<HTMLDivElement>>;
|
|
4428
|
+
interface Props$1R {
|
|
4320
4429
|
/**
|
|
4321
4430
|
* Sets component's children.
|
|
4322
4431
|
*/
|
|
@@ -4339,8 +4448,8 @@ interface Props$1Q {
|
|
|
4339
4448
|
spacing?: 'xl';
|
|
4340
4449
|
}
|
|
4341
4450
|
|
|
4342
|
-
declare const ViewContentBar: React$1.FC<Props$
|
|
4343
|
-
interface Props$
|
|
4451
|
+
declare const ViewContentBar: React$1.FC<Props$1Q>;
|
|
4452
|
+
interface Props$1Q {
|
|
4344
4453
|
/**
|
|
4345
4454
|
* Sets component's children.
|
|
4346
4455
|
*/
|
|
@@ -4351,32 +4460,32 @@ interface Props$1P {
|
|
|
4351
4460
|
justify?: 'start' | 'end';
|
|
4352
4461
|
}
|
|
4353
4462
|
|
|
4354
|
-
declare const ViewContentWrapper: React$1.FC<Props$
|
|
4355
|
-
interface Props$
|
|
4463
|
+
declare const ViewContentWrapper: React$1.FC<Props$1P>;
|
|
4464
|
+
interface Props$1P {
|
|
4356
4465
|
/**
|
|
4357
4466
|
* Sets component's children.
|
|
4358
4467
|
*/
|
|
4359
4468
|
children?: React$1.ReactNode;
|
|
4360
4469
|
}
|
|
4361
4470
|
|
|
4362
|
-
declare const ViewFooter: React$1.FC<Props$
|
|
4363
|
-
interface Props$
|
|
4471
|
+
declare const ViewFooter: React$1.FC<Props$1O>;
|
|
4472
|
+
interface Props$1O {
|
|
4364
4473
|
/**
|
|
4365
4474
|
* Sets component's children.
|
|
4366
4475
|
*/
|
|
4367
4476
|
children?: React$1.ReactNode;
|
|
4368
4477
|
}
|
|
4369
4478
|
|
|
4370
|
-
declare const ViewHeader: React$1.FC<Props$
|
|
4371
|
-
interface Props$
|
|
4479
|
+
declare const ViewHeader: React$1.FC<Props$1N>;
|
|
4480
|
+
interface Props$1N {
|
|
4372
4481
|
/**
|
|
4373
4482
|
* Sets component's children.
|
|
4374
4483
|
*/
|
|
4375
4484
|
children?: React$1.ReactNode;
|
|
4376
4485
|
}
|
|
4377
4486
|
|
|
4378
|
-
declare const ViewPaper: React$1.ForwardRefExoticComponent<Props$
|
|
4379
|
-
interface Props$
|
|
4487
|
+
declare const ViewPaper: React$1.ForwardRefExoticComponent<Props$1M & React$1.RefAttributes<HTMLDivElement>>;
|
|
4488
|
+
interface Props$1M {
|
|
4380
4489
|
/**
|
|
4381
4490
|
* Sets component's children.
|
|
4382
4491
|
*/
|
|
@@ -4387,16 +4496,16 @@ interface Props$1L {
|
|
|
4387
4496
|
variant?: 'default' | 'fullscreen';
|
|
4388
4497
|
}
|
|
4389
4498
|
|
|
4390
|
-
declare const ViewSideContent: React$1.FC<Props$
|
|
4391
|
-
interface Props$
|
|
4499
|
+
declare const ViewSideContent: React$1.FC<Props$1L>;
|
|
4500
|
+
interface Props$1L {
|
|
4392
4501
|
/**
|
|
4393
4502
|
* Sets component's children.
|
|
4394
4503
|
*/
|
|
4395
4504
|
children?: React$1.ReactNode;
|
|
4396
4505
|
}
|
|
4397
4506
|
|
|
4398
|
-
declare const ViewWrapper: React$1.FC<Props$
|
|
4399
|
-
interface Props$
|
|
4507
|
+
declare const ViewWrapper: React$1.FC<Props$1K>;
|
|
4508
|
+
interface Props$1K {
|
|
4400
4509
|
/**
|
|
4401
4510
|
* Main content of the component.
|
|
4402
4511
|
*/
|
|
@@ -4407,8 +4516,8 @@ interface Props$1J {
|
|
|
4407
4516
|
navbar?: React$1.ReactNode;
|
|
4408
4517
|
}
|
|
4409
4518
|
|
|
4410
|
-
declare const RangeSlider: React$1.FC<Props$
|
|
4411
|
-
type Props$
|
|
4519
|
+
declare const RangeSlider: React$1.FC<Props$1J>;
|
|
4520
|
+
type Props$1J = {
|
|
4412
4521
|
/**
|
|
4413
4522
|
* Slider value.
|
|
4414
4523
|
*/
|
|
@@ -4441,8 +4550,8 @@ type Props$1I = {
|
|
|
4441
4550
|
showLabels?: boolean;
|
|
4442
4551
|
};
|
|
4443
4552
|
|
|
4444
|
-
declare const FormFeedback: React$1.FC<Props$
|
|
4445
|
-
type Props$
|
|
4553
|
+
declare const FormFeedback: React$1.FC<Props$1I>;
|
|
4554
|
+
type Props$1I = {
|
|
4446
4555
|
/**
|
|
4447
4556
|
* Main content of the component.
|
|
4448
4557
|
*/
|
|
@@ -4457,8 +4566,8 @@ type Props$1H = {
|
|
|
4457
4566
|
warning?: boolean;
|
|
4458
4567
|
};
|
|
4459
4568
|
|
|
4460
|
-
declare const FormGroup: React$1.FC<Props$
|
|
4461
|
-
interface Props$
|
|
4569
|
+
declare const FormGroup: React$1.FC<Props$1H>;
|
|
4570
|
+
interface Props$1H {
|
|
4462
4571
|
/**
|
|
4463
4572
|
* Main content of the component.
|
|
4464
4573
|
*/
|
|
@@ -4469,24 +4578,24 @@ interface Props$1G {
|
|
|
4469
4578
|
halfWidth?: boolean;
|
|
4470
4579
|
}
|
|
4471
4580
|
|
|
4472
|
-
declare const FormGroupColumn: React$1.FC<Props$
|
|
4473
|
-
interface Props$
|
|
4581
|
+
declare const FormGroupColumn: React$1.FC<Props$1G>;
|
|
4582
|
+
interface Props$1G {
|
|
4474
4583
|
/**
|
|
4475
4584
|
* Main content of the component.
|
|
4476
4585
|
*/
|
|
4477
4586
|
children: React$1.ReactNode;
|
|
4478
4587
|
}
|
|
4479
4588
|
|
|
4480
|
-
declare const FormGroupInfo: React$1.FC<Props$
|
|
4481
|
-
interface Props$
|
|
4589
|
+
declare const FormGroupInfo: React$1.FC<Props$1F>;
|
|
4590
|
+
interface Props$1F {
|
|
4482
4591
|
/**
|
|
4483
4592
|
* Main content of the component.
|
|
4484
4593
|
*/
|
|
4485
4594
|
children: React$1.ReactNode;
|
|
4486
4595
|
}
|
|
4487
4596
|
|
|
4488
|
-
declare const FormInputLabel: React$1.FC<Props$
|
|
4489
|
-
type Props$
|
|
4597
|
+
declare const FormInputLabel: React$1.FC<Props$1E>;
|
|
4598
|
+
type Props$1E = {
|
|
4490
4599
|
/**
|
|
4491
4600
|
* Main content of the component.
|
|
4492
4601
|
*/
|
|
@@ -4505,8 +4614,8 @@ type Props$1D = {
|
|
|
4505
4614
|
iconName?: IconName;
|
|
4506
4615
|
};
|
|
4507
4616
|
|
|
4508
|
-
declare const Form: React$1.ForwardRefExoticComponent<Props$
|
|
4509
|
-
type Props$
|
|
4617
|
+
declare const Form: React$1.ForwardRefExoticComponent<Props$1D & React$1.RefAttributes<HTMLFormElement>>;
|
|
4618
|
+
type Props$1D = {
|
|
4510
4619
|
/**
|
|
4511
4620
|
* Main content of the component.
|
|
4512
4621
|
*/
|
|
@@ -4529,8 +4638,8 @@ type Props$1C = {
|
|
|
4529
4638
|
onSubmit: React$1.FormEventHandler<HTMLFormElement>;
|
|
4530
4639
|
};
|
|
4531
4640
|
|
|
4532
|
-
declare const EmptyViewLabel: React$1.FC<Props$
|
|
4533
|
-
interface Props$
|
|
4641
|
+
declare const EmptyViewLabel: React$1.FC<Props$1C>;
|
|
4642
|
+
interface Props$1C {
|
|
4534
4643
|
/**
|
|
4535
4644
|
* Main content of the component.
|
|
4536
4645
|
*/
|
|
@@ -4541,8 +4650,8 @@ interface Props$1B {
|
|
|
4541
4650
|
muted?: boolean;
|
|
4542
4651
|
}
|
|
4543
4652
|
|
|
4544
|
-
declare const EmptyView: React$1.ForwardRefExoticComponent<Props$
|
|
4545
|
-
interface Props$
|
|
4653
|
+
declare const EmptyView: React$1.ForwardRefExoticComponent<Props$1B & React$1.RefAttributes<HTMLDivElement>>;
|
|
4654
|
+
interface Props$1B {
|
|
4546
4655
|
/**
|
|
4547
4656
|
* Adds active styling.
|
|
4548
4657
|
*/
|
|
@@ -4565,8 +4674,8 @@ interface Props$1A {
|
|
|
4565
4674
|
type?: 'dropzone' | 'default';
|
|
4566
4675
|
}
|
|
4567
4676
|
|
|
4568
|
-
declare const Ellipsis: React$1.FC<Props$
|
|
4569
|
-
interface Props$
|
|
4677
|
+
declare const Ellipsis: React$1.FC<Props$1A>;
|
|
4678
|
+
interface Props$1A {
|
|
4570
4679
|
/**
|
|
4571
4680
|
* Items to display.
|
|
4572
4681
|
*/
|
|
@@ -4575,10 +4684,14 @@ interface Props$1z {
|
|
|
4575
4684
|
* Maximum items to display before shortening.
|
|
4576
4685
|
*/
|
|
4577
4686
|
maxVisibleItems?: number;
|
|
4687
|
+
/**
|
|
4688
|
+
* How to indicate hidden items: 'count' shows "+N" with a tooltip, 'ellipsis' appends "...".
|
|
4689
|
+
*/
|
|
4690
|
+
collapsedMode?: 'count' | 'ellipsis';
|
|
4578
4691
|
}
|
|
4579
4692
|
|
|
4580
|
-
declare const FilePreviewActions: React$1.FC<Props$
|
|
4581
|
-
interface Props$
|
|
4693
|
+
declare const FilePreviewActions: React$1.FC<Props$1z>;
|
|
4694
|
+
interface Props$1z {
|
|
4582
4695
|
/**
|
|
4583
4696
|
* Label of the back button.
|
|
4584
4697
|
*/
|
|
@@ -4593,33 +4706,33 @@ interface Props$1y {
|
|
|
4593
4706
|
title: string;
|
|
4594
4707
|
}
|
|
4595
4708
|
|
|
4596
|
-
declare const FilePreviewColumn: React$1.FC<Props$
|
|
4597
|
-
interface Props$
|
|
4709
|
+
declare const FilePreviewColumn: React$1.FC<Props$1y>;
|
|
4710
|
+
interface Props$1y {
|
|
4598
4711
|
/**
|
|
4599
4712
|
* Main content of the component.
|
|
4600
4713
|
*/
|
|
4601
4714
|
children: React$1.ReactNode;
|
|
4602
4715
|
}
|
|
4603
4716
|
|
|
4604
|
-
declare const FilePreviewContent: React$1.ForwardRefExoticComponent<Props$
|
|
4605
|
-
interface Props$
|
|
4717
|
+
declare const FilePreviewContent: React$1.ForwardRefExoticComponent<Props$1x & React$1.RefAttributes<HTMLDivElement>>;
|
|
4718
|
+
interface Props$1x {
|
|
4606
4719
|
/**
|
|
4607
4720
|
* Main content of the component.
|
|
4608
4721
|
*/
|
|
4609
4722
|
children: React$1.ReactNode;
|
|
4610
4723
|
}
|
|
4611
4724
|
|
|
4612
|
-
declare const FilePreviewHoverable: React$1.ForwardRefExoticComponent<Props$
|
|
4613
|
-
interface Props$
|
|
4725
|
+
declare const FilePreviewHoverable: React$1.ForwardRefExoticComponent<Props$1w & React$1.RefAttributes<HTMLDivElement>>;
|
|
4726
|
+
interface Props$1w {
|
|
4614
4727
|
/**
|
|
4615
4728
|
* Main content of the component.
|
|
4616
4729
|
*/
|
|
4617
4730
|
children: React$1.ReactNode;
|
|
4618
4731
|
}
|
|
4619
4732
|
|
|
4620
|
-
declare const FilePreviewNavButton: React$1.FC<Props$
|
|
4733
|
+
declare const FilePreviewNavButton: React$1.FC<Props$1v>;
|
|
4621
4734
|
type Side = 'left' | 'right';
|
|
4622
|
-
interface Props$
|
|
4735
|
+
interface Props$1v {
|
|
4623
4736
|
/**
|
|
4624
4737
|
* Disables button.
|
|
4625
4738
|
*/
|
|
@@ -4642,16 +4755,16 @@ interface Props$1u {
|
|
|
4642
4755
|
tooltipPlacement?: PopperPlacement;
|
|
4643
4756
|
}
|
|
4644
4757
|
|
|
4645
|
-
declare const FilePreviewTooltip: React$1.FC<Props$
|
|
4646
|
-
interface Props$
|
|
4758
|
+
declare const FilePreviewTooltip: React$1.FC<Props$1u>;
|
|
4759
|
+
interface Props$1u {
|
|
4647
4760
|
/**
|
|
4648
4761
|
* Main content of the tooltip.
|
|
4649
4762
|
*/
|
|
4650
4763
|
children?: React$1.ReactNode;
|
|
4651
4764
|
}
|
|
4652
4765
|
|
|
4653
|
-
declare const FilePreview: React$1.ForwardRefExoticComponent<Props$
|
|
4654
|
-
interface Props$
|
|
4766
|
+
declare const FilePreview: React$1.ForwardRefExoticComponent<Props$1t & React$1.RefAttributes<HTMLDivElement>>;
|
|
4767
|
+
interface Props$1t {
|
|
4655
4768
|
/**
|
|
4656
4769
|
* Main content of the component.
|
|
4657
4770
|
*/
|
|
@@ -4701,8 +4814,8 @@ interface SelectionAreaCoords {
|
|
|
4701
4814
|
height: number;
|
|
4702
4815
|
}
|
|
4703
4816
|
|
|
4704
|
-
declare const SelectionArea: React$1.FC<Props$
|
|
4705
|
-
interface Props$
|
|
4817
|
+
declare const SelectionArea: React$1.FC<Props$1s>;
|
|
4818
|
+
interface Props$1s {
|
|
4706
4819
|
/**
|
|
4707
4820
|
* Selection area container.
|
|
4708
4821
|
*/
|
|
@@ -4804,8 +4917,8 @@ type SelectToggleHandler = (opt: SelectOption) => void;
|
|
|
4804
4917
|
*/
|
|
4805
4918
|
type SelectKeyboardNextIdGetter = (options: SelectOption[], currentIndex: number) => SelectOption | undefined;
|
|
4806
4919
|
|
|
4807
|
-
declare const SelectListboxGrid: React$1.FC<Props$
|
|
4808
|
-
interface Props$
|
|
4920
|
+
declare const SelectListboxGrid: React$1.FC<Props$1r>;
|
|
4921
|
+
interface Props$1r {
|
|
4809
4922
|
/**
|
|
4810
4923
|
* Main content of the component.
|
|
4811
4924
|
*/
|
|
@@ -4816,8 +4929,8 @@ interface Props$1q {
|
|
|
4816
4929
|
noOptionsLabel?: string;
|
|
4817
4930
|
}
|
|
4818
4931
|
|
|
4819
|
-
declare const Select: React$1.FC<Props$
|
|
4820
|
-
interface Props$
|
|
4932
|
+
declare const Select: React$1.FC<Props$1q>;
|
|
4933
|
+
interface Props$1q {
|
|
4821
4934
|
/**
|
|
4822
4935
|
* Aria label for clear button.
|
|
4823
4936
|
*/
|
|
@@ -4904,8 +5017,8 @@ interface Props$1p {
|
|
|
4904
5017
|
size?: 'base' | 'small' | 'medium';
|
|
4905
5018
|
}
|
|
4906
5019
|
|
|
4907
|
-
declare const Notifications: React$1.FC<Props$
|
|
4908
|
-
interface Props$
|
|
5020
|
+
declare const Notifications: React$1.FC<Props$1p>;
|
|
5021
|
+
interface Props$1p {
|
|
4909
5022
|
/**
|
|
4910
5023
|
* Container's position will be adjusted in accordance with provided element's height.
|
|
4911
5024
|
*/
|
|
@@ -4918,11 +5031,11 @@ interface Props$1o {
|
|
|
4918
5031
|
|
|
4919
5032
|
type NotificationType = 'success' | 'error' | 'warning';
|
|
4920
5033
|
|
|
4921
|
-
declare const Notification: React$1.FC<Props$
|
|
5034
|
+
declare const Notification: React$1.FC<Props$1o>;
|
|
4922
5035
|
/**
|
|
4923
5036
|
* `Notification` component is rendered as part of `TransitionGroup` and therefore gets transition props in addition to its regular props.
|
|
4924
5037
|
*/
|
|
4925
|
-
type Props$
|
|
5038
|
+
type Props$1o = Partial<TransitionProps> & {
|
|
4926
5039
|
/**
|
|
4927
5040
|
* Main content of the component.
|
|
4928
5041
|
*/
|
|
@@ -4949,8 +5062,8 @@ type Props$1n = Partial<TransitionProps> & {
|
|
|
4949
5062
|
type: NotificationType;
|
|
4950
5063
|
};
|
|
4951
5064
|
|
|
4952
|
-
declare const CopyableInput: React$1.FC<Props$
|
|
4953
|
-
interface Props$
|
|
5065
|
+
declare const CopyableInput: React$1.FC<Props$1n>;
|
|
5066
|
+
interface Props$1n {
|
|
4954
5067
|
/**
|
|
4955
5068
|
* Unique input's id.
|
|
4956
5069
|
*/
|
|
@@ -4973,8 +5086,8 @@ interface Props$1m {
|
|
|
4973
5086
|
labelCopied: string;
|
|
4974
5087
|
}
|
|
4975
5088
|
|
|
4976
|
-
declare const CopyableLabel: React$1.FC<Props$
|
|
4977
|
-
interface Props$
|
|
5089
|
+
declare const CopyableLabel: React$1.FC<Props$1m>;
|
|
5090
|
+
interface Props$1m {
|
|
4978
5091
|
/**
|
|
4979
5092
|
* Label's text. This text will be copied to clipboard upon clicking on the label.
|
|
4980
5093
|
*/
|
|
@@ -4993,8 +5106,8 @@ interface Props$1l {
|
|
|
4993
5106
|
labelCopied: string;
|
|
4994
5107
|
}
|
|
4995
5108
|
|
|
4996
|
-
declare const CopyButton: React$1.FC<Props$
|
|
4997
|
-
interface Props$
|
|
5109
|
+
declare const CopyButton: React$1.FC<Props$1l>;
|
|
5110
|
+
interface Props$1l {
|
|
4998
5111
|
/**
|
|
4999
5112
|
* Value to be copied to clipboard.
|
|
5000
5113
|
*/
|
|
@@ -5067,8 +5180,8 @@ interface ContainerQueryContext {
|
|
|
5067
5180
|
declare const ContainerQueryContext: React$1.Context<ContainerQueryContext>;
|
|
5068
5181
|
declare const useContainerQuery: () => ContainerQueryContext;
|
|
5069
5182
|
|
|
5070
|
-
declare const ContainerQueryProvider: React$1.FC<Props$
|
|
5071
|
-
interface Props$
|
|
5183
|
+
declare const ContainerQueryProvider: React$1.FC<Props$1k>;
|
|
5184
|
+
interface Props$1k {
|
|
5072
5185
|
/**
|
|
5073
5186
|
* Maps breakpoint keys to width values. Each key corresponds to minimum value (in px).
|
|
5074
5187
|
*/
|
|
@@ -5083,8 +5196,8 @@ interface Props$1j {
|
|
|
5083
5196
|
containerEl?: HTMLElement | null;
|
|
5084
5197
|
}
|
|
5085
5198
|
|
|
5086
|
-
declare const ContainerQuery: React$1.FC<Props$
|
|
5087
|
-
interface Props$
|
|
5199
|
+
declare const ContainerQuery: React$1.FC<Props$1j>;
|
|
5200
|
+
interface Props$1j {
|
|
5088
5201
|
/**
|
|
5089
5202
|
* Main content of the component.
|
|
5090
5203
|
*/
|
|
@@ -5108,8 +5221,8 @@ interface FixedContext {
|
|
|
5108
5221
|
declare const FixedContext: React$1.Context<FixedContext>;
|
|
5109
5222
|
declare const useFixedCtx: () => FixedContext;
|
|
5110
5223
|
|
|
5111
|
-
declare const FixedProvider: React$1.FC<Props$
|
|
5112
|
-
interface Props$
|
|
5224
|
+
declare const FixedProvider: React$1.FC<Props$1i>;
|
|
5225
|
+
interface Props$1i {
|
|
5113
5226
|
/**
|
|
5114
5227
|
* Main content of the component.
|
|
5115
5228
|
*/
|
|
@@ -5121,16 +5234,16 @@ interface Props$1h {
|
|
|
5121
5234
|
rootEl?: HTMLElement | null;
|
|
5122
5235
|
}
|
|
5123
5236
|
|
|
5124
|
-
declare const Fixed: React$1.FC<Props$
|
|
5125
|
-
interface Props$
|
|
5237
|
+
declare const Fixed: React$1.FC<Props$1h>;
|
|
5238
|
+
interface Props$1h {
|
|
5126
5239
|
/**
|
|
5127
5240
|
* Main content of the component.
|
|
5128
5241
|
*/
|
|
5129
5242
|
children: React$1.ReactNode;
|
|
5130
5243
|
}
|
|
5131
5244
|
|
|
5132
|
-
declare const LoadingButton: React$1.ForwardRefExoticComponent<Props$
|
|
5133
|
-
interface Props$
|
|
5245
|
+
declare const LoadingButton: React$1.ForwardRefExoticComponent<Props$1g & React$1.RefAttributes<HTMLButtonElement>>;
|
|
5246
|
+
interface Props$1g extends Props$3K {
|
|
5134
5247
|
/**
|
|
5135
5248
|
* Delays loader appearance. Defaults to `true`.
|
|
5136
5249
|
*/
|
|
@@ -5145,8 +5258,8 @@ interface Props$1f extends Props$3E {
|
|
|
5145
5258
|
loaderPosition?: 'left' | 'center' | 'right';
|
|
5146
5259
|
}
|
|
5147
5260
|
|
|
5148
|
-
declare const ListItem: React$1.FC<Props$
|
|
5149
|
-
interface Props$
|
|
5261
|
+
declare const ListItem: React$1.FC<Props$1f>;
|
|
5262
|
+
interface Props$1f {
|
|
5150
5263
|
/**
|
|
5151
5264
|
* Main content of the component.
|
|
5152
5265
|
*/
|
|
@@ -5157,16 +5270,16 @@ interface Props$1e {
|
|
|
5157
5270
|
onClick?: () => void;
|
|
5158
5271
|
}
|
|
5159
5272
|
|
|
5160
|
-
declare const ListItemActions: React$1.FC<Props$
|
|
5161
|
-
interface Props$
|
|
5273
|
+
declare const ListItemActions: React$1.FC<Props$1e>;
|
|
5274
|
+
interface Props$1e {
|
|
5162
5275
|
/**
|
|
5163
5276
|
* Main content of the component.
|
|
5164
5277
|
*/
|
|
5165
5278
|
children: React$1.ReactNode;
|
|
5166
5279
|
}
|
|
5167
5280
|
|
|
5168
|
-
declare const ListItemContent: React$1.FC<Props$
|
|
5169
|
-
interface Props$
|
|
5281
|
+
declare const ListItemContent: React$1.FC<Props$1d>;
|
|
5282
|
+
interface Props$1d {
|
|
5170
5283
|
/**
|
|
5171
5284
|
* Main content of the component.
|
|
5172
5285
|
*/
|
|
@@ -5177,8 +5290,8 @@ interface Props$1c {
|
|
|
5177
5290
|
muted?: boolean;
|
|
5178
5291
|
}
|
|
5179
5292
|
|
|
5180
|
-
declare const List: React$1.FC<Props$
|
|
5181
|
-
interface Props$
|
|
5293
|
+
declare const List: React$1.FC<Props$1c>;
|
|
5294
|
+
interface Props$1c {
|
|
5182
5295
|
/**
|
|
5183
5296
|
* Main content of the component.
|
|
5184
5297
|
*/
|
|
@@ -5189,16 +5302,16 @@ interface Props$1b {
|
|
|
5189
5302
|
className?: string;
|
|
5190
5303
|
}
|
|
5191
5304
|
|
|
5192
|
-
declare const SearchDialogActions: React$1.FC<Props$
|
|
5193
|
-
interface Props$
|
|
5305
|
+
declare const SearchDialogActions: React$1.FC<Props$1b>;
|
|
5306
|
+
interface Props$1b {
|
|
5194
5307
|
/**
|
|
5195
5308
|
* Main content of the component.
|
|
5196
5309
|
*/
|
|
5197
5310
|
children: React$1.ReactNode;
|
|
5198
5311
|
}
|
|
5199
5312
|
|
|
5200
|
-
declare const SearchDialogAiHelpBanner: React$1.FC<Props$
|
|
5201
|
-
interface Props$
|
|
5313
|
+
declare const SearchDialogAiHelpBanner: React$1.FC<Props$1a>;
|
|
5314
|
+
interface Props$1a {
|
|
5202
5315
|
/**
|
|
5203
5316
|
* Content to be displayed in the banner.
|
|
5204
5317
|
*/
|
|
@@ -5209,24 +5322,24 @@ interface Props$19 {
|
|
|
5209
5322
|
examples?: string[];
|
|
5210
5323
|
}
|
|
5211
5324
|
|
|
5212
|
-
declare const SearchDialogContent: React$1.FC<Props$
|
|
5213
|
-
interface Props$
|
|
5325
|
+
declare const SearchDialogContent: React$1.FC<Props$19>;
|
|
5326
|
+
interface Props$19 {
|
|
5214
5327
|
/**
|
|
5215
5328
|
* Main content of the component.
|
|
5216
5329
|
*/
|
|
5217
5330
|
children: React$1.ReactNode;
|
|
5218
5331
|
}
|
|
5219
5332
|
|
|
5220
|
-
declare const SearchDialogFallback: React$1.FC<Props$
|
|
5221
|
-
interface Props$
|
|
5333
|
+
declare const SearchDialogFallback: React$1.FC<Props$18>;
|
|
5334
|
+
interface Props$18 {
|
|
5222
5335
|
/**
|
|
5223
5336
|
* Main content of the component.
|
|
5224
5337
|
*/
|
|
5225
5338
|
children: React$1.ReactNode;
|
|
5226
5339
|
}
|
|
5227
5340
|
|
|
5228
|
-
declare const SearchDialogHeader: React$1.FC<Props$
|
|
5229
|
-
interface Props$
|
|
5341
|
+
declare const SearchDialogHeader: React$1.FC<Props$17>;
|
|
5342
|
+
interface Props$17 {
|
|
5230
5343
|
/**
|
|
5231
5344
|
* Optional action rendered next to close button.
|
|
5232
5345
|
*/
|
|
@@ -5249,8 +5362,12 @@ interface Props$16 {
|
|
|
5249
5362
|
onSubmit?: React$1.FormEventHandler;
|
|
5250
5363
|
}
|
|
5251
5364
|
|
|
5252
|
-
declare const SearchDialogInput: React$1.ForwardRefExoticComponent<Props$
|
|
5253
|
-
interface Props$
|
|
5365
|
+
declare const SearchDialogInput: React$1.ForwardRefExoticComponent<Props$16 & React$1.RefAttributes<HTMLInputElement>>;
|
|
5366
|
+
interface Props$16 {
|
|
5367
|
+
/**
|
|
5368
|
+
* Maximum number of characters allowed.
|
|
5369
|
+
*/
|
|
5370
|
+
maxLength?: number;
|
|
5254
5371
|
/**
|
|
5255
5372
|
* Input's name to register.
|
|
5256
5373
|
*/
|
|
@@ -5277,16 +5394,16 @@ interface Props$15 {
|
|
|
5277
5394
|
value?: string;
|
|
5278
5395
|
}
|
|
5279
5396
|
|
|
5280
|
-
declare const SearchDialogLabel: React$1.FC<Props$
|
|
5281
|
-
interface Props$
|
|
5397
|
+
declare const SearchDialogLabel: React$1.FC<Props$15>;
|
|
5398
|
+
interface Props$15 {
|
|
5282
5399
|
/**
|
|
5283
5400
|
* Main content of the component.
|
|
5284
5401
|
*/
|
|
5285
5402
|
label: React$1.ReactNode;
|
|
5286
5403
|
}
|
|
5287
5404
|
|
|
5288
|
-
declare const SearchDialogSection: React$1.FC<Props$
|
|
5289
|
-
interface Props$
|
|
5405
|
+
declare const SearchDialogSection: React$1.FC<Props$14>;
|
|
5406
|
+
interface Props$14 {
|
|
5290
5407
|
/**
|
|
5291
5408
|
* Main content of the component.
|
|
5292
5409
|
*/
|
|
@@ -5301,8 +5418,8 @@ interface Props$13 {
|
|
|
5301
5418
|
headerButtons?: React$1.ReactNode;
|
|
5302
5419
|
}
|
|
5303
5420
|
|
|
5304
|
-
declare const SearchDialogToggle: React$1.ForwardRefExoticComponent<Props$
|
|
5305
|
-
interface Props$
|
|
5421
|
+
declare const SearchDialogToggle: React$1.ForwardRefExoticComponent<Props$13 & React$1.RefAttributes<HTMLDivElement>>;
|
|
5422
|
+
interface Props$13 {
|
|
5306
5423
|
/**
|
|
5307
5424
|
* Sets current toggle's value.
|
|
5308
5425
|
*/
|
|
@@ -5329,8 +5446,8 @@ interface Props$12 {
|
|
|
5329
5446
|
onChange: (checked: boolean) => void;
|
|
5330
5447
|
}
|
|
5331
5448
|
|
|
5332
|
-
declare const SearchDialog: React$1.FC<Props$
|
|
5333
|
-
interface Props$
|
|
5449
|
+
declare const SearchDialog: React$1.FC<Props$12>;
|
|
5450
|
+
interface Props$12 {
|
|
5334
5451
|
/**
|
|
5335
5452
|
* Main content of the component.
|
|
5336
5453
|
*/
|
|
@@ -5349,24 +5466,24 @@ interface Props$11 {
|
|
|
5349
5466
|
open?: boolean;
|
|
5350
5467
|
}
|
|
5351
5468
|
|
|
5352
|
-
declare const DrawerActions: React$1.FC<Props$
|
|
5353
|
-
interface Props$
|
|
5469
|
+
declare const DrawerActions: React$1.FC<Props$11>;
|
|
5470
|
+
interface Props$11 {
|
|
5354
5471
|
/**
|
|
5355
5472
|
* Main content of the component.
|
|
5356
5473
|
*/
|
|
5357
5474
|
children: React$1.ReactNode;
|
|
5358
5475
|
}
|
|
5359
5476
|
|
|
5360
|
-
declare const DrawerContent: React$1.FC<Props
|
|
5361
|
-
interface Props
|
|
5477
|
+
declare const DrawerContent: React$1.FC<Props$10>;
|
|
5478
|
+
interface Props$10 {
|
|
5362
5479
|
/**
|
|
5363
5480
|
* Main content of the component.
|
|
5364
5481
|
*/
|
|
5365
5482
|
children: React$1.ReactNode;
|
|
5366
5483
|
}
|
|
5367
5484
|
|
|
5368
|
-
declare const DrawerHeader: React$1.FC<Props
|
|
5369
|
-
interface Props
|
|
5485
|
+
declare const DrawerHeader: React$1.FC<Props$$>;
|
|
5486
|
+
interface Props$$ {
|
|
5370
5487
|
/**
|
|
5371
5488
|
* Text displayed as title in the bar.
|
|
5372
5489
|
*/
|
|
@@ -5385,8 +5502,8 @@ interface Props$_ {
|
|
|
5385
5502
|
iconRender?: IconRenderProp;
|
|
5386
5503
|
}
|
|
5387
5504
|
|
|
5388
|
-
declare const DrawerSection: React$1.ForwardRefExoticComponent<Props$
|
|
5389
|
-
interface Props$
|
|
5505
|
+
declare const DrawerSection: React$1.ForwardRefExoticComponent<Props$_ & React$1.RefAttributes<HTMLDivElement>>;
|
|
5506
|
+
interface Props$_ {
|
|
5390
5507
|
/**
|
|
5391
5508
|
* Main content of the component.
|
|
5392
5509
|
*/
|
|
@@ -5401,8 +5518,8 @@ interface Props$Z {
|
|
|
5401
5518
|
centeredContent?: boolean;
|
|
5402
5519
|
}
|
|
5403
5520
|
|
|
5404
|
-
declare const Drawer: React$1.FC<Props$
|
|
5405
|
-
interface Props$
|
|
5521
|
+
declare const Drawer: React$1.FC<Props$Z>;
|
|
5522
|
+
interface Props$Z {
|
|
5406
5523
|
/**
|
|
5407
5524
|
* Main content of the component.
|
|
5408
5525
|
*/
|
|
@@ -5425,8 +5542,8 @@ interface Props$Y {
|
|
|
5425
5542
|
fixed?: boolean;
|
|
5426
5543
|
}
|
|
5427
5544
|
|
|
5428
|
-
declare const TextEllipsis: React$1.ForwardRefExoticComponent<Props$
|
|
5429
|
-
interface Props$
|
|
5545
|
+
declare const TextEllipsis: React$1.ForwardRefExoticComponent<Props$Y & React$1.RefAttributes<HTMLDivElement>>;
|
|
5546
|
+
interface Props$Y {
|
|
5430
5547
|
/**
|
|
5431
5548
|
* Text content.
|
|
5432
5549
|
*/
|
|
@@ -5445,8 +5562,8 @@ interface Props$X {
|
|
|
5445
5562
|
title?: string;
|
|
5446
5563
|
}
|
|
5447
5564
|
|
|
5448
|
-
declare const FileInput: React$1.ForwardRefExoticComponent<Props$
|
|
5449
|
-
interface Props$
|
|
5565
|
+
declare const FileInput: React$1.ForwardRefExoticComponent<Props$X & React$1.RefAttributes<HTMLInputElement>>;
|
|
5566
|
+
interface Props$X {
|
|
5450
5567
|
/**
|
|
5451
5568
|
* Specify comma-separated list of allowed file extensions.
|
|
5452
5569
|
*/
|
|
@@ -5465,24 +5582,24 @@ interface Props$W {
|
|
|
5465
5582
|
onChange?: React$1.ChangeEventHandler<HTMLInputElement>;
|
|
5466
5583
|
}
|
|
5467
5584
|
|
|
5468
|
-
declare const NavigationDialogContent: React$1.ForwardRefExoticComponent<Props$
|
|
5469
|
-
interface Props$
|
|
5585
|
+
declare const NavigationDialogContent: React$1.ForwardRefExoticComponent<Props$W & React$1.RefAttributes<HTMLDivElement>>;
|
|
5586
|
+
interface Props$W {
|
|
5470
5587
|
/**
|
|
5471
5588
|
* Main content of the component.
|
|
5472
5589
|
*/
|
|
5473
5590
|
children?: React$1.ReactNode;
|
|
5474
5591
|
}
|
|
5475
5592
|
|
|
5476
|
-
declare const NavigationDialogFallbackContent: React$1.ForwardRefExoticComponent<Props$
|
|
5477
|
-
interface Props$
|
|
5593
|
+
declare const NavigationDialogFallbackContent: React$1.ForwardRefExoticComponent<Props$V & React$1.RefAttributes<HTMLDivElement>>;
|
|
5594
|
+
interface Props$V {
|
|
5478
5595
|
/**
|
|
5479
5596
|
* Main content of the component.
|
|
5480
5597
|
*/
|
|
5481
5598
|
children?: React$1.ReactNode;
|
|
5482
5599
|
}
|
|
5483
5600
|
|
|
5484
|
-
declare const NavigationDialogFooter: React$1.ForwardRefExoticComponent<Props$
|
|
5485
|
-
interface Props$
|
|
5601
|
+
declare const NavigationDialogFooter: React$1.ForwardRefExoticComponent<Props$U & React$1.RefAttributes<HTMLDivElement>>;
|
|
5602
|
+
interface Props$U {
|
|
5486
5603
|
/**
|
|
5487
5604
|
* Main content of the component.
|
|
5488
5605
|
*/
|
|
@@ -5493,8 +5610,8 @@ interface Props$T {
|
|
|
5493
5610
|
className?: string;
|
|
5494
5611
|
}
|
|
5495
5612
|
|
|
5496
|
-
declare const NavigationDialogHeader: React$1.ForwardRefExoticComponent<Props$
|
|
5497
|
-
interface Props$
|
|
5613
|
+
declare const NavigationDialogHeader: React$1.ForwardRefExoticComponent<Props$T & React$1.RefAttributes<HTMLDivElement>>;
|
|
5614
|
+
interface Props$T {
|
|
5498
5615
|
/**
|
|
5499
5616
|
* Optional action component rendered next to title.
|
|
5500
5617
|
*/
|
|
@@ -5517,8 +5634,8 @@ interface Props$S {
|
|
|
5517
5634
|
titleId?: string;
|
|
5518
5635
|
}
|
|
5519
5636
|
|
|
5520
|
-
declare const NavigationDialogItem: React$1.ForwardRefExoticComponent<Props$
|
|
5521
|
-
interface Props$
|
|
5637
|
+
declare const NavigationDialogItem: React$1.ForwardRefExoticComponent<Props$S & React$1.RefAttributes<HTMLLIElement>>;
|
|
5638
|
+
interface Props$S {
|
|
5522
5639
|
/**
|
|
5523
5640
|
* Indicates if navbar item is active.
|
|
5524
5641
|
*/
|
|
@@ -5541,20 +5658,20 @@ interface Props$R {
|
|
|
5541
5658
|
onDoubleClick?: () => void;
|
|
5542
5659
|
}
|
|
5543
5660
|
|
|
5544
|
-
declare const NavigationDialogItemAction: React$1.FC<Props$
|
|
5545
|
-
interface Props$
|
|
5661
|
+
declare const NavigationDialogItemAction: React$1.FC<Props$R>;
|
|
5662
|
+
interface Props$R {
|
|
5546
5663
|
/**
|
|
5547
5664
|
* Optional button.
|
|
5548
5665
|
*/
|
|
5549
|
-
button?: React$1.ReactElement<Props$
|
|
5666
|
+
button?: React$1.ReactElement<Props$3K> | null;
|
|
5550
5667
|
/**
|
|
5551
5668
|
* Optional icon.
|
|
5552
5669
|
*/
|
|
5553
|
-
icon?: React$1.ReactElement<Props$
|
|
5670
|
+
icon?: React$1.ReactElement<Props$3N> | ((props: Props$3N) => React$1.ReactNode) | null;
|
|
5554
5671
|
}
|
|
5555
5672
|
|
|
5556
|
-
declare const NavigationDialogItemLabel: React$1.FC<Props$
|
|
5557
|
-
interface Props$
|
|
5673
|
+
declare const NavigationDialogItemLabel: React$1.FC<Props$Q>;
|
|
5674
|
+
interface Props$Q {
|
|
5558
5675
|
/**
|
|
5559
5676
|
* Main content of the component.
|
|
5560
5677
|
*/
|
|
@@ -5562,11 +5679,11 @@ interface Props$P {
|
|
|
5562
5679
|
/**
|
|
5563
5680
|
* Displayed icon.
|
|
5564
5681
|
*/
|
|
5565
|
-
icon?: React$1.ReactElement<Props$
|
|
5682
|
+
icon?: React$1.ReactElement<Props$3N>;
|
|
5566
5683
|
}
|
|
5567
5684
|
|
|
5568
|
-
declare const NavigationDialog: React$1.ForwardRefExoticComponent<Props$
|
|
5569
|
-
interface Props$
|
|
5685
|
+
declare const NavigationDialog: React$1.ForwardRefExoticComponent<Props$P & React$1.RefAttributes<HTMLDivElement>>;
|
|
5686
|
+
interface Props$P {
|
|
5570
5687
|
/**
|
|
5571
5688
|
* Main content of the component.
|
|
5572
5689
|
*/
|
|
@@ -5593,8 +5710,8 @@ interface Props$O {
|
|
|
5593
5710
|
open?: boolean;
|
|
5594
5711
|
}
|
|
5595
5712
|
|
|
5596
|
-
declare const CheckboxLabel: React$1.ForwardRefExoticComponent<Props$
|
|
5597
|
-
interface Props$
|
|
5713
|
+
declare const CheckboxLabel: React$1.ForwardRefExoticComponent<Props$O & React$1.RefAttributes<HTMLLabelElement>>;
|
|
5714
|
+
interface Props$O {
|
|
5598
5715
|
/**
|
|
5599
5716
|
* Main content of the component.
|
|
5600
5717
|
*/
|
|
@@ -5605,8 +5722,8 @@ interface Props$N {
|
|
|
5605
5722
|
labelFor?: string;
|
|
5606
5723
|
}
|
|
5607
5724
|
|
|
5608
|
-
declare const Checkbox: React$1.FC<Props$
|
|
5609
|
-
interface Props$
|
|
5725
|
+
declare const Checkbox: React$1.FC<Props$N>;
|
|
5726
|
+
interface Props$N {
|
|
5610
5727
|
/**
|
|
5611
5728
|
* Optional content of the component.
|
|
5612
5729
|
*/
|
|
@@ -5944,8 +6061,8 @@ declare function getClampedDimension(dimension: string): number;
|
|
|
5944
6061
|
*/
|
|
5945
6062
|
declare const getClampedDimensions: (width: string, height: string) => [number, number];
|
|
5946
6063
|
|
|
5947
|
-
declare const ImageEditorDimensionsInput: React$1.FC<Props$
|
|
5948
|
-
interface Props$
|
|
6064
|
+
declare const ImageEditorDimensionsInput: React$1.FC<Props$M>;
|
|
6065
|
+
interface Props$M {
|
|
5949
6066
|
/**
|
|
5950
6067
|
* Indicates whether input is disabled.
|
|
5951
6068
|
*/
|
|
@@ -5972,8 +6089,8 @@ interface Props$L {
|
|
|
5972
6089
|
value: string;
|
|
5973
6090
|
}
|
|
5974
6091
|
|
|
5975
|
-
declare const ImageEditorActions: React$1.FC<Props$
|
|
5976
|
-
interface Props$
|
|
6092
|
+
declare const ImageEditorActions: React$1.FC<Props$L>;
|
|
6093
|
+
interface Props$L {
|
|
5977
6094
|
/**
|
|
5978
6095
|
* Label of the back button.
|
|
5979
6096
|
*/
|
|
@@ -5988,26 +6105,26 @@ interface Props$K {
|
|
|
5988
6105
|
title?: string;
|
|
5989
6106
|
}
|
|
5990
6107
|
|
|
5991
|
-
declare const ImageEditorApplyButton: React$1.ForwardRefExoticComponent<Omit<Props$
|
|
6108
|
+
declare const ImageEditorApplyButton: React$1.ForwardRefExoticComponent<Omit<Props$3K, "onClick"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
5992
6109
|
|
|
5993
|
-
declare const ImageEditorButtonsGroup: React$1.ForwardRefExoticComponent<Props$
|
|
5994
|
-
interface Props$
|
|
6110
|
+
declare const ImageEditorButtonsGroup: React$1.ForwardRefExoticComponent<Props$K & React$1.RefAttributes<HTMLDivElement>>;
|
|
6111
|
+
interface Props$K {
|
|
5995
6112
|
/**
|
|
5996
6113
|
* Main content of the component.
|
|
5997
6114
|
*/
|
|
5998
6115
|
children?: React$1.ReactNode;
|
|
5999
6116
|
}
|
|
6000
6117
|
|
|
6001
|
-
declare const ImageEditorButtonsRow: React$1.ForwardRefExoticComponent<Props$
|
|
6002
|
-
interface Props$
|
|
6118
|
+
declare const ImageEditorButtonsRow: React$1.ForwardRefExoticComponent<Props$J & React$1.RefAttributes<HTMLDivElement>>;
|
|
6119
|
+
interface Props$J {
|
|
6003
6120
|
/**
|
|
6004
6121
|
* Main content of the component.
|
|
6005
6122
|
*/
|
|
6006
6123
|
children?: React$1.ReactNode;
|
|
6007
6124
|
}
|
|
6008
6125
|
|
|
6009
|
-
declare const ImageEditorCanvas: React$1.ForwardRefExoticComponent<Props$
|
|
6010
|
-
interface Props$
|
|
6126
|
+
declare const ImageEditorCanvas: React$1.ForwardRefExoticComponent<Props$I & React$1.RefAttributes<HTMLDivElement>>;
|
|
6127
|
+
interface Props$I {
|
|
6011
6128
|
/**
|
|
6012
6129
|
* Alternative text description of the image.
|
|
6013
6130
|
*/
|
|
@@ -6018,16 +6135,16 @@ interface Props$H {
|
|
|
6018
6135
|
loadingLabel?: string;
|
|
6019
6136
|
}
|
|
6020
6137
|
|
|
6021
|
-
declare const ImageEditorContent: React$1.ForwardRefExoticComponent<Props$
|
|
6022
|
-
interface Props$
|
|
6138
|
+
declare const ImageEditorContent: React$1.ForwardRefExoticComponent<Props$H & React$1.RefAttributes<HTMLDivElement>>;
|
|
6139
|
+
interface Props$H {
|
|
6023
6140
|
/**
|
|
6024
6141
|
* Main content of the component.
|
|
6025
6142
|
*/
|
|
6026
6143
|
children?: React$1.ReactNode;
|
|
6027
6144
|
}
|
|
6028
6145
|
|
|
6029
|
-
declare const ImageEditorCropBoxDimensions: React$1.ForwardRefExoticComponent<Props$
|
|
6030
|
-
interface Props$
|
|
6146
|
+
declare const ImageEditorCropBoxDimensions: React$1.ForwardRefExoticComponent<Props$G & React$1.RefAttributes<HTMLDivElement>>;
|
|
6147
|
+
interface Props$G {
|
|
6031
6148
|
/**
|
|
6032
6149
|
* Label displayed above the height input.
|
|
6033
6150
|
*/
|
|
@@ -6046,8 +6163,8 @@ interface Props$F {
|
|
|
6046
6163
|
widthLabel?: string;
|
|
6047
6164
|
}
|
|
6048
6165
|
|
|
6049
|
-
declare const ImageEditorCropCard: React$1.ForwardRefExoticComponent<Props$
|
|
6050
|
-
interface Props$
|
|
6166
|
+
declare const ImageEditorCropCard: React$1.ForwardRefExoticComponent<Props$F & React$1.RefAttributes<HTMLDivElement>>;
|
|
6167
|
+
interface Props$F {
|
|
6051
6168
|
/**
|
|
6052
6169
|
* Aspect ratio to set on the crop box.
|
|
6053
6170
|
*/
|
|
@@ -6063,11 +6180,11 @@ interface Props$E {
|
|
|
6063
6180
|
/**
|
|
6064
6181
|
* Icon to display.
|
|
6065
6182
|
*/
|
|
6066
|
-
icon?: React$1.ReactElement<Props$
|
|
6183
|
+
icon?: React$1.ReactElement<Props$3N>;
|
|
6067
6184
|
}
|
|
6068
6185
|
|
|
6069
|
-
declare const ImageEditorCropCardFreeform: React$1.ForwardRefExoticComponent<Props$
|
|
6070
|
-
interface Props$
|
|
6186
|
+
declare const ImageEditorCropCardFreeform: React$1.ForwardRefExoticComponent<Props$E & React$1.RefAttributes<HTMLDivElement>>;
|
|
6187
|
+
interface Props$E {
|
|
6071
6188
|
/**
|
|
6072
6189
|
* Main content of the component.
|
|
6073
6190
|
*/
|
|
@@ -6075,19 +6192,19 @@ interface Props$D {
|
|
|
6075
6192
|
/**
|
|
6076
6193
|
* Icon to display
|
|
6077
6194
|
*/
|
|
6078
|
-
icon?: React$1.ReactElement<Props$
|
|
6195
|
+
icon?: React$1.ReactElement<Props$3N>;
|
|
6079
6196
|
}
|
|
6080
6197
|
|
|
6081
|
-
declare const ImageEditorCropCardList: React$1.ForwardRefExoticComponent<Props$
|
|
6082
|
-
interface Props$
|
|
6198
|
+
declare const ImageEditorCropCardList: React$1.ForwardRefExoticComponent<Props$D & React$1.RefAttributes<HTMLDivElement>>;
|
|
6199
|
+
interface Props$D {
|
|
6083
6200
|
/**
|
|
6084
6201
|
* Main content of the component.
|
|
6085
6202
|
*/
|
|
6086
6203
|
children?: React$1.ReactNode;
|
|
6087
6204
|
}
|
|
6088
6205
|
|
|
6089
|
-
declare const ImageEditorCropCardOriginal: React$1.ForwardRefExoticComponent<Props$
|
|
6090
|
-
interface Props$
|
|
6206
|
+
declare const ImageEditorCropCardOriginal: React$1.ForwardRefExoticComponent<Props$C & React$1.RefAttributes<HTMLDivElement>>;
|
|
6207
|
+
interface Props$C {
|
|
6091
6208
|
/**
|
|
6092
6209
|
* Main content of the component.
|
|
6093
6210
|
*/
|
|
@@ -6095,11 +6212,11 @@ interface Props$B {
|
|
|
6095
6212
|
/**
|
|
6096
6213
|
* Icon to display
|
|
6097
6214
|
*/
|
|
6098
|
-
icon?: React$1.ReactElement<Props$
|
|
6215
|
+
icon?: React$1.ReactElement<Props$3N>;
|
|
6099
6216
|
}
|
|
6100
6217
|
|
|
6101
|
-
declare const ImageEditorDemoLabel: React$1.FC<Props$
|
|
6102
|
-
interface Props$
|
|
6218
|
+
declare const ImageEditorDemoLabel: React$1.FC<Props$B>;
|
|
6219
|
+
interface Props$B {
|
|
6103
6220
|
/**
|
|
6104
6221
|
* Renders link content
|
|
6105
6222
|
*/
|
|
@@ -6110,28 +6227,28 @@ interface Props$A {
|
|
|
6110
6227
|
creditHref?: string;
|
|
6111
6228
|
}
|
|
6112
6229
|
|
|
6113
|
-
declare const ImageEditorFlipHorizontalButton: React$1.FC<Omit<Props$
|
|
6230
|
+
declare const ImageEditorFlipHorizontalButton: React$1.FC<Omit<Props$3K, 'children' | 'onClick'>>;
|
|
6114
6231
|
|
|
6115
|
-
declare const ImageEditorFlipVerticalButton: React$1.FC<Omit<Props$
|
|
6232
|
+
declare const ImageEditorFlipVerticalButton: React$1.FC<Omit<Props$3K, 'children' | 'onClick'>>;
|
|
6116
6233
|
|
|
6117
|
-
declare const ImageEditorLoader: React$1.ForwardRefExoticComponent<Props$
|
|
6118
|
-
interface Props$
|
|
6234
|
+
declare const ImageEditorLoader: React$1.ForwardRefExoticComponent<Props$A & React$1.RefAttributes<HTMLDivElement>>;
|
|
6235
|
+
interface Props$A {
|
|
6119
6236
|
/**
|
|
6120
6237
|
* Main content of the component.
|
|
6121
6238
|
*/
|
|
6122
6239
|
children?: React$1.ReactNode;
|
|
6123
6240
|
}
|
|
6124
6241
|
|
|
6125
|
-
declare const ImageEditorMenu: React$1.ForwardRefExoticComponent<Props$
|
|
6126
|
-
interface Props$
|
|
6242
|
+
declare const ImageEditorMenu: React$1.ForwardRefExoticComponent<Props$z & React$1.RefAttributes<HTMLDivElement>>;
|
|
6243
|
+
interface Props$z {
|
|
6127
6244
|
/**
|
|
6128
6245
|
* Main content of the component.
|
|
6129
6246
|
*/
|
|
6130
6247
|
children?: React$1.ReactNode;
|
|
6131
6248
|
}
|
|
6132
6249
|
|
|
6133
|
-
declare const ImageEditorMenuContainer: React$1.ForwardRefExoticComponent<Props$
|
|
6134
|
-
interface Props$
|
|
6250
|
+
declare const ImageEditorMenuContainer: React$1.ForwardRefExoticComponent<Props$y & React$1.RefAttributes<HTMLDivElement>>;
|
|
6251
|
+
interface Props$y {
|
|
6135
6252
|
/**
|
|
6136
6253
|
* Main content of the component.
|
|
6137
6254
|
*/
|
|
@@ -6146,8 +6263,8 @@ interface Props$x {
|
|
|
6146
6263
|
muted?: boolean;
|
|
6147
6264
|
}
|
|
6148
6265
|
|
|
6149
|
-
declare const ImageEditorMenuSection: React$1.ForwardRefExoticComponent<Props$
|
|
6150
|
-
interface Props$
|
|
6266
|
+
declare const ImageEditorMenuSection: React$1.ForwardRefExoticComponent<Props$x & React$1.RefAttributes<HTMLDivElement>>;
|
|
6267
|
+
interface Props$x {
|
|
6151
6268
|
/**
|
|
6152
6269
|
* Main content of the component.
|
|
6153
6270
|
*/
|
|
@@ -6158,8 +6275,8 @@ interface Props$w {
|
|
|
6158
6275
|
title?: string;
|
|
6159
6276
|
}
|
|
6160
6277
|
|
|
6161
|
-
declare const ImageEditorMenuSubSection: React$1.ForwardRefExoticComponent<Props$
|
|
6162
|
-
interface Props$
|
|
6278
|
+
declare const ImageEditorMenuSubSection: React$1.ForwardRefExoticComponent<Props$w & React$1.RefAttributes<HTMLDivElement>>;
|
|
6279
|
+
interface Props$w {
|
|
6163
6280
|
/**
|
|
6164
6281
|
* Main content of the component.
|
|
6165
6282
|
*/
|
|
@@ -6174,8 +6291,8 @@ interface Props$v {
|
|
|
6174
6291
|
title?: string;
|
|
6175
6292
|
}
|
|
6176
6293
|
|
|
6177
|
-
declare const ImageEditorPresetSelect: React$1.FC<Props$
|
|
6178
|
-
interface Props$
|
|
6294
|
+
declare const ImageEditorPresetSelect: React$1.FC<Props$v>;
|
|
6295
|
+
interface Props$v {
|
|
6179
6296
|
/**
|
|
6180
6297
|
* Aria label for clear button.
|
|
6181
6298
|
*/
|
|
@@ -6190,10 +6307,10 @@ interface Props$u {
|
|
|
6190
6307
|
placeholder?: string;
|
|
6191
6308
|
}
|
|
6192
6309
|
|
|
6193
|
-
declare const ImageEditorResetButton: React$1.ForwardRefExoticComponent<Omit<Props$
|
|
6310
|
+
declare const ImageEditorResetButton: React$1.ForwardRefExoticComponent<Omit<Props$3K, "onClick"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
6194
6311
|
|
|
6195
|
-
declare const ImageEditorResizeDimensions: React$1.ForwardRefExoticComponent<Props$
|
|
6196
|
-
interface Props$
|
|
6312
|
+
declare const ImageEditorResizeDimensions: React$1.ForwardRefExoticComponent<Props$u & React$1.RefAttributes<HTMLDivElement>>;
|
|
6313
|
+
interface Props$u {
|
|
6197
6314
|
/**
|
|
6198
6315
|
* Error message.
|
|
6199
6316
|
*/
|
|
@@ -6208,12 +6325,12 @@ interface Props$t {
|
|
|
6208
6325
|
widthInput: React$1.ReactNode;
|
|
6209
6326
|
}
|
|
6210
6327
|
|
|
6211
|
-
declare const ImageEditorRotateLeftButton: React$1.FC<Omit<Props$
|
|
6328
|
+
declare const ImageEditorRotateLeftButton: React$1.FC<Omit<Props$3K, 'children' | 'onClick'>>;
|
|
6212
6329
|
|
|
6213
|
-
declare const ImageEditorRotateRightButton: React$1.FC<Omit<Props$
|
|
6330
|
+
declare const ImageEditorRotateRightButton: React$1.FC<Omit<Props$3K, 'children' | 'onClick'>>;
|
|
6214
6331
|
|
|
6215
|
-
declare const ImageEditorSaveDialog: React$1.ForwardRefExoticComponent<Props$
|
|
6216
|
-
interface Props$
|
|
6332
|
+
declare const ImageEditorSaveDialog: React$1.ForwardRefExoticComponent<Props$t & React$1.RefAttributes<HTMLDivElement>>;
|
|
6333
|
+
interface Props$t {
|
|
6217
6334
|
/**
|
|
6218
6335
|
* Main content of the component.
|
|
6219
6336
|
*/
|
|
@@ -6224,16 +6341,16 @@ interface Props$s {
|
|
|
6224
6341
|
labelledBy?: string;
|
|
6225
6342
|
}
|
|
6226
6343
|
|
|
6227
|
-
declare const ImageEditorSaveDialogActions: React$1.ForwardRefExoticComponent<Props$
|
|
6228
|
-
interface Props$
|
|
6344
|
+
declare const ImageEditorSaveDialogActions: React$1.ForwardRefExoticComponent<Props$s & React$1.RefAttributes<HTMLDivElement>>;
|
|
6345
|
+
interface Props$s {
|
|
6229
6346
|
/**
|
|
6230
6347
|
* Main content of the component.
|
|
6231
6348
|
*/
|
|
6232
6349
|
children: React$1.ReactNode;
|
|
6233
6350
|
}
|
|
6234
6351
|
|
|
6235
|
-
declare const ImageEditorSaveDialogCanvas: React$1.ForwardRefExoticComponent<Props$
|
|
6236
|
-
interface Props$
|
|
6352
|
+
declare const ImageEditorSaveDialogCanvas: React$1.ForwardRefExoticComponent<Props$r & React$1.RefAttributes<HTMLDivElement>>;
|
|
6353
|
+
interface Props$r {
|
|
6237
6354
|
/**
|
|
6238
6355
|
* Main content of the component.
|
|
6239
6356
|
*/
|
|
@@ -6244,10 +6361,10 @@ interface Props$q {
|
|
|
6244
6361
|
title?: string;
|
|
6245
6362
|
}
|
|
6246
6363
|
|
|
6247
|
-
declare const ImageEditorPreviewCloseButton: React$1.ForwardRefExoticComponent<Omit<Props$
|
|
6364
|
+
declare const ImageEditorPreviewCloseButton: React$1.ForwardRefExoticComponent<Omit<Props$3K, "onClick"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
6248
6365
|
|
|
6249
|
-
declare const ImageEditorSaveDialogHeader: React$1.ForwardRefExoticComponent<Props$
|
|
6250
|
-
interface Props$
|
|
6366
|
+
declare const ImageEditorSaveDialogHeader: React$1.ForwardRefExoticComponent<Props$q & React$1.RefAttributes<HTMLDivElement>>;
|
|
6367
|
+
interface Props$q {
|
|
6251
6368
|
/**
|
|
6252
6369
|
* Main content of the component.
|
|
6253
6370
|
*/
|
|
@@ -6262,28 +6379,28 @@ interface Props$p {
|
|
|
6262
6379
|
titleId?: string;
|
|
6263
6380
|
}
|
|
6264
6381
|
|
|
6265
|
-
declare const ImageEditorSaveDialogImage: React$1.ForwardRefExoticComponent<Props$
|
|
6266
|
-
interface Props$
|
|
6382
|
+
declare const ImageEditorSaveDialogImage: React$1.ForwardRefExoticComponent<Props$p & React$1.RefAttributes<HTMLDivElement>>;
|
|
6383
|
+
interface Props$p {
|
|
6267
6384
|
/**
|
|
6268
6385
|
* Alternative text description of the preview image.
|
|
6269
6386
|
*/
|
|
6270
6387
|
alt: string;
|
|
6271
6388
|
}
|
|
6272
6389
|
|
|
6273
|
-
declare const ImageEditorSaveDialogInfo: React$1.ForwardRefExoticComponent<Props$
|
|
6390
|
+
declare const ImageEditorSaveDialogInfo: React$1.ForwardRefExoticComponent<Props$1D & React$1.RefAttributes<HTMLFormElement>>;
|
|
6274
6391
|
|
|
6275
|
-
declare const ImageEditorSaveDialogPreview: React$1.ForwardRefExoticComponent<Props$
|
|
6276
|
-
interface Props$
|
|
6392
|
+
declare const ImageEditorSaveDialogPreview: React$1.ForwardRefExoticComponent<Props$o & React$1.RefAttributes<HTMLDivElement>>;
|
|
6393
|
+
interface Props$o {
|
|
6277
6394
|
/**
|
|
6278
6395
|
* Main content of the component.
|
|
6279
6396
|
*/
|
|
6280
6397
|
children?: React$1.ReactNode;
|
|
6281
6398
|
}
|
|
6282
6399
|
|
|
6283
|
-
declare const ImageEditorSaveDialogSaveButton: React$1.ForwardRefExoticComponent<Props$
|
|
6400
|
+
declare const ImageEditorSaveDialogSaveButton: React$1.ForwardRefExoticComponent<Props$1g & React$1.RefAttributes<HTMLButtonElement>>;
|
|
6284
6401
|
|
|
6285
|
-
declare const ImageEditorSaveDialogSection: React$1.ForwardRefExoticComponent<Props$
|
|
6286
|
-
interface Props$
|
|
6402
|
+
declare const ImageEditorSaveDialogSection: React$1.ForwardRefExoticComponent<Props$n & React$1.RefAttributes<HTMLDivElement>>;
|
|
6403
|
+
interface Props$n {
|
|
6287
6404
|
/**
|
|
6288
6405
|
* Main content of the component.
|
|
6289
6406
|
*/
|
|
@@ -6298,15 +6415,15 @@ interface Props$m {
|
|
|
6298
6415
|
title?: string;
|
|
6299
6416
|
}
|
|
6300
6417
|
|
|
6301
|
-
declare const ImageEditorToolbar: React$1.ForwardRefExoticComponent<Props$
|
|
6302
|
-
interface Props$
|
|
6418
|
+
declare const ImageEditorToolbar: React$1.ForwardRefExoticComponent<Props$m & React$1.RefAttributes<HTMLDivElement>>;
|
|
6419
|
+
interface Props$m {
|
|
6303
6420
|
/**
|
|
6304
6421
|
* Main content of the component.
|
|
6305
6422
|
*/
|
|
6306
6423
|
children: React$1.ReactNode;
|
|
6307
6424
|
}
|
|
6308
6425
|
|
|
6309
|
-
interface Props$
|
|
6426
|
+
interface Props$l {
|
|
6310
6427
|
/**
|
|
6311
6428
|
* Main button content.
|
|
6312
6429
|
*/
|
|
@@ -6321,46 +6438,46 @@ interface Props$k {
|
|
|
6321
6438
|
onClick?: React$1.MouseEventHandler;
|
|
6322
6439
|
}
|
|
6323
6440
|
|
|
6324
|
-
declare const ImageEditorToolbarFlipHorizontalButton: React$1.FC<Omit<Props$
|
|
6441
|
+
declare const ImageEditorToolbarFlipHorizontalButton: React$1.FC<Omit<Props$l, 'children' | 'onClick'>>;
|
|
6325
6442
|
|
|
6326
|
-
declare const ImageEditorToolbarFlipVerticalButton: React$1.FC<Omit<Props$
|
|
6443
|
+
declare const ImageEditorToolbarFlipVerticalButton: React$1.FC<Omit<Props$l, 'children' | 'onClick'>>;
|
|
6327
6444
|
|
|
6328
6445
|
declare const ImageEditorToolbarImageSize: React$1.ForwardRefExoticComponent<React$1.RefAttributes<HTMLDivElement>>;
|
|
6329
6446
|
|
|
6330
|
-
declare const ImageEditorToolbarRotateLeftButton: React$1.FC<Omit<Props$
|
|
6447
|
+
declare const ImageEditorToolbarRotateLeftButton: React$1.FC<Omit<Props$l, 'children' | 'onClick'>>;
|
|
6331
6448
|
|
|
6332
|
-
declare const ImageEditorToolbarRotateRightButton: React$1.FC<Omit<Props$
|
|
6449
|
+
declare const ImageEditorToolbarRotateRightButton: React$1.FC<Omit<Props$l, 'children' | 'onClick'>>;
|
|
6333
6450
|
|
|
6334
|
-
declare const ImageEditorToolbarSection: React$1.ForwardRefExoticComponent<Props$
|
|
6335
|
-
interface Props$
|
|
6451
|
+
declare const ImageEditorToolbarSection: React$1.ForwardRefExoticComponent<Props$k & React$1.RefAttributes<HTMLDivElement>>;
|
|
6452
|
+
interface Props$k {
|
|
6336
6453
|
/**
|
|
6337
6454
|
* Main content of the component.
|
|
6338
6455
|
*/
|
|
6339
6456
|
children: React$1.ReactNode;
|
|
6340
6457
|
}
|
|
6341
6458
|
|
|
6342
|
-
declare const ImageEditorToolbarZoomInButton: React$1.FC<Omit<Props$
|
|
6459
|
+
declare const ImageEditorToolbarZoomInButton: React$1.FC<Omit<Props$l, 'children' | 'onClick'>>;
|
|
6343
6460
|
|
|
6344
|
-
declare const ImageEditorToolbarZoomOutButton: React$1.FC<Omit<Props$
|
|
6461
|
+
declare const ImageEditorToolbarZoomOutButton: React$1.FC<Omit<Props$l, 'children' | 'onClick'>>;
|
|
6345
6462
|
|
|
6346
|
-
declare const ImageEditorToolbarZoomValue: React$1.ForwardRefExoticComponent<Props$
|
|
6347
|
-
interface Props$
|
|
6463
|
+
declare const ImageEditorToolbarZoomValue: React$1.ForwardRefExoticComponent<Props$j & React$1.RefAttributes<HTMLButtonElement>>;
|
|
6464
|
+
interface Props$j {
|
|
6348
6465
|
/**
|
|
6349
6466
|
* Optional aria-label for the button.
|
|
6350
6467
|
*/
|
|
6351
6468
|
label: string;
|
|
6352
6469
|
}
|
|
6353
6470
|
|
|
6354
|
-
declare const ImageEditorWorkspace: React$1.ForwardRefExoticComponent<Props$
|
|
6355
|
-
interface Props$
|
|
6471
|
+
declare const ImageEditorWorkspace: React$1.ForwardRefExoticComponent<Props$i & React$1.RefAttributes<HTMLDivElement>>;
|
|
6472
|
+
interface Props$i {
|
|
6356
6473
|
/**
|
|
6357
6474
|
* Main content of the component.
|
|
6358
6475
|
*/
|
|
6359
6476
|
children?: React$1.ReactNode;
|
|
6360
6477
|
}
|
|
6361
6478
|
|
|
6362
|
-
declare const ImageEditor: React$1.ForwardRefExoticComponent<Props$
|
|
6363
|
-
interface Props$
|
|
6479
|
+
declare const ImageEditor: React$1.ForwardRefExoticComponent<Props$h & React$1.RefAttributes<HTMLDivElement>>;
|
|
6480
|
+
interface Props$h {
|
|
6364
6481
|
/**
|
|
6365
6482
|
* Main content of the component.
|
|
6366
6483
|
*/
|
|
@@ -6391,8 +6508,8 @@ interface Props$g {
|
|
|
6391
6508
|
originalImageSrc?: string;
|
|
6392
6509
|
}
|
|
6393
6510
|
|
|
6394
|
-
declare const Textarea: React$1.ForwardRefExoticComponent<Props$
|
|
6395
|
-
interface Props$
|
|
6511
|
+
declare const Textarea: React$1.ForwardRefExoticComponent<Props$g & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
6512
|
+
interface Props$g {
|
|
6396
6513
|
/**
|
|
6397
6514
|
* Input's class name.
|
|
6398
6515
|
*/
|
|
@@ -6461,8 +6578,8 @@ declare const TextFieldInput: React$1.ForwardRefExoticComponent<React$1.InputHTM
|
|
|
6461
6578
|
type TextFieldSize = 'md' | 'base';
|
|
6462
6579
|
type TextFieldVariant = 'outlined' | 'underlined';
|
|
6463
6580
|
|
|
6464
|
-
declare const TextField: React$1.ForwardRefExoticComponent<Props$
|
|
6465
|
-
interface Props$
|
|
6581
|
+
declare const TextField: React$1.ForwardRefExoticComponent<Props$f & React$1.RefAttributes<HTMLDivElement>>;
|
|
6582
|
+
interface Props$f {
|
|
6466
6583
|
/**
|
|
6467
6584
|
* Text field's adornment.
|
|
6468
6585
|
*/
|
|
@@ -6497,8 +6614,8 @@ interface Props$e {
|
|
|
6497
6614
|
variant?: TextFieldVariant;
|
|
6498
6615
|
}
|
|
6499
6616
|
|
|
6500
|
-
declare const Pill: React$1.FC<Props$
|
|
6501
|
-
interface Props$
|
|
6617
|
+
declare const Pill: React$1.FC<Props$e>;
|
|
6618
|
+
interface Props$e {
|
|
6502
6619
|
/**
|
|
6503
6620
|
* Whether component is active.
|
|
6504
6621
|
*/
|
|
@@ -6514,7 +6631,7 @@ interface Props$d {
|
|
|
6514
6631
|
/**
|
|
6515
6632
|
* Icon to display.
|
|
6516
6633
|
*/
|
|
6517
|
-
icon?: React$1.ReactElement<Props$
|
|
6634
|
+
icon?: React$1.ReactElement<Props$3N>;
|
|
6518
6635
|
/**
|
|
6519
6636
|
* Unique ID of a tab.
|
|
6520
6637
|
*/
|
|
@@ -6525,14 +6642,30 @@ interface Props$d {
|
|
|
6525
6642
|
onClick?: React$1.MouseEventHandler<HTMLButtonElement>;
|
|
6526
6643
|
}
|
|
6527
6644
|
|
|
6528
|
-
declare const Pills: React$1.FC<Props$
|
|
6529
|
-
interface Props$
|
|
6645
|
+
declare const Pills: React$1.FC<Props$d>;
|
|
6646
|
+
interface Props$d {
|
|
6530
6647
|
/**
|
|
6531
6648
|
* Main content of the component.
|
|
6532
6649
|
*/
|
|
6533
6650
|
children: React$1.ReactNode;
|
|
6534
6651
|
}
|
|
6535
6652
|
|
|
6653
|
+
declare const PdfThumb: React$1.FC<Props$c>;
|
|
6654
|
+
interface Props$c {
|
|
6655
|
+
/**
|
|
6656
|
+
* Indicates if PDF load should be delayed until this flag is false.
|
|
6657
|
+
*/
|
|
6658
|
+
delayLoad?: boolean;
|
|
6659
|
+
/**
|
|
6660
|
+
* Limits the fallback icon size.
|
|
6661
|
+
*/
|
|
6662
|
+
limitFallbackIconSize?: boolean;
|
|
6663
|
+
/**
|
|
6664
|
+
* URL of the PDF file to render.
|
|
6665
|
+
*/
|
|
6666
|
+
src: string;
|
|
6667
|
+
}
|
|
6668
|
+
|
|
6536
6669
|
declare const PdfViewer: React$1.FC<Props$b>;
|
|
6537
6670
|
interface Props$b {
|
|
6538
6671
|
/**
|
|
@@ -6733,5 +6866,5 @@ interface Props {
|
|
|
6733
6866
|
closeLabel?: string;
|
|
6734
6867
|
}
|
|
6735
6868
|
|
|
6736
|
-
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, SearchDialogAiHelpBanner, SearchDialogContent, SearchDialogFallback, SearchDialogHeader, SearchDialogInput, SearchDialogLabel, SearchDialogSection, SearchDialogToggle, 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, useTypewriter, useUIContext, validators_d as validators, writeTextToClipboard, writeToClipboard };
|
|
6737
|
-
export type { ButtonColor, ButtonSize, ButtonType, CropperDimensions, CropperLockedDimension, Dimensions, DocIconName, DragDimensionsHandler, DragHandler, DraggableOptions, DraggableState, DropFile, DropItem, IconColor, IconName, Props$
|
|
6869
|
+
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, ChooseTopbarAction, CircularLoader, ContainerQuery, ContainerQueryProvider, CopyButton, CopyableInput, CopyableLabel, CoreUploaderErrorPanel, CoreUploaderProgressPanel, CoreUploaderView, CoreUploaderWorkingArea, Dialog, DialogActions, DialogColumn, DialogFooter, DialogHeader, DialogHeaderContext, 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, NavbarIcon, 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, PdfThumb, PdfViewer, PermissionTag, Permissions, PermissionsActions, PermissionsContent, PermissionsForm, PermissionsFormGroup, PermissionsFormInput, PermissionsManagementPanel, PermissionsManagementPanelHeader, PermissionsManagementPanelRulesHeader, PermissionsPanel, PermissionsScopeHeader, PermissionsScopeList, PermissionsTitle, Pill, Pills, Popper, PopperArrow, PopperContext, ProgressPanel, PropertiesTable, PropertiesTableButton, PropertiesTableRow, RangeSlider, ResponsiveImage, ResponsiveImageFallback, ResponsiveImageFit, ResponsiveImageScalable, ResponsiveImageSkeleton, SearchDialog, SearchDialogActions, SearchDialogAiHelpBanner, SearchDialogContent, SearchDialogFallback, SearchDialogHeader, SearchDialogInput, SearchDialogLabel, SearchDialogSection, SearchDialogToggle, 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, ViewDialogHeaderWrapper, ViewDialogSearchButton, 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, useDialogHeaderContext, useDownload, useDraggable, useElementVisibility, useFilesDrop, useFixedCtx, useForkRef, useGridSelection, useImageEditorContext, useImageEditorPreviewContext, useIsMounted, useIsomorphicLayoutEffect, useItemsOverflow, useListDnd, useNavbarCtx, usePopperCtx, useResettableTimeout, useResize, useResponsiveSizes, useScaleDown, useScroll, useScrollDnd, useToggle, useTypewriter, useUIContext, validators_d as validators, writeTextToClipboard, writeToClipboard };
|
|
6870
|
+
export type { ButtonColor, ButtonSize, ButtonType, CropperDimensions, CropperLockedDimension, Dimensions, DocIconName, DragDimensionsHandler, DragHandler, DraggableOptions, DraggableState, DropFile, DropItem, IconColor, IconName, Props$3N 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$3N as Props, RInterval, ResizeOptions, ScrollCoordsConfig, ScrollOptions, SelectKeyboardNavProps, SelectKeyboardNextIdGetter, SelectOption, SelectRenderableOption, SelectSection, SelectToggleHandler, SelectionAreaCoords, Props$g as TextareaProps, Props$1T as UIProviderProps, UseFilesDropProps, UseTypewriterOptions, Props$1W as ViewDialogProps, XYCoord };
|