@jswork/antd-components 1.0.221 → 1.0.223

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.
Files changed (49) hide show
  1. package/dist/main.cjs.js +1 -1
  2. package/dist/main.cjs.js.map +1 -1
  3. package/dist/main.d.mts +326 -495
  4. package/dist/main.d.ts +326 -495
  5. package/dist/main.esm.js +1 -1
  6. package/dist/main.esm.js.map +1 -1
  7. package/package.json +2 -3
  8. package/src/lib/_abstract-upload.tsx +1 -5
  9. package/src/lib/alert.tsx +16 -28
  10. package/src/lib/breadcrumb.tsx +1 -2
  11. package/src/lib/button.tsx +18 -20
  12. package/src/lib/card-extras.tsx +3 -8
  13. package/src/lib/checkable-dropdown.tsx +2 -3
  14. package/src/lib/checkable-tag-list.tsx +2 -3
  15. package/src/lib/checkable-tag.tsx +1 -2
  16. package/src/lib/checkbox-group.tsx +1 -3
  17. package/src/lib/checkbox.tsx +1 -2
  18. package/src/lib/color-picker.tsx +2 -3
  19. package/src/lib/confirm-button.tsx +2 -1
  20. package/src/lib/date-picker.tsx +2 -3
  21. package/src/lib/editable-tag-group.tsx +1 -2
  22. package/src/lib/extra-search.tsx +2 -8
  23. package/src/lib/form-actions.tsx +2 -1
  24. package/src/lib/input-number.tsx +1 -2
  25. package/src/lib/input-tags.tsx +1 -2
  26. package/src/lib/input-token.tsx +1 -2
  27. package/src/lib/input.tsx +1 -2
  28. package/src/lib/interactive-list.tsx +1 -7
  29. package/src/lib/markdown-editor.tsx +1 -2
  30. package/src/lib/radio-group.tsx +1 -3
  31. package/src/lib/range-picker.tsx +1 -3
  32. package/src/lib/rate.tsx +1 -2
  33. package/src/lib/search.tsx +1 -4
  34. package/src/lib/select.tsx +1 -4
  35. package/src/lib/slider-range.tsx +1 -2
  36. package/src/lib/slider.tsx +1 -2
  37. package/src/lib/switch.tsx +1 -2
  38. package/src/lib/table-links.tsx +4 -9
  39. package/src/lib/table-status-switcher.tsx +0 -6
  40. package/src/lib/table-toggle-switcher.tsx +0 -6
  41. package/src/lib/table.tsx +5 -18
  42. package/src/lib/textarea.tsx +1 -2
  43. package/src/lib/time-picker.tsx +1 -2
  44. package/src/lib/transfer.tsx +2 -4
  45. package/src/lib/tree-select.tsx +1 -2
  46. package/src/lib/types.ts +136 -0
  47. package/src/lib/upload-dragger.tsx +1 -2
  48. package/src/lib/upload.tsx +1 -3
  49. package/src/lib/use-table-command.ts +4 -3
package/dist/main.d.mts CHANGED
@@ -1,6 +1,7 @@
1
- import React, { HTMLAttributes, Component, ReactNode, FC } from 'react';
2
- import { BreadcrumbProps, MenuProps, CheckboxProps, ColorPickerProps, PopconfirmProps, ButtonProps, DatePickerProps, InputProps, InputNumberProps, RadioGroupProps, RateProps, SelectProps, SliderSingleProps, SwitchProps, TableProps, TimePickerProps, TransferProps, TreeProps, TreeSelectProps, UploadProps, UploadFile, SpaceProps } from 'antd';
1
+ import React$1, { HTMLAttributes, Component, ReactNode, FC } from 'react';
2
+ import { InputProps, BreadcrumbProps, MenuProps, CheckboxProps, ColorPickerProps, PopconfirmProps, ButtonProps, DatePickerProps, InputNumberProps, RadioGroupProps, RateProps, SelectProps, SliderSingleProps, SwitchProps, TableProps, TimePickerProps, TransferProps, TreeProps, TreeSelectProps, UploadProps, UploadFile, SpaceProps } from 'antd';
3
3
  import { TemplateArgs } from '@jswork/react-list';
4
+ import { NavigateFunction } from 'react-router-dom';
4
5
  import { SizeType } from 'antd/es/config-provider/SizeContext';
5
6
  import { CheckableTagProps } from 'antd/es/tag';
6
7
  import { CheckboxGroupProps } from 'antd/es/checkbox';
@@ -11,7 +12,6 @@ import { RangePickerProps } from 'antd/es/date-picker';
11
12
  import { SearchProps, TextAreaProps } from 'antd/es/input';
12
13
  import { SliderRangeProps } from 'antd/es/slider';
13
14
  import * as antd_es__util_type from 'antd/es/_util/type';
14
- import * as react_router_dom from 'react-router-dom';
15
15
  import { EventMittNamespace } from '@jswork/event-mitt';
16
16
  import UrlSyncFlat from '@jswork/url-sync-flat';
17
17
  import { ColumnsType } from 'antd/es/table';
@@ -21,48 +21,109 @@ import { UploadChangeParam } from 'antd/es/upload/interface';
21
21
  import { ReactComponent } from '@ebay/nice-form-react';
22
22
  import { ReactAntStatusSwitchProps } from '@jswork/react-ant-status-switch/dist/components';
23
23
 
24
- type StdEventTarget$s = {
24
+ /**
25
+ * Common TypeScript types for antd-components
26
+ * Shared types used across multiple components
27
+ */
28
+
29
+ /**
30
+ * Supported locale languages
31
+ * @example
32
+ * lang?: AppLocale;
33
+ */
34
+ type AppLocale = 'zh-CN' | 'en-US';
35
+ /**
36
+ * Custom event target for input components
37
+ * @description This is a custom type that wraps onChange values in a standard format.
38
+ * Antd components don't always return standard React events, so we normalize
39
+ * all onChange callbacks to use this consistent { target: { value } } structure.
40
+ * @example
41
+ * const handleChange = (event: StdEventTarget) => {
42
+ * console.log(event.target.value);
43
+ * };
44
+ * @template T The type of the value
45
+ */
46
+ type StdEventTarget<T = any> = {
25
47
  target: {
26
- value: any;
48
+ value: T;
27
49
  };
28
50
  };
29
- type StdCallback$s = (inEvent: StdEventTarget$s) => void;
51
+ /**
52
+ * Standard callback function for value changes
53
+ * @description Normalized onChange callback that accepts our custom event format.
54
+ * @example
55
+ * onChange?: (inEvent: StdEventTarget) => void;
56
+ * @template T The type of the value
57
+ */
58
+ type StdCallback<T = any> = (inEvent: StdEventTarget<T>) => void;
59
+ /**
60
+ * Template callback for rendering items
61
+ * @example
62
+ * renderItem?: (item: { item: any; index: number }) => React.ReactNode;
63
+ */
64
+ type TemplateCallback<T = any> = (item: {
65
+ item: T;
66
+ index: number;
67
+ }, options?: any) => React.ReactNode;
68
+ /**
69
+ * API fetcher parameters
70
+ */
71
+ interface FetcherParams {
72
+ current: number;
73
+ pageSize: number;
74
+ params?: Record<string, any>;
75
+ }
76
+ /**
77
+ * API fetcher response
78
+ */
79
+ type FetcherResponse<T = any> = Promise<{
80
+ data: T[];
81
+ total: number;
82
+ }>;
83
+ declare global {
84
+ interface NxStatic {
85
+ $event: any;
86
+ $api: Record<string, any>;
87
+ $nav: NavigateFunction;
88
+ err: (msg: string) => any;
89
+ msg: (msg: string) => any;
90
+ info: (msg: string) => any;
91
+ alert: (msg: string, title?: String) => any;
92
+ confirm: (msg: string, title?: String) => any;
93
+ prompt: (msg: string, options?: InputProps) => any;
94
+ }
95
+ }
96
+
30
97
  type AcBreadcrumbProps = {
31
98
  className?: string;
32
99
  items?: any[];
33
- template?: (args: TemplateArgs) => React.ReactNode;
100
+ template?: (args: TemplateArgs) => React$1.ReactNode;
34
101
  value?: number;
35
- onChange?: StdCallback$s;
102
+ onChange?: StdCallback;
36
103
  } & BreadcrumbProps;
37
- declare class AcBreadcrumb extends React.Component<AcBreadcrumbProps> {
104
+ declare class AcBreadcrumb extends React$1.Component<AcBreadcrumbProps> {
38
105
  static displayName: string;
39
106
  static defaultProps: {
40
107
  template: ({ item, index, items }: {
41
108
  item: any;
42
109
  index: any;
43
110
  items: any;
44
- }) => React.JSX.Element;
111
+ }) => React$1.JSX.Element;
45
112
  };
46
- render(): React.JSX.Element;
113
+ render(): React$1.JSX.Element;
47
114
  }
48
115
 
49
- type StdEventTarget$r = {
50
- target: {
51
- value: any;
52
- };
53
- };
54
- type StdCallback$r = (inEvent: StdEventTarget$r) => void;
55
116
  type AcCheckableDropdownProps = {
56
117
  className?: string;
57
- lang?: string;
118
+ lang?: AppLocale;
58
119
  items?: any[];
59
120
  value?: any[];
60
121
  width?: number;
61
122
  size?: SizeType;
62
123
  disabled?: boolean;
63
- onChange?: StdCallback$r;
124
+ onChange?: StdCallback;
64
125
  };
65
- declare class AcCheckableDropdown extends React.Component<AcCheckableDropdownProps> {
126
+ declare class AcCheckableDropdown extends React$1.Component<AcCheckableDropdownProps> {
66
127
  static displayName: string;
67
128
  static formSchema: string;
68
129
  static id: number;
@@ -91,15 +152,9 @@ declare class AcCheckableDropdown extends React.Component<AcCheckableDropdownPro
91
152
  * todo: 有朝一日,找出原因
92
153
  * 这里的 button disabled 不能生效,除非在 dropdown 内层套一个 Fragment。
93
154
  */
94
- render(): React.JSX.Element;
155
+ render(): React$1.JSX.Element;
95
156
  }
96
157
 
97
- type StdEventTarget$q = {
98
- target: {
99
- value: any;
100
- };
101
- };
102
- type StdCallback$q = (inEvent: StdEventTarget$q) => void;
103
158
  /**
104
159
  * @see https://ant.design/components/tag-cn/#Tag.CheckableTag
105
160
  */
@@ -110,10 +165,10 @@ type AcCheckableTagProps = {
110
165
  closeable?: boolean;
111
166
  toggleable?: boolean;
112
167
  propagation?: boolean;
113
- onChange?: StdCallback$q;
114
- onCloseClick?: StdCallback$q;
168
+ onChange?: StdCallback;
169
+ onCloseClick?: StdCallback;
115
170
  } & Omit<CheckableTagProps, 'checked'>;
116
- declare class AcCheckableTag extends React.Component<AcCheckableTagProps> {
171
+ declare class AcCheckableTag extends React$1.Component<AcCheckableTagProps> {
117
172
  static displayName: string;
118
173
  static formSchema: string;
119
174
  static defaultProps: {
@@ -126,20 +181,14 @@ declare class AcCheckableTag extends React.Component<AcCheckableTagProps> {
126
181
  state: {
127
182
  value: boolean;
128
183
  };
129
- get closeIcon(): React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
184
+ get closeIcon(): React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>> | null;
130
185
  shouldComponentUpdate(nextProps: Readonly<AcCheckableTagProps>): boolean;
131
186
  handleChange: (inEvent: any) => void;
132
187
  handleCloseClick: (inEvent: any) => void;
133
- render(): React.JSX.Element;
188
+ render(): React$1.JSX.Element;
134
189
  }
135
- declare const AcCheckableTagFc: (props: AcCheckableTagProps) => React.JSX.Element;
190
+ declare const AcCheckableTagFc: (props: AcCheckableTagProps) => React$1.JSX.Element;
136
191
 
137
- type StdEventTarget$p = {
138
- target: {
139
- value: any;
140
- };
141
- };
142
- type StdCallback$p = (inEvent: StdEventTarget$p) => void;
143
192
  type AcCheckableTagListProps = {
144
193
  /**
145
194
  * Main className.
@@ -148,7 +197,7 @@ type AcCheckableTagListProps = {
148
197
  /**
149
198
  * The language key.
150
199
  */
151
- lang?: string;
200
+ lang?: AppLocale;
152
201
  /**
153
202
  * The component data soruce.
154
203
  */
@@ -160,13 +209,13 @@ type AcCheckableTagListProps = {
160
209
  /**
161
210
  * The event handler for `change`.
162
211
  */
163
- onChange?: StdCallback$p;
212
+ onChange?: StdCallback;
164
213
  /**
165
214
  * The disabled state.
166
215
  */
167
216
  disabled?: boolean;
168
217
  };
169
- declare class AcCheckableTagList extends React.Component<AcCheckableTagListProps> {
218
+ declare class AcCheckableTagList extends React$1.Component<AcCheckableTagListProps> {
170
219
  static displayName: string;
171
220
  static formSchema: string;
172
221
  static defaultProps: {
@@ -180,22 +229,16 @@ declare class AcCheckableTagList extends React.Component<AcCheckableTagListProps
180
229
  shouldComponentUpdate(nextProps: Readonly<AcCheckableTagListProps>): boolean;
181
230
  handleChange: (inEvent: any) => void;
182
231
  handleClearAll: () => void;
183
- render(): React.JSX.Element;
232
+ render(): React$1.JSX.Element;
184
233
  }
185
- declare const AcCheckableTagListFc: (props: AcCheckableTagListProps) => React.JSX.Element;
234
+ declare const AcCheckableTagListFc: (props: AcCheckableTagListProps) => React$1.JSX.Element;
186
235
 
187
- type StdEventTarget$o = {
188
- target: {
189
- value: any;
190
- };
191
- };
192
- type StdCallback$o = (inEvent: StdEventTarget$o) => void;
193
236
  type AcCheckboxProps = {
194
237
  className?: string;
195
238
  value?: boolean;
196
- onChange?: StdCallback$o;
239
+ onChange?: StdCallback;
197
240
  } & CheckboxProps & HTMLAttributes<any>;
198
- declare class AcCheckbox extends React.Component<AcCheckboxProps> {
241
+ declare class AcCheckbox extends React$1.Component<AcCheckboxProps> {
199
242
  static displayName: string;
200
243
  static formSchema: string;
201
244
  static defaultProps: {};
@@ -204,65 +247,49 @@ declare class AcCheckbox extends React.Component<AcCheckboxProps> {
204
247
  };
205
248
  shouldComponentUpdate(nextProps: Readonly<AcCheckboxProps>): boolean;
206
249
  handleChange: (inEvent: any) => void;
207
- render(): React.JSX.Element;
250
+ render(): React$1.JSX.Element;
208
251
  }
209
- declare const AcCheckboxFc: (props: AcCheckboxProps) => React.JSX.Element;
252
+ declare const AcCheckboxFc: (props: AcCheckboxProps) => React$1.JSX.Element;
210
253
 
211
- type StdEventTarget$n = {
212
- target: {
213
- value: any;
214
- };
215
- };
216
- type StdCallback$n = (inEvent: StdEventTarget$n) => void;
217
- type TemplateCallback$3 = (item: {
218
- item: any;
219
- index: number;
220
- }) => React.ReactNode;
221
254
  type AcCheckboxGroupProps = {
222
255
  className?: string;
223
256
  value?: any[];
224
257
  items?: any[];
225
- onChange?: StdCallback$n;
226
- onSearch?: StdCallback$n;
227
- template?: TemplateCallback$3;
258
+ onChange?: StdCallback;
259
+ onSearch?: StdCallback;
260
+ template?: TemplateCallback;
228
261
  } & CheckboxGroupProps;
229
- declare class AcCheckboxGroup extends React.Component<AcCheckboxGroupProps> {
262
+ declare class AcCheckboxGroup extends React$1.Component<AcCheckboxGroupProps> {
230
263
  static displayName: string;
231
264
  static formSchema: string;
232
265
  static defaultProps: {
233
266
  items: never[];
234
267
  value: never[];
235
- template: (args: any) => React.JSX.Element;
268
+ template: (args: any) => React$1.JSX.Element;
236
269
  };
237
270
  state: {
238
271
  value: any[] | undefined;
239
272
  };
240
273
  shouldComponentUpdate(nextProps: Readonly<AcCheckboxGroupProps>): boolean;
241
274
  handleChange: (inEvent: any) => void;
242
- render(): React.JSX.Element;
275
+ render(): React$1.JSX.Element;
243
276
  }
244
- declare const AcCheckboxGroupFc: (props: AcCheckboxGroupProps) => React.JSX.Element;
277
+ declare const AcCheckboxGroupFc: (props: AcCheckboxGroupProps) => React$1.JSX.Element;
245
278
 
246
- declare class AcCodeFlask extends React.Component {
279
+ declare class AcCodeFlask extends React$1.Component {
247
280
  static displayName: string;
248
281
  static formSchema: string;
249
282
  static defaultProps: {};
250
- render(): React.JSX.Element;
283
+ render(): React$1.JSX.Element;
251
284
  }
252
- declare const AcCodeFlaskFc: (props: any) => React.JSX.Element;
285
+ declare const AcCodeFlaskFc: (props: any) => React$1.JSX.Element;
253
286
 
254
- type StdEventTarget$m = {
255
- target: {
256
- value: string;
257
- };
258
- };
259
- type StdCallback$m = (inEvent: StdEventTarget$m) => void;
260
287
  type AcColorPickerProps = {
261
288
  className?: string;
262
289
  value?: string;
263
- onChange?: StdCallback$m;
290
+ onChange?: StdCallback<string>;
264
291
  } & Omit<ColorPickerProps, 'value' | 'onChange'>;
265
- declare class AcColorPicker extends React.Component<AcColorPickerProps> {
292
+ declare class AcColorPicker extends React$1.Component<AcColorPickerProps> {
266
293
  static displayName: string;
267
294
  static formSchema: string;
268
295
  static defaultProps: {};
@@ -272,18 +299,18 @@ declare class AcColorPicker extends React.Component<AcColorPickerProps> {
272
299
  shouldComponentUpdate(inProps: Readonly<AcColorPickerProps>): boolean;
273
300
  handleChange: (inColor: any) => void;
274
301
  handleClear: () => void;
275
- render(): React.JSX.Element;
302
+ render(): React$1.JSX.Element;
276
303
  }
277
- declare const AcColorPickerFc: (props: AcColorPickerProps) => React.JSX.Element;
304
+ declare const AcColorPickerFc: (props: AcColorPickerProps) => React$1.JSX.Element;
278
305
 
279
306
  interface AcConfirmButtonProps extends Omit<PopconfirmProps, 'title'> {
280
307
  className?: string;
281
- lang?: string;
308
+ lang?: AppLocale;
282
309
  title?: string;
283
310
  type?: ButtonProps['type'] | 'raw' | 'anchor';
284
311
  childProps?: ButtonProps;
285
- onClick?: React.MouseEventHandler<HTMLElement>;
286
- children?: React.ReactNode;
312
+ onClick?: React$1.MouseEventHandler<HTMLElement>;
313
+ children?: React$1.ReactNode;
287
314
  }
288
315
  declare class AcConfirmButton extends Component<AcConfirmButtonProps> {
289
316
  static displayName: string;
@@ -293,40 +320,28 @@ declare class AcConfirmButton extends Component<AcConfirmButtonProps> {
293
320
  type: string;
294
321
  childProps: {};
295
322
  };
296
- get computedChildren(): string | number | boolean | React.JSX.Element | Iterable<React.ReactNode> | null | undefined;
323
+ get computedChildren(): string | number | boolean | React$1.JSX.Element | Iterable<React$1.ReactNode> | null | undefined;
297
324
  handleCancel: () => void;
298
325
  t: (key: string) => any;
299
- render(): React.JSX.Element;
326
+ render(): React$1.JSX.Element;
300
327
  }
301
328
 
302
- type StdEventTarget$l = {
303
- target: {
304
- value: string;
305
- };
306
- };
307
- type StdCallback$l = (inEvent: StdEventTarget$l) => void;
308
329
  type AcDatePickerProps = Omit<DatePickerProps, 'value' | 'onChange' | 'ref'> & {
309
330
  className?: string;
310
331
  value?: any;
311
- onChange?: StdCallback$l;
332
+ onChange?: StdCallback<string>;
312
333
  };
313
- declare class AcDatePicker extends React.Component<AcDatePickerProps> {
334
+ declare class AcDatePicker extends React$1.Component<AcDatePickerProps> {
314
335
  static displayName: string;
315
336
  static formSchema: string;
316
337
  static defaultProps: AcDatePickerProps;
317
338
  get valueFormat(): any;
318
339
  get value(): any;
319
340
  handleChange: (value: any) => void;
320
- render(): React.JSX.Element;
341
+ render(): React$1.JSX.Element;
321
342
  }
322
- declare const AcDatePickerFc: (props: AcDatePickerProps) => React.JSX.Element;
343
+ declare const AcDatePickerFc: (props: AcDatePickerProps) => React$1.JSX.Element;
323
344
 
324
- type StdEventTarget$k = {
325
- target: {
326
- value: any;
327
- };
328
- };
329
- type StdCallback$k = (inEvent: StdEventTarget$k) => void;
330
345
  type AcEditableTagGroupProps = {
331
346
  /**
332
347
  * The extended className for component.
@@ -339,7 +354,7 @@ type AcEditableTagGroupProps = {
339
354
  /**
340
355
  * The change handler.
341
356
  */
342
- onChange?: StdCallback$k;
357
+ onChange?: StdCallback;
343
358
  /**
344
359
  * The minimum tag number.
345
360
  */
@@ -361,7 +376,7 @@ type AcEditableTagGroupProps = {
361
376
  */
362
377
  triggers?: string[];
363
378
  };
364
- declare class AcEditableTagGroup extends React.Component<AcEditableTagGroupProps> {
379
+ declare class AcEditableTagGroup extends React$1.Component<AcEditableTagGroupProps> {
365
380
  static displayName: string;
366
381
  static formSchema: string;
367
382
  static defaultProps: {
@@ -384,8 +399,8 @@ declare class AcEditableTagGroup extends React.Component<AcEditableTagGroupProps
384
399
  template: ({ item, index }: {
385
400
  item: any;
386
401
  index: any;
387
- }, cb: any) => React.JSX.Element;
388
- templateCreate: () => React.JSX.Element | null;
402
+ }, cb: any) => React$1.JSX.Element;
403
+ templateCreate: () => React$1.JSX.Element | null;
389
404
  /**
390
405
  * Default item's value.
391
406
  */
@@ -407,22 +422,16 @@ declare class AcEditableTagGroup extends React.Component<AcEditableTagGroupProps
407
422
  componentDidMount(): void;
408
423
  componentWillUnmount(): void;
409
424
  shouldComponentUpdate(nextProps: Readonly<AcEditableTagGroupProps>): boolean;
410
- render(): React.JSX.Element;
425
+ render(): React$1.JSX.Element;
411
426
  }
412
- declare const AcEditableTagGroupFc: (props: AcEditableTagGroupProps) => React.JSX.Element;
427
+ declare const AcEditableTagGroupFc: (props: AcEditableTagGroupProps) => React$1.JSX.Element;
413
428
 
414
- type StdEventTarget$j = {
415
- target: {
416
- value: any;
417
- };
418
- };
419
- type StdCallback$j = (inEvent: StdEventTarget$j) => void;
420
429
  type AcInputProps = {
421
430
  className?: string;
422
- onChange?: StdCallback$j;
431
+ onChange?: StdCallback;
423
432
  autoComplete?: boolean;
424
433
  } & InputProps;
425
- declare class AcInput extends React.Component<AcInputProps> {
434
+ declare class AcInput extends React$1.Component<AcInputProps> {
426
435
  static displayName: string;
427
436
  static formSchema: string;
428
437
  static defaultProps: {
@@ -434,9 +443,9 @@ declare class AcInput extends React.Component<AcInputProps> {
434
443
  shouldComponentUpdate(inProps: Readonly<AcInputProps>): boolean;
435
444
  handleChange: (inEvent: any) => void;
436
445
  get complete(): "off" | "on";
437
- render(): React.JSX.Element;
446
+ render(): React$1.JSX.Element;
438
447
  }
439
- declare const AcInputFc: (props: AcInputProps) => React.JSX.Element;
448
+ declare const AcInputFc: (props: AcInputProps) => React$1.JSX.Element;
440
449
 
441
450
  type AcInputCopyableValueType = 'text' | 'link';
442
451
  interface AcInputCopyableProps extends AcInputProps {
@@ -445,41 +454,35 @@ interface AcInputCopyableProps extends AcInputProps {
445
454
  interface AcInputCopyableState {
446
455
  value?: ValueType;
447
456
  }
448
- declare class AcInputCopyable extends React.Component<AcInputCopyableProps, AcInputCopyableState> {
457
+ declare class AcInputCopyable extends React$1.Component<AcInputCopyableProps, AcInputCopyableState> {
449
458
  static displayName: string;
450
459
  static formSchema: string;
451
460
  static defaultProps: {
452
461
  valueType: string;
453
462
  };
454
463
  constructor(props: AcInputCopyableProps);
455
- get copyView(): React.JSX.Element;
456
- get linkView(): React.JSX.Element | null;
464
+ get copyView(): React$1.JSX.Element;
465
+ get linkView(): React$1.JSX.Element | null;
457
466
  shouldComponentUpdate(props: Readonly<AcInputProps>): boolean;
458
467
  handleInputChange: (e: any) => void;
459
- render(): React.JSX.Element;
468
+ render(): React$1.JSX.Element;
460
469
  }
461
- declare const AcInputCopyableFc: (props: AcInputCopyableProps) => React.JSX.Element;
470
+ declare const AcInputCopyableFc: (props: AcInputCopyableProps) => React$1.JSX.Element;
462
471
 
463
- declare class AcInputHidden extends React.Component {
472
+ declare class AcInputHidden extends React$1.Component {
464
473
  static displayName: string;
465
474
  static formSchema: string;
466
475
  static defaultProps: {};
467
- render(): React.JSX.Element;
476
+ render(): React$1.JSX.Element;
468
477
  }
469
- declare const AcInputHiddenFc: (props: InputProps) => React.JSX.Element;
478
+ declare const AcInputHiddenFc: (props: InputProps) => React$1.JSX.Element;
470
479
 
471
- type StdEventTarget$i = {
472
- target: {
473
- value: any;
474
- };
475
- };
476
- type StdCallback$i = (inEvent: StdEventTarget$i) => void;
477
480
  type AcInputNumberProps = {
478
481
  className?: string;
479
482
  value?: number;
480
- onChange?: StdCallback$i;
483
+ onChange?: StdCallback;
481
484
  } & InputNumberProps;
482
- declare class AcInputNumber extends React.Component<AcInputNumberProps> {
485
+ declare class AcInputNumber extends React$1.Component<AcInputNumberProps> {
483
486
  static displayName: string;
484
487
  static formSchema: string;
485
488
  static defaultProps: {};
@@ -488,35 +491,29 @@ declare class AcInputNumber extends React.Component<AcInputNumberProps> {
488
491
  };
489
492
  shouldComponentUpdate(inProps: Readonly<AcInputNumberProps>): boolean;
490
493
  handleChange: (inEvent: any) => void;
491
- render(): React.JSX.Element;
494
+ render(): React$1.JSX.Element;
492
495
  }
493
- declare const AcInputNumberFc: (props: AcInputNumberProps) => React.JSX.Element;
496
+ declare const AcInputNumberFc: (props: AcInputNumberProps) => React$1.JSX.Element;
494
497
 
495
- type StdEventTarget$h = {
496
- target: {
497
- value: any;
498
- };
499
- };
500
- type StdCallback$h = (inEvent: StdEventTarget$h) => void;
501
498
  type AcInputTagsProps = {
502
499
  className?: string;
503
500
  items?: string[];
504
501
  disabled?: boolean;
505
- onChange?: StdCallback$h;
506
- } & React.HTMLAttributes<HTMLDivElement>;
502
+ onChange?: StdCallback;
503
+ } & React$1.HTMLAttributes<HTMLDivElement>;
507
504
  type State$1 = {
508
505
  items?: string[];
509
506
  inputValue: string;
510
507
  isComposite: boolean;
511
508
  };
512
- declare class AcInputTags extends React.Component<AcInputTagsProps, State$1> {
509
+ declare class AcInputTags extends React$1.Component<AcInputTagsProps, State$1> {
513
510
  static displayName: string;
514
511
  static formSchema: string;
515
512
  static defaultProps: {
516
513
  items: never[];
517
514
  disabled: boolean;
518
515
  };
519
- inputRef: React.RefObject<HTMLInputElement>;
516
+ inputRef: React$1.RefObject<HTMLInputElement>;
520
517
  constructor(inProps: any);
521
518
  shouldComponentUpdate(nextProps: Readonly<AcInputTagsProps>): boolean;
522
519
  handleInputChange: (inEvent: any) => void;
@@ -524,25 +521,19 @@ declare class AcInputTags extends React.Component<AcInputTagsProps, State$1> {
524
521
  handleTagRemove: (inIndex: any, inForce?: boolean) => void;
525
522
  handleMouseEnter: () => void;
526
523
  execChange: (inItems: any) => void;
527
- render(): React.JSX.Element;
524
+ render(): React$1.JSX.Element;
528
525
  }
529
- declare const AcInputTagsFc: (props: AcInputTagsProps) => React.JSX.Element;
526
+ declare const AcInputTagsFc: (props: AcInputTagsProps) => React$1.JSX.Element;
530
527
 
531
- type StdEventTarget$g = {
532
- target: {
533
- value: any;
534
- };
535
- };
536
- type StdCallback$g = (inEvent: StdEventTarget$g) => void;
537
528
  type AcInputTokenProps = {
538
529
  className?: string;
539
530
  value?: string;
540
- onChange?: StdCallback$g;
531
+ onChange?: StdCallback;
541
532
  autoComplete?: boolean;
542
533
  labelCreate?: string;
543
534
  labelRemove?: string;
544
535
  } & InputProps;
545
- declare class AcInputToken extends React.Component<AcInputTokenProps> {
536
+ declare class AcInputToken extends React$1.Component<AcInputTokenProps> {
546
537
  static displayName: string;
547
538
  static formSchema: string;
548
539
  static defaultProps: {
@@ -556,34 +547,28 @@ declare class AcInputToken extends React.Component<AcInputTokenProps> {
556
547
  };
557
548
  shouldComponentUpdate(nextProps: Readonly<AcInputTokenProps>): boolean;
558
549
  get complete(): "off" | "on";
559
- get tokenView(): React.JSX.Element;
550
+ get tokenView(): React$1.JSX.Element;
560
551
  handleTokenCreate: () => void;
561
552
  handleTokenRemove: () => void;
562
553
  handleChange: (inEvent: any) => void;
563
554
  doChange: (inValue: any) => void;
564
- render(): React.JSX.Element;
555
+ render(): React$1.JSX.Element;
565
556
  }
566
- declare const AcInputTokenFc: (props: AcInputTokenProps) => React.JSX.Element;
557
+ declare const AcInputTokenFc: (props: AcInputTokenProps) => React$1.JSX.Element;
567
558
 
568
- type StdEventTarget$f = {
569
- target: {
570
- value: any;
571
- };
572
- };
573
- type StdCallback$f = (inEvent: StdEventTarget$f) => void;
574
559
  type AcMarkdownEditorProps = {
575
560
  className?: string;
576
561
  value?: string;
577
- onChange?: StdCallback$f;
578
- } & React.ComponentProps<typeof MarkdownEditor>;
579
- declare class AcMarkdownEditor extends React.Component<AcMarkdownEditorProps> {
562
+ onChange?: StdCallback;
563
+ } & React$1.ComponentProps<typeof MarkdownEditor>;
564
+ declare class AcMarkdownEditor extends React$1.Component<AcMarkdownEditorProps> {
580
565
  static displayName: string;
581
566
  static formSchema: string;
582
567
  static defaultProps: {};
583
568
  handleChange: (inValue: string) => void;
584
- render(): React.JSX.Element;
569
+ render(): React$1.JSX.Element;
585
570
  }
586
- declare const AcMarkdownEditorFc: (props: AcMarkdownEditorProps) => React.JSX.Element;
571
+ declare const AcMarkdownEditorFc: (props: AcMarkdownEditorProps) => React$1.JSX.Element;
587
572
 
588
573
  interface Value {
589
574
  option: string;
@@ -623,7 +608,7 @@ type AcPreSelectProps = {
623
608
  */
624
609
  inputOptions?: any;
625
610
  };
626
- declare class AcPreSelect extends React.Component<AcPreSelectProps> {
611
+ declare class AcPreSelect extends React$1.Component<AcPreSelectProps> {
627
612
  static displayName: string;
628
613
  static formSchema: string;
629
614
  static version: string;
@@ -633,43 +618,33 @@ declare class AcPreSelect extends React.Component<AcPreSelectProps> {
633
618
  state: {
634
619
  value: Value | undefined;
635
620
  };
636
- get addonView(): React.JSX.Element;
621
+ get addonView(): React$1.JSX.Element;
637
622
  handleFiledAction: (inField: any, inEvent: any, inCallback: any) => void;
638
623
  handleChange: (inField: any, inEvent: any) => void;
639
624
  handleSearch: (inField: any, inEvent: any) => void;
640
- render(): React.JSX.Element;
625
+ render(): React$1.JSX.Element;
641
626
  }
642
- declare const AcPreSelectFc: (props: AcPreSelectProps) => React.JSX.Element;
627
+ declare const AcPreSelectFc: (props: AcPreSelectProps) => React$1.JSX.Element;
643
628
 
644
- type StdEventTarget$e = {
645
- target: {
646
- value: any;
647
- };
648
- };
649
- type StdCallback$e = (inEvent: StdEventTarget$e) => void;
650
- type TemplateCallback$2 = (item: {
651
- item: any;
652
- index: number;
653
- }, opts?: any) => React.ReactNode;
654
629
  type AcRadioGroupProps = {
655
630
  className?: string;
656
631
  value?: any;
657
632
  defaultValue?: any;
658
633
  items?: any[];
659
- onChange?: StdCallback$e;
660
- onSearch?: StdCallback$e;
661
- template?: TemplateCallback$2;
634
+ onChange?: StdCallback;
635
+ onSearch?: StdCallback;
636
+ template?: TemplateCallback;
662
637
  templateOptions?: any;
663
638
  buttonStyle?: 'solid' | 'outline';
664
639
  } & RadioGroupProps & HTMLAttributes<any>;
665
- declare class AcRadioGroup extends React.Component<AcRadioGroupProps> {
640
+ declare class AcRadioGroup extends React$1.Component<AcRadioGroupProps> {
666
641
  static displayName: string;
667
642
  static formSchema: string;
668
643
  static defaultProps: {
669
644
  items: never[];
670
- template: (args: any, opts: any) => React.JSX.Element;
645
+ template: (args: any, opts: any) => React$1.JSX.Element;
671
646
  };
672
- get templateCallback(): (item: any) => React.ReactNode;
647
+ get templateCallback(): (item: any) => React$1.ReactNode;
673
648
  state: {
674
649
  value: any;
675
650
  };
@@ -677,23 +652,17 @@ declare class AcRadioGroup extends React.Component<AcRadioGroupProps> {
677
652
  value: any;
678
653
  } | null;
679
654
  handleChange: (inEvent: any) => void;
680
- render(): React.JSX.Element;
655
+ render(): React$1.JSX.Element;
681
656
  }
682
- declare const AcRadioGroupFc: (props: AcRadioGroupProps) => React.JSX.Element;
657
+ declare const AcRadioGroupFc: (props: AcRadioGroupProps) => React$1.JSX.Element;
683
658
 
684
- type StdEventTarget$d = {
685
- target: {
686
- value: any;
687
- };
688
- };
689
- type StdCallback$d = (inEvent: StdEventTarget$d) => void;
690
659
  type AcRangePickerProps = {
691
660
  className?: string;
692
661
  value?: any;
693
662
  defaultValue?: any;
694
- onChange?: StdCallback$d;
663
+ onChange?: StdCallback;
695
664
  } & RangePickerProps;
696
- declare class AcRangePicker extends React.Component<AcRangePickerProps> {
665
+ declare class AcRangePicker extends React$1.Component<AcRangePickerProps> {
697
666
  static displayName: string;
698
667
  static formSchema: string;
699
668
  static defaultProps: {
@@ -702,43 +671,31 @@ declare class AcRangePicker extends React.Component<AcRangePickerProps> {
702
671
  handleChange: (inEvent: any) => void;
703
672
  parse: (inValue: any) => any;
704
673
  stringify: (inValue: any) => any;
705
- render(): React.JSX.Element;
674
+ render(): React$1.JSX.Element;
706
675
  }
707
- declare const AcRangePickerFc: (props: AcRangePickerProps) => React.JSX.Element;
676
+ declare const AcRangePickerFc: (props: AcRangePickerProps) => React$1.JSX.Element;
708
677
 
709
- type StdEventTarget$c = {
710
- target: {
711
- value: any;
712
- };
713
- };
714
- type StdCallback$c = (inEvent: StdEventTarget$c) => void;
715
678
  type AcRateProps = {
716
679
  className?: string;
717
680
  value?: number;
718
- onChange?: StdCallback$c;
681
+ onChange?: StdCallback;
719
682
  } & RateProps;
720
- declare class AcRate extends React.Component<AcRateProps> {
683
+ declare class AcRate extends React$1.Component<AcRateProps> {
721
684
  static displayName: string;
722
685
  static formSchema: string;
723
686
  static defaultProps: {};
724
687
  handleChange: (inEvent: any) => void;
725
- render(): React.JSX.Element;
688
+ render(): React$1.JSX.Element;
726
689
  }
727
- declare const AcRateFc: (props: AcRateProps) => React.JSX.Element;
690
+ declare const AcRateFc: (props: AcRateProps) => React$1.JSX.Element;
728
691
 
729
- type StdEventTarget$b = {
730
- target: {
731
- value: any;
732
- };
733
- };
734
- type StdCallback$b = (inEvent: StdEventTarget$b) => void;
735
692
  type AcSearchProps = {
736
693
  value?: string;
737
- onChange?: StdCallback$b;
738
- onSearch?: StdCallback$b;
694
+ onChange?: StdCallback;
695
+ onSearch?: StdCallback;
739
696
  autoComplete?: boolean;
740
697
  } & SearchProps;
741
- declare class AcSearch extends React.Component<AcSearchProps> {
698
+ declare class AcSearch extends React$1.Component<AcSearchProps> {
742
699
  static displayName: string;
743
700
  static formSchema: string;
744
701
  static defaultProps: {
@@ -747,29 +704,19 @@ declare class AcSearch extends React.Component<AcSearchProps> {
747
704
  };
748
705
  get complete(): "off" | "on";
749
706
  handleSearch: (inEvent: any) => void;
750
- render(): React.JSX.Element;
707
+ render(): React$1.JSX.Element;
751
708
  }
752
- declare const AcSearchFc: (props: AcSearchProps) => React.JSX.Element;
709
+ declare const AcSearchFc: (props: AcSearchProps) => React$1.JSX.Element;
753
710
 
754
- type StdEventTarget$a = {
755
- target: {
756
- value: any;
757
- };
758
- };
759
- type StdCallback$a = (inEvent: StdEventTarget$a) => void;
760
- type TemplateCallback$1 = (item: {
761
- item: any;
762
- index: number;
763
- }) => React.ReactNode;
764
711
  type AcSelectProps = {
765
712
  className?: string;
766
713
  items?: any[];
767
714
  kv?: Record<string, string>;
768
- onChange?: StdCallback$a;
769
- onSearch?: StdCallback$a;
770
- template?: TemplateCallback$1;
715
+ onChange?: StdCallback;
716
+ onSearch?: StdCallback;
717
+ template?: TemplateCallback;
771
718
  } & Omit<SelectProps, 'options'>;
772
- declare class AcSelect extends React.Component<AcSelectProps> {
719
+ declare class AcSelect extends React$1.Component<AcSelectProps> {
773
720
  static displayName: string;
774
721
  static formSchema: string;
775
722
  static defaultProps: {
@@ -779,69 +726,51 @@ declare class AcSelect extends React.Component<AcSelectProps> {
779
726
  label: string;
780
727
  value: string;
781
728
  };
782
- template: (args: any) => React.JSX.Element;
729
+ template: (args: any) => React$1.JSX.Element;
783
730
  };
784
731
  state: {
785
732
  value: any;
786
733
  };
787
734
  shouldComponentUpdate(nextProps: Readonly<AcSelectProps>): boolean;
788
735
  handleChange: (inValue: any) => void;
789
- template: (args: any) => string | number | boolean | React.JSX.Element | Iterable<React.ReactNode> | null | undefined;
790
- render(): React.JSX.Element;
736
+ template: (args: any) => string | number | boolean | React$1.JSX.Element | Iterable<React$1.ReactNode> | null | undefined;
737
+ render(): React$1.JSX.Element;
791
738
  }
792
- declare const AcSelectFc: (props: AcSelectProps) => React.JSX.Element;
739
+ declare const AcSelectFc: (props: AcSelectProps) => React$1.JSX.Element;
793
740
 
794
- type StdEventTarget$9 = {
795
- target: {
796
- value: any;
797
- };
798
- };
799
- type StdCallback$9 = (inEvent: StdEventTarget$9) => void;
800
741
  type AcSliderProps = {
801
742
  className?: string;
802
- onChange?: StdCallback$9;
743
+ onChange?: StdCallback;
803
744
  } & SliderSingleProps;
804
- declare class AcSlider extends React.Component<AcSliderProps> {
745
+ declare class AcSlider extends React$1.Component<AcSliderProps> {
805
746
  static displayName: string;
806
747
  static formSchema: string;
807
748
  static defaultProps: {};
808
749
  handleChange: (inEvent: any) => void;
809
- render(): React.JSX.Element;
750
+ render(): React$1.JSX.Element;
810
751
  }
811
- declare const AcSliderFc: (props: AcSliderProps) => React.JSX.Element;
752
+ declare const AcSliderFc: (props: AcSliderProps) => React$1.JSX.Element;
812
753
 
813
- type StdEventTarget$8 = {
814
- target: {
815
- value: any;
816
- };
817
- };
818
- type StdCallback$8 = (inEvent: StdEventTarget$8) => void;
819
754
  type AcSliderRangeProps = {
820
755
  className?: string;
821
756
  range?: true;
822
- onChange?: StdCallback$8;
757
+ onChange?: StdCallback;
823
758
  } & Omit<SliderRangeProps, 'range'>;
824
- declare class AcSliderRange extends React.Component<AcSliderRangeProps> {
759
+ declare class AcSliderRange extends React$1.Component<AcSliderRangeProps> {
825
760
  static displayName: string;
826
761
  static formSchema: string;
827
762
  static defaultProps: {};
828
763
  handleChange: (inEvent: any) => void;
829
- render(): React.JSX.Element;
764
+ render(): React$1.JSX.Element;
830
765
  }
831
- declare const AcSliderRangeFc: (props: AcSliderRangeProps) => React.JSX.Element;
766
+ declare const AcSliderRangeFc: (props: AcSliderRangeProps) => React$1.JSX.Element;
832
767
 
833
- type StdEventTarget$7 = {
834
- target: {
835
- value: any;
836
- };
837
- };
838
- type StdCallback$7 = (inEvent: StdEventTarget$7) => void;
839
768
  type AcSwitchProps = {
840
769
  className?: string;
841
770
  value?: boolean;
842
- onChange?: StdCallback$7;
771
+ onChange?: StdCallback;
843
772
  } & SwitchProps;
844
- declare class AcSwitch extends React.Component<AcSwitchProps> {
773
+ declare class AcSwitch extends React$1.Component<AcSwitchProps> {
845
774
  static displayName: string;
846
775
  static formSchema: string;
847
776
  static defaultProps: {};
@@ -850,22 +779,14 @@ declare class AcSwitch extends React.Component<AcSwitchProps> {
850
779
  };
851
780
  shouldComponentUpdate(nextProps: Readonly<AcSwitchProps>): boolean;
852
781
  handleChange: (value: any) => void;
853
- render(): React.JSX.Element;
782
+ render(): React$1.JSX.Element;
854
783
  }
855
- declare const AcSwitchFc: React.ForwardRefExoticComponent<{
784
+ declare const AcSwitchFc: React$1.ForwardRefExoticComponent<{
856
785
  className?: string;
857
786
  value?: boolean;
858
- onChange?: StdCallback$7;
859
- } & SwitchProps & React.RefAttributes<AcSwitch>>;
787
+ onChange?: StdCallback;
788
+ } & SwitchProps & React$1.RefAttributes<AcSwitch>>;
860
789
 
861
- type NavigateFunction = react_router_dom.NavigateFunction;
862
- declare global {
863
- interface NxStatic {
864
- $event: any;
865
- $nav: NavigateFunction;
866
- $api: Record<string, any>;
867
- }
868
- }
869
790
  type AcTableProps = TableProps & {
870
791
  /**
871
792
  * The identity name.
@@ -876,7 +797,7 @@ type AcTableProps = TableProps & {
876
797
  * The language.
877
798
  * @default 'zh-CN'
878
799
  */
879
- lang?: string;
800
+ lang?: AppLocale;
880
801
  /**
881
802
  * The platform module name.
882
803
  * @default admin
@@ -913,14 +834,7 @@ type AcTableProps = TableProps & {
913
834
  * @param params { current: number; pageSize: number }
914
835
  * @returns Promise<{ data: any[]; total: number }>
915
836
  */
916
- fetcher?: (params: {
917
- current: number;
918
- pageSize: number;
919
- params?: Record<string, any>;
920
- }) => Promise<{
921
- data: any[];
922
- total: number;
923
- }>;
837
+ fetcher?: (params: FetcherParams) => FetcherResponse;
924
838
  /**
925
839
  * @param page
926
840
  * @param size
@@ -976,7 +890,7 @@ type AcTableState = {
976
890
  pageSize: any;
977
891
  total: any;
978
892
  };
979
- declare class AcTable extends React.Component<AcTableProps, AcTableState> {
893
+ declare class AcTable extends React$1.Component<AcTableProps, AcTableState> {
980
894
  static displayName: string;
981
895
  static formSchema: string;
982
896
  private harmonyEvents;
@@ -998,13 +912,13 @@ declare class AcTable extends React.Component<AcTableProps, AcTableState> {
998
912
  sync: UrlSyncFlat;
999
913
  private defaultFetcher;
1000
914
  get routerKey(): string;
1001
- get calculateColumnsAction(): {
915
+ get calculateColumnsAction(): ColumnsType<any> | {
1002
916
  title: any;
1003
917
  dataIndex: string;
1004
918
  key: string;
1005
919
  width: number;
1006
- render: (_: any, record: any) => React.JSX.Element;
1007
- } | ColumnsType<any>;
920
+ render: (_: any, record: any) => React$1.JSX.Element;
921
+ }[];
1008
922
  get calculateColumns(): ColumnsType<antd_es__util_type.AnyObject> | undefined;
1009
923
  constructor(props: AcTableProps);
1010
924
  private initFetcher;
@@ -1045,41 +959,29 @@ declare class AcTable extends React.Component<AcTableProps, AcTableState> {
1045
959
  onMouseEnter: () => void;
1046
960
  onMouseLeave: () => void;
1047
961
  };
1048
- render(): React.JSX.Element;
962
+ render(): React$1.JSX.Element;
1049
963
  }
1050
964
 
1051
- type StdEventTarget$6 = {
1052
- target: {
1053
- value: any;
1054
- };
1055
- };
1056
- type StdCallback$6 = (inEvent: StdEventTarget$6) => void;
1057
965
  type AcTextareaProps = {
1058
966
  className?: string;
1059
967
  value?: boolean;
1060
- onChange?: StdCallback$6;
968
+ onChange?: StdCallback;
1061
969
  } & TextAreaProps;
1062
- declare class AcTextarea extends React.Component<AcTextareaProps> {
970
+ declare class AcTextarea extends React$1.Component<AcTextareaProps> {
1063
971
  static displayName: string;
1064
972
  static formSchema: string;
1065
973
  static defaultProps: {};
1066
- render(): React.JSX.Element;
974
+ render(): React$1.JSX.Element;
1067
975
  }
1068
- declare const AcTextareaFc: (props: AcTextareaProps) => React.JSX.Element;
976
+ declare const AcTextareaFc: (props: AcTextareaProps) => React$1.JSX.Element;
1069
977
 
1070
- type StdEventTarget$5 = {
1071
- target: {
1072
- value: any;
1073
- };
1074
- };
1075
- type StdCallback$5 = (inEvent: StdEventTarget$5) => void;
1076
978
  type AcTimePickerProps = {
1077
979
  className?: string;
1078
980
  value?: string | dayjs.Dayjs;
1079
981
  defaultValue?: string | dayjs.Dayjs;
1080
- onChange?: StdCallback$5;
982
+ onChange?: StdCallback;
1081
983
  } & Omit<TimePickerProps, 'value' | 'defaultValue' | 'onChange' | 'ref'>;
1082
- declare class AcTimePicker extends React.Component<AcTimePickerProps> {
984
+ declare class AcTimePicker extends React$1.Component<AcTimePickerProps> {
1083
985
  static displayName: string;
1084
986
  static formSchema: string;
1085
987
  static defaultProps: {
@@ -1089,34 +991,25 @@ declare class AcTimePicker extends React.Component<AcTimePickerProps> {
1089
991
  parse: (inValue: any) => dayjs.Dayjs;
1090
992
  stringify: (inValue: any) => any;
1091
993
  normalize: (inValues: any) => any;
1092
- render(): React.JSX.Element;
994
+ render(): React$1.JSX.Element;
1093
995
  }
1094
- declare const AcTimePickerFc: (props: AcTimePickerProps) => React.JSX.Element;
996
+ declare const AcTimePickerFc: (props: AcTimePickerProps) => React$1.JSX.Element;
1095
997
 
1096
- type StdEventTarget$4 = {
1097
- target: {
1098
- value: any;
1099
- };
1100
- };
1101
- type StdCallback$4 = (inEvent: StdEventTarget$4) => void;
1102
- type TemplateCallback = (item: {
1103
- item: any;
1104
- }, options?: any) => React.ReactNode;
1105
998
  type AcTransferProps = {
1106
999
  className?: string;
1107
1000
  items?: any[];
1108
1001
  template: TemplateCallback;
1109
1002
  value?: any[];
1110
- onChange?: StdCallback$4;
1003
+ onChange?: StdCallback;
1111
1004
  } & TransferProps<any>;
1112
- declare class AcTransfer extends React.Component<AcTransferProps> {
1005
+ declare class AcTransfer extends React$1.Component<AcTransferProps> {
1113
1006
  static displayName: string;
1114
1007
  static formSchema: string;
1115
1008
  static defaultProps: {
1116
1009
  items: never[];
1117
1010
  template: ({ item }: {
1118
1011
  item: any;
1119
- }, options?: any) => React.ReactNode;
1012
+ }, options?: any) => React$1.ReactNode;
1120
1013
  };
1121
1014
  get templateCallback(): any;
1122
1015
  state: {
@@ -1124,9 +1017,9 @@ declare class AcTransfer extends React.Component<AcTransferProps> {
1124
1017
  };
1125
1018
  shouldComponentUpdate(nextProps: Readonly<AcTransferProps>): boolean;
1126
1019
  handleChange: (inEvent: any) => void;
1127
- render(): React.JSX.Element;
1020
+ render(): React$1.JSX.Element;
1128
1021
  }
1129
- declare const AcTransferFc: (props: AcTransferProps) => React.JSX.Element;
1022
+ declare const AcTransferFc: (props: AcTransferProps) => React$1.JSX.Element;
1130
1023
 
1131
1024
  type AcTreeProps = {
1132
1025
  className?: string;
@@ -1136,7 +1029,7 @@ type AcTreeProps = {
1136
1029
  itemsKey?: string | ((index: number, item: any) => any);
1137
1030
  directory?: boolean;
1138
1031
  } & TreeProps;
1139
- declare class AcTree extends React.Component<AcTreeProps> {
1032
+ declare class AcTree extends React$1.Component<AcTreeProps> {
1140
1033
  static displayName: string;
1141
1034
  static formSchema: string;
1142
1035
  static defaultProps: {
@@ -1148,58 +1041,46 @@ declare class AcTree extends React.Component<AcTreeProps> {
1148
1041
  };
1149
1042
  template: ({ item }: {
1150
1043
  item: any;
1151
- }, cb: any) => React.JSX.Element;
1044
+ }, cb: any) => React$1.JSX.Element;
1152
1045
  itemsKey: string;
1153
1046
  };
1154
1047
  get childView(): any;
1155
1048
  template: (args: any) => any;
1156
- render(): React.JSX.Element | null;
1049
+ render(): React$1.JSX.Element | null;
1157
1050
  }
1158
1051
 
1159
- type StdEventTarget$3 = {
1160
- target: {
1161
- value: any;
1162
- };
1163
- };
1164
- type StdCallback$3 = (inEvent: StdEventTarget$3) => void;
1165
1052
  type AcTreeSelectProps = {
1166
1053
  className?: string;
1167
1054
  items?: any[];
1168
1055
  template?: any;
1169
1056
  itemsKey?: string | ((index: number, item: any) => any);
1170
- onChange?: StdCallback$3;
1057
+ onChange?: StdCallback;
1171
1058
  } & TreeSelectProps;
1172
- declare class AcTreeSelect extends React.Component<AcTreeSelectProps> {
1059
+ declare class AcTreeSelect extends React$1.Component<AcTreeSelectProps> {
1173
1060
  static displayName: string;
1174
1061
  static formSchema: string;
1175
1062
  static defaultProps: {
1176
1063
  items: never[];
1177
1064
  template: ({ item }: {
1178
1065
  item: any;
1179
- }, cb: any) => React.JSX.Element;
1066
+ }, cb: any) => React$1.JSX.Element;
1180
1067
  itemsKey: string;
1181
1068
  };
1182
1069
  get childView(): any;
1183
1070
  handleChange: (inValue: any) => void;
1184
- render(): React.JSX.Element;
1071
+ render(): React$1.JSX.Element;
1185
1072
  }
1186
- declare const AcTreeSelectFc: (props: AcTreeSelectProps) => React.JSX.Element;
1073
+ declare const AcTreeSelectFc: (props: AcTreeSelectProps) => React$1.JSX.Element;
1187
1074
 
1188
- type StdEventTarget$2 = {
1189
- target: {
1190
- value: any;
1191
- };
1192
- };
1193
- type StdCallback$2 = (inEvent: StdEventTarget$2) => void;
1194
1075
  type CustomRequest$1 = (inEvent: any) => Promise<any>;
1195
1076
  type AcUploadProps = {
1196
1077
  className?: string;
1197
1078
  value?: number;
1198
- onChange?: StdCallback$2;
1079
+ onChange?: StdCallback;
1199
1080
  onRequest?: CustomRequest$1;
1200
1081
  btnProps?: ButtonProps;
1201
1082
  } & UploadProps;
1202
- declare class AcUpload extends React.Component<AcUploadProps> {
1083
+ declare class AcUpload extends React$1.Component<AcUploadProps> {
1203
1084
  static displayName: string;
1204
1085
  static formSchema: string;
1205
1086
  static defaultProps: {
@@ -1207,25 +1088,19 @@ declare class AcUpload extends React.Component<AcUploadProps> {
1207
1088
  };
1208
1089
  handleChange: (inEvent: any) => void;
1209
1090
  handleCustomRequest: (inRequestOption: any) => void;
1210
- render(): React.JSX.Element;
1091
+ render(): React$1.JSX.Element;
1211
1092
  }
1212
- declare const AcUploadFc: (props: AcUploadProps) => React.JSX.Element;
1093
+ declare const AcUploadFc: (props: AcUploadProps) => React$1.JSX.Element;
1213
1094
 
1214
- type StdEventTarget$1 = {
1215
- target: {
1216
- value: any;
1217
- };
1218
- };
1219
- type StdCallback$1 = (inEvent: StdEventTarget$1) => void;
1220
1095
  type CustomRequest = (inEvent: any) => Promise<any>;
1221
1096
  type AcUploadDraggerProps = {
1222
1097
  className?: string;
1223
1098
  value?: any[];
1224
1099
  defaultValue?: any[];
1225
- onChange?: StdCallback$1;
1100
+ onChange?: StdCallback;
1226
1101
  onRequest?: CustomRequest;
1227
1102
  } & DraggerProps;
1228
- declare class AcUploadDragger extends React.Component<AcUploadDraggerProps> {
1103
+ declare class AcUploadDragger extends React$1.Component<AcUploadDraggerProps> {
1229
1104
  static displayName: string;
1230
1105
  static formSchema: string;
1231
1106
  static defaultProps: {
@@ -1233,16 +1108,10 @@ declare class AcUploadDragger extends React.Component<AcUploadDraggerProps> {
1233
1108
  };
1234
1109
  handleChange: (inEvent: any) => void;
1235
1110
  handleCustomRequest: (inRequestOption: any) => void;
1236
- render(): React.JSX.Element;
1111
+ render(): React$1.JSX.Element;
1237
1112
  }
1238
- declare const AcUploadDraggerFc: (props: AcUploadDraggerProps) => React.JSX.Element;
1113
+ declare const AcUploadDraggerFc: (props: AcUploadDraggerProps) => React$1.JSX.Element;
1239
1114
 
1240
- type StdEventTarget = {
1241
- target: {
1242
- value: any;
1243
- };
1244
- };
1245
- type StdCallback = (inEvent: StdEventTarget) => void;
1246
1115
  type AcAbstractUploadProps = {
1247
1116
  className?: string;
1248
1117
  value?: any[] | [];
@@ -1253,8 +1122,8 @@ type AcAbstractUploadProps = {
1253
1122
  type State = {
1254
1123
  fileList: any[];
1255
1124
  };
1256
- declare class AcAbstractUpload extends React.Component<AcAbstractUploadProps, State> {
1257
- protected rootRef: React.RefObject<HTMLDivElement>;
1125
+ declare class AcAbstractUpload extends React$1.Component<AcAbstractUploadProps, State> {
1126
+ protected rootRef: React$1.RefObject<HTMLDivElement>;
1258
1127
  protected sortable: any;
1259
1128
  protected viewer: any;
1260
1129
  toFileList: (inUrls: any[] | any) => any[];
@@ -1281,9 +1150,9 @@ declare class AcUploadPicture extends AcAbstractUpload {
1281
1150
  transformURL: (pid: any) => any;
1282
1151
  transformResponse: (inFileList: any) => any;
1283
1152
  };
1284
- render(): React.JSX.Element;
1153
+ render(): React$1.JSX.Element;
1285
1154
  }
1286
- declare const AcUploadPictureFc: (props: any) => React.JSX.Element;
1155
+ declare const AcUploadPictureFc: (props: any) => React$1.JSX.Element;
1287
1156
 
1288
1157
  declare class AcUploadPictureCard extends AcAbstractUpload {
1289
1158
  static displayName: string;
@@ -1293,18 +1162,18 @@ declare class AcUploadPictureCard extends AcAbstractUpload {
1293
1162
  transformURL: (pid: any) => any;
1294
1163
  transformResponse: (inFileList: any) => any;
1295
1164
  };
1296
- render(): React.JSX.Element;
1165
+ render(): React$1.JSX.Element;
1297
1166
  }
1298
- declare const AcUploadPictureCardFc: (props: any) => React.JSX.Element;
1167
+ declare const AcUploadPictureCardFc: (props: any) => React$1.JSX.Element;
1299
1168
 
1300
1169
  declare const breadcrumbDefault: ({ item, index, items }: {
1301
1170
  item: any;
1302
1171
  index: any;
1303
1172
  items: any;
1304
- }) => React.JSX.Element;
1173
+ }) => React$1.JSX.Element;
1305
1174
 
1306
1175
  interface Options$1 {
1307
- component: React.ComponentType<any>;
1176
+ component: React$1.ComponentType<any>;
1308
1177
  value?: string;
1309
1178
  label?: string;
1310
1179
  [key: string]: any;
@@ -1318,19 +1187,19 @@ interface Options$1 {
1318
1187
  declare const kv: ({ item, index }: {
1319
1188
  item: any;
1320
1189
  index: any;
1321
- }, options: Options$1) => React.JSX.Element;
1322
- declare const checkboxKv: (args: any) => React.JSX.Element;
1323
- declare const selectKv: (args: any) => React.JSX.Element;
1324
- declare const radioKv: (args: any, opts: any) => React.JSX.Element;
1190
+ }, options: Options$1) => React$1.JSX.Element;
1191
+ declare const checkboxKv: (args: any) => React$1.JSX.Element;
1192
+ declare const selectKv: (args: any) => React$1.JSX.Element;
1193
+ declare const radioKv: (args: any, opts: any) => React$1.JSX.Element;
1325
1194
  declare const treeKv: ({ item }: {
1326
1195
  item: any;
1327
- }, cb: any) => React.JSX.Element;
1196
+ }, cb: any) => React$1.JSX.Element;
1328
1197
  declare const treeSelectKv: ({ item }: {
1329
1198
  item: any;
1330
- }, cb: any) => React.JSX.Element;
1199
+ }, cb: any) => React$1.JSX.Element;
1331
1200
 
1332
1201
  interface Options {
1333
- component: React.ComponentType<any>;
1202
+ component: React$1.ComponentType<any>;
1334
1203
  [key: string]: any;
1335
1204
  }
1336
1205
  /**
@@ -1342,81 +1211,21 @@ interface Options {
1342
1211
  declare const raw: ({ item, index }: {
1343
1212
  item: any;
1344
1213
  index: any;
1345
- }, options: Options) => React.JSX.Element;
1346
- declare const checkboxRaw: (args: any) => React.JSX.Element;
1347
- declare const selectRaw: (args: any) => React.JSX.Element;
1348
- declare const radioRaw: (args: any, opts: any) => React.JSX.Element;
1214
+ }, options: Options) => React$1.JSX.Element;
1215
+ declare const checkboxRaw: (args: any) => React$1.JSX.Element;
1216
+ declare const selectRaw: (args: any) => React$1.JSX.Element;
1217
+ declare const radioRaw: (args: any, opts: any) => React$1.JSX.Element;
1349
1218
 
1350
1219
  declare const transferLabel: ({ item }: {
1351
1220
  item: any;
1352
- }, options?: any) => React.ReactNode;
1221
+ }, options?: any) => React$1.ReactNode;
1353
1222
 
1354
- declare global {
1355
- interface NxStatic {
1356
- err: (inMessage: string) => any;
1357
- msg: (inMessage: string) => any;
1358
- info: (inMessage: string) => any;
1359
- alert: (inMessage: string, inTitle?: String) => any;
1360
- confirm: (inMessage: string, inTitle?: String) => any;
1361
- prompt: (inMessage: string, inOptions?: InputProps) => any;
1362
- }
1363
- }
1364
-
1365
- type Locale = 'zh-CN' | 'en-US';
1366
- declare const BtnCreate: (props: ButtonProps & {
1367
- lang?: Locale;
1368
- }) => React.JSX.Element;
1369
- declare const BtnEdit: (props: ButtonProps & {
1370
- lang?: Locale;
1371
- }) => React.JSX.Element;
1372
- declare const BtnDelete: (props: ButtonProps & {
1373
- lang?: Locale;
1374
- }) => React.JSX.Element;
1375
- declare const BtnView: (props: ButtonProps & {
1376
- lang?: Locale;
1377
- }) => React.JSX.Element;
1378
- declare const BtnPreview: (props: ButtonProps & {
1379
- lang?: Locale;
1380
- }) => React.JSX.Element;
1381
- declare const BtnSave: (props: ButtonProps & {
1382
- lang?: Locale;
1383
- }) => React.JSX.Element;
1384
- declare const BtnExport: (props: ButtonProps & {
1385
- lang?: Locale;
1386
- }) => React.JSX.Element;
1387
- declare const BtnImport: (props: ButtonProps & {
1388
- lang?: Locale;
1389
- }) => React.JSX.Element;
1390
- declare const BtnRefresh: (props: ButtonProps & {
1391
- lang?: Locale;
1392
- }) => React.JSX.Element;
1393
- declare const BtnBack: (props: ButtonProps & {
1394
- lang?: Locale;
1395
- }) => React.JSX.Element;
1396
- declare const BtnSubmit: (props: ButtonProps & {
1397
- lang?: Locale;
1398
- }) => React.JSX.Element;
1399
- declare const BtnCancel: (props: ButtonProps & {
1400
- lang?: Locale;
1401
- }) => React.JSX.Element;
1402
- declare const BtnSync: (props: ButtonProps & {
1403
- lang?: Locale;
1404
- }) => React.JSX.Element;
1405
- declare const BtnCopy: (props: ButtonProps & {
1406
- lang?: Locale;
1407
- }) => React.JSX.Element;
1408
-
1409
- declare global {
1410
- interface NxStatic {
1411
- $event: any;
1412
- }
1413
- }
1414
1223
  type AcCardExtrasProps = SpaceProps & {
1415
1224
  name: string;
1416
- lang?: Locale;
1417
- as?: React.ComponentType<any>;
1418
- extraBefore?: React.ReactNode;
1419
- extraAfter?: React.ReactNode;
1225
+ lang?: AppLocale;
1226
+ as?: React$1.ComponentType<any>;
1227
+ extraBefore?: React$1.ReactNode;
1228
+ extraAfter?: React$1.ReactNode;
1420
1229
  asProps?: any;
1421
1230
  actions?: string[];
1422
1231
  };
@@ -1429,15 +1238,9 @@ declare const AcCardExtras: FC<AcCardExtrasProps>;
1429
1238
  * @LastEditTime: 2025-10-31 08:32:21
1430
1239
  */
1431
1240
 
1432
- declare global {
1433
- interface NxStatic {
1434
- $event: any;
1435
- $api: Record<string, any>;
1436
- }
1437
- }
1438
1241
  type AcExtraSearchProps = SearchProps & {
1439
1242
  name: string;
1440
- lang?: string;
1243
+ lang?: AppLocale;
1441
1244
  queryKey?: string;
1442
1245
  routerType?: 'hash' | 'browser';
1443
1246
  };
@@ -1451,56 +1254,46 @@ declare const AcExtraSearch: FC<AcExtraSearchProps>;
1451
1254
  */
1452
1255
 
1453
1256
  type FormActionsProps = SpaceProps & {
1454
- lang?: string;
1257
+ lang?: AppLocale;
1455
1258
  actions?: string[];
1456
1259
  okText?: string;
1457
1260
  cancelText?: string;
1458
- onOk?: (e: React.MouseEvent<HTMLElement>) => void;
1459
- onCancel?: (e: React.MouseEvent<HTMLElement>) => void;
1261
+ onOk?: (e: React$1.MouseEvent<HTMLElement>) => void;
1262
+ onCancel?: (e: React$1.MouseEvent<HTMLElement>) => void;
1460
1263
  okProps?: ButtonProps;
1461
1264
  cancelProps?: ButtonProps;
1462
1265
  buttonProps?: ButtonProps;
1463
- as?: React.ComponentType<any>;
1266
+ as?: React$1.ComponentType<any>;
1464
1267
  asProps?: any;
1465
1268
  };
1466
- declare const FormActions: React.ForwardRefExoticComponent<SpaceProps & {
1467
- lang?: string;
1269
+ declare const FormActions: React$1.ForwardRefExoticComponent<SpaceProps & {
1270
+ lang?: AppLocale;
1468
1271
  actions?: string[];
1469
1272
  okText?: string;
1470
1273
  cancelText?: string;
1471
- onOk?: (e: React.MouseEvent<HTMLElement>) => void;
1472
- onCancel?: (e: React.MouseEvent<HTMLElement>) => void;
1274
+ onOk?: (e: React$1.MouseEvent<HTMLElement>) => void;
1275
+ onCancel?: (e: React$1.MouseEvent<HTMLElement>) => void;
1473
1276
  okProps?: ButtonProps;
1474
1277
  cancelProps?: ButtonProps;
1475
1278
  buttonProps?: ButtonProps;
1476
- as?: React.ComponentType<any>;
1279
+ as?: React$1.ComponentType<any>;
1477
1280
  asProps?: any;
1478
- } & React.RefAttributes<HTMLDivElement>>;
1281
+ } & React$1.RefAttributes<HTMLDivElement>>;
1479
1282
 
1480
1283
  declare const initWidgets: (names?: string[] | null, externalWidgets?: Record<string, ReactComponent>) => void;
1481
1284
 
1482
- declare global {
1483
- interface NxStatic {
1484
- $event: any;
1485
- }
1486
- }
1487
1285
  type AcTableLinksProps = {
1488
1286
  name: string;
1489
1287
  model?: any;
1490
- lang?: string;
1491
- extraBefore?: React.ReactNode;
1492
- extraAfter?: React.ReactNode;
1493
- as?: React.ComponentType<any>;
1288
+ lang?: AppLocale;
1289
+ extraBefore?: React$1.ReactNode;
1290
+ extraAfter?: React$1.ReactNode;
1291
+ as?: React$1.ComponentType<any>;
1494
1292
  asProps?: any;
1495
1293
  actions?: string[];
1496
1294
  };
1497
1295
  declare const AcTableLinks: FC<AcTableLinksProps>;
1498
1296
 
1499
- declare global {
1500
- interface NxStatic {
1501
- $api: Record<string, any>;
1502
- }
1503
- }
1504
1297
  type AcTableStatusSwitcherProps = ReactAntStatusSwitchProps & {
1505
1298
  name: string;
1506
1299
  items: any[];
@@ -1520,11 +1313,6 @@ declare const AcTableStatusSwitcher: FC<AcTableStatusSwitcherProps>;
1520
1313
  * @LastEditTime: 2025-10-29 15:49:36
1521
1314
  */
1522
1315
 
1523
- declare global {
1524
- interface NxStatic {
1525
- $api: Record<string, any>;
1526
- }
1527
- }
1528
1316
  type AcTableToggleSwitcherProps = SwitchProps & {
1529
1317
  name: string;
1530
1318
  model: any;
@@ -1546,9 +1334,52 @@ declare const useCommand: (inName?: string) => {
1546
1334
  refetch: () => void;
1547
1335
  reset: () => void;
1548
1336
  add: () => void;
1549
- edit: () => void;
1550
- destroy: () => void;
1337
+ edit: (payload: Payload) => void;
1338
+ destroy: (payload: Payload) => void;
1551
1339
  draft: (payload: Payload) => void;
1552
1340
  };
1553
1341
 
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 };
1342
+ declare const BtnCreate: (props: ButtonProps & {
1343
+ lang?: AppLocale;
1344
+ }) => React$1.JSX.Element;
1345
+ declare const BtnEdit: (props: ButtonProps & {
1346
+ lang?: AppLocale;
1347
+ }) => React$1.JSX.Element;
1348
+ declare const BtnDelete: (props: ButtonProps & {
1349
+ lang?: AppLocale;
1350
+ }) => React$1.JSX.Element;
1351
+ declare const BtnView: (props: ButtonProps & {
1352
+ lang?: AppLocale;
1353
+ }) => React$1.JSX.Element;
1354
+ declare const BtnPreview: (props: ButtonProps & {
1355
+ lang?: AppLocale;
1356
+ }) => React$1.JSX.Element;
1357
+ declare const BtnSave: (props: ButtonProps & {
1358
+ lang?: AppLocale;
1359
+ }) => React$1.JSX.Element;
1360
+ declare const BtnExport: (props: ButtonProps & {
1361
+ lang?: AppLocale;
1362
+ }) => React$1.JSX.Element;
1363
+ declare const BtnImport: (props: ButtonProps & {
1364
+ lang?: AppLocale;
1365
+ }) => React$1.JSX.Element;
1366
+ declare const BtnRefresh: (props: ButtonProps & {
1367
+ lang?: AppLocale;
1368
+ }) => React$1.JSX.Element;
1369
+ declare const BtnBack: (props: ButtonProps & {
1370
+ lang?: AppLocale;
1371
+ }) => React$1.JSX.Element;
1372
+ declare const BtnSubmit: (props: ButtonProps & {
1373
+ lang?: AppLocale;
1374
+ }) => React$1.JSX.Element;
1375
+ declare const BtnCancel: (props: ButtonProps & {
1376
+ lang?: AppLocale;
1377
+ }) => React$1.JSX.Element;
1378
+ declare const BtnSync: (props: ButtonProps & {
1379
+ lang?: AppLocale;
1380
+ }) => React$1.JSX.Element;
1381
+ declare const BtnCopy: (props: ButtonProps & {
1382
+ lang?: AppLocale;
1383
+ }) => React$1.JSX.Element;
1384
+
1385
+ 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, breadcrumbDefault, checkboxKv, checkboxRaw, initWidgets, kv, radioKv, radioRaw, raw, selectKv, selectRaw, transferLabel, treeKv, treeSelectKv, useCommand as useTableCommand };