@faasjs/ant-design 0.0.2-development → 0.0.3-beta.2
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/LICENSE +6 -6
- package/README.md +867 -5
- package/dist/index.d.ts +444 -0
- package/dist/index.js +1358 -0
- package/dist/index.mjs +1360 -0
- package/package.json +28 -62
- package/lib/components/Button.d.ts +0 -60
- package/lib/components/Button.stories.d.ts +0 -36
- package/lib/components/Description.d.ts +0 -11
- package/lib/components/Description.stories.d.ts +0 -6
- package/lib/components/Form.d.ts +0 -7
- package/lib/components/Form.stories.d.ts +0 -7
- package/lib/components/FormItem.d.ts +0 -7
- package/lib/components/FormItem.stories.d.ts +0 -11
- package/lib/components/Header.d.ts +0 -19
- package/lib/components/Header.stories.d.ts +0 -24
- package/lib/components/Page.d.ts +0 -22
- package/lib/components/Page.stories.d.ts +0 -24
- package/lib/components/Table.d.ts +0 -8
- package/lib/components/Table.stories.d.ts +0 -6
- package/lib/components/__tests__/FormItem.test.d.ts +0 -1
- package/lib/components/data.d.ts +0 -6
- package/lib/index.d.ts +0 -2
- package/lib/index.esm.js +0 -55
- package/lib/index.esm.js.map +0 -1
- package/lib/index.js +0 -60
- package/lib/index.js.map +0 -1
- package/lib/jest.setup.d.ts +0 -1
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,444 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { CSSProperties, ReactNode, LazyExoticComponent, ComponentType } from 'react';
|
|
3
|
+
import { ConfigProviderProps as ConfigProviderProps$1 } from 'antd/es/config-provider';
|
|
4
|
+
import { Dayjs } from 'dayjs';
|
|
5
|
+
import { DescriptionsProps, DrawerProps as DrawerProps$1, FormItemProps as FormItemProps$1, FormInstance, InputProps, InputNumberProps, SwitchProps, DatePickerProps, TimePickerProps, SelectProps, FormProps as FormProps$1, ButtonProps, ModalProps as ModalProps$1, TableColumnProps, TablePaginationConfig, TableProps as TableProps$1 } from 'antd';
|
|
6
|
+
export { Drawer, Modal } from 'antd';
|
|
7
|
+
import { FaasDataWrapperProps } from '@faasjs/react';
|
|
8
|
+
import * as antd_es_form_Form from 'antd/es/form/Form';
|
|
9
|
+
import { RuleObject } from 'rc-field-form/lib/interface';
|
|
10
|
+
import { RouteProps } from 'react-router-dom';
|
|
11
|
+
import { FilterValue, SorterResult, TableCurrentDataSource } from 'antd/es/table/interface';
|
|
12
|
+
|
|
13
|
+
type BlankProps = {
|
|
14
|
+
value?: any;
|
|
15
|
+
text?: string;
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* If value is undefined or null, return text, otherwise return value.
|
|
19
|
+
*
|
|
20
|
+
* @param options {object}
|
|
21
|
+
* @param options.value {any}
|
|
22
|
+
* @param options.text {string} Default is 'Empty'
|
|
23
|
+
* @returns {JSX.Element}
|
|
24
|
+
*
|
|
25
|
+
* ```ts
|
|
26
|
+
* <Blank value={undefined} text="Empty" />
|
|
27
|
+
* ```
|
|
28
|
+
*/
|
|
29
|
+
declare function Blank(options?: BlankProps): JSX.Element;
|
|
30
|
+
|
|
31
|
+
type ConfigProviderProps = {
|
|
32
|
+
antd?: ConfigProviderProps$1;
|
|
33
|
+
lang?: string;
|
|
34
|
+
common?: {
|
|
35
|
+
blank?: string;
|
|
36
|
+
all?: string;
|
|
37
|
+
submit?: string;
|
|
38
|
+
pageNotFound?: string;
|
|
39
|
+
add?: string;
|
|
40
|
+
delete?: string;
|
|
41
|
+
required?: string;
|
|
42
|
+
search?: string;
|
|
43
|
+
reset?: string;
|
|
44
|
+
};
|
|
45
|
+
Blank?: {
|
|
46
|
+
text?: string;
|
|
47
|
+
};
|
|
48
|
+
Form?: {
|
|
49
|
+
submit?: {
|
|
50
|
+
text?: string;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
Title?: {
|
|
54
|
+
/** ' - ' as default */
|
|
55
|
+
separator?: string;
|
|
56
|
+
suffix?: string;
|
|
57
|
+
};
|
|
58
|
+
Link?: {
|
|
59
|
+
/** '_blank' as default */
|
|
60
|
+
target?: string;
|
|
61
|
+
style?: CSSProperties;
|
|
62
|
+
};
|
|
63
|
+
};
|
|
64
|
+
declare const ConfigContext: react.Context<ConfigProviderProps>;
|
|
65
|
+
/**
|
|
66
|
+
* Config for @faasjs/ant-design components.
|
|
67
|
+
*
|
|
68
|
+
* ```ts
|
|
69
|
+
* <ConfigProvider config={{
|
|
70
|
+
* common: {
|
|
71
|
+
* blank: 'Empty',
|
|
72
|
+
* },
|
|
73
|
+
* }}>
|
|
74
|
+
* <Blank />
|
|
75
|
+
* </ConfigProvider>
|
|
76
|
+
* ```
|
|
77
|
+
*/
|
|
78
|
+
declare function ConfigProvider({ config, children }: {
|
|
79
|
+
config: ConfigProviderProps;
|
|
80
|
+
children: React.ReactNode;
|
|
81
|
+
}): JSX.Element;
|
|
82
|
+
declare function useConfigContext(): ConfigProviderProps;
|
|
83
|
+
|
|
84
|
+
type FaasItemType = 'string' | 'string[]' | 'number' | 'number[]' | 'boolean' | 'date' | 'time' | 'object' | 'object[]';
|
|
85
|
+
/** FaasItemType's value type */
|
|
86
|
+
type FaasItemTypeValue = {
|
|
87
|
+
string: string;
|
|
88
|
+
'string[]': string[];
|
|
89
|
+
number: number;
|
|
90
|
+
'number[]': number[];
|
|
91
|
+
boolean: boolean;
|
|
92
|
+
date: Dayjs;
|
|
93
|
+
time: Dayjs;
|
|
94
|
+
object: any;
|
|
95
|
+
'object[]': any[];
|
|
96
|
+
};
|
|
97
|
+
type BaseOption = string | number | {
|
|
98
|
+
label: string;
|
|
99
|
+
value?: string | number;
|
|
100
|
+
};
|
|
101
|
+
type BaseItemProps = {
|
|
102
|
+
id: string;
|
|
103
|
+
title?: string;
|
|
104
|
+
options?: BaseOption[];
|
|
105
|
+
};
|
|
106
|
+
type FaasItemProps = BaseItemProps & {
|
|
107
|
+
/**
|
|
108
|
+
* Support string, string[], number, number[], boolean
|
|
109
|
+
* @default 'string'
|
|
110
|
+
*/
|
|
111
|
+
type?: FaasItemType;
|
|
112
|
+
};
|
|
113
|
+
declare function transferOptions(options: BaseOption[]): {
|
|
114
|
+
label: string;
|
|
115
|
+
value?: string | number;
|
|
116
|
+
}[];
|
|
117
|
+
declare function transferValue(type: FaasItemType, value: any): any;
|
|
118
|
+
|
|
119
|
+
type ExtendDescriptionTypeProps = {
|
|
120
|
+
children?: JSX.Element | null;
|
|
121
|
+
render?: (value: any, values: any) => ReactNode | JSX.Element;
|
|
122
|
+
};
|
|
123
|
+
type ExtendDescriptionItemProps = BaseItemProps;
|
|
124
|
+
type DescriptionItemProps<T = any> = {
|
|
125
|
+
children?: JSX.Element;
|
|
126
|
+
render?: (value: T, values: any) => ReactNode | JSX.Element;
|
|
127
|
+
if?: (values: Record<string, any>) => boolean;
|
|
128
|
+
} & FaasItemProps & {
|
|
129
|
+
object?: DescriptionItemProps[];
|
|
130
|
+
};
|
|
131
|
+
type DescriptionProps<T = any, ExtendItemProps = any> = {
|
|
132
|
+
renderTitle?: ((values: T) => ReactNode | JSX.Element);
|
|
133
|
+
items: (DescriptionItemProps | ExtendItemProps)[];
|
|
134
|
+
extendTypes?: {
|
|
135
|
+
[key: string]: ExtendDescriptionTypeProps;
|
|
136
|
+
};
|
|
137
|
+
dataSource?: T;
|
|
138
|
+
faasData?: FaasDataWrapperProps<T>;
|
|
139
|
+
} & DescriptionsProps;
|
|
140
|
+
declare function Description<T = any>(props: DescriptionProps<T>): JSX.Element;
|
|
141
|
+
|
|
142
|
+
type DrawerProps = DrawerProps$1 & {
|
|
143
|
+
children?: JSX.Element | JSX.Element[];
|
|
144
|
+
};
|
|
145
|
+
type setDrawerProps = (changes: Partial<DrawerProps>) => void;
|
|
146
|
+
/**
|
|
147
|
+
* Hook style drawer.
|
|
148
|
+
* @param init initial props
|
|
149
|
+
*
|
|
150
|
+
* ```ts
|
|
151
|
+
* function Example() {
|
|
152
|
+
* const { drawer, setDrawerProps } = useDrawer()
|
|
153
|
+
*
|
|
154
|
+
* return <>
|
|
155
|
+
* <Button onClick={ () => setDrawerProps(prev => ({ open: !prev.open})) }>
|
|
156
|
+
* Toggle
|
|
157
|
+
* </Button>
|
|
158
|
+
* {drawer}
|
|
159
|
+
* </>
|
|
160
|
+
* }
|
|
161
|
+
* ```
|
|
162
|
+
*/
|
|
163
|
+
declare function useDrawer(init?: DrawerProps): {
|
|
164
|
+
drawer: JSX.Element;
|
|
165
|
+
drawerProps: DrawerProps;
|
|
166
|
+
setDrawerProps(changes: Partial<DrawerProps>): void;
|
|
167
|
+
};
|
|
168
|
+
|
|
169
|
+
type StringProps = {
|
|
170
|
+
type?: 'string';
|
|
171
|
+
input?: InputProps;
|
|
172
|
+
};
|
|
173
|
+
type StringListProps = {
|
|
174
|
+
type: 'string[]';
|
|
175
|
+
input?: InputProps;
|
|
176
|
+
maxCount?: number;
|
|
177
|
+
};
|
|
178
|
+
type NumberProps = {
|
|
179
|
+
type: 'number';
|
|
180
|
+
input?: InputNumberProps;
|
|
181
|
+
};
|
|
182
|
+
type NumberListProps = {
|
|
183
|
+
type: 'number[]';
|
|
184
|
+
input?: InputNumberProps;
|
|
185
|
+
maxCount?: number;
|
|
186
|
+
};
|
|
187
|
+
type BooleanProps = {
|
|
188
|
+
type: 'boolean';
|
|
189
|
+
input?: SwitchProps;
|
|
190
|
+
};
|
|
191
|
+
type DateProps = {
|
|
192
|
+
type: 'date';
|
|
193
|
+
input?: DatePickerProps;
|
|
194
|
+
};
|
|
195
|
+
type TimeProps = {
|
|
196
|
+
type: 'time';
|
|
197
|
+
input?: TimePickerProps;
|
|
198
|
+
};
|
|
199
|
+
type ObjectProps = {
|
|
200
|
+
type: 'object';
|
|
201
|
+
object: FormItemProps[];
|
|
202
|
+
};
|
|
203
|
+
type ObjectListProps = {
|
|
204
|
+
type: 'object[]';
|
|
205
|
+
object: (FormItemProps & {
|
|
206
|
+
/** default is 6 */
|
|
207
|
+
col?: number;
|
|
208
|
+
})[];
|
|
209
|
+
maxCount?: number;
|
|
210
|
+
};
|
|
211
|
+
type OptionsProps = {
|
|
212
|
+
options?: BaseOption[];
|
|
213
|
+
type?: 'string' | 'string[]' | 'number' | 'number[]';
|
|
214
|
+
input?: SelectProps<any>;
|
|
215
|
+
};
|
|
216
|
+
type FormItemInputProps = (StringProps | StringListProps | NumberProps | NumberListProps | BooleanProps | OptionsProps | DateProps | TimeProps | ObjectProps | ObjectListProps) & {
|
|
217
|
+
disabled?: boolean;
|
|
218
|
+
required?: boolean;
|
|
219
|
+
};
|
|
220
|
+
type ExtendFormTypeProps = {
|
|
221
|
+
children?: ReactNode;
|
|
222
|
+
};
|
|
223
|
+
type ExtendTypes = {
|
|
224
|
+
[type: string]: ExtendFormTypeProps;
|
|
225
|
+
};
|
|
226
|
+
type ExtendFormItemProps = BaseItemProps & FormItemProps$1;
|
|
227
|
+
type FormItemProps<T = any> = {
|
|
228
|
+
children?: ReactNode;
|
|
229
|
+
render?: (value?: T) => ReactNode | JSX.Element;
|
|
230
|
+
rules?: RuleObject[];
|
|
231
|
+
label?: string | false;
|
|
232
|
+
extendTypes?: ExtendTypes;
|
|
233
|
+
/** trigger when current item's value changed */
|
|
234
|
+
onValueChange?: (value: T, values: any, form: FormInstance) => void;
|
|
235
|
+
/** trigger when any item's value changed */
|
|
236
|
+
if?: (values: Record<string, any>) => boolean;
|
|
237
|
+
} & FormItemInputProps & FaasItemProps & Omit<FormItemProps$1<T>, 'children'>;
|
|
238
|
+
/**
|
|
239
|
+
* FormItem, can be used without Form.
|
|
240
|
+
*
|
|
241
|
+
* ```ts
|
|
242
|
+
* // use inline type
|
|
243
|
+
* <FormItem item={{ type: 'string', id: 'name' }} />
|
|
244
|
+
*
|
|
245
|
+
* // use custom type
|
|
246
|
+
* <FormItem item={{ id: 'password' }}>
|
|
247
|
+
* <Input.Password />
|
|
248
|
+
* </>
|
|
249
|
+
* ```
|
|
250
|
+
*/
|
|
251
|
+
declare function FormItem<T = any>(props: FormItemProps<T>): JSX.Element;
|
|
252
|
+
|
|
253
|
+
type FormProps<Values extends Record<string, any> = any, ExtendItemProps = any> = {
|
|
254
|
+
items?: (FormItemProps | ExtendItemProps)[];
|
|
255
|
+
/** Default: { text: 'Submit' }, set false to disable it */
|
|
256
|
+
submit?: false | {
|
|
257
|
+
/** Default: Submit */
|
|
258
|
+
text?: string;
|
|
259
|
+
/**
|
|
260
|
+
* Submit to FaasJS server.
|
|
261
|
+
*
|
|
262
|
+
* If use onFinish, you should call submit manually.
|
|
263
|
+
* ```ts
|
|
264
|
+
* {
|
|
265
|
+
* submit: {
|
|
266
|
+
* to: {
|
|
267
|
+
* action: 'action_name'
|
|
268
|
+
* }
|
|
269
|
+
* },
|
|
270
|
+
* onFinish: (values, submit) => {
|
|
271
|
+
* // do something before submit
|
|
272
|
+
*
|
|
273
|
+
* // submit
|
|
274
|
+
* await submit({
|
|
275
|
+
* ...values,
|
|
276
|
+
* extraProps: 'some extra props'
|
|
277
|
+
* })
|
|
278
|
+
*
|
|
279
|
+
* // do something after submit
|
|
280
|
+
* }
|
|
281
|
+
* }
|
|
282
|
+
* ```
|
|
283
|
+
*/
|
|
284
|
+
to?: {
|
|
285
|
+
action: string;
|
|
286
|
+
/** params will overwrite form values before submit */
|
|
287
|
+
params?: Record<string, any>;
|
|
288
|
+
};
|
|
289
|
+
};
|
|
290
|
+
onFinish?: (values: Values, submit?: (values: any) => Promise<any>) => Promise<any>;
|
|
291
|
+
beforeItems?: JSX.Element | JSX.Element[];
|
|
292
|
+
footer?: JSX.Element | JSX.Element[];
|
|
293
|
+
extendTypes?: ExtendTypes;
|
|
294
|
+
children?: ReactNode;
|
|
295
|
+
initialValues?: Values;
|
|
296
|
+
} & Omit<FormProps$1<Values>, 'onFinish' | 'children' | 'initialValues'>;
|
|
297
|
+
/**
|
|
298
|
+
* Form component with Ant Design & FaasJS
|
|
299
|
+
*
|
|
300
|
+
* @ref https://ant.design/components/form/
|
|
301
|
+
*/
|
|
302
|
+
declare function Form<Values = any>(props: FormProps<Values>): JSX.Element;
|
|
303
|
+
declare namespace Form {
|
|
304
|
+
var useForm: typeof antd_es_form_Form.useForm;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
type LinkProps = {
|
|
308
|
+
href: string;
|
|
309
|
+
target?: string;
|
|
310
|
+
text?: string | number;
|
|
311
|
+
children?: ReactNode;
|
|
312
|
+
style?: CSSProperties;
|
|
313
|
+
button?: ButtonProps;
|
|
314
|
+
};
|
|
315
|
+
/**
|
|
316
|
+
* ```ts
|
|
317
|
+
* // pure link
|
|
318
|
+
* <Link href="/">Home</Link>
|
|
319
|
+
*
|
|
320
|
+
* // link with button
|
|
321
|
+
* <Link href="/" button={{type:'primary'}}>Home</Link>
|
|
322
|
+
* ```
|
|
323
|
+
*/
|
|
324
|
+
declare function Link({ href, target, text, children, style, button, }: LinkProps): JSX.Element;
|
|
325
|
+
|
|
326
|
+
type ModalProps = ModalProps$1 & {
|
|
327
|
+
children?: JSX.Element | JSX.Element[] | string;
|
|
328
|
+
};
|
|
329
|
+
type setModalProps = (changes: Partial<ModalProps>) => void;
|
|
330
|
+
/**
|
|
331
|
+
* Hook style modal.
|
|
332
|
+
* @param init initial props
|
|
333
|
+
*
|
|
334
|
+
* ```ts
|
|
335
|
+
* function Example() {
|
|
336
|
+
* const { modal, setModalProps } = useModal()
|
|
337
|
+
*
|
|
338
|
+
* return <>
|
|
339
|
+
* <Button onClick={() => setModalProps({ open: true })}>Open Modal</Button>
|
|
340
|
+
* {modal}</>
|
|
341
|
+
* }
|
|
342
|
+
* ```
|
|
343
|
+
*/
|
|
344
|
+
declare function useModal(init?: ModalProps): {
|
|
345
|
+
modal: JSX.Element;
|
|
346
|
+
modalProps: ModalProps;
|
|
347
|
+
setModalProps(changes: Partial<ModalProps>): void;
|
|
348
|
+
};
|
|
349
|
+
|
|
350
|
+
declare function PageNotFound(): JSX.Element;
|
|
351
|
+
type RoutesProps = {
|
|
352
|
+
routes: (RouteProps & {
|
|
353
|
+
page?: LazyExoticComponent<ComponentType<any>>;
|
|
354
|
+
})[];
|
|
355
|
+
fallback?: JSX.Element;
|
|
356
|
+
notFound?: JSX.Element;
|
|
357
|
+
};
|
|
358
|
+
/**
|
|
359
|
+
* Routes with lazy loading and 404 page.
|
|
360
|
+
*
|
|
361
|
+
* ```tsx
|
|
362
|
+
* import { lazy } from 'react'
|
|
363
|
+
* import { BrowserRouter } from 'react-router-dom'
|
|
364
|
+
*
|
|
365
|
+
* export function App () {
|
|
366
|
+
* return <BrowserRouter>
|
|
367
|
+
* <Routes routes={[
|
|
368
|
+
* {
|
|
369
|
+
* path: '/',
|
|
370
|
+
* page: lazy(() => import('./pages/home'))
|
|
371
|
+
* }
|
|
372
|
+
* ]} />
|
|
373
|
+
* </BrowserRouter>
|
|
374
|
+
* }
|
|
375
|
+
* ```
|
|
376
|
+
*/
|
|
377
|
+
declare function Routes(props: RoutesProps): JSX.Element;
|
|
378
|
+
|
|
379
|
+
type TableItemProps<T = any> = {
|
|
380
|
+
optionsType?: 'auto';
|
|
381
|
+
/** @deprecated use render */
|
|
382
|
+
children?: JSX.Element | null;
|
|
383
|
+
object?: TableItemProps[];
|
|
384
|
+
} & FaasItemProps & Omit<TableColumnProps<T>, 'children'>;
|
|
385
|
+
type ExtendTableTypeProps = {
|
|
386
|
+
children?: JSX.Element | null;
|
|
387
|
+
render?: (value: any, values: any, index: number) => JSX.Element | string | number | boolean | null;
|
|
388
|
+
};
|
|
389
|
+
type ExtendTableItemProps<T = any> = BaseItemProps & Omit<TableColumnProps<T>, 'children'>;
|
|
390
|
+
type TableProps<T = any, ExtendTypes = any> = {
|
|
391
|
+
items: (TableItemProps | (ExtendTypes & ExtendTableItemProps))[];
|
|
392
|
+
extendTypes?: {
|
|
393
|
+
[key: string]: ExtendTableTypeProps;
|
|
394
|
+
};
|
|
395
|
+
faasData?: FaasDataWrapperProps<T>;
|
|
396
|
+
onChange?: (pagination: TablePaginationConfig, filters: Record<string, FilterValue | null>, sorter: SorterResult<T> | SorterResult<T>[], extra: TableCurrentDataSource<T>) => {
|
|
397
|
+
pagination: TablePaginationConfig;
|
|
398
|
+
filters: Record<string, FilterValue | null>;
|
|
399
|
+
sorter: SorterResult<T> | SorterResult<T>[];
|
|
400
|
+
extra: TableCurrentDataSource<T>;
|
|
401
|
+
};
|
|
402
|
+
} & TableProps$1<T>;
|
|
403
|
+
/**
|
|
404
|
+
* Table component with Ant Design & FaasJS
|
|
405
|
+
*
|
|
406
|
+
* @ref https://ant.design/components/table/
|
|
407
|
+
*/
|
|
408
|
+
declare function Table<T = any, ExtendTypes = any>(props: TableProps<T, ExtendTypes>): JSX.Element;
|
|
409
|
+
|
|
410
|
+
type TitleProps = {
|
|
411
|
+
title: string | string[];
|
|
412
|
+
/** ` - ` as default */
|
|
413
|
+
separator?: string;
|
|
414
|
+
suffix?: string;
|
|
415
|
+
/** return a h1 element */
|
|
416
|
+
h1?: boolean | {
|
|
417
|
+
className?: string;
|
|
418
|
+
style?: React.CSSProperties;
|
|
419
|
+
};
|
|
420
|
+
/** return a pure text element */
|
|
421
|
+
plain?: boolean;
|
|
422
|
+
/** return children */
|
|
423
|
+
children?: JSX.Element;
|
|
424
|
+
};
|
|
425
|
+
/**
|
|
426
|
+
* Title is used to change the title of the page.
|
|
427
|
+
* Return null by default.
|
|
428
|
+
*
|
|
429
|
+
* ```ts
|
|
430
|
+
* // return null
|
|
431
|
+
* <Title title='hi' /> // => change the document.title to 'hi'
|
|
432
|
+
* <Title title={['a', 'b']} /> // => change the document.title to 'a - b'
|
|
433
|
+
*
|
|
434
|
+
* // return h1
|
|
435
|
+
* <Title title='hi' h1 /> // => <h1>hi</h1>
|
|
436
|
+
* <Title title={['a', 'b']} h1 /> // => <h1>a</h1>
|
|
437
|
+
*
|
|
438
|
+
* // return children
|
|
439
|
+
* <Title title='hi'><CustomTitle /></Title> // => <CustomTitle />
|
|
440
|
+
* ```
|
|
441
|
+
*/
|
|
442
|
+
declare function Title(props: TitleProps): JSX.Element;
|
|
443
|
+
|
|
444
|
+
export { BaseItemProps, BaseOption, Blank, BlankProps, ConfigContext, ConfigProvider, ConfigProviderProps, Description, DescriptionItemProps, DescriptionProps, DrawerProps, ExtendDescriptionItemProps, ExtendDescriptionTypeProps, ExtendFormItemProps, ExtendFormTypeProps, ExtendTableItemProps, ExtendTableTypeProps, ExtendTypes, FaasItemProps, FaasItemType, FaasItemTypeValue, Form, FormItem, FormItemProps, FormProps, Link, LinkProps, ModalProps, PageNotFound, Routes, RoutesProps, Table, TableItemProps, TableProps, Title, TitleProps, setDrawerProps, setModalProps, transferOptions, transferValue, useConfigContext, useDrawer, useModal };
|