@ckbox/components 1.6.0 → 2.0.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/dist/index.d.ts +582 -536
- package/dist/index.js +1 -1
- package/dist/styles/ckbox.css +2 -2
- package/icons/AccessTimeOutlined.svg +4 -0
- package/icons/AddOutlined.svg +3 -0
- package/icons/ArrowBackIosNewOutlined.svg +3 -0
- package/icons/ArrowBackOutlined.svg +3 -0
- package/icons/ArrowForwardIosOutlined.svg +3 -0
- package/icons/ArrowForwardOutlined.svg +3 -0
- package/icons/ArrowRightOutlined.svg +3 -0
- package/icons/ArticleOutlined.svg +4 -0
- package/icons/CheckCircleOutlineOutlined.svg +3 -0
- package/icons/CheckOutlined.svg +3 -0
- package/icons/ChevronLeftOutlined.svg +3 -0
- package/icons/ChevronRightOutlined.svg +3 -0
- package/icons/CloseOutlined.svg +3 -0
- package/icons/ContentCopyOutlined.svg +3 -0
- package/icons/CreateNewFolderOutlined.svg +3 -0
- package/icons/Crop169Outlined.svg +3 -0
- package/icons/Crop916Outlined.svg +3 -0
- package/icons/CropLandscapeOutlined.svg +3 -0
- package/icons/CropOriginalOutlined.svg +3 -0
- package/icons/CropOutlined.svg +3 -0
- package/icons/CropPortraitOutlined.svg +3 -0
- package/icons/CropSquareOutlined.svg +3 -0
- package/icons/DeleteOutlineOutlined.svg +3 -0
- package/icons/DragIndicatorOutlined.svg +3 -0
- package/icons/DriveFileRenameOutlineOutlined.svg +3 -0
- package/icons/DriveFolderUploadOutlined.svg +3 -0
- package/icons/EditOutlined.svg +3 -0
- package/icons/ExpandMoreOutlined.svg +3 -0
- package/icons/FileCopyOutlined.svg +3 -0
- package/icons/FileDownloadOutlined.svg +3 -0
- package/icons/FileMoveOutlined.svg +4 -0
- package/icons/FileUploadOutlined.svg +3 -0
- package/icons/FilterListOutlined.svg +3 -0
- package/icons/FirstPageOutlined.svg +3 -0
- package/icons/FlipHorizontalOutlined.svg +3 -0
- package/icons/FlipVerticalOutlined.svg +3 -0
- package/icons/Folder.svg +3 -0
- package/icons/FolderOutlined.svg +3 -0
- package/icons/HighlightOffOutlined.svg +3 -0
- package/icons/InfoOutlined.svg +3 -0
- package/icons/Inventory2Outlined.svg +4 -0
- package/icons/KeyboardDoubleArrowLeftOutlined.svg +4 -0
- package/icons/KeyboardDoubleArrowRightOutlined.svg +4 -0
- package/icons/LastPageOutlined.svg +3 -0
- package/icons/LockOpenOutlined.svg +3 -0
- package/icons/LockOutlined.svg +3 -0
- package/icons/MoreVertOutlined.svg +3 -0
- package/icons/PhotoOutlined.svg +3 -0
- package/icons/RemoveOutlined.svg +3 -0
- package/icons/RotateLeftOutlined.svg +3 -0
- package/icons/RotateRightOutlined.svg +3 -0
- package/icons/SaveOutlined.svg +3 -0
- package/icons/SearchMissingResults.svg +4 -0
- package/icons/SearchOutlined.svg +3 -0
- package/icons/SettingsOutlined.svg +3 -0
- package/icons/Sort.svg +4 -0
- package/icons/TuneOutlined.svg +3 -0
- package/icons/UploadFileOutlined.svg +3 -0
- package/icons/VisibilityOutlined.svg +3 -0
- package/icons/Warning.svg +3 -0
- package/icons/WarningAmberOutlined.svg +4 -0
- package/package.json +3 -3
- package/dist/styles/themes/aqua.css +0 -1
- package/dist/styles/themes/navy.css +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -3,14 +3,14 @@
|
|
|
3
3
|
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
4
4
|
*/
|
|
5
5
|
import * as React$1 from 'react';
|
|
6
|
-
import React__default, { useEffect } from 'react';
|
|
6
|
+
import React__default, { SVGProps, useEffect } from 'react';
|
|
7
7
|
import { Placement } from '@popperjs/core';
|
|
8
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 Bottombar: React$1.ForwardRefExoticComponent<Props$
|
|
13
|
-
interface Props$
|
|
12
|
+
declare const Bottombar: React$1.ForwardRefExoticComponent<Props$2_ & React$1.RefAttributes<HTMLDivElement>>;
|
|
13
|
+
interface Props$2_ {
|
|
14
14
|
/**
|
|
15
15
|
* Main content of the component.
|
|
16
16
|
*/
|
|
@@ -29,181 +29,201 @@ type ButtonSize = 'small' | 'medium' | 'large';
|
|
|
29
29
|
type ButtonType = 'fill' | 'outline' | 'plain' | 'link';
|
|
30
30
|
type ButtonColor = 'action' | 'danger' | 'neutral';
|
|
31
31
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
}
|
|
32
|
+
declare const AccessTimeOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
33
|
+
|
|
34
|
+
declare const AddOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
35
|
+
|
|
36
|
+
declare const ArrowBackIosNewOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
37
|
+
|
|
38
|
+
declare const ArrowBackOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
39
|
+
|
|
40
|
+
declare const ArrowForwardIosOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
41
|
+
|
|
42
|
+
declare const ArrowForwardOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
43
|
+
|
|
44
|
+
declare const ArrowRightOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
45
|
+
|
|
46
|
+
declare const ArticleOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
47
|
+
|
|
48
|
+
declare const CheckCircleOutlineOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
50
49
|
|
|
51
|
-
declare const
|
|
50
|
+
declare const CheckOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
52
51
|
|
|
53
|
-
declare const
|
|
52
|
+
declare const ChevronLeftOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
54
53
|
|
|
55
|
-
declare const
|
|
54
|
+
declare const ChevronRightOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
56
55
|
|
|
57
|
-
declare const
|
|
56
|
+
declare const CloseOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
58
57
|
|
|
59
|
-
declare const
|
|
58
|
+
declare const ContentCopyOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
60
59
|
|
|
61
|
-
declare const
|
|
60
|
+
declare const CreateNewFolderOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
62
61
|
|
|
63
|
-
declare const
|
|
62
|
+
declare const Crop169Outlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
64
63
|
|
|
65
|
-
declare const
|
|
64
|
+
declare const Crop916Outlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
66
65
|
|
|
67
|
-
declare const
|
|
66
|
+
declare const CropLandscapeOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
68
67
|
|
|
69
|
-
declare const
|
|
68
|
+
declare const CropOriginalOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
70
69
|
|
|
71
|
-
declare const
|
|
70
|
+
declare const CropOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
72
71
|
|
|
73
|
-
declare const
|
|
72
|
+
declare const CropPortraitOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
74
73
|
|
|
75
|
-
declare const
|
|
74
|
+
declare const CropSquareOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
76
75
|
|
|
77
|
-
declare const
|
|
76
|
+
declare const DeleteOutlineOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
78
77
|
|
|
79
|
-
declare const
|
|
78
|
+
declare const DragIndicatorOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
80
79
|
|
|
81
|
-
declare const
|
|
80
|
+
declare const DriveFileRenameOutlineOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
82
81
|
|
|
83
|
-
declare const
|
|
82
|
+
declare const DriveFolderUploadOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
84
83
|
|
|
85
|
-
declare const
|
|
84
|
+
declare const EditOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
86
85
|
|
|
87
|
-
declare const
|
|
86
|
+
declare const ExpandMoreOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
88
87
|
|
|
89
|
-
declare const
|
|
88
|
+
declare const FileCopyOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
90
89
|
|
|
91
|
-
declare const
|
|
90
|
+
declare const FileDownloadOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
92
91
|
|
|
93
|
-
declare const
|
|
92
|
+
declare const FileMoveOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
94
93
|
|
|
95
|
-
declare const
|
|
94
|
+
declare const FileUploadOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
96
95
|
|
|
97
|
-
declare const
|
|
96
|
+
declare const FilterListOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
98
97
|
|
|
99
|
-
declare const
|
|
98
|
+
declare const FirstPageOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
100
99
|
|
|
101
|
-
declare const
|
|
100
|
+
declare const FlipHorizontalOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
102
101
|
|
|
103
|
-
declare const
|
|
102
|
+
declare const FlipVerticalOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
104
103
|
|
|
105
|
-
declare const
|
|
104
|
+
declare const Folder: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
106
105
|
|
|
107
|
-
declare const
|
|
106
|
+
declare const FolderOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
108
107
|
|
|
109
|
-
declare const
|
|
108
|
+
declare const HighlightOffOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
110
109
|
|
|
111
|
-
declare const
|
|
110
|
+
declare const InfoOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
112
111
|
|
|
113
|
-
declare const
|
|
112
|
+
declare const Inventory2Outlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
114
113
|
|
|
115
|
-
declare const
|
|
114
|
+
declare const KeyboardDoubleArrowLeftOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
116
115
|
|
|
117
|
-
declare const
|
|
116
|
+
declare const KeyboardDoubleArrowRightOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
118
117
|
|
|
119
|
-
declare const
|
|
118
|
+
declare const LastPageOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
120
119
|
|
|
121
|
-
declare const
|
|
120
|
+
declare const LockOpenOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
122
121
|
|
|
123
|
-
declare const
|
|
122
|
+
declare const LockOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
124
123
|
|
|
125
|
-
declare const
|
|
124
|
+
declare const MoreVertOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
126
125
|
|
|
127
|
-
declare const
|
|
126
|
+
declare const PhotoOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
128
127
|
|
|
129
|
-
declare const
|
|
128
|
+
declare const RemoveOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
130
129
|
|
|
131
|
-
declare const
|
|
130
|
+
declare const RotateLeftOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
132
131
|
|
|
133
|
-
declare const
|
|
132
|
+
declare const RotateRightOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
134
133
|
|
|
135
|
-
declare const
|
|
134
|
+
declare const SaveOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
136
135
|
|
|
137
|
-
declare const
|
|
136
|
+
declare const SearchMissingResults: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
138
137
|
|
|
139
|
-
declare const
|
|
138
|
+
declare const SearchOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
140
139
|
|
|
141
|
-
declare const
|
|
140
|
+
declare const SettingsOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
142
141
|
|
|
143
|
-
declare const
|
|
142
|
+
declare const Sort: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
144
143
|
|
|
145
|
-
declare const
|
|
144
|
+
declare const TuneOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
146
145
|
|
|
147
|
-
declare const
|
|
146
|
+
declare const UploadFileOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
148
147
|
|
|
149
|
-
declare const
|
|
148
|
+
declare const VisibilityOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
150
149
|
|
|
151
|
-
declare const
|
|
150
|
+
declare const Warning: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
152
151
|
|
|
153
|
-
declare const
|
|
152
|
+
declare const WarningAmberOutlined: (props: SVGProps<SVGSVGElement>) => React$1.JSX.Element;
|
|
154
153
|
|
|
155
|
-
|
|
154
|
+
interface Props$2Z {
|
|
155
|
+
/**
|
|
156
|
+
* Toggles optional icon animation.
|
|
157
|
+
*/
|
|
158
|
+
animateIn?: boolean;
|
|
159
|
+
/**
|
|
160
|
+
* Sets root class name.
|
|
161
|
+
*/
|
|
162
|
+
className?: string;
|
|
163
|
+
/**
|
|
164
|
+
* Optional test ID.
|
|
165
|
+
*/
|
|
166
|
+
'data-testid'?: string;
|
|
167
|
+
}
|
|
156
168
|
|
|
157
|
-
declare const
|
|
169
|
+
declare const ArrowRightOutlinedAnimated: React$1.FC<Props$2Z>;
|
|
158
170
|
|
|
159
|
-
declare const
|
|
171
|
+
declare const SettingsOutlinedAnimated: React$1.FC<Props$2Z>;
|
|
160
172
|
|
|
161
|
-
declare const
|
|
173
|
+
declare const SortAscending: React$1.FC<Props$2Z>;
|
|
162
174
|
|
|
163
|
-
declare const
|
|
175
|
+
declare const SortDescending: React$1.FC<Props$2Z>;
|
|
164
176
|
|
|
165
|
-
declare const
|
|
177
|
+
declare const Spinner: React$1.FC<Props$2Z>;
|
|
166
178
|
|
|
167
|
-
declare const icons$
|
|
168
|
-
declare const icons$
|
|
169
|
-
declare const icons$
|
|
170
|
-
declare const icons$
|
|
179
|
+
declare const icons$1_AccessTimeOutlined: typeof AccessTimeOutlined;
|
|
180
|
+
declare const icons$1_AddOutlined: typeof AddOutlined;
|
|
181
|
+
declare const icons$1_ArrowBackIosNewOutlined: typeof ArrowBackIosNewOutlined;
|
|
182
|
+
declare const icons$1_ArrowBackOutlined: typeof ArrowBackOutlined;
|
|
183
|
+
declare const icons$1_ArrowForwardIosOutlined: typeof ArrowForwardIosOutlined;
|
|
184
|
+
declare const icons$1_ArrowForwardOutlined: typeof ArrowForwardOutlined;
|
|
185
|
+
declare const icons$1_ArrowRightOutlined: typeof ArrowRightOutlined;
|
|
186
|
+
declare const icons$1_ArrowRightOutlinedAnimated: typeof ArrowRightOutlinedAnimated;
|
|
171
187
|
declare const icons$1_ArticleOutlined: typeof ArticleOutlined;
|
|
172
|
-
declare const icons$
|
|
173
|
-
declare const icons$
|
|
174
|
-
declare const icons$1_CheckCircleOutline: typeof CheckCircleOutline;
|
|
175
|
-
declare const icons$1_ChevronDown: typeof ChevronDown;
|
|
188
|
+
declare const icons$1_CheckCircleOutlineOutlined: typeof CheckCircleOutlineOutlined;
|
|
189
|
+
declare const icons$1_CheckOutlined: typeof CheckOutlined;
|
|
176
190
|
declare const icons$1_ChevronLeftOutlined: typeof ChevronLeftOutlined;
|
|
177
191
|
declare const icons$1_ChevronRightOutlined: typeof ChevronRightOutlined;
|
|
178
|
-
declare const icons$
|
|
192
|
+
declare const icons$1_CloseOutlined: typeof CloseOutlined;
|
|
179
193
|
declare const icons$1_ContentCopyOutlined: typeof ContentCopyOutlined;
|
|
180
194
|
declare const icons$1_CreateNewFolderOutlined: typeof CreateNewFolderOutlined;
|
|
181
|
-
declare const icons$
|
|
195
|
+
declare const icons$1_Crop169Outlined: typeof Crop169Outlined;
|
|
196
|
+
declare const icons$1_Crop916Outlined: typeof Crop916Outlined;
|
|
197
|
+
declare const icons$1_CropLandscapeOutlined: typeof CropLandscapeOutlined;
|
|
182
198
|
declare const icons$1_CropOriginalOutlined: typeof CropOriginalOutlined;
|
|
183
199
|
declare const icons$1_CropOutlined: typeof CropOutlined;
|
|
200
|
+
declare const icons$1_CropPortraitOutlined: typeof CropPortraitOutlined;
|
|
201
|
+
declare const icons$1_CropSquareOutlined: typeof CropSquareOutlined;
|
|
184
202
|
declare const icons$1_DeleteOutlineOutlined: typeof DeleteOutlineOutlined;
|
|
185
|
-
declare const icons$
|
|
203
|
+
declare const icons$1_DragIndicatorOutlined: typeof DragIndicatorOutlined;
|
|
186
204
|
declare const icons$1_DriveFileRenameOutlineOutlined: typeof DriveFileRenameOutlineOutlined;
|
|
187
205
|
declare const icons$1_DriveFolderUploadOutlined: typeof DriveFolderUploadOutlined;
|
|
188
206
|
declare const icons$1_EditOutlined: typeof EditOutlined;
|
|
207
|
+
declare const icons$1_ExpandMoreOutlined: typeof ExpandMoreOutlined;
|
|
189
208
|
declare const icons$1_FileCopyOutlined: typeof FileCopyOutlined;
|
|
190
209
|
declare const icons$1_FileDownloadOutlined: typeof FileDownloadOutlined;
|
|
191
210
|
declare const icons$1_FileMoveOutlined: typeof FileMoveOutlined;
|
|
192
211
|
declare const icons$1_FileUploadOutlined: typeof FileUploadOutlined;
|
|
193
|
-
declare const icons$
|
|
212
|
+
declare const icons$1_FilterListOutlined: typeof FilterListOutlined;
|
|
194
213
|
declare const icons$1_FirstPageOutlined: typeof FirstPageOutlined;
|
|
195
214
|
declare const icons$1_FlipHorizontalOutlined: typeof FlipHorizontalOutlined;
|
|
196
215
|
declare const icons$1_FlipVerticalOutlined: typeof FlipVerticalOutlined;
|
|
197
216
|
declare const icons$1_Folder: typeof Folder;
|
|
198
217
|
declare const icons$1_FolderOutlined: typeof FolderOutlined;
|
|
218
|
+
declare const icons$1_HighlightOffOutlined: typeof HighlightOffOutlined;
|
|
199
219
|
declare const icons$1_InfoOutlined: typeof InfoOutlined;
|
|
200
220
|
declare const icons$1_Inventory2Outlined: typeof Inventory2Outlined;
|
|
201
|
-
declare const icons$
|
|
202
|
-
declare const icons$
|
|
221
|
+
declare const icons$1_KeyboardDoubleArrowLeftOutlined: typeof KeyboardDoubleArrowLeftOutlined;
|
|
222
|
+
declare const icons$1_KeyboardDoubleArrowRightOutlined: typeof KeyboardDoubleArrowRightOutlined;
|
|
203
223
|
declare const icons$1_LastPageOutlined: typeof LastPageOutlined;
|
|
204
224
|
declare const icons$1_LockOpenOutlined: typeof LockOpenOutlined;
|
|
205
225
|
declare const icons$1_LockOutlined: typeof LockOutlined;
|
|
206
|
-
declare const icons$
|
|
226
|
+
declare const icons$1_MoreVertOutlined: typeof MoreVertOutlined;
|
|
207
227
|
declare const icons$1_PhotoOutlined: typeof PhotoOutlined;
|
|
208
228
|
declare const icons$1_RemoveOutlined: typeof RemoveOutlined;
|
|
209
229
|
declare const icons$1_RotateLeftOutlined: typeof RotateLeftOutlined;
|
|
@@ -212,58 +232,66 @@ declare const icons$1_SaveOutlined: typeof SaveOutlined;
|
|
|
212
232
|
declare const icons$1_SearchMissingResults: typeof SearchMissingResults;
|
|
213
233
|
declare const icons$1_SearchOutlined: typeof SearchOutlined;
|
|
214
234
|
declare const icons$1_SettingsOutlined: typeof SettingsOutlined;
|
|
235
|
+
declare const icons$1_SettingsOutlinedAnimated: typeof SettingsOutlinedAnimated;
|
|
215
236
|
declare const icons$1_Sort: typeof Sort;
|
|
237
|
+
declare const icons$1_SortAscending: typeof SortAscending;
|
|
238
|
+
declare const icons$1_SortDescending: typeof SortDescending;
|
|
216
239
|
declare const icons$1_Spinner: typeof Spinner;
|
|
217
|
-
declare const icons$
|
|
240
|
+
declare const icons$1_TuneOutlined: typeof TuneOutlined;
|
|
218
241
|
declare const icons$1_UploadFileOutlined: typeof UploadFileOutlined;
|
|
219
242
|
declare const icons$1_VisibilityOutlined: typeof VisibilityOutlined;
|
|
220
|
-
declare const icons$
|
|
221
|
-
declare const icons$
|
|
222
|
-
declare const icons$1_XCircle: typeof XCircle;
|
|
243
|
+
declare const icons$1_Warning: typeof Warning;
|
|
244
|
+
declare const icons$1_WarningAmberOutlined: typeof WarningAmberOutlined;
|
|
223
245
|
declare namespace icons$1 {
|
|
224
246
|
export {
|
|
225
|
-
icons$
|
|
226
|
-
icons$
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
icons$
|
|
230
|
-
icons$
|
|
247
|
+
icons$1_AccessTimeOutlined as AccessTimeOutlined,
|
|
248
|
+
icons$1_AddOutlined as AddOutlined,
|
|
249
|
+
icons$1_ArrowBackIosNewOutlined as ArrowBackIosNewOutlined,
|
|
250
|
+
icons$1_ArrowBackOutlined as ArrowBackOutlined,
|
|
251
|
+
icons$1_ArrowForwardIosOutlined as ArrowForwardIosOutlined,
|
|
252
|
+
icons$1_ArrowForwardOutlined as ArrowForwardOutlined,
|
|
253
|
+
icons$1_ArrowRightOutlined as ArrowRightOutlined,
|
|
254
|
+
icons$1_ArrowRightOutlinedAnimated as ArrowRightOutlinedAnimated,
|
|
231
255
|
icons$1_ArticleOutlined as ArticleOutlined,
|
|
232
|
-
icons$
|
|
233
|
-
icons$
|
|
234
|
-
icons$1_CheckCircleOutline as CheckCircleOutline,
|
|
235
|
-
icons$1_ChevronDown as ChevronDown,
|
|
256
|
+
icons$1_CheckCircleOutlineOutlined as CheckCircleOutlineOutlined,
|
|
257
|
+
icons$1_CheckOutlined as CheckOutlined,
|
|
236
258
|
icons$1_ChevronLeftOutlined as ChevronLeftOutlined,
|
|
237
259
|
icons$1_ChevronRightOutlined as ChevronRightOutlined,
|
|
238
|
-
icons$
|
|
260
|
+
icons$1_CloseOutlined as CloseOutlined,
|
|
239
261
|
icons$1_ContentCopyOutlined as ContentCopyOutlined,
|
|
240
262
|
icons$1_CreateNewFolderOutlined as CreateNewFolderOutlined,
|
|
241
|
-
icons$
|
|
263
|
+
icons$1_Crop169Outlined as Crop169Outlined,
|
|
264
|
+
icons$1_Crop916Outlined as Crop916Outlined,
|
|
265
|
+
icons$1_CropLandscapeOutlined as CropLandscapeOutlined,
|
|
242
266
|
icons$1_CropOriginalOutlined as CropOriginalOutlined,
|
|
243
267
|
icons$1_CropOutlined as CropOutlined,
|
|
268
|
+
icons$1_CropPortraitOutlined as CropPortraitOutlined,
|
|
269
|
+
icons$1_CropSquareOutlined as CropSquareOutlined,
|
|
244
270
|
icons$1_DeleteOutlineOutlined as DeleteOutlineOutlined,
|
|
245
|
-
icons$
|
|
271
|
+
icons$1_DragIndicatorOutlined as DragIndicatorOutlined,
|
|
246
272
|
icons$1_DriveFileRenameOutlineOutlined as DriveFileRenameOutlineOutlined,
|
|
247
273
|
icons$1_DriveFolderUploadOutlined as DriveFolderUploadOutlined,
|
|
248
274
|
icons$1_EditOutlined as EditOutlined,
|
|
275
|
+
icons$1_ExpandMoreOutlined as ExpandMoreOutlined,
|
|
249
276
|
icons$1_FileCopyOutlined as FileCopyOutlined,
|
|
250
277
|
icons$1_FileDownloadOutlined as FileDownloadOutlined,
|
|
251
278
|
icons$1_FileMoveOutlined as FileMoveOutlined,
|
|
252
279
|
icons$1_FileUploadOutlined as FileUploadOutlined,
|
|
253
|
-
icons$
|
|
280
|
+
icons$1_FilterListOutlined as FilterListOutlined,
|
|
254
281
|
icons$1_FirstPageOutlined as FirstPageOutlined,
|
|
255
282
|
icons$1_FlipHorizontalOutlined as FlipHorizontalOutlined,
|
|
256
283
|
icons$1_FlipVerticalOutlined as FlipVerticalOutlined,
|
|
257
284
|
icons$1_Folder as Folder,
|
|
258
285
|
icons$1_FolderOutlined as FolderOutlined,
|
|
286
|
+
icons$1_HighlightOffOutlined as HighlightOffOutlined,
|
|
259
287
|
icons$1_InfoOutlined as InfoOutlined,
|
|
260
288
|
icons$1_Inventory2Outlined as Inventory2Outlined,
|
|
261
|
-
icons$
|
|
262
|
-
icons$
|
|
289
|
+
icons$1_KeyboardDoubleArrowLeftOutlined as KeyboardDoubleArrowLeftOutlined,
|
|
290
|
+
icons$1_KeyboardDoubleArrowRightOutlined as KeyboardDoubleArrowRightOutlined,
|
|
263
291
|
icons$1_LastPageOutlined as LastPageOutlined,
|
|
264
292
|
icons$1_LockOpenOutlined as LockOpenOutlined,
|
|
265
293
|
icons$1_LockOutlined as LockOutlined,
|
|
266
|
-
icons$
|
|
294
|
+
icons$1_MoreVertOutlined as MoreVertOutlined,
|
|
267
295
|
icons$1_PhotoOutlined as PhotoOutlined,
|
|
268
296
|
icons$1_RemoveOutlined as RemoveOutlined,
|
|
269
297
|
icons$1_RotateLeftOutlined as RotateLeftOutlined,
|
|
@@ -272,14 +300,16 @@ declare namespace icons$1 {
|
|
|
272
300
|
icons$1_SearchMissingResults as SearchMissingResults,
|
|
273
301
|
icons$1_SearchOutlined as SearchOutlined,
|
|
274
302
|
icons$1_SettingsOutlined as SettingsOutlined,
|
|
303
|
+
icons$1_SettingsOutlinedAnimated as SettingsOutlinedAnimated,
|
|
275
304
|
icons$1_Sort as Sort,
|
|
305
|
+
icons$1_SortAscending as SortAscending,
|
|
306
|
+
icons$1_SortDescending as SortDescending,
|
|
276
307
|
icons$1_Spinner as Spinner,
|
|
277
|
-
icons$
|
|
308
|
+
icons$1_TuneOutlined as TuneOutlined,
|
|
278
309
|
icons$1_UploadFileOutlined as UploadFileOutlined,
|
|
279
310
|
icons$1_VisibilityOutlined as VisibilityOutlined,
|
|
280
|
-
icons$
|
|
281
|
-
icons$
|
|
282
|
-
icons$1_XCircle as XCircle,
|
|
311
|
+
icons$1_Warning as Warning,
|
|
312
|
+
icons$1_WarningAmberOutlined as WarningAmberOutlined,
|
|
283
313
|
};
|
|
284
314
|
}
|
|
285
315
|
|
|
@@ -289,10 +319,18 @@ type IconRenderer = (props: {
|
|
|
289
319
|
type IconRenderProp = string | IconRenderer;
|
|
290
320
|
type IconName = keyof typeof icons$1;
|
|
291
321
|
type IconSize = 'small' | 'base' | 'medium' | 'big' | 'bigger' | 'humongous';
|
|
292
|
-
type IconColor = 'accent' | '
|
|
322
|
+
type IconColor = 'accent' | 'danger' | 'default' | 'disabled' | 'muted' | 'success' | 'warning';
|
|
293
323
|
|
|
294
|
-
declare const Icon: React$1.FC<Props$
|
|
295
|
-
interface Props$
|
|
324
|
+
declare const Icon: React$1.FC<Props$2Y>;
|
|
325
|
+
interface Props$2Y {
|
|
326
|
+
/**
|
|
327
|
+
* Toggles optional icon animation.
|
|
328
|
+
*/
|
|
329
|
+
animateIn?: boolean;
|
|
330
|
+
/**
|
|
331
|
+
* Optional class name added to the icon's root.
|
|
332
|
+
*/
|
|
333
|
+
className?: string;
|
|
296
334
|
/**
|
|
297
335
|
* Icon color.
|
|
298
336
|
*/
|
|
@@ -314,8 +352,8 @@ interface Props$2X extends Props$2Y {
|
|
|
314
352
|
size?: IconSize;
|
|
315
353
|
}
|
|
316
354
|
|
|
317
|
-
declare const Button: React$1.ForwardRefExoticComponent<Props$
|
|
318
|
-
interface Props$
|
|
355
|
+
declare const Button: React$1.ForwardRefExoticComponent<Props$2X & React$1.RefAttributes<HTMLButtonElement>>;
|
|
356
|
+
interface Props$2X {
|
|
319
357
|
/**
|
|
320
358
|
* Applies active styling.
|
|
321
359
|
*/
|
|
@@ -406,16 +444,16 @@ interface Props$2W {
|
|
|
406
444
|
disabledLabelWrapping?: boolean;
|
|
407
445
|
}
|
|
408
446
|
|
|
409
|
-
declare const ButtonGroup: React$1.FC<Props$
|
|
410
|
-
interface Props$
|
|
447
|
+
declare const ButtonGroup: React$1.FC<Props$2W>;
|
|
448
|
+
interface Props$2W {
|
|
411
449
|
/**
|
|
412
450
|
* Button components.
|
|
413
451
|
*/
|
|
414
452
|
children: React$1.ReactNode;
|
|
415
453
|
}
|
|
416
454
|
|
|
417
|
-
declare const CircularLoader: React$1.ForwardRefExoticComponent<Props$
|
|
418
|
-
interface Props$
|
|
455
|
+
declare const CircularLoader: React$1.ForwardRefExoticComponent<Props$2V & React$1.RefAttributes<HTMLButtonElement>>;
|
|
456
|
+
interface Props$2V {
|
|
419
457
|
/**
|
|
420
458
|
* Component's label.
|
|
421
459
|
*/
|
|
@@ -431,15 +469,15 @@ interface Props$2U {
|
|
|
431
469
|
/**
|
|
432
470
|
* Displays aborted icon.
|
|
433
471
|
*/
|
|
434
|
-
|
|
472
|
+
warning?: boolean;
|
|
435
473
|
/**
|
|
436
474
|
* Callback invoked upon click event.
|
|
437
475
|
*/
|
|
438
476
|
onClick?: () => void;
|
|
439
477
|
}
|
|
440
478
|
|
|
441
|
-
declare const DialogNextTitle: React$1.ForwardRefExoticComponent<Props$
|
|
442
|
-
interface Props$
|
|
479
|
+
declare const DialogNextTitle: React$1.ForwardRefExoticComponent<Props$2U & React$1.RefAttributes<HTMLDivElement>>;
|
|
480
|
+
interface Props$2U {
|
|
443
481
|
/**
|
|
444
482
|
* Main content of the component.
|
|
445
483
|
*/
|
|
@@ -458,8 +496,8 @@ interface Props$2T {
|
|
|
458
496
|
titleId?: string;
|
|
459
497
|
}
|
|
460
498
|
|
|
461
|
-
declare const DialogNextColumn: React$1.ForwardRefExoticComponent<Props$
|
|
462
|
-
interface Props$
|
|
499
|
+
declare const DialogNextColumn: React$1.ForwardRefExoticComponent<Props$2T & React$1.RefAttributes<HTMLDivElement>>;
|
|
500
|
+
interface Props$2T {
|
|
463
501
|
/**
|
|
464
502
|
* Main content of the component.
|
|
465
503
|
*/
|
|
@@ -470,8 +508,8 @@ interface Props$2S {
|
|
|
470
508
|
className?: string;
|
|
471
509
|
}
|
|
472
510
|
|
|
473
|
-
declare const DialogNextContent: React$1.ForwardRefExoticComponent<Props$
|
|
474
|
-
interface Props$
|
|
511
|
+
declare const DialogNextContent: React$1.ForwardRefExoticComponent<Props$2S & React$1.RefAttributes<HTMLDivElement>>;
|
|
512
|
+
interface Props$2S {
|
|
475
513
|
/**
|
|
476
514
|
* Main content of the component.
|
|
477
515
|
*/
|
|
@@ -490,8 +528,8 @@ interface Props$2R {
|
|
|
490
528
|
id?: string;
|
|
491
529
|
}
|
|
492
530
|
|
|
493
|
-
declare const DialogNextFooter: React$1.ForwardRefExoticComponent<Props$
|
|
494
|
-
interface Props$
|
|
531
|
+
declare const DialogNextFooter: React$1.ForwardRefExoticComponent<Props$2R & React$1.RefAttributes<HTMLDivElement>>;
|
|
532
|
+
interface Props$2R {
|
|
495
533
|
/**
|
|
496
534
|
* Main content of the component.
|
|
497
535
|
*/
|
|
@@ -502,8 +540,8 @@ interface Props$2Q {
|
|
|
502
540
|
className?: string;
|
|
503
541
|
}
|
|
504
542
|
|
|
505
|
-
declare const DialogNextCloseButton: React$1.ForwardRefExoticComponent<Props$
|
|
506
|
-
interface Props$
|
|
543
|
+
declare const DialogNextCloseButton: React$1.ForwardRefExoticComponent<Props$2Q & React$1.RefAttributes<HTMLButtonElement>>;
|
|
544
|
+
interface Props$2Q {
|
|
507
545
|
/**
|
|
508
546
|
* Close button's label.
|
|
509
547
|
*/
|
|
@@ -514,8 +552,8 @@ interface Props$2P {
|
|
|
514
552
|
className?: string;
|
|
515
553
|
}
|
|
516
554
|
|
|
517
|
-
declare const DialogNextHeader: React$1.ForwardRefExoticComponent<Props$
|
|
518
|
-
interface Props$
|
|
555
|
+
declare const DialogNextHeader: React$1.ForwardRefExoticComponent<Props$2P & React$1.RefAttributes<HTMLDivElement>>;
|
|
556
|
+
interface Props$2P {
|
|
519
557
|
/**
|
|
520
558
|
* Main content of the component.
|
|
521
559
|
*/
|
|
@@ -526,16 +564,16 @@ interface Props$2O {
|
|
|
526
564
|
className?: string;
|
|
527
565
|
}
|
|
528
566
|
|
|
529
|
-
declare const DialogNextSeparator: React$1.ForwardRefExoticComponent<Props$
|
|
530
|
-
interface Props$
|
|
567
|
+
declare const DialogNextSeparator: React$1.ForwardRefExoticComponent<Props$2O & React$1.RefAttributes<HTMLDivElement>>;
|
|
568
|
+
interface Props$2O {
|
|
531
569
|
/**
|
|
532
570
|
* Sets root header class.
|
|
533
571
|
*/
|
|
534
572
|
className?: string;
|
|
535
573
|
}
|
|
536
574
|
|
|
537
|
-
declare const DialogNext: React$1.ForwardRefExoticComponent<Props$
|
|
538
|
-
interface Props$
|
|
575
|
+
declare const DialogNext: React$1.ForwardRefExoticComponent<Props$2N & React$1.RefAttributes<HTMLDivElement>>;
|
|
576
|
+
interface Props$2N {
|
|
539
577
|
/**
|
|
540
578
|
* Main content of the component.
|
|
541
579
|
*/
|
|
@@ -574,16 +612,16 @@ interface Props$2M {
|
|
|
574
612
|
alert?: boolean;
|
|
575
613
|
}
|
|
576
614
|
|
|
577
|
-
declare const DialogActions: React$1.FC<Props$
|
|
578
|
-
interface Props$
|
|
615
|
+
declare const DialogActions: React$1.FC<Props$2M>;
|
|
616
|
+
interface Props$2M {
|
|
579
617
|
/**
|
|
580
618
|
* Main content of the component.
|
|
581
619
|
*/
|
|
582
620
|
children: React$1.ReactNode;
|
|
583
621
|
}
|
|
584
622
|
|
|
585
|
-
declare const DialogColumn: React$1.ForwardRefExoticComponent<Props$
|
|
586
|
-
interface Props$
|
|
623
|
+
declare const DialogColumn: React$1.ForwardRefExoticComponent<Props$2L & React$1.RefAttributes<HTMLDivElement>>;
|
|
624
|
+
interface Props$2L extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
587
625
|
/**
|
|
588
626
|
* Main content of the component.
|
|
589
627
|
*/
|
|
@@ -594,8 +632,8 @@ interface Props$2K extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
594
632
|
overflow?: boolean;
|
|
595
633
|
}
|
|
596
634
|
|
|
597
|
-
declare const DialogFooter: React$1.FC<Props$
|
|
598
|
-
interface Props$
|
|
635
|
+
declare const DialogFooter: React$1.FC<Props$2K>;
|
|
636
|
+
interface Props$2K {
|
|
599
637
|
/**
|
|
600
638
|
* Main content of the component.
|
|
601
639
|
*/
|
|
@@ -611,8 +649,8 @@ interface Props$2J {
|
|
|
611
649
|
}[];
|
|
612
650
|
}
|
|
613
651
|
|
|
614
|
-
declare const DialogHeader: React$1.FC<Props$
|
|
615
|
-
interface Props$
|
|
652
|
+
declare const DialogHeader: React$1.FC<Props$2J>;
|
|
653
|
+
interface Props$2J {
|
|
616
654
|
/**
|
|
617
655
|
* Sets focus on close button on mount.
|
|
618
656
|
*/
|
|
@@ -635,8 +673,8 @@ interface Props$2I {
|
|
|
635
673
|
type?: 'success' | 'error' | 'info';
|
|
636
674
|
}
|
|
637
675
|
|
|
638
|
-
declare const DialogProgressHeader: React$1.FC<Props$
|
|
639
|
-
interface Props$
|
|
676
|
+
declare const DialogProgressHeader: React$1.FC<Props$2I>;
|
|
677
|
+
interface Props$2I {
|
|
640
678
|
/**
|
|
641
679
|
* Sets focus on close button on mount.
|
|
642
680
|
*/
|
|
@@ -667,16 +705,16 @@ interface Props$2H {
|
|
|
667
705
|
title?: string;
|
|
668
706
|
}
|
|
669
707
|
|
|
670
|
-
declare const DialogRow: React$1.FC<Props$
|
|
671
|
-
interface Props$
|
|
708
|
+
declare const DialogRow: React$1.FC<Props$2H>;
|
|
709
|
+
interface Props$2H extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
672
710
|
/**
|
|
673
711
|
* Main content of the component.
|
|
674
712
|
*/
|
|
675
713
|
children: React$1.ReactNode;
|
|
676
714
|
}
|
|
677
715
|
|
|
678
|
-
declare const DialogSection: React$1.FC<Props$
|
|
679
|
-
interface Props$
|
|
716
|
+
declare const DialogSection: React$1.FC<Props$2G>;
|
|
717
|
+
interface Props$2G {
|
|
680
718
|
/**
|
|
681
719
|
* Main content of the component.
|
|
682
720
|
*/
|
|
@@ -799,35 +837,35 @@ interface DialogProps extends DialogSwitchProps {
|
|
|
799
837
|
* Entry component for the dialog.
|
|
800
838
|
* Initializes selected dialog mode and optionally adds common options and draggability if needed.
|
|
801
839
|
*/
|
|
802
|
-
declare const Dialog: React$1.FC<Props$
|
|
803
|
-
type Props$
|
|
840
|
+
declare const Dialog: React$1.FC<Props$2F>;
|
|
841
|
+
type Props$2F = DialogProps;
|
|
804
842
|
|
|
805
|
-
interface Props$
|
|
843
|
+
interface Props$2E {
|
|
806
844
|
/**
|
|
807
845
|
* Sets root class.
|
|
808
846
|
*/
|
|
809
847
|
className: string;
|
|
810
848
|
}
|
|
811
849
|
|
|
812
|
-
declare const Zip: React$1.FC<Props$
|
|
850
|
+
declare const Zip: React$1.FC<Props$2E>;
|
|
813
851
|
|
|
814
|
-
declare const Empty: React$1.FC<Props$
|
|
852
|
+
declare const Empty: React$1.FC<Props$2E>;
|
|
815
853
|
|
|
816
|
-
declare const Excel: React$1.FC<Props$
|
|
854
|
+
declare const Excel: React$1.FC<Props$2E>;
|
|
817
855
|
|
|
818
|
-
declare const Img: React$1.FC<Props$
|
|
856
|
+
declare const Img: React$1.FC<Props$2E>;
|
|
819
857
|
|
|
820
|
-
declare const Movie: React$1.FC<Props$
|
|
858
|
+
declare const Movie: React$1.FC<Props$2E>;
|
|
821
859
|
|
|
822
|
-
declare const Music: React$1.FC<Props$
|
|
860
|
+
declare const Music: React$1.FC<Props$2E>;
|
|
823
861
|
|
|
824
|
-
declare const Pdf: React$1.FC<Props$
|
|
862
|
+
declare const Pdf: React$1.FC<Props$2E>;
|
|
825
863
|
|
|
826
|
-
declare const Ppt: React$1.FC<Props$
|
|
864
|
+
declare const Ppt: React$1.FC<Props$2E>;
|
|
827
865
|
|
|
828
|
-
declare const Txt: React$1.FC<Props$
|
|
866
|
+
declare const Txt: React$1.FC<Props$2E>;
|
|
829
867
|
|
|
830
|
-
declare const Word: React$1.FC<Props$
|
|
868
|
+
declare const Word: React$1.FC<Props$2E>;
|
|
831
869
|
|
|
832
870
|
declare const icons_Empty: typeof Empty;
|
|
833
871
|
declare const icons_Excel: typeof Excel;
|
|
@@ -853,9 +891,9 @@ declare namespace icons {
|
|
|
853
891
|
};
|
|
854
892
|
}
|
|
855
893
|
|
|
856
|
-
declare const DocIcon: React$1.FC<Props$
|
|
894
|
+
declare const DocIcon: React$1.FC<Props$2D>;
|
|
857
895
|
type DocIconName = keyof typeof icons;
|
|
858
|
-
interface Props$
|
|
896
|
+
interface Props$2D {
|
|
859
897
|
/**
|
|
860
898
|
* Name of selected icon.
|
|
861
899
|
*/
|
|
@@ -866,8 +904,8 @@ interface Props$2C {
|
|
|
866
904
|
limitSize?: boolean;
|
|
867
905
|
}
|
|
868
906
|
|
|
869
|
-
declare const GalleryFigure: React$1.ForwardRefExoticComponent<Props$
|
|
870
|
-
interface Props$
|
|
907
|
+
declare const GalleryFigure: React$1.ForwardRefExoticComponent<Props$2C & React$1.RefAttributes<HTMLElement>>;
|
|
908
|
+
interface Props$2C {
|
|
871
909
|
/**
|
|
872
910
|
* Main content of the component.
|
|
873
911
|
*/
|
|
@@ -882,8 +920,8 @@ interface Props$2B {
|
|
|
882
920
|
'data-visible'?: boolean;
|
|
883
921
|
}
|
|
884
922
|
|
|
885
|
-
declare const GalleryItem: React$1.ForwardRefExoticComponent<Props$
|
|
886
|
-
interface Props$
|
|
923
|
+
declare const GalleryItem: React$1.ForwardRefExoticComponent<Props$2B & React$1.RefAttributes<HTMLDivElement>>;
|
|
924
|
+
interface Props$2B {
|
|
887
925
|
/**
|
|
888
926
|
* Sets item as active.
|
|
889
927
|
*/
|
|
@@ -934,8 +972,8 @@ interface Props$2A {
|
|
|
934
972
|
onCheckboxClick?: React$1.MouseEventHandler<HTMLButtonElement>;
|
|
935
973
|
}
|
|
936
974
|
|
|
937
|
-
declare const Gallery: React$1.FC<Props$
|
|
938
|
-
interface Props$
|
|
975
|
+
declare const Gallery: React$1.FC<Props$2A>;
|
|
976
|
+
interface Props$2A {
|
|
939
977
|
/**
|
|
940
978
|
* Main content of the component.
|
|
941
979
|
*/
|
|
@@ -954,8 +992,8 @@ interface Props$2z {
|
|
|
954
992
|
zoom?: number;
|
|
955
993
|
}
|
|
956
994
|
|
|
957
|
-
declare const MenuItem: React$1.FC<Props$
|
|
958
|
-
interface Props$
|
|
995
|
+
declare const MenuItem: React$1.FC<Props$2z>;
|
|
996
|
+
interface Props$2z {
|
|
959
997
|
/**
|
|
960
998
|
* Disables auto-close on click.
|
|
961
999
|
*/
|
|
@@ -982,8 +1020,8 @@ interface Props$2y {
|
|
|
982
1020
|
onClick?: () => void;
|
|
983
1021
|
}
|
|
984
1022
|
|
|
985
|
-
declare const MenuSubSection: React$1.FC<Props$
|
|
986
|
-
interface Props$
|
|
1023
|
+
declare const MenuSubSection: React$1.FC<Props$2y>;
|
|
1024
|
+
interface Props$2y {
|
|
987
1025
|
/**
|
|
988
1026
|
* Main content of the component.
|
|
989
1027
|
*/
|
|
@@ -1010,8 +1048,8 @@ interface Props$2x {
|
|
|
1010
1048
|
title: string;
|
|
1011
1049
|
}
|
|
1012
1050
|
|
|
1013
|
-
declare const MenuSection: React$1.FC<Props$
|
|
1014
|
-
interface Props$
|
|
1051
|
+
declare const MenuSection: React$1.FC<Props$2x>;
|
|
1052
|
+
interface Props$2x {
|
|
1015
1053
|
/**
|
|
1016
1054
|
* Main content of the component.
|
|
1017
1055
|
*/
|
|
@@ -1043,16 +1081,16 @@ type PopperAnchorRef = HTMLElement | null | undefined;
|
|
|
1043
1081
|
type PopperOffsetValue = 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
1044
1082
|
type PopperOffset = [PopperOffsetValue, PopperOffsetValue];
|
|
1045
1083
|
|
|
1046
|
-
declare const PopperArrow: React__default.FC<Props$
|
|
1047
|
-
interface Props$
|
|
1084
|
+
declare const PopperArrow: React__default.FC<Props$2w>;
|
|
1085
|
+
interface Props$2w {
|
|
1048
1086
|
/**
|
|
1049
1087
|
* Sets arrow size.
|
|
1050
1088
|
*/
|
|
1051
1089
|
size?: 'sm' | 'md';
|
|
1052
1090
|
}
|
|
1053
1091
|
|
|
1054
|
-
declare const Popper: React__default.ForwardRefExoticComponent<Props$
|
|
1055
|
-
interface Props$
|
|
1092
|
+
declare const Popper: React__default.ForwardRefExoticComponent<Props$2v & React__default.RefAttributes<HTMLElement>>;
|
|
1093
|
+
interface Props$2v {
|
|
1056
1094
|
/**
|
|
1057
1095
|
* Anchor element. Popper will be mounted to this element.
|
|
1058
1096
|
*/
|
|
@@ -1091,8 +1129,8 @@ interface Props$2u {
|
|
|
1091
1129
|
onKeyDown?: React__default.KeyboardEventHandler;
|
|
1092
1130
|
}
|
|
1093
1131
|
|
|
1094
|
-
declare const Menu: React$1.ForwardRefExoticComponent<Props$
|
|
1095
|
-
interface Props$
|
|
1132
|
+
declare const Menu: React$1.ForwardRefExoticComponent<Props$2u & React$1.RefAttributes<HTMLDivElement>>;
|
|
1133
|
+
interface Props$2u {
|
|
1096
1134
|
/**
|
|
1097
1135
|
* Anchor element.
|
|
1098
1136
|
*/
|
|
@@ -1123,16 +1161,16 @@ interface Props$2t {
|
|
|
1123
1161
|
sameWidth?: boolean;
|
|
1124
1162
|
}
|
|
1125
1163
|
|
|
1126
|
-
declare const ModalDialogActionContent: React$1.ForwardRefExoticComponent<Props$
|
|
1127
|
-
interface Props$
|
|
1164
|
+
declare const ModalDialogActionContent: React$1.ForwardRefExoticComponent<Props$2t & React$1.RefAttributes<HTMLDivElement>>;
|
|
1165
|
+
interface Props$2t {
|
|
1128
1166
|
/**
|
|
1129
1167
|
* Main content of the component.
|
|
1130
1168
|
*/
|
|
1131
1169
|
children?: React$1.ReactNode;
|
|
1132
1170
|
}
|
|
1133
1171
|
|
|
1134
|
-
declare const ModalDialogActionItem: React$1.ForwardRefExoticComponent<Props$
|
|
1135
|
-
interface Props$
|
|
1172
|
+
declare const ModalDialogActionItem: React$1.ForwardRefExoticComponent<Props$2s & React$1.RefAttributes<HTMLLIElement>>;
|
|
1173
|
+
interface Props$2s {
|
|
1136
1174
|
/**
|
|
1137
1175
|
* Main content of the component.
|
|
1138
1176
|
*/
|
|
@@ -1151,8 +1189,8 @@ interface Props$2r {
|
|
|
1151
1189
|
isLoading?: boolean;
|
|
1152
1190
|
}
|
|
1153
1191
|
|
|
1154
|
-
declare const ModalDialogCallout: React$1.ForwardRefExoticComponent<Props$
|
|
1155
|
-
interface Props$
|
|
1192
|
+
declare const ModalDialogCallout: React$1.ForwardRefExoticComponent<Props$2r & React$1.RefAttributes<HTMLDivElement>>;
|
|
1193
|
+
interface Props$2r {
|
|
1156
1194
|
/**
|
|
1157
1195
|
* Main content of the component.
|
|
1158
1196
|
*/
|
|
@@ -1167,8 +1205,8 @@ interface Props$2q {
|
|
|
1167
1205
|
type: 'error' | 'warning';
|
|
1168
1206
|
}
|
|
1169
1207
|
|
|
1170
|
-
declare const ModalDialogContent: React$1.ForwardRefExoticComponent<Props$
|
|
1171
|
-
interface Props$
|
|
1208
|
+
declare const ModalDialogContent: React$1.ForwardRefExoticComponent<Props$2q & React$1.RefAttributes<HTMLDivElement>>;
|
|
1209
|
+
interface Props$2q {
|
|
1172
1210
|
/**
|
|
1173
1211
|
* Main content of the component.
|
|
1174
1212
|
*/
|
|
@@ -1179,8 +1217,8 @@ interface Props$2p {
|
|
|
1179
1217
|
id?: string;
|
|
1180
1218
|
}
|
|
1181
1219
|
|
|
1182
|
-
declare const ModalDialogContentColumn: React$1.ForwardRefExoticComponent<Props$
|
|
1183
|
-
interface Props$
|
|
1220
|
+
declare const ModalDialogContentColumn: React$1.ForwardRefExoticComponent<Props$2p & React$1.RefAttributes<HTMLDivElement>>;
|
|
1221
|
+
interface Props$2p {
|
|
1184
1222
|
/**
|
|
1185
1223
|
* Main content of the component.
|
|
1186
1224
|
*/
|
|
@@ -1191,8 +1229,8 @@ interface Props$2o {
|
|
|
1191
1229
|
id?: string;
|
|
1192
1230
|
}
|
|
1193
1231
|
|
|
1194
|
-
declare const ModalDialogList: React$1.ForwardRefExoticComponent<Props$
|
|
1195
|
-
interface Props$
|
|
1232
|
+
declare const ModalDialogList: React$1.ForwardRefExoticComponent<Props$2o & React$1.RefAttributes<HTMLDivElement>>;
|
|
1233
|
+
interface Props$2o {
|
|
1196
1234
|
/**
|
|
1197
1235
|
* Sets the dialog content ID.
|
|
1198
1236
|
*/
|
|
@@ -1207,16 +1245,16 @@ interface Props$2n {
|
|
|
1207
1245
|
children: React$1.ReactNode;
|
|
1208
1246
|
}
|
|
1209
1247
|
|
|
1210
|
-
declare const ModalDialogListItem: React$1.ForwardRefExoticComponent<Props$
|
|
1211
|
-
interface Props$
|
|
1248
|
+
declare const ModalDialogListItem: React$1.ForwardRefExoticComponent<Props$2n & React$1.RefAttributes<HTMLLIElement>>;
|
|
1249
|
+
interface Props$2n {
|
|
1212
1250
|
/**
|
|
1213
1251
|
* Item to display in the list.
|
|
1214
1252
|
*/
|
|
1215
1253
|
children: React$1.ReactNode;
|
|
1216
1254
|
}
|
|
1217
1255
|
|
|
1218
|
-
declare const ModalDialogFooter: React$1.ForwardRefExoticComponent<Props$
|
|
1219
|
-
interface Props$
|
|
1256
|
+
declare const ModalDialogFooter: React$1.ForwardRefExoticComponent<Props$2m & React$1.RefAttributes<HTMLDivElement>>;
|
|
1257
|
+
interface Props$2m {
|
|
1220
1258
|
/**
|
|
1221
1259
|
* Main content of the component.
|
|
1222
1260
|
*/
|
|
@@ -1227,16 +1265,16 @@ interface Props$2l {
|
|
|
1227
1265
|
spaceBetween?: boolean;
|
|
1228
1266
|
}
|
|
1229
1267
|
|
|
1230
|
-
declare const ModalDialogFooterAction: React$1.ForwardRefExoticComponent<Props$
|
|
1231
|
-
interface Props$
|
|
1268
|
+
declare const ModalDialogFooterAction: React$1.ForwardRefExoticComponent<Props$2l & React$1.RefAttributes<HTMLDivElement>>;
|
|
1269
|
+
interface Props$2l {
|
|
1232
1270
|
/**
|
|
1233
1271
|
* Main content of the component.
|
|
1234
1272
|
*/
|
|
1235
1273
|
children?: React$1.ReactNode;
|
|
1236
1274
|
}
|
|
1237
1275
|
|
|
1238
|
-
declare const ModalDialogHeader: React$1.ForwardRefExoticComponent<Props$
|
|
1239
|
-
interface Props$
|
|
1276
|
+
declare const ModalDialogHeader: React$1.ForwardRefExoticComponent<Props$2k & React$1.RefAttributes<HTMLDivElement>>;
|
|
1277
|
+
interface Props$2k {
|
|
1240
1278
|
/**
|
|
1241
1279
|
* Enables the top border accent.
|
|
1242
1280
|
*/
|
|
@@ -1248,7 +1286,7 @@ interface Props$2j {
|
|
|
1248
1286
|
/**
|
|
1249
1287
|
* Name of selected icon.
|
|
1250
1288
|
*/
|
|
1251
|
-
icon?: 'info' | 'success' | 'error' | 'warning' | React$1.ReactElement<Props$
|
|
1289
|
+
icon?: 'info' | 'success' | 'error' | 'warning' | React$1.ReactElement<Props$2Y>;
|
|
1252
1290
|
/**
|
|
1253
1291
|
* Optional sub title of the modal.
|
|
1254
1292
|
*/
|
|
@@ -1263,8 +1301,8 @@ interface Props$2j {
|
|
|
1263
1301
|
titleId?: string;
|
|
1264
1302
|
}
|
|
1265
1303
|
|
|
1266
|
-
declare const ModalDialog: React$1.ForwardRefExoticComponent<Props$
|
|
1267
|
-
interface Props$
|
|
1304
|
+
declare const ModalDialog: React$1.ForwardRefExoticComponent<Props$2j & React$1.RefAttributes<HTMLDivElement>>;
|
|
1305
|
+
interface Props$2j {
|
|
1268
1306
|
/**
|
|
1269
1307
|
* Main content of the component.
|
|
1270
1308
|
*/
|
|
@@ -1354,8 +1392,8 @@ interface NavbarContext {
|
|
|
1354
1392
|
declare const NavbarContext: React$1.Context<NavbarContext>;
|
|
1355
1393
|
declare const useNavbarCtx: () => NavbarContext;
|
|
1356
1394
|
|
|
1357
|
-
declare const NavbarItem: React$1.FC<Props$
|
|
1358
|
-
interface Props$
|
|
1395
|
+
declare const NavbarItem: React$1.FC<Props$2i>;
|
|
1396
|
+
interface Props$2i {
|
|
1359
1397
|
/**
|
|
1360
1398
|
* Applies active styling.
|
|
1361
1399
|
*/
|
|
@@ -1418,8 +1456,8 @@ interface Props$2h {
|
|
|
1418
1456
|
onDelete?: () => void;
|
|
1419
1457
|
}
|
|
1420
1458
|
|
|
1421
|
-
declare const NavbarItemContainer: React$1.FC<Props$
|
|
1422
|
-
interface Props$
|
|
1459
|
+
declare const NavbarItemContainer: React$1.FC<Props$2h>;
|
|
1460
|
+
interface Props$2h {
|
|
1423
1461
|
/**
|
|
1424
1462
|
* Marks container as active.
|
|
1425
1463
|
*/
|
|
@@ -1430,8 +1468,8 @@ interface Props$2g {
|
|
|
1430
1468
|
children: React$1.ReactNode;
|
|
1431
1469
|
}
|
|
1432
1470
|
|
|
1433
|
-
declare const NavbarItemContent: React$1.FC<Props$
|
|
1434
|
-
interface Props$
|
|
1471
|
+
declare const NavbarItemContent: React$1.FC<Props$2g>;
|
|
1472
|
+
interface Props$2g {
|
|
1435
1473
|
/**
|
|
1436
1474
|
* Adds enter / exit animation.
|
|
1437
1475
|
*/
|
|
@@ -1450,8 +1488,8 @@ interface Props$2f {
|
|
|
1450
1488
|
hidden?: boolean;
|
|
1451
1489
|
}
|
|
1452
1490
|
|
|
1453
|
-
declare const NavbarItemLabel: React$1.FC<Props$
|
|
1454
|
-
interface Props$
|
|
1491
|
+
declare const NavbarItemLabel: React$1.FC<Props$2f>;
|
|
1492
|
+
interface Props$2f {
|
|
1455
1493
|
/**
|
|
1456
1494
|
* Toggles icon animation if parent item is hovered.
|
|
1457
1495
|
*/
|
|
@@ -1463,11 +1501,11 @@ interface Props$2e {
|
|
|
1463
1501
|
/**
|
|
1464
1502
|
* Displayed icon.
|
|
1465
1503
|
*/
|
|
1466
|
-
icon?: React$1.ReactElement<Props$
|
|
1504
|
+
icon?: React$1.ReactElement<Props$2Y>;
|
|
1467
1505
|
}
|
|
1468
1506
|
|
|
1469
|
-
declare const NavbarItemsGroup: React$1.FC<Props$
|
|
1470
|
-
interface Props$
|
|
1507
|
+
declare const NavbarItemsGroup: React$1.FC<Props$2e>;
|
|
1508
|
+
interface Props$2e {
|
|
1471
1509
|
/**
|
|
1472
1510
|
* Animates group on collapse.
|
|
1473
1511
|
*/
|
|
@@ -1486,8 +1524,8 @@ interface Props$2d {
|
|
|
1486
1524
|
level?: number;
|
|
1487
1525
|
}
|
|
1488
1526
|
|
|
1489
|
-
declare const NavbarLink: React$1.FC<Props$
|
|
1490
|
-
interface Props$
|
|
1527
|
+
declare const NavbarLink: React$1.FC<Props$2d>;
|
|
1528
|
+
interface Props$2d {
|
|
1491
1529
|
/**
|
|
1492
1530
|
* Renders link content.
|
|
1493
1531
|
*/
|
|
@@ -1500,8 +1538,8 @@ interface Props$2c {
|
|
|
1500
1538
|
href?: string;
|
|
1501
1539
|
}
|
|
1502
1540
|
|
|
1503
|
-
declare const NavbarScrollableContent: React$1.FC<Props$
|
|
1504
|
-
interface Props$
|
|
1541
|
+
declare const NavbarScrollableContent: React$1.FC<Props$2c>;
|
|
1542
|
+
interface Props$2c {
|
|
1505
1543
|
/**
|
|
1506
1544
|
* Main content of the component.
|
|
1507
1545
|
*/
|
|
@@ -1510,8 +1548,8 @@ interface Props$2b {
|
|
|
1510
1548
|
|
|
1511
1549
|
declare const NavbarSeparator: React$1.FC;
|
|
1512
1550
|
|
|
1513
|
-
declare const NavbarToggleButton: React$1.FC<Props$
|
|
1514
|
-
interface Props$
|
|
1551
|
+
declare const NavbarToggleButton: React$1.FC<Props$2b>;
|
|
1552
|
+
interface Props$2b {
|
|
1515
1553
|
/**
|
|
1516
1554
|
* Label shown when navbar will collapse.
|
|
1517
1555
|
*/
|
|
@@ -1526,8 +1564,8 @@ interface Props$2a {
|
|
|
1526
1564
|
openLabel?: string;
|
|
1527
1565
|
}
|
|
1528
1566
|
|
|
1529
|
-
declare const Navbar: React$1.FC<Props$
|
|
1530
|
-
interface Props$
|
|
1567
|
+
declare const Navbar: React$1.FC<Props$2a>;
|
|
1568
|
+
interface Props$2a {
|
|
1531
1569
|
/**
|
|
1532
1570
|
* Labels navigation element.
|
|
1533
1571
|
*/
|
|
@@ -1538,8 +1576,8 @@ interface Props$29 {
|
|
|
1538
1576
|
children: React$1.ReactNode;
|
|
1539
1577
|
}
|
|
1540
1578
|
|
|
1541
|
-
declare const Modal: React$1.FC<Props$
|
|
1542
|
-
interface Props$
|
|
1579
|
+
declare const Modal: React$1.FC<Props$29>;
|
|
1580
|
+
interface Props$29 {
|
|
1543
1581
|
/**
|
|
1544
1582
|
* Optional children.
|
|
1545
1583
|
*/
|
|
@@ -1562,24 +1600,24 @@ interface Props$28 {
|
|
|
1562
1600
|
variant?: 'transparent' | 'semi-transparent';
|
|
1563
1601
|
}
|
|
1564
1602
|
|
|
1565
|
-
declare const PanelActions: React$1.FC<Props$
|
|
1566
|
-
interface Props$
|
|
1603
|
+
declare const PanelActions: React$1.FC<Props$28>;
|
|
1604
|
+
interface Props$28 {
|
|
1567
1605
|
/**
|
|
1568
1606
|
* Main content of the component.
|
|
1569
1607
|
*/
|
|
1570
1608
|
children?: React$1.ReactNode;
|
|
1571
1609
|
}
|
|
1572
1610
|
|
|
1573
|
-
declare const PanelColumn: React$1.FC<Props$
|
|
1574
|
-
interface Props$
|
|
1611
|
+
declare const PanelColumn: React$1.FC<Props$27>;
|
|
1612
|
+
interface Props$27 {
|
|
1575
1613
|
/**
|
|
1576
1614
|
* Main content of the component.
|
|
1577
1615
|
*/
|
|
1578
1616
|
children: React$1.ReactNode;
|
|
1579
1617
|
}
|
|
1580
1618
|
|
|
1581
|
-
declare const PanelContent: React$1.ForwardRefExoticComponent<Props$
|
|
1582
|
-
interface Props$
|
|
1619
|
+
declare const PanelContent: React$1.ForwardRefExoticComponent<Props$26 & React$1.RefAttributes<HTMLDivElement>>;
|
|
1620
|
+
interface Props$26 {
|
|
1583
1621
|
/**
|
|
1584
1622
|
* Main content of the component.
|
|
1585
1623
|
*/
|
|
@@ -1598,8 +1636,8 @@ interface Props$25 {
|
|
|
1598
1636
|
header?: string;
|
|
1599
1637
|
}
|
|
1600
1638
|
|
|
1601
|
-
declare const PanelContentProp: React$1.FC<Props$
|
|
1602
|
-
interface Props$
|
|
1639
|
+
declare const PanelContentProp: React$1.FC<Props$25>;
|
|
1640
|
+
interface Props$25 {
|
|
1603
1641
|
/**
|
|
1604
1642
|
* Property label.
|
|
1605
1643
|
*/
|
|
@@ -1612,8 +1650,8 @@ interface Props$24 {
|
|
|
1612
1650
|
|
|
1613
1651
|
declare const PanelDragHandle: React$1.ForwardRefExoticComponent<React$1.RefAttributes<HTMLDivElement>>;
|
|
1614
1652
|
|
|
1615
|
-
declare const PanelList: React$1.FC<Props$
|
|
1616
|
-
interface Props$
|
|
1653
|
+
declare const PanelList: React$1.FC<Props$24>;
|
|
1654
|
+
interface Props$24 {
|
|
1617
1655
|
/**
|
|
1618
1656
|
* Main content.
|
|
1619
1657
|
*/
|
|
@@ -1628,16 +1666,16 @@ interface Props$23 {
|
|
|
1628
1666
|
toolbarLoading?: boolean;
|
|
1629
1667
|
}
|
|
1630
1668
|
|
|
1631
|
-
declare const PanelListDivider: React$1.FC<Props$
|
|
1632
|
-
interface Props$
|
|
1669
|
+
declare const PanelListDivider: React$1.FC<Props$23>;
|
|
1670
|
+
interface Props$23 {
|
|
1633
1671
|
/**
|
|
1634
1672
|
* Toggles component opacity.
|
|
1635
1673
|
*/
|
|
1636
1674
|
opaque?: boolean;
|
|
1637
1675
|
}
|
|
1638
1676
|
|
|
1639
|
-
declare const PanelSide: React$1.FC<Props$
|
|
1640
|
-
interface Props$
|
|
1677
|
+
declare const PanelSide: React$1.FC<Props$22>;
|
|
1678
|
+
interface Props$22 {
|
|
1641
1679
|
/**
|
|
1642
1680
|
* Icon to display.
|
|
1643
1681
|
*/
|
|
@@ -1651,8 +1689,8 @@ interface Props$21 {
|
|
|
1651
1689
|
iconRender?: IconRenderProp;
|
|
1652
1690
|
}
|
|
1653
1691
|
|
|
1654
|
-
declare const PanelSkeleton: React$1.FC<Props$
|
|
1655
|
-
interface Props$
|
|
1692
|
+
declare const PanelSkeleton: React$1.FC<Props$21>;
|
|
1693
|
+
interface Props$21 {
|
|
1656
1694
|
/**
|
|
1657
1695
|
* Number of loading blocks.
|
|
1658
1696
|
*/
|
|
@@ -1667,8 +1705,8 @@ interface Props$20 {
|
|
|
1667
1705
|
spacing?: boolean;
|
|
1668
1706
|
}
|
|
1669
1707
|
|
|
1670
|
-
declare const PanelTitle: React$1.ForwardRefExoticComponent<Props$
|
|
1671
|
-
interface Props$
|
|
1708
|
+
declare const PanelTitle: React$1.ForwardRefExoticComponent<Props$20 & React$1.RefAttributes<HTMLDivElement>>;
|
|
1709
|
+
interface Props$20 extends Omit<Props$26, 'children'> {
|
|
1672
1710
|
/**
|
|
1673
1711
|
* Panel's title.
|
|
1674
1712
|
*/
|
|
@@ -1754,8 +1792,8 @@ declare const useListDnd: (initItems: ListDndItem[]) => {
|
|
|
1754
1792
|
setDraggable: ListDndSetDraggable;
|
|
1755
1793
|
};
|
|
1756
1794
|
|
|
1757
|
-
declare const SortableDndListItem: React$1.FC<Props$
|
|
1758
|
-
interface Props$
|
|
1795
|
+
declare const SortableDndListItem: React$1.FC<Props$1$>;
|
|
1796
|
+
interface Props$1$ {
|
|
1759
1797
|
/**
|
|
1760
1798
|
* Current item's index in a list.
|
|
1761
1799
|
*/
|
|
@@ -1797,8 +1835,8 @@ interface SortableDndListContextShape {
|
|
|
1797
1835
|
onDragEnd?: ListDndOnDragEnd;
|
|
1798
1836
|
}
|
|
1799
1837
|
|
|
1800
|
-
declare const SortableDndList: React$1.FC<Props$
|
|
1801
|
-
interface Props$
|
|
1838
|
+
declare const SortableDndList: React$1.FC<Props$1_>;
|
|
1839
|
+
interface Props$1_ extends SortableDndListContextShape {
|
|
1802
1840
|
/**
|
|
1803
1841
|
* Main content of the component.
|
|
1804
1842
|
*/
|
|
@@ -1816,8 +1854,8 @@ interface PanelContextShape extends Partial<ListDndChildProps> {
|
|
|
1816
1854
|
edit?: boolean;
|
|
1817
1855
|
}
|
|
1818
1856
|
|
|
1819
|
-
declare const Panel: React$1.ForwardRefExoticComponent<Props$
|
|
1820
|
-
interface Props$
|
|
1857
|
+
declare const Panel: React$1.ForwardRefExoticComponent<Props$1Z & React$1.RefAttributes<HTMLDivElement>>;
|
|
1858
|
+
interface Props$1Z extends PanelContextShape {
|
|
1821
1859
|
/**
|
|
1822
1860
|
* Main content of the component.
|
|
1823
1861
|
*/
|
|
@@ -1832,8 +1870,8 @@ interface Props$1Y extends PanelContextShape {
|
|
|
1832
1870
|
elevated?: boolean;
|
|
1833
1871
|
}
|
|
1834
1872
|
|
|
1835
|
-
declare const Pagination: React$1.FC<Props$
|
|
1836
|
-
interface Props$
|
|
1873
|
+
declare const Pagination: React$1.FC<Props$1Y>;
|
|
1874
|
+
interface Props$1Y {
|
|
1837
1875
|
/**
|
|
1838
1876
|
* Disables interaction with pagination.
|
|
1839
1877
|
*/
|
|
@@ -1876,8 +1914,8 @@ interface Props$1X {
|
|
|
1876
1914
|
prevPageLabel?: string;
|
|
1877
1915
|
}
|
|
1878
1916
|
|
|
1879
|
-
declare const ProgressPanel: React$1.ForwardRefExoticComponent<Props$
|
|
1880
|
-
interface Props$
|
|
1917
|
+
declare const ProgressPanel: React$1.ForwardRefExoticComponent<Props$1X & React$1.RefAttributes<HTMLDivElement>>;
|
|
1918
|
+
interface Props$1X {
|
|
1881
1919
|
/**
|
|
1882
1920
|
* Additional info rendered close to a title.
|
|
1883
1921
|
*/
|
|
@@ -1920,8 +1958,8 @@ interface Props$1W {
|
|
|
1920
1958
|
navigationLabel?: string;
|
|
1921
1959
|
}
|
|
1922
1960
|
|
|
1923
|
-
declare const PropertiesTableRow: React$1.FC<Props$
|
|
1924
|
-
interface Props$
|
|
1961
|
+
declare const PropertiesTableRow: React$1.FC<Props$1W>;
|
|
1962
|
+
interface Props$1W {
|
|
1925
1963
|
/**
|
|
1926
1964
|
* Item's label.
|
|
1927
1965
|
*/
|
|
@@ -1932,16 +1970,16 @@ interface Props$1V {
|
|
|
1932
1970
|
value: React$1.ReactNode;
|
|
1933
1971
|
}
|
|
1934
1972
|
|
|
1935
|
-
declare const PropertiesTable: React$1.FC<Props$
|
|
1936
|
-
interface Props$
|
|
1973
|
+
declare const PropertiesTable: React$1.FC<Props$1V>;
|
|
1974
|
+
interface Props$1V {
|
|
1937
1975
|
/**
|
|
1938
1976
|
* Main content of the component.
|
|
1939
1977
|
*/
|
|
1940
1978
|
children: React$1.ReactNode;
|
|
1941
1979
|
}
|
|
1942
1980
|
|
|
1943
|
-
declare const ResponsiveImageFit: React$1.FC<Props$
|
|
1944
|
-
interface Props$
|
|
1981
|
+
declare const ResponsiveImageFit: React$1.FC<Props$1U>;
|
|
1982
|
+
interface Props$1U {
|
|
1945
1983
|
/**
|
|
1946
1984
|
* Image alt text.
|
|
1947
1985
|
*/
|
|
@@ -1980,8 +2018,8 @@ interface Props$1T {
|
|
|
1980
2018
|
sizes?: number;
|
|
1981
2019
|
}
|
|
1982
2020
|
|
|
1983
|
-
declare const ResponsiveImageFallback: React$1.FC<Props$
|
|
1984
|
-
interface Props$
|
|
2021
|
+
declare const ResponsiveImageFallback: React$1.FC<Props$1T>;
|
|
2022
|
+
interface Props$1T {
|
|
1985
2023
|
/**
|
|
1986
2024
|
* Indicates if cover is allowed for the image.
|
|
1987
2025
|
*/
|
|
@@ -2008,8 +2046,8 @@ interface Props$1S {
|
|
|
2008
2046
|
showFallback?: boolean;
|
|
2009
2047
|
}
|
|
2010
2048
|
|
|
2011
|
-
declare const ResponsiveImageScalable: React$1.FC<Props$
|
|
2012
|
-
interface Props$
|
|
2049
|
+
declare const ResponsiveImageScalable: React$1.FC<Props$1S>;
|
|
2050
|
+
interface Props$1S {
|
|
2013
2051
|
/**
|
|
2014
2052
|
* Image alt text.
|
|
2015
2053
|
*/
|
|
@@ -2058,8 +2096,8 @@ interface Props$1R {
|
|
|
2058
2096
|
|
|
2059
2097
|
declare const ResponsiveImageSkeleton: React$1.FC;
|
|
2060
2098
|
|
|
2061
|
-
declare const ResponsiveImage: React$1.FC<Props$
|
|
2062
|
-
interface Props$
|
|
2099
|
+
declare const ResponsiveImage: React$1.FC<Props$1R>;
|
|
2100
|
+
interface Props$1R {
|
|
2063
2101
|
/**
|
|
2064
2102
|
* List of available breakpoints.
|
|
2065
2103
|
*/
|
|
@@ -2082,8 +2120,8 @@ interface Props$1Q {
|
|
|
2082
2120
|
loader?: React$1.ReactNode;
|
|
2083
2121
|
}
|
|
2084
2122
|
|
|
2085
|
-
declare const Skeleton: React$1.FC<Props$
|
|
2086
|
-
interface Props$
|
|
2123
|
+
declare const Skeleton: React$1.FC<Props$1Q>;
|
|
2124
|
+
interface Props$1Q {
|
|
2087
2125
|
/**
|
|
2088
2126
|
* Optional class name. It overrides class responsible for background color.
|
|
2089
2127
|
*/
|
|
@@ -2098,8 +2136,8 @@ interface Props$1P {
|
|
|
2098
2136
|
width?: string;
|
|
2099
2137
|
}
|
|
2100
2138
|
|
|
2101
|
-
declare const SortButton: React$1.FC<Props$
|
|
2102
|
-
interface Props$
|
|
2139
|
+
declare const SortButton: React$1.FC<Props$1P>;
|
|
2140
|
+
interface Props$1P {
|
|
2103
2141
|
/**
|
|
2104
2142
|
* Button's aria label.
|
|
2105
2143
|
*/
|
|
@@ -2118,36 +2156,32 @@ interface Props$1O {
|
|
|
2118
2156
|
onClick?: () => void;
|
|
2119
2157
|
}
|
|
2120
2158
|
|
|
2121
|
-
declare const SwitchView: React$1.FC<Props$
|
|
2122
|
-
interface Props$
|
|
2159
|
+
declare const SwitchView: React$1.FC<Props$1O>;
|
|
2160
|
+
interface Props$1O {
|
|
2123
2161
|
/**
|
|
2124
2162
|
* Main content of the component.
|
|
2125
2163
|
*/
|
|
2126
2164
|
children: React$1.ReactNode;
|
|
2127
2165
|
/**
|
|
2128
|
-
* View
|
|
2166
|
+
* View ID.
|
|
2129
2167
|
*/
|
|
2130
|
-
id?: string;
|
|
2131
|
-
/**
|
|
2132
|
-
* Use `fallback` type to show a fallback view if no other `SwitchView` is matched.
|
|
2133
|
-
*/
|
|
2134
|
-
type?: 'default' | 'fallback';
|
|
2168
|
+
id?: string | string[];
|
|
2135
2169
|
}
|
|
2136
2170
|
|
|
2137
|
-
declare const Switch: React$1.FC<Props$
|
|
2138
|
-
interface Props$
|
|
2171
|
+
declare const Switch: React$1.FC<Props$1N>;
|
|
2172
|
+
interface Props$1N {
|
|
2139
2173
|
/**
|
|
2140
2174
|
* Main content of the component.
|
|
2141
2175
|
*/
|
|
2142
2176
|
children: React$1.ReactNode;
|
|
2143
2177
|
/**
|
|
2144
|
-
* View
|
|
2178
|
+
* View ID to match.
|
|
2145
2179
|
*/
|
|
2146
2180
|
match?: string;
|
|
2147
2181
|
}
|
|
2148
2182
|
|
|
2149
|
-
declare const SwitchInput: React$1.FC<Props$
|
|
2150
|
-
interface Props$
|
|
2183
|
+
declare const SwitchInput: React$1.FC<Props$1M>;
|
|
2184
|
+
interface Props$1M {
|
|
2151
2185
|
/**
|
|
2152
2186
|
* Sets current input's value.
|
|
2153
2187
|
*/
|
|
@@ -2166,8 +2200,8 @@ interface Props$1L {
|
|
|
2166
2200
|
onChange: (checked: boolean) => void;
|
|
2167
2201
|
}
|
|
2168
2202
|
|
|
2169
|
-
declare const TagList: React$1.FC<Props$
|
|
2170
|
-
interface Props$
|
|
2203
|
+
declare const TagList: React$1.FC<Props$1L>;
|
|
2204
|
+
interface Props$1L {
|
|
2171
2205
|
/**
|
|
2172
2206
|
* Main content of the component.
|
|
2173
2207
|
*/
|
|
@@ -2178,8 +2212,8 @@ interface Props$1K {
|
|
|
2178
2212
|
className?: string;
|
|
2179
2213
|
}
|
|
2180
2214
|
|
|
2181
|
-
declare const TagLabel: React$1.FC<Props$
|
|
2182
|
-
interface Props$
|
|
2215
|
+
declare const TagLabel: React$1.FC<Props$1K>;
|
|
2216
|
+
interface Props$1K {
|
|
2183
2217
|
/**
|
|
2184
2218
|
* Emphasizes tag content.
|
|
2185
2219
|
*/
|
|
@@ -2190,8 +2224,8 @@ interface Props$1J {
|
|
|
2190
2224
|
children: React$1.ReactNode;
|
|
2191
2225
|
}
|
|
2192
2226
|
|
|
2193
|
-
declare const Tag: React$1.ForwardRefExoticComponent<Props$
|
|
2194
|
-
interface Props$
|
|
2227
|
+
declare const Tag: React$1.ForwardRefExoticComponent<Props$1J & React$1.RefAttributes<HTMLDivElement>>;
|
|
2228
|
+
interface Props$1J {
|
|
2195
2229
|
/**
|
|
2196
2230
|
* Sets component's children.
|
|
2197
2231
|
*/
|
|
@@ -2222,8 +2256,8 @@ interface Props$1I {
|
|
|
2222
2256
|
removeLabel?: string;
|
|
2223
2257
|
}
|
|
2224
2258
|
|
|
2225
|
-
declare const TagInput: React$1.FC<Props$
|
|
2226
|
-
interface Props$
|
|
2259
|
+
declare const TagInput: React$1.FC<Props$1I>;
|
|
2260
|
+
interface Props$1I {
|
|
2227
2261
|
/**
|
|
2228
2262
|
* Input's class name.
|
|
2229
2263
|
*/
|
|
@@ -2271,8 +2305,8 @@ interface Props$1H {
|
|
|
2271
2305
|
}[];
|
|
2272
2306
|
}
|
|
2273
2307
|
|
|
2274
|
-
declare const Tab: React$1.FC<Props$
|
|
2275
|
-
interface Props$
|
|
2308
|
+
declare const Tab: React$1.FC<Props$1H>;
|
|
2309
|
+
interface Props$1H {
|
|
2276
2310
|
/**
|
|
2277
2311
|
* Main content.
|
|
2278
2312
|
*/
|
|
@@ -2287,8 +2321,8 @@ interface Props$1G {
|
|
|
2287
2321
|
label: string;
|
|
2288
2322
|
}
|
|
2289
2323
|
|
|
2290
|
-
declare const Tabs: React$1.FC<Props$
|
|
2291
|
-
interface Props$
|
|
2324
|
+
declare const Tabs: React$1.FC<Props$1G>;
|
|
2325
|
+
interface Props$1G {
|
|
2292
2326
|
/**
|
|
2293
2327
|
* Currently selected tab.
|
|
2294
2328
|
*/
|
|
@@ -2303,8 +2337,8 @@ interface Props$1F {
|
|
|
2303
2337
|
onTabSelect?: (tab: string) => void;
|
|
2304
2338
|
}
|
|
2305
2339
|
|
|
2306
|
-
declare const Tooltip: React$1.FC<Props$
|
|
2307
|
-
interface Props$
|
|
2340
|
+
declare const Tooltip: React$1.FC<Props$1F>;
|
|
2341
|
+
interface Props$1F {
|
|
2308
2342
|
/**
|
|
2309
2343
|
* Main content of the component.
|
|
2310
2344
|
* It must be a single child that accepts `ref`.
|
|
@@ -2328,8 +2362,8 @@ interface Props$1E {
|
|
|
2328
2362
|
wrap?: boolean;
|
|
2329
2363
|
}
|
|
2330
2364
|
|
|
2331
|
-
declare const TopbarAction: React$1.FC<Props$
|
|
2332
|
-
interface Props$
|
|
2365
|
+
declare const TopbarAction: React$1.FC<Props$1E>;
|
|
2366
|
+
interface Props$1E {
|
|
2333
2367
|
/**
|
|
2334
2368
|
* Applies active styling.
|
|
2335
2369
|
*/
|
|
@@ -2360,8 +2394,8 @@ interface Props$1D {
|
|
|
2360
2394
|
onClick?: () => void;
|
|
2361
2395
|
}
|
|
2362
2396
|
|
|
2363
|
-
declare const Topbar: React$1.FC<Props$
|
|
2364
|
-
interface Props$
|
|
2397
|
+
declare const Topbar: React$1.FC<Props$1D>;
|
|
2398
|
+
interface Props$1D {
|
|
2365
2399
|
/**
|
|
2366
2400
|
* Main content of the component.
|
|
2367
2401
|
*/
|
|
@@ -3398,8 +3432,8 @@ declare namespace validators_d {
|
|
|
3398
3432
|
};
|
|
3399
3433
|
}
|
|
3400
3434
|
|
|
3401
|
-
declare const ViewDialog: React$1.FC<Props$
|
|
3402
|
-
interface Props$
|
|
3435
|
+
declare const ViewDialog: React$1.FC<Props$1C>;
|
|
3436
|
+
interface Props$1C {
|
|
3403
3437
|
/**
|
|
3404
3438
|
* Main content of the component.
|
|
3405
3439
|
*/
|
|
@@ -3462,8 +3496,8 @@ interface Props$1B {
|
|
|
3462
3496
|
label?: string;
|
|
3463
3497
|
}
|
|
3464
3498
|
|
|
3465
|
-
declare const UIProvider: React$1.FC<Props$
|
|
3466
|
-
interface Props$
|
|
3499
|
+
declare const UIProvider: React$1.FC<Props$1B>;
|
|
3500
|
+
interface Props$1B {
|
|
3467
3501
|
/**
|
|
3468
3502
|
* Main content.
|
|
3469
3503
|
*/
|
|
@@ -3491,7 +3525,7 @@ interface Props$1A {
|
|
|
3491
3525
|
/**
|
|
3492
3526
|
* Dialog mode options.
|
|
3493
3527
|
*/
|
|
3494
|
-
dialog?: Omit<Props$
|
|
3528
|
+
dialog?: Omit<Props$1C, 'children'>;
|
|
3495
3529
|
/**
|
|
3496
3530
|
* Name of selected theme.
|
|
3497
3531
|
*/
|
|
@@ -3502,16 +3536,16 @@ interface Props$1A {
|
|
|
3502
3536
|
label?: string;
|
|
3503
3537
|
}
|
|
3504
3538
|
|
|
3505
|
-
declare const View: React$1.FC<Props$
|
|
3506
|
-
interface Props$
|
|
3539
|
+
declare const View: React$1.FC<Props$1A>;
|
|
3540
|
+
interface Props$1A {
|
|
3507
3541
|
/**
|
|
3508
3542
|
* Sets component's children.
|
|
3509
3543
|
*/
|
|
3510
3544
|
children?: React$1.ReactNode;
|
|
3511
3545
|
}
|
|
3512
3546
|
|
|
3513
|
-
declare const ViewContent: React$1.ForwardRefExoticComponent<Props$
|
|
3514
|
-
interface Props$
|
|
3547
|
+
declare const ViewContent: React$1.ForwardRefExoticComponent<Props$1z & React$1.RefAttributes<HTMLDivElement>>;
|
|
3548
|
+
interface Props$1z {
|
|
3515
3549
|
/**
|
|
3516
3550
|
* Sets component's children.
|
|
3517
3551
|
*/
|
|
@@ -3534,48 +3568,48 @@ interface Props$1y {
|
|
|
3534
3568
|
onKeyDown?: React$1.KeyboardEventHandler;
|
|
3535
3569
|
}
|
|
3536
3570
|
|
|
3537
|
-
declare const ViewContentBar: React$1.FC<Props$
|
|
3538
|
-
interface Props$
|
|
3571
|
+
declare const ViewContentBar: React$1.FC<Props$1y>;
|
|
3572
|
+
interface Props$1y {
|
|
3539
3573
|
/**
|
|
3540
3574
|
* Sets component's children.
|
|
3541
3575
|
*/
|
|
3542
3576
|
children?: React$1.ReactNode;
|
|
3543
3577
|
}
|
|
3544
3578
|
|
|
3545
|
-
declare const ViewFooter: React$1.FC<Props$
|
|
3546
|
-
interface Props$
|
|
3579
|
+
declare const ViewFooter: React$1.FC<Props$1x>;
|
|
3580
|
+
interface Props$1x {
|
|
3547
3581
|
/**
|
|
3548
3582
|
* Sets component's children.
|
|
3549
3583
|
*/
|
|
3550
3584
|
children?: React$1.ReactNode;
|
|
3551
3585
|
}
|
|
3552
3586
|
|
|
3553
|
-
declare const ViewHeader: React$1.FC<Props$
|
|
3554
|
-
interface Props$
|
|
3587
|
+
declare const ViewHeader: React$1.FC<Props$1w>;
|
|
3588
|
+
interface Props$1w {
|
|
3555
3589
|
/**
|
|
3556
3590
|
* Sets component's children.
|
|
3557
3591
|
*/
|
|
3558
3592
|
children?: React$1.ReactNode;
|
|
3559
3593
|
}
|
|
3560
3594
|
|
|
3561
|
-
declare const ViewSideContent: React$1.FC<Props$
|
|
3562
|
-
interface Props$
|
|
3595
|
+
declare const ViewSideContent: React$1.FC<Props$1v>;
|
|
3596
|
+
interface Props$1v {
|
|
3563
3597
|
/**
|
|
3564
3598
|
* Sets component's children.
|
|
3565
3599
|
*/
|
|
3566
3600
|
children?: React$1.ReactNode;
|
|
3567
3601
|
}
|
|
3568
3602
|
|
|
3569
|
-
declare const ViewContentWrapper: React$1.FC<Props$
|
|
3570
|
-
interface Props$
|
|
3603
|
+
declare const ViewContentWrapper: React$1.FC<Props$1u>;
|
|
3604
|
+
interface Props$1u {
|
|
3571
3605
|
/**
|
|
3572
3606
|
* Sets component's children.
|
|
3573
3607
|
*/
|
|
3574
3608
|
children?: React$1.ReactNode;
|
|
3575
3609
|
}
|
|
3576
3610
|
|
|
3577
|
-
declare const ViewWrapper: React$1.FC<Props$
|
|
3578
|
-
interface Props$
|
|
3611
|
+
declare const ViewWrapper: React$1.FC<Props$1t>;
|
|
3612
|
+
interface Props$1t {
|
|
3579
3613
|
/**
|
|
3580
3614
|
* Main content of the component.
|
|
3581
3615
|
*/
|
|
@@ -3586,8 +3620,8 @@ interface Props$1s {
|
|
|
3586
3620
|
navbar?: React$1.ReactNode;
|
|
3587
3621
|
}
|
|
3588
3622
|
|
|
3589
|
-
declare const RangeSlider: React$1.FC<Props$
|
|
3590
|
-
type Props$
|
|
3623
|
+
declare const RangeSlider: React$1.FC<Props$1s>;
|
|
3624
|
+
type Props$1s = {
|
|
3591
3625
|
/**
|
|
3592
3626
|
* Slider value.
|
|
3593
3627
|
*/
|
|
@@ -3620,8 +3654,8 @@ type Props$1r = {
|
|
|
3620
3654
|
showLabels?: boolean;
|
|
3621
3655
|
};
|
|
3622
3656
|
|
|
3623
|
-
declare const FormFeedback: React$1.FC<Props$
|
|
3624
|
-
type Props$
|
|
3657
|
+
declare const FormFeedback: React$1.FC<Props$1r>;
|
|
3658
|
+
type Props$1r = {
|
|
3625
3659
|
/**
|
|
3626
3660
|
* Main content of the component.
|
|
3627
3661
|
*/
|
|
@@ -3636,8 +3670,8 @@ type Props$1q = {
|
|
|
3636
3670
|
warning?: boolean;
|
|
3637
3671
|
};
|
|
3638
3672
|
|
|
3639
|
-
declare const FormGroup: React$1.FC<Props$
|
|
3640
|
-
interface Props$
|
|
3673
|
+
declare const FormGroup: React$1.FC<Props$1q>;
|
|
3674
|
+
interface Props$1q {
|
|
3641
3675
|
/**
|
|
3642
3676
|
* Main content of the component.
|
|
3643
3677
|
*/
|
|
@@ -3648,24 +3682,24 @@ interface Props$1p {
|
|
|
3648
3682
|
halfWidth?: boolean;
|
|
3649
3683
|
}
|
|
3650
3684
|
|
|
3651
|
-
declare const FormGroupColumn: React$1.FC<Props$
|
|
3652
|
-
interface Props$
|
|
3685
|
+
declare const FormGroupColumn: React$1.FC<Props$1p>;
|
|
3686
|
+
interface Props$1p {
|
|
3653
3687
|
/**
|
|
3654
3688
|
* Main content of the component.
|
|
3655
3689
|
*/
|
|
3656
3690
|
children: React$1.ReactNode;
|
|
3657
3691
|
}
|
|
3658
3692
|
|
|
3659
|
-
declare const FormGroupInfo: React$1.FC<Props$
|
|
3660
|
-
interface Props$
|
|
3693
|
+
declare const FormGroupInfo: React$1.FC<Props$1o>;
|
|
3694
|
+
interface Props$1o {
|
|
3661
3695
|
/**
|
|
3662
3696
|
* Main content of the component.
|
|
3663
3697
|
*/
|
|
3664
3698
|
children: React$1.ReactNode;
|
|
3665
3699
|
}
|
|
3666
3700
|
|
|
3667
|
-
declare const FormInputLabel: React$1.FC<Props$
|
|
3668
|
-
type Props$
|
|
3701
|
+
declare const FormInputLabel: React$1.FC<Props$1n>;
|
|
3702
|
+
type Props$1n = {
|
|
3669
3703
|
/**
|
|
3670
3704
|
* Main content of the component.
|
|
3671
3705
|
*/
|
|
@@ -3680,8 +3714,8 @@ type Props$1m = {
|
|
|
3680
3714
|
htmlFor: string;
|
|
3681
3715
|
};
|
|
3682
3716
|
|
|
3683
|
-
declare const Form: React$1.ForwardRefExoticComponent<Props$
|
|
3684
|
-
type Props$
|
|
3717
|
+
declare const Form: React$1.ForwardRefExoticComponent<Props$1m & React$1.RefAttributes<HTMLFormElement>>;
|
|
3718
|
+
type Props$1m = {
|
|
3685
3719
|
/**
|
|
3686
3720
|
* Main content of the component.
|
|
3687
3721
|
*/
|
|
@@ -3704,8 +3738,8 @@ type Props$1l = {
|
|
|
3704
3738
|
onSubmit: React$1.FormEventHandler<HTMLFormElement>;
|
|
3705
3739
|
};
|
|
3706
3740
|
|
|
3707
|
-
declare const EmptyViewLabel: React$1.FC<Props$
|
|
3708
|
-
interface Props$
|
|
3741
|
+
declare const EmptyViewLabel: React$1.FC<Props$1l>;
|
|
3742
|
+
interface Props$1l {
|
|
3709
3743
|
/**
|
|
3710
3744
|
* Main content of the component.
|
|
3711
3745
|
*/
|
|
@@ -3716,8 +3750,8 @@ interface Props$1k {
|
|
|
3716
3750
|
muted?: boolean;
|
|
3717
3751
|
}
|
|
3718
3752
|
|
|
3719
|
-
declare const EmptyView: React$1.ForwardRefExoticComponent<Props$
|
|
3720
|
-
interface Props$
|
|
3753
|
+
declare const EmptyView: React$1.ForwardRefExoticComponent<Props$1k & React$1.RefAttributes<HTMLDivElement>>;
|
|
3754
|
+
interface Props$1k {
|
|
3721
3755
|
/**
|
|
3722
3756
|
* Adds active styling.
|
|
3723
3757
|
*/
|
|
@@ -3740,8 +3774,8 @@ interface Props$1j {
|
|
|
3740
3774
|
type?: 'dropzone' | 'default';
|
|
3741
3775
|
}
|
|
3742
3776
|
|
|
3743
|
-
declare const Ellipsis: React$1.FC<Props$
|
|
3744
|
-
interface Props$
|
|
3777
|
+
declare const Ellipsis: React$1.FC<Props$1j>;
|
|
3778
|
+
interface Props$1j {
|
|
3745
3779
|
/**
|
|
3746
3780
|
* Items to display.
|
|
3747
3781
|
*/
|
|
@@ -3752,8 +3786,8 @@ interface Props$1i {
|
|
|
3752
3786
|
maxVisibleItems?: number;
|
|
3753
3787
|
}
|
|
3754
3788
|
|
|
3755
|
-
declare const FilePreviewActions: React$1.FC<Props$
|
|
3756
|
-
interface Props$
|
|
3789
|
+
declare const FilePreviewActions: React$1.FC<Props$1i>;
|
|
3790
|
+
interface Props$1i {
|
|
3757
3791
|
/**
|
|
3758
3792
|
* Label of the back button.
|
|
3759
3793
|
*/
|
|
@@ -3768,33 +3802,33 @@ interface Props$1h {
|
|
|
3768
3802
|
title: string;
|
|
3769
3803
|
}
|
|
3770
3804
|
|
|
3771
|
-
declare const FilePreviewColumn: React$1.FC<Props$
|
|
3772
|
-
interface Props$
|
|
3805
|
+
declare const FilePreviewColumn: React$1.FC<Props$1h>;
|
|
3806
|
+
interface Props$1h {
|
|
3773
3807
|
/**
|
|
3774
3808
|
* Main content of the component.
|
|
3775
3809
|
*/
|
|
3776
3810
|
children: React$1.ReactNode;
|
|
3777
3811
|
}
|
|
3778
3812
|
|
|
3779
|
-
declare const FilePreviewContent: React$1.ForwardRefExoticComponent<Props$
|
|
3780
|
-
interface Props$
|
|
3813
|
+
declare const FilePreviewContent: React$1.ForwardRefExoticComponent<Props$1g & React$1.RefAttributes<HTMLDivElement>>;
|
|
3814
|
+
interface Props$1g {
|
|
3781
3815
|
/**
|
|
3782
3816
|
* Main content of the component.
|
|
3783
3817
|
*/
|
|
3784
3818
|
children: React$1.ReactNode;
|
|
3785
3819
|
}
|
|
3786
3820
|
|
|
3787
|
-
declare const FilePreviewHoverable: React$1.ForwardRefExoticComponent<Props$
|
|
3788
|
-
interface Props$
|
|
3821
|
+
declare const FilePreviewHoverable: React$1.ForwardRefExoticComponent<Props$1f & React$1.RefAttributes<HTMLDivElement>>;
|
|
3822
|
+
interface Props$1f {
|
|
3789
3823
|
/**
|
|
3790
3824
|
* Main content of the component.
|
|
3791
3825
|
*/
|
|
3792
3826
|
children: React$1.ReactNode;
|
|
3793
3827
|
}
|
|
3794
3828
|
|
|
3795
|
-
declare const FilePreviewNavButton: React$1.FC<Props$
|
|
3829
|
+
declare const FilePreviewNavButton: React$1.FC<Props$1e>;
|
|
3796
3830
|
type Side = 'left' | 'right';
|
|
3797
|
-
interface Props$
|
|
3831
|
+
interface Props$1e {
|
|
3798
3832
|
/**
|
|
3799
3833
|
* Disables button.
|
|
3800
3834
|
*/
|
|
@@ -3817,16 +3851,16 @@ interface Props$1d {
|
|
|
3817
3851
|
tooltipPlacement?: PopperPlacement;
|
|
3818
3852
|
}
|
|
3819
3853
|
|
|
3820
|
-
declare const FilePreviewTooltip: React$1.FC<Props$
|
|
3821
|
-
interface Props$
|
|
3854
|
+
declare const FilePreviewTooltip: React$1.FC<Props$1d>;
|
|
3855
|
+
interface Props$1d {
|
|
3822
3856
|
/**
|
|
3823
3857
|
* Main content of the tooltip.
|
|
3824
3858
|
*/
|
|
3825
3859
|
children?: React$1.ReactNode;
|
|
3826
3860
|
}
|
|
3827
3861
|
|
|
3828
|
-
declare const FilePreview: React$1.ForwardRefExoticComponent<Props$
|
|
3829
|
-
interface Props$
|
|
3862
|
+
declare const FilePreview: React$1.ForwardRefExoticComponent<Props$1c & React$1.RefAttributes<HTMLDivElement>>;
|
|
3863
|
+
interface Props$1c {
|
|
3830
3864
|
/**
|
|
3831
3865
|
* Main content of the component.
|
|
3832
3866
|
*/
|
|
@@ -3876,8 +3910,8 @@ interface SelectionAreaCoords {
|
|
|
3876
3910
|
height: number;
|
|
3877
3911
|
}
|
|
3878
3912
|
|
|
3879
|
-
declare const SelectionArea: React$1.FC<Props$
|
|
3880
|
-
interface Props$
|
|
3913
|
+
declare const SelectionArea: React$1.FC<Props$1b>;
|
|
3914
|
+
interface Props$1b {
|
|
3881
3915
|
/**
|
|
3882
3916
|
* Selection area container.
|
|
3883
3917
|
*/
|
|
@@ -3961,8 +3995,8 @@ type SelectToggleHandler = (opt: SelectOption) => void;
|
|
|
3961
3995
|
*/
|
|
3962
3996
|
type SelectKeyboardNextIdGetter = (options: SelectOption[], currentIndex: number) => SelectOption | undefined;
|
|
3963
3997
|
|
|
3964
|
-
declare const Select: React$1.FC<Props$
|
|
3965
|
-
interface Props$
|
|
3998
|
+
declare const Select: React$1.FC<Props$1a>;
|
|
3999
|
+
interface Props$1a {
|
|
3966
4000
|
/**
|
|
3967
4001
|
* Aria label for clear button.
|
|
3968
4002
|
*/
|
|
@@ -4021,8 +4055,8 @@ interface Props$19 {
|
|
|
4021
4055
|
size?: 'base' | 'small' | 'medium';
|
|
4022
4056
|
}
|
|
4023
4057
|
|
|
4024
|
-
declare const Notifications: React$1.FC<Props$
|
|
4025
|
-
interface Props$
|
|
4058
|
+
declare const Notifications: React$1.FC<Props$19>;
|
|
4059
|
+
interface Props$19 {
|
|
4026
4060
|
/**
|
|
4027
4061
|
* Container's position will be adjusted in accordance with provided element's height.
|
|
4028
4062
|
*/
|
|
@@ -4035,11 +4069,11 @@ interface Props$18 {
|
|
|
4035
4069
|
|
|
4036
4070
|
type NotificationType = 'success' | 'error' | 'warning';
|
|
4037
4071
|
|
|
4038
|
-
declare const Notification: React$1.FC<Props$
|
|
4072
|
+
declare const Notification: React$1.FC<Props$18>;
|
|
4039
4073
|
/**
|
|
4040
4074
|
* `Notification` component is rendered as part of `TransitionGroup` and therefore gets transition props in addition to its regular props.
|
|
4041
4075
|
*/
|
|
4042
|
-
type Props$
|
|
4076
|
+
type Props$18 = Partial<TransitionProps> & {
|
|
4043
4077
|
/**
|
|
4044
4078
|
* Main content of the component.
|
|
4045
4079
|
*/
|
|
@@ -4066,8 +4100,8 @@ type Props$17 = Partial<TransitionProps> & {
|
|
|
4066
4100
|
type: NotificationType;
|
|
4067
4101
|
};
|
|
4068
4102
|
|
|
4069
|
-
declare const CopyableInput: React$1.FC<Props$
|
|
4070
|
-
interface Props$
|
|
4103
|
+
declare const CopyableInput: React$1.FC<Props$17>;
|
|
4104
|
+
interface Props$17 {
|
|
4071
4105
|
/**
|
|
4072
4106
|
* Unique input's id.
|
|
4073
4107
|
*/
|
|
@@ -4090,8 +4124,8 @@ interface Props$16 {
|
|
|
4090
4124
|
labelCopied: string;
|
|
4091
4125
|
}
|
|
4092
4126
|
|
|
4093
|
-
declare const CopyableLabel: React$1.FC<Props$
|
|
4094
|
-
interface Props$
|
|
4127
|
+
declare const CopyableLabel: React$1.FC<Props$16>;
|
|
4128
|
+
interface Props$16 {
|
|
4095
4129
|
/**
|
|
4096
4130
|
* Label's text. This text will be copied to clipboard upon clicking on the label.
|
|
4097
4131
|
*/
|
|
@@ -4110,8 +4144,8 @@ interface Props$15 {
|
|
|
4110
4144
|
labelCopied: string;
|
|
4111
4145
|
}
|
|
4112
4146
|
|
|
4113
|
-
declare const CopyButton: React$1.FC<Props$
|
|
4114
|
-
interface Props$
|
|
4147
|
+
declare const CopyButton: React$1.FC<Props$15>;
|
|
4148
|
+
interface Props$15 {
|
|
4115
4149
|
/**
|
|
4116
4150
|
* Value to be copied to clipboard.
|
|
4117
4151
|
*/
|
|
@@ -4180,8 +4214,8 @@ interface ContainerQueryContext {
|
|
|
4180
4214
|
declare const ContainerQueryContext: React$1.Context<ContainerQueryContext>;
|
|
4181
4215
|
declare const useContainerQuery: () => ContainerQueryContext;
|
|
4182
4216
|
|
|
4183
|
-
declare const ContainerQueryProvider: React$1.FC<Props$
|
|
4184
|
-
interface Props$
|
|
4217
|
+
declare const ContainerQueryProvider: React$1.FC<Props$14>;
|
|
4218
|
+
interface Props$14 {
|
|
4185
4219
|
/**
|
|
4186
4220
|
* Maps breakpoint keys to width values. Each key corresponds to minimum value (in px).
|
|
4187
4221
|
*/
|
|
@@ -4196,8 +4230,8 @@ interface Props$13 {
|
|
|
4196
4230
|
containerEl?: HTMLElement | null;
|
|
4197
4231
|
}
|
|
4198
4232
|
|
|
4199
|
-
declare const ContainerQuery: React$1.FC<Props$
|
|
4200
|
-
interface Props$
|
|
4233
|
+
declare const ContainerQuery: React$1.FC<Props$13>;
|
|
4234
|
+
interface Props$13 {
|
|
4201
4235
|
/**
|
|
4202
4236
|
* Main content of the component.
|
|
4203
4237
|
*/
|
|
@@ -4221,8 +4255,8 @@ interface FixedContext {
|
|
|
4221
4255
|
declare const FixedContext: React$1.Context<FixedContext>;
|
|
4222
4256
|
declare const useFixedCtx: () => FixedContext;
|
|
4223
4257
|
|
|
4224
|
-
declare const FixedProvider: React$1.FC<Props$
|
|
4225
|
-
interface Props$
|
|
4258
|
+
declare const FixedProvider: React$1.FC<Props$12>;
|
|
4259
|
+
interface Props$12 {
|
|
4226
4260
|
/**
|
|
4227
4261
|
* Main content of the component.
|
|
4228
4262
|
*/
|
|
@@ -4234,16 +4268,16 @@ interface Props$11 {
|
|
|
4234
4268
|
rootEl?: HTMLElement | null;
|
|
4235
4269
|
}
|
|
4236
4270
|
|
|
4237
|
-
declare const Fixed: React$1.FC<Props$
|
|
4238
|
-
interface Props$
|
|
4271
|
+
declare const Fixed: React$1.FC<Props$11>;
|
|
4272
|
+
interface Props$11 {
|
|
4239
4273
|
/**
|
|
4240
4274
|
* Main content of the component.
|
|
4241
4275
|
*/
|
|
4242
4276
|
children: React$1.ReactNode;
|
|
4243
4277
|
}
|
|
4244
4278
|
|
|
4245
|
-
declare const LoadingButton: React$1.ForwardRefExoticComponent<Props
|
|
4246
|
-
interface Props
|
|
4279
|
+
declare const LoadingButton: React$1.ForwardRefExoticComponent<Props$10 & React$1.RefAttributes<HTMLButtonElement>>;
|
|
4280
|
+
interface Props$10 extends Props$2X {
|
|
4247
4281
|
/**
|
|
4248
4282
|
* Delays loader appearance. Defaults to `true`.
|
|
4249
4283
|
*/
|
|
@@ -4258,8 +4292,8 @@ interface Props$$ extends Props$2W {
|
|
|
4258
4292
|
loaderPosition?: 'left' | 'center' | 'right';
|
|
4259
4293
|
}
|
|
4260
4294
|
|
|
4261
|
-
declare const ListItem: React$1.FC<Props
|
|
4262
|
-
interface Props
|
|
4295
|
+
declare const ListItem: React$1.FC<Props$$>;
|
|
4296
|
+
interface Props$$ {
|
|
4263
4297
|
/**
|
|
4264
4298
|
* Main content of the component.
|
|
4265
4299
|
*/
|
|
@@ -4270,16 +4304,16 @@ interface Props$_ {
|
|
|
4270
4304
|
onClick?: () => void;
|
|
4271
4305
|
}
|
|
4272
4306
|
|
|
4273
|
-
declare const ListItemActions: React$1.FC<Props$
|
|
4274
|
-
interface Props$
|
|
4307
|
+
declare const ListItemActions: React$1.FC<Props$_>;
|
|
4308
|
+
interface Props$_ {
|
|
4275
4309
|
/**
|
|
4276
4310
|
* Main content of the component.
|
|
4277
4311
|
*/
|
|
4278
4312
|
children: React$1.ReactNode;
|
|
4279
4313
|
}
|
|
4280
4314
|
|
|
4281
|
-
declare const ListItemContent: React$1.FC<Props$
|
|
4282
|
-
interface Props$
|
|
4315
|
+
declare const ListItemContent: React$1.FC<Props$Z>;
|
|
4316
|
+
interface Props$Z {
|
|
4283
4317
|
/**
|
|
4284
4318
|
* Main content of the component.
|
|
4285
4319
|
*/
|
|
@@ -4290,8 +4324,8 @@ interface Props$Y {
|
|
|
4290
4324
|
muted?: boolean;
|
|
4291
4325
|
}
|
|
4292
4326
|
|
|
4293
|
-
declare const List: React$1.FC<Props$
|
|
4294
|
-
interface Props$
|
|
4327
|
+
declare const List: React$1.FC<Props$Y>;
|
|
4328
|
+
interface Props$Y {
|
|
4295
4329
|
/**
|
|
4296
4330
|
* Main content of the component.
|
|
4297
4331
|
*/
|
|
@@ -4302,32 +4336,32 @@ interface Props$X {
|
|
|
4302
4336
|
className?: string;
|
|
4303
4337
|
}
|
|
4304
4338
|
|
|
4305
|
-
declare const SearchDialogActions: React$1.FC<Props$
|
|
4306
|
-
interface Props$
|
|
4339
|
+
declare const SearchDialogActions: React$1.FC<Props$X>;
|
|
4340
|
+
interface Props$X {
|
|
4307
4341
|
/**
|
|
4308
4342
|
* Main content of the component.
|
|
4309
4343
|
*/
|
|
4310
4344
|
children: React$1.ReactNode;
|
|
4311
4345
|
}
|
|
4312
4346
|
|
|
4313
|
-
declare const SearchDialogContent: React$1.FC<Props$
|
|
4314
|
-
interface Props$
|
|
4347
|
+
declare const SearchDialogContent: React$1.FC<Props$W>;
|
|
4348
|
+
interface Props$W {
|
|
4315
4349
|
/**
|
|
4316
4350
|
* Main content of the component.
|
|
4317
4351
|
*/
|
|
4318
4352
|
children: React$1.ReactNode;
|
|
4319
4353
|
}
|
|
4320
4354
|
|
|
4321
|
-
declare const SearchDialogFallback: React$1.FC<Props$
|
|
4322
|
-
interface Props$
|
|
4355
|
+
declare const SearchDialogFallback: React$1.FC<Props$V>;
|
|
4356
|
+
interface Props$V {
|
|
4323
4357
|
/**
|
|
4324
4358
|
* Main content of the component.
|
|
4325
4359
|
*/
|
|
4326
4360
|
children: React$1.ReactNode;
|
|
4327
4361
|
}
|
|
4328
4362
|
|
|
4329
|
-
declare const SearchDialogHeader: React$1.FC<Props$
|
|
4330
|
-
interface Props$
|
|
4363
|
+
declare const SearchDialogHeader: React$1.FC<Props$U>;
|
|
4364
|
+
interface Props$U {
|
|
4331
4365
|
/**
|
|
4332
4366
|
* Optional action rendered next to close button.
|
|
4333
4367
|
*/
|
|
@@ -4350,8 +4384,8 @@ interface Props$T {
|
|
|
4350
4384
|
onSubmit?: React$1.FormEventHandler;
|
|
4351
4385
|
}
|
|
4352
4386
|
|
|
4353
|
-
declare const SearchDialogInput: React$1.ForwardRefExoticComponent<Props$
|
|
4354
|
-
interface Props$
|
|
4387
|
+
declare const SearchDialogInput: React$1.ForwardRefExoticComponent<Props$T & React$1.RefAttributes<HTMLInputElement>>;
|
|
4388
|
+
interface Props$T {
|
|
4355
4389
|
/**
|
|
4356
4390
|
* Input's name to register.
|
|
4357
4391
|
*/
|
|
@@ -4378,8 +4412,8 @@ interface Props$S {
|
|
|
4378
4412
|
value?: string;
|
|
4379
4413
|
}
|
|
4380
4414
|
|
|
4381
|
-
declare const SearchDialogSection: React$1.FC<Props$
|
|
4382
|
-
interface Props$
|
|
4415
|
+
declare const SearchDialogSection: React$1.FC<Props$S>;
|
|
4416
|
+
interface Props$S {
|
|
4383
4417
|
/**
|
|
4384
4418
|
* Main content of the component.
|
|
4385
4419
|
*/
|
|
@@ -4394,8 +4428,8 @@ interface Props$R {
|
|
|
4394
4428
|
headerButtons?: React$1.ReactNode;
|
|
4395
4429
|
}
|
|
4396
4430
|
|
|
4397
|
-
declare const SearchDialog: React$1.FC<Props$
|
|
4398
|
-
interface Props$
|
|
4431
|
+
declare const SearchDialog: React$1.FC<Props$R>;
|
|
4432
|
+
interface Props$R {
|
|
4399
4433
|
/**
|
|
4400
4434
|
* Main content of the component.
|
|
4401
4435
|
*/
|
|
@@ -4414,24 +4448,24 @@ interface Props$Q {
|
|
|
4414
4448
|
open?: boolean;
|
|
4415
4449
|
}
|
|
4416
4450
|
|
|
4417
|
-
declare const DrawerActions: React$1.FC<Props$
|
|
4418
|
-
interface Props$
|
|
4451
|
+
declare const DrawerActions: React$1.FC<Props$Q>;
|
|
4452
|
+
interface Props$Q {
|
|
4419
4453
|
/**
|
|
4420
4454
|
* Main content of the component.
|
|
4421
4455
|
*/
|
|
4422
4456
|
children: React$1.ReactNode;
|
|
4423
4457
|
}
|
|
4424
4458
|
|
|
4425
|
-
declare const DrawerContent: React$1.FC<Props$
|
|
4426
|
-
interface Props$
|
|
4459
|
+
declare const DrawerContent: React$1.FC<Props$P>;
|
|
4460
|
+
interface Props$P {
|
|
4427
4461
|
/**
|
|
4428
4462
|
* Main content of the component.
|
|
4429
4463
|
*/
|
|
4430
4464
|
children: React$1.ReactNode;
|
|
4431
4465
|
}
|
|
4432
4466
|
|
|
4433
|
-
declare const DrawerHeader: React$1.FC<Props$
|
|
4434
|
-
interface Props$
|
|
4467
|
+
declare const DrawerHeader: React$1.FC<Props$O>;
|
|
4468
|
+
interface Props$O {
|
|
4435
4469
|
/**
|
|
4436
4470
|
* Text displayed as title in the bar.
|
|
4437
4471
|
*/
|
|
@@ -4450,8 +4484,8 @@ interface Props$N {
|
|
|
4450
4484
|
iconRender?: IconRenderProp;
|
|
4451
4485
|
}
|
|
4452
4486
|
|
|
4453
|
-
declare const DrawerSection: React$1.ForwardRefExoticComponent<Props$
|
|
4454
|
-
interface Props$
|
|
4487
|
+
declare const DrawerSection: React$1.ForwardRefExoticComponent<Props$N & React$1.RefAttributes<HTMLDivElement>>;
|
|
4488
|
+
interface Props$N {
|
|
4455
4489
|
/**
|
|
4456
4490
|
* Main content of the component.
|
|
4457
4491
|
*/
|
|
@@ -4466,8 +4500,8 @@ interface Props$M {
|
|
|
4466
4500
|
centeredContent?: boolean;
|
|
4467
4501
|
}
|
|
4468
4502
|
|
|
4469
|
-
declare const Drawer: React$1.FC<Props$
|
|
4470
|
-
interface Props$
|
|
4503
|
+
declare const Drawer: React$1.FC<Props$M>;
|
|
4504
|
+
interface Props$M {
|
|
4471
4505
|
/**
|
|
4472
4506
|
* Main content of the component.
|
|
4473
4507
|
*/
|
|
@@ -4490,8 +4524,8 @@ interface Props$L {
|
|
|
4490
4524
|
fixed?: boolean;
|
|
4491
4525
|
}
|
|
4492
4526
|
|
|
4493
|
-
declare const SearchResultsBarPhrase: React$1.FC<Props$
|
|
4494
|
-
interface Props$
|
|
4527
|
+
declare const SearchResultsBarPhrase: React$1.FC<Props$L>;
|
|
4528
|
+
interface Props$L {
|
|
4495
4529
|
/**
|
|
4496
4530
|
* Sets the placeholder.
|
|
4497
4531
|
*/
|
|
@@ -4502,24 +4536,24 @@ interface Props$K {
|
|
|
4502
4536
|
count: number;
|
|
4503
4537
|
}
|
|
4504
4538
|
|
|
4505
|
-
declare const SearchResultsBarFilters: React$1.FC<Props$
|
|
4506
|
-
interface Props$
|
|
4539
|
+
declare const SearchResultsBarFilters: React$1.FC<Props$K>;
|
|
4540
|
+
interface Props$K {
|
|
4507
4541
|
/**
|
|
4508
4542
|
* Sets component's children.
|
|
4509
4543
|
*/
|
|
4510
4544
|
children: React$1.ReactNode;
|
|
4511
4545
|
}
|
|
4512
4546
|
|
|
4513
|
-
declare const SearchResultsBar: React$1.FC<Props$
|
|
4514
|
-
interface Props$
|
|
4547
|
+
declare const SearchResultsBar: React$1.FC<Props$J>;
|
|
4548
|
+
interface Props$J {
|
|
4515
4549
|
/**
|
|
4516
4550
|
* Sets component's children.
|
|
4517
4551
|
*/
|
|
4518
4552
|
children: React$1.ReactNode;
|
|
4519
4553
|
}
|
|
4520
4554
|
|
|
4521
|
-
declare const TextEllipsis: React$1.FC<Props$
|
|
4522
|
-
interface Props$
|
|
4555
|
+
declare const TextEllipsis: React$1.FC<Props$I>;
|
|
4556
|
+
interface Props$I {
|
|
4523
4557
|
/**
|
|
4524
4558
|
* Text content.
|
|
4525
4559
|
*/
|
|
@@ -4530,8 +4564,8 @@ interface Props$H {
|
|
|
4530
4564
|
noWrap?: boolean;
|
|
4531
4565
|
}
|
|
4532
4566
|
|
|
4533
|
-
declare const FileInput: React$1.ForwardRefExoticComponent<Props$
|
|
4534
|
-
interface Props$
|
|
4567
|
+
declare const FileInput: React$1.ForwardRefExoticComponent<Props$H & React$1.RefAttributes<HTMLInputElement>>;
|
|
4568
|
+
interface Props$H {
|
|
4535
4569
|
/**
|
|
4536
4570
|
* Specify comma-separated list of allowed file extensions.
|
|
4537
4571
|
*/
|
|
@@ -4550,24 +4584,24 @@ interface Props$G {
|
|
|
4550
4584
|
onChange?: React$1.ChangeEventHandler<HTMLInputElement>;
|
|
4551
4585
|
}
|
|
4552
4586
|
|
|
4553
|
-
declare const NavigationDialogContent: React$1.ForwardRefExoticComponent<Props$
|
|
4554
|
-
interface Props$
|
|
4587
|
+
declare const NavigationDialogContent: React$1.ForwardRefExoticComponent<Props$G & React$1.RefAttributes<HTMLDivElement>>;
|
|
4588
|
+
interface Props$G {
|
|
4555
4589
|
/**
|
|
4556
4590
|
* Main content of the component.
|
|
4557
4591
|
*/
|
|
4558
4592
|
children?: React$1.ReactNode;
|
|
4559
4593
|
}
|
|
4560
4594
|
|
|
4561
|
-
declare const NavigationDialogFallbackContent: React$1.ForwardRefExoticComponent<Props$
|
|
4562
|
-
interface Props$
|
|
4595
|
+
declare const NavigationDialogFallbackContent: React$1.ForwardRefExoticComponent<Props$F & React$1.RefAttributes<HTMLDivElement>>;
|
|
4596
|
+
interface Props$F {
|
|
4563
4597
|
/**
|
|
4564
4598
|
* Main content of the component.
|
|
4565
4599
|
*/
|
|
4566
4600
|
children?: React$1.ReactNode;
|
|
4567
4601
|
}
|
|
4568
4602
|
|
|
4569
|
-
declare const NavigationDialogFooter: React$1.ForwardRefExoticComponent<Props$
|
|
4570
|
-
interface Props$
|
|
4603
|
+
declare const NavigationDialogFooter: React$1.ForwardRefExoticComponent<Props$E & React$1.RefAttributes<HTMLDivElement>>;
|
|
4604
|
+
interface Props$E {
|
|
4571
4605
|
/**
|
|
4572
4606
|
* Main content of the component.
|
|
4573
4607
|
*/
|
|
@@ -4578,8 +4612,8 @@ interface Props$D {
|
|
|
4578
4612
|
className?: string;
|
|
4579
4613
|
}
|
|
4580
4614
|
|
|
4581
|
-
declare const NavigationDialogHeader: React$1.ForwardRefExoticComponent<Props$
|
|
4582
|
-
interface Props$
|
|
4615
|
+
declare const NavigationDialogHeader: React$1.ForwardRefExoticComponent<Props$D & React$1.RefAttributes<HTMLDivElement>>;
|
|
4616
|
+
interface Props$D {
|
|
4583
4617
|
/**
|
|
4584
4618
|
* Optional action component rendered next to title.
|
|
4585
4619
|
*/
|
|
@@ -4602,8 +4636,8 @@ interface Props$C {
|
|
|
4602
4636
|
titleId?: string;
|
|
4603
4637
|
}
|
|
4604
4638
|
|
|
4605
|
-
declare const NavigationDialogItem: React$1.ForwardRefExoticComponent<Props$
|
|
4606
|
-
interface Props$
|
|
4639
|
+
declare const NavigationDialogItem: React$1.ForwardRefExoticComponent<Props$C & React$1.RefAttributes<HTMLLIElement>>;
|
|
4640
|
+
interface Props$C {
|
|
4607
4641
|
/**
|
|
4608
4642
|
* Indicates if navbar item is active.
|
|
4609
4643
|
*/
|
|
@@ -4626,20 +4660,20 @@ interface Props$B {
|
|
|
4626
4660
|
onDoubleClick?: () => void;
|
|
4627
4661
|
}
|
|
4628
4662
|
|
|
4629
|
-
declare const NavigationDialogItemAction: React$1.FC<Props$
|
|
4630
|
-
interface Props$
|
|
4663
|
+
declare const NavigationDialogItemAction: React$1.FC<Props$B>;
|
|
4664
|
+
interface Props$B {
|
|
4631
4665
|
/**
|
|
4632
4666
|
* Optional button.
|
|
4633
4667
|
*/
|
|
4634
|
-
button?: React$1.ReactElement<Props$
|
|
4668
|
+
button?: React$1.ReactElement<Props$2X> | null;
|
|
4635
4669
|
/**
|
|
4636
4670
|
* Optional icon.
|
|
4637
4671
|
*/
|
|
4638
|
-
icon?: React$1.ReactElement<Props$
|
|
4672
|
+
icon?: React$1.ReactElement<Props$2Y> | ((props: Props$2Y) => React$1.ReactNode) | null;
|
|
4639
4673
|
}
|
|
4640
4674
|
|
|
4641
|
-
declare const NavigationDialogItemLabel: React$1.FC<Props$
|
|
4642
|
-
interface Props$
|
|
4675
|
+
declare const NavigationDialogItemLabel: React$1.FC<Props$A>;
|
|
4676
|
+
interface Props$A {
|
|
4643
4677
|
/**
|
|
4644
4678
|
* Main content of the component.
|
|
4645
4679
|
*/
|
|
@@ -4647,11 +4681,11 @@ interface Props$z {
|
|
|
4647
4681
|
/**
|
|
4648
4682
|
* Displayed icon.
|
|
4649
4683
|
*/
|
|
4650
|
-
icon?: React$1.ReactElement<Props$
|
|
4684
|
+
icon?: React$1.ReactElement<Props$2Y>;
|
|
4651
4685
|
}
|
|
4652
4686
|
|
|
4653
|
-
declare const NavigationDialog: React$1.ForwardRefExoticComponent<Props$
|
|
4654
|
-
interface Props$
|
|
4687
|
+
declare const NavigationDialog: React$1.ForwardRefExoticComponent<Props$z & React$1.RefAttributes<HTMLDivElement>>;
|
|
4688
|
+
interface Props$z {
|
|
4655
4689
|
/**
|
|
4656
4690
|
* Main content of the component.
|
|
4657
4691
|
*/
|
|
@@ -4678,8 +4712,8 @@ interface Props$y {
|
|
|
4678
4712
|
open?: boolean;
|
|
4679
4713
|
}
|
|
4680
4714
|
|
|
4681
|
-
declare const CheckboxLabel: React$1.ForwardRefExoticComponent<Props$
|
|
4682
|
-
interface Props$
|
|
4715
|
+
declare const CheckboxLabel: React$1.ForwardRefExoticComponent<Props$y & React$1.RefAttributes<HTMLLabelElement>>;
|
|
4716
|
+
interface Props$y {
|
|
4683
4717
|
/**
|
|
4684
4718
|
* Main content of the component.
|
|
4685
4719
|
*/
|
|
@@ -4690,8 +4724,8 @@ interface Props$x {
|
|
|
4690
4724
|
labelFor?: string;
|
|
4691
4725
|
}
|
|
4692
4726
|
|
|
4693
|
-
declare const Checkbox: React$1.FC<Props$
|
|
4694
|
-
interface Props$
|
|
4727
|
+
declare const Checkbox: React$1.FC<Props$x>;
|
|
4728
|
+
interface Props$x {
|
|
4695
4729
|
/**
|
|
4696
4730
|
* Optional content of the component.
|
|
4697
4731
|
*/
|
|
@@ -5012,8 +5046,8 @@ interface ImageEditorPreviewContext {
|
|
|
5012
5046
|
declare const ImageEditorPreviewContext: React$1.Context<ImageEditorPreviewContext>;
|
|
5013
5047
|
declare const useImageEditorPreviewContext: () => ImageEditorPreviewContext;
|
|
5014
5048
|
|
|
5015
|
-
declare const ImageEditorActions: React$1.FC<Props$
|
|
5016
|
-
interface Props$
|
|
5049
|
+
declare const ImageEditorActions: React$1.FC<Props$w>;
|
|
5050
|
+
interface Props$w {
|
|
5017
5051
|
/**
|
|
5018
5052
|
* Label of the back button.
|
|
5019
5053
|
*/
|
|
@@ -5028,42 +5062,42 @@ interface Props$v {
|
|
|
5028
5062
|
title?: string;
|
|
5029
5063
|
}
|
|
5030
5064
|
|
|
5031
|
-
declare const ImageEditorApplyButton: React$1.ForwardRefExoticComponent<Omit<Props$
|
|
5065
|
+
declare const ImageEditorApplyButton: React$1.ForwardRefExoticComponent<Omit<Props$2X, "onClick"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
5032
5066
|
|
|
5033
|
-
declare const ImageEditorButtonsGroup: React$1.ForwardRefExoticComponent<Props$
|
|
5034
|
-
interface Props$
|
|
5067
|
+
declare const ImageEditorButtonsGroup: React$1.ForwardRefExoticComponent<Props$v & React$1.RefAttributes<HTMLDivElement>>;
|
|
5068
|
+
interface Props$v {
|
|
5035
5069
|
/**
|
|
5036
5070
|
* Main content of the component.
|
|
5037
5071
|
*/
|
|
5038
5072
|
children?: React$1.ReactNode;
|
|
5039
5073
|
}
|
|
5040
5074
|
|
|
5041
|
-
declare const ImageEditorButtonsRow: React$1.ForwardRefExoticComponent<Props$
|
|
5042
|
-
interface Props$
|
|
5075
|
+
declare const ImageEditorButtonsRow: React$1.ForwardRefExoticComponent<Props$u & React$1.RefAttributes<HTMLDivElement>>;
|
|
5076
|
+
interface Props$u {
|
|
5043
5077
|
/**
|
|
5044
5078
|
* Main content of the component.
|
|
5045
5079
|
*/
|
|
5046
5080
|
children?: React$1.ReactNode;
|
|
5047
5081
|
}
|
|
5048
5082
|
|
|
5049
|
-
declare const ImageEditorCanvas: React$1.ForwardRefExoticComponent<Props$
|
|
5050
|
-
interface Props$
|
|
5083
|
+
declare const ImageEditorCanvas: React$1.ForwardRefExoticComponent<Props$t & React$1.RefAttributes<HTMLDivElement>>;
|
|
5084
|
+
interface Props$t {
|
|
5051
5085
|
/**
|
|
5052
5086
|
* Alternative text description of the image.
|
|
5053
5087
|
*/
|
|
5054
5088
|
alt: string;
|
|
5055
5089
|
}
|
|
5056
5090
|
|
|
5057
|
-
declare const ImageEditorContent: React$1.ForwardRefExoticComponent<Props$
|
|
5058
|
-
interface Props$
|
|
5091
|
+
declare const ImageEditorContent: React$1.ForwardRefExoticComponent<Props$s & React$1.RefAttributes<HTMLDivElement>>;
|
|
5092
|
+
interface Props$s {
|
|
5059
5093
|
/**
|
|
5060
5094
|
* Main content of the component.
|
|
5061
5095
|
*/
|
|
5062
5096
|
children?: React$1.ReactNode;
|
|
5063
5097
|
}
|
|
5064
5098
|
|
|
5065
|
-
declare const ImageEditorCropBoxDimensions: React$1.ForwardRefExoticComponent<Props$
|
|
5066
|
-
interface Props$
|
|
5099
|
+
declare const ImageEditorCropBoxDimensions: React$1.ForwardRefExoticComponent<Props$r & React$1.RefAttributes<HTMLDivElement>>;
|
|
5100
|
+
interface Props$r {
|
|
5067
5101
|
/**
|
|
5068
5102
|
* Label displayed above the height input.
|
|
5069
5103
|
*/
|
|
@@ -5082,8 +5116,8 @@ interface Props$q {
|
|
|
5082
5116
|
widthLabel?: string;
|
|
5083
5117
|
}
|
|
5084
5118
|
|
|
5085
|
-
declare const ImageEditorCropCard: React$1.ForwardRefExoticComponent<Props$
|
|
5086
|
-
interface Props$
|
|
5119
|
+
declare const ImageEditorCropCard: React$1.ForwardRefExoticComponent<Props$q & React$1.RefAttributes<HTMLDivElement>>;
|
|
5120
|
+
interface Props$q {
|
|
5087
5121
|
/**
|
|
5088
5122
|
* Aspect ratio to set on the crop box.
|
|
5089
5123
|
*/
|
|
@@ -5099,11 +5133,11 @@ interface Props$p {
|
|
|
5099
5133
|
/**
|
|
5100
5134
|
* Icon to display.
|
|
5101
5135
|
*/
|
|
5102
|
-
icon?: React$1.ReactElement<Props$
|
|
5136
|
+
icon?: React$1.ReactElement<Props$2Y>;
|
|
5103
5137
|
}
|
|
5104
5138
|
|
|
5105
|
-
declare const ImageEditorCropCardFreeform: React$1.ForwardRefExoticComponent<Props$
|
|
5106
|
-
interface Props$
|
|
5139
|
+
declare const ImageEditorCropCardFreeform: React$1.ForwardRefExoticComponent<Props$p & React$1.RefAttributes<HTMLDivElement>>;
|
|
5140
|
+
interface Props$p {
|
|
5107
5141
|
/**
|
|
5108
5142
|
* Main content of the component.
|
|
5109
5143
|
*/
|
|
@@ -5111,19 +5145,19 @@ interface Props$o {
|
|
|
5111
5145
|
/**
|
|
5112
5146
|
* Icon to display
|
|
5113
5147
|
*/
|
|
5114
|
-
icon?: React$1.ReactElement<Props$
|
|
5148
|
+
icon?: React$1.ReactElement<Props$2Y>;
|
|
5115
5149
|
}
|
|
5116
5150
|
|
|
5117
|
-
declare const ImageEditorCropCardList: React$1.ForwardRefExoticComponent<Props$
|
|
5118
|
-
interface Props$
|
|
5151
|
+
declare const ImageEditorCropCardList: React$1.ForwardRefExoticComponent<Props$o & React$1.RefAttributes<HTMLDivElement>>;
|
|
5152
|
+
interface Props$o {
|
|
5119
5153
|
/**
|
|
5120
5154
|
* Main content of the component.
|
|
5121
5155
|
*/
|
|
5122
5156
|
children?: React$1.ReactNode;
|
|
5123
5157
|
}
|
|
5124
5158
|
|
|
5125
|
-
declare const ImageEditorCropCardOriginal: React$1.ForwardRefExoticComponent<Props$
|
|
5126
|
-
interface Props$
|
|
5159
|
+
declare const ImageEditorCropCardOriginal: React$1.ForwardRefExoticComponent<Props$n & React$1.RefAttributes<HTMLDivElement>>;
|
|
5160
|
+
interface Props$n {
|
|
5127
5161
|
/**
|
|
5128
5162
|
* Main content of the component.
|
|
5129
5163
|
*/
|
|
@@ -5131,23 +5165,23 @@ interface Props$m {
|
|
|
5131
5165
|
/**
|
|
5132
5166
|
* Icon to display
|
|
5133
5167
|
*/
|
|
5134
|
-
icon?: React$1.ReactElement<Props$
|
|
5168
|
+
icon?: React$1.ReactElement<Props$2Y>;
|
|
5135
5169
|
}
|
|
5136
5170
|
|
|
5137
|
-
declare const ImageEditorFlipHorizontalButton: React$1.FC<Omit<Props$
|
|
5171
|
+
declare const ImageEditorFlipHorizontalButton: React$1.FC<Omit<Props$2X, 'children' | 'onClick'>>;
|
|
5138
5172
|
|
|
5139
|
-
declare const ImageEditorFlipVerticalButton: React$1.FC<Omit<Props$
|
|
5173
|
+
declare const ImageEditorFlipVerticalButton: React$1.FC<Omit<Props$2X, 'children' | 'onClick'>>;
|
|
5140
5174
|
|
|
5141
|
-
declare const ImageEditorMenu: React$1.ForwardRefExoticComponent<Props$
|
|
5142
|
-
interface Props$
|
|
5175
|
+
declare const ImageEditorMenu: React$1.ForwardRefExoticComponent<Props$m & React$1.RefAttributes<HTMLDivElement>>;
|
|
5176
|
+
interface Props$m {
|
|
5143
5177
|
/**
|
|
5144
5178
|
* Main content of the component.
|
|
5145
5179
|
*/
|
|
5146
5180
|
children?: React$1.ReactNode;
|
|
5147
5181
|
}
|
|
5148
5182
|
|
|
5149
|
-
declare const ImageEditorMenuContainer: React$1.ForwardRefExoticComponent<Props$
|
|
5150
|
-
interface Props$
|
|
5183
|
+
declare const ImageEditorMenuContainer: React$1.ForwardRefExoticComponent<Props$l & React$1.RefAttributes<HTMLDivElement>>;
|
|
5184
|
+
interface Props$l {
|
|
5151
5185
|
/**
|
|
5152
5186
|
* Main content of the component.
|
|
5153
5187
|
*/
|
|
@@ -5162,8 +5196,8 @@ interface Props$k {
|
|
|
5162
5196
|
muted?: boolean;
|
|
5163
5197
|
}
|
|
5164
5198
|
|
|
5165
|
-
declare const ImageEditorMenuSection: React$1.ForwardRefExoticComponent<Props$
|
|
5166
|
-
interface Props$
|
|
5199
|
+
declare const ImageEditorMenuSection: React$1.ForwardRefExoticComponent<Props$k & React$1.RefAttributes<HTMLDivElement>>;
|
|
5200
|
+
interface Props$k {
|
|
5167
5201
|
/**
|
|
5168
5202
|
* Main content of the component.
|
|
5169
5203
|
*/
|
|
@@ -5174,8 +5208,8 @@ interface Props$j {
|
|
|
5174
5208
|
title?: string;
|
|
5175
5209
|
}
|
|
5176
5210
|
|
|
5177
|
-
declare const ImageEditorMenuSubSection: React$1.ForwardRefExoticComponent<Props$
|
|
5178
|
-
interface Props$
|
|
5211
|
+
declare const ImageEditorMenuSubSection: React$1.ForwardRefExoticComponent<Props$j & React$1.RefAttributes<HTMLDivElement>>;
|
|
5212
|
+
interface Props$j {
|
|
5179
5213
|
/**
|
|
5180
5214
|
* Main content of the component.
|
|
5181
5215
|
*/
|
|
@@ -5190,8 +5224,8 @@ interface Props$i {
|
|
|
5190
5224
|
title?: string;
|
|
5191
5225
|
}
|
|
5192
5226
|
|
|
5193
|
-
declare const ImageEditorPresetSelect: React$1.FC<Props$
|
|
5194
|
-
interface Props$
|
|
5227
|
+
declare const ImageEditorPresetSelect: React$1.FC<Props$i>;
|
|
5228
|
+
interface Props$i {
|
|
5195
5229
|
/**
|
|
5196
5230
|
* Aria label for clear button.
|
|
5197
5231
|
*/
|
|
@@ -5206,10 +5240,10 @@ interface Props$h {
|
|
|
5206
5240
|
placeholder?: string;
|
|
5207
5241
|
}
|
|
5208
5242
|
|
|
5209
|
-
declare const ImageEditorResetButton: React$1.ForwardRefExoticComponent<Omit<Props$
|
|
5243
|
+
declare const ImageEditorResetButton: React$1.ForwardRefExoticComponent<Omit<Props$2X, "onClick"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
5210
5244
|
|
|
5211
|
-
declare const ImageEditorResizeDimensions: React$1.ForwardRefExoticComponent<Props$
|
|
5212
|
-
interface Props$
|
|
5245
|
+
declare const ImageEditorResizeDimensions: React$1.ForwardRefExoticComponent<Props$h & React$1.RefAttributes<HTMLDivElement>>;
|
|
5246
|
+
interface Props$h {
|
|
5213
5247
|
/**
|
|
5214
5248
|
* Label displayed above the height input.
|
|
5215
5249
|
*/
|
|
@@ -5220,12 +5254,12 @@ interface Props$g {
|
|
|
5220
5254
|
widthLabel?: string;
|
|
5221
5255
|
}
|
|
5222
5256
|
|
|
5223
|
-
declare const ImageEditorRotateLeftButton: React$1.FC<Omit<Props$
|
|
5257
|
+
declare const ImageEditorRotateLeftButton: React$1.FC<Omit<Props$2X, 'children' | 'onClick'>>;
|
|
5224
5258
|
|
|
5225
|
-
declare const ImageEditorRotateRightButton: React$1.FC<Omit<Props$
|
|
5259
|
+
declare const ImageEditorRotateRightButton: React$1.FC<Omit<Props$2X, 'children' | 'onClick'>>;
|
|
5226
5260
|
|
|
5227
|
-
declare const ImageEditorSaveDialog: React$1.ForwardRefExoticComponent<Props$
|
|
5228
|
-
interface Props$
|
|
5261
|
+
declare const ImageEditorSaveDialog: React$1.ForwardRefExoticComponent<Props$g & React$1.RefAttributes<HTMLDivElement>>;
|
|
5262
|
+
interface Props$g {
|
|
5229
5263
|
/**
|
|
5230
5264
|
* Main content of the component.
|
|
5231
5265
|
*/
|
|
@@ -5236,16 +5270,16 @@ interface Props$f {
|
|
|
5236
5270
|
labelledBy?: string;
|
|
5237
5271
|
}
|
|
5238
5272
|
|
|
5239
|
-
declare const ImageEditorSaveDialogActions: React$1.ForwardRefExoticComponent<Props$
|
|
5240
|
-
interface Props$
|
|
5273
|
+
declare const ImageEditorSaveDialogActions: React$1.ForwardRefExoticComponent<Props$f & React$1.RefAttributes<HTMLDivElement>>;
|
|
5274
|
+
interface Props$f {
|
|
5241
5275
|
/**
|
|
5242
5276
|
* Main content of the component.
|
|
5243
5277
|
*/
|
|
5244
5278
|
children: React$1.ReactNode;
|
|
5245
5279
|
}
|
|
5246
5280
|
|
|
5247
|
-
declare const ImageEditorSaveDialogCanvas: React$1.ForwardRefExoticComponent<Props$
|
|
5248
|
-
interface Props$
|
|
5281
|
+
declare const ImageEditorSaveDialogCanvas: React$1.ForwardRefExoticComponent<Props$e & React$1.RefAttributes<HTMLDivElement>>;
|
|
5282
|
+
interface Props$e {
|
|
5249
5283
|
/**
|
|
5250
5284
|
* Main content of the component.
|
|
5251
5285
|
*/
|
|
@@ -5256,10 +5290,10 @@ interface Props$d {
|
|
|
5256
5290
|
title?: string;
|
|
5257
5291
|
}
|
|
5258
5292
|
|
|
5259
|
-
declare const ImageEditorPreviewCloseButton: React$1.ForwardRefExoticComponent<Omit<Props$
|
|
5293
|
+
declare const ImageEditorPreviewCloseButton: React$1.ForwardRefExoticComponent<Omit<Props$2X, "onClick"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
5260
5294
|
|
|
5261
|
-
declare const ImageEditorSaveDialogHeader: React$1.ForwardRefExoticComponent<Props$
|
|
5262
|
-
interface Props$
|
|
5295
|
+
declare const ImageEditorSaveDialogHeader: React$1.ForwardRefExoticComponent<Props$d & React$1.RefAttributes<HTMLDivElement>>;
|
|
5296
|
+
interface Props$d {
|
|
5263
5297
|
/**
|
|
5264
5298
|
* Main content of the component.
|
|
5265
5299
|
*/
|
|
@@ -5274,34 +5308,34 @@ interface Props$c {
|
|
|
5274
5308
|
titleId?: string;
|
|
5275
5309
|
}
|
|
5276
5310
|
|
|
5277
|
-
declare const ImageEditorSaveDialogImage: React$1.ForwardRefExoticComponent<Props$
|
|
5278
|
-
interface Props$
|
|
5311
|
+
declare const ImageEditorSaveDialogImage: React$1.ForwardRefExoticComponent<Props$c & React$1.RefAttributes<HTMLDivElement>>;
|
|
5312
|
+
interface Props$c {
|
|
5279
5313
|
/**
|
|
5280
5314
|
* Alternative text description of the preview image.
|
|
5281
5315
|
*/
|
|
5282
5316
|
alt: string;
|
|
5283
5317
|
}
|
|
5284
5318
|
|
|
5285
|
-
declare const ImageEditorSaveDialogInfo: React$1.ForwardRefExoticComponent<Props$
|
|
5286
|
-
interface Props$
|
|
5319
|
+
declare const ImageEditorSaveDialogInfo: React$1.ForwardRefExoticComponent<Props$b & React$1.RefAttributes<HTMLDivElement>>;
|
|
5320
|
+
interface Props$b {
|
|
5287
5321
|
/**
|
|
5288
5322
|
* Main content of the component.
|
|
5289
5323
|
*/
|
|
5290
5324
|
children?: React$1.ReactNode;
|
|
5291
5325
|
}
|
|
5292
5326
|
|
|
5293
|
-
declare const ImageEditorSaveDialogPreview: React$1.ForwardRefExoticComponent<Props$
|
|
5294
|
-
interface Props$
|
|
5327
|
+
declare const ImageEditorSaveDialogPreview: React$1.ForwardRefExoticComponent<Props$a & React$1.RefAttributes<HTMLDivElement>>;
|
|
5328
|
+
interface Props$a {
|
|
5295
5329
|
/**
|
|
5296
5330
|
* Main content of the component.
|
|
5297
5331
|
*/
|
|
5298
5332
|
children?: React$1.ReactNode;
|
|
5299
5333
|
}
|
|
5300
5334
|
|
|
5301
|
-
declare const ImageEditorSaveDialogSaveButton: React$1.ForwardRefExoticComponent<Props
|
|
5335
|
+
declare const ImageEditorSaveDialogSaveButton: React$1.ForwardRefExoticComponent<Props$10 & React$1.RefAttributes<HTMLButtonElement>>;
|
|
5302
5336
|
|
|
5303
|
-
declare const ImageEditorSaveDialogSection: React$1.ForwardRefExoticComponent<Props$
|
|
5304
|
-
interface Props$
|
|
5337
|
+
declare const ImageEditorSaveDialogSection: React$1.ForwardRefExoticComponent<Props$9 & React$1.RefAttributes<HTMLDivElement>>;
|
|
5338
|
+
interface Props$9 {
|
|
5305
5339
|
/**
|
|
5306
5340
|
* Main content of the component.
|
|
5307
5341
|
*/
|
|
@@ -5316,15 +5350,15 @@ interface Props$8 {
|
|
|
5316
5350
|
title?: string;
|
|
5317
5351
|
}
|
|
5318
5352
|
|
|
5319
|
-
declare const ImageEditorToolbar: React$1.ForwardRefExoticComponent<Props$
|
|
5320
|
-
interface Props$
|
|
5353
|
+
declare const ImageEditorToolbar: React$1.ForwardRefExoticComponent<Props$8 & React$1.RefAttributes<HTMLDivElement>>;
|
|
5354
|
+
interface Props$8 {
|
|
5321
5355
|
/**
|
|
5322
5356
|
* Main content of the component.
|
|
5323
5357
|
*/
|
|
5324
5358
|
children: React$1.ReactNode;
|
|
5325
5359
|
}
|
|
5326
5360
|
|
|
5327
|
-
interface Props$
|
|
5361
|
+
interface Props$7 {
|
|
5328
5362
|
/**
|
|
5329
5363
|
* Main button content.
|
|
5330
5364
|
*/
|
|
@@ -5339,46 +5373,46 @@ interface Props$6 {
|
|
|
5339
5373
|
onClick?: React$1.MouseEventHandler;
|
|
5340
5374
|
}
|
|
5341
5375
|
|
|
5342
|
-
declare const ImageEditorToolbarFlipHorizontalButton: React$1.FC<Omit<Props$
|
|
5376
|
+
declare const ImageEditorToolbarFlipHorizontalButton: React$1.FC<Omit<Props$7, 'children' | 'onClick'>>;
|
|
5343
5377
|
|
|
5344
|
-
declare const ImageEditorToolbarFlipVerticalButton: React$1.FC<Omit<Props$
|
|
5378
|
+
declare const ImageEditorToolbarFlipVerticalButton: React$1.FC<Omit<Props$7, 'children' | 'onClick'>>;
|
|
5345
5379
|
|
|
5346
5380
|
declare const ImageEditorToolbarImageSize: React$1.ForwardRefExoticComponent<React$1.RefAttributes<HTMLDivElement>>;
|
|
5347
5381
|
|
|
5348
|
-
declare const ImageEditorToolbarRotateLeftButton: React$1.FC<Omit<Props$
|
|
5382
|
+
declare const ImageEditorToolbarRotateLeftButton: React$1.FC<Omit<Props$7, 'children' | 'onClick'>>;
|
|
5349
5383
|
|
|
5350
|
-
declare const ImageEditorToolbarRotateRightButton: React$1.FC<Omit<Props$
|
|
5384
|
+
declare const ImageEditorToolbarRotateRightButton: React$1.FC<Omit<Props$7, 'children' | 'onClick'>>;
|
|
5351
5385
|
|
|
5352
|
-
declare const ImageEditorToolbarSection: React$1.ForwardRefExoticComponent<Props$
|
|
5353
|
-
interface Props$
|
|
5386
|
+
declare const ImageEditorToolbarSection: React$1.ForwardRefExoticComponent<Props$6 & React$1.RefAttributes<HTMLDivElement>>;
|
|
5387
|
+
interface Props$6 {
|
|
5354
5388
|
/**
|
|
5355
5389
|
* Main content of the component.
|
|
5356
5390
|
*/
|
|
5357
5391
|
children: React$1.ReactNode;
|
|
5358
5392
|
}
|
|
5359
5393
|
|
|
5360
|
-
declare const ImageEditorToolbarZoomInButton: React$1.FC<Omit<Props$
|
|
5394
|
+
declare const ImageEditorToolbarZoomInButton: React$1.FC<Omit<Props$7, 'children' | 'onClick'>>;
|
|
5361
5395
|
|
|
5362
|
-
declare const ImageEditorToolbarZoomOutButton: React$1.FC<Omit<Props$
|
|
5396
|
+
declare const ImageEditorToolbarZoomOutButton: React$1.FC<Omit<Props$7, 'children' | 'onClick'>>;
|
|
5363
5397
|
|
|
5364
|
-
declare const ImageEditorToolbarZoomValue: React$1.FC<Props$
|
|
5365
|
-
interface Props$
|
|
5398
|
+
declare const ImageEditorToolbarZoomValue: React$1.FC<Props$5>;
|
|
5399
|
+
interface Props$5 {
|
|
5366
5400
|
/**
|
|
5367
5401
|
* Optional aria-label for the button.
|
|
5368
5402
|
*/
|
|
5369
5403
|
label: string;
|
|
5370
5404
|
}
|
|
5371
5405
|
|
|
5372
|
-
declare const ImageEditorWorkspace: React$1.ForwardRefExoticComponent<Props$
|
|
5373
|
-
interface Props$
|
|
5406
|
+
declare const ImageEditorWorkspace: React$1.ForwardRefExoticComponent<Props$4 & React$1.RefAttributes<HTMLDivElement>>;
|
|
5407
|
+
interface Props$4 {
|
|
5374
5408
|
/**
|
|
5375
5409
|
* Main content of the component.
|
|
5376
5410
|
*/
|
|
5377
5411
|
children?: React$1.ReactNode;
|
|
5378
5412
|
}
|
|
5379
5413
|
|
|
5380
|
-
declare const ImageEditor: React$1.ForwardRefExoticComponent<Props$
|
|
5381
|
-
interface Props$
|
|
5414
|
+
declare const ImageEditor: React$1.ForwardRefExoticComponent<Props$3 & React$1.RefAttributes<HTMLDivElement>>;
|
|
5415
|
+
interface Props$3 {
|
|
5382
5416
|
/**
|
|
5383
5417
|
* Main content of the component.
|
|
5384
5418
|
*/
|
|
@@ -5405,8 +5439,8 @@ interface Props$2 {
|
|
|
5405
5439
|
originalImageSrc?: string;
|
|
5406
5440
|
}
|
|
5407
5441
|
|
|
5408
|
-
declare const Textarea: React$1.ForwardRefExoticComponent<Props$
|
|
5409
|
-
interface Props$
|
|
5442
|
+
declare const Textarea: React$1.ForwardRefExoticComponent<Props$2 & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
5443
|
+
interface Props$2 {
|
|
5410
5444
|
/**
|
|
5411
5445
|
* Input's class name.
|
|
5412
5446
|
*/
|
|
@@ -5475,8 +5509,8 @@ declare const TextFieldInput: React$1.ForwardRefExoticComponent<React$1.InputHTM
|
|
|
5475
5509
|
type TextFieldSize = 'md' | 'base';
|
|
5476
5510
|
type TextFieldVariant = 'outlined' | 'underlined';
|
|
5477
5511
|
|
|
5478
|
-
declare const TextField: React$1.ForwardRefExoticComponent<Props & React$1.RefAttributes<HTMLDivElement>>;
|
|
5479
|
-
interface Props {
|
|
5512
|
+
declare const TextField: React$1.ForwardRefExoticComponent<Props$1 & React$1.RefAttributes<HTMLDivElement>>;
|
|
5513
|
+
interface Props$1 {
|
|
5480
5514
|
/**
|
|
5481
5515
|
* Text field's adornment.
|
|
5482
5516
|
*/
|
|
@@ -5511,4 +5545,16 @@ interface Props {
|
|
|
5511
5545
|
variant?: TextFieldVariant;
|
|
5512
5546
|
}
|
|
5513
5547
|
|
|
5514
|
-
|
|
5548
|
+
declare const PdfViewer: React$1.FC<Props>;
|
|
5549
|
+
interface Props {
|
|
5550
|
+
/**
|
|
5551
|
+
* Location of data source.
|
|
5552
|
+
*/
|
|
5553
|
+
src: string;
|
|
5554
|
+
/**
|
|
5555
|
+
* Identifies content of the PDF.
|
|
5556
|
+
*/
|
|
5557
|
+
title: string;
|
|
5558
|
+
}
|
|
5559
|
+
|
|
5560
|
+
export { Bottombar, Button, ButtonColor, ButtonGroup, ButtonSize, ButtonType, 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, CropperDimensions, CropperLockedDimension, Dialog, DialogActions, DialogColumn, DialogFooter, DialogHeader, DialogNext, DialogNextCloseButton, DialogNextColumn, DialogNextContent, DialogNextFooter, DialogNextHeader, DialogNextSeparator, DialogNextTitle, DialogProgressHeader, DialogRow, DialogSection, Dimensions, DocIcon, DocIconName, DragDimensionsHandler, DragHandler, DraggableOptions, DraggableState, 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, IconColor, IconName, IconRenderProp, IconRenderer, IconSize, ImageEditor, ImageEditorActions, ImageEditorApplyButton, ImageEditorButtonsGroup, ImageEditorButtonsRow, ImageEditorCanvas, ImageEditorContent, ImageEditorContext, ImageEditorCropBoxDimensions, ImageEditorCropCard, ImageEditorCropCardFreeform, ImageEditorCropCardList, ImageEditorCropCardOriginal, ImageEditorEditingResult, ImageEditorFlipHorizontalButton, ImageEditorFlipVerticalButton, ImageEditorMenu, ImageEditorMenuContainer, ImageEditorMenuSection, ImageEditorMenuSubSection, ImageEditorPresetGroup, ImageEditorPresetOption, 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, KeyAction, KeyCombination, KeyEventLike, KeyModifier, KeyProps, List, ListDndChildProps, ListDndItem, ListDndItemHookProps, ListDndMoveItem, ListDndOnDragEnd, ListDndSetDraggable, ListDndSetDraggablePartial, 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, OnScrollHandler, Modal as Overlay, Pagination, Panel, PanelActions, PanelColumn, PanelContent, PanelContentProp, PanelDragHandle, PanelList, PanelListDivider, PanelSide, PanelSkeleton, PanelTitle, PdfViewer, Popper, PopperAnchorRef, PopperArrow, PopperContext, PopperOffset, PopperOffsetValue, PopperPlacement, ProgressPanel, PropertiesTable, PropertiesTableRow, Props$2Y as Props, RInterval, RangeSlider, ResizeOptions, ResponsiveImage, ResponsiveImageFallback, ResponsiveImageFit, ResponsiveImageScalable, ResponsiveImageSkeleton, ScrollCoordsConfig, ScrollOptions, SearchDialog, SearchDialogActions, SearchDialogContent, SearchDialogFallback, SearchDialogHeader, SearchDialogInput, SearchDialogSection, SearchResultsBar, SearchResultsBarFilters, SearchResultsBarPhrase, Select, SelectKeyboardNavProps, SelectKeyboardNextIdGetter, SelectOption, SelectRenderableOption, SelectSection, SelectToggleHandler, SelectionArea, SelectionAreaCoords, Skeleton, SortButton, SortableDndList, SortableDndListItem, Switch, SwitchInput, SwitchView, Tab, Tabs, Tag, TagInput, TagLabel, TagList, TextEllipsis, TextField, TextFieldInput, Textarea, Props$2 as TextareaProps, Tooltip, Topbar, TopbarAction, UIContext, UIProvider, Props$1B as UIProviderProps, View, ViewContent, ViewContentBar, ViewContentWrapper, ViewDialog, Props$1C as ViewDialogProps, ViewFooter, ViewHeader, ViewSideContent, ViewWrapper, XYCoord, areItemsIdentical, base64FromBlurHash, clamp, clsx, copyObjectToClipboard, copyToClipboard, formatTimeDistance, getKeyHandler, getPixelCountFromImageBlob, getScrollVectors, getStandardDeviation, getValidChildren, hasOwnProperty, imageEditorContextDefaultValue, imageEditorPreviewContextDefaultValue, matchesCombination, navbarContextInitProps, noOp, rInterval, readObjectFromClipboard, uiContextInitProps, useBatchUpdate, useClickAway, useClipboard, useContainerKeyDown, useContainerQuery, useCropper, useCropperCrop, useCropperRotate, useCropperScale, useCropperZoom, 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 };
|