@fctc/sme-widget-ui 3.10.6 → 3.10.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chunk-5Y4EK5OE.mjs +2 -0
- package/dist/chunk-BJCU5X7S.mjs +1 -0
- package/dist/chunk-KVH366MY.mjs +1 -0
- package/dist/chunk-U7MAFS3I.mjs +1 -0
- package/dist/chunk-UMFSRQPI.mjs +44 -0
- package/dist/chunk-YEKQJ4YC.mjs +1 -0
- package/dist/hooks.mjs +1 -249
- package/dist/icons.mjs +1 -1734
- package/dist/index.css +1 -799
- package/dist/index.mjs +1 -34456
- package/dist/types.mjs +1 -13
- package/dist/utils.mjs +1 -7474
- package/dist/widgets.css +1 -799
- package/dist/widgets.mjs +1 -33684
- package/package.json +1 -1
- package/dist/hooks.d.ts +0 -46
- package/dist/hooks.js +0 -277
- package/dist/icons.d.ts +0 -100
- package/dist/icons.js +0 -1802
- package/dist/index.d.ts +0 -20
- package/dist/index.js +0 -34584
- package/dist/types.d.ts +0 -62
- package/dist/types.js +0 -50
- package/dist/utils.d.ts +0 -30
- package/dist/utils.js +0 -7498
- package/dist/widgets.d.ts +0 -490
- package/dist/widgets.js +0 -33748
package/dist/widgets.d.ts
DELETED
|
@@ -1,490 +0,0 @@
|
|
|
1
|
-
import * as React$1 from 'react';
|
|
2
|
-
import React__default, { Dispatch, SetStateAction } from 'react';
|
|
3
|
-
import { LoginProps, IInputFieldProps } from './types.js';
|
|
4
|
-
import 'zod';
|
|
5
|
-
|
|
6
|
-
interface IPaginationProps {
|
|
7
|
-
totalCount: number;
|
|
8
|
-
pageSize: number;
|
|
9
|
-
siblingCount?: number;
|
|
10
|
-
currentPage: number;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
declare const usePagination: ({ totalCount, pageSize, siblingCount, currentPage, }: IPaginationProps) => (number | string)[];
|
|
14
|
-
|
|
15
|
-
declare const PaginationView: (props: any) => JSX.Element | null;
|
|
16
|
-
|
|
17
|
-
interface ColEmptyGroup {
|
|
18
|
-
fromStart: number;
|
|
19
|
-
fromEnd: number;
|
|
20
|
-
}
|
|
21
|
-
interface TableGroupControllerReturn {
|
|
22
|
-
onExpandChildGroup: () => void;
|
|
23
|
-
colEmptyGroup: ColEmptyGroup;
|
|
24
|
-
isShowGroup: boolean;
|
|
25
|
-
isDataGroupFetched: boolean;
|
|
26
|
-
isDataPlaceHolder: any;
|
|
27
|
-
nameGroupWithCount: string;
|
|
28
|
-
columnsGroup: any[];
|
|
29
|
-
rowsGroup: any[];
|
|
30
|
-
model: string;
|
|
31
|
-
level: number;
|
|
32
|
-
specification: string;
|
|
33
|
-
context: Record<string, any>;
|
|
34
|
-
checkedAll: boolean;
|
|
35
|
-
isDisplayCheckbox: boolean;
|
|
36
|
-
selectedRowKeysRef: React.MutableRefObject<number[]>;
|
|
37
|
-
dataGroup: any;
|
|
38
|
-
pageGroup: number;
|
|
39
|
-
setPageGroup: Dispatch<SetStateAction<number>>;
|
|
40
|
-
typeTableGroup?: string;
|
|
41
|
-
}
|
|
42
|
-
interface TableGroupControllerProps {
|
|
43
|
-
columns: any;
|
|
44
|
-
row: any;
|
|
45
|
-
model: string;
|
|
46
|
-
viewData: any;
|
|
47
|
-
level: number;
|
|
48
|
-
specification: any;
|
|
49
|
-
context: Record<string, any>;
|
|
50
|
-
checkedAll: boolean;
|
|
51
|
-
groupByList?: any;
|
|
52
|
-
setSelectedRowKeys?: (selectedRowKeys: any) => void;
|
|
53
|
-
}
|
|
54
|
-
interface TableBodyProps {
|
|
55
|
-
rows?: any;
|
|
56
|
-
columns?: any;
|
|
57
|
-
isDisplayCheckbox?: any;
|
|
58
|
-
viewData?: any;
|
|
59
|
-
model?: any;
|
|
60
|
-
specification?: any;
|
|
61
|
-
context?: any;
|
|
62
|
-
onClickRow?: any;
|
|
63
|
-
typeTable?: any;
|
|
64
|
-
renderField?: any;
|
|
65
|
-
rootField?: any;
|
|
66
|
-
handleCheckBoxSingle?: any;
|
|
67
|
-
level?: any;
|
|
68
|
-
checkedAll?: any;
|
|
69
|
-
selectedRowKeysRef?: any;
|
|
70
|
-
isAutoSelect?: any;
|
|
71
|
-
setIsAutoSelect?: any;
|
|
72
|
-
onAddRow?: any;
|
|
73
|
-
onRemoveRow?: any;
|
|
74
|
-
checked?: any;
|
|
75
|
-
isForm?: any;
|
|
76
|
-
typeCo?: any;
|
|
77
|
-
setSelectedRowKeys?: any;
|
|
78
|
-
selectedRowKeys?: any;
|
|
79
|
-
tableGroupController?: any;
|
|
80
|
-
groupByList?: any;
|
|
81
|
-
isEditTable?: boolean;
|
|
82
|
-
}
|
|
83
|
-
declare const TableBody: (props: TableBodyProps) => JSX.Element;
|
|
84
|
-
|
|
85
|
-
declare const TableFilter: ({ columns, onToggleColumnOptional }: any) => JSX.Element;
|
|
86
|
-
|
|
87
|
-
interface TableFooterProps {
|
|
88
|
-
rows?: any;
|
|
89
|
-
onAddRow?: any;
|
|
90
|
-
}
|
|
91
|
-
declare const TableFooter: ({ onAddRow, rows }: TableFooterProps) => JSX.Element;
|
|
92
|
-
|
|
93
|
-
interface TableGroupProps {
|
|
94
|
-
indexRow: number;
|
|
95
|
-
rows: any[];
|
|
96
|
-
columns: any[];
|
|
97
|
-
row: Record<string, any>;
|
|
98
|
-
model: string;
|
|
99
|
-
viewData: any;
|
|
100
|
-
level: number;
|
|
101
|
-
specification: string;
|
|
102
|
-
context: Record<string, any>;
|
|
103
|
-
checkedAll: boolean;
|
|
104
|
-
isDisplayCheckbox: boolean;
|
|
105
|
-
selectedRowKeysRef: React.MutableRefObject<number[]>;
|
|
106
|
-
renderField?: ({ row, col, indexRow, onChangeData, rootField, }: {
|
|
107
|
-
row: any;
|
|
108
|
-
col: any;
|
|
109
|
-
indexRow: any;
|
|
110
|
-
onChangeData: any;
|
|
111
|
-
rootField?: any;
|
|
112
|
-
}) => React.ReactNode;
|
|
113
|
-
isAutoSelect?: boolean;
|
|
114
|
-
setIsAutoSelect?: any;
|
|
115
|
-
tableGroupController: (props: TableGroupControllerProps) => TableGroupControllerReturn;
|
|
116
|
-
groupByList?: any;
|
|
117
|
-
selectedRowKeys?: any;
|
|
118
|
-
setSelectedRowKeys?: (selectedRowKeys: any) => void;
|
|
119
|
-
onClickRow?: any;
|
|
120
|
-
env?: any;
|
|
121
|
-
}
|
|
122
|
-
declare const TableGroup: (props: TableGroupProps) => JSX.Element;
|
|
123
|
-
|
|
124
|
-
interface TableHeadProps {
|
|
125
|
-
handleCheckBoxAll?: any;
|
|
126
|
-
columns?: any;
|
|
127
|
-
isDisplayCheckbox?: any;
|
|
128
|
-
checkedAll?: any;
|
|
129
|
-
onToggleColumnOptional?: any;
|
|
130
|
-
onRemoveRow?: any;
|
|
131
|
-
env?: any;
|
|
132
|
-
table?: any;
|
|
133
|
-
}
|
|
134
|
-
declare const TableHead: (props: TableHeadProps) => JSX.Element;
|
|
135
|
-
|
|
136
|
-
declare const Row: (props: any) => JSX.Element;
|
|
137
|
-
|
|
138
|
-
declare const EmptyTable: () => JSX.Element;
|
|
139
|
-
|
|
140
|
-
declare const Login: React__default.FC<LoginProps>;
|
|
141
|
-
|
|
142
|
-
declare const Search: ({ removeSearchItems, selectedTags, filterBy, setFilterBy, searchString, onSearchString, handleAddTagSearch, searchBy, groupBy, showFiltersGroups, setGroupBy, setSelectedRowKeys, setDomainList, setPage, fieldsList, viewData, context, aid, selectedRowKeys, domainSearch, evalJSONContext, clearSearch, onKeyDown, handleMouseEnter, handleMouseLeave, hoveredIndexSearchList, }: any) => JSX.Element;
|
|
143
|
-
|
|
144
|
-
interface IActiveBadgeProps extends IInputFieldProps {
|
|
145
|
-
type: any;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
declare const ActiveBadgeField: (props: IActiveBadgeProps) => JSX.Element;
|
|
149
|
-
|
|
150
|
-
interface IAvatarProps extends IInputFieldProps {
|
|
151
|
-
fullName?: string;
|
|
152
|
-
id?: string | number;
|
|
153
|
-
size?: number;
|
|
154
|
-
textColor?: string;
|
|
155
|
-
aid?: string;
|
|
156
|
-
allowShowDetail?: boolean;
|
|
157
|
-
avatarSrc?: string;
|
|
158
|
-
stringToColor?: any;
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
declare const AvatarField: (props: IAvatarProps) => JSX.Element;
|
|
162
|
-
|
|
163
|
-
interface IBinaryFieldProps extends IInputFieldProps {
|
|
164
|
-
placeHolderImage?: any;
|
|
165
|
-
onUploadFile: (formData: FormData) => string;
|
|
166
|
-
onDownload?: (url: string, filename?: string) => void;
|
|
167
|
-
onDeleteFile?: () => void;
|
|
168
|
-
url?: string;
|
|
169
|
-
fileInfor?: {
|
|
170
|
-
type?: string;
|
|
171
|
-
date?: string;
|
|
172
|
-
size?: string;
|
|
173
|
-
};
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
declare const BinaryField: (props: IBinaryFieldProps) => JSX.Element;
|
|
177
|
-
|
|
178
|
-
interface IButtonBadgeProps extends IInputFieldProps {
|
|
179
|
-
selection?: [string | number, string][] | any;
|
|
180
|
-
'decoration-success'?: any;
|
|
181
|
-
'decoration-info'?: any;
|
|
182
|
-
'decoration-danger'?: any;
|
|
183
|
-
'decoration-warning'?: any;
|
|
184
|
-
'decoration-purpled'?: any;
|
|
185
|
-
'decoration-oranged'?: any;
|
|
186
|
-
'decoration-info-light'?: any;
|
|
187
|
-
'decoration-browned'?: any;
|
|
188
|
-
domainHelper?: any;
|
|
189
|
-
class?: string;
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
declare const ButtonBadgeField: (props: IButtonBadgeProps) => JSX.Element | null;
|
|
193
|
-
|
|
194
|
-
interface IButtonProps {
|
|
195
|
-
func?: () => void;
|
|
196
|
-
className?: string;
|
|
197
|
-
loading?: boolean;
|
|
198
|
-
content: string;
|
|
199
|
-
disable?: boolean;
|
|
200
|
-
type?: 'button' | 'submit' | 'reset';
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
declare const ButtonField: (props: IButtonProps) => JSX.Element;
|
|
204
|
-
|
|
205
|
-
interface ICharFieldProps extends IInputFieldProps {
|
|
206
|
-
trim?: boolean;
|
|
207
|
-
max?: string;
|
|
208
|
-
min?: string;
|
|
209
|
-
digit?: string;
|
|
210
|
-
special?: string;
|
|
211
|
-
upcase?: string;
|
|
212
|
-
regex?: any;
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
declare const CharField: React__default.FC<ICharFieldProps>;
|
|
216
|
-
|
|
217
|
-
declare const SecureField: React__default.FC<ICharFieldProps>;
|
|
218
|
-
|
|
219
|
-
declare const CheckboxField: React__default.FC<IInputFieldProps>;
|
|
220
|
-
|
|
221
|
-
interface IColorWrapperProps {
|
|
222
|
-
savePickColor: any;
|
|
223
|
-
defaultColor: any;
|
|
224
|
-
colors: any;
|
|
225
|
-
}
|
|
226
|
-
interface IColorFieldProps extends IInputFieldProps {
|
|
227
|
-
savePickColor: any;
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
declare const ColorField: (props: IColorFieldProps) => JSX.Element;
|
|
231
|
-
|
|
232
|
-
declare const ColorWrapper: (props: IColorWrapperProps) => JSX.Element;
|
|
233
|
-
|
|
234
|
-
interface ICopyLinkButtonProps extends IInputFieldProps {
|
|
235
|
-
isCopied: any;
|
|
236
|
-
handleCopyToClipboard: any;
|
|
237
|
-
propValue: any;
|
|
238
|
-
maskingValue: any;
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
declare const CopyLinkButtonField: (props: ICopyLinkButtonProps) => JSX.Element;
|
|
242
|
-
|
|
243
|
-
interface IDateFieldProps extends IInputFieldProps {
|
|
244
|
-
formatDate: any;
|
|
245
|
-
formatDateParse: any;
|
|
246
|
-
years: any[];
|
|
247
|
-
months_vi: any[];
|
|
248
|
-
months_en: any[];
|
|
249
|
-
customValidateMinMax: any;
|
|
250
|
-
minNowValue: boolean;
|
|
251
|
-
maxNowValue: boolean;
|
|
252
|
-
showTime: boolean;
|
|
253
|
-
textPlaceHolder: string;
|
|
254
|
-
context?: any;
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
declare const DateField: (props: IDateFieldProps) => JSX.Element;
|
|
258
|
-
|
|
259
|
-
interface IDownLoadBinary {
|
|
260
|
-
handleFileDownload: any;
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
declare const DownLoadBinaryField: (props: IDownLoadBinary) => JSX.Element;
|
|
264
|
-
|
|
265
|
-
interface IDownloadFileProps extends IInputFieldProps {
|
|
266
|
-
inputId: any;
|
|
267
|
-
file: any;
|
|
268
|
-
handleFileChange: any;
|
|
269
|
-
handleFileDownload: any;
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
declare const DownloadFileField: (props: IDownloadFileProps) => JSX.Element;
|
|
273
|
-
|
|
274
|
-
interface TDropdownSelectorProps<T> {
|
|
275
|
-
options: T[];
|
|
276
|
-
selectedValue: {
|
|
277
|
-
label: string;
|
|
278
|
-
icon?: any;
|
|
279
|
-
};
|
|
280
|
-
onSelect: (value: T) => void;
|
|
281
|
-
renderItem: (item: T) => JSX.Element | string;
|
|
282
|
-
className?: string;
|
|
283
|
-
buttonClassName?: string;
|
|
284
|
-
dropdownClassName?: string;
|
|
285
|
-
useClickOutside?: any;
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
declare const DropdownField: <T>(props: TDropdownSelectorProps<T>) => JSX.Element;
|
|
289
|
-
|
|
290
|
-
declare const FeeField: (props: IInputFieldProps) => JSX.Element;
|
|
291
|
-
|
|
292
|
-
interface IFileUploadProps extends IInputFieldProps {
|
|
293
|
-
useUploadImage?: any;
|
|
294
|
-
useUploadFile?: any;
|
|
295
|
-
useGetImage?: any;
|
|
296
|
-
isBase64File?: any;
|
|
297
|
-
downloadFunction?: (url: string, filename: string) => void;
|
|
298
|
-
}
|
|
299
|
-
|
|
300
|
-
declare const FileUploadField: (props: IFileUploadProps) => JSX.Element;
|
|
301
|
-
|
|
302
|
-
declare const FloatField: (props: IInputFieldProps) => JSX.Element;
|
|
303
|
-
|
|
304
|
-
declare const FloatTimeField: React__default.FC<IInputFieldProps>;
|
|
305
|
-
|
|
306
|
-
declare const HtmlField: (props: IInputFieldProps) => JSX.Element;
|
|
307
|
-
|
|
308
|
-
interface ImageFieldProps extends IInputFieldProps {
|
|
309
|
-
baseURL?: string;
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
declare const ImageField: (props: ImageFieldProps) => JSX.Element | null;
|
|
313
|
-
|
|
314
|
-
interface IMany2ManyTagsProps extends IInputFieldProps {
|
|
315
|
-
options: any[];
|
|
316
|
-
customNoOptionsMessage: any;
|
|
317
|
-
transfer: any;
|
|
318
|
-
isUser: any;
|
|
319
|
-
stringToColor?: any;
|
|
320
|
-
fetchMoreOptions?: any;
|
|
321
|
-
handleSelectChange?: any;
|
|
322
|
-
isFetching?: any;
|
|
323
|
-
domainObject?: any;
|
|
324
|
-
setIsShowModalMany2Many?: any;
|
|
325
|
-
setInputValue?: any;
|
|
326
|
-
setDomainObject?: any;
|
|
327
|
-
}
|
|
328
|
-
|
|
329
|
-
declare const Many2ManyTagField: (props: IMany2ManyTagsProps) => JSX.Element;
|
|
330
|
-
|
|
331
|
-
interface IMonetaryProps extends IInputFieldProps {
|
|
332
|
-
placeholder?: string;
|
|
333
|
-
symbol?: string;
|
|
334
|
-
}
|
|
335
|
-
|
|
336
|
-
declare const MonetaryField: (props: IMonetaryProps) => JSX.Element;
|
|
337
|
-
|
|
338
|
-
declare const PaidBadgedField: () => JSX.Element;
|
|
339
|
-
|
|
340
|
-
interface IPriorityFieldProps extends IInputFieldProps {
|
|
341
|
-
savePriorities?: any;
|
|
342
|
-
id?: number | string;
|
|
343
|
-
viewData?: any;
|
|
344
|
-
selection?: any;
|
|
345
|
-
}
|
|
346
|
-
interface IRatingStarProps extends IInputFieldProps {
|
|
347
|
-
label: string;
|
|
348
|
-
priorities: [number | string, string][];
|
|
349
|
-
onSelectPriority: (priority: {
|
|
350
|
-
value: number;
|
|
351
|
-
resetPriority?: () => void;
|
|
352
|
-
}) => void;
|
|
353
|
-
id: string | number | undefined;
|
|
354
|
-
}
|
|
355
|
-
|
|
356
|
-
declare const PriorityField: (props: IPriorityFieldProps) => JSX.Element;
|
|
357
|
-
|
|
358
|
-
declare const RatingStarField: (props: IRatingStarProps) => JSX.Element;
|
|
359
|
-
|
|
360
|
-
interface IRadioGroupProps extends IInputFieldProps {
|
|
361
|
-
placeholder?: string;
|
|
362
|
-
selection?: [string | number, string][] | any;
|
|
363
|
-
setValue?: any;
|
|
364
|
-
}
|
|
365
|
-
|
|
366
|
-
declare const RadioGroupField: (props: IRadioGroupProps) => JSX.Element | null;
|
|
367
|
-
|
|
368
|
-
declare const RemainingDaysField: (props: IInputFieldProps) => JSX.Element | null;
|
|
369
|
-
|
|
370
|
-
interface ISelectDropdownProps extends IInputFieldProps {
|
|
371
|
-
selection?: [string | number, string][] | any;
|
|
372
|
-
}
|
|
373
|
-
|
|
374
|
-
declare const SelectDropdownField: (props: ISelectDropdownProps) => JSX.Element;
|
|
375
|
-
|
|
376
|
-
declare const TextAreaField: (props: IInputFieldProps) => JSX.Element;
|
|
377
|
-
|
|
378
|
-
declare const ToggleButtonField: (props: IInputFieldProps) => JSX.Element;
|
|
379
|
-
|
|
380
|
-
interface InformationProps extends IInputFieldProps {
|
|
381
|
-
showName?: boolean;
|
|
382
|
-
stringToColor?: any;
|
|
383
|
-
}
|
|
384
|
-
|
|
385
|
-
declare const InfomationField: React__default.FC<InformationProps>;
|
|
386
|
-
|
|
387
|
-
declare const IntegerField: (props: IInputFieldProps) => JSX.Element;
|
|
388
|
-
|
|
389
|
-
interface IStatusDropdownFieldProps extends IInputFieldProps {
|
|
390
|
-
selection?: [string | number, string][] | any;
|
|
391
|
-
state?: string | undefined;
|
|
392
|
-
buttonRef: any;
|
|
393
|
-
isOpen: any;
|
|
394
|
-
setIsOpen: any;
|
|
395
|
-
handleClick: any;
|
|
396
|
-
colors: any;
|
|
397
|
-
}
|
|
398
|
-
|
|
399
|
-
declare const StatusDropdownField: (props: IStatusDropdownFieldProps) => JSX.Element;
|
|
400
|
-
|
|
401
|
-
interface Many2ManyProps extends IInputFieldProps {
|
|
402
|
-
aid?: number | null;
|
|
403
|
-
title?: string;
|
|
404
|
-
onClose?: any;
|
|
405
|
-
onChoose?: any;
|
|
406
|
-
onAddNew?: any;
|
|
407
|
-
isDisplayCheckbox?: boolean;
|
|
408
|
-
onAddRow?: Function;
|
|
409
|
-
evalJSONContext?: any;
|
|
410
|
-
many2manyController?: any;
|
|
411
|
-
renderTable?: any;
|
|
412
|
-
model?: any;
|
|
413
|
-
}
|
|
414
|
-
|
|
415
|
-
declare const Many2ManyField: (props: Many2ManyProps) => React$1.ReactPortal;
|
|
416
|
-
|
|
417
|
-
interface Many2OneProps extends IInputFieldProps {
|
|
418
|
-
menuList?: any;
|
|
419
|
-
handleChooseRecord?: any;
|
|
420
|
-
handleClose?: any;
|
|
421
|
-
selectedRowKeys?: any;
|
|
422
|
-
allowShowDetail?: any;
|
|
423
|
-
index?: any;
|
|
424
|
-
contextObject?: any;
|
|
425
|
-
renderDetail?: any;
|
|
426
|
-
isShowModalMany2Many?: boolean;
|
|
427
|
-
initValue?: any;
|
|
428
|
-
tempSelectedOption?: any;
|
|
429
|
-
options?: any;
|
|
430
|
-
fetchMoreOptions?: any;
|
|
431
|
-
handleSelectChange?: any;
|
|
432
|
-
isFetching?: any;
|
|
433
|
-
domainObject?: any;
|
|
434
|
-
setIsShowModalMany2Many?: any;
|
|
435
|
-
setInputValue?: any;
|
|
436
|
-
setDomainObject?: any;
|
|
437
|
-
listOptions?: any;
|
|
438
|
-
}
|
|
439
|
-
|
|
440
|
-
declare const Many2OneField: (props: Many2OneProps) => JSX.Element;
|
|
441
|
-
|
|
442
|
-
interface IDurationProps extends IInputFieldProps {
|
|
443
|
-
dataResponse: any;
|
|
444
|
-
handleClick: any;
|
|
445
|
-
disabled: any;
|
|
446
|
-
modelStatus: any;
|
|
447
|
-
setModalStatus: any;
|
|
448
|
-
}
|
|
449
|
-
|
|
450
|
-
declare const StatusbarDurationField: (props: IDurationProps) => JSX.Element;
|
|
451
|
-
|
|
452
|
-
interface IOptionProps extends IInputFieldProps {
|
|
453
|
-
selection?: [string | number, string][] | any;
|
|
454
|
-
}
|
|
455
|
-
|
|
456
|
-
declare const StatusBarOptionField: (props: IOptionProps) => JSX.Element;
|
|
457
|
-
|
|
458
|
-
declare const DateOptionField: (props: IInputFieldProps) => JSX.Element;
|
|
459
|
-
|
|
460
|
-
declare const ModalConfirm: ({ name, isShowModal, onClick, onClose, title, content, isLoading, }: {
|
|
461
|
-
name: "delete" | "duplicate" | "archive" | "unarchive";
|
|
462
|
-
isShowModal: boolean;
|
|
463
|
-
isLoading?: boolean;
|
|
464
|
-
onClick: () => void;
|
|
465
|
-
onClose: () => void;
|
|
466
|
-
title?: string;
|
|
467
|
-
content?: React.ReactNode;
|
|
468
|
-
}) => JSX.Element;
|
|
469
|
-
|
|
470
|
-
declare const ModalDetail: ({ idToolTip, title, model, idForm, aid, place, renderDetail, context, }: any) => React$1.ReactPortal;
|
|
471
|
-
|
|
472
|
-
declare const ModalLayer: ({ isOpen, onClose, title, children, }: {
|
|
473
|
-
isOpen: boolean;
|
|
474
|
-
onClose: () => void;
|
|
475
|
-
title?: string;
|
|
476
|
-
children: React__default.ReactNode;
|
|
477
|
-
}) => JSX.Element;
|
|
478
|
-
|
|
479
|
-
declare const LayerLoading: () => JSX.Element;
|
|
480
|
-
|
|
481
|
-
declare const LoadingSmall: () => JSX.Element;
|
|
482
|
-
|
|
483
|
-
declare const ButtonSelectFiles: ({ fileInputRef, selectedFiles, setSelectedFiles, setUploadError, model, id, widget, useUploadImage, useUploadFile, env, service, user, isText, }: any) => JSX.Element;
|
|
484
|
-
|
|
485
|
-
interface VideoPlayerProps {
|
|
486
|
-
src: string;
|
|
487
|
-
}
|
|
488
|
-
declare const VideoPlayer: ({ src }: VideoPlayerProps) => JSX.Element;
|
|
489
|
-
|
|
490
|
-
export { ActiveBadgeField, AvatarField, BinaryField, ButtonBadgeField, ButtonField, ButtonSelectFiles, CharField, CheckboxField, ColorField, ColorWrapper, CopyLinkButtonField, DateField, DateOptionField, DownLoadBinaryField, DownloadFileField, DropdownField, EmptyTable, FeeField, FileUploadField, FloatField, FloatTimeField, HtmlField, type IActiveBadgeProps, type IAvatarProps, type IBinaryFieldProps, type IButtonBadgeProps, type IButtonProps, type ICharFieldProps, type IColorFieldProps, type IColorWrapperProps, type ICopyLinkButtonProps, type IDateFieldProps, type IDownLoadBinary, type IDownloadFileProps, type IDurationProps, type IFileUploadProps, type IMany2ManyTagsProps, type IMonetaryProps, type IOptionProps, type IPaginationProps, type IPriorityFieldProps, type IRadioGroupProps, type IRatingStarProps, type ISelectDropdownProps, type IStatusDropdownFieldProps, ImageField, InfomationField, IntegerField, LayerLoading, LoadingSmall, Login, Many2ManyField, type Many2ManyProps, Many2ManyTagField, Many2OneField, type Many2OneProps, ModalConfirm, ModalDetail, ModalLayer, MonetaryField, PaginationView, PaidBadgedField, PriorityField, RadioGroupField, RatingStarField, RemainingDaysField, Row, Search, SecureField, SelectDropdownField, StatusBarOptionField, StatusDropdownField, StatusbarDurationField, type TDropdownSelectorProps, TableBody, TableFilter, TableFooter, TableGroup, TableHead, TextAreaField, ToggleButtonField, VideoPlayer, usePagination };
|