@1money/component-ui 0.0.71 → 0.0.74
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/es/components/ProForm/ProForm.d.ts +10 -2
- package/es/components/ProForm/ProForm.js +241 -55
- package/es/components/ProForm/ProFormDependency.d.ts +11 -2
- package/es/components/ProForm/ProFormDependency.js +29 -133
- package/es/components/ProForm/ProFormItem.js +146 -52
- package/es/components/ProForm/ProFormList.js +114 -62
- package/es/components/ProForm/SchemaForm.d.ts +7 -0
- package/es/components/ProForm/SchemaForm.js +103 -0
- package/es/components/ProForm/Submitter.js +26 -5
- package/es/components/ProForm/context.d.ts +30 -3
- package/es/components/ProForm/context.js +69 -10
- package/es/components/ProForm/core/constants.d.ts +12 -3
- package/es/components/ProForm/core/constants.js +18 -7
- package/es/components/ProForm/core/formStore.d.ts +24 -0
- package/es/components/ProForm/core/formStore.js +101 -0
- package/es/components/ProForm/core/hooks/useForm.d.ts +4 -1
- package/es/components/ProForm/core/hooks/useForm.js +336 -212
- package/es/components/ProForm/core/hooks/useFormCore.d.ts +5 -1
- package/es/components/ProForm/core/hooks/useFormCore.js +151 -93
- package/es/components/ProForm/core/interface.d.ts +33 -12
- package/es/components/ProForm/core/runRules.d.ts +20 -8
- package/es/components/ProForm/core/runRules.js +105 -50
- package/es/components/ProForm/core/useFormItem.d.ts +10 -1
- package/es/components/ProForm/core/useFormItem.js +141 -56
- package/es/components/ProForm/fields/ProFormDatePicker.js +4 -1
- package/es/components/ProForm/fields/ProFormFieldSet.js +20 -7
- package/es/components/ProForm/fields/createProFormField.js +61 -32
- package/es/components/ProForm/hooks/useFieldRequest.d.ts +6 -1
- package/es/components/ProForm/hooks/useFieldRequest.js +54 -9
- package/es/components/ProForm/hooks/useUrlSync.d.ts +16 -0
- package/es/components/ProForm/hooks/useUrlSync.js +170 -0
- package/es/components/ProForm/index.d.ts +12 -5
- package/es/components/ProForm/index.js +7 -2
- package/es/components/ProForm/interface.d.ts +185 -28
- package/es/components/ProForm/layouts/DialogForm.d.ts +5 -1
- package/es/components/ProForm/layouts/DialogForm.js +18 -7
- package/es/components/ProForm/layouts/DrawerForm.d.ts +5 -1
- package/es/components/ProForm/layouts/DrawerForm.js +17 -7
- package/es/components/ProForm/layouts/QueryFilter.d.ts +5 -2
- package/es/components/ProForm/layouts/QueryFilter.js +47 -71
- package/es/components/ProForm/layouts/useOverlayForm.d.ts +2 -2
- package/es/components/ProForm/layouts/useOverlayForm.js +27 -8
- package/es/components/ProForm/style/ProForm.css +4 -4
- package/es/components/ProForm/utils.d.ts +12 -1
- package/es/components/ProForm/utils.js +101 -28
- package/es/components/ProTable/ProTable.js +3 -3
- package/es/components/Tooltip/style/Tooltip.css +1 -0
- package/es/index.css +1 -1
- package/es/index.d.ts +2 -2
- package/es/index.js +2 -2
- package/lib/components/ProForm/ProForm.d.ts +10 -2
- package/lib/components/ProForm/ProForm.js +239 -53
- package/lib/components/ProForm/ProFormDependency.d.ts +11 -2
- package/lib/components/ProForm/ProFormDependency.js +30 -135
- package/lib/components/ProForm/ProFormItem.js +143 -48
- package/lib/components/ProForm/ProFormList.js +112 -60
- package/lib/components/ProForm/SchemaForm.d.ts +7 -0
- package/lib/components/ProForm/SchemaForm.js +110 -0
- package/lib/components/ProForm/Submitter.js +26 -5
- package/lib/components/ProForm/context.d.ts +30 -3
- package/lib/components/ProForm/context.js +69 -10
- package/lib/components/ProForm/core/constants.d.ts +12 -3
- package/lib/components/ProForm/core/constants.js +19 -8
- package/lib/components/ProForm/core/formStore.d.ts +24 -0
- package/lib/components/ProForm/core/formStore.js +110 -0
- package/lib/components/ProForm/core/hooks/useForm.d.ts +4 -1
- package/lib/components/ProForm/core/hooks/useForm.js +336 -212
- package/lib/components/ProForm/core/hooks/useFormCore.d.ts +5 -1
- package/lib/components/ProForm/core/hooks/useFormCore.js +150 -92
- package/lib/components/ProForm/core/interface.d.ts +33 -12
- package/lib/components/ProForm/core/runRules.d.ts +20 -8
- package/lib/components/ProForm/core/runRules.js +106 -50
- package/lib/components/ProForm/core/useFormItem.d.ts +10 -1
- package/lib/components/ProForm/core/useFormItem.js +138 -53
- package/lib/components/ProForm/fields/ProFormDatePicker.js +4 -1
- package/lib/components/ProForm/fields/ProFormFieldSet.js +19 -6
- package/lib/components/ProForm/fields/createProFormField.js +61 -32
- package/lib/components/ProForm/hooks/useFieldRequest.d.ts +6 -1
- package/lib/components/ProForm/hooks/useFieldRequest.js +53 -8
- package/lib/components/ProForm/hooks/useUrlSync.d.ts +16 -0
- package/lib/components/ProForm/hooks/useUrlSync.js +178 -0
- package/lib/components/ProForm/index.d.ts +12 -5
- package/lib/components/ProForm/index.js +16 -1
- package/lib/components/ProForm/interface.d.ts +185 -28
- package/lib/components/ProForm/layouts/DialogForm.d.ts +5 -1
- package/lib/components/ProForm/layouts/DialogForm.js +18 -7
- package/lib/components/ProForm/layouts/DrawerForm.d.ts +5 -1
- package/lib/components/ProForm/layouts/DrawerForm.js +17 -7
- package/lib/components/ProForm/layouts/QueryFilter.d.ts +5 -2
- package/lib/components/ProForm/layouts/QueryFilter.js +46 -70
- package/lib/components/ProForm/layouts/useOverlayForm.d.ts +2 -2
- package/lib/components/ProForm/layouts/useOverlayForm.js +30 -8
- package/lib/components/ProForm/style/ProForm.css +4 -4
- package/lib/components/ProForm/utils.d.ts +12 -1
- package/lib/components/ProForm/utils.js +104 -28
- package/lib/components/ProTable/ProTable.js +3 -3
- package/lib/components/Tooltip/style/Tooltip.css +1 -0
- package/lib/index.css +1 -1
- package/lib/index.d.ts +2 -2
- package/lib/index.js +13 -1
- package/package.json +1 -1
- package/scripts/mcp-server/examples.generated.json +90 -0
- package/scripts/mcp-server/index.generated.json +1866 -212
|
@@ -2010,10 +2010,12 @@
|
|
|
2010
2010
|
"ProFormCheckboxGroup",
|
|
2011
2011
|
"ProFormColProps",
|
|
2012
2012
|
"ProFormContextValue",
|
|
2013
|
+
"ProFormDateFormatter",
|
|
2013
2014
|
"ProFormDatePicker",
|
|
2014
2015
|
"ProFormDependency",
|
|
2015
2016
|
"ProFormDependencyProps",
|
|
2016
2017
|
"ProFormFieldConvertValueFn",
|
|
2018
|
+
"ProFormFieldName",
|
|
2017
2019
|
"ProFormFieldProps",
|
|
2018
2020
|
"ProFormFieldSet",
|
|
2019
2021
|
"ProFormFieldSetProps",
|
|
@@ -2023,6 +2025,8 @@
|
|
|
2023
2025
|
"ProFormGroupProps",
|
|
2024
2026
|
"ProFormItem",
|
|
2025
2027
|
"ProFormItemProps",
|
|
2028
|
+
"ProFormItemSharedProps",
|
|
2029
|
+
"ProFormLayoutConfig",
|
|
2026
2030
|
"ProFormList",
|
|
2027
2031
|
"ProFormListAction",
|
|
2028
2032
|
"ProFormListProps",
|
|
@@ -2031,21 +2035,28 @@
|
|
|
2031
2035
|
"ProFormProps",
|
|
2032
2036
|
"ProFormRadioGroup",
|
|
2033
2037
|
"ProFormRequestOption",
|
|
2038
|
+
"ProFormSchemaColumn",
|
|
2039
|
+
"ProFormSchemaValueType",
|
|
2034
2040
|
"ProFormSelect",
|
|
2035
2041
|
"ProFormSlider",
|
|
2036
2042
|
"ProFormSwitch",
|
|
2037
2043
|
"ProFormText",
|
|
2038
2044
|
"ProFormTextArea",
|
|
2039
2045
|
"ProFormUpload",
|
|
2046
|
+
"ProFormValidateResult",
|
|
2040
2047
|
"ProFormValueEnumObj",
|
|
2041
2048
|
"ProFormValueType",
|
|
2042
2049
|
"QueryFilter",
|
|
2043
2050
|
"QueryFilterProps",
|
|
2044
2051
|
"Rule",
|
|
2052
|
+
"SchemaForm",
|
|
2053
|
+
"SchemaFormProps",
|
|
2045
2054
|
"SubmitterProps",
|
|
2055
|
+
"UseFormWatch",
|
|
2046
2056
|
"ValidateStatus",
|
|
2047
2057
|
"ValidateTrigger",
|
|
2048
|
-
"createProFormField"
|
|
2058
|
+
"createProFormField",
|
|
2059
|
+
"useFormWatch"
|
|
2049
2060
|
],
|
|
2050
2061
|
"searchTags": [],
|
|
2051
2062
|
"typeText": "interface CreateProFormFieldConfig { ... }",
|
|
@@ -2352,7 +2363,7 @@
|
|
|
2352
2363
|
"name": "DialogForm",
|
|
2353
2364
|
"kind": "component",
|
|
2354
2365
|
"category": "forms",
|
|
2355
|
-
"summary": "",
|
|
2366
|
+
"summary": "Generic-aware export — keeps `<DialogForm<MyValues> …>` fully typed.",
|
|
2356
2367
|
"importPath": "@1money/component-ui",
|
|
2357
2368
|
"subpathImport": "@1money/component-ui/ProForm",
|
|
2358
2369
|
"sourceFile": "src/components/ProForm/layouts/DialogForm.tsx",
|
|
@@ -2413,6 +2424,14 @@
|
|
|
2413
2424
|
"description": "",
|
|
2414
2425
|
"inheritedFrom": null
|
|
2415
2426
|
},
|
|
2427
|
+
{
|
|
2428
|
+
"name": "closeOnReset",
|
|
2429
|
+
"type": "boolean",
|
|
2430
|
+
"optional": true,
|
|
2431
|
+
"default": null,
|
|
2432
|
+
"description": "Close the overlay when the form is reset (default true).",
|
|
2433
|
+
"inheritedFrom": null
|
|
2434
|
+
},
|
|
2416
2435
|
{
|
|
2417
2436
|
"name": "destroyOnClose",
|
|
2418
2437
|
"type": "boolean",
|
|
@@ -2431,7 +2450,7 @@
|
|
|
2431
2450
|
}
|
|
2432
2451
|
],
|
|
2433
2452
|
"extends": [
|
|
2434
|
-
"Omit<ProFormProps
|
|
2453
|
+
"Omit<ProFormProps<Values>, 'title'>"
|
|
2435
2454
|
],
|
|
2436
2455
|
"relatedSymbols": [
|
|
2437
2456
|
"CreateProFormFieldConfig",
|
|
@@ -2448,10 +2467,12 @@
|
|
|
2448
2467
|
"ProFormCheckboxGroup",
|
|
2449
2468
|
"ProFormColProps",
|
|
2450
2469
|
"ProFormContextValue",
|
|
2470
|
+
"ProFormDateFormatter",
|
|
2451
2471
|
"ProFormDatePicker",
|
|
2452
2472
|
"ProFormDependency",
|
|
2453
2473
|
"ProFormDependencyProps",
|
|
2454
2474
|
"ProFormFieldConvertValueFn",
|
|
2475
|
+
"ProFormFieldName",
|
|
2455
2476
|
"ProFormFieldProps",
|
|
2456
2477
|
"ProFormFieldSet",
|
|
2457
2478
|
"ProFormFieldSetProps",
|
|
@@ -2461,6 +2482,8 @@
|
|
|
2461
2482
|
"ProFormGroupProps",
|
|
2462
2483
|
"ProFormItem",
|
|
2463
2484
|
"ProFormItemProps",
|
|
2485
|
+
"ProFormItemSharedProps",
|
|
2486
|
+
"ProFormLayoutConfig",
|
|
2464
2487
|
"ProFormList",
|
|
2465
2488
|
"ProFormListAction",
|
|
2466
2489
|
"ProFormListProps",
|
|
@@ -2469,21 +2492,28 @@
|
|
|
2469
2492
|
"ProFormProps",
|
|
2470
2493
|
"ProFormRadioGroup",
|
|
2471
2494
|
"ProFormRequestOption",
|
|
2495
|
+
"ProFormSchemaColumn",
|
|
2496
|
+
"ProFormSchemaValueType",
|
|
2472
2497
|
"ProFormSelect",
|
|
2473
2498
|
"ProFormSlider",
|
|
2474
2499
|
"ProFormSwitch",
|
|
2475
2500
|
"ProFormText",
|
|
2476
2501
|
"ProFormTextArea",
|
|
2477
2502
|
"ProFormUpload",
|
|
2503
|
+
"ProFormValidateResult",
|
|
2478
2504
|
"ProFormValueEnumObj",
|
|
2479
2505
|
"ProFormValueType",
|
|
2480
2506
|
"QueryFilter",
|
|
2481
2507
|
"QueryFilterProps",
|
|
2482
2508
|
"Rule",
|
|
2509
|
+
"SchemaForm",
|
|
2510
|
+
"SchemaFormProps",
|
|
2483
2511
|
"SubmitterProps",
|
|
2512
|
+
"UseFormWatch",
|
|
2484
2513
|
"ValidateStatus",
|
|
2485
2514
|
"ValidateTrigger",
|
|
2486
|
-
"createProFormField"
|
|
2515
|
+
"createProFormField",
|
|
2516
|
+
"useFormWatch"
|
|
2487
2517
|
],
|
|
2488
2518
|
"searchTags": [],
|
|
2489
2519
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
@@ -2519,10 +2549,12 @@
|
|
|
2519
2549
|
"ProFormCheckboxGroup",
|
|
2520
2550
|
"ProFormColProps",
|
|
2521
2551
|
"ProFormContextValue",
|
|
2552
|
+
"ProFormDateFormatter",
|
|
2522
2553
|
"ProFormDatePicker",
|
|
2523
2554
|
"ProFormDependency",
|
|
2524
2555
|
"ProFormDependencyProps",
|
|
2525
2556
|
"ProFormFieldConvertValueFn",
|
|
2557
|
+
"ProFormFieldName",
|
|
2526
2558
|
"ProFormFieldProps",
|
|
2527
2559
|
"ProFormFieldSet",
|
|
2528
2560
|
"ProFormFieldSetProps",
|
|
@@ -2532,6 +2564,8 @@
|
|
|
2532
2564
|
"ProFormGroupProps",
|
|
2533
2565
|
"ProFormItem",
|
|
2534
2566
|
"ProFormItemProps",
|
|
2567
|
+
"ProFormItemSharedProps",
|
|
2568
|
+
"ProFormLayoutConfig",
|
|
2535
2569
|
"ProFormList",
|
|
2536
2570
|
"ProFormListAction",
|
|
2537
2571
|
"ProFormListProps",
|
|
@@ -2540,24 +2574,31 @@
|
|
|
2540
2574
|
"ProFormProps",
|
|
2541
2575
|
"ProFormRadioGroup",
|
|
2542
2576
|
"ProFormRequestOption",
|
|
2577
|
+
"ProFormSchemaColumn",
|
|
2578
|
+
"ProFormSchemaValueType",
|
|
2543
2579
|
"ProFormSelect",
|
|
2544
2580
|
"ProFormSlider",
|
|
2545
2581
|
"ProFormSwitch",
|
|
2546
2582
|
"ProFormText",
|
|
2547
2583
|
"ProFormTextArea",
|
|
2548
2584
|
"ProFormUpload",
|
|
2585
|
+
"ProFormValidateResult",
|
|
2549
2586
|
"ProFormValueEnumObj",
|
|
2550
2587
|
"ProFormValueType",
|
|
2551
2588
|
"QueryFilter",
|
|
2552
2589
|
"QueryFilterProps",
|
|
2553
2590
|
"Rule",
|
|
2591
|
+
"SchemaForm",
|
|
2592
|
+
"SchemaFormProps",
|
|
2554
2593
|
"SubmitterProps",
|
|
2594
|
+
"UseFormWatch",
|
|
2555
2595
|
"ValidateStatus",
|
|
2556
2596
|
"ValidateTrigger",
|
|
2557
|
-
"createProFormField"
|
|
2597
|
+
"createProFormField",
|
|
2598
|
+
"useFormWatch"
|
|
2558
2599
|
],
|
|
2559
2600
|
"searchTags": [],
|
|
2560
|
-
"typeText": "interface DialogFormProps extends Omit<ProFormProps
|
|
2601
|
+
"typeText": "interface DialogFormProps extends Omit<ProFormProps<Values>, 'title'> { ... }",
|
|
2561
2602
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
2562
2603
|
"examples": [
|
|
2563
2604
|
{
|
|
@@ -3063,7 +3104,7 @@
|
|
|
3063
3104
|
"name": "DrawerForm",
|
|
3064
3105
|
"kind": "component",
|
|
3065
3106
|
"category": "forms",
|
|
3066
|
-
"summary": "",
|
|
3107
|
+
"summary": "Generic-aware export — keeps `<DrawerForm<MyValues> …>` fully typed.",
|
|
3067
3108
|
"importPath": "@1money/component-ui",
|
|
3068
3109
|
"subpathImport": "@1money/component-ui/ProForm",
|
|
3069
3110
|
"sourceFile": "src/components/ProForm/layouts/DrawerForm.tsx",
|
|
@@ -3132,6 +3173,14 @@
|
|
|
3132
3173
|
"description": "",
|
|
3133
3174
|
"inheritedFrom": null
|
|
3134
3175
|
},
|
|
3176
|
+
{
|
|
3177
|
+
"name": "closeOnReset",
|
|
3178
|
+
"type": "boolean",
|
|
3179
|
+
"optional": true,
|
|
3180
|
+
"default": null,
|
|
3181
|
+
"description": "Close the overlay when the form is reset (default true).",
|
|
3182
|
+
"inheritedFrom": null
|
|
3183
|
+
},
|
|
3135
3184
|
{
|
|
3136
3185
|
"name": "destroyOnClose",
|
|
3137
3186
|
"type": "boolean",
|
|
@@ -3150,7 +3199,7 @@
|
|
|
3150
3199
|
}
|
|
3151
3200
|
],
|
|
3152
3201
|
"extends": [
|
|
3153
|
-
"Omit<ProFormProps
|
|
3202
|
+
"Omit<ProFormProps<Values>, 'title'>"
|
|
3154
3203
|
],
|
|
3155
3204
|
"relatedSymbols": [
|
|
3156
3205
|
"CreateProFormFieldConfig",
|
|
@@ -3167,10 +3216,12 @@
|
|
|
3167
3216
|
"ProFormCheckboxGroup",
|
|
3168
3217
|
"ProFormColProps",
|
|
3169
3218
|
"ProFormContextValue",
|
|
3219
|
+
"ProFormDateFormatter",
|
|
3170
3220
|
"ProFormDatePicker",
|
|
3171
3221
|
"ProFormDependency",
|
|
3172
3222
|
"ProFormDependencyProps",
|
|
3173
3223
|
"ProFormFieldConvertValueFn",
|
|
3224
|
+
"ProFormFieldName",
|
|
3174
3225
|
"ProFormFieldProps",
|
|
3175
3226
|
"ProFormFieldSet",
|
|
3176
3227
|
"ProFormFieldSetProps",
|
|
@@ -3180,6 +3231,8 @@
|
|
|
3180
3231
|
"ProFormGroupProps",
|
|
3181
3232
|
"ProFormItem",
|
|
3182
3233
|
"ProFormItemProps",
|
|
3234
|
+
"ProFormItemSharedProps",
|
|
3235
|
+
"ProFormLayoutConfig",
|
|
3183
3236
|
"ProFormList",
|
|
3184
3237
|
"ProFormListAction",
|
|
3185
3238
|
"ProFormListProps",
|
|
@@ -3188,21 +3241,28 @@
|
|
|
3188
3241
|
"ProFormProps",
|
|
3189
3242
|
"ProFormRadioGroup",
|
|
3190
3243
|
"ProFormRequestOption",
|
|
3244
|
+
"ProFormSchemaColumn",
|
|
3245
|
+
"ProFormSchemaValueType",
|
|
3191
3246
|
"ProFormSelect",
|
|
3192
3247
|
"ProFormSlider",
|
|
3193
3248
|
"ProFormSwitch",
|
|
3194
3249
|
"ProFormText",
|
|
3195
3250
|
"ProFormTextArea",
|
|
3196
3251
|
"ProFormUpload",
|
|
3252
|
+
"ProFormValidateResult",
|
|
3197
3253
|
"ProFormValueEnumObj",
|
|
3198
3254
|
"ProFormValueType",
|
|
3199
3255
|
"QueryFilter",
|
|
3200
3256
|
"QueryFilterProps",
|
|
3201
3257
|
"Rule",
|
|
3258
|
+
"SchemaForm",
|
|
3259
|
+
"SchemaFormProps",
|
|
3202
3260
|
"SubmitterProps",
|
|
3261
|
+
"UseFormWatch",
|
|
3203
3262
|
"ValidateStatus",
|
|
3204
3263
|
"ValidateTrigger",
|
|
3205
|
-
"createProFormField"
|
|
3264
|
+
"createProFormField",
|
|
3265
|
+
"useFormWatch"
|
|
3206
3266
|
],
|
|
3207
3267
|
"searchTags": [],
|
|
3208
3268
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
@@ -3238,10 +3298,12 @@
|
|
|
3238
3298
|
"ProFormCheckboxGroup",
|
|
3239
3299
|
"ProFormColProps",
|
|
3240
3300
|
"ProFormContextValue",
|
|
3301
|
+
"ProFormDateFormatter",
|
|
3241
3302
|
"ProFormDatePicker",
|
|
3242
3303
|
"ProFormDependency",
|
|
3243
3304
|
"ProFormDependencyProps",
|
|
3244
3305
|
"ProFormFieldConvertValueFn",
|
|
3306
|
+
"ProFormFieldName",
|
|
3245
3307
|
"ProFormFieldProps",
|
|
3246
3308
|
"ProFormFieldSet",
|
|
3247
3309
|
"ProFormFieldSetProps",
|
|
@@ -3251,6 +3313,8 @@
|
|
|
3251
3313
|
"ProFormGroupProps",
|
|
3252
3314
|
"ProFormItem",
|
|
3253
3315
|
"ProFormItemProps",
|
|
3316
|
+
"ProFormItemSharedProps",
|
|
3317
|
+
"ProFormLayoutConfig",
|
|
3254
3318
|
"ProFormList",
|
|
3255
3319
|
"ProFormListAction",
|
|
3256
3320
|
"ProFormListProps",
|
|
@@ -3259,24 +3323,31 @@
|
|
|
3259
3323
|
"ProFormProps",
|
|
3260
3324
|
"ProFormRadioGroup",
|
|
3261
3325
|
"ProFormRequestOption",
|
|
3326
|
+
"ProFormSchemaColumn",
|
|
3327
|
+
"ProFormSchemaValueType",
|
|
3262
3328
|
"ProFormSelect",
|
|
3263
3329
|
"ProFormSlider",
|
|
3264
3330
|
"ProFormSwitch",
|
|
3265
3331
|
"ProFormText",
|
|
3266
3332
|
"ProFormTextArea",
|
|
3267
3333
|
"ProFormUpload",
|
|
3334
|
+
"ProFormValidateResult",
|
|
3268
3335
|
"ProFormValueEnumObj",
|
|
3269
3336
|
"ProFormValueType",
|
|
3270
3337
|
"QueryFilter",
|
|
3271
3338
|
"QueryFilterProps",
|
|
3272
3339
|
"Rule",
|
|
3340
|
+
"SchemaForm",
|
|
3341
|
+
"SchemaFormProps",
|
|
3273
3342
|
"SubmitterProps",
|
|
3343
|
+
"UseFormWatch",
|
|
3274
3344
|
"ValidateStatus",
|
|
3275
3345
|
"ValidateTrigger",
|
|
3276
|
-
"createProFormField"
|
|
3346
|
+
"createProFormField",
|
|
3347
|
+
"useFormWatch"
|
|
3277
3348
|
],
|
|
3278
3349
|
"searchTags": [],
|
|
3279
|
-
"typeText": "interface DrawerFormProps extends Omit<ProFormProps
|
|
3350
|
+
"typeText": "interface DrawerFormProps extends Omit<ProFormProps<Values>, 'title'> { ... }",
|
|
3280
3351
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
3281
3352
|
"examples": [
|
|
3282
3353
|
{
|
|
@@ -3820,10 +3891,12 @@
|
|
|
3820
3891
|
"ProFormCheckboxGroup",
|
|
3821
3892
|
"ProFormColProps",
|
|
3822
3893
|
"ProFormContextValue",
|
|
3894
|
+
"ProFormDateFormatter",
|
|
3823
3895
|
"ProFormDatePicker",
|
|
3824
3896
|
"ProFormDependency",
|
|
3825
3897
|
"ProFormDependencyProps",
|
|
3826
3898
|
"ProFormFieldConvertValueFn",
|
|
3899
|
+
"ProFormFieldName",
|
|
3827
3900
|
"ProFormFieldProps",
|
|
3828
3901
|
"ProFormFieldSet",
|
|
3829
3902
|
"ProFormFieldSetProps",
|
|
@@ -3833,6 +3906,8 @@
|
|
|
3833
3906
|
"ProFormGroupProps",
|
|
3834
3907
|
"ProFormItem",
|
|
3835
3908
|
"ProFormItemProps",
|
|
3909
|
+
"ProFormItemSharedProps",
|
|
3910
|
+
"ProFormLayoutConfig",
|
|
3836
3911
|
"ProFormList",
|
|
3837
3912
|
"ProFormListAction",
|
|
3838
3913
|
"ProFormListProps",
|
|
@@ -3841,21 +3916,28 @@
|
|
|
3841
3916
|
"ProFormProps",
|
|
3842
3917
|
"ProFormRadioGroup",
|
|
3843
3918
|
"ProFormRequestOption",
|
|
3919
|
+
"ProFormSchemaColumn",
|
|
3920
|
+
"ProFormSchemaValueType",
|
|
3844
3921
|
"ProFormSelect",
|
|
3845
3922
|
"ProFormSlider",
|
|
3846
3923
|
"ProFormSwitch",
|
|
3847
3924
|
"ProFormText",
|
|
3848
3925
|
"ProFormTextArea",
|
|
3849
3926
|
"ProFormUpload",
|
|
3927
|
+
"ProFormValidateResult",
|
|
3850
3928
|
"ProFormValueEnumObj",
|
|
3851
3929
|
"ProFormValueType",
|
|
3852
3930
|
"QueryFilter",
|
|
3853
3931
|
"QueryFilterProps",
|
|
3854
3932
|
"Rule",
|
|
3933
|
+
"SchemaForm",
|
|
3934
|
+
"SchemaFormProps",
|
|
3855
3935
|
"SubmitterProps",
|
|
3936
|
+
"UseFormWatch",
|
|
3856
3937
|
"ValidateStatus",
|
|
3857
3938
|
"ValidateTrigger",
|
|
3858
|
-
"createProFormField"
|
|
3939
|
+
"createProFormField",
|
|
3940
|
+
"useFormWatch"
|
|
3859
3941
|
],
|
|
3860
3942
|
"searchTags": [],
|
|
3861
3943
|
"typeText": "interface FormCoreInstance { ... }",
|
|
@@ -3892,10 +3974,12 @@
|
|
|
3892
3974
|
"ProFormCheckboxGroup",
|
|
3893
3975
|
"ProFormColProps",
|
|
3894
3976
|
"ProFormContextValue",
|
|
3977
|
+
"ProFormDateFormatter",
|
|
3895
3978
|
"ProFormDatePicker",
|
|
3896
3979
|
"ProFormDependency",
|
|
3897
3980
|
"ProFormDependencyProps",
|
|
3898
3981
|
"ProFormFieldConvertValueFn",
|
|
3982
|
+
"ProFormFieldName",
|
|
3899
3983
|
"ProFormFieldProps",
|
|
3900
3984
|
"ProFormFieldSet",
|
|
3901
3985
|
"ProFormFieldSetProps",
|
|
@@ -3905,6 +3989,8 @@
|
|
|
3905
3989
|
"ProFormGroupProps",
|
|
3906
3990
|
"ProFormItem",
|
|
3907
3991
|
"ProFormItemProps",
|
|
3992
|
+
"ProFormItemSharedProps",
|
|
3993
|
+
"ProFormLayoutConfig",
|
|
3908
3994
|
"ProFormList",
|
|
3909
3995
|
"ProFormListAction",
|
|
3910
3996
|
"ProFormListProps",
|
|
@@ -3913,21 +3999,28 @@
|
|
|
3913
3999
|
"ProFormProps",
|
|
3914
4000
|
"ProFormRadioGroup",
|
|
3915
4001
|
"ProFormRequestOption",
|
|
4002
|
+
"ProFormSchemaColumn",
|
|
4003
|
+
"ProFormSchemaValueType",
|
|
3916
4004
|
"ProFormSelect",
|
|
3917
4005
|
"ProFormSlider",
|
|
3918
4006
|
"ProFormSwitch",
|
|
3919
4007
|
"ProFormText",
|
|
3920
4008
|
"ProFormTextArea",
|
|
3921
4009
|
"ProFormUpload",
|
|
4010
|
+
"ProFormValidateResult",
|
|
3922
4011
|
"ProFormValueEnumObj",
|
|
3923
4012
|
"ProFormValueType",
|
|
3924
4013
|
"QueryFilter",
|
|
3925
4014
|
"QueryFilterProps",
|
|
3926
4015
|
"Rule",
|
|
4016
|
+
"SchemaForm",
|
|
4017
|
+
"SchemaFormProps",
|
|
3927
4018
|
"SubmitterProps",
|
|
4019
|
+
"UseFormWatch",
|
|
3928
4020
|
"ValidateStatus",
|
|
3929
4021
|
"ValidateTrigger",
|
|
3930
|
-
"createProFormField"
|
|
4022
|
+
"createProFormField",
|
|
4023
|
+
"useFormWatch"
|
|
3931
4024
|
],
|
|
3932
4025
|
"searchTags": [],
|
|
3933
4026
|
"typeText": "interface FormInstance { ... }",
|
|
@@ -3964,10 +4057,12 @@
|
|
|
3964
4057
|
"ProFormCheckboxGroup",
|
|
3965
4058
|
"ProFormColProps",
|
|
3966
4059
|
"ProFormContextValue",
|
|
4060
|
+
"ProFormDateFormatter",
|
|
3967
4061
|
"ProFormDatePicker",
|
|
3968
4062
|
"ProFormDependency",
|
|
3969
4063
|
"ProFormDependencyProps",
|
|
3970
4064
|
"ProFormFieldConvertValueFn",
|
|
4065
|
+
"ProFormFieldName",
|
|
3971
4066
|
"ProFormFieldProps",
|
|
3972
4067
|
"ProFormFieldSet",
|
|
3973
4068
|
"ProFormFieldSetProps",
|
|
@@ -3977,6 +4072,8 @@
|
|
|
3977
4072
|
"ProFormGroupProps",
|
|
3978
4073
|
"ProFormItem",
|
|
3979
4074
|
"ProFormItemProps",
|
|
4075
|
+
"ProFormItemSharedProps",
|
|
4076
|
+
"ProFormLayoutConfig",
|
|
3980
4077
|
"ProFormList",
|
|
3981
4078
|
"ProFormListAction",
|
|
3982
4079
|
"ProFormListProps",
|
|
@@ -3985,21 +4082,28 @@
|
|
|
3985
4082
|
"ProFormProps",
|
|
3986
4083
|
"ProFormRadioGroup",
|
|
3987
4084
|
"ProFormRequestOption",
|
|
4085
|
+
"ProFormSchemaColumn",
|
|
4086
|
+
"ProFormSchemaValueType",
|
|
3988
4087
|
"ProFormSelect",
|
|
3989
4088
|
"ProFormSlider",
|
|
3990
4089
|
"ProFormSwitch",
|
|
3991
4090
|
"ProFormText",
|
|
3992
4091
|
"ProFormTextArea",
|
|
3993
4092
|
"ProFormUpload",
|
|
4093
|
+
"ProFormValidateResult",
|
|
3994
4094
|
"ProFormValueEnumObj",
|
|
3995
4095
|
"ProFormValueType",
|
|
3996
4096
|
"QueryFilter",
|
|
3997
4097
|
"QueryFilterProps",
|
|
3998
4098
|
"Rule",
|
|
4099
|
+
"SchemaForm",
|
|
4100
|
+
"SchemaFormProps",
|
|
3999
4101
|
"SubmitterProps",
|
|
4102
|
+
"UseFormWatch",
|
|
4000
4103
|
"ValidateStatus",
|
|
4001
4104
|
"ValidateTrigger",
|
|
4002
|
-
"createProFormField"
|
|
4105
|
+
"createProFormField",
|
|
4106
|
+
"useFormWatch"
|
|
4003
4107
|
],
|
|
4004
4108
|
"searchTags": [],
|
|
4005
4109
|
"typeText": "(typeof FORM_LAYOUTS)[number]",
|
|
@@ -4036,10 +4140,12 @@
|
|
|
4036
4140
|
"ProFormCheckboxGroup",
|
|
4037
4141
|
"ProFormColProps",
|
|
4038
4142
|
"ProFormContextValue",
|
|
4143
|
+
"ProFormDateFormatter",
|
|
4039
4144
|
"ProFormDatePicker",
|
|
4040
4145
|
"ProFormDependency",
|
|
4041
4146
|
"ProFormDependencyProps",
|
|
4042
4147
|
"ProFormFieldConvertValueFn",
|
|
4148
|
+
"ProFormFieldName",
|
|
4043
4149
|
"ProFormFieldProps",
|
|
4044
4150
|
"ProFormFieldSet",
|
|
4045
4151
|
"ProFormFieldSetProps",
|
|
@@ -4049,6 +4155,8 @@
|
|
|
4049
4155
|
"ProFormGroupProps",
|
|
4050
4156
|
"ProFormItem",
|
|
4051
4157
|
"ProFormItemProps",
|
|
4158
|
+
"ProFormItemSharedProps",
|
|
4159
|
+
"ProFormLayoutConfig",
|
|
4052
4160
|
"ProFormList",
|
|
4053
4161
|
"ProFormListAction",
|
|
4054
4162
|
"ProFormListProps",
|
|
@@ -4057,21 +4165,28 @@
|
|
|
4057
4165
|
"ProFormProps",
|
|
4058
4166
|
"ProFormRadioGroup",
|
|
4059
4167
|
"ProFormRequestOption",
|
|
4168
|
+
"ProFormSchemaColumn",
|
|
4169
|
+
"ProFormSchemaValueType",
|
|
4060
4170
|
"ProFormSelect",
|
|
4061
4171
|
"ProFormSlider",
|
|
4062
4172
|
"ProFormSwitch",
|
|
4063
4173
|
"ProFormText",
|
|
4064
4174
|
"ProFormTextArea",
|
|
4065
4175
|
"ProFormUpload",
|
|
4176
|
+
"ProFormValidateResult",
|
|
4066
4177
|
"ProFormValueEnumObj",
|
|
4067
4178
|
"ProFormValueType",
|
|
4068
4179
|
"QueryFilter",
|
|
4069
4180
|
"QueryFilterProps",
|
|
4070
4181
|
"Rule",
|
|
4182
|
+
"SchemaForm",
|
|
4183
|
+
"SchemaFormProps",
|
|
4071
4184
|
"SubmitterProps",
|
|
4185
|
+
"UseFormWatch",
|
|
4072
4186
|
"ValidateStatus",
|
|
4073
4187
|
"ValidateTrigger",
|
|
4074
|
-
"createProFormField"
|
|
4188
|
+
"createProFormField",
|
|
4189
|
+
"useFormWatch"
|
|
4075
4190
|
],
|
|
4076
4191
|
"searchTags": [],
|
|
4077
4192
|
"typeText": "(typeof FORM_SIZES)[number]",
|
|
@@ -5110,10 +5225,12 @@
|
|
|
5110
5225
|
"ProFormCheckboxGroup",
|
|
5111
5226
|
"ProFormColProps",
|
|
5112
5227
|
"ProFormContextValue",
|
|
5228
|
+
"ProFormDateFormatter",
|
|
5113
5229
|
"ProFormDatePicker",
|
|
5114
5230
|
"ProFormDependency",
|
|
5115
5231
|
"ProFormDependencyProps",
|
|
5116
5232
|
"ProFormFieldConvertValueFn",
|
|
5233
|
+
"ProFormFieldName",
|
|
5117
5234
|
"ProFormFieldProps",
|
|
5118
5235
|
"ProFormFieldSet",
|
|
5119
5236
|
"ProFormFieldSetProps",
|
|
@@ -5123,6 +5240,8 @@
|
|
|
5123
5240
|
"ProFormGroupProps",
|
|
5124
5241
|
"ProFormItem",
|
|
5125
5242
|
"ProFormItemProps",
|
|
5243
|
+
"ProFormItemSharedProps",
|
|
5244
|
+
"ProFormLayoutConfig",
|
|
5126
5245
|
"ProFormList",
|
|
5127
5246
|
"ProFormListAction",
|
|
5128
5247
|
"ProFormListProps",
|
|
@@ -5131,21 +5250,28 @@
|
|
|
5131
5250
|
"ProFormProps",
|
|
5132
5251
|
"ProFormRadioGroup",
|
|
5133
5252
|
"ProFormRequestOption",
|
|
5253
|
+
"ProFormSchemaColumn",
|
|
5254
|
+
"ProFormSchemaValueType",
|
|
5134
5255
|
"ProFormSelect",
|
|
5135
5256
|
"ProFormSlider",
|
|
5136
5257
|
"ProFormSwitch",
|
|
5137
5258
|
"ProFormText",
|
|
5138
5259
|
"ProFormTextArea",
|
|
5139
5260
|
"ProFormUpload",
|
|
5261
|
+
"ProFormValidateResult",
|
|
5140
5262
|
"ProFormValueEnumObj",
|
|
5141
5263
|
"ProFormValueType",
|
|
5142
5264
|
"QueryFilter",
|
|
5143
5265
|
"QueryFilterProps",
|
|
5144
5266
|
"Rule",
|
|
5267
|
+
"SchemaForm",
|
|
5268
|
+
"SchemaFormProps",
|
|
5145
5269
|
"SubmitterProps",
|
|
5270
|
+
"UseFormWatch",
|
|
5146
5271
|
"ValidateStatus",
|
|
5147
5272
|
"ValidateTrigger",
|
|
5148
|
-
"createProFormField"
|
|
5273
|
+
"createProFormField",
|
|
5274
|
+
"useFormWatch"
|
|
5149
5275
|
],
|
|
5150
5276
|
"searchTags": [],
|
|
5151
5277
|
"typeText": "(typeof LABEL_ALIGNS)[number]",
|
|
@@ -6874,7 +7000,7 @@
|
|
|
6874
7000
|
},
|
|
6875
7001
|
{
|
|
6876
7002
|
"name": "initialValues",
|
|
6877
|
-
"type": "
|
|
7003
|
+
"type": "Partial<Values>",
|
|
6878
7004
|
"optional": true,
|
|
6879
7005
|
"default": null,
|
|
6880
7006
|
"description": "",
|
|
@@ -6882,15 +7008,15 @@
|
|
|
6882
7008
|
},
|
|
6883
7009
|
{
|
|
6884
7010
|
"name": "onFinish",
|
|
6885
|
-
"type": "(values:
|
|
7011
|
+
"type": "(values: Values) => void | boolean | Promise<void | boolean>",
|
|
6886
7012
|
"optional": true,
|
|
6887
7013
|
"default": null,
|
|
6888
|
-
"description": "",
|
|
7014
|
+
"description": "Called after validation passes with the pipelined values.",
|
|
6889
7015
|
"inheritedFrom": null
|
|
6890
7016
|
},
|
|
6891
7017
|
{
|
|
6892
7018
|
"name": "onFinishFailed",
|
|
6893
|
-
"type": "(errorInfo: {\n values:
|
|
7019
|
+
"type": "(errorInfo: {\n values: Values;\n errors: Record<string, string>;\n }) => void",
|
|
6894
7020
|
"optional": true,
|
|
6895
7021
|
"default": null,
|
|
6896
7022
|
"description": "",
|
|
@@ -6898,7 +7024,7 @@
|
|
|
6898
7024
|
},
|
|
6899
7025
|
{
|
|
6900
7026
|
"name": "onValuesChange",
|
|
6901
|
-
"type": "(\n changedValues:
|
|
7027
|
+
"type": "(\n changedValues: Partial<Values>,\n allValues: Values,\n ) => void",
|
|
6902
7028
|
"optional": true,
|
|
6903
7029
|
"default": null,
|
|
6904
7030
|
"description": "",
|
|
@@ -6906,10 +7032,66 @@
|
|
|
6906
7032
|
},
|
|
6907
7033
|
{
|
|
6908
7034
|
"name": "onReset",
|
|
6909
|
-
"type": "() => void",
|
|
7035
|
+
"type": "(values?: Values) => void",
|
|
6910
7036
|
"optional": true,
|
|
6911
7037
|
"default": null,
|
|
6912
|
-
"description": "",
|
|
7038
|
+
"description": "Fires once per reset action, with the (post-reset) formatted values.",
|
|
7039
|
+
"inheritedFrom": null
|
|
7040
|
+
},
|
|
7041
|
+
{
|
|
7042
|
+
"name": "onInit",
|
|
7043
|
+
"type": "(values: Values, form: ProFormFormInstance<Values>) => void",
|
|
7044
|
+
"optional": true,
|
|
7045
|
+
"default": null,
|
|
7046
|
+
"description": "Fires once after the form is initialized (after `request` resolves when present).",
|
|
7047
|
+
"inheritedFrom": null
|
|
7048
|
+
},
|
|
7049
|
+
{
|
|
7050
|
+
"name": "onLoadingChange",
|
|
7051
|
+
"type": "(loading: boolean) => void",
|
|
7052
|
+
"optional": true,
|
|
7053
|
+
"default": null,
|
|
7054
|
+
"description": "Observes the internal submit loading state (true on start, false on settle).",
|
|
7055
|
+
"inheritedFrom": null
|
|
7056
|
+
},
|
|
7057
|
+
{
|
|
7058
|
+
"name": "syncToUrl",
|
|
7059
|
+
"type": "ProFormSyncToUrl",
|
|
7060
|
+
"optional": true,
|
|
7061
|
+
"default": null,
|
|
7062
|
+
"description": "Sync form values to the URL query string; the function form maps values both ways.",
|
|
7063
|
+
"inheritedFrom": null
|
|
7064
|
+
},
|
|
7065
|
+
{
|
|
7066
|
+
"name": "syncToUrlAsImportant",
|
|
7067
|
+
"type": "boolean",
|
|
7068
|
+
"optional": true,
|
|
7069
|
+
"default": null,
|
|
7070
|
+
"description": "On mount, URL params win over `initialValues` (default: initialValues win).",
|
|
7071
|
+
"inheritedFrom": null
|
|
7072
|
+
},
|
|
7073
|
+
{
|
|
7074
|
+
"name": "extraUrlParams",
|
|
7075
|
+
"type": "Record<string, unknown>",
|
|
7076
|
+
"optional": true,
|
|
7077
|
+
"default": null,
|
|
7078
|
+
"description": "Extra params always written to the URL alongside the form values.",
|
|
7079
|
+
"inheritedFrom": null
|
|
7080
|
+
},
|
|
7081
|
+
{
|
|
7082
|
+
"name": "autoFocusFirstInput",
|
|
7083
|
+
"type": "boolean",
|
|
7084
|
+
"optional": true,
|
|
7085
|
+
"default": null,
|
|
7086
|
+
"description": "Focus the first input on mount (default false).",
|
|
7087
|
+
"inheritedFrom": null
|
|
7088
|
+
},
|
|
7089
|
+
{
|
|
7090
|
+
"name": "formComponentType",
|
|
7091
|
+
"type": "'DialogForm' | 'DrawerForm' | 'QueryFilter'",
|
|
7092
|
+
"optional": true,
|
|
7093
|
+
"default": null,
|
|
7094
|
+
"description": "Internal: set by DialogForm/DrawerForm/QueryFilter for overlay-aware fields.",
|
|
6913
7095
|
"inheritedFrom": null
|
|
6914
7096
|
},
|
|
6915
7097
|
{
|
|
@@ -6920,6 +7102,14 @@
|
|
|
6920
7102
|
"description": "",
|
|
6921
7103
|
"inheritedFrom": null
|
|
6922
7104
|
},
|
|
7105
|
+
{
|
|
7106
|
+
"name": "layout",
|
|
7107
|
+
"type": "ProFormLayoutConfig",
|
|
7108
|
+
"optional": true,
|
|
7109
|
+
"default": null,
|
|
7110
|
+
"description": "Form-level layout configuration, e.g.",
|
|
7111
|
+
"inheritedFrom": null
|
|
7112
|
+
},
|
|
6923
7113
|
{
|
|
6924
7114
|
"name": "labelAlign",
|
|
6925
7115
|
"type": "LabelAlign",
|
|
@@ -6962,7 +7152,7 @@
|
|
|
6962
7152
|
},
|
|
6963
7153
|
{
|
|
6964
7154
|
"name": "submitter",
|
|
6965
|
-
"type": "SubmitterProps | false",
|
|
7155
|
+
"type": "SubmitterProps<Values> | false",
|
|
6966
7156
|
"optional": true,
|
|
6967
7157
|
"default": null,
|
|
6968
7158
|
"description": "",
|
|
@@ -7018,7 +7208,7 @@
|
|
|
7018
7208
|
},
|
|
7019
7209
|
{
|
|
7020
7210
|
"name": "request",
|
|
7021
|
-
"type": "(params?: unknown) => Promise<
|
|
7211
|
+
"type": "(params?: unknown) => Promise<Partial<Values>>",
|
|
7022
7212
|
"optional": true,
|
|
7023
7213
|
"default": null,
|
|
7024
7214
|
"description": "",
|
|
@@ -7034,7 +7224,7 @@
|
|
|
7034
7224
|
},
|
|
7035
7225
|
{
|
|
7036
7226
|
"name": "formRef",
|
|
7037
|
-
"type": "MutableRefObject<ProFormFormInstance | undefined>",
|
|
7227
|
+
"type": "MutableRefObject<ProFormFormInstance<Values> | undefined>",
|
|
7038
7228
|
"optional": true,
|
|
7039
7229
|
"default": null,
|
|
7040
7230
|
"description": "",
|
|
@@ -7047,6 +7237,30 @@
|
|
|
7047
7237
|
"default": null,
|
|
7048
7238
|
"description": "",
|
|
7049
7239
|
"inheritedFrom": null
|
|
7240
|
+
},
|
|
7241
|
+
{
|
|
7242
|
+
"name": "dateFormatter",
|
|
7243
|
+
"type": "ProFormDateFormatter",
|
|
7244
|
+
"optional": true,
|
|
7245
|
+
"default": null,
|
|
7246
|
+
"description": "How Date values are serialized in the submit pipeline (default `'string'`): `'string'` → `YYYY-MM-DD` (`YYYY-MM-DD HH:mm:ss` for `valueType=\"dateTime\"` fields), `'number'` → timestamp, a custom pattern (e.g.",
|
|
7247
|
+
"inheritedFrom": null
|
|
7248
|
+
},
|
|
7249
|
+
{
|
|
7250
|
+
"name": "fieldProps",
|
|
7251
|
+
"type": "Record<string, unknown>",
|
|
7252
|
+
"optional": true,
|
|
7253
|
+
"default": null,
|
|
7254
|
+
"description": "Defaults injected into every ProFormXxx field's component props (field-level wins)",
|
|
7255
|
+
"inheritedFrom": null
|
|
7256
|
+
},
|
|
7257
|
+
{
|
|
7258
|
+
"name": "formItemProps",
|
|
7259
|
+
"type": "ProFormItemSharedProps",
|
|
7260
|
+
"optional": true,
|
|
7261
|
+
"default": null,
|
|
7262
|
+
"description": "Defaults merged into every ProForm.Item (item-level wins)",
|
|
7263
|
+
"inheritedFrom": null
|
|
7050
7264
|
}
|
|
7051
7265
|
],
|
|
7052
7266
|
"extends": [
|
|
@@ -7067,10 +7281,12 @@
|
|
|
7067
7281
|
"ProFormCheckboxGroup",
|
|
7068
7282
|
"ProFormColProps",
|
|
7069
7283
|
"ProFormContextValue",
|
|
7284
|
+
"ProFormDateFormatter",
|
|
7070
7285
|
"ProFormDatePicker",
|
|
7071
7286
|
"ProFormDependency",
|
|
7072
7287
|
"ProFormDependencyProps",
|
|
7073
7288
|
"ProFormFieldConvertValueFn",
|
|
7289
|
+
"ProFormFieldName",
|
|
7074
7290
|
"ProFormFieldProps",
|
|
7075
7291
|
"ProFormFieldSet",
|
|
7076
7292
|
"ProFormFieldSetProps",
|
|
@@ -7080,6 +7296,8 @@
|
|
|
7080
7296
|
"ProFormGroupProps",
|
|
7081
7297
|
"ProFormItem",
|
|
7082
7298
|
"ProFormItemProps",
|
|
7299
|
+
"ProFormItemSharedProps",
|
|
7300
|
+
"ProFormLayoutConfig",
|
|
7083
7301
|
"ProFormList",
|
|
7084
7302
|
"ProFormListAction",
|
|
7085
7303
|
"ProFormListProps",
|
|
@@ -7088,21 +7306,28 @@
|
|
|
7088
7306
|
"ProFormProps",
|
|
7089
7307
|
"ProFormRadioGroup",
|
|
7090
7308
|
"ProFormRequestOption",
|
|
7309
|
+
"ProFormSchemaColumn",
|
|
7310
|
+
"ProFormSchemaValueType",
|
|
7091
7311
|
"ProFormSelect",
|
|
7092
7312
|
"ProFormSlider",
|
|
7093
7313
|
"ProFormSwitch",
|
|
7094
7314
|
"ProFormText",
|
|
7095
7315
|
"ProFormTextArea",
|
|
7096
7316
|
"ProFormUpload",
|
|
7317
|
+
"ProFormValidateResult",
|
|
7097
7318
|
"ProFormValueEnumObj",
|
|
7098
7319
|
"ProFormValueType",
|
|
7099
7320
|
"QueryFilter",
|
|
7100
7321
|
"QueryFilterProps",
|
|
7101
7322
|
"Rule",
|
|
7323
|
+
"SchemaForm",
|
|
7324
|
+
"SchemaFormProps",
|
|
7102
7325
|
"SubmitterProps",
|
|
7326
|
+
"UseFormWatch",
|
|
7103
7327
|
"ValidateStatus",
|
|
7104
7328
|
"ValidateTrigger",
|
|
7105
|
-
"createProFormField"
|
|
7329
|
+
"createProFormField",
|
|
7330
|
+
"useFormWatch"
|
|
7106
7331
|
],
|
|
7107
7332
|
"searchTags": [
|
|
7108
7333
|
"form"
|
|
@@ -7112,10 +7337,12 @@
|
|
|
7112
7337
|
"useForm": "$local:useForm",
|
|
7113
7338
|
"useInstance": "$local:useFormInstance",
|
|
7114
7339
|
"useContext": "$local:useProFormContext",
|
|
7340
|
+
"useWatch": "useFormWatch",
|
|
7115
7341
|
"Dependency": "ProFormDependency",
|
|
7116
7342
|
"List": "ProFormList",
|
|
7117
7343
|
"Group": "ProFormGroup",
|
|
7118
7344
|
"FieldSet": "ProFormFieldSet",
|
|
7345
|
+
"SchemaForm": "SchemaForm",
|
|
7119
7346
|
"Submitter": "$local:Submitter",
|
|
7120
7347
|
"Text": "ProFormText",
|
|
7121
7348
|
"Password": "ProFormPassword",
|
|
@@ -7143,14 +7370,34 @@
|
|
|
7143
7370
|
"hash": "e95a0d0355599d90e5a8f3e2157c5f59f2ee97f9c77cde6b856ca73e439ba89d",
|
|
7144
7371
|
"source": "readme"
|
|
7145
7372
|
},
|
|
7373
|
+
{
|
|
7374
|
+
"hash": "31e687407721cc55ccd2d23531c5e503c2b504126b32c3d64a6ea3fd5841a76c",
|
|
7375
|
+
"source": "readme"
|
|
7376
|
+
},
|
|
7377
|
+
{
|
|
7378
|
+
"hash": "f907b758c81c2a0019e9c8a5c23ff391c0f3c332e08be66119d3a5b4dc026876",
|
|
7379
|
+
"source": "readme"
|
|
7380
|
+
},
|
|
7146
7381
|
{
|
|
7147
7382
|
"hash": "dbe17f0fba3f62604b6da16ec484cb907242b1a61d6976be96c8e08deea44e14",
|
|
7148
7383
|
"source": "readme"
|
|
7149
7384
|
},
|
|
7385
|
+
{
|
|
7386
|
+
"hash": "9cfaec36634043a155c8a1d3642132cb4bc92d53e7b40e98fa08319fae0b6a76",
|
|
7387
|
+
"source": "readme"
|
|
7388
|
+
},
|
|
7389
|
+
{
|
|
7390
|
+
"hash": "699022fcfe2193a016f965ca015fe7b541b5f1215b76c3ce9b65711615c76f76",
|
|
7391
|
+
"source": "readme"
|
|
7392
|
+
},
|
|
7150
7393
|
{
|
|
7151
7394
|
"hash": "d9c8c640f134945ee1c690fc09f249d48531b5e05729faa4795d7411a8b3bc4e",
|
|
7152
7395
|
"source": "stories"
|
|
7153
7396
|
},
|
|
7397
|
+
{
|
|
7398
|
+
"hash": "376f33e3d6f965eddd80993afe2207b0350adc6c32f0649c8b9255a0de0f3ba4",
|
|
7399
|
+
"source": "stories"
|
|
7400
|
+
},
|
|
7154
7401
|
{
|
|
7155
7402
|
"hash": "7f54085ee6892564556d190e01d8e809af4cd0841f2c8c6876faeb511fbe8834",
|
|
7156
7403
|
"source": "stories"
|
|
@@ -7187,6 +7434,10 @@
|
|
|
7187
7434
|
"hash": "74f28ec19da10ee7a3cecb129f444ca1e9b9bfa6a44bda5422d89c70a079ddc3",
|
|
7188
7435
|
"source": "stories"
|
|
7189
7436
|
},
|
|
7437
|
+
{
|
|
7438
|
+
"hash": "fbc5d5eb0d5bdb23c26d08078a915d310bae38ddba853b4c3c905712dc72b3bb",
|
|
7439
|
+
"source": "stories"
|
|
7440
|
+
},
|
|
7190
7441
|
{
|
|
7191
7442
|
"hash": "3c3505571d048f21d338aa69eef9958e1c52c1291853b9b05ab914623319a464",
|
|
7192
7443
|
"source": "stories"
|
|
@@ -7195,6 +7446,22 @@
|
|
|
7195
7446
|
"hash": "6f2b7da00479a6033fdaca36f0646a924c61cbf09cd0e07da6948a884af98a61",
|
|
7196
7447
|
"source": "stories"
|
|
7197
7448
|
},
|
|
7449
|
+
{
|
|
7450
|
+
"hash": "e14139387639febe0b6fb378c95587a01858d7a353c66fa9b08499141c8adaab",
|
|
7451
|
+
"source": "stories"
|
|
7452
|
+
},
|
|
7453
|
+
{
|
|
7454
|
+
"hash": "87a9aab61a6cb4862c45ca66aa0e35790374df21bdbec63a5f16b931e676958c",
|
|
7455
|
+
"source": "stories"
|
|
7456
|
+
},
|
|
7457
|
+
{
|
|
7458
|
+
"hash": "19ff7c6e68589af5cf91db6cc50312aa3f8b99028511fda753a89675cdda48e7",
|
|
7459
|
+
"source": "stories"
|
|
7460
|
+
},
|
|
7461
|
+
{
|
|
7462
|
+
"hash": "06ed80f270ad4a44a62966e3d03d55cb761b84d414aac8e3da266148f530c106",
|
|
7463
|
+
"source": "stories"
|
|
7464
|
+
},
|
|
7198
7465
|
{
|
|
7199
7466
|
"hash": "2747faa4403a689de6d4dcfed855783441d64415a45749a3540e57922479641a",
|
|
7200
7467
|
"source": "stories"
|
|
@@ -7294,6 +7561,22 @@
|
|
|
7294
7561
|
{
|
|
7295
7562
|
"hash": "834b1493f597716ffd0faa47a8af73c11fd286bff5048777205a4596bd3e648b",
|
|
7296
7563
|
"source": "stories"
|
|
7564
|
+
},
|
|
7565
|
+
{
|
|
7566
|
+
"hash": "8f8c9aa7c2f1a20af504f6a25beac2759618fbbf3f86b946c5e89835513469dc",
|
|
7567
|
+
"source": "stories"
|
|
7568
|
+
},
|
|
7569
|
+
{
|
|
7570
|
+
"hash": "8b751a499e8365e384d8c21bfd57f0c317933488ecf3d0d3cef92f63f7876153",
|
|
7571
|
+
"source": "stories"
|
|
7572
|
+
},
|
|
7573
|
+
{
|
|
7574
|
+
"hash": "2f750f408e4ca01cb0342d68602035d76929a817ec2f00df585e8b329963fad3",
|
|
7575
|
+
"source": "stories"
|
|
7576
|
+
},
|
|
7577
|
+
{
|
|
7578
|
+
"hash": "5f633bf5a40beede394e15ffdb383d616174b92eb10905d331eda3670885be60",
|
|
7579
|
+
"source": "stories"
|
|
7297
7580
|
}
|
|
7298
7581
|
]
|
|
7299
7582
|
},
|
|
@@ -7322,10 +7605,12 @@
|
|
|
7322
7605
|
"ProFormCheckboxGroup",
|
|
7323
7606
|
"ProFormColProps",
|
|
7324
7607
|
"ProFormContextValue",
|
|
7608
|
+
"ProFormDateFormatter",
|
|
7325
7609
|
"ProFormDatePicker",
|
|
7326
7610
|
"ProFormDependency",
|
|
7327
7611
|
"ProFormDependencyProps",
|
|
7328
7612
|
"ProFormFieldConvertValueFn",
|
|
7613
|
+
"ProFormFieldName",
|
|
7329
7614
|
"ProFormFieldProps",
|
|
7330
7615
|
"ProFormFieldSet",
|
|
7331
7616
|
"ProFormFieldSetProps",
|
|
@@ -7335,6 +7620,8 @@
|
|
|
7335
7620
|
"ProFormGroupProps",
|
|
7336
7621
|
"ProFormItem",
|
|
7337
7622
|
"ProFormItemProps",
|
|
7623
|
+
"ProFormItemSharedProps",
|
|
7624
|
+
"ProFormLayoutConfig",
|
|
7338
7625
|
"ProFormList",
|
|
7339
7626
|
"ProFormListAction",
|
|
7340
7627
|
"ProFormListProps",
|
|
@@ -7343,21 +7630,28 @@
|
|
|
7343
7630
|
"ProFormProps",
|
|
7344
7631
|
"ProFormRadioGroup",
|
|
7345
7632
|
"ProFormRequestOption",
|
|
7633
|
+
"ProFormSchemaColumn",
|
|
7634
|
+
"ProFormSchemaValueType",
|
|
7346
7635
|
"ProFormSelect",
|
|
7347
7636
|
"ProFormSlider",
|
|
7348
7637
|
"ProFormSwitch",
|
|
7349
7638
|
"ProFormText",
|
|
7350
7639
|
"ProFormTextArea",
|
|
7351
7640
|
"ProFormUpload",
|
|
7641
|
+
"ProFormValidateResult",
|
|
7352
7642
|
"ProFormValueEnumObj",
|
|
7353
7643
|
"ProFormValueType",
|
|
7354
7644
|
"QueryFilter",
|
|
7355
7645
|
"QueryFilterProps",
|
|
7356
7646
|
"Rule",
|
|
7647
|
+
"SchemaForm",
|
|
7648
|
+
"SchemaFormProps",
|
|
7357
7649
|
"SubmitterProps",
|
|
7650
|
+
"UseFormWatch",
|
|
7358
7651
|
"ValidateStatus",
|
|
7359
7652
|
"ValidateTrigger",
|
|
7360
|
-
"createProFormField"
|
|
7653
|
+
"createProFormField",
|
|
7654
|
+
"useFormWatch"
|
|
7361
7655
|
],
|
|
7362
7656
|
"searchTags": [],
|
|
7363
7657
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
@@ -7393,10 +7687,12 @@
|
|
|
7393
7687
|
"ProFormCheckbox",
|
|
7394
7688
|
"ProFormColProps",
|
|
7395
7689
|
"ProFormContextValue",
|
|
7690
|
+
"ProFormDateFormatter",
|
|
7396
7691
|
"ProFormDatePicker",
|
|
7397
7692
|
"ProFormDependency",
|
|
7398
7693
|
"ProFormDependencyProps",
|
|
7399
7694
|
"ProFormFieldConvertValueFn",
|
|
7695
|
+
"ProFormFieldName",
|
|
7400
7696
|
"ProFormFieldProps",
|
|
7401
7697
|
"ProFormFieldSet",
|
|
7402
7698
|
"ProFormFieldSetProps",
|
|
@@ -7406,6 +7702,8 @@
|
|
|
7406
7702
|
"ProFormGroupProps",
|
|
7407
7703
|
"ProFormItem",
|
|
7408
7704
|
"ProFormItemProps",
|
|
7705
|
+
"ProFormItemSharedProps",
|
|
7706
|
+
"ProFormLayoutConfig",
|
|
7409
7707
|
"ProFormList",
|
|
7410
7708
|
"ProFormListAction",
|
|
7411
7709
|
"ProFormListProps",
|
|
@@ -7414,21 +7712,28 @@
|
|
|
7414
7712
|
"ProFormProps",
|
|
7415
7713
|
"ProFormRadioGroup",
|
|
7416
7714
|
"ProFormRequestOption",
|
|
7715
|
+
"ProFormSchemaColumn",
|
|
7716
|
+
"ProFormSchemaValueType",
|
|
7417
7717
|
"ProFormSelect",
|
|
7418
7718
|
"ProFormSlider",
|
|
7419
7719
|
"ProFormSwitch",
|
|
7420
7720
|
"ProFormText",
|
|
7421
7721
|
"ProFormTextArea",
|
|
7422
7722
|
"ProFormUpload",
|
|
7723
|
+
"ProFormValidateResult",
|
|
7423
7724
|
"ProFormValueEnumObj",
|
|
7424
7725
|
"ProFormValueType",
|
|
7425
7726
|
"QueryFilter",
|
|
7426
7727
|
"QueryFilterProps",
|
|
7427
7728
|
"Rule",
|
|
7729
|
+
"SchemaForm",
|
|
7730
|
+
"SchemaFormProps",
|
|
7428
7731
|
"SubmitterProps",
|
|
7732
|
+
"UseFormWatch",
|
|
7429
7733
|
"ValidateStatus",
|
|
7430
7734
|
"ValidateTrigger",
|
|
7431
|
-
"createProFormField"
|
|
7735
|
+
"createProFormField",
|
|
7736
|
+
"useFormWatch"
|
|
7432
7737
|
],
|
|
7433
7738
|
"searchTags": [],
|
|
7434
7739
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
@@ -7464,10 +7769,12 @@
|
|
|
7464
7769
|
"ProFormCheckbox",
|
|
7465
7770
|
"ProFormCheckboxGroup",
|
|
7466
7771
|
"ProFormContextValue",
|
|
7772
|
+
"ProFormDateFormatter",
|
|
7467
7773
|
"ProFormDatePicker",
|
|
7468
7774
|
"ProFormDependency",
|
|
7469
7775
|
"ProFormDependencyProps",
|
|
7470
7776
|
"ProFormFieldConvertValueFn",
|
|
7777
|
+
"ProFormFieldName",
|
|
7471
7778
|
"ProFormFieldProps",
|
|
7472
7779
|
"ProFormFieldSet",
|
|
7473
7780
|
"ProFormFieldSetProps",
|
|
@@ -7477,6 +7784,8 @@
|
|
|
7477
7784
|
"ProFormGroupProps",
|
|
7478
7785
|
"ProFormItem",
|
|
7479
7786
|
"ProFormItemProps",
|
|
7787
|
+
"ProFormItemSharedProps",
|
|
7788
|
+
"ProFormLayoutConfig",
|
|
7480
7789
|
"ProFormList",
|
|
7481
7790
|
"ProFormListAction",
|
|
7482
7791
|
"ProFormListProps",
|
|
@@ -7485,21 +7794,28 @@
|
|
|
7485
7794
|
"ProFormProps",
|
|
7486
7795
|
"ProFormRadioGroup",
|
|
7487
7796
|
"ProFormRequestOption",
|
|
7797
|
+
"ProFormSchemaColumn",
|
|
7798
|
+
"ProFormSchemaValueType",
|
|
7488
7799
|
"ProFormSelect",
|
|
7489
7800
|
"ProFormSlider",
|
|
7490
7801
|
"ProFormSwitch",
|
|
7491
7802
|
"ProFormText",
|
|
7492
7803
|
"ProFormTextArea",
|
|
7493
7804
|
"ProFormUpload",
|
|
7805
|
+
"ProFormValidateResult",
|
|
7494
7806
|
"ProFormValueEnumObj",
|
|
7495
7807
|
"ProFormValueType",
|
|
7496
7808
|
"QueryFilter",
|
|
7497
7809
|
"QueryFilterProps",
|
|
7498
7810
|
"Rule",
|
|
7811
|
+
"SchemaForm",
|
|
7812
|
+
"SchemaFormProps",
|
|
7499
7813
|
"SubmitterProps",
|
|
7814
|
+
"UseFormWatch",
|
|
7500
7815
|
"ValidateStatus",
|
|
7501
7816
|
"ValidateTrigger",
|
|
7502
|
-
"createProFormField"
|
|
7817
|
+
"createProFormField",
|
|
7818
|
+
"useFormWatch"
|
|
7503
7819
|
],
|
|
7504
7820
|
"searchTags": [],
|
|
7505
7821
|
"typeText": "interface ProFormColProps { ... }",
|
|
@@ -7536,10 +7852,12 @@
|
|
|
7536
7852
|
"ProFormCheckbox",
|
|
7537
7853
|
"ProFormCheckboxGroup",
|
|
7538
7854
|
"ProFormColProps",
|
|
7855
|
+
"ProFormDateFormatter",
|
|
7539
7856
|
"ProFormDatePicker",
|
|
7540
7857
|
"ProFormDependency",
|
|
7541
7858
|
"ProFormDependencyProps",
|
|
7542
7859
|
"ProFormFieldConvertValueFn",
|
|
7860
|
+
"ProFormFieldName",
|
|
7543
7861
|
"ProFormFieldProps",
|
|
7544
7862
|
"ProFormFieldSet",
|
|
7545
7863
|
"ProFormFieldSetProps",
|
|
@@ -7549,6 +7867,8 @@
|
|
|
7549
7867
|
"ProFormGroupProps",
|
|
7550
7868
|
"ProFormItem",
|
|
7551
7869
|
"ProFormItemProps",
|
|
7870
|
+
"ProFormItemSharedProps",
|
|
7871
|
+
"ProFormLayoutConfig",
|
|
7552
7872
|
"ProFormList",
|
|
7553
7873
|
"ProFormListAction",
|
|
7554
7874
|
"ProFormListProps",
|
|
@@ -7557,24 +7877,114 @@
|
|
|
7557
7877
|
"ProFormProps",
|
|
7558
7878
|
"ProFormRadioGroup",
|
|
7559
7879
|
"ProFormRequestOption",
|
|
7880
|
+
"ProFormSchemaColumn",
|
|
7881
|
+
"ProFormSchemaValueType",
|
|
7560
7882
|
"ProFormSelect",
|
|
7561
7883
|
"ProFormSlider",
|
|
7562
7884
|
"ProFormSwitch",
|
|
7563
7885
|
"ProFormText",
|
|
7564
7886
|
"ProFormTextArea",
|
|
7565
7887
|
"ProFormUpload",
|
|
7888
|
+
"ProFormValidateResult",
|
|
7566
7889
|
"ProFormValueEnumObj",
|
|
7567
7890
|
"ProFormValueType",
|
|
7568
7891
|
"QueryFilter",
|
|
7569
7892
|
"QueryFilterProps",
|
|
7570
7893
|
"Rule",
|
|
7894
|
+
"SchemaForm",
|
|
7895
|
+
"SchemaFormProps",
|
|
7571
7896
|
"SubmitterProps",
|
|
7897
|
+
"UseFormWatch",
|
|
7572
7898
|
"ValidateStatus",
|
|
7573
7899
|
"ValidateTrigger",
|
|
7574
|
-
"createProFormField"
|
|
7900
|
+
"createProFormField",
|
|
7901
|
+
"useFormWatch"
|
|
7902
|
+
],
|
|
7903
|
+
"searchTags": [],
|
|
7904
|
+
"typeText": "interface ProFormContextValue extends ProFormStableContextValue, ProFormStateContextValue { ... }",
|
|
7905
|
+
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
7906
|
+
"examples": [
|
|
7907
|
+
{
|
|
7908
|
+
"hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
|
|
7909
|
+
"source": "canonical"
|
|
7910
|
+
}
|
|
7911
|
+
]
|
|
7912
|
+
},
|
|
7913
|
+
{
|
|
7914
|
+
"name": "ProFormDateFormatter",
|
|
7915
|
+
"kind": "type",
|
|
7916
|
+
"category": "forms",
|
|
7917
|
+
"summary": "",
|
|
7918
|
+
"importPath": "@1money/component-ui",
|
|
7919
|
+
"subpathImport": "@1money/component-ui/ProForm",
|
|
7920
|
+
"sourceFile": "src/components/ProForm/interface.ts",
|
|
7921
|
+
"props": [],
|
|
7922
|
+
"extends": [],
|
|
7923
|
+
"relatedSymbols": [
|
|
7924
|
+
"CreateProFormFieldConfig",
|
|
7925
|
+
"DialogForm",
|
|
7926
|
+
"DialogFormProps",
|
|
7927
|
+
"DrawerForm",
|
|
7928
|
+
"DrawerFormProps",
|
|
7929
|
+
"FormCoreInstance",
|
|
7930
|
+
"FormInstance",
|
|
7931
|
+
"FormLayout",
|
|
7932
|
+
"FormSize",
|
|
7933
|
+
"LabelAlign",
|
|
7934
|
+
"ProForm",
|
|
7935
|
+
"ProFormCheckbox",
|
|
7936
|
+
"ProFormCheckboxGroup",
|
|
7937
|
+
"ProFormColProps",
|
|
7938
|
+
"ProFormContextValue",
|
|
7939
|
+
"ProFormDatePicker",
|
|
7940
|
+
"ProFormDependency",
|
|
7941
|
+
"ProFormDependencyProps",
|
|
7942
|
+
"ProFormFieldConvertValueFn",
|
|
7943
|
+
"ProFormFieldName",
|
|
7944
|
+
"ProFormFieldProps",
|
|
7945
|
+
"ProFormFieldSet",
|
|
7946
|
+
"ProFormFieldSetProps",
|
|
7947
|
+
"ProFormFieldTransformFn",
|
|
7948
|
+
"ProFormFormInstance",
|
|
7949
|
+
"ProFormGroup",
|
|
7950
|
+
"ProFormGroupProps",
|
|
7951
|
+
"ProFormItem",
|
|
7952
|
+
"ProFormItemProps",
|
|
7953
|
+
"ProFormItemSharedProps",
|
|
7954
|
+
"ProFormLayoutConfig",
|
|
7955
|
+
"ProFormList",
|
|
7956
|
+
"ProFormListAction",
|
|
7957
|
+
"ProFormListProps",
|
|
7958
|
+
"ProFormMode",
|
|
7959
|
+
"ProFormPassword",
|
|
7960
|
+
"ProFormProps",
|
|
7961
|
+
"ProFormRadioGroup",
|
|
7962
|
+
"ProFormRequestOption",
|
|
7963
|
+
"ProFormSchemaColumn",
|
|
7964
|
+
"ProFormSchemaValueType",
|
|
7965
|
+
"ProFormSelect",
|
|
7966
|
+
"ProFormSlider",
|
|
7967
|
+
"ProFormSwitch",
|
|
7968
|
+
"ProFormText",
|
|
7969
|
+
"ProFormTextArea",
|
|
7970
|
+
"ProFormUpload",
|
|
7971
|
+
"ProFormValidateResult",
|
|
7972
|
+
"ProFormValueEnumObj",
|
|
7973
|
+
"ProFormValueType",
|
|
7974
|
+
"QueryFilter",
|
|
7975
|
+
"QueryFilterProps",
|
|
7976
|
+
"Rule",
|
|
7977
|
+
"SchemaForm",
|
|
7978
|
+
"SchemaFormProps",
|
|
7979
|
+
"SubmitterProps",
|
|
7980
|
+
"UseFormWatch",
|
|
7981
|
+
"ValidateStatus",
|
|
7982
|
+
"ValidateTrigger",
|
|
7983
|
+
"createProFormField",
|
|
7984
|
+
"useFormWatch"
|
|
7575
7985
|
],
|
|
7576
7986
|
"searchTags": [],
|
|
7577
|
-
"typeText": "
|
|
7987
|
+
"typeText": "| 'string'\n | 'number'\n | (string & {})\n | ((value: Date, name: string) => unknown)\n | false",
|
|
7578
7988
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
7579
7989
|
"examples": [
|
|
7580
7990
|
{
|
|
@@ -7609,9 +8019,11 @@
|
|
|
7609
8019
|
"ProFormCheckboxGroup",
|
|
7610
8020
|
"ProFormColProps",
|
|
7611
8021
|
"ProFormContextValue",
|
|
8022
|
+
"ProFormDateFormatter",
|
|
7612
8023
|
"ProFormDependency",
|
|
7613
8024
|
"ProFormDependencyProps",
|
|
7614
8025
|
"ProFormFieldConvertValueFn",
|
|
8026
|
+
"ProFormFieldName",
|
|
7615
8027
|
"ProFormFieldProps",
|
|
7616
8028
|
"ProFormFieldSet",
|
|
7617
8029
|
"ProFormFieldSetProps",
|
|
@@ -7621,6 +8033,8 @@
|
|
|
7621
8033
|
"ProFormGroupProps",
|
|
7622
8034
|
"ProFormItem",
|
|
7623
8035
|
"ProFormItemProps",
|
|
8036
|
+
"ProFormItemSharedProps",
|
|
8037
|
+
"ProFormLayoutConfig",
|
|
7624
8038
|
"ProFormList",
|
|
7625
8039
|
"ProFormListAction",
|
|
7626
8040
|
"ProFormListProps",
|
|
@@ -7629,21 +8043,28 @@
|
|
|
7629
8043
|
"ProFormProps",
|
|
7630
8044
|
"ProFormRadioGroup",
|
|
7631
8045
|
"ProFormRequestOption",
|
|
8046
|
+
"ProFormSchemaColumn",
|
|
8047
|
+
"ProFormSchemaValueType",
|
|
7632
8048
|
"ProFormSelect",
|
|
7633
8049
|
"ProFormSlider",
|
|
7634
8050
|
"ProFormSwitch",
|
|
7635
8051
|
"ProFormText",
|
|
7636
8052
|
"ProFormTextArea",
|
|
7637
8053
|
"ProFormUpload",
|
|
8054
|
+
"ProFormValidateResult",
|
|
7638
8055
|
"ProFormValueEnumObj",
|
|
7639
8056
|
"ProFormValueType",
|
|
7640
8057
|
"QueryFilter",
|
|
7641
8058
|
"QueryFilterProps",
|
|
7642
8059
|
"Rule",
|
|
8060
|
+
"SchemaForm",
|
|
8061
|
+
"SchemaFormProps",
|
|
7643
8062
|
"SubmitterProps",
|
|
8063
|
+
"UseFormWatch",
|
|
7644
8064
|
"ValidateStatus",
|
|
7645
8065
|
"ValidateTrigger",
|
|
7646
|
-
"createProFormField"
|
|
8066
|
+
"createProFormField",
|
|
8067
|
+
"useFormWatch"
|
|
7647
8068
|
],
|
|
7648
8069
|
"searchTags": [
|
|
7649
8070
|
"date input",
|
|
@@ -7668,7 +8089,7 @@
|
|
|
7668
8089
|
"props": [
|
|
7669
8090
|
{
|
|
7670
8091
|
"name": "name",
|
|
7671
|
-
"type": "
|
|
8092
|
+
"type": "ProFormFieldName<Values>[]",
|
|
7672
8093
|
"optional": false,
|
|
7673
8094
|
"default": null,
|
|
7674
8095
|
"description": "",
|
|
@@ -7684,7 +8105,7 @@
|
|
|
7684
8105
|
},
|
|
7685
8106
|
{
|
|
7686
8107
|
"name": "children",
|
|
7687
|
-
"type": "(values: Record<string, unknown
|
|
8108
|
+
"type": "(\n values: Record<string, unknown>,\n form: ProFormFormInstance<Values>,\n ) => ReactNode",
|
|
7688
8109
|
"optional": false,
|
|
7689
8110
|
"default": null,
|
|
7690
8111
|
"description": "",
|
|
@@ -7708,9 +8129,11 @@
|
|
|
7708
8129
|
"ProFormCheckboxGroup",
|
|
7709
8130
|
"ProFormColProps",
|
|
7710
8131
|
"ProFormContextValue",
|
|
8132
|
+
"ProFormDateFormatter",
|
|
7711
8133
|
"ProFormDatePicker",
|
|
7712
8134
|
"ProFormDependencyProps",
|
|
7713
8135
|
"ProFormFieldConvertValueFn",
|
|
8136
|
+
"ProFormFieldName",
|
|
7714
8137
|
"ProFormFieldProps",
|
|
7715
8138
|
"ProFormFieldSet",
|
|
7716
8139
|
"ProFormFieldSetProps",
|
|
@@ -7720,6 +8143,8 @@
|
|
|
7720
8143
|
"ProFormGroupProps",
|
|
7721
8144
|
"ProFormItem",
|
|
7722
8145
|
"ProFormItemProps",
|
|
8146
|
+
"ProFormItemSharedProps",
|
|
8147
|
+
"ProFormLayoutConfig",
|
|
7723
8148
|
"ProFormList",
|
|
7724
8149
|
"ProFormListAction",
|
|
7725
8150
|
"ProFormListProps",
|
|
@@ -7728,21 +8153,28 @@
|
|
|
7728
8153
|
"ProFormProps",
|
|
7729
8154
|
"ProFormRadioGroup",
|
|
7730
8155
|
"ProFormRequestOption",
|
|
8156
|
+
"ProFormSchemaColumn",
|
|
8157
|
+
"ProFormSchemaValueType",
|
|
7731
8158
|
"ProFormSelect",
|
|
7732
8159
|
"ProFormSlider",
|
|
7733
8160
|
"ProFormSwitch",
|
|
7734
8161
|
"ProFormText",
|
|
7735
8162
|
"ProFormTextArea",
|
|
7736
8163
|
"ProFormUpload",
|
|
8164
|
+
"ProFormValidateResult",
|
|
7737
8165
|
"ProFormValueEnumObj",
|
|
7738
8166
|
"ProFormValueType",
|
|
7739
8167
|
"QueryFilter",
|
|
7740
8168
|
"QueryFilterProps",
|
|
7741
8169
|
"Rule",
|
|
8170
|
+
"SchemaForm",
|
|
8171
|
+
"SchemaFormProps",
|
|
7742
8172
|
"SubmitterProps",
|
|
8173
|
+
"UseFormWatch",
|
|
7743
8174
|
"ValidateStatus",
|
|
7744
8175
|
"ValidateTrigger",
|
|
7745
|
-
"createProFormField"
|
|
8176
|
+
"createProFormField",
|
|
8177
|
+
"useFormWatch"
|
|
7746
8178
|
],
|
|
7747
8179
|
"searchTags": [],
|
|
7748
8180
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
@@ -7779,9 +8211,11 @@
|
|
|
7779
8211
|
"ProFormCheckboxGroup",
|
|
7780
8212
|
"ProFormColProps",
|
|
7781
8213
|
"ProFormContextValue",
|
|
8214
|
+
"ProFormDateFormatter",
|
|
7782
8215
|
"ProFormDatePicker",
|
|
7783
8216
|
"ProFormDependency",
|
|
7784
8217
|
"ProFormFieldConvertValueFn",
|
|
8218
|
+
"ProFormFieldName",
|
|
7785
8219
|
"ProFormFieldProps",
|
|
7786
8220
|
"ProFormFieldSet",
|
|
7787
8221
|
"ProFormFieldSetProps",
|
|
@@ -7791,6 +8225,8 @@
|
|
|
7791
8225
|
"ProFormGroupProps",
|
|
7792
8226
|
"ProFormItem",
|
|
7793
8227
|
"ProFormItemProps",
|
|
8228
|
+
"ProFormItemSharedProps",
|
|
8229
|
+
"ProFormLayoutConfig",
|
|
7794
8230
|
"ProFormList",
|
|
7795
8231
|
"ProFormListAction",
|
|
7796
8232
|
"ProFormListProps",
|
|
@@ -7799,21 +8235,28 @@
|
|
|
7799
8235
|
"ProFormProps",
|
|
7800
8236
|
"ProFormRadioGroup",
|
|
7801
8237
|
"ProFormRequestOption",
|
|
8238
|
+
"ProFormSchemaColumn",
|
|
8239
|
+
"ProFormSchemaValueType",
|
|
7802
8240
|
"ProFormSelect",
|
|
7803
8241
|
"ProFormSlider",
|
|
7804
8242
|
"ProFormSwitch",
|
|
7805
8243
|
"ProFormText",
|
|
7806
8244
|
"ProFormTextArea",
|
|
7807
8245
|
"ProFormUpload",
|
|
8246
|
+
"ProFormValidateResult",
|
|
7808
8247
|
"ProFormValueEnumObj",
|
|
7809
8248
|
"ProFormValueType",
|
|
7810
8249
|
"QueryFilter",
|
|
7811
8250
|
"QueryFilterProps",
|
|
7812
8251
|
"Rule",
|
|
8252
|
+
"SchemaForm",
|
|
8253
|
+
"SchemaFormProps",
|
|
7813
8254
|
"SubmitterProps",
|
|
8255
|
+
"UseFormWatch",
|
|
7814
8256
|
"ValidateStatus",
|
|
7815
8257
|
"ValidateTrigger",
|
|
7816
|
-
"createProFormField"
|
|
8258
|
+
"createProFormField",
|
|
8259
|
+
"useFormWatch"
|
|
7817
8260
|
],
|
|
7818
8261
|
"searchTags": [],
|
|
7819
8262
|
"typeText": "interface ProFormDependencyProps { ... }",
|
|
@@ -7851,9 +8294,11 @@
|
|
|
7851
8294
|
"ProFormCheckboxGroup",
|
|
7852
8295
|
"ProFormColProps",
|
|
7853
8296
|
"ProFormContextValue",
|
|
8297
|
+
"ProFormDateFormatter",
|
|
7854
8298
|
"ProFormDatePicker",
|
|
7855
8299
|
"ProFormDependency",
|
|
7856
8300
|
"ProFormDependencyProps",
|
|
8301
|
+
"ProFormFieldName",
|
|
7857
8302
|
"ProFormFieldProps",
|
|
7858
8303
|
"ProFormFieldSet",
|
|
7859
8304
|
"ProFormFieldSetProps",
|
|
@@ -7863,6 +8308,8 @@
|
|
|
7863
8308
|
"ProFormGroupProps",
|
|
7864
8309
|
"ProFormItem",
|
|
7865
8310
|
"ProFormItemProps",
|
|
8311
|
+
"ProFormItemSharedProps",
|
|
8312
|
+
"ProFormLayoutConfig",
|
|
7866
8313
|
"ProFormList",
|
|
7867
8314
|
"ProFormListAction",
|
|
7868
8315
|
"ProFormListProps",
|
|
@@ -7871,21 +8318,28 @@
|
|
|
7871
8318
|
"ProFormProps",
|
|
7872
8319
|
"ProFormRadioGroup",
|
|
7873
8320
|
"ProFormRequestOption",
|
|
8321
|
+
"ProFormSchemaColumn",
|
|
8322
|
+
"ProFormSchemaValueType",
|
|
7874
8323
|
"ProFormSelect",
|
|
7875
8324
|
"ProFormSlider",
|
|
7876
8325
|
"ProFormSwitch",
|
|
7877
8326
|
"ProFormText",
|
|
7878
8327
|
"ProFormTextArea",
|
|
7879
8328
|
"ProFormUpload",
|
|
8329
|
+
"ProFormValidateResult",
|
|
7880
8330
|
"ProFormValueEnumObj",
|
|
7881
8331
|
"ProFormValueType",
|
|
7882
8332
|
"QueryFilter",
|
|
7883
8333
|
"QueryFilterProps",
|
|
7884
8334
|
"Rule",
|
|
8335
|
+
"SchemaForm",
|
|
8336
|
+
"SchemaFormProps",
|
|
7885
8337
|
"SubmitterProps",
|
|
8338
|
+
"UseFormWatch",
|
|
7886
8339
|
"ValidateStatus",
|
|
7887
8340
|
"ValidateTrigger",
|
|
7888
|
-
"createProFormField"
|
|
8341
|
+
"createProFormField",
|
|
8342
|
+
"useFormWatch"
|
|
7889
8343
|
],
|
|
7890
8344
|
"searchTags": [],
|
|
7891
8345
|
"typeText": "(\n value: unknown,\n name: string,\n) => unknown",
|
|
@@ -7898,10 +8352,10 @@
|
|
|
7898
8352
|
]
|
|
7899
8353
|
},
|
|
7900
8354
|
{
|
|
7901
|
-
"name": "
|
|
8355
|
+
"name": "ProFormFieldName",
|
|
7902
8356
|
"kind": "type",
|
|
7903
8357
|
"category": "forms",
|
|
7904
|
-
"summary": "",
|
|
8358
|
+
"summary": "Top-level keys of `Values` (for editor autocomplete) while still accepting any string — names may be dot-paths (`\"address.city\"`), list paths (`\"items.0.qty\"`), or keys produced by a renaming `transform`.",
|
|
7905
8359
|
"importPath": "@1money/component-ui",
|
|
7906
8360
|
"subpathImport": "@1money/component-ui/ProForm",
|
|
7907
8361
|
"sourceFile": "src/components/ProForm/interface.ts",
|
|
@@ -7923,10 +8377,12 @@
|
|
|
7923
8377
|
"ProFormCheckboxGroup",
|
|
7924
8378
|
"ProFormColProps",
|
|
7925
8379
|
"ProFormContextValue",
|
|
8380
|
+
"ProFormDateFormatter",
|
|
7926
8381
|
"ProFormDatePicker",
|
|
7927
8382
|
"ProFormDependency",
|
|
7928
8383
|
"ProFormDependencyProps",
|
|
7929
8384
|
"ProFormFieldConvertValueFn",
|
|
8385
|
+
"ProFormFieldProps",
|
|
7930
8386
|
"ProFormFieldSet",
|
|
7931
8387
|
"ProFormFieldSetProps",
|
|
7932
8388
|
"ProFormFieldTransformFn",
|
|
@@ -7935,6 +8391,8 @@
|
|
|
7935
8391
|
"ProFormGroupProps",
|
|
7936
8392
|
"ProFormItem",
|
|
7937
8393
|
"ProFormItemProps",
|
|
8394
|
+
"ProFormItemSharedProps",
|
|
8395
|
+
"ProFormLayoutConfig",
|
|
7938
8396
|
"ProFormList",
|
|
7939
8397
|
"ProFormListAction",
|
|
7940
8398
|
"ProFormListProps",
|
|
@@ -7943,24 +8401,31 @@
|
|
|
7943
8401
|
"ProFormProps",
|
|
7944
8402
|
"ProFormRadioGroup",
|
|
7945
8403
|
"ProFormRequestOption",
|
|
8404
|
+
"ProFormSchemaColumn",
|
|
8405
|
+
"ProFormSchemaValueType",
|
|
7946
8406
|
"ProFormSelect",
|
|
7947
8407
|
"ProFormSlider",
|
|
7948
8408
|
"ProFormSwitch",
|
|
7949
8409
|
"ProFormText",
|
|
7950
8410
|
"ProFormTextArea",
|
|
7951
8411
|
"ProFormUpload",
|
|
8412
|
+
"ProFormValidateResult",
|
|
7952
8413
|
"ProFormValueEnumObj",
|
|
7953
8414
|
"ProFormValueType",
|
|
7954
8415
|
"QueryFilter",
|
|
7955
8416
|
"QueryFilterProps",
|
|
7956
8417
|
"Rule",
|
|
8418
|
+
"SchemaForm",
|
|
8419
|
+
"SchemaFormProps",
|
|
7957
8420
|
"SubmitterProps",
|
|
8421
|
+
"UseFormWatch",
|
|
7958
8422
|
"ValidateStatus",
|
|
7959
8423
|
"ValidateTrigger",
|
|
7960
|
-
"createProFormField"
|
|
8424
|
+
"createProFormField",
|
|
8425
|
+
"useFormWatch"
|
|
7961
8426
|
],
|
|
7962
8427
|
"searchTags": [],
|
|
7963
|
-
"typeText": "
|
|
8428
|
+
"typeText": "| Extract<keyof Values, string>\n | (string & {})",
|
|
7964
8429
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
7965
8430
|
"examples": [
|
|
7966
8431
|
{
|
|
@@ -7970,46 +8435,129 @@
|
|
|
7970
8435
|
]
|
|
7971
8436
|
},
|
|
7972
8437
|
{
|
|
7973
|
-
"name": "
|
|
7974
|
-
"kind": "
|
|
8438
|
+
"name": "ProFormFieldProps",
|
|
8439
|
+
"kind": "type",
|
|
7975
8440
|
"category": "forms",
|
|
7976
8441
|
"summary": "",
|
|
7977
8442
|
"importPath": "@1money/component-ui",
|
|
7978
8443
|
"subpathImport": "@1money/component-ui/ProForm",
|
|
7979
|
-
"sourceFile": "src/components/ProForm/
|
|
7980
|
-
"props": [
|
|
7981
|
-
|
|
7982
|
-
|
|
7983
|
-
|
|
7984
|
-
|
|
7985
|
-
|
|
7986
|
-
|
|
7987
|
-
|
|
7988
|
-
|
|
7989
|
-
|
|
7990
|
-
|
|
7991
|
-
|
|
7992
|
-
|
|
7993
|
-
|
|
7994
|
-
|
|
7995
|
-
|
|
7996
|
-
|
|
7997
|
-
|
|
7998
|
-
|
|
7999
|
-
|
|
8000
|
-
|
|
8001
|
-
|
|
8002
|
-
|
|
8003
|
-
|
|
8004
|
-
|
|
8005
|
-
|
|
8006
|
-
|
|
8007
|
-
|
|
8008
|
-
|
|
8009
|
-
|
|
8010
|
-
|
|
8011
|
-
|
|
8012
|
-
|
|
8444
|
+
"sourceFile": "src/components/ProForm/interface.ts",
|
|
8445
|
+
"props": [],
|
|
8446
|
+
"extends": [],
|
|
8447
|
+
"relatedSymbols": [
|
|
8448
|
+
"CreateProFormFieldConfig",
|
|
8449
|
+
"DialogForm",
|
|
8450
|
+
"DialogFormProps",
|
|
8451
|
+
"DrawerForm",
|
|
8452
|
+
"DrawerFormProps",
|
|
8453
|
+
"FormCoreInstance",
|
|
8454
|
+
"FormInstance",
|
|
8455
|
+
"FormLayout",
|
|
8456
|
+
"FormSize",
|
|
8457
|
+
"LabelAlign",
|
|
8458
|
+
"ProForm",
|
|
8459
|
+
"ProFormCheckbox",
|
|
8460
|
+
"ProFormCheckboxGroup",
|
|
8461
|
+
"ProFormColProps",
|
|
8462
|
+
"ProFormContextValue",
|
|
8463
|
+
"ProFormDateFormatter",
|
|
8464
|
+
"ProFormDatePicker",
|
|
8465
|
+
"ProFormDependency",
|
|
8466
|
+
"ProFormDependencyProps",
|
|
8467
|
+
"ProFormFieldConvertValueFn",
|
|
8468
|
+
"ProFormFieldName",
|
|
8469
|
+
"ProFormFieldSet",
|
|
8470
|
+
"ProFormFieldSetProps",
|
|
8471
|
+
"ProFormFieldTransformFn",
|
|
8472
|
+
"ProFormFormInstance",
|
|
8473
|
+
"ProFormGroup",
|
|
8474
|
+
"ProFormGroupProps",
|
|
8475
|
+
"ProFormItem",
|
|
8476
|
+
"ProFormItemProps",
|
|
8477
|
+
"ProFormItemSharedProps",
|
|
8478
|
+
"ProFormLayoutConfig",
|
|
8479
|
+
"ProFormList",
|
|
8480
|
+
"ProFormListAction",
|
|
8481
|
+
"ProFormListProps",
|
|
8482
|
+
"ProFormMode",
|
|
8483
|
+
"ProFormPassword",
|
|
8484
|
+
"ProFormProps",
|
|
8485
|
+
"ProFormRadioGroup",
|
|
8486
|
+
"ProFormRequestOption",
|
|
8487
|
+
"ProFormSchemaColumn",
|
|
8488
|
+
"ProFormSchemaValueType",
|
|
8489
|
+
"ProFormSelect",
|
|
8490
|
+
"ProFormSlider",
|
|
8491
|
+
"ProFormSwitch",
|
|
8492
|
+
"ProFormText",
|
|
8493
|
+
"ProFormTextArea",
|
|
8494
|
+
"ProFormUpload",
|
|
8495
|
+
"ProFormValidateResult",
|
|
8496
|
+
"ProFormValueEnumObj",
|
|
8497
|
+
"ProFormValueType",
|
|
8498
|
+
"QueryFilter",
|
|
8499
|
+
"QueryFilterProps",
|
|
8500
|
+
"Rule",
|
|
8501
|
+
"SchemaForm",
|
|
8502
|
+
"SchemaFormProps",
|
|
8503
|
+
"SubmitterProps",
|
|
8504
|
+
"UseFormWatch",
|
|
8505
|
+
"ValidateStatus",
|
|
8506
|
+
"ValidateTrigger",
|
|
8507
|
+
"createProFormField",
|
|
8508
|
+
"useFormWatch"
|
|
8509
|
+
],
|
|
8510
|
+
"searchTags": [],
|
|
8511
|
+
"typeText": "interface ProFormFieldProps { ... }",
|
|
8512
|
+
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
8513
|
+
"examples": [
|
|
8514
|
+
{
|
|
8515
|
+
"hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
|
|
8516
|
+
"source": "canonical"
|
|
8517
|
+
}
|
|
8518
|
+
]
|
|
8519
|
+
},
|
|
8520
|
+
{
|
|
8521
|
+
"name": "ProFormFieldSet",
|
|
8522
|
+
"kind": "component",
|
|
8523
|
+
"category": "forms",
|
|
8524
|
+
"summary": "",
|
|
8525
|
+
"importPath": "@1money/component-ui",
|
|
8526
|
+
"subpathImport": "@1money/component-ui/ProForm",
|
|
8527
|
+
"sourceFile": "src/components/ProForm/fields/ProFormFieldSet.tsx",
|
|
8528
|
+
"props": [
|
|
8529
|
+
{
|
|
8530
|
+
"name": "name",
|
|
8531
|
+
"type": "string",
|
|
8532
|
+
"optional": true,
|
|
8533
|
+
"default": null,
|
|
8534
|
+
"description": "",
|
|
8535
|
+
"inheritedFrom": null
|
|
8536
|
+
},
|
|
8537
|
+
{
|
|
8538
|
+
"name": "label",
|
|
8539
|
+
"type": "ReactNode",
|
|
8540
|
+
"optional": true,
|
|
8541
|
+
"default": null,
|
|
8542
|
+
"description": "",
|
|
8543
|
+
"inheritedFrom": null
|
|
8544
|
+
},
|
|
8545
|
+
{
|
|
8546
|
+
"name": "rules",
|
|
8547
|
+
"type": "Rule[]",
|
|
8548
|
+
"optional": true,
|
|
8549
|
+
"default": null,
|
|
8550
|
+
"description": "",
|
|
8551
|
+
"inheritedFrom": null
|
|
8552
|
+
},
|
|
8553
|
+
{
|
|
8554
|
+
"name": "required",
|
|
8555
|
+
"type": "boolean",
|
|
8556
|
+
"optional": true,
|
|
8557
|
+
"default": null,
|
|
8558
|
+
"description": "",
|
|
8559
|
+
"inheritedFrom": null
|
|
8560
|
+
},
|
|
8013
8561
|
{
|
|
8014
8562
|
"name": "description",
|
|
8015
8563
|
"type": "ReactNode",
|
|
@@ -8068,10 +8616,12 @@
|
|
|
8068
8616
|
"ProFormCheckboxGroup",
|
|
8069
8617
|
"ProFormColProps",
|
|
8070
8618
|
"ProFormContextValue",
|
|
8619
|
+
"ProFormDateFormatter",
|
|
8071
8620
|
"ProFormDatePicker",
|
|
8072
8621
|
"ProFormDependency",
|
|
8073
8622
|
"ProFormDependencyProps",
|
|
8074
8623
|
"ProFormFieldConvertValueFn",
|
|
8624
|
+
"ProFormFieldName",
|
|
8075
8625
|
"ProFormFieldProps",
|
|
8076
8626
|
"ProFormFieldSetProps",
|
|
8077
8627
|
"ProFormFieldTransformFn",
|
|
@@ -8080,6 +8630,8 @@
|
|
|
8080
8630
|
"ProFormGroupProps",
|
|
8081
8631
|
"ProFormItem",
|
|
8082
8632
|
"ProFormItemProps",
|
|
8633
|
+
"ProFormItemSharedProps",
|
|
8634
|
+
"ProFormLayoutConfig",
|
|
8083
8635
|
"ProFormList",
|
|
8084
8636
|
"ProFormListAction",
|
|
8085
8637
|
"ProFormListProps",
|
|
@@ -8088,21 +8640,28 @@
|
|
|
8088
8640
|
"ProFormProps",
|
|
8089
8641
|
"ProFormRadioGroup",
|
|
8090
8642
|
"ProFormRequestOption",
|
|
8643
|
+
"ProFormSchemaColumn",
|
|
8644
|
+
"ProFormSchemaValueType",
|
|
8091
8645
|
"ProFormSelect",
|
|
8092
8646
|
"ProFormSlider",
|
|
8093
8647
|
"ProFormSwitch",
|
|
8094
8648
|
"ProFormText",
|
|
8095
8649
|
"ProFormTextArea",
|
|
8096
8650
|
"ProFormUpload",
|
|
8651
|
+
"ProFormValidateResult",
|
|
8097
8652
|
"ProFormValueEnumObj",
|
|
8098
8653
|
"ProFormValueType",
|
|
8099
8654
|
"QueryFilter",
|
|
8100
8655
|
"QueryFilterProps",
|
|
8101
8656
|
"Rule",
|
|
8657
|
+
"SchemaForm",
|
|
8658
|
+
"SchemaFormProps",
|
|
8102
8659
|
"SubmitterProps",
|
|
8660
|
+
"UseFormWatch",
|
|
8103
8661
|
"ValidateStatus",
|
|
8104
8662
|
"ValidateTrigger",
|
|
8105
|
-
"createProFormField"
|
|
8663
|
+
"createProFormField",
|
|
8664
|
+
"useFormWatch"
|
|
8106
8665
|
],
|
|
8107
8666
|
"searchTags": [],
|
|
8108
8667
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
@@ -8139,10 +8698,12 @@
|
|
|
8139
8698
|
"ProFormCheckboxGroup",
|
|
8140
8699
|
"ProFormColProps",
|
|
8141
8700
|
"ProFormContextValue",
|
|
8701
|
+
"ProFormDateFormatter",
|
|
8142
8702
|
"ProFormDatePicker",
|
|
8143
8703
|
"ProFormDependency",
|
|
8144
8704
|
"ProFormDependencyProps",
|
|
8145
8705
|
"ProFormFieldConvertValueFn",
|
|
8706
|
+
"ProFormFieldName",
|
|
8146
8707
|
"ProFormFieldProps",
|
|
8147
8708
|
"ProFormFieldSet",
|
|
8148
8709
|
"ProFormFieldTransformFn",
|
|
@@ -8151,6 +8712,8 @@
|
|
|
8151
8712
|
"ProFormGroupProps",
|
|
8152
8713
|
"ProFormItem",
|
|
8153
8714
|
"ProFormItemProps",
|
|
8715
|
+
"ProFormItemSharedProps",
|
|
8716
|
+
"ProFormLayoutConfig",
|
|
8154
8717
|
"ProFormList",
|
|
8155
8718
|
"ProFormListAction",
|
|
8156
8719
|
"ProFormListProps",
|
|
@@ -8159,21 +8722,28 @@
|
|
|
8159
8722
|
"ProFormProps",
|
|
8160
8723
|
"ProFormRadioGroup",
|
|
8161
8724
|
"ProFormRequestOption",
|
|
8725
|
+
"ProFormSchemaColumn",
|
|
8726
|
+
"ProFormSchemaValueType",
|
|
8162
8727
|
"ProFormSelect",
|
|
8163
8728
|
"ProFormSlider",
|
|
8164
8729
|
"ProFormSwitch",
|
|
8165
8730
|
"ProFormText",
|
|
8166
8731
|
"ProFormTextArea",
|
|
8167
8732
|
"ProFormUpload",
|
|
8733
|
+
"ProFormValidateResult",
|
|
8168
8734
|
"ProFormValueEnumObj",
|
|
8169
8735
|
"ProFormValueType",
|
|
8170
8736
|
"QueryFilter",
|
|
8171
8737
|
"QueryFilterProps",
|
|
8172
8738
|
"Rule",
|
|
8739
|
+
"SchemaForm",
|
|
8740
|
+
"SchemaFormProps",
|
|
8173
8741
|
"SubmitterProps",
|
|
8742
|
+
"UseFormWatch",
|
|
8174
8743
|
"ValidateStatus",
|
|
8175
8744
|
"ValidateTrigger",
|
|
8176
|
-
"createProFormField"
|
|
8745
|
+
"createProFormField",
|
|
8746
|
+
"useFormWatch"
|
|
8177
8747
|
],
|
|
8178
8748
|
"searchTags": [],
|
|
8179
8749
|
"typeText": "interface ProFormFieldSetProps { ... }",
|
|
@@ -8211,10 +8781,12 @@
|
|
|
8211
8781
|
"ProFormCheckboxGroup",
|
|
8212
8782
|
"ProFormColProps",
|
|
8213
8783
|
"ProFormContextValue",
|
|
8784
|
+
"ProFormDateFormatter",
|
|
8214
8785
|
"ProFormDatePicker",
|
|
8215
8786
|
"ProFormDependency",
|
|
8216
8787
|
"ProFormDependencyProps",
|
|
8217
8788
|
"ProFormFieldConvertValueFn",
|
|
8789
|
+
"ProFormFieldName",
|
|
8218
8790
|
"ProFormFieldProps",
|
|
8219
8791
|
"ProFormFieldSet",
|
|
8220
8792
|
"ProFormFieldSetProps",
|
|
@@ -8223,6 +8795,8 @@
|
|
|
8223
8795
|
"ProFormGroupProps",
|
|
8224
8796
|
"ProFormItem",
|
|
8225
8797
|
"ProFormItemProps",
|
|
8798
|
+
"ProFormItemSharedProps",
|
|
8799
|
+
"ProFormLayoutConfig",
|
|
8226
8800
|
"ProFormList",
|
|
8227
8801
|
"ProFormListAction",
|
|
8228
8802
|
"ProFormListProps",
|
|
@@ -8231,21 +8805,28 @@
|
|
|
8231
8805
|
"ProFormProps",
|
|
8232
8806
|
"ProFormRadioGroup",
|
|
8233
8807
|
"ProFormRequestOption",
|
|
8808
|
+
"ProFormSchemaColumn",
|
|
8809
|
+
"ProFormSchemaValueType",
|
|
8234
8810
|
"ProFormSelect",
|
|
8235
8811
|
"ProFormSlider",
|
|
8236
8812
|
"ProFormSwitch",
|
|
8237
8813
|
"ProFormText",
|
|
8238
8814
|
"ProFormTextArea",
|
|
8239
8815
|
"ProFormUpload",
|
|
8816
|
+
"ProFormValidateResult",
|
|
8240
8817
|
"ProFormValueEnumObj",
|
|
8241
8818
|
"ProFormValueType",
|
|
8242
8819
|
"QueryFilter",
|
|
8243
8820
|
"QueryFilterProps",
|
|
8244
8821
|
"Rule",
|
|
8822
|
+
"SchemaForm",
|
|
8823
|
+
"SchemaFormProps",
|
|
8245
8824
|
"SubmitterProps",
|
|
8825
|
+
"UseFormWatch",
|
|
8246
8826
|
"ValidateStatus",
|
|
8247
8827
|
"ValidateTrigger",
|
|
8248
|
-
"createProFormField"
|
|
8828
|
+
"createProFormField",
|
|
8829
|
+
"useFormWatch"
|
|
8249
8830
|
],
|
|
8250
8831
|
"searchTags": [],
|
|
8251
8832
|
"typeText": "(\n value: unknown,\n name: string,\n allValues: Record<string, unknown>,\n) => unknown",
|
|
@@ -8283,10 +8864,12 @@
|
|
|
8283
8864
|
"ProFormCheckboxGroup",
|
|
8284
8865
|
"ProFormColProps",
|
|
8285
8866
|
"ProFormContextValue",
|
|
8867
|
+
"ProFormDateFormatter",
|
|
8286
8868
|
"ProFormDatePicker",
|
|
8287
8869
|
"ProFormDependency",
|
|
8288
8870
|
"ProFormDependencyProps",
|
|
8289
8871
|
"ProFormFieldConvertValueFn",
|
|
8872
|
+
"ProFormFieldName",
|
|
8290
8873
|
"ProFormFieldProps",
|
|
8291
8874
|
"ProFormFieldSet",
|
|
8292
8875
|
"ProFormFieldSetProps",
|
|
@@ -8295,6 +8878,8 @@
|
|
|
8295
8878
|
"ProFormGroupProps",
|
|
8296
8879
|
"ProFormItem",
|
|
8297
8880
|
"ProFormItemProps",
|
|
8881
|
+
"ProFormItemSharedProps",
|
|
8882
|
+
"ProFormLayoutConfig",
|
|
8298
8883
|
"ProFormList",
|
|
8299
8884
|
"ProFormListAction",
|
|
8300
8885
|
"ProFormListProps",
|
|
@@ -8303,24 +8888,31 @@
|
|
|
8303
8888
|
"ProFormProps",
|
|
8304
8889
|
"ProFormRadioGroup",
|
|
8305
8890
|
"ProFormRequestOption",
|
|
8891
|
+
"ProFormSchemaColumn",
|
|
8892
|
+
"ProFormSchemaValueType",
|
|
8306
8893
|
"ProFormSelect",
|
|
8307
8894
|
"ProFormSlider",
|
|
8308
8895
|
"ProFormSwitch",
|
|
8309
8896
|
"ProFormText",
|
|
8310
8897
|
"ProFormTextArea",
|
|
8311
8898
|
"ProFormUpload",
|
|
8899
|
+
"ProFormValidateResult",
|
|
8312
8900
|
"ProFormValueEnumObj",
|
|
8313
8901
|
"ProFormValueType",
|
|
8314
8902
|
"QueryFilter",
|
|
8315
8903
|
"QueryFilterProps",
|
|
8316
8904
|
"Rule",
|
|
8905
|
+
"SchemaForm",
|
|
8906
|
+
"SchemaFormProps",
|
|
8317
8907
|
"SubmitterProps",
|
|
8908
|
+
"UseFormWatch",
|
|
8318
8909
|
"ValidateStatus",
|
|
8319
8910
|
"ValidateTrigger",
|
|
8320
|
-
"createProFormField"
|
|
8911
|
+
"createProFormField",
|
|
8912
|
+
"useFormWatch"
|
|
8321
8913
|
],
|
|
8322
8914
|
"searchTags": [],
|
|
8323
|
-
"typeText": "interface ProFormFormInstance extends FormInstance { ... }",
|
|
8915
|
+
"typeText": "interface ProFormFormInstance extends FormInstance<Values> { ... }",
|
|
8324
8916
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
8325
8917
|
"examples": [
|
|
8326
8918
|
{
|
|
@@ -8420,10 +9012,12 @@
|
|
|
8420
9012
|
"ProFormCheckboxGroup",
|
|
8421
9013
|
"ProFormColProps",
|
|
8422
9014
|
"ProFormContextValue",
|
|
9015
|
+
"ProFormDateFormatter",
|
|
8423
9016
|
"ProFormDatePicker",
|
|
8424
9017
|
"ProFormDependency",
|
|
8425
9018
|
"ProFormDependencyProps",
|
|
8426
9019
|
"ProFormFieldConvertValueFn",
|
|
9020
|
+
"ProFormFieldName",
|
|
8427
9021
|
"ProFormFieldProps",
|
|
8428
9022
|
"ProFormFieldSet",
|
|
8429
9023
|
"ProFormFieldSetProps",
|
|
@@ -8432,6 +9026,8 @@
|
|
|
8432
9026
|
"ProFormGroupProps",
|
|
8433
9027
|
"ProFormItem",
|
|
8434
9028
|
"ProFormItemProps",
|
|
9029
|
+
"ProFormItemSharedProps",
|
|
9030
|
+
"ProFormLayoutConfig",
|
|
8435
9031
|
"ProFormList",
|
|
8436
9032
|
"ProFormListAction",
|
|
8437
9033
|
"ProFormListProps",
|
|
@@ -8440,21 +9036,28 @@
|
|
|
8440
9036
|
"ProFormProps",
|
|
8441
9037
|
"ProFormRadioGroup",
|
|
8442
9038
|
"ProFormRequestOption",
|
|
9039
|
+
"ProFormSchemaColumn",
|
|
9040
|
+
"ProFormSchemaValueType",
|
|
8443
9041
|
"ProFormSelect",
|
|
8444
9042
|
"ProFormSlider",
|
|
8445
9043
|
"ProFormSwitch",
|
|
8446
9044
|
"ProFormText",
|
|
8447
9045
|
"ProFormTextArea",
|
|
8448
9046
|
"ProFormUpload",
|
|
9047
|
+
"ProFormValidateResult",
|
|
8449
9048
|
"ProFormValueEnumObj",
|
|
8450
9049
|
"ProFormValueType",
|
|
8451
9050
|
"QueryFilter",
|
|
8452
9051
|
"QueryFilterProps",
|
|
8453
9052
|
"Rule",
|
|
9053
|
+
"SchemaForm",
|
|
9054
|
+
"SchemaFormProps",
|
|
8454
9055
|
"SubmitterProps",
|
|
9056
|
+
"UseFormWatch",
|
|
8455
9057
|
"ValidateStatus",
|
|
8456
9058
|
"ValidateTrigger",
|
|
8457
|
-
"createProFormField"
|
|
9059
|
+
"createProFormField",
|
|
9060
|
+
"useFormWatch"
|
|
8458
9061
|
],
|
|
8459
9062
|
"searchTags": [],
|
|
8460
9063
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
@@ -8491,10 +9094,12 @@
|
|
|
8491
9094
|
"ProFormCheckboxGroup",
|
|
8492
9095
|
"ProFormColProps",
|
|
8493
9096
|
"ProFormContextValue",
|
|
9097
|
+
"ProFormDateFormatter",
|
|
8494
9098
|
"ProFormDatePicker",
|
|
8495
9099
|
"ProFormDependency",
|
|
8496
9100
|
"ProFormDependencyProps",
|
|
8497
9101
|
"ProFormFieldConvertValueFn",
|
|
9102
|
+
"ProFormFieldName",
|
|
8498
9103
|
"ProFormFieldProps",
|
|
8499
9104
|
"ProFormFieldSet",
|
|
8500
9105
|
"ProFormFieldSetProps",
|
|
@@ -8503,6 +9108,8 @@
|
|
|
8503
9108
|
"ProFormGroup",
|
|
8504
9109
|
"ProFormItem",
|
|
8505
9110
|
"ProFormItemProps",
|
|
9111
|
+
"ProFormItemSharedProps",
|
|
9112
|
+
"ProFormLayoutConfig",
|
|
8506
9113
|
"ProFormList",
|
|
8507
9114
|
"ProFormListAction",
|
|
8508
9115
|
"ProFormListProps",
|
|
@@ -8511,21 +9118,28 @@
|
|
|
8511
9118
|
"ProFormProps",
|
|
8512
9119
|
"ProFormRadioGroup",
|
|
8513
9120
|
"ProFormRequestOption",
|
|
9121
|
+
"ProFormSchemaColumn",
|
|
9122
|
+
"ProFormSchemaValueType",
|
|
8514
9123
|
"ProFormSelect",
|
|
8515
9124
|
"ProFormSlider",
|
|
8516
9125
|
"ProFormSwitch",
|
|
8517
9126
|
"ProFormText",
|
|
8518
9127
|
"ProFormTextArea",
|
|
8519
9128
|
"ProFormUpload",
|
|
9129
|
+
"ProFormValidateResult",
|
|
8520
9130
|
"ProFormValueEnumObj",
|
|
8521
9131
|
"ProFormValueType",
|
|
8522
9132
|
"QueryFilter",
|
|
8523
9133
|
"QueryFilterProps",
|
|
8524
9134
|
"Rule",
|
|
9135
|
+
"SchemaForm",
|
|
9136
|
+
"SchemaFormProps",
|
|
8525
9137
|
"SubmitterProps",
|
|
9138
|
+
"UseFormWatch",
|
|
8526
9139
|
"ValidateStatus",
|
|
8527
9140
|
"ValidateTrigger",
|
|
8528
|
-
"createProFormField"
|
|
9141
|
+
"createProFormField",
|
|
9142
|
+
"useFormWatch"
|
|
8529
9143
|
],
|
|
8530
9144
|
"searchTags": [],
|
|
8531
9145
|
"typeText": "interface ProFormGroupProps { ... }",
|
|
@@ -8713,6 +9327,22 @@
|
|
|
8713
9327
|
"default": null,
|
|
8714
9328
|
"description": "Value enum for select/radio/tag value types",
|
|
8715
9329
|
"inheritedFrom": null
|
|
9330
|
+
},
|
|
9331
|
+
{
|
|
9332
|
+
"name": "valuePropName",
|
|
9333
|
+
"type": "string",
|
|
9334
|
+
"optional": true,
|
|
9335
|
+
"default": null,
|
|
9336
|
+
"description": "Prop name the controlled value is injected under (default `value`; e.g.",
|
|
9337
|
+
"inheritedFrom": null
|
|
9338
|
+
},
|
|
9339
|
+
{
|
|
9340
|
+
"name": "validateDebounce",
|
|
9341
|
+
"type": "number",
|
|
9342
|
+
"optional": true,
|
|
9343
|
+
"default": null,
|
|
9344
|
+
"description": "Debounce (ms) applied to onChange-triggered validation",
|
|
9345
|
+
"inheritedFrom": null
|
|
8716
9346
|
}
|
|
8717
9347
|
],
|
|
8718
9348
|
"extends": [],
|
|
@@ -8732,10 +9362,12 @@
|
|
|
8732
9362
|
"ProFormCheckboxGroup",
|
|
8733
9363
|
"ProFormColProps",
|
|
8734
9364
|
"ProFormContextValue",
|
|
9365
|
+
"ProFormDateFormatter",
|
|
8735
9366
|
"ProFormDatePicker",
|
|
8736
9367
|
"ProFormDependency",
|
|
8737
9368
|
"ProFormDependencyProps",
|
|
8738
9369
|
"ProFormFieldConvertValueFn",
|
|
9370
|
+
"ProFormFieldName",
|
|
8739
9371
|
"ProFormFieldProps",
|
|
8740
9372
|
"ProFormFieldSet",
|
|
8741
9373
|
"ProFormFieldSetProps",
|
|
@@ -8744,6 +9376,8 @@
|
|
|
8744
9376
|
"ProFormGroup",
|
|
8745
9377
|
"ProFormGroupProps",
|
|
8746
9378
|
"ProFormItemProps",
|
|
9379
|
+
"ProFormItemSharedProps",
|
|
9380
|
+
"ProFormLayoutConfig",
|
|
8747
9381
|
"ProFormList",
|
|
8748
9382
|
"ProFormListAction",
|
|
8749
9383
|
"ProFormListProps",
|
|
@@ -8752,21 +9386,28 @@
|
|
|
8752
9386
|
"ProFormProps",
|
|
8753
9387
|
"ProFormRadioGroup",
|
|
8754
9388
|
"ProFormRequestOption",
|
|
9389
|
+
"ProFormSchemaColumn",
|
|
9390
|
+
"ProFormSchemaValueType",
|
|
8755
9391
|
"ProFormSelect",
|
|
8756
9392
|
"ProFormSlider",
|
|
8757
9393
|
"ProFormSwitch",
|
|
8758
9394
|
"ProFormText",
|
|
8759
9395
|
"ProFormTextArea",
|
|
8760
9396
|
"ProFormUpload",
|
|
9397
|
+
"ProFormValidateResult",
|
|
8761
9398
|
"ProFormValueEnumObj",
|
|
8762
9399
|
"ProFormValueType",
|
|
8763
9400
|
"QueryFilter",
|
|
8764
9401
|
"QueryFilterProps",
|
|
8765
9402
|
"Rule",
|
|
9403
|
+
"SchemaForm",
|
|
9404
|
+
"SchemaFormProps",
|
|
8766
9405
|
"SubmitterProps",
|
|
9406
|
+
"UseFormWatch",
|
|
8767
9407
|
"ValidateStatus",
|
|
8768
9408
|
"ValidateTrigger",
|
|
8769
|
-
"createProFormField"
|
|
9409
|
+
"createProFormField",
|
|
9410
|
+
"useFormWatch"
|
|
8770
9411
|
],
|
|
8771
9412
|
"searchTags": [],
|
|
8772
9413
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
@@ -8803,10 +9444,12 @@
|
|
|
8803
9444
|
"ProFormCheckboxGroup",
|
|
8804
9445
|
"ProFormColProps",
|
|
8805
9446
|
"ProFormContextValue",
|
|
9447
|
+
"ProFormDateFormatter",
|
|
8806
9448
|
"ProFormDatePicker",
|
|
8807
9449
|
"ProFormDependency",
|
|
8808
9450
|
"ProFormDependencyProps",
|
|
8809
9451
|
"ProFormFieldConvertValueFn",
|
|
9452
|
+
"ProFormFieldName",
|
|
8810
9453
|
"ProFormFieldProps",
|
|
8811
9454
|
"ProFormFieldSet",
|
|
8812
9455
|
"ProFormFieldSetProps",
|
|
@@ -8815,6 +9458,8 @@
|
|
|
8815
9458
|
"ProFormGroup",
|
|
8816
9459
|
"ProFormGroupProps",
|
|
8817
9460
|
"ProFormItem",
|
|
9461
|
+
"ProFormItemSharedProps",
|
|
9462
|
+
"ProFormLayoutConfig",
|
|
8818
9463
|
"ProFormList",
|
|
8819
9464
|
"ProFormListAction",
|
|
8820
9465
|
"ProFormListProps",
|
|
@@ -8823,21 +9468,28 @@
|
|
|
8823
9468
|
"ProFormProps",
|
|
8824
9469
|
"ProFormRadioGroup",
|
|
8825
9470
|
"ProFormRequestOption",
|
|
9471
|
+
"ProFormSchemaColumn",
|
|
9472
|
+
"ProFormSchemaValueType",
|
|
8826
9473
|
"ProFormSelect",
|
|
8827
9474
|
"ProFormSlider",
|
|
8828
9475
|
"ProFormSwitch",
|
|
8829
9476
|
"ProFormText",
|
|
8830
9477
|
"ProFormTextArea",
|
|
8831
9478
|
"ProFormUpload",
|
|
9479
|
+
"ProFormValidateResult",
|
|
8832
9480
|
"ProFormValueEnumObj",
|
|
8833
9481
|
"ProFormValueType",
|
|
8834
9482
|
"QueryFilter",
|
|
8835
9483
|
"QueryFilterProps",
|
|
8836
9484
|
"Rule",
|
|
9485
|
+
"SchemaForm",
|
|
9486
|
+
"SchemaFormProps",
|
|
8837
9487
|
"SubmitterProps",
|
|
9488
|
+
"UseFormWatch",
|
|
8838
9489
|
"ValidateStatus",
|
|
8839
9490
|
"ValidateTrigger",
|
|
8840
|
-
"createProFormField"
|
|
9491
|
+
"createProFormField",
|
|
9492
|
+
"useFormWatch"
|
|
8841
9493
|
],
|
|
8842
9494
|
"searchTags": [],
|
|
8843
9495
|
"typeText": "interface ProFormItemProps { ... }",
|
|
@@ -8849,6 +9501,172 @@
|
|
|
8849
9501
|
}
|
|
8850
9502
|
]
|
|
8851
9503
|
},
|
|
9504
|
+
{
|
|
9505
|
+
"name": "ProFormItemSharedProps",
|
|
9506
|
+
"kind": "type",
|
|
9507
|
+
"category": "forms",
|
|
9508
|
+
"summary": "Item props that can be shared form-wide via ProForm's `formItemProps`",
|
|
9509
|
+
"importPath": "@1money/component-ui",
|
|
9510
|
+
"subpathImport": "@1money/component-ui/ProForm",
|
|
9511
|
+
"sourceFile": "src/components/ProForm/interface.ts",
|
|
9512
|
+
"props": [],
|
|
9513
|
+
"extends": [],
|
|
9514
|
+
"relatedSymbols": [
|
|
9515
|
+
"CreateProFormFieldConfig",
|
|
9516
|
+
"DialogForm",
|
|
9517
|
+
"DialogFormProps",
|
|
9518
|
+
"DrawerForm",
|
|
9519
|
+
"DrawerFormProps",
|
|
9520
|
+
"FormCoreInstance",
|
|
9521
|
+
"FormInstance",
|
|
9522
|
+
"FormLayout",
|
|
9523
|
+
"FormSize",
|
|
9524
|
+
"LabelAlign",
|
|
9525
|
+
"ProForm",
|
|
9526
|
+
"ProFormCheckbox",
|
|
9527
|
+
"ProFormCheckboxGroup",
|
|
9528
|
+
"ProFormColProps",
|
|
9529
|
+
"ProFormContextValue",
|
|
9530
|
+
"ProFormDateFormatter",
|
|
9531
|
+
"ProFormDatePicker",
|
|
9532
|
+
"ProFormDependency",
|
|
9533
|
+
"ProFormDependencyProps",
|
|
9534
|
+
"ProFormFieldConvertValueFn",
|
|
9535
|
+
"ProFormFieldName",
|
|
9536
|
+
"ProFormFieldProps",
|
|
9537
|
+
"ProFormFieldSet",
|
|
9538
|
+
"ProFormFieldSetProps",
|
|
9539
|
+
"ProFormFieldTransformFn",
|
|
9540
|
+
"ProFormFormInstance",
|
|
9541
|
+
"ProFormGroup",
|
|
9542
|
+
"ProFormGroupProps",
|
|
9543
|
+
"ProFormItem",
|
|
9544
|
+
"ProFormItemProps",
|
|
9545
|
+
"ProFormLayoutConfig",
|
|
9546
|
+
"ProFormList",
|
|
9547
|
+
"ProFormListAction",
|
|
9548
|
+
"ProFormListProps",
|
|
9549
|
+
"ProFormMode",
|
|
9550
|
+
"ProFormPassword",
|
|
9551
|
+
"ProFormProps",
|
|
9552
|
+
"ProFormRadioGroup",
|
|
9553
|
+
"ProFormRequestOption",
|
|
9554
|
+
"ProFormSchemaColumn",
|
|
9555
|
+
"ProFormSchemaValueType",
|
|
9556
|
+
"ProFormSelect",
|
|
9557
|
+
"ProFormSlider",
|
|
9558
|
+
"ProFormSwitch",
|
|
9559
|
+
"ProFormText",
|
|
9560
|
+
"ProFormTextArea",
|
|
9561
|
+
"ProFormUpload",
|
|
9562
|
+
"ProFormValidateResult",
|
|
9563
|
+
"ProFormValueEnumObj",
|
|
9564
|
+
"ProFormValueType",
|
|
9565
|
+
"QueryFilter",
|
|
9566
|
+
"QueryFilterProps",
|
|
9567
|
+
"Rule",
|
|
9568
|
+
"SchemaForm",
|
|
9569
|
+
"SchemaFormProps",
|
|
9570
|
+
"SubmitterProps",
|
|
9571
|
+
"UseFormWatch",
|
|
9572
|
+
"ValidateStatus",
|
|
9573
|
+
"ValidateTrigger",
|
|
9574
|
+
"createProFormField",
|
|
9575
|
+
"useFormWatch"
|
|
9576
|
+
],
|
|
9577
|
+
"searchTags": [],
|
|
9578
|
+
"typeText": "Partial<\n Omit<ProFormItemProps, 'children' | 'name' | 'label' | 'rules'>\n>",
|
|
9579
|
+
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
9580
|
+
"examples": [
|
|
9581
|
+
{
|
|
9582
|
+
"hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
|
|
9583
|
+
"source": "canonical"
|
|
9584
|
+
}
|
|
9585
|
+
]
|
|
9586
|
+
},
|
|
9587
|
+
{
|
|
9588
|
+
"name": "ProFormLayoutConfig",
|
|
9589
|
+
"kind": "type",
|
|
9590
|
+
"category": "forms",
|
|
9591
|
+
"summary": "Form-level layout configuration.",
|
|
9592
|
+
"importPath": "@1money/component-ui",
|
|
9593
|
+
"subpathImport": "@1money/component-ui/ProForm",
|
|
9594
|
+
"sourceFile": "src/components/ProForm/interface.ts",
|
|
9595
|
+
"props": [],
|
|
9596
|
+
"extends": [],
|
|
9597
|
+
"relatedSymbols": [
|
|
9598
|
+
"CreateProFormFieldConfig",
|
|
9599
|
+
"DialogForm",
|
|
9600
|
+
"DialogFormProps",
|
|
9601
|
+
"DrawerForm",
|
|
9602
|
+
"DrawerFormProps",
|
|
9603
|
+
"FormCoreInstance",
|
|
9604
|
+
"FormInstance",
|
|
9605
|
+
"FormLayout",
|
|
9606
|
+
"FormSize",
|
|
9607
|
+
"LabelAlign",
|
|
9608
|
+
"ProForm",
|
|
9609
|
+
"ProFormCheckbox",
|
|
9610
|
+
"ProFormCheckboxGroup",
|
|
9611
|
+
"ProFormColProps",
|
|
9612
|
+
"ProFormContextValue",
|
|
9613
|
+
"ProFormDateFormatter",
|
|
9614
|
+
"ProFormDatePicker",
|
|
9615
|
+
"ProFormDependency",
|
|
9616
|
+
"ProFormDependencyProps",
|
|
9617
|
+
"ProFormFieldConvertValueFn",
|
|
9618
|
+
"ProFormFieldName",
|
|
9619
|
+
"ProFormFieldProps",
|
|
9620
|
+
"ProFormFieldSet",
|
|
9621
|
+
"ProFormFieldSetProps",
|
|
9622
|
+
"ProFormFieldTransformFn",
|
|
9623
|
+
"ProFormFormInstance",
|
|
9624
|
+
"ProFormGroup",
|
|
9625
|
+
"ProFormGroupProps",
|
|
9626
|
+
"ProFormItem",
|
|
9627
|
+
"ProFormItemProps",
|
|
9628
|
+
"ProFormItemSharedProps",
|
|
9629
|
+
"ProFormList",
|
|
9630
|
+
"ProFormListAction",
|
|
9631
|
+
"ProFormListProps",
|
|
9632
|
+
"ProFormMode",
|
|
9633
|
+
"ProFormPassword",
|
|
9634
|
+
"ProFormProps",
|
|
9635
|
+
"ProFormRadioGroup",
|
|
9636
|
+
"ProFormRequestOption",
|
|
9637
|
+
"ProFormSchemaColumn",
|
|
9638
|
+
"ProFormSchemaValueType",
|
|
9639
|
+
"ProFormSelect",
|
|
9640
|
+
"ProFormSlider",
|
|
9641
|
+
"ProFormSwitch",
|
|
9642
|
+
"ProFormText",
|
|
9643
|
+
"ProFormTextArea",
|
|
9644
|
+
"ProFormUpload",
|
|
9645
|
+
"ProFormValidateResult",
|
|
9646
|
+
"ProFormValueEnumObj",
|
|
9647
|
+
"ProFormValueType",
|
|
9648
|
+
"QueryFilter",
|
|
9649
|
+
"QueryFilterProps",
|
|
9650
|
+
"Rule",
|
|
9651
|
+
"SchemaForm",
|
|
9652
|
+
"SchemaFormProps",
|
|
9653
|
+
"SubmitterProps",
|
|
9654
|
+
"UseFormWatch",
|
|
9655
|
+
"ValidateStatus",
|
|
9656
|
+
"ValidateTrigger",
|
|
9657
|
+
"createProFormField",
|
|
9658
|
+
"useFormWatch"
|
|
9659
|
+
],
|
|
9660
|
+
"searchTags": [],
|
|
9661
|
+
"typeText": "interface ProFormLayoutConfig { ... }",
|
|
9662
|
+
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
9663
|
+
"examples": [
|
|
9664
|
+
{
|
|
9665
|
+
"hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
|
|
9666
|
+
"source": "canonical"
|
|
9667
|
+
}
|
|
9668
|
+
]
|
|
9669
|
+
},
|
|
8852
9670
|
{
|
|
8853
9671
|
"name": "ProFormList",
|
|
8854
9672
|
"kind": "component",
|
|
@@ -8996,10 +9814,260 @@
|
|
|
8996
9814
|
"ProFormCheckboxGroup",
|
|
8997
9815
|
"ProFormColProps",
|
|
8998
9816
|
"ProFormContextValue",
|
|
9817
|
+
"ProFormDateFormatter",
|
|
9818
|
+
"ProFormDatePicker",
|
|
9819
|
+
"ProFormDependency",
|
|
9820
|
+
"ProFormDependencyProps",
|
|
9821
|
+
"ProFormFieldConvertValueFn",
|
|
9822
|
+
"ProFormFieldName",
|
|
9823
|
+
"ProFormFieldProps",
|
|
9824
|
+
"ProFormFieldSet",
|
|
9825
|
+
"ProFormFieldSetProps",
|
|
9826
|
+
"ProFormFieldTransformFn",
|
|
9827
|
+
"ProFormFormInstance",
|
|
9828
|
+
"ProFormGroup",
|
|
9829
|
+
"ProFormGroupProps",
|
|
9830
|
+
"ProFormItem",
|
|
9831
|
+
"ProFormItemProps",
|
|
9832
|
+
"ProFormItemSharedProps",
|
|
9833
|
+
"ProFormLayoutConfig",
|
|
9834
|
+
"ProFormListAction",
|
|
9835
|
+
"ProFormListProps",
|
|
9836
|
+
"ProFormMode",
|
|
9837
|
+
"ProFormPassword",
|
|
9838
|
+
"ProFormProps",
|
|
9839
|
+
"ProFormRadioGroup",
|
|
9840
|
+
"ProFormRequestOption",
|
|
9841
|
+
"ProFormSchemaColumn",
|
|
9842
|
+
"ProFormSchemaValueType",
|
|
9843
|
+
"ProFormSelect",
|
|
9844
|
+
"ProFormSlider",
|
|
9845
|
+
"ProFormSwitch",
|
|
9846
|
+
"ProFormText",
|
|
9847
|
+
"ProFormTextArea",
|
|
9848
|
+
"ProFormUpload",
|
|
9849
|
+
"ProFormValidateResult",
|
|
9850
|
+
"ProFormValueEnumObj",
|
|
9851
|
+
"ProFormValueType",
|
|
9852
|
+
"QueryFilter",
|
|
9853
|
+
"QueryFilterProps",
|
|
9854
|
+
"Rule",
|
|
9855
|
+
"SchemaForm",
|
|
9856
|
+
"SchemaFormProps",
|
|
9857
|
+
"SubmitterProps",
|
|
9858
|
+
"UseFormWatch",
|
|
9859
|
+
"ValidateStatus",
|
|
9860
|
+
"ValidateTrigger",
|
|
9861
|
+
"createProFormField",
|
|
9862
|
+
"useFormWatch"
|
|
9863
|
+
],
|
|
9864
|
+
"searchTags": [],
|
|
9865
|
+
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
9866
|
+
"examples": [
|
|
9867
|
+
{
|
|
9868
|
+
"hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
|
|
9869
|
+
"source": "canonical"
|
|
9870
|
+
}
|
|
9871
|
+
]
|
|
9872
|
+
},
|
|
9873
|
+
{
|
|
9874
|
+
"name": "ProFormListAction",
|
|
9875
|
+
"kind": "type",
|
|
9876
|
+
"category": "forms",
|
|
9877
|
+
"summary": "",
|
|
9878
|
+
"importPath": "@1money/component-ui",
|
|
9879
|
+
"subpathImport": "@1money/component-ui/ProForm",
|
|
9880
|
+
"sourceFile": "src/components/ProForm/interface.ts",
|
|
9881
|
+
"props": [],
|
|
9882
|
+
"extends": [],
|
|
9883
|
+
"relatedSymbols": [
|
|
9884
|
+
"CreateProFormFieldConfig",
|
|
9885
|
+
"DialogForm",
|
|
9886
|
+
"DialogFormProps",
|
|
9887
|
+
"DrawerForm",
|
|
9888
|
+
"DrawerFormProps",
|
|
9889
|
+
"FormCoreInstance",
|
|
9890
|
+
"FormInstance",
|
|
9891
|
+
"FormLayout",
|
|
9892
|
+
"FormSize",
|
|
9893
|
+
"LabelAlign",
|
|
9894
|
+
"ProForm",
|
|
9895
|
+
"ProFormCheckbox",
|
|
9896
|
+
"ProFormCheckboxGroup",
|
|
9897
|
+
"ProFormColProps",
|
|
9898
|
+
"ProFormContextValue",
|
|
9899
|
+
"ProFormDateFormatter",
|
|
9900
|
+
"ProFormDatePicker",
|
|
9901
|
+
"ProFormDependency",
|
|
9902
|
+
"ProFormDependencyProps",
|
|
9903
|
+
"ProFormFieldConvertValueFn",
|
|
9904
|
+
"ProFormFieldName",
|
|
9905
|
+
"ProFormFieldProps",
|
|
9906
|
+
"ProFormFieldSet",
|
|
9907
|
+
"ProFormFieldSetProps",
|
|
9908
|
+
"ProFormFieldTransformFn",
|
|
9909
|
+
"ProFormFormInstance",
|
|
9910
|
+
"ProFormGroup",
|
|
9911
|
+
"ProFormGroupProps",
|
|
9912
|
+
"ProFormItem",
|
|
9913
|
+
"ProFormItemProps",
|
|
9914
|
+
"ProFormItemSharedProps",
|
|
9915
|
+
"ProFormLayoutConfig",
|
|
9916
|
+
"ProFormList",
|
|
9917
|
+
"ProFormListProps",
|
|
9918
|
+
"ProFormMode",
|
|
9919
|
+
"ProFormPassword",
|
|
9920
|
+
"ProFormProps",
|
|
9921
|
+
"ProFormRadioGroup",
|
|
9922
|
+
"ProFormRequestOption",
|
|
9923
|
+
"ProFormSchemaColumn",
|
|
9924
|
+
"ProFormSchemaValueType",
|
|
9925
|
+
"ProFormSelect",
|
|
9926
|
+
"ProFormSlider",
|
|
9927
|
+
"ProFormSwitch",
|
|
9928
|
+
"ProFormText",
|
|
9929
|
+
"ProFormTextArea",
|
|
9930
|
+
"ProFormUpload",
|
|
9931
|
+
"ProFormValidateResult",
|
|
9932
|
+
"ProFormValueEnumObj",
|
|
9933
|
+
"ProFormValueType",
|
|
9934
|
+
"QueryFilter",
|
|
9935
|
+
"QueryFilterProps",
|
|
9936
|
+
"Rule",
|
|
9937
|
+
"SchemaForm",
|
|
9938
|
+
"SchemaFormProps",
|
|
9939
|
+
"SubmitterProps",
|
|
9940
|
+
"UseFormWatch",
|
|
9941
|
+
"ValidateStatus",
|
|
9942
|
+
"ValidateTrigger",
|
|
9943
|
+
"createProFormField",
|
|
9944
|
+
"useFormWatch"
|
|
9945
|
+
],
|
|
9946
|
+
"searchTags": [],
|
|
9947
|
+
"typeText": "interface ProFormListAction { ... }",
|
|
9948
|
+
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
9949
|
+
"examples": [
|
|
9950
|
+
{
|
|
9951
|
+
"hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
|
|
9952
|
+
"source": "canonical"
|
|
9953
|
+
}
|
|
9954
|
+
]
|
|
9955
|
+
},
|
|
9956
|
+
{
|
|
9957
|
+
"name": "ProFormListProps",
|
|
9958
|
+
"kind": "type",
|
|
9959
|
+
"category": "forms",
|
|
9960
|
+
"summary": "",
|
|
9961
|
+
"importPath": "@1money/component-ui",
|
|
9962
|
+
"subpathImport": "@1money/component-ui/ProForm",
|
|
9963
|
+
"sourceFile": "src/components/ProForm/interface.ts",
|
|
9964
|
+
"props": [],
|
|
9965
|
+
"extends": [],
|
|
9966
|
+
"relatedSymbols": [
|
|
9967
|
+
"CreateProFormFieldConfig",
|
|
9968
|
+
"DialogForm",
|
|
9969
|
+
"DialogFormProps",
|
|
9970
|
+
"DrawerForm",
|
|
9971
|
+
"DrawerFormProps",
|
|
9972
|
+
"FormCoreInstance",
|
|
9973
|
+
"FormInstance",
|
|
9974
|
+
"FormLayout",
|
|
9975
|
+
"FormSize",
|
|
9976
|
+
"LabelAlign",
|
|
9977
|
+
"ProForm",
|
|
9978
|
+
"ProFormCheckbox",
|
|
9979
|
+
"ProFormCheckboxGroup",
|
|
9980
|
+
"ProFormColProps",
|
|
9981
|
+
"ProFormContextValue",
|
|
9982
|
+
"ProFormDateFormatter",
|
|
9983
|
+
"ProFormDatePicker",
|
|
9984
|
+
"ProFormDependency",
|
|
9985
|
+
"ProFormDependencyProps",
|
|
9986
|
+
"ProFormFieldConvertValueFn",
|
|
9987
|
+
"ProFormFieldName",
|
|
9988
|
+
"ProFormFieldProps",
|
|
9989
|
+
"ProFormFieldSet",
|
|
9990
|
+
"ProFormFieldSetProps",
|
|
9991
|
+
"ProFormFieldTransformFn",
|
|
9992
|
+
"ProFormFormInstance",
|
|
9993
|
+
"ProFormGroup",
|
|
9994
|
+
"ProFormGroupProps",
|
|
9995
|
+
"ProFormItem",
|
|
9996
|
+
"ProFormItemProps",
|
|
9997
|
+
"ProFormItemSharedProps",
|
|
9998
|
+
"ProFormLayoutConfig",
|
|
9999
|
+
"ProFormList",
|
|
10000
|
+
"ProFormListAction",
|
|
10001
|
+
"ProFormMode",
|
|
10002
|
+
"ProFormPassword",
|
|
10003
|
+
"ProFormProps",
|
|
10004
|
+
"ProFormRadioGroup",
|
|
10005
|
+
"ProFormRequestOption",
|
|
10006
|
+
"ProFormSchemaColumn",
|
|
10007
|
+
"ProFormSchemaValueType",
|
|
10008
|
+
"ProFormSelect",
|
|
10009
|
+
"ProFormSlider",
|
|
10010
|
+
"ProFormSwitch",
|
|
10011
|
+
"ProFormText",
|
|
10012
|
+
"ProFormTextArea",
|
|
10013
|
+
"ProFormUpload",
|
|
10014
|
+
"ProFormValidateResult",
|
|
10015
|
+
"ProFormValueEnumObj",
|
|
10016
|
+
"ProFormValueType",
|
|
10017
|
+
"QueryFilter",
|
|
10018
|
+
"QueryFilterProps",
|
|
10019
|
+
"Rule",
|
|
10020
|
+
"SchemaForm",
|
|
10021
|
+
"SchemaFormProps",
|
|
10022
|
+
"SubmitterProps",
|
|
10023
|
+
"UseFormWatch",
|
|
10024
|
+
"ValidateStatus",
|
|
10025
|
+
"ValidateTrigger",
|
|
10026
|
+
"createProFormField",
|
|
10027
|
+
"useFormWatch"
|
|
10028
|
+
],
|
|
10029
|
+
"searchTags": [],
|
|
10030
|
+
"typeText": "interface ProFormListProps { ... }",
|
|
10031
|
+
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
10032
|
+
"examples": [
|
|
10033
|
+
{
|
|
10034
|
+
"hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
|
|
10035
|
+
"source": "canonical"
|
|
10036
|
+
}
|
|
10037
|
+
]
|
|
10038
|
+
},
|
|
10039
|
+
{
|
|
10040
|
+
"name": "ProFormMode",
|
|
10041
|
+
"kind": "type",
|
|
10042
|
+
"category": "forms",
|
|
10043
|
+
"summary": "",
|
|
10044
|
+
"importPath": "@1money/component-ui",
|
|
10045
|
+
"subpathImport": "@1money/component-ui/ProForm",
|
|
10046
|
+
"sourceFile": "src/components/ProForm/constants.ts",
|
|
10047
|
+
"props": [],
|
|
10048
|
+
"extends": [],
|
|
10049
|
+
"relatedSymbols": [
|
|
10050
|
+
"CreateProFormFieldConfig",
|
|
10051
|
+
"DialogForm",
|
|
10052
|
+
"DialogFormProps",
|
|
10053
|
+
"DrawerForm",
|
|
10054
|
+
"DrawerFormProps",
|
|
10055
|
+
"FormCoreInstance",
|
|
10056
|
+
"FormInstance",
|
|
10057
|
+
"FormLayout",
|
|
10058
|
+
"FormSize",
|
|
10059
|
+
"LabelAlign",
|
|
10060
|
+
"ProForm",
|
|
10061
|
+
"ProFormCheckbox",
|
|
10062
|
+
"ProFormCheckboxGroup",
|
|
10063
|
+
"ProFormColProps",
|
|
10064
|
+
"ProFormContextValue",
|
|
10065
|
+
"ProFormDateFormatter",
|
|
8999
10066
|
"ProFormDatePicker",
|
|
9000
10067
|
"ProFormDependency",
|
|
9001
10068
|
"ProFormDependencyProps",
|
|
9002
10069
|
"ProFormFieldConvertValueFn",
|
|
10070
|
+
"ProFormFieldName",
|
|
9003
10071
|
"ProFormFieldProps",
|
|
9004
10072
|
"ProFormFieldSet",
|
|
9005
10073
|
"ProFormFieldSetProps",
|
|
@@ -9009,30 +10077,40 @@
|
|
|
9009
10077
|
"ProFormGroupProps",
|
|
9010
10078
|
"ProFormItem",
|
|
9011
10079
|
"ProFormItemProps",
|
|
10080
|
+
"ProFormItemSharedProps",
|
|
10081
|
+
"ProFormLayoutConfig",
|
|
10082
|
+
"ProFormList",
|
|
9012
10083
|
"ProFormListAction",
|
|
9013
10084
|
"ProFormListProps",
|
|
9014
|
-
"ProFormMode",
|
|
9015
10085
|
"ProFormPassword",
|
|
9016
10086
|
"ProFormProps",
|
|
9017
10087
|
"ProFormRadioGroup",
|
|
9018
10088
|
"ProFormRequestOption",
|
|
10089
|
+
"ProFormSchemaColumn",
|
|
10090
|
+
"ProFormSchemaValueType",
|
|
9019
10091
|
"ProFormSelect",
|
|
9020
10092
|
"ProFormSlider",
|
|
9021
10093
|
"ProFormSwitch",
|
|
9022
10094
|
"ProFormText",
|
|
9023
10095
|
"ProFormTextArea",
|
|
9024
10096
|
"ProFormUpload",
|
|
10097
|
+
"ProFormValidateResult",
|
|
9025
10098
|
"ProFormValueEnumObj",
|
|
9026
10099
|
"ProFormValueType",
|
|
9027
10100
|
"QueryFilter",
|
|
9028
10101
|
"QueryFilterProps",
|
|
9029
10102
|
"Rule",
|
|
10103
|
+
"SchemaForm",
|
|
10104
|
+
"SchemaFormProps",
|
|
9030
10105
|
"SubmitterProps",
|
|
10106
|
+
"UseFormWatch",
|
|
9031
10107
|
"ValidateStatus",
|
|
9032
10108
|
"ValidateTrigger",
|
|
9033
|
-
"createProFormField"
|
|
10109
|
+
"createProFormField",
|
|
10110
|
+
"useFormWatch"
|
|
9034
10111
|
],
|
|
9035
10112
|
"searchTags": [],
|
|
10113
|
+
"typeText": "(typeof PROFORM_MODES)[number]",
|
|
9036
10114
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
9037
10115
|
"examples": [
|
|
9038
10116
|
{
|
|
@@ -9042,13 +10120,13 @@
|
|
|
9042
10120
|
]
|
|
9043
10121
|
},
|
|
9044
10122
|
{
|
|
9045
|
-
"name": "
|
|
9046
|
-
"kind": "
|
|
10123
|
+
"name": "ProFormPassword",
|
|
10124
|
+
"kind": "component",
|
|
9047
10125
|
"category": "forms",
|
|
9048
10126
|
"summary": "",
|
|
9049
10127
|
"importPath": "@1money/component-ui",
|
|
9050
10128
|
"subpathImport": "@1money/component-ui/ProForm",
|
|
9051
|
-
"sourceFile": "src/components/ProForm/
|
|
10129
|
+
"sourceFile": "src/components/ProForm/fields/ProFormPassword.tsx",
|
|
9052
10130
|
"props": [],
|
|
9053
10131
|
"extends": [],
|
|
9054
10132
|
"relatedSymbols": [
|
|
@@ -9067,10 +10145,12 @@
|
|
|
9067
10145
|
"ProFormCheckboxGroup",
|
|
9068
10146
|
"ProFormColProps",
|
|
9069
10147
|
"ProFormContextValue",
|
|
10148
|
+
"ProFormDateFormatter",
|
|
9070
10149
|
"ProFormDatePicker",
|
|
9071
10150
|
"ProFormDependency",
|
|
9072
10151
|
"ProFormDependencyProps",
|
|
9073
10152
|
"ProFormFieldConvertValueFn",
|
|
10153
|
+
"ProFormFieldName",
|
|
9074
10154
|
"ProFormFieldProps",
|
|
9075
10155
|
"ProFormFieldSet",
|
|
9076
10156
|
"ProFormFieldSetProps",
|
|
@@ -9080,31 +10160,39 @@
|
|
|
9080
10160
|
"ProFormGroupProps",
|
|
9081
10161
|
"ProFormItem",
|
|
9082
10162
|
"ProFormItemProps",
|
|
10163
|
+
"ProFormItemSharedProps",
|
|
10164
|
+
"ProFormLayoutConfig",
|
|
9083
10165
|
"ProFormList",
|
|
10166
|
+
"ProFormListAction",
|
|
9084
10167
|
"ProFormListProps",
|
|
9085
10168
|
"ProFormMode",
|
|
9086
|
-
"ProFormPassword",
|
|
9087
10169
|
"ProFormProps",
|
|
9088
10170
|
"ProFormRadioGroup",
|
|
9089
10171
|
"ProFormRequestOption",
|
|
10172
|
+
"ProFormSchemaColumn",
|
|
10173
|
+
"ProFormSchemaValueType",
|
|
9090
10174
|
"ProFormSelect",
|
|
9091
10175
|
"ProFormSlider",
|
|
9092
10176
|
"ProFormSwitch",
|
|
9093
10177
|
"ProFormText",
|
|
9094
10178
|
"ProFormTextArea",
|
|
9095
10179
|
"ProFormUpload",
|
|
10180
|
+
"ProFormValidateResult",
|
|
9096
10181
|
"ProFormValueEnumObj",
|
|
9097
10182
|
"ProFormValueType",
|
|
9098
10183
|
"QueryFilter",
|
|
9099
10184
|
"QueryFilterProps",
|
|
9100
10185
|
"Rule",
|
|
10186
|
+
"SchemaForm",
|
|
10187
|
+
"SchemaFormProps",
|
|
9101
10188
|
"SubmitterProps",
|
|
10189
|
+
"UseFormWatch",
|
|
9102
10190
|
"ValidateStatus",
|
|
9103
10191
|
"ValidateTrigger",
|
|
9104
|
-
"createProFormField"
|
|
10192
|
+
"createProFormField",
|
|
10193
|
+
"useFormWatch"
|
|
9105
10194
|
],
|
|
9106
10195
|
"searchTags": [],
|
|
9107
|
-
"typeText": "interface ProFormListAction { ... }",
|
|
9108
10196
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
9109
10197
|
"examples": [
|
|
9110
10198
|
{
|
|
@@ -9114,7 +10202,7 @@
|
|
|
9114
10202
|
]
|
|
9115
10203
|
},
|
|
9116
10204
|
{
|
|
9117
|
-
"name": "
|
|
10205
|
+
"name": "ProFormProps",
|
|
9118
10206
|
"kind": "type",
|
|
9119
10207
|
"category": "forms",
|
|
9120
10208
|
"summary": "",
|
|
@@ -9139,10 +10227,12 @@
|
|
|
9139
10227
|
"ProFormCheckboxGroup",
|
|
9140
10228
|
"ProFormColProps",
|
|
9141
10229
|
"ProFormContextValue",
|
|
10230
|
+
"ProFormDateFormatter",
|
|
9142
10231
|
"ProFormDatePicker",
|
|
9143
10232
|
"ProFormDependency",
|
|
9144
10233
|
"ProFormDependencyProps",
|
|
9145
10234
|
"ProFormFieldConvertValueFn",
|
|
10235
|
+
"ProFormFieldName",
|
|
9146
10236
|
"ProFormFieldProps",
|
|
9147
10237
|
"ProFormFieldSet",
|
|
9148
10238
|
"ProFormFieldSetProps",
|
|
@@ -9152,31 +10242,40 @@
|
|
|
9152
10242
|
"ProFormGroupProps",
|
|
9153
10243
|
"ProFormItem",
|
|
9154
10244
|
"ProFormItemProps",
|
|
10245
|
+
"ProFormItemSharedProps",
|
|
10246
|
+
"ProFormLayoutConfig",
|
|
9155
10247
|
"ProFormList",
|
|
9156
10248
|
"ProFormListAction",
|
|
10249
|
+
"ProFormListProps",
|
|
9157
10250
|
"ProFormMode",
|
|
9158
10251
|
"ProFormPassword",
|
|
9159
|
-
"ProFormProps",
|
|
9160
10252
|
"ProFormRadioGroup",
|
|
9161
10253
|
"ProFormRequestOption",
|
|
10254
|
+
"ProFormSchemaColumn",
|
|
10255
|
+
"ProFormSchemaValueType",
|
|
9162
10256
|
"ProFormSelect",
|
|
9163
10257
|
"ProFormSlider",
|
|
9164
10258
|
"ProFormSwitch",
|
|
9165
10259
|
"ProFormText",
|
|
9166
10260
|
"ProFormTextArea",
|
|
9167
10261
|
"ProFormUpload",
|
|
10262
|
+
"ProFormValidateResult",
|
|
9168
10263
|
"ProFormValueEnumObj",
|
|
9169
10264
|
"ProFormValueType",
|
|
9170
10265
|
"QueryFilter",
|
|
9171
10266
|
"QueryFilterProps",
|
|
9172
10267
|
"Rule",
|
|
10268
|
+
"SchemaForm",
|
|
10269
|
+
"SchemaFormProps",
|
|
9173
10270
|
"SubmitterProps",
|
|
10271
|
+
"UseFormWatch",
|
|
9174
10272
|
"ValidateStatus",
|
|
9175
10273
|
"ValidateTrigger",
|
|
9176
|
-
"createProFormField"
|
|
10274
|
+
"createProFormField",
|
|
10275
|
+
"useFormWatch"
|
|
9177
10276
|
],
|
|
9178
10277
|
"searchTags": [],
|
|
9179
|
-
"typeText": "interface
|
|
10278
|
+
"typeText": "interface ProFormProps extends Omit<FormHTMLAttributes<HTMLFormElement>, 'onSubmit' | 'onReset'> { ... }",
|
|
9180
10279
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
9181
10280
|
"examples": [
|
|
9182
10281
|
{
|
|
@@ -9186,13 +10285,13 @@
|
|
|
9186
10285
|
]
|
|
9187
10286
|
},
|
|
9188
10287
|
{
|
|
9189
|
-
"name": "
|
|
9190
|
-
"kind": "
|
|
10288
|
+
"name": "ProFormRadioGroup",
|
|
10289
|
+
"kind": "component",
|
|
9191
10290
|
"category": "forms",
|
|
9192
10291
|
"summary": "",
|
|
9193
10292
|
"importPath": "@1money/component-ui",
|
|
9194
10293
|
"subpathImport": "@1money/component-ui/ProForm",
|
|
9195
|
-
"sourceFile": "src/components/ProForm/
|
|
10294
|
+
"sourceFile": "src/components/ProForm/fields/ProFormRadioGroup.tsx",
|
|
9196
10295
|
"props": [],
|
|
9197
10296
|
"extends": [],
|
|
9198
10297
|
"relatedSymbols": [
|
|
@@ -9211,10 +10310,12 @@
|
|
|
9211
10310
|
"ProFormCheckboxGroup",
|
|
9212
10311
|
"ProFormColProps",
|
|
9213
10312
|
"ProFormContextValue",
|
|
10313
|
+
"ProFormDateFormatter",
|
|
9214
10314
|
"ProFormDatePicker",
|
|
9215
10315
|
"ProFormDependency",
|
|
9216
10316
|
"ProFormDependencyProps",
|
|
9217
10317
|
"ProFormFieldConvertValueFn",
|
|
10318
|
+
"ProFormFieldName",
|
|
9218
10319
|
"ProFormFieldProps",
|
|
9219
10320
|
"ProFormFieldSet",
|
|
9220
10321
|
"ProFormFieldSetProps",
|
|
@@ -9224,31 +10325,39 @@
|
|
|
9224
10325
|
"ProFormGroupProps",
|
|
9225
10326
|
"ProFormItem",
|
|
9226
10327
|
"ProFormItemProps",
|
|
10328
|
+
"ProFormItemSharedProps",
|
|
10329
|
+
"ProFormLayoutConfig",
|
|
9227
10330
|
"ProFormList",
|
|
9228
10331
|
"ProFormListAction",
|
|
9229
10332
|
"ProFormListProps",
|
|
10333
|
+
"ProFormMode",
|
|
9230
10334
|
"ProFormPassword",
|
|
9231
10335
|
"ProFormProps",
|
|
9232
|
-
"ProFormRadioGroup",
|
|
9233
10336
|
"ProFormRequestOption",
|
|
10337
|
+
"ProFormSchemaColumn",
|
|
10338
|
+
"ProFormSchemaValueType",
|
|
9234
10339
|
"ProFormSelect",
|
|
9235
10340
|
"ProFormSlider",
|
|
9236
10341
|
"ProFormSwitch",
|
|
9237
10342
|
"ProFormText",
|
|
9238
10343
|
"ProFormTextArea",
|
|
9239
10344
|
"ProFormUpload",
|
|
10345
|
+
"ProFormValidateResult",
|
|
9240
10346
|
"ProFormValueEnumObj",
|
|
9241
10347
|
"ProFormValueType",
|
|
9242
10348
|
"QueryFilter",
|
|
9243
10349
|
"QueryFilterProps",
|
|
9244
10350
|
"Rule",
|
|
10351
|
+
"SchemaForm",
|
|
10352
|
+
"SchemaFormProps",
|
|
9245
10353
|
"SubmitterProps",
|
|
10354
|
+
"UseFormWatch",
|
|
9246
10355
|
"ValidateStatus",
|
|
9247
10356
|
"ValidateTrigger",
|
|
9248
|
-
"createProFormField"
|
|
10357
|
+
"createProFormField",
|
|
10358
|
+
"useFormWatch"
|
|
9249
10359
|
],
|
|
9250
10360
|
"searchTags": [],
|
|
9251
|
-
"typeText": "(typeof PROFORM_MODES)[number]",
|
|
9252
10361
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
9253
10362
|
"examples": [
|
|
9254
10363
|
{
|
|
@@ -9258,13 +10367,13 @@
|
|
|
9258
10367
|
]
|
|
9259
10368
|
},
|
|
9260
10369
|
{
|
|
9261
|
-
"name": "
|
|
9262
|
-
"kind": "
|
|
10370
|
+
"name": "ProFormRequestOption",
|
|
10371
|
+
"kind": "type",
|
|
9263
10372
|
"category": "forms",
|
|
9264
10373
|
"summary": "",
|
|
9265
10374
|
"importPath": "@1money/component-ui",
|
|
9266
10375
|
"subpathImport": "@1money/component-ui/ProForm",
|
|
9267
|
-
"sourceFile": "src/components/ProForm/
|
|
10376
|
+
"sourceFile": "src/components/ProForm/interface.ts",
|
|
9268
10377
|
"props": [],
|
|
9269
10378
|
"extends": [],
|
|
9270
10379
|
"relatedSymbols": [
|
|
@@ -9283,10 +10392,12 @@
|
|
|
9283
10392
|
"ProFormCheckboxGroup",
|
|
9284
10393
|
"ProFormColProps",
|
|
9285
10394
|
"ProFormContextValue",
|
|
10395
|
+
"ProFormDateFormatter",
|
|
9286
10396
|
"ProFormDatePicker",
|
|
9287
10397
|
"ProFormDependency",
|
|
9288
10398
|
"ProFormDependencyProps",
|
|
9289
10399
|
"ProFormFieldConvertValueFn",
|
|
10400
|
+
"ProFormFieldName",
|
|
9290
10401
|
"ProFormFieldProps",
|
|
9291
10402
|
"ProFormFieldSet",
|
|
9292
10403
|
"ProFormFieldSetProps",
|
|
@@ -9296,30 +10407,40 @@
|
|
|
9296
10407
|
"ProFormGroupProps",
|
|
9297
10408
|
"ProFormItem",
|
|
9298
10409
|
"ProFormItemProps",
|
|
10410
|
+
"ProFormItemSharedProps",
|
|
10411
|
+
"ProFormLayoutConfig",
|
|
9299
10412
|
"ProFormList",
|
|
9300
10413
|
"ProFormListAction",
|
|
9301
10414
|
"ProFormListProps",
|
|
9302
10415
|
"ProFormMode",
|
|
10416
|
+
"ProFormPassword",
|
|
9303
10417
|
"ProFormProps",
|
|
9304
10418
|
"ProFormRadioGroup",
|
|
9305
|
-
"
|
|
10419
|
+
"ProFormSchemaColumn",
|
|
10420
|
+
"ProFormSchemaValueType",
|
|
9306
10421
|
"ProFormSelect",
|
|
9307
10422
|
"ProFormSlider",
|
|
9308
10423
|
"ProFormSwitch",
|
|
9309
10424
|
"ProFormText",
|
|
9310
10425
|
"ProFormTextArea",
|
|
9311
10426
|
"ProFormUpload",
|
|
10427
|
+
"ProFormValidateResult",
|
|
9312
10428
|
"ProFormValueEnumObj",
|
|
9313
10429
|
"ProFormValueType",
|
|
9314
10430
|
"QueryFilter",
|
|
9315
10431
|
"QueryFilterProps",
|
|
9316
10432
|
"Rule",
|
|
10433
|
+
"SchemaForm",
|
|
10434
|
+
"SchemaFormProps",
|
|
9317
10435
|
"SubmitterProps",
|
|
10436
|
+
"UseFormWatch",
|
|
9318
10437
|
"ValidateStatus",
|
|
9319
10438
|
"ValidateTrigger",
|
|
9320
|
-
"createProFormField"
|
|
10439
|
+
"createProFormField",
|
|
10440
|
+
"useFormWatch"
|
|
9321
10441
|
],
|
|
9322
10442
|
"searchTags": [],
|
|
10443
|
+
"typeText": "interface ProFormRequestOption { ... }",
|
|
9323
10444
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
9324
10445
|
"examples": [
|
|
9325
10446
|
{
|
|
@@ -9329,7 +10450,7 @@
|
|
|
9329
10450
|
]
|
|
9330
10451
|
},
|
|
9331
10452
|
{
|
|
9332
|
-
"name": "
|
|
10453
|
+
"name": "ProFormSchemaColumn",
|
|
9333
10454
|
"kind": "type",
|
|
9334
10455
|
"category": "forms",
|
|
9335
10456
|
"summary": "",
|
|
@@ -9354,10 +10475,12 @@
|
|
|
9354
10475
|
"ProFormCheckboxGroup",
|
|
9355
10476
|
"ProFormColProps",
|
|
9356
10477
|
"ProFormContextValue",
|
|
10478
|
+
"ProFormDateFormatter",
|
|
9357
10479
|
"ProFormDatePicker",
|
|
9358
10480
|
"ProFormDependency",
|
|
9359
10481
|
"ProFormDependencyProps",
|
|
9360
10482
|
"ProFormFieldConvertValueFn",
|
|
10483
|
+
"ProFormFieldName",
|
|
9361
10484
|
"ProFormFieldProps",
|
|
9362
10485
|
"ProFormFieldSet",
|
|
9363
10486
|
"ProFormFieldSetProps",
|
|
@@ -9367,31 +10490,40 @@
|
|
|
9367
10490
|
"ProFormGroupProps",
|
|
9368
10491
|
"ProFormItem",
|
|
9369
10492
|
"ProFormItemProps",
|
|
10493
|
+
"ProFormItemSharedProps",
|
|
10494
|
+
"ProFormLayoutConfig",
|
|
9370
10495
|
"ProFormList",
|
|
9371
10496
|
"ProFormListAction",
|
|
9372
10497
|
"ProFormListProps",
|
|
9373
10498
|
"ProFormMode",
|
|
9374
10499
|
"ProFormPassword",
|
|
10500
|
+
"ProFormProps",
|
|
9375
10501
|
"ProFormRadioGroup",
|
|
9376
10502
|
"ProFormRequestOption",
|
|
10503
|
+
"ProFormSchemaValueType",
|
|
9377
10504
|
"ProFormSelect",
|
|
9378
10505
|
"ProFormSlider",
|
|
9379
10506
|
"ProFormSwitch",
|
|
9380
10507
|
"ProFormText",
|
|
9381
10508
|
"ProFormTextArea",
|
|
9382
10509
|
"ProFormUpload",
|
|
10510
|
+
"ProFormValidateResult",
|
|
9383
10511
|
"ProFormValueEnumObj",
|
|
9384
10512
|
"ProFormValueType",
|
|
9385
10513
|
"QueryFilter",
|
|
9386
10514
|
"QueryFilterProps",
|
|
9387
10515
|
"Rule",
|
|
10516
|
+
"SchemaForm",
|
|
10517
|
+
"SchemaFormProps",
|
|
9388
10518
|
"SubmitterProps",
|
|
10519
|
+
"UseFormWatch",
|
|
9389
10520
|
"ValidateStatus",
|
|
9390
10521
|
"ValidateTrigger",
|
|
9391
|
-
"createProFormField"
|
|
10522
|
+
"createProFormField",
|
|
10523
|
+
"useFormWatch"
|
|
9392
10524
|
],
|
|
9393
10525
|
"searchTags": [],
|
|
9394
|
-
"typeText": "interface
|
|
10526
|
+
"typeText": "interface ProFormSchemaColumn { ... }",
|
|
9395
10527
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
9396
10528
|
"examples": [
|
|
9397
10529
|
{
|
|
@@ -9401,13 +10533,13 @@
|
|
|
9401
10533
|
]
|
|
9402
10534
|
},
|
|
9403
10535
|
{
|
|
9404
|
-
"name": "
|
|
9405
|
-
"kind": "
|
|
10536
|
+
"name": "ProFormSchemaValueType",
|
|
10537
|
+
"kind": "type",
|
|
9406
10538
|
"category": "forms",
|
|
9407
10539
|
"summary": "",
|
|
9408
10540
|
"importPath": "@1money/component-ui",
|
|
9409
10541
|
"subpathImport": "@1money/component-ui/ProForm",
|
|
9410
|
-
"sourceFile": "src/components/ProForm/
|
|
10542
|
+
"sourceFile": "src/components/ProForm/interface.ts",
|
|
9411
10543
|
"props": [],
|
|
9412
10544
|
"extends": [],
|
|
9413
10545
|
"relatedSymbols": [
|
|
@@ -9426,10 +10558,12 @@
|
|
|
9426
10558
|
"ProFormCheckboxGroup",
|
|
9427
10559
|
"ProFormColProps",
|
|
9428
10560
|
"ProFormContextValue",
|
|
10561
|
+
"ProFormDateFormatter",
|
|
9429
10562
|
"ProFormDatePicker",
|
|
9430
10563
|
"ProFormDependency",
|
|
9431
10564
|
"ProFormDependencyProps",
|
|
9432
10565
|
"ProFormFieldConvertValueFn",
|
|
10566
|
+
"ProFormFieldName",
|
|
9433
10567
|
"ProFormFieldProps",
|
|
9434
10568
|
"ProFormFieldSet",
|
|
9435
10569
|
"ProFormFieldSetProps",
|
|
@@ -9439,30 +10573,40 @@
|
|
|
9439
10573
|
"ProFormGroupProps",
|
|
9440
10574
|
"ProFormItem",
|
|
9441
10575
|
"ProFormItemProps",
|
|
10576
|
+
"ProFormItemSharedProps",
|
|
10577
|
+
"ProFormLayoutConfig",
|
|
9442
10578
|
"ProFormList",
|
|
9443
10579
|
"ProFormListAction",
|
|
9444
10580
|
"ProFormListProps",
|
|
9445
10581
|
"ProFormMode",
|
|
9446
10582
|
"ProFormPassword",
|
|
9447
10583
|
"ProFormProps",
|
|
10584
|
+
"ProFormRadioGroup",
|
|
9448
10585
|
"ProFormRequestOption",
|
|
10586
|
+
"ProFormSchemaColumn",
|
|
9449
10587
|
"ProFormSelect",
|
|
9450
10588
|
"ProFormSlider",
|
|
9451
10589
|
"ProFormSwitch",
|
|
9452
10590
|
"ProFormText",
|
|
9453
10591
|
"ProFormTextArea",
|
|
9454
10592
|
"ProFormUpload",
|
|
10593
|
+
"ProFormValidateResult",
|
|
9455
10594
|
"ProFormValueEnumObj",
|
|
9456
10595
|
"ProFormValueType",
|
|
9457
10596
|
"QueryFilter",
|
|
9458
10597
|
"QueryFilterProps",
|
|
9459
10598
|
"Rule",
|
|
10599
|
+
"SchemaForm",
|
|
10600
|
+
"SchemaFormProps",
|
|
9460
10601
|
"SubmitterProps",
|
|
10602
|
+
"UseFormWatch",
|
|
9461
10603
|
"ValidateStatus",
|
|
9462
10604
|
"ValidateTrigger",
|
|
9463
|
-
"createProFormField"
|
|
10605
|
+
"createProFormField",
|
|
10606
|
+
"useFormWatch"
|
|
9464
10607
|
],
|
|
9465
10608
|
"searchTags": [],
|
|
10609
|
+
"typeText": "| 'text'\n | 'password'\n | 'textarea'\n | 'digit'\n | 'select'\n | 'checkbox'\n | 'checkboxGroup'\n | 'radioGroup'\n | 'switch'\n | 'slider'\n | 'date'\n | 'dateTime'\n | 'upload'",
|
|
9466
10610
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
9467
10611
|
"examples": [
|
|
9468
10612
|
{
|
|
@@ -9472,13 +10616,13 @@
|
|
|
9472
10616
|
]
|
|
9473
10617
|
},
|
|
9474
10618
|
{
|
|
9475
|
-
"name": "
|
|
9476
|
-
"kind": "
|
|
10619
|
+
"name": "ProFormSelect",
|
|
10620
|
+
"kind": "component",
|
|
9477
10621
|
"category": "forms",
|
|
9478
10622
|
"summary": "",
|
|
9479
10623
|
"importPath": "@1money/component-ui",
|
|
9480
10624
|
"subpathImport": "@1money/component-ui/ProForm",
|
|
9481
|
-
"sourceFile": "src/components/ProForm/
|
|
10625
|
+
"sourceFile": "src/components/ProForm/fields/ProFormSelect.tsx",
|
|
9482
10626
|
"props": [],
|
|
9483
10627
|
"extends": [],
|
|
9484
10628
|
"relatedSymbols": [
|
|
@@ -9497,10 +10641,12 @@
|
|
|
9497
10641
|
"ProFormCheckboxGroup",
|
|
9498
10642
|
"ProFormColProps",
|
|
9499
10643
|
"ProFormContextValue",
|
|
10644
|
+
"ProFormDateFormatter",
|
|
9500
10645
|
"ProFormDatePicker",
|
|
9501
10646
|
"ProFormDependency",
|
|
9502
10647
|
"ProFormDependencyProps",
|
|
9503
10648
|
"ProFormFieldConvertValueFn",
|
|
10649
|
+
"ProFormFieldName",
|
|
9504
10650
|
"ProFormFieldProps",
|
|
9505
10651
|
"ProFormFieldSet",
|
|
9506
10652
|
"ProFormFieldSetProps",
|
|
@@ -9510,6 +10656,8 @@
|
|
|
9510
10656
|
"ProFormGroupProps",
|
|
9511
10657
|
"ProFormItem",
|
|
9512
10658
|
"ProFormItemProps",
|
|
10659
|
+
"ProFormItemSharedProps",
|
|
10660
|
+
"ProFormLayoutConfig",
|
|
9513
10661
|
"ProFormList",
|
|
9514
10662
|
"ProFormListAction",
|
|
9515
10663
|
"ProFormListProps",
|
|
@@ -9517,24 +10665,30 @@
|
|
|
9517
10665
|
"ProFormPassword",
|
|
9518
10666
|
"ProFormProps",
|
|
9519
10667
|
"ProFormRadioGroup",
|
|
9520
|
-
"
|
|
10668
|
+
"ProFormRequestOption",
|
|
10669
|
+
"ProFormSchemaColumn",
|
|
10670
|
+
"ProFormSchemaValueType",
|
|
9521
10671
|
"ProFormSlider",
|
|
9522
10672
|
"ProFormSwitch",
|
|
9523
10673
|
"ProFormText",
|
|
9524
10674
|
"ProFormTextArea",
|
|
9525
10675
|
"ProFormUpload",
|
|
10676
|
+
"ProFormValidateResult",
|
|
9526
10677
|
"ProFormValueEnumObj",
|
|
9527
10678
|
"ProFormValueType",
|
|
9528
10679
|
"QueryFilter",
|
|
9529
10680
|
"QueryFilterProps",
|
|
9530
10681
|
"Rule",
|
|
10682
|
+
"SchemaForm",
|
|
10683
|
+
"SchemaFormProps",
|
|
9531
10684
|
"SubmitterProps",
|
|
10685
|
+
"UseFormWatch",
|
|
9532
10686
|
"ValidateStatus",
|
|
9533
10687
|
"ValidateTrigger",
|
|
9534
|
-
"createProFormField"
|
|
10688
|
+
"createProFormField",
|
|
10689
|
+
"useFormWatch"
|
|
9535
10690
|
],
|
|
9536
10691
|
"searchTags": [],
|
|
9537
|
-
"typeText": "interface ProFormRequestOption { ... }",
|
|
9538
10692
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
9539
10693
|
"examples": [
|
|
9540
10694
|
{
|
|
@@ -9544,13 +10698,13 @@
|
|
|
9544
10698
|
]
|
|
9545
10699
|
},
|
|
9546
10700
|
{
|
|
9547
|
-
"name": "
|
|
10701
|
+
"name": "ProFormSlider",
|
|
9548
10702
|
"kind": "component",
|
|
9549
10703
|
"category": "forms",
|
|
9550
10704
|
"summary": "",
|
|
9551
10705
|
"importPath": "@1money/component-ui",
|
|
9552
10706
|
"subpathImport": "@1money/component-ui/ProForm",
|
|
9553
|
-
"sourceFile": "src/components/ProForm/fields/
|
|
10707
|
+
"sourceFile": "src/components/ProForm/fields/ProFormSlider.tsx",
|
|
9554
10708
|
"props": [],
|
|
9555
10709
|
"extends": [],
|
|
9556
10710
|
"relatedSymbols": [
|
|
@@ -9569,10 +10723,12 @@
|
|
|
9569
10723
|
"ProFormCheckboxGroup",
|
|
9570
10724
|
"ProFormColProps",
|
|
9571
10725
|
"ProFormContextValue",
|
|
10726
|
+
"ProFormDateFormatter",
|
|
9572
10727
|
"ProFormDatePicker",
|
|
9573
10728
|
"ProFormDependency",
|
|
9574
10729
|
"ProFormDependencyProps",
|
|
9575
10730
|
"ProFormFieldConvertValueFn",
|
|
10731
|
+
"ProFormFieldName",
|
|
9576
10732
|
"ProFormFieldProps",
|
|
9577
10733
|
"ProFormFieldSet",
|
|
9578
10734
|
"ProFormFieldSetProps",
|
|
@@ -9582,6 +10738,8 @@
|
|
|
9582
10738
|
"ProFormGroupProps",
|
|
9583
10739
|
"ProFormItem",
|
|
9584
10740
|
"ProFormItemProps",
|
|
10741
|
+
"ProFormItemSharedProps",
|
|
10742
|
+
"ProFormLayoutConfig",
|
|
9585
10743
|
"ProFormList",
|
|
9586
10744
|
"ProFormListAction",
|
|
9587
10745
|
"ProFormListProps",
|
|
@@ -9590,20 +10748,27 @@
|
|
|
9590
10748
|
"ProFormProps",
|
|
9591
10749
|
"ProFormRadioGroup",
|
|
9592
10750
|
"ProFormRequestOption",
|
|
9593
|
-
"
|
|
10751
|
+
"ProFormSchemaColumn",
|
|
10752
|
+
"ProFormSchemaValueType",
|
|
10753
|
+
"ProFormSelect",
|
|
9594
10754
|
"ProFormSwitch",
|
|
9595
10755
|
"ProFormText",
|
|
9596
10756
|
"ProFormTextArea",
|
|
9597
10757
|
"ProFormUpload",
|
|
10758
|
+
"ProFormValidateResult",
|
|
9598
10759
|
"ProFormValueEnumObj",
|
|
9599
10760
|
"ProFormValueType",
|
|
9600
10761
|
"QueryFilter",
|
|
9601
10762
|
"QueryFilterProps",
|
|
9602
10763
|
"Rule",
|
|
10764
|
+
"SchemaForm",
|
|
10765
|
+
"SchemaFormProps",
|
|
9603
10766
|
"SubmitterProps",
|
|
10767
|
+
"UseFormWatch",
|
|
9604
10768
|
"ValidateStatus",
|
|
9605
10769
|
"ValidateTrigger",
|
|
9606
|
-
"createProFormField"
|
|
10770
|
+
"createProFormField",
|
|
10771
|
+
"useFormWatch"
|
|
9607
10772
|
],
|
|
9608
10773
|
"searchTags": [],
|
|
9609
10774
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
@@ -9615,13 +10780,13 @@
|
|
|
9615
10780
|
]
|
|
9616
10781
|
},
|
|
9617
10782
|
{
|
|
9618
|
-
"name": "
|
|
10783
|
+
"name": "ProFormSwitch",
|
|
9619
10784
|
"kind": "component",
|
|
9620
10785
|
"category": "forms",
|
|
9621
10786
|
"summary": "",
|
|
9622
10787
|
"importPath": "@1money/component-ui",
|
|
9623
10788
|
"subpathImport": "@1money/component-ui/ProForm",
|
|
9624
|
-
"sourceFile": "src/components/ProForm/fields/
|
|
10789
|
+
"sourceFile": "src/components/ProForm/fields/ProFormSwitch.tsx",
|
|
9625
10790
|
"props": [],
|
|
9626
10791
|
"extends": [],
|
|
9627
10792
|
"relatedSymbols": [
|
|
@@ -9640,10 +10805,12 @@
|
|
|
9640
10805
|
"ProFormCheckboxGroup",
|
|
9641
10806
|
"ProFormColProps",
|
|
9642
10807
|
"ProFormContextValue",
|
|
10808
|
+
"ProFormDateFormatter",
|
|
9643
10809
|
"ProFormDatePicker",
|
|
9644
10810
|
"ProFormDependency",
|
|
9645
10811
|
"ProFormDependencyProps",
|
|
9646
10812
|
"ProFormFieldConvertValueFn",
|
|
10813
|
+
"ProFormFieldName",
|
|
9647
10814
|
"ProFormFieldProps",
|
|
9648
10815
|
"ProFormFieldSet",
|
|
9649
10816
|
"ProFormFieldSetProps",
|
|
@@ -9653,6 +10820,8 @@
|
|
|
9653
10820
|
"ProFormGroupProps",
|
|
9654
10821
|
"ProFormItem",
|
|
9655
10822
|
"ProFormItemProps",
|
|
10823
|
+
"ProFormItemSharedProps",
|
|
10824
|
+
"ProFormLayoutConfig",
|
|
9656
10825
|
"ProFormList",
|
|
9657
10826
|
"ProFormListAction",
|
|
9658
10827
|
"ProFormListProps",
|
|
@@ -9661,20 +10830,27 @@
|
|
|
9661
10830
|
"ProFormProps",
|
|
9662
10831
|
"ProFormRadioGroup",
|
|
9663
10832
|
"ProFormRequestOption",
|
|
10833
|
+
"ProFormSchemaColumn",
|
|
10834
|
+
"ProFormSchemaValueType",
|
|
9664
10835
|
"ProFormSelect",
|
|
9665
|
-
"
|
|
10836
|
+
"ProFormSlider",
|
|
9666
10837
|
"ProFormText",
|
|
9667
10838
|
"ProFormTextArea",
|
|
9668
10839
|
"ProFormUpload",
|
|
10840
|
+
"ProFormValidateResult",
|
|
9669
10841
|
"ProFormValueEnumObj",
|
|
9670
10842
|
"ProFormValueType",
|
|
9671
10843
|
"QueryFilter",
|
|
9672
10844
|
"QueryFilterProps",
|
|
9673
10845
|
"Rule",
|
|
10846
|
+
"SchemaForm",
|
|
10847
|
+
"SchemaFormProps",
|
|
9674
10848
|
"SubmitterProps",
|
|
10849
|
+
"UseFormWatch",
|
|
9675
10850
|
"ValidateStatus",
|
|
9676
10851
|
"ValidateTrigger",
|
|
9677
|
-
"createProFormField"
|
|
10852
|
+
"createProFormField",
|
|
10853
|
+
"useFormWatch"
|
|
9678
10854
|
],
|
|
9679
10855
|
"searchTags": [],
|
|
9680
10856
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
@@ -9686,13 +10862,13 @@
|
|
|
9686
10862
|
]
|
|
9687
10863
|
},
|
|
9688
10864
|
{
|
|
9689
|
-
"name": "
|
|
10865
|
+
"name": "ProFormText",
|
|
9690
10866
|
"kind": "component",
|
|
9691
10867
|
"category": "forms",
|
|
9692
10868
|
"summary": "",
|
|
9693
10869
|
"importPath": "@1money/component-ui",
|
|
9694
10870
|
"subpathImport": "@1money/component-ui/ProForm",
|
|
9695
|
-
"sourceFile": "src/components/ProForm/fields/
|
|
10871
|
+
"sourceFile": "src/components/ProForm/fields/ProFormText.tsx",
|
|
9696
10872
|
"props": [],
|
|
9697
10873
|
"extends": [],
|
|
9698
10874
|
"relatedSymbols": [
|
|
@@ -9711,10 +10887,12 @@
|
|
|
9711
10887
|
"ProFormCheckboxGroup",
|
|
9712
10888
|
"ProFormColProps",
|
|
9713
10889
|
"ProFormContextValue",
|
|
10890
|
+
"ProFormDateFormatter",
|
|
9714
10891
|
"ProFormDatePicker",
|
|
9715
10892
|
"ProFormDependency",
|
|
9716
10893
|
"ProFormDependencyProps",
|
|
9717
10894
|
"ProFormFieldConvertValueFn",
|
|
10895
|
+
"ProFormFieldName",
|
|
9718
10896
|
"ProFormFieldProps",
|
|
9719
10897
|
"ProFormFieldSet",
|
|
9720
10898
|
"ProFormFieldSetProps",
|
|
@@ -9724,6 +10902,8 @@
|
|
|
9724
10902
|
"ProFormGroupProps",
|
|
9725
10903
|
"ProFormItem",
|
|
9726
10904
|
"ProFormItemProps",
|
|
10905
|
+
"ProFormItemSharedProps",
|
|
10906
|
+
"ProFormLayoutConfig",
|
|
9727
10907
|
"ProFormList",
|
|
9728
10908
|
"ProFormListAction",
|
|
9729
10909
|
"ProFormListProps",
|
|
@@ -9732,20 +10912,27 @@
|
|
|
9732
10912
|
"ProFormProps",
|
|
9733
10913
|
"ProFormRadioGroup",
|
|
9734
10914
|
"ProFormRequestOption",
|
|
10915
|
+
"ProFormSchemaColumn",
|
|
10916
|
+
"ProFormSchemaValueType",
|
|
9735
10917
|
"ProFormSelect",
|
|
9736
10918
|
"ProFormSlider",
|
|
9737
|
-
"
|
|
10919
|
+
"ProFormSwitch",
|
|
9738
10920
|
"ProFormTextArea",
|
|
9739
10921
|
"ProFormUpload",
|
|
10922
|
+
"ProFormValidateResult",
|
|
9740
10923
|
"ProFormValueEnumObj",
|
|
9741
10924
|
"ProFormValueType",
|
|
9742
10925
|
"QueryFilter",
|
|
9743
10926
|
"QueryFilterProps",
|
|
9744
10927
|
"Rule",
|
|
10928
|
+
"SchemaForm",
|
|
10929
|
+
"SchemaFormProps",
|
|
9745
10930
|
"SubmitterProps",
|
|
10931
|
+
"UseFormWatch",
|
|
9746
10932
|
"ValidateStatus",
|
|
9747
10933
|
"ValidateTrigger",
|
|
9748
|
-
"createProFormField"
|
|
10934
|
+
"createProFormField",
|
|
10935
|
+
"useFormWatch"
|
|
9749
10936
|
],
|
|
9750
10937
|
"searchTags": [],
|
|
9751
10938
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
@@ -9757,13 +10944,13 @@
|
|
|
9757
10944
|
]
|
|
9758
10945
|
},
|
|
9759
10946
|
{
|
|
9760
|
-
"name": "
|
|
10947
|
+
"name": "ProFormTextArea",
|
|
9761
10948
|
"kind": "component",
|
|
9762
10949
|
"category": "forms",
|
|
9763
10950
|
"summary": "",
|
|
9764
10951
|
"importPath": "@1money/component-ui",
|
|
9765
10952
|
"subpathImport": "@1money/component-ui/ProForm",
|
|
9766
|
-
"sourceFile": "src/components/ProForm/fields/
|
|
10953
|
+
"sourceFile": "src/components/ProForm/fields/ProFormTextArea.tsx",
|
|
9767
10954
|
"props": [],
|
|
9768
10955
|
"extends": [],
|
|
9769
10956
|
"relatedSymbols": [
|
|
@@ -9782,10 +10969,12 @@
|
|
|
9782
10969
|
"ProFormCheckboxGroup",
|
|
9783
10970
|
"ProFormColProps",
|
|
9784
10971
|
"ProFormContextValue",
|
|
10972
|
+
"ProFormDateFormatter",
|
|
9785
10973
|
"ProFormDatePicker",
|
|
9786
10974
|
"ProFormDependency",
|
|
9787
10975
|
"ProFormDependencyProps",
|
|
9788
10976
|
"ProFormFieldConvertValueFn",
|
|
10977
|
+
"ProFormFieldName",
|
|
9789
10978
|
"ProFormFieldProps",
|
|
9790
10979
|
"ProFormFieldSet",
|
|
9791
10980
|
"ProFormFieldSetProps",
|
|
@@ -9795,6 +10984,8 @@
|
|
|
9795
10984
|
"ProFormGroupProps",
|
|
9796
10985
|
"ProFormItem",
|
|
9797
10986
|
"ProFormItemProps",
|
|
10987
|
+
"ProFormItemSharedProps",
|
|
10988
|
+
"ProFormLayoutConfig",
|
|
9798
10989
|
"ProFormList",
|
|
9799
10990
|
"ProFormListAction",
|
|
9800
10991
|
"ProFormListProps",
|
|
@@ -9803,20 +10994,27 @@
|
|
|
9803
10994
|
"ProFormProps",
|
|
9804
10995
|
"ProFormRadioGroup",
|
|
9805
10996
|
"ProFormRequestOption",
|
|
10997
|
+
"ProFormSchemaColumn",
|
|
10998
|
+
"ProFormSchemaValueType",
|
|
9806
10999
|
"ProFormSelect",
|
|
9807
11000
|
"ProFormSlider",
|
|
9808
11001
|
"ProFormSwitch",
|
|
9809
|
-
"
|
|
11002
|
+
"ProFormText",
|
|
9810
11003
|
"ProFormUpload",
|
|
11004
|
+
"ProFormValidateResult",
|
|
9811
11005
|
"ProFormValueEnumObj",
|
|
9812
11006
|
"ProFormValueType",
|
|
9813
11007
|
"QueryFilter",
|
|
9814
11008
|
"QueryFilterProps",
|
|
9815
11009
|
"Rule",
|
|
11010
|
+
"SchemaForm",
|
|
11011
|
+
"SchemaFormProps",
|
|
9816
11012
|
"SubmitterProps",
|
|
11013
|
+
"UseFormWatch",
|
|
9817
11014
|
"ValidateStatus",
|
|
9818
11015
|
"ValidateTrigger",
|
|
9819
|
-
"createProFormField"
|
|
11016
|
+
"createProFormField",
|
|
11017
|
+
"useFormWatch"
|
|
9820
11018
|
],
|
|
9821
11019
|
"searchTags": [],
|
|
9822
11020
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
@@ -9828,13 +11026,13 @@
|
|
|
9828
11026
|
]
|
|
9829
11027
|
},
|
|
9830
11028
|
{
|
|
9831
|
-
"name": "
|
|
11029
|
+
"name": "ProFormUpload",
|
|
9832
11030
|
"kind": "component",
|
|
9833
11031
|
"category": "forms",
|
|
9834
11032
|
"summary": "",
|
|
9835
11033
|
"importPath": "@1money/component-ui",
|
|
9836
11034
|
"subpathImport": "@1money/component-ui/ProForm",
|
|
9837
|
-
"sourceFile": "src/components/ProForm/fields/
|
|
11035
|
+
"sourceFile": "src/components/ProForm/fields/ProFormUpload.tsx",
|
|
9838
11036
|
"props": [],
|
|
9839
11037
|
"extends": [],
|
|
9840
11038
|
"relatedSymbols": [
|
|
@@ -9853,10 +11051,12 @@
|
|
|
9853
11051
|
"ProFormCheckboxGroup",
|
|
9854
11052
|
"ProFormColProps",
|
|
9855
11053
|
"ProFormContextValue",
|
|
11054
|
+
"ProFormDateFormatter",
|
|
9856
11055
|
"ProFormDatePicker",
|
|
9857
11056
|
"ProFormDependency",
|
|
9858
11057
|
"ProFormDependencyProps",
|
|
9859
11058
|
"ProFormFieldConvertValueFn",
|
|
11059
|
+
"ProFormFieldName",
|
|
9860
11060
|
"ProFormFieldProps",
|
|
9861
11061
|
"ProFormFieldSet",
|
|
9862
11062
|
"ProFormFieldSetProps",
|
|
@@ -9866,6 +11066,8 @@
|
|
|
9866
11066
|
"ProFormGroupProps",
|
|
9867
11067
|
"ProFormItem",
|
|
9868
11068
|
"ProFormItemProps",
|
|
11069
|
+
"ProFormItemSharedProps",
|
|
11070
|
+
"ProFormLayoutConfig",
|
|
9869
11071
|
"ProFormList",
|
|
9870
11072
|
"ProFormListAction",
|
|
9871
11073
|
"ProFormListProps",
|
|
@@ -9874,20 +11076,27 @@
|
|
|
9874
11076
|
"ProFormProps",
|
|
9875
11077
|
"ProFormRadioGroup",
|
|
9876
11078
|
"ProFormRequestOption",
|
|
11079
|
+
"ProFormSchemaColumn",
|
|
11080
|
+
"ProFormSchemaValueType",
|
|
9877
11081
|
"ProFormSelect",
|
|
9878
11082
|
"ProFormSlider",
|
|
9879
11083
|
"ProFormSwitch",
|
|
9880
11084
|
"ProFormText",
|
|
9881
|
-
"
|
|
11085
|
+
"ProFormTextArea",
|
|
11086
|
+
"ProFormValidateResult",
|
|
9882
11087
|
"ProFormValueEnumObj",
|
|
9883
11088
|
"ProFormValueType",
|
|
9884
11089
|
"QueryFilter",
|
|
9885
11090
|
"QueryFilterProps",
|
|
9886
11091
|
"Rule",
|
|
11092
|
+
"SchemaForm",
|
|
11093
|
+
"SchemaFormProps",
|
|
9887
11094
|
"SubmitterProps",
|
|
11095
|
+
"UseFormWatch",
|
|
9888
11096
|
"ValidateStatus",
|
|
9889
11097
|
"ValidateTrigger",
|
|
9890
|
-
"createProFormField"
|
|
11098
|
+
"createProFormField",
|
|
11099
|
+
"useFormWatch"
|
|
9891
11100
|
],
|
|
9892
11101
|
"searchTags": [],
|
|
9893
11102
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
@@ -9899,13 +11108,13 @@
|
|
|
9899
11108
|
]
|
|
9900
11109
|
},
|
|
9901
11110
|
{
|
|
9902
|
-
"name": "
|
|
9903
|
-
"kind": "
|
|
11111
|
+
"name": "ProFormValidateResult",
|
|
11112
|
+
"kind": "type",
|
|
9904
11113
|
"category": "forms",
|
|
9905
|
-
"summary": "",
|
|
11114
|
+
"summary": "Result of `validateFieldsReturnFormatValue` — a discriminated union: checking `success` narrows to `values` (success) or `errors` (failure) without `!`.",
|
|
9906
11115
|
"importPath": "@1money/component-ui",
|
|
9907
11116
|
"subpathImport": "@1money/component-ui/ProForm",
|
|
9908
|
-
"sourceFile": "src/components/ProForm/
|
|
11117
|
+
"sourceFile": "src/components/ProForm/interface.ts",
|
|
9909
11118
|
"props": [],
|
|
9910
11119
|
"extends": [],
|
|
9911
11120
|
"relatedSymbols": [
|
|
@@ -9924,10 +11133,12 @@
|
|
|
9924
11133
|
"ProFormCheckboxGroup",
|
|
9925
11134
|
"ProFormColProps",
|
|
9926
11135
|
"ProFormContextValue",
|
|
11136
|
+
"ProFormDateFormatter",
|
|
9927
11137
|
"ProFormDatePicker",
|
|
9928
11138
|
"ProFormDependency",
|
|
9929
11139
|
"ProFormDependencyProps",
|
|
9930
11140
|
"ProFormFieldConvertValueFn",
|
|
11141
|
+
"ProFormFieldName",
|
|
9931
11142
|
"ProFormFieldProps",
|
|
9932
11143
|
"ProFormFieldSet",
|
|
9933
11144
|
"ProFormFieldSetProps",
|
|
@@ -9937,6 +11148,8 @@
|
|
|
9937
11148
|
"ProFormGroupProps",
|
|
9938
11149
|
"ProFormItem",
|
|
9939
11150
|
"ProFormItemProps",
|
|
11151
|
+
"ProFormItemSharedProps",
|
|
11152
|
+
"ProFormLayoutConfig",
|
|
9940
11153
|
"ProFormList",
|
|
9941
11154
|
"ProFormListAction",
|
|
9942
11155
|
"ProFormListProps",
|
|
@@ -9945,22 +11158,30 @@
|
|
|
9945
11158
|
"ProFormProps",
|
|
9946
11159
|
"ProFormRadioGroup",
|
|
9947
11160
|
"ProFormRequestOption",
|
|
11161
|
+
"ProFormSchemaColumn",
|
|
11162
|
+
"ProFormSchemaValueType",
|
|
9948
11163
|
"ProFormSelect",
|
|
9949
11164
|
"ProFormSlider",
|
|
9950
11165
|
"ProFormSwitch",
|
|
9951
11166
|
"ProFormText",
|
|
9952
11167
|
"ProFormTextArea",
|
|
11168
|
+
"ProFormUpload",
|
|
9953
11169
|
"ProFormValueEnumObj",
|
|
9954
11170
|
"ProFormValueType",
|
|
9955
11171
|
"QueryFilter",
|
|
9956
11172
|
"QueryFilterProps",
|
|
9957
11173
|
"Rule",
|
|
11174
|
+
"SchemaForm",
|
|
11175
|
+
"SchemaFormProps",
|
|
9958
11176
|
"SubmitterProps",
|
|
11177
|
+
"UseFormWatch",
|
|
9959
11178
|
"ValidateStatus",
|
|
9960
11179
|
"ValidateTrigger",
|
|
9961
|
-
"createProFormField"
|
|
11180
|
+
"createProFormField",
|
|
11181
|
+
"useFormWatch"
|
|
9962
11182
|
],
|
|
9963
11183
|
"searchTags": [],
|
|
11184
|
+
"typeText": "| { success: true; values: Values; errors?: undefined }\n | { success: false; errors: Record<string, string>; values?: undefined }",
|
|
9964
11185
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
9965
11186
|
"examples": [
|
|
9966
11187
|
{
|
|
@@ -9995,10 +11216,12 @@
|
|
|
9995
11216
|
"ProFormCheckboxGroup",
|
|
9996
11217
|
"ProFormColProps",
|
|
9997
11218
|
"ProFormContextValue",
|
|
11219
|
+
"ProFormDateFormatter",
|
|
9998
11220
|
"ProFormDatePicker",
|
|
9999
11221
|
"ProFormDependency",
|
|
10000
11222
|
"ProFormDependencyProps",
|
|
10001
11223
|
"ProFormFieldConvertValueFn",
|
|
11224
|
+
"ProFormFieldName",
|
|
10002
11225
|
"ProFormFieldProps",
|
|
10003
11226
|
"ProFormFieldSet",
|
|
10004
11227
|
"ProFormFieldSetProps",
|
|
@@ -10008,6 +11231,8 @@
|
|
|
10008
11231
|
"ProFormGroupProps",
|
|
10009
11232
|
"ProFormItem",
|
|
10010
11233
|
"ProFormItemProps",
|
|
11234
|
+
"ProFormItemSharedProps",
|
|
11235
|
+
"ProFormLayoutConfig",
|
|
10011
11236
|
"ProFormList",
|
|
10012
11237
|
"ProFormListAction",
|
|
10013
11238
|
"ProFormListProps",
|
|
@@ -10016,20 +11241,27 @@
|
|
|
10016
11241
|
"ProFormProps",
|
|
10017
11242
|
"ProFormRadioGroup",
|
|
10018
11243
|
"ProFormRequestOption",
|
|
11244
|
+
"ProFormSchemaColumn",
|
|
11245
|
+
"ProFormSchemaValueType",
|
|
10019
11246
|
"ProFormSelect",
|
|
10020
11247
|
"ProFormSlider",
|
|
10021
11248
|
"ProFormSwitch",
|
|
10022
11249
|
"ProFormText",
|
|
10023
11250
|
"ProFormTextArea",
|
|
10024
11251
|
"ProFormUpload",
|
|
11252
|
+
"ProFormValidateResult",
|
|
10025
11253
|
"ProFormValueType",
|
|
10026
11254
|
"QueryFilter",
|
|
10027
11255
|
"QueryFilterProps",
|
|
10028
11256
|
"Rule",
|
|
11257
|
+
"SchemaForm",
|
|
11258
|
+
"SchemaFormProps",
|
|
10029
11259
|
"SubmitterProps",
|
|
11260
|
+
"UseFormWatch",
|
|
10030
11261
|
"ValidateStatus",
|
|
10031
11262
|
"ValidateTrigger",
|
|
10032
|
-
"createProFormField"
|
|
11263
|
+
"createProFormField",
|
|
11264
|
+
"useFormWatch"
|
|
10033
11265
|
],
|
|
10034
11266
|
"searchTags": [],
|
|
10035
11267
|
"typeText": "Record<\n string | number,\n string | { text: string; disabled?: boolean }\n>",
|
|
@@ -10067,10 +11299,12 @@
|
|
|
10067
11299
|
"ProFormCheckboxGroup",
|
|
10068
11300
|
"ProFormColProps",
|
|
10069
11301
|
"ProFormContextValue",
|
|
11302
|
+
"ProFormDateFormatter",
|
|
10070
11303
|
"ProFormDatePicker",
|
|
10071
11304
|
"ProFormDependency",
|
|
10072
11305
|
"ProFormDependencyProps",
|
|
10073
11306
|
"ProFormFieldConvertValueFn",
|
|
11307
|
+
"ProFormFieldName",
|
|
10074
11308
|
"ProFormFieldProps",
|
|
10075
11309
|
"ProFormFieldSet",
|
|
10076
11310
|
"ProFormFieldSetProps",
|
|
@@ -10080,6 +11314,8 @@
|
|
|
10080
11314
|
"ProFormGroupProps",
|
|
10081
11315
|
"ProFormItem",
|
|
10082
11316
|
"ProFormItemProps",
|
|
11317
|
+
"ProFormItemSharedProps",
|
|
11318
|
+
"ProFormLayoutConfig",
|
|
10083
11319
|
"ProFormList",
|
|
10084
11320
|
"ProFormListAction",
|
|
10085
11321
|
"ProFormListProps",
|
|
@@ -10088,20 +11324,27 @@
|
|
|
10088
11324
|
"ProFormProps",
|
|
10089
11325
|
"ProFormRadioGroup",
|
|
10090
11326
|
"ProFormRequestOption",
|
|
11327
|
+
"ProFormSchemaColumn",
|
|
11328
|
+
"ProFormSchemaValueType",
|
|
10091
11329
|
"ProFormSelect",
|
|
10092
11330
|
"ProFormSlider",
|
|
10093
11331
|
"ProFormSwitch",
|
|
10094
11332
|
"ProFormText",
|
|
10095
11333
|
"ProFormTextArea",
|
|
10096
11334
|
"ProFormUpload",
|
|
11335
|
+
"ProFormValidateResult",
|
|
10097
11336
|
"ProFormValueEnumObj",
|
|
10098
11337
|
"QueryFilter",
|
|
10099
11338
|
"QueryFilterProps",
|
|
10100
11339
|
"Rule",
|
|
11340
|
+
"SchemaForm",
|
|
11341
|
+
"SchemaFormProps",
|
|
10101
11342
|
"SubmitterProps",
|
|
11343
|
+
"UseFormWatch",
|
|
10102
11344
|
"ValidateStatus",
|
|
10103
11345
|
"ValidateTrigger",
|
|
10104
|
-
"createProFormField"
|
|
11346
|
+
"createProFormField",
|
|
11347
|
+
"useFormWatch"
|
|
10105
11348
|
],
|
|
10106
11349
|
"searchTags": [],
|
|
10107
11350
|
"typeText": "| 'text'\n | 'password'\n | 'digit'\n | 'date'\n | 'dateTime'\n | 'select'\n | 'radio'\n | 'switch'\n | 'tag'",
|
|
@@ -10961,7 +12204,7 @@
|
|
|
10961
12204
|
"name": "QueryFilter",
|
|
10962
12205
|
"kind": "component",
|
|
10963
12206
|
"category": "forms",
|
|
10964
|
-
"summary": "",
|
|
12207
|
+
"summary": "Generic-aware export — keeps `<QueryFilter<MyValues> …>` fully typed.",
|
|
10965
12208
|
"importPath": "@1money/component-ui",
|
|
10966
12209
|
"subpathImport": "@1money/component-ui/ProForm",
|
|
10967
12210
|
"sourceFile": "src/components/ProForm/layouts/QueryFilter.tsx",
|
|
@@ -11021,18 +12264,10 @@
|
|
|
11021
12264
|
"default": null,
|
|
11022
12265
|
"description": "",
|
|
11023
12266
|
"inheritedFrom": null
|
|
11024
|
-
},
|
|
11025
|
-
{
|
|
11026
|
-
"name": "syncToUrl",
|
|
11027
|
-
"type": "boolean | ((values: Record<string, unknown>, type: 'get' | 'set') => Record<string, unknown>)",
|
|
11028
|
-
"optional": true,
|
|
11029
|
-
"default": null,
|
|
11030
|
-
"description": "",
|
|
11031
|
-
"inheritedFrom": null
|
|
11032
12267
|
}
|
|
11033
12268
|
],
|
|
11034
12269
|
"extends": [
|
|
11035
|
-
"ProFormProps"
|
|
12270
|
+
"ProFormProps<Values>"
|
|
11036
12271
|
],
|
|
11037
12272
|
"relatedSymbols": [
|
|
11038
12273
|
"CreateProFormFieldConfig",
|
|
@@ -11050,10 +12285,12 @@
|
|
|
11050
12285
|
"ProFormCheckboxGroup",
|
|
11051
12286
|
"ProFormColProps",
|
|
11052
12287
|
"ProFormContextValue",
|
|
12288
|
+
"ProFormDateFormatter",
|
|
11053
12289
|
"ProFormDatePicker",
|
|
11054
12290
|
"ProFormDependency",
|
|
11055
12291
|
"ProFormDependencyProps",
|
|
11056
12292
|
"ProFormFieldConvertValueFn",
|
|
12293
|
+
"ProFormFieldName",
|
|
11057
12294
|
"ProFormFieldProps",
|
|
11058
12295
|
"ProFormFieldSet",
|
|
11059
12296
|
"ProFormFieldSetProps",
|
|
@@ -11063,6 +12300,8 @@
|
|
|
11063
12300
|
"ProFormGroupProps",
|
|
11064
12301
|
"ProFormItem",
|
|
11065
12302
|
"ProFormItemProps",
|
|
12303
|
+
"ProFormItemSharedProps",
|
|
12304
|
+
"ProFormLayoutConfig",
|
|
11066
12305
|
"ProFormList",
|
|
11067
12306
|
"ProFormListAction",
|
|
11068
12307
|
"ProFormListProps",
|
|
@@ -11071,20 +12310,27 @@
|
|
|
11071
12310
|
"ProFormProps",
|
|
11072
12311
|
"ProFormRadioGroup",
|
|
11073
12312
|
"ProFormRequestOption",
|
|
12313
|
+
"ProFormSchemaColumn",
|
|
12314
|
+
"ProFormSchemaValueType",
|
|
11074
12315
|
"ProFormSelect",
|
|
11075
12316
|
"ProFormSlider",
|
|
11076
12317
|
"ProFormSwitch",
|
|
11077
12318
|
"ProFormText",
|
|
11078
12319
|
"ProFormTextArea",
|
|
11079
12320
|
"ProFormUpload",
|
|
12321
|
+
"ProFormValidateResult",
|
|
11080
12322
|
"ProFormValueEnumObj",
|
|
11081
12323
|
"ProFormValueType",
|
|
11082
12324
|
"QueryFilterProps",
|
|
11083
12325
|
"Rule",
|
|
12326
|
+
"SchemaForm",
|
|
12327
|
+
"SchemaFormProps",
|
|
11084
12328
|
"SubmitterProps",
|
|
12329
|
+
"UseFormWatch",
|
|
11085
12330
|
"ValidateStatus",
|
|
11086
12331
|
"ValidateTrigger",
|
|
11087
|
-
"createProFormField"
|
|
12332
|
+
"createProFormField",
|
|
12333
|
+
"useFormWatch"
|
|
11088
12334
|
],
|
|
11089
12335
|
"searchTags": [],
|
|
11090
12336
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
@@ -11121,10 +12367,12 @@
|
|
|
11121
12367
|
"ProFormCheckboxGroup",
|
|
11122
12368
|
"ProFormColProps",
|
|
11123
12369
|
"ProFormContextValue",
|
|
12370
|
+
"ProFormDateFormatter",
|
|
11124
12371
|
"ProFormDatePicker",
|
|
11125
12372
|
"ProFormDependency",
|
|
11126
12373
|
"ProFormDependencyProps",
|
|
11127
12374
|
"ProFormFieldConvertValueFn",
|
|
12375
|
+
"ProFormFieldName",
|
|
11128
12376
|
"ProFormFieldProps",
|
|
11129
12377
|
"ProFormFieldSet",
|
|
11130
12378
|
"ProFormFieldSetProps",
|
|
@@ -11134,6 +12382,8 @@
|
|
|
11134
12382
|
"ProFormGroupProps",
|
|
11135
12383
|
"ProFormItem",
|
|
11136
12384
|
"ProFormItemProps",
|
|
12385
|
+
"ProFormItemSharedProps",
|
|
12386
|
+
"ProFormLayoutConfig",
|
|
11137
12387
|
"ProFormList",
|
|
11138
12388
|
"ProFormListAction",
|
|
11139
12389
|
"ProFormListProps",
|
|
@@ -11142,23 +12392,30 @@
|
|
|
11142
12392
|
"ProFormProps",
|
|
11143
12393
|
"ProFormRadioGroup",
|
|
11144
12394
|
"ProFormRequestOption",
|
|
12395
|
+
"ProFormSchemaColumn",
|
|
12396
|
+
"ProFormSchemaValueType",
|
|
11145
12397
|
"ProFormSelect",
|
|
11146
12398
|
"ProFormSlider",
|
|
11147
12399
|
"ProFormSwitch",
|
|
11148
12400
|
"ProFormText",
|
|
11149
12401
|
"ProFormTextArea",
|
|
11150
12402
|
"ProFormUpload",
|
|
12403
|
+
"ProFormValidateResult",
|
|
11151
12404
|
"ProFormValueEnumObj",
|
|
11152
12405
|
"ProFormValueType",
|
|
11153
12406
|
"QueryFilter",
|
|
11154
12407
|
"Rule",
|
|
12408
|
+
"SchemaForm",
|
|
12409
|
+
"SchemaFormProps",
|
|
11155
12410
|
"SubmitterProps",
|
|
12411
|
+
"UseFormWatch",
|
|
11156
12412
|
"ValidateStatus",
|
|
11157
12413
|
"ValidateTrigger",
|
|
11158
|
-
"createProFormField"
|
|
12414
|
+
"createProFormField",
|
|
12415
|
+
"useFormWatch"
|
|
11159
12416
|
],
|
|
11160
12417
|
"searchTags": [],
|
|
11161
|
-
"typeText": "interface QueryFilterProps extends ProFormProps { ... }",
|
|
12418
|
+
"typeText": "interface QueryFilterProps extends ProFormProps<Values> { ... }",
|
|
11162
12419
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
11163
12420
|
"examples": [
|
|
11164
12421
|
{
|
|
@@ -11995,74 +13252,250 @@
|
|
|
11995
13252
|
"useResizeObserver"
|
|
11996
13253
|
],
|
|
11997
13254
|
"searchTags": [],
|
|
11998
|
-
"typeText": "interface ResizeObserverProps { ... }",
|
|
11999
|
-
"canonicalUsage": "import { ResizeObserver, useResizeObserver } from '@1money/component-ui';\n// or\nimport { ResizeObserver, Collection, useResizeObserver } from '@1money/component-ui/ResizeObserver';",
|
|
13255
|
+
"typeText": "interface ResizeObserverProps { ... }",
|
|
13256
|
+
"canonicalUsage": "import { ResizeObserver, useResizeObserver } from '@1money/component-ui';\n// or\nimport { ResizeObserver, Collection, useResizeObserver } from '@1money/component-ui/ResizeObserver';",
|
|
13257
|
+
"examples": [
|
|
13258
|
+
{
|
|
13259
|
+
"hash": "11a75effde4de419507479c188f4208bc45d4e54ee6928476375f622ea51f29d",
|
|
13260
|
+
"source": "canonical"
|
|
13261
|
+
}
|
|
13262
|
+
]
|
|
13263
|
+
},
|
|
13264
|
+
{
|
|
13265
|
+
"name": "ResizeObserverSizeInfo",
|
|
13266
|
+
"kind": "type",
|
|
13267
|
+
"category": "misc",
|
|
13268
|
+
"summary": "",
|
|
13269
|
+
"importPath": "@1money/component-ui",
|
|
13270
|
+
"subpathImport": "@1money/component-ui/ResizeObserver",
|
|
13271
|
+
"sourceFile": "src/components/ResizeObserver/interface.ts",
|
|
13272
|
+
"props": [],
|
|
13273
|
+
"extends": [],
|
|
13274
|
+
"relatedSymbols": [
|
|
13275
|
+
"ResizeObserver",
|
|
13276
|
+
"ResizeObserverOnResize",
|
|
13277
|
+
"ResizeObserverProps",
|
|
13278
|
+
"useResizeObserver"
|
|
13279
|
+
],
|
|
13280
|
+
"searchTags": [],
|
|
13281
|
+
"typeText": "interface SizeInfo { ... }",
|
|
13282
|
+
"canonicalUsage": "import { ResizeObserver, useResizeObserver } from '@1money/component-ui';\n// or\nimport { ResizeObserver, Collection, useResizeObserver } from '@1money/component-ui/ResizeObserver';",
|
|
13283
|
+
"examples": [
|
|
13284
|
+
{
|
|
13285
|
+
"hash": "11a75effde4de419507479c188f4208bc45d4e54ee6928476375f622ea51f29d",
|
|
13286
|
+
"source": "canonical"
|
|
13287
|
+
}
|
|
13288
|
+
]
|
|
13289
|
+
},
|
|
13290
|
+
{
|
|
13291
|
+
"name": "Row",
|
|
13292
|
+
"kind": "component",
|
|
13293
|
+
"category": "layout",
|
|
13294
|
+
"summary": "",
|
|
13295
|
+
"importPath": "@1money/component-ui",
|
|
13296
|
+
"subpathImport": "@1money/component-ui/Grid",
|
|
13297
|
+
"sourceFile": "src/components/Grid/Row.tsx",
|
|
13298
|
+
"props": [],
|
|
13299
|
+
"extends": [],
|
|
13300
|
+
"relatedSymbols": [
|
|
13301
|
+
"Col",
|
|
13302
|
+
"Grid",
|
|
13303
|
+
"GridColProps",
|
|
13304
|
+
"GridRowProps"
|
|
13305
|
+
],
|
|
13306
|
+
"searchTags": [],
|
|
13307
|
+
"canonicalUsage": "import { Grid, Row, Col } from '@1money/component-ui';\n// or\nimport { Grid, Row, Col } from '@1money/component-ui/Grid';\nimport { GRID_ALIGN, GRID_JUSTIFY } from '@1money/component-ui/Grid';",
|
|
13308
|
+
"examples": [
|
|
13309
|
+
{
|
|
13310
|
+
"hash": "870e2b31b3b9f07f3c86e4a3d972ce2ac8d52ccfec472c80ef17614db549d99c",
|
|
13311
|
+
"source": "canonical"
|
|
13312
|
+
}
|
|
13313
|
+
]
|
|
13314
|
+
},
|
|
13315
|
+
{
|
|
13316
|
+
"name": "Rule",
|
|
13317
|
+
"kind": "type",
|
|
13318
|
+
"category": "forms",
|
|
13319
|
+
"summary": "",
|
|
13320
|
+
"importPath": "@1money/component-ui",
|
|
13321
|
+
"subpathImport": "@1money/component-ui/ProForm",
|
|
13322
|
+
"sourceFile": "src/components/ProForm/core/interface.ts",
|
|
13323
|
+
"props": [],
|
|
13324
|
+
"extends": [],
|
|
13325
|
+
"relatedSymbols": [
|
|
13326
|
+
"CreateProFormFieldConfig",
|
|
13327
|
+
"DialogForm",
|
|
13328
|
+
"DialogFormProps",
|
|
13329
|
+
"DrawerForm",
|
|
13330
|
+
"DrawerFormProps",
|
|
13331
|
+
"FormCoreInstance",
|
|
13332
|
+
"FormInstance",
|
|
13333
|
+
"FormLayout",
|
|
13334
|
+
"FormSize",
|
|
13335
|
+
"LabelAlign",
|
|
13336
|
+
"ProForm",
|
|
13337
|
+
"ProFormCheckbox",
|
|
13338
|
+
"ProFormCheckboxGroup",
|
|
13339
|
+
"ProFormColProps",
|
|
13340
|
+
"ProFormContextValue",
|
|
13341
|
+
"ProFormDateFormatter",
|
|
13342
|
+
"ProFormDatePicker",
|
|
13343
|
+
"ProFormDependency",
|
|
13344
|
+
"ProFormDependencyProps",
|
|
13345
|
+
"ProFormFieldConvertValueFn",
|
|
13346
|
+
"ProFormFieldName",
|
|
13347
|
+
"ProFormFieldProps",
|
|
13348
|
+
"ProFormFieldSet",
|
|
13349
|
+
"ProFormFieldSetProps",
|
|
13350
|
+
"ProFormFieldTransformFn",
|
|
13351
|
+
"ProFormFormInstance",
|
|
13352
|
+
"ProFormGroup",
|
|
13353
|
+
"ProFormGroupProps",
|
|
13354
|
+
"ProFormItem",
|
|
13355
|
+
"ProFormItemProps",
|
|
13356
|
+
"ProFormItemSharedProps",
|
|
13357
|
+
"ProFormLayoutConfig",
|
|
13358
|
+
"ProFormList",
|
|
13359
|
+
"ProFormListAction",
|
|
13360
|
+
"ProFormListProps",
|
|
13361
|
+
"ProFormMode",
|
|
13362
|
+
"ProFormPassword",
|
|
13363
|
+
"ProFormProps",
|
|
13364
|
+
"ProFormRadioGroup",
|
|
13365
|
+
"ProFormRequestOption",
|
|
13366
|
+
"ProFormSchemaColumn",
|
|
13367
|
+
"ProFormSchemaValueType",
|
|
13368
|
+
"ProFormSelect",
|
|
13369
|
+
"ProFormSlider",
|
|
13370
|
+
"ProFormSwitch",
|
|
13371
|
+
"ProFormText",
|
|
13372
|
+
"ProFormTextArea",
|
|
13373
|
+
"ProFormUpload",
|
|
13374
|
+
"ProFormValidateResult",
|
|
13375
|
+
"ProFormValueEnumObj",
|
|
13376
|
+
"ProFormValueType",
|
|
13377
|
+
"QueryFilter",
|
|
13378
|
+
"QueryFilterProps",
|
|
13379
|
+
"SchemaForm",
|
|
13380
|
+
"SchemaFormProps",
|
|
13381
|
+
"SubmitterProps",
|
|
13382
|
+
"UseFormWatch",
|
|
13383
|
+
"ValidateStatus",
|
|
13384
|
+
"ValidateTrigger",
|
|
13385
|
+
"createProFormField",
|
|
13386
|
+
"useFormWatch"
|
|
13387
|
+
],
|
|
13388
|
+
"searchTags": [],
|
|
13389
|
+
"typeText": "interface Rule { ... }",
|
|
13390
|
+
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
12000
13391
|
"examples": [
|
|
12001
13392
|
{
|
|
12002
|
-
"hash": "
|
|
13393
|
+
"hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
|
|
12003
13394
|
"source": "canonical"
|
|
12004
13395
|
}
|
|
12005
13396
|
]
|
|
12006
13397
|
},
|
|
12007
13398
|
{
|
|
12008
|
-
"name": "
|
|
12009
|
-
"kind": "
|
|
12010
|
-
"category": "
|
|
12011
|
-
"summary": "",
|
|
13399
|
+
"name": "SchemaForm",
|
|
13400
|
+
"kind": "component",
|
|
13401
|
+
"category": "forms",
|
|
13402
|
+
"summary": "Generic-aware export — keeps `<SchemaForm<MyValues> …>` fully typed.",
|
|
12012
13403
|
"importPath": "@1money/component-ui",
|
|
12013
|
-
"subpathImport": "@1money/component-ui/
|
|
12014
|
-
"sourceFile": "src/components/
|
|
12015
|
-
"props": [
|
|
12016
|
-
"extends": [],
|
|
12017
|
-
"relatedSymbols": [
|
|
12018
|
-
"ResizeObserver",
|
|
12019
|
-
"ResizeObserverOnResize",
|
|
12020
|
-
"ResizeObserverProps",
|
|
12021
|
-
"useResizeObserver"
|
|
12022
|
-
],
|
|
12023
|
-
"searchTags": [],
|
|
12024
|
-
"typeText": "interface SizeInfo { ... }",
|
|
12025
|
-
"canonicalUsage": "import { ResizeObserver, useResizeObserver } from '@1money/component-ui';\n// or\nimport { ResizeObserver, Collection, useResizeObserver } from '@1money/component-ui/ResizeObserver';",
|
|
12026
|
-
"examples": [
|
|
13404
|
+
"subpathImport": "@1money/component-ui/ProForm",
|
|
13405
|
+
"sourceFile": "src/components/ProForm/SchemaForm.tsx",
|
|
13406
|
+
"props": [
|
|
12027
13407
|
{
|
|
12028
|
-
"
|
|
12029
|
-
"
|
|
13408
|
+
"name": "columns",
|
|
13409
|
+
"type": "ProFormSchemaColumn<Values>[]",
|
|
13410
|
+
"optional": false,
|
|
13411
|
+
"default": null,
|
|
13412
|
+
"description": "",
|
|
13413
|
+
"inheritedFrom": null
|
|
12030
13414
|
}
|
|
12031
|
-
]
|
|
12032
|
-
|
|
12033
|
-
|
|
12034
|
-
|
|
12035
|
-
"kind": "component",
|
|
12036
|
-
"category": "layout",
|
|
12037
|
-
"summary": "",
|
|
12038
|
-
"importPath": "@1money/component-ui",
|
|
12039
|
-
"subpathImport": "@1money/component-ui/Grid",
|
|
12040
|
-
"sourceFile": "src/components/Grid/Row.tsx",
|
|
12041
|
-
"props": [],
|
|
12042
|
-
"extends": [],
|
|
13415
|
+
],
|
|
13416
|
+
"extends": [
|
|
13417
|
+
"Omit<ProFormProps<Values>, 'children'>"
|
|
13418
|
+
],
|
|
12043
13419
|
"relatedSymbols": [
|
|
12044
|
-
"
|
|
12045
|
-
"
|
|
12046
|
-
"
|
|
12047
|
-
"
|
|
13420
|
+
"CreateProFormFieldConfig",
|
|
13421
|
+
"DialogForm",
|
|
13422
|
+
"DialogFormProps",
|
|
13423
|
+
"DrawerForm",
|
|
13424
|
+
"DrawerFormProps",
|
|
13425
|
+
"FormCoreInstance",
|
|
13426
|
+
"FormInstance",
|
|
13427
|
+
"FormLayout",
|
|
13428
|
+
"FormSize",
|
|
13429
|
+
"LabelAlign",
|
|
13430
|
+
"ProForm",
|
|
13431
|
+
"ProFormCheckbox",
|
|
13432
|
+
"ProFormCheckboxGroup",
|
|
13433
|
+
"ProFormColProps",
|
|
13434
|
+
"ProFormContextValue",
|
|
13435
|
+
"ProFormDateFormatter",
|
|
13436
|
+
"ProFormDatePicker",
|
|
13437
|
+
"ProFormDependency",
|
|
13438
|
+
"ProFormDependencyProps",
|
|
13439
|
+
"ProFormFieldConvertValueFn",
|
|
13440
|
+
"ProFormFieldName",
|
|
13441
|
+
"ProFormFieldProps",
|
|
13442
|
+
"ProFormFieldSet",
|
|
13443
|
+
"ProFormFieldSetProps",
|
|
13444
|
+
"ProFormFieldTransformFn",
|
|
13445
|
+
"ProFormFormInstance",
|
|
13446
|
+
"ProFormGroup",
|
|
13447
|
+
"ProFormGroupProps",
|
|
13448
|
+
"ProFormItem",
|
|
13449
|
+
"ProFormItemProps",
|
|
13450
|
+
"ProFormItemSharedProps",
|
|
13451
|
+
"ProFormLayoutConfig",
|
|
13452
|
+
"ProFormList",
|
|
13453
|
+
"ProFormListAction",
|
|
13454
|
+
"ProFormListProps",
|
|
13455
|
+
"ProFormMode",
|
|
13456
|
+
"ProFormPassword",
|
|
13457
|
+
"ProFormProps",
|
|
13458
|
+
"ProFormRadioGroup",
|
|
13459
|
+
"ProFormRequestOption",
|
|
13460
|
+
"ProFormSchemaColumn",
|
|
13461
|
+
"ProFormSchemaValueType",
|
|
13462
|
+
"ProFormSelect",
|
|
13463
|
+
"ProFormSlider",
|
|
13464
|
+
"ProFormSwitch",
|
|
13465
|
+
"ProFormText",
|
|
13466
|
+
"ProFormTextArea",
|
|
13467
|
+
"ProFormUpload",
|
|
13468
|
+
"ProFormValidateResult",
|
|
13469
|
+
"ProFormValueEnumObj",
|
|
13470
|
+
"ProFormValueType",
|
|
13471
|
+
"QueryFilter",
|
|
13472
|
+
"QueryFilterProps",
|
|
13473
|
+
"Rule",
|
|
13474
|
+
"SchemaFormProps",
|
|
13475
|
+
"SubmitterProps",
|
|
13476
|
+
"UseFormWatch",
|
|
13477
|
+
"ValidateStatus",
|
|
13478
|
+
"ValidateTrigger",
|
|
13479
|
+
"createProFormField",
|
|
13480
|
+
"useFormWatch"
|
|
12048
13481
|
],
|
|
12049
13482
|
"searchTags": [],
|
|
12050
|
-
"canonicalUsage": "import {
|
|
13483
|
+
"canonicalUsage": "import { SchemaForm } from '@1money/component-ui';\n\n<SchemaForm\n columns={[{ title: 'Name', dataIndex: 'name', rules: [{ required: true }] }]}\n onFinish={(values) => console.log(values)}\n/>",
|
|
12051
13484
|
"examples": [
|
|
12052
13485
|
{
|
|
12053
|
-
"hash": "
|
|
13486
|
+
"hash": "357291f4a9a14dd6bb041daa31e6fa890c90ae32d5dc581c42274d86cf08e80a",
|
|
12054
13487
|
"source": "canonical"
|
|
12055
13488
|
}
|
|
12056
13489
|
]
|
|
12057
13490
|
},
|
|
12058
13491
|
{
|
|
12059
|
-
"name": "
|
|
13492
|
+
"name": "SchemaFormProps",
|
|
12060
13493
|
"kind": "type",
|
|
12061
13494
|
"category": "forms",
|
|
12062
13495
|
"summary": "",
|
|
12063
13496
|
"importPath": "@1money/component-ui",
|
|
12064
13497
|
"subpathImport": "@1money/component-ui/ProForm",
|
|
12065
|
-
"sourceFile": "src/components/ProForm/
|
|
13498
|
+
"sourceFile": "src/components/ProForm/interface.ts",
|
|
12066
13499
|
"props": [],
|
|
12067
13500
|
"extends": [],
|
|
12068
13501
|
"relatedSymbols": [
|
|
@@ -12081,10 +13514,12 @@
|
|
|
12081
13514
|
"ProFormCheckboxGroup",
|
|
12082
13515
|
"ProFormColProps",
|
|
12083
13516
|
"ProFormContextValue",
|
|
13517
|
+
"ProFormDateFormatter",
|
|
12084
13518
|
"ProFormDatePicker",
|
|
12085
13519
|
"ProFormDependency",
|
|
12086
13520
|
"ProFormDependencyProps",
|
|
12087
13521
|
"ProFormFieldConvertValueFn",
|
|
13522
|
+
"ProFormFieldName",
|
|
12088
13523
|
"ProFormFieldProps",
|
|
12089
13524
|
"ProFormFieldSet",
|
|
12090
13525
|
"ProFormFieldSetProps",
|
|
@@ -12094,6 +13529,8 @@
|
|
|
12094
13529
|
"ProFormGroupProps",
|
|
12095
13530
|
"ProFormItem",
|
|
12096
13531
|
"ProFormItemProps",
|
|
13532
|
+
"ProFormItemSharedProps",
|
|
13533
|
+
"ProFormLayoutConfig",
|
|
12097
13534
|
"ProFormList",
|
|
12098
13535
|
"ProFormListAction",
|
|
12099
13536
|
"ProFormListProps",
|
|
@@ -12102,23 +13539,30 @@
|
|
|
12102
13539
|
"ProFormProps",
|
|
12103
13540
|
"ProFormRadioGroup",
|
|
12104
13541
|
"ProFormRequestOption",
|
|
13542
|
+
"ProFormSchemaColumn",
|
|
13543
|
+
"ProFormSchemaValueType",
|
|
12105
13544
|
"ProFormSelect",
|
|
12106
13545
|
"ProFormSlider",
|
|
12107
13546
|
"ProFormSwitch",
|
|
12108
13547
|
"ProFormText",
|
|
12109
13548
|
"ProFormTextArea",
|
|
12110
13549
|
"ProFormUpload",
|
|
13550
|
+
"ProFormValidateResult",
|
|
12111
13551
|
"ProFormValueEnumObj",
|
|
12112
13552
|
"ProFormValueType",
|
|
12113
13553
|
"QueryFilter",
|
|
12114
13554
|
"QueryFilterProps",
|
|
13555
|
+
"Rule",
|
|
13556
|
+
"SchemaForm",
|
|
12115
13557
|
"SubmitterProps",
|
|
13558
|
+
"UseFormWatch",
|
|
12116
13559
|
"ValidateStatus",
|
|
12117
13560
|
"ValidateTrigger",
|
|
12118
|
-
"createProFormField"
|
|
13561
|
+
"createProFormField",
|
|
13562
|
+
"useFormWatch"
|
|
12119
13563
|
],
|
|
12120
13564
|
"searchTags": [],
|
|
12121
|
-
"typeText": "interface
|
|
13565
|
+
"typeText": "interface SchemaFormProps extends Omit<ProFormProps<Values>, 'children'> { ... }",
|
|
12122
13566
|
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
12123
13567
|
"examples": [
|
|
12124
13568
|
{
|
|
@@ -14143,10 +15587,12 @@
|
|
|
14143
15587
|
"ProFormCheckboxGroup",
|
|
14144
15588
|
"ProFormColProps",
|
|
14145
15589
|
"ProFormContextValue",
|
|
15590
|
+
"ProFormDateFormatter",
|
|
14146
15591
|
"ProFormDatePicker",
|
|
14147
15592
|
"ProFormDependency",
|
|
14148
15593
|
"ProFormDependencyProps",
|
|
14149
15594
|
"ProFormFieldConvertValueFn",
|
|
15595
|
+
"ProFormFieldName",
|
|
14150
15596
|
"ProFormFieldProps",
|
|
14151
15597
|
"ProFormFieldSet",
|
|
14152
15598
|
"ProFormFieldSetProps",
|
|
@@ -14156,6 +15602,8 @@
|
|
|
14156
15602
|
"ProFormGroupProps",
|
|
14157
15603
|
"ProFormItem",
|
|
14158
15604
|
"ProFormItemProps",
|
|
15605
|
+
"ProFormItemSharedProps",
|
|
15606
|
+
"ProFormLayoutConfig",
|
|
14159
15607
|
"ProFormList",
|
|
14160
15608
|
"ProFormListAction",
|
|
14161
15609
|
"ProFormListProps",
|
|
@@ -14164,20 +15612,27 @@
|
|
|
14164
15612
|
"ProFormProps",
|
|
14165
15613
|
"ProFormRadioGroup",
|
|
14166
15614
|
"ProFormRequestOption",
|
|
15615
|
+
"ProFormSchemaColumn",
|
|
15616
|
+
"ProFormSchemaValueType",
|
|
14167
15617
|
"ProFormSelect",
|
|
14168
15618
|
"ProFormSlider",
|
|
14169
15619
|
"ProFormSwitch",
|
|
14170
15620
|
"ProFormText",
|
|
14171
15621
|
"ProFormTextArea",
|
|
14172
15622
|
"ProFormUpload",
|
|
15623
|
+
"ProFormValidateResult",
|
|
14173
15624
|
"ProFormValueEnumObj",
|
|
14174
15625
|
"ProFormValueType",
|
|
14175
15626
|
"QueryFilter",
|
|
14176
15627
|
"QueryFilterProps",
|
|
14177
15628
|
"Rule",
|
|
15629
|
+
"SchemaForm",
|
|
15630
|
+
"SchemaFormProps",
|
|
15631
|
+
"UseFormWatch",
|
|
14178
15632
|
"ValidateStatus",
|
|
14179
15633
|
"ValidateTrigger",
|
|
14180
|
-
"createProFormField"
|
|
15634
|
+
"createProFormField",
|
|
15635
|
+
"useFormWatch"
|
|
14181
15636
|
],
|
|
14182
15637
|
"searchTags": [],
|
|
14183
15638
|
"typeText": "interface SubmitterProps { ... }",
|
|
@@ -16748,6 +18203,89 @@
|
|
|
16748
18203
|
}
|
|
16749
18204
|
]
|
|
16750
18205
|
},
|
|
18206
|
+
{
|
|
18207
|
+
"name": "UseFormWatch",
|
|
18208
|
+
"kind": "type",
|
|
18209
|
+
"category": "forms",
|
|
18210
|
+
"summary": "",
|
|
18211
|
+
"importPath": "@1money/component-ui",
|
|
18212
|
+
"subpathImport": "@1money/component-ui/ProForm",
|
|
18213
|
+
"sourceFile": "src/components/ProForm/context.ts",
|
|
18214
|
+
"props": [],
|
|
18215
|
+
"extends": [],
|
|
18216
|
+
"relatedSymbols": [
|
|
18217
|
+
"CreateProFormFieldConfig",
|
|
18218
|
+
"DialogForm",
|
|
18219
|
+
"DialogFormProps",
|
|
18220
|
+
"DrawerForm",
|
|
18221
|
+
"DrawerFormProps",
|
|
18222
|
+
"FormCoreInstance",
|
|
18223
|
+
"FormInstance",
|
|
18224
|
+
"FormLayout",
|
|
18225
|
+
"FormSize",
|
|
18226
|
+
"LabelAlign",
|
|
18227
|
+
"ProForm",
|
|
18228
|
+
"ProFormCheckbox",
|
|
18229
|
+
"ProFormCheckboxGroup",
|
|
18230
|
+
"ProFormColProps",
|
|
18231
|
+
"ProFormContextValue",
|
|
18232
|
+
"ProFormDateFormatter",
|
|
18233
|
+
"ProFormDatePicker",
|
|
18234
|
+
"ProFormDependency",
|
|
18235
|
+
"ProFormDependencyProps",
|
|
18236
|
+
"ProFormFieldConvertValueFn",
|
|
18237
|
+
"ProFormFieldName",
|
|
18238
|
+
"ProFormFieldProps",
|
|
18239
|
+
"ProFormFieldSet",
|
|
18240
|
+
"ProFormFieldSetProps",
|
|
18241
|
+
"ProFormFieldTransformFn",
|
|
18242
|
+
"ProFormFormInstance",
|
|
18243
|
+
"ProFormGroup",
|
|
18244
|
+
"ProFormGroupProps",
|
|
18245
|
+
"ProFormItem",
|
|
18246
|
+
"ProFormItemProps",
|
|
18247
|
+
"ProFormItemSharedProps",
|
|
18248
|
+
"ProFormLayoutConfig",
|
|
18249
|
+
"ProFormList",
|
|
18250
|
+
"ProFormListAction",
|
|
18251
|
+
"ProFormListProps",
|
|
18252
|
+
"ProFormMode",
|
|
18253
|
+
"ProFormPassword",
|
|
18254
|
+
"ProFormProps",
|
|
18255
|
+
"ProFormRadioGroup",
|
|
18256
|
+
"ProFormRequestOption",
|
|
18257
|
+
"ProFormSchemaColumn",
|
|
18258
|
+
"ProFormSchemaValueType",
|
|
18259
|
+
"ProFormSelect",
|
|
18260
|
+
"ProFormSlider",
|
|
18261
|
+
"ProFormSwitch",
|
|
18262
|
+
"ProFormText",
|
|
18263
|
+
"ProFormTextArea",
|
|
18264
|
+
"ProFormUpload",
|
|
18265
|
+
"ProFormValidateResult",
|
|
18266
|
+
"ProFormValueEnumObj",
|
|
18267
|
+
"ProFormValueType",
|
|
18268
|
+
"QueryFilter",
|
|
18269
|
+
"QueryFilterProps",
|
|
18270
|
+
"Rule",
|
|
18271
|
+
"SchemaForm",
|
|
18272
|
+
"SchemaFormProps",
|
|
18273
|
+
"SubmitterProps",
|
|
18274
|
+
"ValidateStatus",
|
|
18275
|
+
"ValidateTrigger",
|
|
18276
|
+
"createProFormField",
|
|
18277
|
+
"useFormWatch"
|
|
18278
|
+
],
|
|
18279
|
+
"searchTags": [],
|
|
18280
|
+
"typeText": "interface UseFormWatch { ... }",
|
|
18281
|
+
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
18282
|
+
"examples": [
|
|
18283
|
+
{
|
|
18284
|
+
"hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
|
|
18285
|
+
"source": "canonical"
|
|
18286
|
+
}
|
|
18287
|
+
]
|
|
18288
|
+
},
|
|
16751
18289
|
{
|
|
16752
18290
|
"name": "UsePaginationOptions",
|
|
16753
18291
|
"kind": "type",
|
|
@@ -16834,10 +18372,12 @@
|
|
|
16834
18372
|
"ProFormCheckboxGroup",
|
|
16835
18373
|
"ProFormColProps",
|
|
16836
18374
|
"ProFormContextValue",
|
|
18375
|
+
"ProFormDateFormatter",
|
|
16837
18376
|
"ProFormDatePicker",
|
|
16838
18377
|
"ProFormDependency",
|
|
16839
18378
|
"ProFormDependencyProps",
|
|
16840
18379
|
"ProFormFieldConvertValueFn",
|
|
18380
|
+
"ProFormFieldName",
|
|
16841
18381
|
"ProFormFieldProps",
|
|
16842
18382
|
"ProFormFieldSet",
|
|
16843
18383
|
"ProFormFieldSetProps",
|
|
@@ -16847,6 +18387,8 @@
|
|
|
16847
18387
|
"ProFormGroupProps",
|
|
16848
18388
|
"ProFormItem",
|
|
16849
18389
|
"ProFormItemProps",
|
|
18390
|
+
"ProFormItemSharedProps",
|
|
18391
|
+
"ProFormLayoutConfig",
|
|
16850
18392
|
"ProFormList",
|
|
16851
18393
|
"ProFormListAction",
|
|
16852
18394
|
"ProFormListProps",
|
|
@@ -16855,20 +18397,27 @@
|
|
|
16855
18397
|
"ProFormProps",
|
|
16856
18398
|
"ProFormRadioGroup",
|
|
16857
18399
|
"ProFormRequestOption",
|
|
18400
|
+
"ProFormSchemaColumn",
|
|
18401
|
+
"ProFormSchemaValueType",
|
|
16858
18402
|
"ProFormSelect",
|
|
16859
18403
|
"ProFormSlider",
|
|
16860
18404
|
"ProFormSwitch",
|
|
16861
18405
|
"ProFormText",
|
|
16862
18406
|
"ProFormTextArea",
|
|
16863
18407
|
"ProFormUpload",
|
|
18408
|
+
"ProFormValidateResult",
|
|
16864
18409
|
"ProFormValueEnumObj",
|
|
16865
18410
|
"ProFormValueType",
|
|
16866
18411
|
"QueryFilter",
|
|
16867
18412
|
"QueryFilterProps",
|
|
16868
18413
|
"Rule",
|
|
18414
|
+
"SchemaForm",
|
|
18415
|
+
"SchemaFormProps",
|
|
16869
18416
|
"SubmitterProps",
|
|
18417
|
+
"UseFormWatch",
|
|
16870
18418
|
"ValidateTrigger",
|
|
16871
|
-
"createProFormField"
|
|
18419
|
+
"createProFormField",
|
|
18420
|
+
"useFormWatch"
|
|
16872
18421
|
],
|
|
16873
18422
|
"searchTags": [],
|
|
16874
18423
|
"typeText": "(typeof VALIDATE_STATUSES)[number]",
|
|
@@ -16906,10 +18455,12 @@
|
|
|
16906
18455
|
"ProFormCheckboxGroup",
|
|
16907
18456
|
"ProFormColProps",
|
|
16908
18457
|
"ProFormContextValue",
|
|
18458
|
+
"ProFormDateFormatter",
|
|
16909
18459
|
"ProFormDatePicker",
|
|
16910
18460
|
"ProFormDependency",
|
|
16911
18461
|
"ProFormDependencyProps",
|
|
16912
18462
|
"ProFormFieldConvertValueFn",
|
|
18463
|
+
"ProFormFieldName",
|
|
16913
18464
|
"ProFormFieldProps",
|
|
16914
18465
|
"ProFormFieldSet",
|
|
16915
18466
|
"ProFormFieldSetProps",
|
|
@@ -16919,6 +18470,8 @@
|
|
|
16919
18470
|
"ProFormGroupProps",
|
|
16920
18471
|
"ProFormItem",
|
|
16921
18472
|
"ProFormItemProps",
|
|
18473
|
+
"ProFormItemSharedProps",
|
|
18474
|
+
"ProFormLayoutConfig",
|
|
16922
18475
|
"ProFormList",
|
|
16923
18476
|
"ProFormListAction",
|
|
16924
18477
|
"ProFormListProps",
|
|
@@ -16927,20 +18480,27 @@
|
|
|
16927
18480
|
"ProFormProps",
|
|
16928
18481
|
"ProFormRadioGroup",
|
|
16929
18482
|
"ProFormRequestOption",
|
|
18483
|
+
"ProFormSchemaColumn",
|
|
18484
|
+
"ProFormSchemaValueType",
|
|
16930
18485
|
"ProFormSelect",
|
|
16931
18486
|
"ProFormSlider",
|
|
16932
18487
|
"ProFormSwitch",
|
|
16933
18488
|
"ProFormText",
|
|
16934
18489
|
"ProFormTextArea",
|
|
16935
18490
|
"ProFormUpload",
|
|
18491
|
+
"ProFormValidateResult",
|
|
16936
18492
|
"ProFormValueEnumObj",
|
|
16937
18493
|
"ProFormValueType",
|
|
16938
18494
|
"QueryFilter",
|
|
16939
18495
|
"QueryFilterProps",
|
|
16940
18496
|
"Rule",
|
|
18497
|
+
"SchemaForm",
|
|
18498
|
+
"SchemaFormProps",
|
|
16941
18499
|
"SubmitterProps",
|
|
18500
|
+
"UseFormWatch",
|
|
16942
18501
|
"ValidateStatus",
|
|
16943
|
-
"createProFormField"
|
|
18502
|
+
"createProFormField",
|
|
18503
|
+
"useFormWatch"
|
|
16944
18504
|
],
|
|
16945
18505
|
"searchTags": [],
|
|
16946
18506
|
"typeText": "(typeof VALIDATE_TRIGGERS)[number]",
|
|
@@ -17199,10 +18759,12 @@
|
|
|
17199
18759
|
"ProFormCheckboxGroup",
|
|
17200
18760
|
"ProFormColProps",
|
|
17201
18761
|
"ProFormContextValue",
|
|
18762
|
+
"ProFormDateFormatter",
|
|
17202
18763
|
"ProFormDatePicker",
|
|
17203
18764
|
"ProFormDependency",
|
|
17204
18765
|
"ProFormDependencyProps",
|
|
17205
18766
|
"ProFormFieldConvertValueFn",
|
|
18767
|
+
"ProFormFieldName",
|
|
17206
18768
|
"ProFormFieldProps",
|
|
17207
18769
|
"ProFormFieldSet",
|
|
17208
18770
|
"ProFormFieldSetProps",
|
|
@@ -17212,6 +18774,8 @@
|
|
|
17212
18774
|
"ProFormGroupProps",
|
|
17213
18775
|
"ProFormItem",
|
|
17214
18776
|
"ProFormItemProps",
|
|
18777
|
+
"ProFormItemSharedProps",
|
|
18778
|
+
"ProFormLayoutConfig",
|
|
17215
18779
|
"ProFormList",
|
|
17216
18780
|
"ProFormListAction",
|
|
17217
18781
|
"ProFormListProps",
|
|
@@ -17220,20 +18784,27 @@
|
|
|
17220
18784
|
"ProFormProps",
|
|
17221
18785
|
"ProFormRadioGroup",
|
|
17222
18786
|
"ProFormRequestOption",
|
|
18787
|
+
"ProFormSchemaColumn",
|
|
18788
|
+
"ProFormSchemaValueType",
|
|
17223
18789
|
"ProFormSelect",
|
|
17224
18790
|
"ProFormSlider",
|
|
17225
18791
|
"ProFormSwitch",
|
|
17226
18792
|
"ProFormText",
|
|
17227
18793
|
"ProFormTextArea",
|
|
17228
18794
|
"ProFormUpload",
|
|
18795
|
+
"ProFormValidateResult",
|
|
17229
18796
|
"ProFormValueEnumObj",
|
|
17230
18797
|
"ProFormValueType",
|
|
17231
18798
|
"QueryFilter",
|
|
17232
18799
|
"QueryFilterProps",
|
|
17233
18800
|
"Rule",
|
|
18801
|
+
"SchemaForm",
|
|
18802
|
+
"SchemaFormProps",
|
|
17234
18803
|
"SubmitterProps",
|
|
18804
|
+
"UseFormWatch",
|
|
17235
18805
|
"ValidateStatus",
|
|
17236
|
-
"ValidateTrigger"
|
|
18806
|
+
"ValidateTrigger",
|
|
18807
|
+
"useFormWatch"
|
|
17237
18808
|
],
|
|
17238
18809
|
"searchTags": [],
|
|
17239
18810
|
"signature": "(config: CreateProFormFieldConfig<FieldProps>): FC<ProFormFieldProps<FieldProps>>",
|
|
@@ -17274,6 +18845,89 @@
|
|
|
17274
18845
|
}
|
|
17275
18846
|
]
|
|
17276
18847
|
},
|
|
18848
|
+
{
|
|
18849
|
+
"name": "useFormWatch",
|
|
18850
|
+
"kind": "hook",
|
|
18851
|
+
"category": "forms",
|
|
18852
|
+
"summary": "Watch a single field or the whole values object.",
|
|
18853
|
+
"importPath": "@1money/component-ui",
|
|
18854
|
+
"subpathImport": "@1money/component-ui/ProForm",
|
|
18855
|
+
"sourceFile": "src/components/ProForm/context.ts",
|
|
18856
|
+
"props": [],
|
|
18857
|
+
"extends": [],
|
|
18858
|
+
"relatedSymbols": [
|
|
18859
|
+
"CreateProFormFieldConfig",
|
|
18860
|
+
"DialogForm",
|
|
18861
|
+
"DialogFormProps",
|
|
18862
|
+
"DrawerForm",
|
|
18863
|
+
"DrawerFormProps",
|
|
18864
|
+
"FormCoreInstance",
|
|
18865
|
+
"FormInstance",
|
|
18866
|
+
"FormLayout",
|
|
18867
|
+
"FormSize",
|
|
18868
|
+
"LabelAlign",
|
|
18869
|
+
"ProForm",
|
|
18870
|
+
"ProFormCheckbox",
|
|
18871
|
+
"ProFormCheckboxGroup",
|
|
18872
|
+
"ProFormColProps",
|
|
18873
|
+
"ProFormContextValue",
|
|
18874
|
+
"ProFormDateFormatter",
|
|
18875
|
+
"ProFormDatePicker",
|
|
18876
|
+
"ProFormDependency",
|
|
18877
|
+
"ProFormDependencyProps",
|
|
18878
|
+
"ProFormFieldConvertValueFn",
|
|
18879
|
+
"ProFormFieldName",
|
|
18880
|
+
"ProFormFieldProps",
|
|
18881
|
+
"ProFormFieldSet",
|
|
18882
|
+
"ProFormFieldSetProps",
|
|
18883
|
+
"ProFormFieldTransformFn",
|
|
18884
|
+
"ProFormFormInstance",
|
|
18885
|
+
"ProFormGroup",
|
|
18886
|
+
"ProFormGroupProps",
|
|
18887
|
+
"ProFormItem",
|
|
18888
|
+
"ProFormItemProps",
|
|
18889
|
+
"ProFormItemSharedProps",
|
|
18890
|
+
"ProFormLayoutConfig",
|
|
18891
|
+
"ProFormList",
|
|
18892
|
+
"ProFormListAction",
|
|
18893
|
+
"ProFormListProps",
|
|
18894
|
+
"ProFormMode",
|
|
18895
|
+
"ProFormPassword",
|
|
18896
|
+
"ProFormProps",
|
|
18897
|
+
"ProFormRadioGroup",
|
|
18898
|
+
"ProFormRequestOption",
|
|
18899
|
+
"ProFormSchemaColumn",
|
|
18900
|
+
"ProFormSchemaValueType",
|
|
18901
|
+
"ProFormSelect",
|
|
18902
|
+
"ProFormSlider",
|
|
18903
|
+
"ProFormSwitch",
|
|
18904
|
+
"ProFormText",
|
|
18905
|
+
"ProFormTextArea",
|
|
18906
|
+
"ProFormUpload",
|
|
18907
|
+
"ProFormValidateResult",
|
|
18908
|
+
"ProFormValueEnumObj",
|
|
18909
|
+
"ProFormValueType",
|
|
18910
|
+
"QueryFilter",
|
|
18911
|
+
"QueryFilterProps",
|
|
18912
|
+
"Rule",
|
|
18913
|
+
"SchemaForm",
|
|
18914
|
+
"SchemaFormProps",
|
|
18915
|
+
"SubmitterProps",
|
|
18916
|
+
"UseFormWatch",
|
|
18917
|
+
"ValidateStatus",
|
|
18918
|
+
"ValidateTrigger",
|
|
18919
|
+
"createProFormField"
|
|
18920
|
+
],
|
|
18921
|
+
"searchTags": [],
|
|
18922
|
+
"signature": "UseFormWatch",
|
|
18923
|
+
"canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
|
|
18924
|
+
"examples": [
|
|
18925
|
+
{
|
|
18926
|
+
"hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
|
|
18927
|
+
"source": "canonical"
|
|
18928
|
+
}
|
|
18929
|
+
]
|
|
18930
|
+
},
|
|
17277
18931
|
{
|
|
17278
18932
|
"name": "usePagination",
|
|
17279
18933
|
"kind": "hook",
|