@jswork/antd-components 1.0.220 → 1.0.222
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/main.cjs.js +1 -1
- package/dist/main.d.mts +65 -44
- package/dist/main.d.ts +65 -44
- package/dist/main.esm.js +1 -1
- package/dist/main.esm.js.map +1 -1
- package/package.json +2 -1
- package/src/lib/extra-search.tsx +1 -1
- package/src/lib/init-widgets.ts +2 -0
- package/src/lib/markdown-editor.tsx +44 -0
- package/src/lib/table.tsx +2 -2
- package/src/main.ts +5 -0
package/dist/main.d.mts
CHANGED
|
@@ -6,6 +6,7 @@ import { CheckableTagProps } from 'antd/es/tag';
|
|
|
6
6
|
import { CheckboxGroupProps } from 'antd/es/checkbox';
|
|
7
7
|
import * as rc_input_lib_interface from 'rc-input/lib/interface';
|
|
8
8
|
import { ValueType } from 'rc-input/lib/interface';
|
|
9
|
+
import MarkdownEditor from '@uiw/react-markdown-editor';
|
|
9
10
|
import { RangePickerProps } from 'antd/es/date-picker';
|
|
10
11
|
import { SearchProps, TextAreaProps } from 'antd/es/input';
|
|
11
12
|
import { SliderRangeProps } from 'antd/es/slider';
|
|
@@ -20,18 +21,18 @@ import { UploadChangeParam } from 'antd/es/upload/interface';
|
|
|
20
21
|
import { ReactComponent } from '@ebay/nice-form-react';
|
|
21
22
|
import { ReactAntStatusSwitchProps } from '@jswork/react-ant-status-switch/dist/components';
|
|
22
23
|
|
|
23
|
-
type StdEventTarget$
|
|
24
|
+
type StdEventTarget$s = {
|
|
24
25
|
target: {
|
|
25
26
|
value: any;
|
|
26
27
|
};
|
|
27
28
|
};
|
|
28
|
-
type StdCallback$
|
|
29
|
+
type StdCallback$s = (inEvent: StdEventTarget$s) => void;
|
|
29
30
|
type AcBreadcrumbProps = {
|
|
30
31
|
className?: string;
|
|
31
32
|
items?: any[];
|
|
32
33
|
template?: (args: TemplateArgs) => React.ReactNode;
|
|
33
34
|
value?: number;
|
|
34
|
-
onChange?: StdCallback$
|
|
35
|
+
onChange?: StdCallback$s;
|
|
35
36
|
} & BreadcrumbProps;
|
|
36
37
|
declare class AcBreadcrumb extends React.Component<AcBreadcrumbProps> {
|
|
37
38
|
static displayName: string;
|
|
@@ -45,12 +46,12 @@ declare class AcBreadcrumb extends React.Component<AcBreadcrumbProps> {
|
|
|
45
46
|
render(): React.JSX.Element;
|
|
46
47
|
}
|
|
47
48
|
|
|
48
|
-
type StdEventTarget$
|
|
49
|
+
type StdEventTarget$r = {
|
|
49
50
|
target: {
|
|
50
51
|
value: any;
|
|
51
52
|
};
|
|
52
53
|
};
|
|
53
|
-
type StdCallback$
|
|
54
|
+
type StdCallback$r = (inEvent: StdEventTarget$r) => void;
|
|
54
55
|
type AcCheckableDropdownProps = {
|
|
55
56
|
className?: string;
|
|
56
57
|
lang?: string;
|
|
@@ -59,7 +60,7 @@ type AcCheckableDropdownProps = {
|
|
|
59
60
|
width?: number;
|
|
60
61
|
size?: SizeType;
|
|
61
62
|
disabled?: boolean;
|
|
62
|
-
onChange?: StdCallback$
|
|
63
|
+
onChange?: StdCallback$r;
|
|
63
64
|
};
|
|
64
65
|
declare class AcCheckableDropdown extends React.Component<AcCheckableDropdownProps> {
|
|
65
66
|
static displayName: string;
|
|
@@ -93,12 +94,12 @@ declare class AcCheckableDropdown extends React.Component<AcCheckableDropdownPro
|
|
|
93
94
|
render(): React.JSX.Element;
|
|
94
95
|
}
|
|
95
96
|
|
|
96
|
-
type StdEventTarget$
|
|
97
|
+
type StdEventTarget$q = {
|
|
97
98
|
target: {
|
|
98
99
|
value: any;
|
|
99
100
|
};
|
|
100
101
|
};
|
|
101
|
-
type StdCallback$
|
|
102
|
+
type StdCallback$q = (inEvent: StdEventTarget$q) => void;
|
|
102
103
|
/**
|
|
103
104
|
* @see https://ant.design/components/tag-cn/#Tag.CheckableTag
|
|
104
105
|
*/
|
|
@@ -109,8 +110,8 @@ type AcCheckableTagProps = {
|
|
|
109
110
|
closeable?: boolean;
|
|
110
111
|
toggleable?: boolean;
|
|
111
112
|
propagation?: boolean;
|
|
112
|
-
onChange?: StdCallback$
|
|
113
|
-
onCloseClick?: StdCallback$
|
|
113
|
+
onChange?: StdCallback$q;
|
|
114
|
+
onCloseClick?: StdCallback$q;
|
|
114
115
|
} & Omit<CheckableTagProps, 'checked'>;
|
|
115
116
|
declare class AcCheckableTag extends React.Component<AcCheckableTagProps> {
|
|
116
117
|
static displayName: string;
|
|
@@ -133,12 +134,12 @@ declare class AcCheckableTag extends React.Component<AcCheckableTagProps> {
|
|
|
133
134
|
}
|
|
134
135
|
declare const AcCheckableTagFc: (props: AcCheckableTagProps) => React.JSX.Element;
|
|
135
136
|
|
|
136
|
-
type StdEventTarget$
|
|
137
|
+
type StdEventTarget$p = {
|
|
137
138
|
target: {
|
|
138
139
|
value: any;
|
|
139
140
|
};
|
|
140
141
|
};
|
|
141
|
-
type StdCallback$
|
|
142
|
+
type StdCallback$p = (inEvent: StdEventTarget$p) => void;
|
|
142
143
|
type AcCheckableTagListProps = {
|
|
143
144
|
/**
|
|
144
145
|
* Main className.
|
|
@@ -159,7 +160,7 @@ type AcCheckableTagListProps = {
|
|
|
159
160
|
/**
|
|
160
161
|
* The event handler for `change`.
|
|
161
162
|
*/
|
|
162
|
-
onChange?: StdCallback$
|
|
163
|
+
onChange?: StdCallback$p;
|
|
163
164
|
/**
|
|
164
165
|
* The disabled state.
|
|
165
166
|
*/
|
|
@@ -183,16 +184,16 @@ declare class AcCheckableTagList extends React.Component<AcCheckableTagListProps
|
|
|
183
184
|
}
|
|
184
185
|
declare const AcCheckableTagListFc: (props: AcCheckableTagListProps) => React.JSX.Element;
|
|
185
186
|
|
|
186
|
-
type StdEventTarget$
|
|
187
|
+
type StdEventTarget$o = {
|
|
187
188
|
target: {
|
|
188
189
|
value: any;
|
|
189
190
|
};
|
|
190
191
|
};
|
|
191
|
-
type StdCallback$
|
|
192
|
+
type StdCallback$o = (inEvent: StdEventTarget$o) => void;
|
|
192
193
|
type AcCheckboxProps = {
|
|
193
194
|
className?: string;
|
|
194
195
|
value?: boolean;
|
|
195
|
-
onChange?: StdCallback$
|
|
196
|
+
onChange?: StdCallback$o;
|
|
196
197
|
} & CheckboxProps & HTMLAttributes<any>;
|
|
197
198
|
declare class AcCheckbox extends React.Component<AcCheckboxProps> {
|
|
198
199
|
static displayName: string;
|
|
@@ -207,12 +208,12 @@ declare class AcCheckbox extends React.Component<AcCheckboxProps> {
|
|
|
207
208
|
}
|
|
208
209
|
declare const AcCheckboxFc: (props: AcCheckboxProps) => React.JSX.Element;
|
|
209
210
|
|
|
210
|
-
type StdEventTarget$
|
|
211
|
+
type StdEventTarget$n = {
|
|
211
212
|
target: {
|
|
212
213
|
value: any;
|
|
213
214
|
};
|
|
214
215
|
};
|
|
215
|
-
type StdCallback$
|
|
216
|
+
type StdCallback$n = (inEvent: StdEventTarget$n) => void;
|
|
216
217
|
type TemplateCallback$3 = (item: {
|
|
217
218
|
item: any;
|
|
218
219
|
index: number;
|
|
@@ -221,8 +222,8 @@ type AcCheckboxGroupProps = {
|
|
|
221
222
|
className?: string;
|
|
222
223
|
value?: any[];
|
|
223
224
|
items?: any[];
|
|
224
|
-
onChange?: StdCallback$
|
|
225
|
-
onSearch?: StdCallback$
|
|
225
|
+
onChange?: StdCallback$n;
|
|
226
|
+
onSearch?: StdCallback$n;
|
|
226
227
|
template?: TemplateCallback$3;
|
|
227
228
|
} & CheckboxGroupProps;
|
|
228
229
|
declare class AcCheckboxGroup extends React.Component<AcCheckboxGroupProps> {
|
|
@@ -250,16 +251,16 @@ declare class AcCodeFlask extends React.Component {
|
|
|
250
251
|
}
|
|
251
252
|
declare const AcCodeFlaskFc: (props: any) => React.JSX.Element;
|
|
252
253
|
|
|
253
|
-
type StdEventTarget$
|
|
254
|
+
type StdEventTarget$m = {
|
|
254
255
|
target: {
|
|
255
256
|
value: string;
|
|
256
257
|
};
|
|
257
258
|
};
|
|
258
|
-
type StdCallback$
|
|
259
|
+
type StdCallback$m = (inEvent: StdEventTarget$m) => void;
|
|
259
260
|
type AcColorPickerProps = {
|
|
260
261
|
className?: string;
|
|
261
262
|
value?: string;
|
|
262
|
-
onChange?: StdCallback$
|
|
263
|
+
onChange?: StdCallback$m;
|
|
263
264
|
} & Omit<ColorPickerProps, 'value' | 'onChange'>;
|
|
264
265
|
declare class AcColorPicker extends React.Component<AcColorPickerProps> {
|
|
265
266
|
static displayName: string;
|
|
@@ -298,16 +299,16 @@ declare class AcConfirmButton extends Component<AcConfirmButtonProps> {
|
|
|
298
299
|
render(): React.JSX.Element;
|
|
299
300
|
}
|
|
300
301
|
|
|
301
|
-
type StdEventTarget$
|
|
302
|
+
type StdEventTarget$l = {
|
|
302
303
|
target: {
|
|
303
304
|
value: string;
|
|
304
305
|
};
|
|
305
306
|
};
|
|
306
|
-
type StdCallback$
|
|
307
|
+
type StdCallback$l = (inEvent: StdEventTarget$l) => void;
|
|
307
308
|
type AcDatePickerProps = Omit<DatePickerProps, 'value' | 'onChange' | 'ref'> & {
|
|
308
309
|
className?: string;
|
|
309
310
|
value?: any;
|
|
310
|
-
onChange?: StdCallback$
|
|
311
|
+
onChange?: StdCallback$l;
|
|
311
312
|
};
|
|
312
313
|
declare class AcDatePicker extends React.Component<AcDatePickerProps> {
|
|
313
314
|
static displayName: string;
|
|
@@ -320,12 +321,12 @@ declare class AcDatePicker extends React.Component<AcDatePickerProps> {
|
|
|
320
321
|
}
|
|
321
322
|
declare const AcDatePickerFc: (props: AcDatePickerProps) => React.JSX.Element;
|
|
322
323
|
|
|
323
|
-
type StdEventTarget$
|
|
324
|
+
type StdEventTarget$k = {
|
|
324
325
|
target: {
|
|
325
326
|
value: any;
|
|
326
327
|
};
|
|
327
328
|
};
|
|
328
|
-
type StdCallback$
|
|
329
|
+
type StdCallback$k = (inEvent: StdEventTarget$k) => void;
|
|
329
330
|
type AcEditableTagGroupProps = {
|
|
330
331
|
/**
|
|
331
332
|
* The extended className for component.
|
|
@@ -338,7 +339,7 @@ type AcEditableTagGroupProps = {
|
|
|
338
339
|
/**
|
|
339
340
|
* The change handler.
|
|
340
341
|
*/
|
|
341
|
-
onChange?: StdCallback$
|
|
342
|
+
onChange?: StdCallback$k;
|
|
342
343
|
/**
|
|
343
344
|
* The minimum tag number.
|
|
344
345
|
*/
|
|
@@ -410,15 +411,15 @@ declare class AcEditableTagGroup extends React.Component<AcEditableTagGroupProps
|
|
|
410
411
|
}
|
|
411
412
|
declare const AcEditableTagGroupFc: (props: AcEditableTagGroupProps) => React.JSX.Element;
|
|
412
413
|
|
|
413
|
-
type StdEventTarget$
|
|
414
|
+
type StdEventTarget$j = {
|
|
414
415
|
target: {
|
|
415
416
|
value: any;
|
|
416
417
|
};
|
|
417
418
|
};
|
|
418
|
-
type StdCallback$
|
|
419
|
+
type StdCallback$j = (inEvent: StdEventTarget$j) => void;
|
|
419
420
|
type AcInputProps = {
|
|
420
421
|
className?: string;
|
|
421
|
-
onChange?: StdCallback$
|
|
422
|
+
onChange?: StdCallback$j;
|
|
422
423
|
autoComplete?: boolean;
|
|
423
424
|
} & InputProps;
|
|
424
425
|
declare class AcInput extends React.Component<AcInputProps> {
|
|
@@ -467,16 +468,16 @@ declare class AcInputHidden extends React.Component {
|
|
|
467
468
|
}
|
|
468
469
|
declare const AcInputHiddenFc: (props: InputProps) => React.JSX.Element;
|
|
469
470
|
|
|
470
|
-
type StdEventTarget$
|
|
471
|
+
type StdEventTarget$i = {
|
|
471
472
|
target: {
|
|
472
473
|
value: any;
|
|
473
474
|
};
|
|
474
475
|
};
|
|
475
|
-
type StdCallback$
|
|
476
|
+
type StdCallback$i = (inEvent: StdEventTarget$i) => void;
|
|
476
477
|
type AcInputNumberProps = {
|
|
477
478
|
className?: string;
|
|
478
479
|
value?: number;
|
|
479
|
-
onChange?: StdCallback$
|
|
480
|
+
onChange?: StdCallback$i;
|
|
480
481
|
} & InputNumberProps;
|
|
481
482
|
declare class AcInputNumber extends React.Component<AcInputNumberProps> {
|
|
482
483
|
static displayName: string;
|
|
@@ -491,17 +492,17 @@ declare class AcInputNumber extends React.Component<AcInputNumberProps> {
|
|
|
491
492
|
}
|
|
492
493
|
declare const AcInputNumberFc: (props: AcInputNumberProps) => React.JSX.Element;
|
|
493
494
|
|
|
494
|
-
type StdEventTarget$
|
|
495
|
+
type StdEventTarget$h = {
|
|
495
496
|
target: {
|
|
496
497
|
value: any;
|
|
497
498
|
};
|
|
498
499
|
};
|
|
499
|
-
type StdCallback$
|
|
500
|
+
type StdCallback$h = (inEvent: StdEventTarget$h) => void;
|
|
500
501
|
type AcInputTagsProps = {
|
|
501
502
|
className?: string;
|
|
502
503
|
items?: string[];
|
|
503
504
|
disabled?: boolean;
|
|
504
|
-
onChange?: StdCallback$
|
|
505
|
+
onChange?: StdCallback$h;
|
|
505
506
|
} & React.HTMLAttributes<HTMLDivElement>;
|
|
506
507
|
type State$1 = {
|
|
507
508
|
items?: string[];
|
|
@@ -527,16 +528,16 @@ declare class AcInputTags extends React.Component<AcInputTagsProps, State$1> {
|
|
|
527
528
|
}
|
|
528
529
|
declare const AcInputTagsFc: (props: AcInputTagsProps) => React.JSX.Element;
|
|
529
530
|
|
|
530
|
-
type StdEventTarget$
|
|
531
|
+
type StdEventTarget$g = {
|
|
531
532
|
target: {
|
|
532
533
|
value: any;
|
|
533
534
|
};
|
|
534
535
|
};
|
|
535
|
-
type StdCallback$
|
|
536
|
+
type StdCallback$g = (inEvent: StdEventTarget$g) => void;
|
|
536
537
|
type AcInputTokenProps = {
|
|
537
538
|
className?: string;
|
|
538
539
|
value?: string;
|
|
539
|
-
onChange?: StdCallback$
|
|
540
|
+
onChange?: StdCallback$g;
|
|
540
541
|
autoComplete?: boolean;
|
|
541
542
|
labelCreate?: string;
|
|
542
543
|
labelRemove?: string;
|
|
@@ -564,6 +565,26 @@ declare class AcInputToken extends React.Component<AcInputTokenProps> {
|
|
|
564
565
|
}
|
|
565
566
|
declare const AcInputTokenFc: (props: AcInputTokenProps) => React.JSX.Element;
|
|
566
567
|
|
|
568
|
+
type StdEventTarget$f = {
|
|
569
|
+
target: {
|
|
570
|
+
value: any;
|
|
571
|
+
};
|
|
572
|
+
};
|
|
573
|
+
type StdCallback$f = (inEvent: StdEventTarget$f) => void;
|
|
574
|
+
type AcMarkdownEditorProps = {
|
|
575
|
+
className?: string;
|
|
576
|
+
value?: string;
|
|
577
|
+
onChange?: StdCallback$f;
|
|
578
|
+
} & React.ComponentProps<typeof MarkdownEditor>;
|
|
579
|
+
declare class AcMarkdownEditor extends React.Component<AcMarkdownEditorProps> {
|
|
580
|
+
static displayName: string;
|
|
581
|
+
static formSchema: string;
|
|
582
|
+
static defaultProps: {};
|
|
583
|
+
handleChange: (inValue: string) => void;
|
|
584
|
+
render(): React.JSX.Element;
|
|
585
|
+
}
|
|
586
|
+
declare const AcMarkdownEditorFc: (props: AcMarkdownEditorProps) => React.JSX.Element;
|
|
587
|
+
|
|
567
588
|
interface Value {
|
|
568
589
|
option: string;
|
|
569
590
|
keyword: string;
|
|
@@ -977,13 +998,13 @@ declare class AcTable extends React.Component<AcTableProps, AcTableState> {
|
|
|
977
998
|
sync: UrlSyncFlat;
|
|
978
999
|
private defaultFetcher;
|
|
979
1000
|
get routerKey(): string;
|
|
980
|
-
get calculateColumnsAction(): {
|
|
1001
|
+
get calculateColumnsAction(): ColumnsType<any> | {
|
|
981
1002
|
title: any;
|
|
982
1003
|
dataIndex: string;
|
|
983
1004
|
key: string;
|
|
984
1005
|
width: number;
|
|
985
1006
|
render: (_: any, record: any) => React.JSX.Element;
|
|
986
|
-
}
|
|
1007
|
+
}[];
|
|
987
1008
|
get calculateColumns(): ColumnsType<antd_es__util_type.AnyObject> | undefined;
|
|
988
1009
|
constructor(props: AcTableProps);
|
|
989
1010
|
private initFetcher;
|
|
@@ -1530,4 +1551,4 @@ declare const useCommand: (inName?: string) => {
|
|
|
1530
1551
|
draft: (payload: Payload) => void;
|
|
1531
1552
|
};
|
|
1532
1553
|
|
|
1533
|
-
export { AcBreadcrumb, type AcBreadcrumbProps, AcCardExtras, type AcCardExtrasProps, AcCheckableDropdown, type AcCheckableDropdownProps, AcCheckableTag, AcCheckableTagFc, AcCheckableTagList, AcCheckableTagListFc, type AcCheckableTagListProps, type AcCheckableTagProps, AcCheckbox, AcCheckboxFc, AcCheckboxGroup, AcCheckboxGroupFc, type AcCheckboxGroupProps, type AcCheckboxProps, AcCodeFlask, AcCodeFlaskFc, AcColorPicker, AcColorPickerFc, type AcColorPickerProps, AcConfirmButton, type AcConfirmButtonProps, AcDatePicker, AcDatePickerFc, type AcDatePickerProps, AcEditableTagGroup, AcEditableTagGroupFc, type AcEditableTagGroupProps, AcExtraSearch, type AcExtraSearchProps, AcInput, AcInputCopyable, AcInputCopyableFc, AcInputFc, AcInputHidden, AcInputHiddenFc, AcInputNumber, AcInputNumberFc, type AcInputNumberProps, type AcInputProps, AcInputTags, AcInputTagsFc, type AcInputTagsProps, AcInputToken, AcInputTokenFc, type AcInputTokenProps, AcPreSelect, AcPreSelectFc, type AcPreSelectProps, AcRadioGroup, AcRadioGroupFc, type AcRadioGroupProps, AcRangePicker, AcRangePickerFc, type AcRangePickerProps, AcRate, AcRateFc, type AcRateProps, AcSearch, AcSearchFc, type AcSearchProps, AcSelect, AcSelectFc, type AcSelectProps, AcSlider, AcSliderFc, type AcSliderProps, AcSliderRange, AcSliderRangeFc, type AcSliderRangeProps, AcSwitch, AcSwitchFc, type AcSwitchProps, AcTable, AcTableLinks, type AcTableLinksProps, type AcTableProps, AcTableStatusSwitcher, type AcTableStatusSwitcherProps, AcTableToggleSwitcher, type AcTableToggleSwitcherProps, AcTextarea, AcTextareaFc, type AcTextareaProps, AcTimePicker, AcTimePickerFc, type AcTimePickerProps, AcTransfer, AcTransferFc, type AcTransferProps, AcTree, type AcTreeProps, AcTreeSelect, AcTreeSelectFc, type AcTreeSelectProps, AcUpload, AcUploadDragger, AcUploadDraggerFc, type AcUploadDraggerProps, AcUploadFc, AcUploadPicture, AcUploadPictureCard, AcUploadPictureCardFc, AcUploadPictureFc, type AcUploadProps, BtnBack, BtnCancel, BtnCopy, BtnCreate, BtnDelete, BtnEdit, BtnExport, BtnImport, BtnPreview, BtnRefresh, BtnSave, BtnSubmit, BtnSync, BtnView, FormActions, type FormActionsProps, type Locale, breadcrumbDefault, checkboxKv, checkboxRaw, initWidgets, kv, radioKv, radioRaw, raw, selectKv, selectRaw, transferLabel, treeKv, treeSelectKv, useCommand as useTableCommand };
|
|
1554
|
+
export { AcBreadcrumb, type AcBreadcrumbProps, AcCardExtras, type AcCardExtrasProps, AcCheckableDropdown, type AcCheckableDropdownProps, AcCheckableTag, AcCheckableTagFc, AcCheckableTagList, AcCheckableTagListFc, type AcCheckableTagListProps, type AcCheckableTagProps, AcCheckbox, AcCheckboxFc, AcCheckboxGroup, AcCheckboxGroupFc, type AcCheckboxGroupProps, type AcCheckboxProps, AcCodeFlask, AcCodeFlaskFc, AcColorPicker, AcColorPickerFc, type AcColorPickerProps, AcConfirmButton, type AcConfirmButtonProps, AcDatePicker, AcDatePickerFc, type AcDatePickerProps, AcEditableTagGroup, AcEditableTagGroupFc, type AcEditableTagGroupProps, AcExtraSearch, type AcExtraSearchProps, AcInput, AcInputCopyable, AcInputCopyableFc, AcInputFc, AcInputHidden, AcInputHiddenFc, AcInputNumber, AcInputNumberFc, type AcInputNumberProps, type AcInputProps, AcInputTags, AcInputTagsFc, type AcInputTagsProps, AcInputToken, AcInputTokenFc, type AcInputTokenProps, AcMarkdownEditor, AcMarkdownEditorFc, type AcMarkdownEditorProps, AcPreSelect, AcPreSelectFc, type AcPreSelectProps, AcRadioGroup, AcRadioGroupFc, type AcRadioGroupProps, AcRangePicker, AcRangePickerFc, type AcRangePickerProps, AcRate, AcRateFc, type AcRateProps, AcSearch, AcSearchFc, type AcSearchProps, AcSelect, AcSelectFc, type AcSelectProps, AcSlider, AcSliderFc, type AcSliderProps, AcSliderRange, AcSliderRangeFc, type AcSliderRangeProps, AcSwitch, AcSwitchFc, type AcSwitchProps, AcTable, AcTableLinks, type AcTableLinksProps, type AcTableProps, AcTableStatusSwitcher, type AcTableStatusSwitcherProps, AcTableToggleSwitcher, type AcTableToggleSwitcherProps, AcTextarea, AcTextareaFc, type AcTextareaProps, AcTimePicker, AcTimePickerFc, type AcTimePickerProps, AcTransfer, AcTransferFc, type AcTransferProps, AcTree, type AcTreeProps, AcTreeSelect, AcTreeSelectFc, type AcTreeSelectProps, AcUpload, AcUploadDragger, AcUploadDraggerFc, type AcUploadDraggerProps, AcUploadFc, AcUploadPicture, AcUploadPictureCard, AcUploadPictureCardFc, AcUploadPictureFc, type AcUploadProps, BtnBack, BtnCancel, BtnCopy, BtnCreate, BtnDelete, BtnEdit, BtnExport, BtnImport, BtnPreview, BtnRefresh, BtnSave, BtnSubmit, BtnSync, BtnView, FormActions, type FormActionsProps, type Locale, breadcrumbDefault, checkboxKv, checkboxRaw, initWidgets, kv, radioKv, radioRaw, raw, selectKv, selectRaw, transferLabel, treeKv, treeSelectKv, useCommand as useTableCommand };
|
package/dist/main.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import { CheckableTagProps } from 'antd/es/tag';
|
|
|
6
6
|
import { CheckboxGroupProps } from 'antd/es/checkbox';
|
|
7
7
|
import * as rc_input_lib_interface from 'rc-input/lib/interface';
|
|
8
8
|
import { ValueType } from 'rc-input/lib/interface';
|
|
9
|
+
import MarkdownEditor from '@uiw/react-markdown-editor';
|
|
9
10
|
import { RangePickerProps } from 'antd/es/date-picker';
|
|
10
11
|
import { SearchProps, TextAreaProps } from 'antd/es/input';
|
|
11
12
|
import { SliderRangeProps } from 'antd/es/slider';
|
|
@@ -20,18 +21,18 @@ import { UploadChangeParam } from 'antd/es/upload/interface';
|
|
|
20
21
|
import { ReactComponent } from '@ebay/nice-form-react';
|
|
21
22
|
import { ReactAntStatusSwitchProps } from '@jswork/react-ant-status-switch/dist/components';
|
|
22
23
|
|
|
23
|
-
type StdEventTarget$
|
|
24
|
+
type StdEventTarget$s = {
|
|
24
25
|
target: {
|
|
25
26
|
value: any;
|
|
26
27
|
};
|
|
27
28
|
};
|
|
28
|
-
type StdCallback$
|
|
29
|
+
type StdCallback$s = (inEvent: StdEventTarget$s) => void;
|
|
29
30
|
type AcBreadcrumbProps = {
|
|
30
31
|
className?: string;
|
|
31
32
|
items?: any[];
|
|
32
33
|
template?: (args: TemplateArgs) => React.ReactNode;
|
|
33
34
|
value?: number;
|
|
34
|
-
onChange?: StdCallback$
|
|
35
|
+
onChange?: StdCallback$s;
|
|
35
36
|
} & BreadcrumbProps;
|
|
36
37
|
declare class AcBreadcrumb extends React.Component<AcBreadcrumbProps> {
|
|
37
38
|
static displayName: string;
|
|
@@ -45,12 +46,12 @@ declare class AcBreadcrumb extends React.Component<AcBreadcrumbProps> {
|
|
|
45
46
|
render(): React.JSX.Element;
|
|
46
47
|
}
|
|
47
48
|
|
|
48
|
-
type StdEventTarget$
|
|
49
|
+
type StdEventTarget$r = {
|
|
49
50
|
target: {
|
|
50
51
|
value: any;
|
|
51
52
|
};
|
|
52
53
|
};
|
|
53
|
-
type StdCallback$
|
|
54
|
+
type StdCallback$r = (inEvent: StdEventTarget$r) => void;
|
|
54
55
|
type AcCheckableDropdownProps = {
|
|
55
56
|
className?: string;
|
|
56
57
|
lang?: string;
|
|
@@ -59,7 +60,7 @@ type AcCheckableDropdownProps = {
|
|
|
59
60
|
width?: number;
|
|
60
61
|
size?: SizeType;
|
|
61
62
|
disabled?: boolean;
|
|
62
|
-
onChange?: StdCallback$
|
|
63
|
+
onChange?: StdCallback$r;
|
|
63
64
|
};
|
|
64
65
|
declare class AcCheckableDropdown extends React.Component<AcCheckableDropdownProps> {
|
|
65
66
|
static displayName: string;
|
|
@@ -93,12 +94,12 @@ declare class AcCheckableDropdown extends React.Component<AcCheckableDropdownPro
|
|
|
93
94
|
render(): React.JSX.Element;
|
|
94
95
|
}
|
|
95
96
|
|
|
96
|
-
type StdEventTarget$
|
|
97
|
+
type StdEventTarget$q = {
|
|
97
98
|
target: {
|
|
98
99
|
value: any;
|
|
99
100
|
};
|
|
100
101
|
};
|
|
101
|
-
type StdCallback$
|
|
102
|
+
type StdCallback$q = (inEvent: StdEventTarget$q) => void;
|
|
102
103
|
/**
|
|
103
104
|
* @see https://ant.design/components/tag-cn/#Tag.CheckableTag
|
|
104
105
|
*/
|
|
@@ -109,8 +110,8 @@ type AcCheckableTagProps = {
|
|
|
109
110
|
closeable?: boolean;
|
|
110
111
|
toggleable?: boolean;
|
|
111
112
|
propagation?: boolean;
|
|
112
|
-
onChange?: StdCallback$
|
|
113
|
-
onCloseClick?: StdCallback$
|
|
113
|
+
onChange?: StdCallback$q;
|
|
114
|
+
onCloseClick?: StdCallback$q;
|
|
114
115
|
} & Omit<CheckableTagProps, 'checked'>;
|
|
115
116
|
declare class AcCheckableTag extends React.Component<AcCheckableTagProps> {
|
|
116
117
|
static displayName: string;
|
|
@@ -133,12 +134,12 @@ declare class AcCheckableTag extends React.Component<AcCheckableTagProps> {
|
|
|
133
134
|
}
|
|
134
135
|
declare const AcCheckableTagFc: (props: AcCheckableTagProps) => React.JSX.Element;
|
|
135
136
|
|
|
136
|
-
type StdEventTarget$
|
|
137
|
+
type StdEventTarget$p = {
|
|
137
138
|
target: {
|
|
138
139
|
value: any;
|
|
139
140
|
};
|
|
140
141
|
};
|
|
141
|
-
type StdCallback$
|
|
142
|
+
type StdCallback$p = (inEvent: StdEventTarget$p) => void;
|
|
142
143
|
type AcCheckableTagListProps = {
|
|
143
144
|
/**
|
|
144
145
|
* Main className.
|
|
@@ -159,7 +160,7 @@ type AcCheckableTagListProps = {
|
|
|
159
160
|
/**
|
|
160
161
|
* The event handler for `change`.
|
|
161
162
|
*/
|
|
162
|
-
onChange?: StdCallback$
|
|
163
|
+
onChange?: StdCallback$p;
|
|
163
164
|
/**
|
|
164
165
|
* The disabled state.
|
|
165
166
|
*/
|
|
@@ -183,16 +184,16 @@ declare class AcCheckableTagList extends React.Component<AcCheckableTagListProps
|
|
|
183
184
|
}
|
|
184
185
|
declare const AcCheckableTagListFc: (props: AcCheckableTagListProps) => React.JSX.Element;
|
|
185
186
|
|
|
186
|
-
type StdEventTarget$
|
|
187
|
+
type StdEventTarget$o = {
|
|
187
188
|
target: {
|
|
188
189
|
value: any;
|
|
189
190
|
};
|
|
190
191
|
};
|
|
191
|
-
type StdCallback$
|
|
192
|
+
type StdCallback$o = (inEvent: StdEventTarget$o) => void;
|
|
192
193
|
type AcCheckboxProps = {
|
|
193
194
|
className?: string;
|
|
194
195
|
value?: boolean;
|
|
195
|
-
onChange?: StdCallback$
|
|
196
|
+
onChange?: StdCallback$o;
|
|
196
197
|
} & CheckboxProps & HTMLAttributes<any>;
|
|
197
198
|
declare class AcCheckbox extends React.Component<AcCheckboxProps> {
|
|
198
199
|
static displayName: string;
|
|
@@ -207,12 +208,12 @@ declare class AcCheckbox extends React.Component<AcCheckboxProps> {
|
|
|
207
208
|
}
|
|
208
209
|
declare const AcCheckboxFc: (props: AcCheckboxProps) => React.JSX.Element;
|
|
209
210
|
|
|
210
|
-
type StdEventTarget$
|
|
211
|
+
type StdEventTarget$n = {
|
|
211
212
|
target: {
|
|
212
213
|
value: any;
|
|
213
214
|
};
|
|
214
215
|
};
|
|
215
|
-
type StdCallback$
|
|
216
|
+
type StdCallback$n = (inEvent: StdEventTarget$n) => void;
|
|
216
217
|
type TemplateCallback$3 = (item: {
|
|
217
218
|
item: any;
|
|
218
219
|
index: number;
|
|
@@ -221,8 +222,8 @@ type AcCheckboxGroupProps = {
|
|
|
221
222
|
className?: string;
|
|
222
223
|
value?: any[];
|
|
223
224
|
items?: any[];
|
|
224
|
-
onChange?: StdCallback$
|
|
225
|
-
onSearch?: StdCallback$
|
|
225
|
+
onChange?: StdCallback$n;
|
|
226
|
+
onSearch?: StdCallback$n;
|
|
226
227
|
template?: TemplateCallback$3;
|
|
227
228
|
} & CheckboxGroupProps;
|
|
228
229
|
declare class AcCheckboxGroup extends React.Component<AcCheckboxGroupProps> {
|
|
@@ -250,16 +251,16 @@ declare class AcCodeFlask extends React.Component {
|
|
|
250
251
|
}
|
|
251
252
|
declare const AcCodeFlaskFc: (props: any) => React.JSX.Element;
|
|
252
253
|
|
|
253
|
-
type StdEventTarget$
|
|
254
|
+
type StdEventTarget$m = {
|
|
254
255
|
target: {
|
|
255
256
|
value: string;
|
|
256
257
|
};
|
|
257
258
|
};
|
|
258
|
-
type StdCallback$
|
|
259
|
+
type StdCallback$m = (inEvent: StdEventTarget$m) => void;
|
|
259
260
|
type AcColorPickerProps = {
|
|
260
261
|
className?: string;
|
|
261
262
|
value?: string;
|
|
262
|
-
onChange?: StdCallback$
|
|
263
|
+
onChange?: StdCallback$m;
|
|
263
264
|
} & Omit<ColorPickerProps, 'value' | 'onChange'>;
|
|
264
265
|
declare class AcColorPicker extends React.Component<AcColorPickerProps> {
|
|
265
266
|
static displayName: string;
|
|
@@ -298,16 +299,16 @@ declare class AcConfirmButton extends Component<AcConfirmButtonProps> {
|
|
|
298
299
|
render(): React.JSX.Element;
|
|
299
300
|
}
|
|
300
301
|
|
|
301
|
-
type StdEventTarget$
|
|
302
|
+
type StdEventTarget$l = {
|
|
302
303
|
target: {
|
|
303
304
|
value: string;
|
|
304
305
|
};
|
|
305
306
|
};
|
|
306
|
-
type StdCallback$
|
|
307
|
+
type StdCallback$l = (inEvent: StdEventTarget$l) => void;
|
|
307
308
|
type AcDatePickerProps = Omit<DatePickerProps, 'value' | 'onChange' | 'ref'> & {
|
|
308
309
|
className?: string;
|
|
309
310
|
value?: any;
|
|
310
|
-
onChange?: StdCallback$
|
|
311
|
+
onChange?: StdCallback$l;
|
|
311
312
|
};
|
|
312
313
|
declare class AcDatePicker extends React.Component<AcDatePickerProps> {
|
|
313
314
|
static displayName: string;
|
|
@@ -320,12 +321,12 @@ declare class AcDatePicker extends React.Component<AcDatePickerProps> {
|
|
|
320
321
|
}
|
|
321
322
|
declare const AcDatePickerFc: (props: AcDatePickerProps) => React.JSX.Element;
|
|
322
323
|
|
|
323
|
-
type StdEventTarget$
|
|
324
|
+
type StdEventTarget$k = {
|
|
324
325
|
target: {
|
|
325
326
|
value: any;
|
|
326
327
|
};
|
|
327
328
|
};
|
|
328
|
-
type StdCallback$
|
|
329
|
+
type StdCallback$k = (inEvent: StdEventTarget$k) => void;
|
|
329
330
|
type AcEditableTagGroupProps = {
|
|
330
331
|
/**
|
|
331
332
|
* The extended className for component.
|
|
@@ -338,7 +339,7 @@ type AcEditableTagGroupProps = {
|
|
|
338
339
|
/**
|
|
339
340
|
* The change handler.
|
|
340
341
|
*/
|
|
341
|
-
onChange?: StdCallback$
|
|
342
|
+
onChange?: StdCallback$k;
|
|
342
343
|
/**
|
|
343
344
|
* The minimum tag number.
|
|
344
345
|
*/
|
|
@@ -410,15 +411,15 @@ declare class AcEditableTagGroup extends React.Component<AcEditableTagGroupProps
|
|
|
410
411
|
}
|
|
411
412
|
declare const AcEditableTagGroupFc: (props: AcEditableTagGroupProps) => React.JSX.Element;
|
|
412
413
|
|
|
413
|
-
type StdEventTarget$
|
|
414
|
+
type StdEventTarget$j = {
|
|
414
415
|
target: {
|
|
415
416
|
value: any;
|
|
416
417
|
};
|
|
417
418
|
};
|
|
418
|
-
type StdCallback$
|
|
419
|
+
type StdCallback$j = (inEvent: StdEventTarget$j) => void;
|
|
419
420
|
type AcInputProps = {
|
|
420
421
|
className?: string;
|
|
421
|
-
onChange?: StdCallback$
|
|
422
|
+
onChange?: StdCallback$j;
|
|
422
423
|
autoComplete?: boolean;
|
|
423
424
|
} & InputProps;
|
|
424
425
|
declare class AcInput extends React.Component<AcInputProps> {
|
|
@@ -467,16 +468,16 @@ declare class AcInputHidden extends React.Component {
|
|
|
467
468
|
}
|
|
468
469
|
declare const AcInputHiddenFc: (props: InputProps) => React.JSX.Element;
|
|
469
470
|
|
|
470
|
-
type StdEventTarget$
|
|
471
|
+
type StdEventTarget$i = {
|
|
471
472
|
target: {
|
|
472
473
|
value: any;
|
|
473
474
|
};
|
|
474
475
|
};
|
|
475
|
-
type StdCallback$
|
|
476
|
+
type StdCallback$i = (inEvent: StdEventTarget$i) => void;
|
|
476
477
|
type AcInputNumberProps = {
|
|
477
478
|
className?: string;
|
|
478
479
|
value?: number;
|
|
479
|
-
onChange?: StdCallback$
|
|
480
|
+
onChange?: StdCallback$i;
|
|
480
481
|
} & InputNumberProps;
|
|
481
482
|
declare class AcInputNumber extends React.Component<AcInputNumberProps> {
|
|
482
483
|
static displayName: string;
|
|
@@ -491,17 +492,17 @@ declare class AcInputNumber extends React.Component<AcInputNumberProps> {
|
|
|
491
492
|
}
|
|
492
493
|
declare const AcInputNumberFc: (props: AcInputNumberProps) => React.JSX.Element;
|
|
493
494
|
|
|
494
|
-
type StdEventTarget$
|
|
495
|
+
type StdEventTarget$h = {
|
|
495
496
|
target: {
|
|
496
497
|
value: any;
|
|
497
498
|
};
|
|
498
499
|
};
|
|
499
|
-
type StdCallback$
|
|
500
|
+
type StdCallback$h = (inEvent: StdEventTarget$h) => void;
|
|
500
501
|
type AcInputTagsProps = {
|
|
501
502
|
className?: string;
|
|
502
503
|
items?: string[];
|
|
503
504
|
disabled?: boolean;
|
|
504
|
-
onChange?: StdCallback$
|
|
505
|
+
onChange?: StdCallback$h;
|
|
505
506
|
} & React.HTMLAttributes<HTMLDivElement>;
|
|
506
507
|
type State$1 = {
|
|
507
508
|
items?: string[];
|
|
@@ -527,16 +528,16 @@ declare class AcInputTags extends React.Component<AcInputTagsProps, State$1> {
|
|
|
527
528
|
}
|
|
528
529
|
declare const AcInputTagsFc: (props: AcInputTagsProps) => React.JSX.Element;
|
|
529
530
|
|
|
530
|
-
type StdEventTarget$
|
|
531
|
+
type StdEventTarget$g = {
|
|
531
532
|
target: {
|
|
532
533
|
value: any;
|
|
533
534
|
};
|
|
534
535
|
};
|
|
535
|
-
type StdCallback$
|
|
536
|
+
type StdCallback$g = (inEvent: StdEventTarget$g) => void;
|
|
536
537
|
type AcInputTokenProps = {
|
|
537
538
|
className?: string;
|
|
538
539
|
value?: string;
|
|
539
|
-
onChange?: StdCallback$
|
|
540
|
+
onChange?: StdCallback$g;
|
|
540
541
|
autoComplete?: boolean;
|
|
541
542
|
labelCreate?: string;
|
|
542
543
|
labelRemove?: string;
|
|
@@ -564,6 +565,26 @@ declare class AcInputToken extends React.Component<AcInputTokenProps> {
|
|
|
564
565
|
}
|
|
565
566
|
declare const AcInputTokenFc: (props: AcInputTokenProps) => React.JSX.Element;
|
|
566
567
|
|
|
568
|
+
type StdEventTarget$f = {
|
|
569
|
+
target: {
|
|
570
|
+
value: any;
|
|
571
|
+
};
|
|
572
|
+
};
|
|
573
|
+
type StdCallback$f = (inEvent: StdEventTarget$f) => void;
|
|
574
|
+
type AcMarkdownEditorProps = {
|
|
575
|
+
className?: string;
|
|
576
|
+
value?: string;
|
|
577
|
+
onChange?: StdCallback$f;
|
|
578
|
+
} & React.ComponentProps<typeof MarkdownEditor>;
|
|
579
|
+
declare class AcMarkdownEditor extends React.Component<AcMarkdownEditorProps> {
|
|
580
|
+
static displayName: string;
|
|
581
|
+
static formSchema: string;
|
|
582
|
+
static defaultProps: {};
|
|
583
|
+
handleChange: (inValue: string) => void;
|
|
584
|
+
render(): React.JSX.Element;
|
|
585
|
+
}
|
|
586
|
+
declare const AcMarkdownEditorFc: (props: AcMarkdownEditorProps) => React.JSX.Element;
|
|
587
|
+
|
|
567
588
|
interface Value {
|
|
568
589
|
option: string;
|
|
569
590
|
keyword: string;
|
|
@@ -977,13 +998,13 @@ declare class AcTable extends React.Component<AcTableProps, AcTableState> {
|
|
|
977
998
|
sync: UrlSyncFlat;
|
|
978
999
|
private defaultFetcher;
|
|
979
1000
|
get routerKey(): string;
|
|
980
|
-
get calculateColumnsAction(): {
|
|
1001
|
+
get calculateColumnsAction(): ColumnsType<any> | {
|
|
981
1002
|
title: any;
|
|
982
1003
|
dataIndex: string;
|
|
983
1004
|
key: string;
|
|
984
1005
|
width: number;
|
|
985
1006
|
render: (_: any, record: any) => React.JSX.Element;
|
|
986
|
-
}
|
|
1007
|
+
}[];
|
|
987
1008
|
get calculateColumns(): ColumnsType<antd_es__util_type.AnyObject> | undefined;
|
|
988
1009
|
constructor(props: AcTableProps);
|
|
989
1010
|
private initFetcher;
|
|
@@ -1530,4 +1551,4 @@ declare const useCommand: (inName?: string) => {
|
|
|
1530
1551
|
draft: (payload: Payload) => void;
|
|
1531
1552
|
};
|
|
1532
1553
|
|
|
1533
|
-
export { AcBreadcrumb, type AcBreadcrumbProps, AcCardExtras, type AcCardExtrasProps, AcCheckableDropdown, type AcCheckableDropdownProps, AcCheckableTag, AcCheckableTagFc, AcCheckableTagList, AcCheckableTagListFc, type AcCheckableTagListProps, type AcCheckableTagProps, AcCheckbox, AcCheckboxFc, AcCheckboxGroup, AcCheckboxGroupFc, type AcCheckboxGroupProps, type AcCheckboxProps, AcCodeFlask, AcCodeFlaskFc, AcColorPicker, AcColorPickerFc, type AcColorPickerProps, AcConfirmButton, type AcConfirmButtonProps, AcDatePicker, AcDatePickerFc, type AcDatePickerProps, AcEditableTagGroup, AcEditableTagGroupFc, type AcEditableTagGroupProps, AcExtraSearch, type AcExtraSearchProps, AcInput, AcInputCopyable, AcInputCopyableFc, AcInputFc, AcInputHidden, AcInputHiddenFc, AcInputNumber, AcInputNumberFc, type AcInputNumberProps, type AcInputProps, AcInputTags, AcInputTagsFc, type AcInputTagsProps, AcInputToken, AcInputTokenFc, type AcInputTokenProps, AcPreSelect, AcPreSelectFc, type AcPreSelectProps, AcRadioGroup, AcRadioGroupFc, type AcRadioGroupProps, AcRangePicker, AcRangePickerFc, type AcRangePickerProps, AcRate, AcRateFc, type AcRateProps, AcSearch, AcSearchFc, type AcSearchProps, AcSelect, AcSelectFc, type AcSelectProps, AcSlider, AcSliderFc, type AcSliderProps, AcSliderRange, AcSliderRangeFc, type AcSliderRangeProps, AcSwitch, AcSwitchFc, type AcSwitchProps, AcTable, AcTableLinks, type AcTableLinksProps, type AcTableProps, AcTableStatusSwitcher, type AcTableStatusSwitcherProps, AcTableToggleSwitcher, type AcTableToggleSwitcherProps, AcTextarea, AcTextareaFc, type AcTextareaProps, AcTimePicker, AcTimePickerFc, type AcTimePickerProps, AcTransfer, AcTransferFc, type AcTransferProps, AcTree, type AcTreeProps, AcTreeSelect, AcTreeSelectFc, type AcTreeSelectProps, AcUpload, AcUploadDragger, AcUploadDraggerFc, type AcUploadDraggerProps, AcUploadFc, AcUploadPicture, AcUploadPictureCard, AcUploadPictureCardFc, AcUploadPictureFc, type AcUploadProps, BtnBack, BtnCancel, BtnCopy, BtnCreate, BtnDelete, BtnEdit, BtnExport, BtnImport, BtnPreview, BtnRefresh, BtnSave, BtnSubmit, BtnSync, BtnView, FormActions, type FormActionsProps, type Locale, breadcrumbDefault, checkboxKv, checkboxRaw, initWidgets, kv, radioKv, radioRaw, raw, selectKv, selectRaw, transferLabel, treeKv, treeSelectKv, useCommand as useTableCommand };
|
|
1554
|
+
export { AcBreadcrumb, type AcBreadcrumbProps, AcCardExtras, type AcCardExtrasProps, AcCheckableDropdown, type AcCheckableDropdownProps, AcCheckableTag, AcCheckableTagFc, AcCheckableTagList, AcCheckableTagListFc, type AcCheckableTagListProps, type AcCheckableTagProps, AcCheckbox, AcCheckboxFc, AcCheckboxGroup, AcCheckboxGroupFc, type AcCheckboxGroupProps, type AcCheckboxProps, AcCodeFlask, AcCodeFlaskFc, AcColorPicker, AcColorPickerFc, type AcColorPickerProps, AcConfirmButton, type AcConfirmButtonProps, AcDatePicker, AcDatePickerFc, type AcDatePickerProps, AcEditableTagGroup, AcEditableTagGroupFc, type AcEditableTagGroupProps, AcExtraSearch, type AcExtraSearchProps, AcInput, AcInputCopyable, AcInputCopyableFc, AcInputFc, AcInputHidden, AcInputHiddenFc, AcInputNumber, AcInputNumberFc, type AcInputNumberProps, type AcInputProps, AcInputTags, AcInputTagsFc, type AcInputTagsProps, AcInputToken, AcInputTokenFc, type AcInputTokenProps, AcMarkdownEditor, AcMarkdownEditorFc, type AcMarkdownEditorProps, AcPreSelect, AcPreSelectFc, type AcPreSelectProps, AcRadioGroup, AcRadioGroupFc, type AcRadioGroupProps, AcRangePicker, AcRangePickerFc, type AcRangePickerProps, AcRate, AcRateFc, type AcRateProps, AcSearch, AcSearchFc, type AcSearchProps, AcSelect, AcSelectFc, type AcSelectProps, AcSlider, AcSliderFc, type AcSliderProps, AcSliderRange, AcSliderRangeFc, type AcSliderRangeProps, AcSwitch, AcSwitchFc, type AcSwitchProps, AcTable, AcTableLinks, type AcTableLinksProps, type AcTableProps, AcTableStatusSwitcher, type AcTableStatusSwitcherProps, AcTableToggleSwitcher, type AcTableToggleSwitcherProps, AcTextarea, AcTextareaFc, type AcTextareaProps, AcTimePicker, AcTimePickerFc, type AcTimePickerProps, AcTransfer, AcTransferFc, type AcTransferProps, AcTree, type AcTreeProps, AcTreeSelect, AcTreeSelectFc, type AcTreeSelectProps, AcUpload, AcUploadDragger, AcUploadDraggerFc, type AcUploadDraggerProps, AcUploadFc, AcUploadPicture, AcUploadPictureCard, AcUploadPictureCardFc, AcUploadPictureFc, type AcUploadProps, BtnBack, BtnCancel, BtnCopy, BtnCreate, BtnDelete, BtnEdit, BtnExport, BtnImport, BtnPreview, BtnRefresh, BtnSave, BtnSubmit, BtnSync, BtnView, FormActions, type FormActionsProps, type Locale, breadcrumbDefault, checkboxKv, checkboxRaw, initWidgets, kv, radioKv, radioRaw, raw, selectKv, selectRaw, transferLabel, treeKv, treeSelectKv, useCommand as useTableCommand };
|