@ckbox/components 2.8.2 → 2.9.0-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/dist/index.d.ts +148 -40
- package/dist/index.js +1 -1
- package/dist/styles/ckbox.css +1 -1
- package/icons/FileOpen.svg +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ Using a build served from the CDN is the simplest and fastest way of embedding C
|
|
|
13
13
|
To start using CKBox on your website, embed the following `script` element in the HTML code of the page:
|
|
14
14
|
|
|
15
15
|
```html
|
|
16
|
-
<script src="https://cdn.ckbox.io/ckbox/2.
|
|
16
|
+
<script src="https://cdn.ckbox.io/ckbox/2.9.0-dev.0/ckbox.js"></script>
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
Quick implementation example:
|
|
@@ -23,7 +23,7 @@ Quick implementation example:
|
|
|
23
23
|
<html>
|
|
24
24
|
<head>
|
|
25
25
|
<meta charset="UTF-8" />
|
|
26
|
-
<script src="https://cdn.ckbox.io/ckbox/2.
|
|
26
|
+
<script src="https://cdn.ckbox.io/ckbox/2.9.0-dev.0/ckbox.js"></script>
|
|
27
27
|
</head>
|
|
28
28
|
<body>
|
|
29
29
|
<div id="ckbox"></div>
|
|
@@ -48,10 +48,10 @@ The code snippet below presents the simplest scenario for integration of CKEdito
|
|
|
48
48
|
<html>
|
|
49
49
|
<head>
|
|
50
50
|
<meta charset="UTF-8" />
|
|
51
|
-
<script src="https://cdn.ckbox.io/ckbox/2.
|
|
51
|
+
<script src="https://cdn.ckbox.io/ckbox/2.9.0-dev.0/ckbox.js"></script>
|
|
52
52
|
<link
|
|
53
53
|
rel="stylesheet"
|
|
54
|
-
href="https://cdn.ckbox.io/ckbox/2.
|
|
54
|
+
href="https://cdn.ckbox.io/ckbox/2.9.0-dev.0/styles/themes/lark.css"
|
|
55
55
|
/>
|
|
56
56
|
<link rel="stylesheet" href="https://cdn.ckeditor.com/ckeditor5/42.0.0/ckeditor5.css" />
|
|
57
57
|
</head>
|
package/dist/index.d.ts
CHANGED
|
@@ -8,8 +8,8 @@ import { TransitionProps } from 'react-transition-group/Transition';
|
|
|
8
8
|
import Cropper$1 from 'cropperjs';
|
|
9
9
|
import * as react_dnd from 'react-dnd';
|
|
10
10
|
|
|
11
|
-
declare const Avatar: React$1.FC<Props$
|
|
12
|
-
interface Props$
|
|
11
|
+
declare const Avatar: React$1.FC<Props$3x>;
|
|
12
|
+
interface Props$3x {
|
|
13
13
|
/**
|
|
14
14
|
* ID used for determining color.
|
|
15
15
|
*/
|
|
@@ -28,8 +28,8 @@ interface Props$3t {
|
|
|
28
28
|
showFullName?: boolean;
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
-
declare const Bottombar: React$1.ForwardRefExoticComponent<Props$
|
|
32
|
-
interface Props$
|
|
31
|
+
declare const Bottombar: React$1.ForwardRefExoticComponent<Props$3w & React$1.RefAttributes<HTMLDivElement>>;
|
|
32
|
+
interface Props$3w {
|
|
33
33
|
/**
|
|
34
34
|
* Main content of the component.
|
|
35
35
|
*/
|
|
@@ -114,6 +114,8 @@ declare const FileDownloadOutlined: (props: SVGProps<SVGSVGElement>) => React$1.
|
|
|
114
114
|
|
|
115
115
|
declare const FileMoveOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
116
116
|
|
|
117
|
+
declare const FileOpen: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
118
|
+
|
|
117
119
|
declare const FileUploadOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
118
120
|
|
|
119
121
|
declare const FilterListOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
@@ -182,7 +184,7 @@ declare const Warning: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
|
182
184
|
|
|
183
185
|
declare const WarningAmberOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
184
186
|
|
|
185
|
-
interface Props$
|
|
187
|
+
interface Props$3v {
|
|
186
188
|
/**
|
|
187
189
|
* Toggles optional icon animation.
|
|
188
190
|
*/
|
|
@@ -197,15 +199,15 @@ interface Props$3r {
|
|
|
197
199
|
'data-testid'?: string;
|
|
198
200
|
}
|
|
199
201
|
|
|
200
|
-
declare const ArrowRightOutlinedAnimated: React$1.FC<Props$
|
|
202
|
+
declare const ArrowRightOutlinedAnimated: React$1.FC<Props$3v>;
|
|
201
203
|
|
|
202
|
-
declare const SettingsOutlinedAnimated: React$1.FC<Props$
|
|
204
|
+
declare const SettingsOutlinedAnimated: React$1.FC<Props$3v>;
|
|
203
205
|
|
|
204
|
-
declare const SortAscending: React$1.FC<Props$
|
|
206
|
+
declare const SortAscending: React$1.FC<Props$3v>;
|
|
205
207
|
|
|
206
|
-
declare const SortDescending: React$1.FC<Props$
|
|
208
|
+
declare const SortDescending: React$1.FC<Props$3v>;
|
|
207
209
|
|
|
208
|
-
declare const Spinner: React$1.FC<Props$
|
|
210
|
+
declare const Spinner: React$1.FC<Props$3v>;
|
|
209
211
|
|
|
210
212
|
declare const icons$1_AccessTimeOutlined: typeof AccessTimeOutlined;
|
|
211
213
|
declare const icons$1_AddOutlined: typeof AddOutlined;
|
|
@@ -241,6 +243,7 @@ declare const icons$1_ExpandMoreOutlined: typeof ExpandMoreOutlined;
|
|
|
241
243
|
declare const icons$1_FileCopyOutlined: typeof FileCopyOutlined;
|
|
242
244
|
declare const icons$1_FileDownloadOutlined: typeof FileDownloadOutlined;
|
|
243
245
|
declare const icons$1_FileMoveOutlined: typeof FileMoveOutlined;
|
|
246
|
+
declare const icons$1_FileOpen: typeof FileOpen;
|
|
244
247
|
declare const icons$1_FileUploadOutlined: typeof FileUploadOutlined;
|
|
245
248
|
declare const icons$1_FilterListOutlined: typeof FilterListOutlined;
|
|
246
249
|
declare const icons$1_FirstPageOutlined: typeof FirstPageOutlined;
|
|
@@ -315,6 +318,7 @@ declare namespace icons$1 {
|
|
|
315
318
|
icons$1_FileCopyOutlined as FileCopyOutlined,
|
|
316
319
|
icons$1_FileDownloadOutlined as FileDownloadOutlined,
|
|
317
320
|
icons$1_FileMoveOutlined as FileMoveOutlined,
|
|
321
|
+
icons$1_FileOpen as FileOpen,
|
|
318
322
|
icons$1_FileUploadOutlined as FileUploadOutlined,
|
|
319
323
|
icons$1_FilterListOutlined as FilterListOutlined,
|
|
320
324
|
icons$1_FirstPageOutlined as FirstPageOutlined,
|
|
@@ -361,11 +365,11 @@ type IconRenderer = (props: {
|
|
|
361
365
|
}) => JSX.Element;
|
|
362
366
|
type IconRenderProp = string | IconRenderer;
|
|
363
367
|
type IconName = keyof typeof icons$1;
|
|
364
|
-
type IconSize = 'small' | 'base' | 'medium' | 'big' | 'bigger' | 'humongous';
|
|
368
|
+
type IconSize = 'small' | 'base' | 'medium' | 'big' | 'bigger' | 'biggest' | 'humongous';
|
|
365
369
|
type IconColor = 'accent' | 'danger' | 'default' | 'disabled' | 'muted' | 'success' | 'warning';
|
|
366
370
|
|
|
367
|
-
declare const Icon: React$1.FC<Props$
|
|
368
|
-
interface Props$
|
|
371
|
+
declare const Icon: React$1.FC<Props$3u>;
|
|
372
|
+
interface Props$3u {
|
|
369
373
|
/**
|
|
370
374
|
* Toggles optional icon animation.
|
|
371
375
|
*/
|
|
@@ -395,8 +399,8 @@ interface Props$3q {
|
|
|
395
399
|
size?: IconSize;
|
|
396
400
|
}
|
|
397
401
|
|
|
398
|
-
declare const Button: React$1.ForwardRefExoticComponent<Props$
|
|
399
|
-
interface Props$
|
|
402
|
+
declare const Button: React$1.ForwardRefExoticComponent<Props$3t & React$1.RefAttributes<HTMLButtonElement>>;
|
|
403
|
+
interface Props$3t {
|
|
400
404
|
/**
|
|
401
405
|
* Applies active styling.
|
|
402
406
|
*/
|
|
@@ -491,24 +495,24 @@ interface Props$3p {
|
|
|
491
495
|
disabledLabelWrapping?: boolean;
|
|
492
496
|
}
|
|
493
497
|
|
|
494
|
-
declare const ButtonGroup: React$1.FC<Props$
|
|
495
|
-
interface Props$
|
|
498
|
+
declare const ButtonGroup: React$1.FC<Props$3s>;
|
|
499
|
+
interface Props$3s {
|
|
496
500
|
/**
|
|
497
501
|
* Button components.
|
|
498
502
|
*/
|
|
499
503
|
children: React$1.ReactNode;
|
|
500
504
|
}
|
|
501
505
|
|
|
502
|
-
declare const ButtonRow: React$1.FC<Props$
|
|
503
|
-
interface Props$
|
|
506
|
+
declare const ButtonRow: React$1.FC<Props$3r>;
|
|
507
|
+
interface Props$3r {
|
|
504
508
|
/**
|
|
505
509
|
* Button components.
|
|
506
510
|
*/
|
|
507
511
|
children: React$1.ReactNode;
|
|
508
512
|
}
|
|
509
513
|
|
|
510
|
-
declare const CircularLoader: React$1.ForwardRefExoticComponent<Props$
|
|
511
|
-
interface Props$
|
|
514
|
+
declare const CircularLoader: React$1.ForwardRefExoticComponent<Props$3q & React$1.RefAttributes<HTMLButtonElement>>;
|
|
515
|
+
interface Props$3q {
|
|
512
516
|
/**
|
|
513
517
|
* Component's label.
|
|
514
518
|
*/
|
|
@@ -531,6 +535,110 @@ interface Props$3m {
|
|
|
531
535
|
onClick?: () => void;
|
|
532
536
|
}
|
|
533
537
|
|
|
538
|
+
declare const CoreUploaderProgressPanel: ({ error, errorMessage, completed, actionIcon, actionLabel, onAction, id, title, thumbnailSrc, value, assetSize, displayThumbnail, }: Props$3p) => React$1.JSX.Element;
|
|
539
|
+
interface Props$3p {
|
|
540
|
+
/**
|
|
541
|
+
* Source string used for thumbnail.
|
|
542
|
+
*/
|
|
543
|
+
thumbnailSrc?: string;
|
|
544
|
+
/**
|
|
545
|
+
* Formatted size of asset.
|
|
546
|
+
*/
|
|
547
|
+
assetSize: string;
|
|
548
|
+
/**
|
|
549
|
+
* Determines whether to display thumbnail.
|
|
550
|
+
*/
|
|
551
|
+
displayThumbnail?: boolean;
|
|
552
|
+
/**
|
|
553
|
+
* Applies error styling.
|
|
554
|
+
*/
|
|
555
|
+
error?: boolean;
|
|
556
|
+
/**
|
|
557
|
+
* Applies error styling.
|
|
558
|
+
*/
|
|
559
|
+
errorMessage?: React$1.ReactNode;
|
|
560
|
+
/**
|
|
561
|
+
* Applies warning styling.
|
|
562
|
+
*/
|
|
563
|
+
warning?: boolean;
|
|
564
|
+
/**
|
|
565
|
+
* Applies full progress styling.
|
|
566
|
+
*/
|
|
567
|
+
completed?: boolean;
|
|
568
|
+
/**
|
|
569
|
+
* Unique identifier of a panel.
|
|
570
|
+
*/
|
|
571
|
+
id: string;
|
|
572
|
+
/**
|
|
573
|
+
* Panel title.
|
|
574
|
+
*/
|
|
575
|
+
title: string;
|
|
576
|
+
/**
|
|
577
|
+
* Current progress value in %.
|
|
578
|
+
*/
|
|
579
|
+
value: number;
|
|
580
|
+
/**
|
|
581
|
+
* Callback invoked with the action button.
|
|
582
|
+
*/
|
|
583
|
+
onAction?: () => void;
|
|
584
|
+
/**
|
|
585
|
+
* Label of the action button.
|
|
586
|
+
*/
|
|
587
|
+
actionLabel?: string;
|
|
588
|
+
/**
|
|
589
|
+
* Icon of the action button.
|
|
590
|
+
*/
|
|
591
|
+
actionIcon?: IconName;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
declare const CoreUploaderWorkingArea: React$1.ForwardRefExoticComponent<Props$3o & React$1.RefAttributes<HTMLDivElement>>;
|
|
595
|
+
interface Props$3o {
|
|
596
|
+
/**
|
|
597
|
+
* Label displayed by component.
|
|
598
|
+
*/
|
|
599
|
+
label: string;
|
|
600
|
+
/**
|
|
601
|
+
* Applies invalid configuration styling.
|
|
602
|
+
*/
|
|
603
|
+
isConfigurationInvalid?: boolean;
|
|
604
|
+
/**
|
|
605
|
+
* Applies active work area styling.
|
|
606
|
+
*/
|
|
607
|
+
isActive?: boolean;
|
|
608
|
+
/**
|
|
609
|
+
* Space for component underneath the label.
|
|
610
|
+
*/
|
|
611
|
+
uploadButton: React$1.ReactNode;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
declare const CoreUploaderErrorPanel: ({ children, errorTitle, errorSubTitle }: Props$3n) => React$1.JSX.Element;
|
|
615
|
+
interface Props$3n {
|
|
616
|
+
/**
|
|
617
|
+
* Content displayed inside error panel.
|
|
618
|
+
*/
|
|
619
|
+
children: React$1.ReactNode;
|
|
620
|
+
/**
|
|
621
|
+
* Main label for the error panel.
|
|
622
|
+
*/
|
|
623
|
+
errorTitle: string;
|
|
624
|
+
/**
|
|
625
|
+
* Additional label for the error panel.
|
|
626
|
+
*/
|
|
627
|
+
errorSubTitle: string;
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
declare const CoreUploaderView: ({ header, footer }: Props$3m) => React$1.JSX.Element;
|
|
631
|
+
interface Props$3m {
|
|
632
|
+
/**
|
|
633
|
+
* Content displayed as header element.
|
|
634
|
+
*/
|
|
635
|
+
header: React$1.ReactNode;
|
|
636
|
+
/**
|
|
637
|
+
* Content displayed as footer element.
|
|
638
|
+
*/
|
|
639
|
+
footer?: React$1.ReactNode;
|
|
640
|
+
}
|
|
641
|
+
|
|
534
642
|
declare const DialogNextTitle: React$1.ForwardRefExoticComponent<Props$3l & React$1.RefAttributes<HTMLDivElement>>;
|
|
535
643
|
interface Props$3l {
|
|
536
644
|
/**
|
|
@@ -1353,7 +1461,7 @@ interface Props$2M {
|
|
|
1353
1461
|
/**
|
|
1354
1462
|
* Name of selected icon.
|
|
1355
1463
|
*/
|
|
1356
|
-
icon?: 'info' | 'success' | 'error' | 'warning' | React$1.ReactElement<Props$
|
|
1464
|
+
icon?: 'info' | 'success' | 'error' | 'warning' | React$1.ReactElement<Props$3u>;
|
|
1357
1465
|
/**
|
|
1358
1466
|
* Optional sub title of the modal.
|
|
1359
1467
|
*/
|
|
@@ -1580,7 +1688,7 @@ interface Props$2H {
|
|
|
1580
1688
|
/**
|
|
1581
1689
|
* Displayed icon.
|
|
1582
1690
|
*/
|
|
1583
|
-
icon?: React$1.ReactElement<Props$
|
|
1691
|
+
icon?: React$1.ReactElement<Props$3u>;
|
|
1584
1692
|
}
|
|
1585
1693
|
|
|
1586
1694
|
declare const NavbarItemsGroup: React$1.FC<Props$2G>;
|
|
@@ -4833,7 +4941,7 @@ interface Props$1a {
|
|
|
4833
4941
|
}
|
|
4834
4942
|
|
|
4835
4943
|
declare const LoadingButton: React$1.ForwardRefExoticComponent<Props$19 & React$1.RefAttributes<HTMLButtonElement>>;
|
|
4836
|
-
interface Props$19 extends Props$
|
|
4944
|
+
interface Props$19 extends Props$3t {
|
|
4837
4945
|
/**
|
|
4838
4946
|
* Delays loader appearance. Defaults to `true`.
|
|
4839
4947
|
*/
|
|
@@ -5197,11 +5305,11 @@ interface Props$N {
|
|
|
5197
5305
|
/**
|
|
5198
5306
|
* Optional button.
|
|
5199
5307
|
*/
|
|
5200
|
-
button?: React$1.ReactElement<Props$
|
|
5308
|
+
button?: React$1.ReactElement<Props$3t> | null;
|
|
5201
5309
|
/**
|
|
5202
5310
|
* Optional icon.
|
|
5203
5311
|
*/
|
|
5204
|
-
icon?: React$1.ReactElement<Props$
|
|
5312
|
+
icon?: React$1.ReactElement<Props$3u> | ((props: Props$3u) => React$1.ReactNode) | null;
|
|
5205
5313
|
}
|
|
5206
5314
|
|
|
5207
5315
|
declare const NavigationDialogItemLabel: React$1.FC<Props$M>;
|
|
@@ -5213,7 +5321,7 @@ interface Props$M {
|
|
|
5213
5321
|
/**
|
|
5214
5322
|
* Displayed icon.
|
|
5215
5323
|
*/
|
|
5216
|
-
icon?: React$1.ReactElement<Props$
|
|
5324
|
+
icon?: React$1.ReactElement<Props$3u>;
|
|
5217
5325
|
}
|
|
5218
5326
|
|
|
5219
5327
|
declare const NavigationDialog: React$1.ForwardRefExoticComponent<Props$L & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -5639,7 +5747,7 @@ interface Props$H {
|
|
|
5639
5747
|
title?: string;
|
|
5640
5748
|
}
|
|
5641
5749
|
|
|
5642
|
-
declare const ImageEditorApplyButton: React$1.ForwardRefExoticComponent<Omit<Props$
|
|
5750
|
+
declare const ImageEditorApplyButton: React$1.ForwardRefExoticComponent<Omit<Props$3t, "onClick"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
5643
5751
|
|
|
5644
5752
|
declare const ImageEditorButtonsGroup: React$1.ForwardRefExoticComponent<Props$G & React$1.RefAttributes<HTMLDivElement>>;
|
|
5645
5753
|
interface Props$G {
|
|
@@ -5714,7 +5822,7 @@ interface Props$B {
|
|
|
5714
5822
|
/**
|
|
5715
5823
|
* Icon to display.
|
|
5716
5824
|
*/
|
|
5717
|
-
icon?: React$1.ReactElement<Props$
|
|
5825
|
+
icon?: React$1.ReactElement<Props$3u>;
|
|
5718
5826
|
}
|
|
5719
5827
|
|
|
5720
5828
|
declare const ImageEditorCropCardFreeform: React$1.ForwardRefExoticComponent<Props$A & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -5726,7 +5834,7 @@ interface Props$A {
|
|
|
5726
5834
|
/**
|
|
5727
5835
|
* Icon to display
|
|
5728
5836
|
*/
|
|
5729
|
-
icon?: React$1.ReactElement<Props$
|
|
5837
|
+
icon?: React$1.ReactElement<Props$3u>;
|
|
5730
5838
|
}
|
|
5731
5839
|
|
|
5732
5840
|
declare const ImageEditorCropCardList: React$1.ForwardRefExoticComponent<Props$z & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -5746,7 +5854,7 @@ interface Props$y {
|
|
|
5746
5854
|
/**
|
|
5747
5855
|
* Icon to display
|
|
5748
5856
|
*/
|
|
5749
|
-
icon?: React$1.ReactElement<Props$
|
|
5857
|
+
icon?: React$1.ReactElement<Props$3u>;
|
|
5750
5858
|
}
|
|
5751
5859
|
|
|
5752
5860
|
declare const ImageEditorDemoLabel: React$1.FC<Props$x>;
|
|
@@ -5761,9 +5869,9 @@ interface Props$x {
|
|
|
5761
5869
|
creditHref?: string;
|
|
5762
5870
|
}
|
|
5763
5871
|
|
|
5764
|
-
declare const ImageEditorFlipHorizontalButton: React$1.FC<Omit<Props$
|
|
5872
|
+
declare const ImageEditorFlipHorizontalButton: React$1.FC<Omit<Props$3t, 'children' | 'onClick'>>;
|
|
5765
5873
|
|
|
5766
|
-
declare const ImageEditorFlipVerticalButton: React$1.FC<Omit<Props$
|
|
5874
|
+
declare const ImageEditorFlipVerticalButton: React$1.FC<Omit<Props$3t, 'children' | 'onClick'>>;
|
|
5767
5875
|
|
|
5768
5876
|
declare const ImageEditorLoader: React$1.ForwardRefExoticComponent<Props$w & React$1.RefAttributes<HTMLDivElement>>;
|
|
5769
5877
|
interface Props$w {
|
|
@@ -5841,7 +5949,7 @@ interface Props$r {
|
|
|
5841
5949
|
placeholder?: string;
|
|
5842
5950
|
}
|
|
5843
5951
|
|
|
5844
|
-
declare const ImageEditorResetButton: React$1.ForwardRefExoticComponent<Omit<Props$
|
|
5952
|
+
declare const ImageEditorResetButton: React$1.ForwardRefExoticComponent<Omit<Props$3t, "onClick"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
5845
5953
|
|
|
5846
5954
|
declare const ImageEditorResizeDimensions: React$1.ForwardRefExoticComponent<Props$q & React$1.RefAttributes<HTMLDivElement>>;
|
|
5847
5955
|
interface Props$q {
|
|
@@ -5859,9 +5967,9 @@ interface Props$q {
|
|
|
5859
5967
|
widthInput: React$1.ReactNode;
|
|
5860
5968
|
}
|
|
5861
5969
|
|
|
5862
|
-
declare const ImageEditorRotateLeftButton: React$1.FC<Omit<Props$
|
|
5970
|
+
declare const ImageEditorRotateLeftButton: React$1.FC<Omit<Props$3t, 'children' | 'onClick'>>;
|
|
5863
5971
|
|
|
5864
|
-
declare const ImageEditorRotateRightButton: React$1.FC<Omit<Props$
|
|
5972
|
+
declare const ImageEditorRotateRightButton: React$1.FC<Omit<Props$3t, 'children' | 'onClick'>>;
|
|
5865
5973
|
|
|
5866
5974
|
declare const ImageEditorSaveDialog: React$1.ForwardRefExoticComponent<Props$p & React$1.RefAttributes<HTMLDivElement>>;
|
|
5867
5975
|
interface Props$p {
|
|
@@ -5895,7 +6003,7 @@ interface Props$n {
|
|
|
5895
6003
|
title?: string;
|
|
5896
6004
|
}
|
|
5897
6005
|
|
|
5898
|
-
declare const ImageEditorPreviewCloseButton: React$1.ForwardRefExoticComponent<Omit<Props$
|
|
6006
|
+
declare const ImageEditorPreviewCloseButton: React$1.ForwardRefExoticComponent<Omit<Props$3t, "onClick"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
5899
6007
|
|
|
5900
6008
|
declare const ImageEditorSaveDialogHeader: React$1.ForwardRefExoticComponent<Props$m & React$1.RefAttributes<HTMLDivElement>>;
|
|
5901
6009
|
interface Props$m {
|
|
@@ -6165,7 +6273,7 @@ interface Props$a {
|
|
|
6165
6273
|
/**
|
|
6166
6274
|
* Icon to display.
|
|
6167
6275
|
*/
|
|
6168
|
-
icon?: React$1.ReactElement<Props$
|
|
6276
|
+
icon?: React$1.ReactElement<Props$3u>;
|
|
6169
6277
|
/**
|
|
6170
6278
|
* Unique ID of a tab.
|
|
6171
6279
|
*/
|
|
@@ -6280,5 +6388,5 @@ interface Props {
|
|
|
6280
6388
|
className?: string;
|
|
6281
6389
|
}
|
|
6282
6390
|
|
|
6283
|
-
export { Avatar, 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, Dialog, DialogActions, DialogColumn, DialogFooter, DialogHeader, DialogNext, DialogNextCloseButton, DialogNextColumn, DialogNextContent, DialogNextFooter, DialogNextHeader, DialogNextSeparator, DialogNextTitle, DialogProgressHeader, DialogRow, DialogSection, DocIcon, Drawer, DrawerActions, DrawerContent, DrawerHeader, DrawerSection, Ellipsis, EmptyView, EmptyViewLabel, FileInput, FilePreview, FilePreviewActions, FilePreviewColumn, FilePreviewContent, FilePreviewHoverable, FilePreviewNavButton, FilePreviewTooltip, Fixed, FixedContext, FixedProvider, Form, FormFeedback, FormGroup, FormGroupColumn, FormGroupInfo, FormInputLabel, Gallery, GalleryFigure, GalleryItem, Icon, ImageEditor, ImageEditorActions, ImageEditorApplyButton, ImageEditorButtonsGroup, ImageEditorButtonsRow, ImageEditorCanvas, ImageEditorContent, ImageEditorContext, ImageEditorCropBoxDimensions, ImageEditorCropCard, ImageEditorCropCardFreeform, ImageEditorCropCardList, ImageEditorCropCardOriginal, ImageEditorDemoLabel, ImageEditorDimensionsInput, ImageEditorFlipHorizontalButton, ImageEditorFlipVerticalButton, ImageEditorLoader, ImageEditorMenu, ImageEditorMenuContainer, ImageEditorMenuSection, ImageEditorMenuSubSection, ImageEditorPresetSelect, ImageEditorPreviewContext, ImageEditorResetButton, ImageEditorResizeDimensions, ImageEditorRotateLeftButton, ImageEditorRotateRightButton, ImageEditorSaveDialog, ImageEditorSaveDialogActions, ImageEditorSaveDialogCanvas, ImageEditorPreviewCloseButton as ImageEditorSaveDialogCloseButton, ImageEditorSaveDialogHeader, ImageEditorSaveDialogImage, ImageEditorSaveDialogInfo, ImageEditorSaveDialogPreview, ImageEditorSaveDialogSaveButton, ImageEditorSaveDialogSection, ImageEditorToolbar, ImageEditorToolbarFlipHorizontalButton, ImageEditorToolbarFlipVerticalButton, ImageEditorToolbarImageSize, ImageEditorToolbarRotateLeftButton, ImageEditorToolbarRotateRightButton, ImageEditorToolbarSection, ImageEditorToolbarZoomInButton, ImageEditorToolbarZoomOutButton, ImageEditorToolbarZoomValue, ImageEditorWorkspace, Link, List, ListItem, ListItemActions, ListItemContent, LoadingButton, Menu, MenuItem, MenuSection, MenuSubSection, ModalDialog, ModalDialogActionContent, ModalDialogActionItem, ModalDialogCallout, ModalDialogContent, ModalDialogContentColumn, ModalDialogFooter, ModalDialogFooterAction, ModalDialogHeader, ModalDialogList, ModalDialogListItem, MouseEventButton, NAVBAR_COLLAPSED_WIDTH, NAVBAR_LOADING_DELAY, NAVBAR_MAX_WIDTH, NAVBAR_MIN_WIDTH, NAVBAR_PREVIEW_TIMEOUT, Navbar, NavbarContext, NavbarItem, NavbarItemContainer, NavbarItemContent, NavbarItemLabel, NavbarItemsGroup, NavbarLink, NavbarScrollableContent, NavbarSeparator, NavbarToggleButton, NavigationDialog, NavigationDialogContent, NavigationDialogFallbackContent, NavigationDialogFooter, NavigationDialogHeader, NavigationDialogItem, NavigationDialogItemAction, NavigationDialogItemLabel, Notification, Notifications, Modal as Overlay, Pagination, Panel, PanelActions, PanelCheckbox, PanelColumn, PanelContent, PanelContentProp, PanelDescriptionItem, PanelDragHandle, PanelList, PanelListDivider, PanelSide, PanelSkeleton, PanelTitle, PdfViewer, PermissionTag, Permissions, PermissionsActions, PermissionsContent, PermissionsForm, PermissionsFormGroup, PermissionsFormInput, PermissionsManagementPanel, PermissionsManagementPanelHeader, PermissionsManagementPanelRulesHeader, PermissionsPanel, PermissionsScopeHeader, PermissionsScopeList, PermissionsTitle, Pill, Pills, Popper, PopperArrow, PopperContext, ProgressPanel, PropertiesTable, PropertiesTableRow, RangeSlider, ResponsiveImage, ResponsiveImageFallback, ResponsiveImageFit, ResponsiveImageScalable, ResponsiveImageSkeleton, SearchDialog, SearchDialogActions, SearchDialogContent, SearchDialogFallback, SearchDialogHeader, SearchDialogInput, SearchDialogSection, Select, SelectListboxGrid, SelectionArea, Skeleton, SortButton, SortableDndList, SortableDndListItem, Switch, SwitchInput, SwitchView, Tab, TabPanel, Table, TableBody, TableCell, TableContainer, TableHead, TableHeader, TableRow, TableToolbar, Tabs, Tag, TagInput, TagLabel, TagList, TextEllipsis, TextField, TextFieldInput, Textarea, Tooltip, Topbar, TopbarAction, UIContext, UIProvider, View, ViewContent, ViewContentBar, ViewContentWrapper, ViewDialog, ViewFooter, ViewHeader, ViewPaper, ViewSideContent, ViewWrapper, areItemsIdentical, base64FromBlurHash, checkIfDropFilesHaveFolders, clamp, clsx, formatTimeDistance, getAllFileEntries, getAllFiles, getClampedDimension, getClampedDimensions, getKeyHandler, getPixelCountFromImageBlob, getScrollVectors, getStandardDeviation, getValidChildren, hasOwnProperty, imageEditorContextDefaultValue, imageEditorPreviewContextDefaultValue, isClipboardItemSupported, matchesCombination, navbarContextInitProps, noOp, rInterval, readAllDirectoryEntries, readEntriesPromise, readFromClipboard, tryReadFromClipboard, tryWriteTextToClipboard, tryWriteToClipboard, uiContextInitProps, useBatchUpdate, useClickAway, useContainerKeyDown, useContainerQuery, useCropper, useCropperCrop, useCropperRotate, useCropperScale, useCropperZoom, useDeferredLoader, useDeferredUnmount, useDelay, useDownload, useDraggable, useElementVisibility, useFilesDrop, useFixedCtx, useForkRef, useGridSelection, useImageEditorContext, useImageEditorPreviewContext, useIsMounted, useIsomorphicLayoutEffect, useItemsOverflow, useListDnd, useNavbarCtx, usePopperCtx, useResettableTimeout, useResize, useResponsiveSizes, useScaleDown, useScroll, useScrollDnd, useToggle, useUIContext, validators_d as validators, writeTextToClipboard, writeToClipboard };
|
|
6284
|
-
export type { ButtonColor, ButtonSize, ButtonType, CropperDimensions, CropperLockedDimension, Dimensions, DocIconName, DragDimensionsHandler, DragHandler, DraggableOptions, DraggableState, DropFile, DropItem, IconColor, IconName, Props$
|
|
6391
|
+
export { Avatar, Bottombar, Button, ButtonGroup, ButtonRow, COLLAPSE_THRESHOLD, CONTAINER_QUERY_BREAKPOINTS, CROPPER_FLIP_FACTOR, CROPPER_FULL_ROTATION, CROPPER_INIT_SCALE, CROPPER_MIN_ZOOM_VALUE, CROPPER_ROTATION_ANGLE, CROPPER_ZOOM_FACTOR, CROPPER_ZOOM_STEP, CROPPER_ZOOM_STEP_FINE, CROPPER_ZOOM_THRESHOLD, Checkbox, CheckboxLabel, CircularLoader, ContainerQuery, ContainerQueryProvider, CopyButton, CopyableInput, CopyableLabel, CoreUploaderErrorPanel, CoreUploaderProgressPanel, CoreUploaderView, CoreUploaderWorkingArea, Dialog, DialogActions, DialogColumn, DialogFooter, DialogHeader, DialogNext, DialogNextCloseButton, DialogNextColumn, DialogNextContent, DialogNextFooter, DialogNextHeader, DialogNextSeparator, DialogNextTitle, DialogProgressHeader, DialogRow, DialogSection, DocIcon, Drawer, DrawerActions, DrawerContent, DrawerHeader, DrawerSection, Ellipsis, EmptyView, EmptyViewLabel, FileInput, FilePreview, FilePreviewActions, FilePreviewColumn, FilePreviewContent, FilePreviewHoverable, FilePreviewNavButton, FilePreviewTooltip, Fixed, FixedContext, FixedProvider, Form, FormFeedback, FormGroup, FormGroupColumn, FormGroupInfo, FormInputLabel, Gallery, GalleryFigure, GalleryItem, Icon, ImageEditor, ImageEditorActions, ImageEditorApplyButton, ImageEditorButtonsGroup, ImageEditorButtonsRow, ImageEditorCanvas, ImageEditorContent, ImageEditorContext, ImageEditorCropBoxDimensions, ImageEditorCropCard, ImageEditorCropCardFreeform, ImageEditorCropCardList, ImageEditorCropCardOriginal, ImageEditorDemoLabel, ImageEditorDimensionsInput, ImageEditorFlipHorizontalButton, ImageEditorFlipVerticalButton, ImageEditorLoader, ImageEditorMenu, ImageEditorMenuContainer, ImageEditorMenuSection, ImageEditorMenuSubSection, ImageEditorPresetSelect, ImageEditorPreviewContext, ImageEditorResetButton, ImageEditorResizeDimensions, ImageEditorRotateLeftButton, ImageEditorRotateRightButton, ImageEditorSaveDialog, ImageEditorSaveDialogActions, ImageEditorSaveDialogCanvas, ImageEditorPreviewCloseButton as ImageEditorSaveDialogCloseButton, ImageEditorSaveDialogHeader, ImageEditorSaveDialogImage, ImageEditorSaveDialogInfo, ImageEditorSaveDialogPreview, ImageEditorSaveDialogSaveButton, ImageEditorSaveDialogSection, ImageEditorToolbar, ImageEditorToolbarFlipHorizontalButton, ImageEditorToolbarFlipVerticalButton, ImageEditorToolbarImageSize, ImageEditorToolbarRotateLeftButton, ImageEditorToolbarRotateRightButton, ImageEditorToolbarSection, ImageEditorToolbarZoomInButton, ImageEditorToolbarZoomOutButton, ImageEditorToolbarZoomValue, ImageEditorWorkspace, Link, List, ListItem, ListItemActions, ListItemContent, LoadingButton, Menu, MenuItem, MenuSection, MenuSubSection, ModalDialog, ModalDialogActionContent, ModalDialogActionItem, ModalDialogCallout, ModalDialogContent, ModalDialogContentColumn, ModalDialogFooter, ModalDialogFooterAction, ModalDialogHeader, ModalDialogList, ModalDialogListItem, MouseEventButton, NAVBAR_COLLAPSED_WIDTH, NAVBAR_LOADING_DELAY, NAVBAR_MAX_WIDTH, NAVBAR_MIN_WIDTH, NAVBAR_PREVIEW_TIMEOUT, Navbar, NavbarContext, NavbarItem, NavbarItemContainer, NavbarItemContent, NavbarItemLabel, NavbarItemsGroup, NavbarLink, NavbarScrollableContent, NavbarSeparator, NavbarToggleButton, NavigationDialog, NavigationDialogContent, NavigationDialogFallbackContent, NavigationDialogFooter, NavigationDialogHeader, NavigationDialogItem, NavigationDialogItemAction, NavigationDialogItemLabel, Notification, Notifications, Modal as Overlay, Pagination, Panel, PanelActions, PanelCheckbox, PanelColumn, PanelContent, PanelContentProp, PanelDescriptionItem, PanelDragHandle, PanelList, PanelListDivider, PanelSide, PanelSkeleton, PanelTitle, PdfViewer, PermissionTag, Permissions, PermissionsActions, PermissionsContent, PermissionsForm, PermissionsFormGroup, PermissionsFormInput, PermissionsManagementPanel, PermissionsManagementPanelHeader, PermissionsManagementPanelRulesHeader, PermissionsPanel, PermissionsScopeHeader, PermissionsScopeList, PermissionsTitle, Pill, Pills, Popper, PopperArrow, PopperContext, ProgressPanel, PropertiesTable, PropertiesTableRow, RangeSlider, ResponsiveImage, ResponsiveImageFallback, ResponsiveImageFit, ResponsiveImageScalable, ResponsiveImageSkeleton, SearchDialog, SearchDialogActions, SearchDialogContent, SearchDialogFallback, SearchDialogHeader, SearchDialogInput, SearchDialogSection, Select, SelectListboxGrid, SelectionArea, Skeleton, SortButton, SortableDndList, SortableDndListItem, Switch, SwitchInput, SwitchView, Tab, TabPanel, Table, TableBody, TableCell, TableContainer, TableHead, TableHeader, TableRow, TableToolbar, Tabs, Tag, TagInput, TagLabel, TagList, TextEllipsis, TextField, TextFieldInput, Textarea, Tooltip, Topbar, TopbarAction, UIContext, UIProvider, View, ViewContent, ViewContentBar, ViewContentWrapper, ViewDialog, ViewFooter, ViewHeader, ViewPaper, ViewSideContent, ViewWrapper, areItemsIdentical, base64FromBlurHash, checkIfDropFilesHaveFolders, clamp, clsx, formatTimeDistance, getAllFileEntries, getAllFiles, getClampedDimension, getClampedDimensions, getKeyHandler, getPixelCountFromImageBlob, getScrollVectors, getStandardDeviation, getValidChildren, hasOwnProperty, imageEditorContextDefaultValue, imageEditorPreviewContextDefaultValue, isClipboardItemSupported, matchesCombination, navbarContextInitProps, noOp, rInterval, readAllDirectoryEntries, readEntriesPromise, readFromClipboard, tryReadFromClipboard, tryWriteTextToClipboard, tryWriteToClipboard, uiContextInitProps, useBatchUpdate, useClickAway, useContainerKeyDown, useContainerQuery, useCropper, useCropperCrop, useCropperRotate, useCropperScale, useCropperZoom, useDeferredLoader, useDeferredUnmount, useDelay, useDownload, useDraggable, useElementVisibility, useFilesDrop, useFixedCtx, useForkRef, useGridSelection, useImageEditorContext, useImageEditorPreviewContext, useIsMounted, useIsomorphicLayoutEffect, useItemsOverflow, useListDnd, useNavbarCtx, usePopperCtx, useResettableTimeout, useResize, useResponsiveSizes, useScaleDown, useScroll, useScrollDnd, useToggle, useUIContext, validators_d as validators, writeTextToClipboard, writeToClipboard };
|
|
6392
|
+
export type { ButtonColor, ButtonSize, ButtonType, CropperDimensions, CropperLockedDimension, Dimensions, DocIconName, DragDimensionsHandler, DragHandler, DraggableOptions, DraggableState, DropFile, DropItem, IconColor, IconName, Props$3u 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$3u as Props, RInterval, ResizeOptions, ScrollCoordsConfig, ScrollOptions, SelectKeyboardNavProps, SelectKeyboardNextIdGetter, SelectOption, SelectRenderableOption, SelectSection, SelectToggleHandler, SelectionAreaCoords, Props$c as TextareaProps, Props$1M as UIProviderProps, UseFilesDropProps, Props$1N as ViewDialogProps, XYCoord };
|