@1money/component-ui 0.0.70 → 0.0.73
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/business/Dialog/VerificationDialog/hooks/useOtpVerification.js +3 -2
- package/es/business/Dialog/VerificationDialog/hooks/useResendCountdown.js +2 -2
- package/es/business/Select/Network/NetworkSelect.js +2 -2
- package/es/components/Accordion/Accordion.js +3 -2
- package/es/components/Calendar/Calendar.js +3 -2
- package/es/components/Carousel/Carousel.js +3 -2
- package/es/components/Checkbox/BaseCheckbox.js +3 -2
- package/es/components/Checkbox/Checkbox.js +2 -2
- package/es/components/Checkbox/CheckboxGroup.js +3 -2
- package/es/components/CoachMark/CoachMark.js +3 -2
- package/es/components/Copy/Copy.js +2 -2
- package/es/components/Dialog/Dialog.js +2 -2
- package/es/components/Drawer/Drawer.js +2 -2
- package/es/components/Input/Amount/Amount.js +2 -2
- package/es/components/Input/Input/Input.js +3 -2
- package/es/components/Input/Mask/Mask.js +3 -2
- package/es/components/Input/OTP/OTP.js +3 -2
- package/es/components/Input/Password/Password.js +3 -2
- package/es/components/Input/Search/Search.js +3 -2
- package/es/components/Input/TextArea/TextArea.js +3 -2
- package/es/components/Input/Trade/Trade.js +2 -2
- package/es/components/Input/useAmountInput.js +4 -2
- package/es/components/Input/useSyncRef.js +2 -2
- package/es/components/Navigation/Nav.js +2 -2
- package/es/components/Navigation/Navigation.js +5 -2
- package/es/components/Pagination/Pagination.js +2 -2
- package/es/components/Pagination/usePagination.js +3 -2
- package/es/components/Popconfirm/Popconfirm.js +2 -2
- package/es/components/Portal/Portal.js +2 -2
- package/es/components/ProForm/ProForm.d.ts +10 -2
- package/es/components/ProForm/ProForm.js +60 -24
- package/es/components/ProForm/ProFormDependency.js +4 -1
- package/es/components/ProForm/ProFormGroup.js +2 -2
- package/es/components/ProForm/ProFormItem.js +73 -36
- package/es/components/ProForm/ProFormList.js +3 -2
- package/es/components/ProForm/SchemaForm.d.ts +7 -0
- package/es/components/ProForm/SchemaForm.js +103 -0
- package/es/components/ProForm/Submitter.js +13 -3
- package/es/components/ProForm/context.d.ts +22 -3
- package/es/components/ProForm/context.js +49 -10
- package/es/components/ProForm/core/constants.d.ts +8 -1
- package/es/components/ProForm/core/constants.js +9 -6
- package/es/components/ProForm/core/hooks/useForm.js +174 -320
- package/es/components/ProForm/core/hooks/useFormCore.js +84 -178
- package/es/components/ProForm/core/interface.d.ts +33 -12
- package/es/components/ProForm/core/pathUtils.d.ts +6 -0
- package/es/components/ProForm/core/pathUtils.js +59 -0
- package/es/components/ProForm/core/runRules.d.ts +23 -0
- package/es/components/ProForm/core/runRules.js +233 -0
- package/es/components/ProForm/core/useFormItem.d.ts +10 -1
- package/es/components/ProForm/core/useFormItem.js +105 -61
- package/es/components/ProForm/fields/ProFormDatePicker.js +4 -1
- package/es/components/ProForm/fields/createProFormField.js +64 -59
- package/es/components/ProForm/hooks/useFieldRequest.js +7 -5
- package/es/components/ProForm/index.d.ts +11 -4
- package/es/components/ProForm/index.js +7 -2
- package/es/components/ProForm/interface.d.ts +89 -14
- package/es/components/ProForm/layouts/DialogForm.d.ts +5 -1
- package/es/components/ProForm/layouts/DialogForm.js +2 -1
- package/es/components/ProForm/layouts/DrawerForm.d.ts +5 -1
- package/es/components/ProForm/layouts/DrawerForm.js +2 -1
- package/es/components/ProForm/layouts/QueryFilter.d.ts +5 -2
- package/es/components/ProForm/layouts/QueryFilter.js +79 -13
- package/es/components/ProForm/layouts/useOverlayForm.js +23 -21
- package/es/components/ProForm/style/ProForm.css +6 -0
- package/es/components/ProForm/utils.d.ts +14 -3
- package/es/components/ProForm/utils.js +73 -70
- package/es/components/ProTable/ProTable.js +3 -2
- package/es/components/ProTable/core/useAwaitableReload.js +3 -2
- package/es/components/ProTable/useFetchData.js +4 -2
- package/es/components/Radio/Radio.js +3 -2
- package/es/components/Radio/RadioGroup.js +3 -2
- package/es/components/ResizeObserver/useResizeObserver.js +2 -2
- package/es/components/Segment/Segment.js +4 -2
- package/es/components/Select/Select.js +3 -2
- package/es/components/Select/SelectCustom.js +2 -2
- package/es/components/Select/useSelectShell.js +3 -2
- package/es/components/Slider/Slider.js +3 -2
- package/es/components/Switch/Switch.js +3 -2
- package/es/components/Table/Table.js +14 -28
- package/es/components/Table/VirtualTable.js +18 -28
- package/es/components/Table/core/columnUtil.d.ts +9 -0
- package/es/components/Table/core/columnUtil.js +34 -0
- package/es/components/Table/core/useTableColumns.d.ts +4 -13
- package/es/components/Table/core/useTableColumns.js +55 -24
- package/es/components/Table/core/useTableDataPipeline.d.ts +11 -16
- package/es/components/Table/core/useTableDataPipeline.js +66 -73
- package/es/components/Table/core/useTableExpand.js +3 -2
- package/es/components/Table/core/useTableSelection.js +7 -4
- package/es/components/Table/core/useTableSetup.js +4 -2
- package/es/components/Table/features/ExpandTrigger.d.ts +9 -3
- package/es/components/Table/features/ExpandTrigger.js +14 -8
- package/es/components/Table/features/FilterTrigger.js +21 -17
- package/es/components/Table/features/SelectionColumn.d.ts +11 -6
- package/es/components/Table/features/SelectionColumn.js +12 -5
- package/es/components/Table/features/SortTrigger.d.ts +4 -2
- package/es/components/Table/features/SortTrigger.js +8 -3
- package/es/components/Table/internal/kernel/Body/MeasureCell.js +2 -2
- package/es/components/Table/internal/kernel/Cell/index.js +2 -2
- package/es/components/Table/internal/kernel/Table.js +3 -3
- package/es/components/Table/internal/kernel/VirtualTable/index.js +2 -2
- package/es/components/Table/internal/kernel/hooks/useRowInfo.js +2 -2
- package/es/components/Table/internal/kernel/selector-context/context.js +3 -3
- package/es/components/Table/renderers/HeaderCell.js +3 -2
- package/es/components/Table/renderers/TableShell.d.ts +13 -0
- package/es/components/Table/renderers/TableShell.js +25 -0
- package/es/components/Table/style/Table.css +3 -0
- package/es/components/Tabs/Tabs.js +4 -2
- package/es/components/Tooltip/Tooltip.js +3 -2
- package/es/components/Tooltip/style/Tooltip.css +1 -0
- package/es/components/Tour/Tour.js +3 -2
- package/es/components/Trigger/Trigger.js +3 -2
- package/es/components/Typography/Typography.js +2 -2
- package/es/components/Typography/useTypographyEnhancements.js +3 -2
- package/es/components/Upload/Upload.js +2 -2
- package/es/components/Upload/UploadFileBar.js +2 -2
- package/es/components/VirtualList/VirtualList.js +3 -2
- package/es/components/VirtualList/hooks/useMobileTouchMove.js +2 -2
- package/es/components/VirtualList/hooks/useScrollTo.js +2 -2
- package/es/index.css +1 -1
- package/es/index.d.ts +2 -2
- package/es/index.js +2 -2
- package/lib/business/Dialog/VerificationDialog/hooks/useOtpVerification.js +9 -8
- package/lib/business/Dialog/VerificationDialog/hooks/useResendCountdown.js +3 -3
- package/lib/business/Select/Network/NetworkSelect.js +3 -3
- package/lib/components/Accordion/Accordion.js +5 -4
- package/lib/components/Calendar/Calendar.js +6 -5
- package/lib/components/Carousel/Carousel.js +5 -4
- package/lib/components/Checkbox/BaseCheckbox.js +5 -4
- package/lib/components/Checkbox/Checkbox.js +3 -3
- package/lib/components/Checkbox/CheckboxGroup.js +7 -6
- package/lib/components/CoachMark/CoachMark.js +7 -6
- package/lib/components/Copy/Copy.js +3 -3
- package/lib/components/Dialog/Dialog.js +6 -6
- package/lib/components/Drawer/Drawer.js +10 -10
- package/lib/components/Input/Amount/Amount.js +6 -5
- package/lib/components/Input/Input/Input.js +7 -6
- package/lib/components/Input/Mask/Mask.js +9 -8
- package/lib/components/Input/OTP/OTP.js +9 -8
- package/lib/components/Input/Password/Password.js +6 -5
- package/lib/components/Input/Search/Search.js +8 -7
- package/lib/components/Input/TextArea/TextArea.js +5 -4
- package/lib/components/Input/Trade/Trade.js +5 -4
- package/lib/components/Input/useAmountInput.js +13 -11
- package/lib/components/Input/useSyncRef.js +4 -3
- package/lib/components/Navigation/Nav.js +3 -3
- package/lib/components/Navigation/Navigation.js +10 -7
- package/lib/components/Pagination/Pagination.js +4 -3
- package/lib/components/Pagination/usePagination.js +7 -6
- package/lib/components/Popconfirm/Popconfirm.js +3 -3
- package/lib/components/Portal/Portal.js +4 -4
- package/lib/components/ProForm/ProForm.d.ts +10 -2
- package/lib/components/ProForm/ProForm.js +66 -30
- package/lib/components/ProForm/ProFormDependency.js +4 -1
- package/lib/components/ProForm/ProFormGroup.js +3 -3
- package/lib/components/ProForm/ProFormItem.js +72 -34
- package/lib/components/ProForm/ProFormList.js +10 -9
- package/lib/components/ProForm/SchemaForm.d.ts +7 -0
- package/lib/components/ProForm/SchemaForm.js +110 -0
- package/lib/components/ProForm/Submitter.js +15 -5
- package/lib/components/ProForm/context.d.ts +22 -3
- package/lib/components/ProForm/context.js +49 -10
- package/lib/components/ProForm/core/constants.d.ts +8 -1
- package/lib/components/ProForm/core/constants.js +10 -7
- package/lib/components/ProForm/core/hooks/useForm.js +181 -327
- package/lib/components/ProForm/core/hooks/useFormCore.js +96 -190
- package/lib/components/ProForm/core/interface.d.ts +33 -12
- package/lib/components/ProForm/core/pathUtils.d.ts +6 -0
- package/lib/components/ProForm/core/pathUtils.js +68 -0
- package/lib/components/ProForm/core/runRules.d.ts +23 -0
- package/lib/components/ProForm/core/runRules.js +242 -0
- package/lib/components/ProForm/core/useFormItem.d.ts +10 -1
- package/lib/components/ProForm/core/useFormItem.js +106 -62
- package/lib/components/ProForm/fields/ProFormDatePicker.js +4 -1
- package/lib/components/ProForm/fields/createProFormField.js +63 -58
- package/lib/components/ProForm/hooks/useFieldRequest.js +9 -7
- package/lib/components/ProForm/index.d.ts +11 -4
- package/lib/components/ProForm/index.js +16 -1
- package/lib/components/ProForm/interface.d.ts +89 -14
- package/lib/components/ProForm/layouts/DialogForm.d.ts +5 -1
- package/lib/components/ProForm/layouts/DialogForm.js +2 -1
- package/lib/components/ProForm/layouts/DrawerForm.d.ts +5 -1
- package/lib/components/ProForm/layouts/DrawerForm.js +2 -1
- package/lib/components/ProForm/layouts/QueryFilter.d.ts +5 -2
- package/lib/components/ProForm/layouts/QueryFilter.js +84 -18
- package/lib/components/ProForm/layouts/useOverlayForm.js +27 -27
- package/lib/components/ProForm/style/ProForm.css +6 -0
- package/lib/components/ProForm/utils.d.ts +14 -3
- package/lib/components/ProForm/utils.js +91 -74
- package/lib/components/ProTable/ProTable.js +10 -9
- package/lib/components/ProTable/core/useAwaitableReload.js +6 -5
- package/lib/components/ProTable/useFetchData.js +15 -13
- package/lib/components/Radio/Radio.js +6 -5
- package/lib/components/Radio/RadioGroup.js +5 -4
- package/lib/components/ResizeObserver/useResizeObserver.js +4 -3
- package/lib/components/Segment/Segment.js +7 -5
- package/lib/components/Select/Select.js +23 -22
- package/lib/components/Select/SelectCustom.js +8 -8
- package/lib/components/Select/useSelectShell.js +5 -4
- package/lib/components/Slider/Slider.js +6 -5
- package/lib/components/Switch/Switch.js +5 -4
- package/lib/components/Table/Table.js +13 -27
- package/lib/components/Table/VirtualTable.js +17 -27
- package/lib/components/Table/core/columnUtil.d.ts +9 -0
- package/lib/components/Table/core/columnUtil.js +42 -0
- package/lib/components/Table/core/useTableColumns.d.ts +4 -13
- package/lib/components/Table/core/useTableColumns.js +57 -26
- package/lib/components/Table/core/useTableDataPipeline.d.ts +11 -16
- package/lib/components/Table/core/useTableDataPipeline.js +73 -80
- package/lib/components/Table/core/useTableExpand.js +6 -5
- package/lib/components/Table/core/useTableSelection.js +13 -10
- package/lib/components/Table/core/useTableSetup.js +8 -5
- package/lib/components/Table/features/ExpandTrigger.d.ts +9 -3
- package/lib/components/Table/features/ExpandTrigger.js +14 -8
- package/lib/components/Table/features/FilterTrigger.js +21 -17
- package/lib/components/Table/features/SelectionColumn.d.ts +11 -6
- package/lib/components/Table/features/SelectionColumn.js +12 -5
- package/lib/components/Table/features/SortTrigger.d.ts +4 -2
- package/lib/components/Table/features/SortTrigger.js +8 -3
- package/lib/components/Table/internal/kernel/Body/MeasureCell.js +3 -3
- package/lib/components/Table/internal/kernel/Cell/index.js +4 -4
- package/lib/components/Table/internal/kernel/Table.js +7 -6
- package/lib/components/Table/internal/kernel/VirtualTable/index.js +4 -4
- package/lib/components/Table/internal/kernel/hooks/useRowInfo.js +3 -3
- package/lib/components/Table/internal/kernel/selector-context/context.js +6 -5
- package/lib/components/Table/renderers/HeaderCell.js +3 -2
- package/lib/components/Table/renderers/TableShell.d.ts +13 -0
- package/lib/components/Table/renderers/TableShell.js +31 -0
- package/lib/components/Table/style/Table.css +3 -0
- package/lib/components/Tabs/Tabs.js +7 -5
- package/lib/components/Tooltip/Tooltip.js +5 -4
- package/lib/components/Tooltip/style/Tooltip.css +1 -0
- package/lib/components/Tour/Tour.js +7 -6
- package/lib/components/Trigger/Trigger.js +5 -4
- package/lib/components/Typography/Typography.js +5 -4
- package/lib/components/Typography/useTypographyEnhancements.js +8 -7
- package/lib/components/Upload/Upload.js +5 -4
- package/lib/components/Upload/UploadFileBar.js +4 -3
- package/lib/components/VirtualList/VirtualList.js +8 -7
- package/lib/components/VirtualList/hooks/useMobileTouchMove.js +4 -3
- package/lib/components/VirtualList/hooks/useScrollTo.js +3 -3
- package/lib/index.css +1 -1
- package/lib/index.d.ts +2 -2
- package/lib/index.js +13 -1
- package/package.json +2 -2
- package/scripts/mcp-server/examples.generated.json +54 -0
- package/scripts/mcp-server/index.generated.json +1212 -80
|
@@ -2010,6 +2010,7 @@
|
|
|
2010
2010
|
"ProFormCheckboxGroup",
|
|
2011
2011
|
"ProFormColProps",
|
|
2012
2012
|
"ProFormContextValue",
|
|
2013
|
+
"ProFormDateFormatter",
|
|
2013
2014
|
"ProFormDatePicker",
|
|
2014
2015
|
"ProFormDependency",
|
|
2015
2016
|
"ProFormDependencyProps",
|
|
@@ -2023,6 +2024,7 @@
|
|
|
2023
2024
|
"ProFormGroupProps",
|
|
2024
2025
|
"ProFormItem",
|
|
2025
2026
|
"ProFormItemProps",
|
|
2027
|
+
"ProFormItemSharedProps",
|
|
2026
2028
|
"ProFormList",
|
|
2027
2029
|
"ProFormListAction",
|
|
2028
2030
|
"ProFormListProps",
|
|
@@ -2031,6 +2033,8 @@
|
|
|
2031
2033
|
"ProFormProps",
|
|
2032
2034
|
"ProFormRadioGroup",
|
|
2033
2035
|
"ProFormRequestOption",
|
|
2036
|
+
"ProFormSchemaColumn",
|
|
2037
|
+
"ProFormSchemaValueType",
|
|
2034
2038
|
"ProFormSelect",
|
|
2035
2039
|
"ProFormSlider",
|
|
2036
2040
|
"ProFormSwitch",
|
|
@@ -2042,10 +2046,14 @@
|
|
|
2042
2046
|
"QueryFilter",
|
|
2043
2047
|
"QueryFilterProps",
|
|
2044
2048
|
"Rule",
|
|
2049
|
+
"SchemaForm",
|
|
2050
|
+
"SchemaFormProps",
|
|
2045
2051
|
"SubmitterProps",
|
|
2052
|
+
"UseFormWatch",
|
|
2046
2053
|
"ValidateStatus",
|
|
2047
2054
|
"ValidateTrigger",
|
|
2048
|
-
"createProFormField"
|
|
2055
|
+
"createProFormField",
|
|
2056
|
+
"useFormWatch"
|
|
2049
2057
|
],
|
|
2050
2058
|
"searchTags": [],
|
|
2051
2059
|
"typeText": "interface CreateProFormFieldConfig { ... }",
|
|
@@ -2352,7 +2360,7 @@
|
|
|
2352
2360
|
"name": "DialogForm",
|
|
2353
2361
|
"kind": "component",
|
|
2354
2362
|
"category": "forms",
|
|
2355
|
-
"summary": "",
|
|
2363
|
+
"summary": "Generic-aware export — keeps `<DialogForm<MyValues> …>` fully typed.",
|
|
2356
2364
|
"importPath": "@1money/component-ui",
|
|
2357
2365
|
"subpathImport": "@1money/component-ui/ProForm",
|
|
2358
2366
|
"sourceFile": "src/components/ProForm/layouts/DialogForm.tsx",
|
|
@@ -2431,7 +2439,7 @@
|
|
|
2431
2439
|
}
|
|
2432
2440
|
],
|
|
2433
2441
|
"extends": [
|
|
2434
|
-
"Omit<ProFormProps
|
|
2442
|
+
"Omit<ProFormProps<Values>, 'title'>"
|
|
2435
2443
|
],
|
|
2436
2444
|
"relatedSymbols": [
|
|
2437
2445
|
"CreateProFormFieldConfig",
|
|
@@ -2448,6 +2456,7 @@
|
|
|
2448
2456
|
"ProFormCheckboxGroup",
|
|
2449
2457
|
"ProFormColProps",
|
|
2450
2458
|
"ProFormContextValue",
|
|
2459
|
+
"ProFormDateFormatter",
|
|
2451
2460
|
"ProFormDatePicker",
|
|
2452
2461
|
"ProFormDependency",
|
|
2453
2462
|
"ProFormDependencyProps",
|
|
@@ -2461,6 +2470,7 @@
|
|
|
2461
2470
|
"ProFormGroupProps",
|
|
2462
2471
|
"ProFormItem",
|
|
2463
2472
|
"ProFormItemProps",
|
|
2473
|
+
"ProFormItemSharedProps",
|
|
2464
2474
|
"ProFormList",
|
|
2465
2475
|
"ProFormListAction",
|
|
2466
2476
|
"ProFormListProps",
|
|
@@ -2469,6 +2479,8 @@
|
|
|
2469
2479
|
"ProFormProps",
|
|
2470
2480
|
"ProFormRadioGroup",
|
|
2471
2481
|
"ProFormRequestOption",
|
|
2482
|
+
"ProFormSchemaColumn",
|
|
2483
|
+
"ProFormSchemaValueType",
|
|
2472
2484
|
"ProFormSelect",
|
|
2473
2485
|
"ProFormSlider",
|
|
2474
2486
|
"ProFormSwitch",
|
|
@@ -2480,10 +2492,14 @@
|
|
|
2480
2492
|
"QueryFilter",
|
|
2481
2493
|
"QueryFilterProps",
|
|
2482
2494
|
"Rule",
|
|
2495
|
+
"SchemaForm",
|
|
2496
|
+
"SchemaFormProps",
|
|
2483
2497
|
"SubmitterProps",
|
|
2498
|
+
"UseFormWatch",
|
|
2484
2499
|
"ValidateStatus",
|
|
2485
2500
|
"ValidateTrigger",
|
|
2486
|
-
"createProFormField"
|
|
2501
|
+
"createProFormField",
|
|
2502
|
+
"useFormWatch"
|
|
2487
2503
|
],
|
|
2488
2504
|
"searchTags": [],
|
|
2489
2505
|
"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,6 +2535,7 @@
|
|
|
2519
2535
|
"ProFormCheckboxGroup",
|
|
2520
2536
|
"ProFormColProps",
|
|
2521
2537
|
"ProFormContextValue",
|
|
2538
|
+
"ProFormDateFormatter",
|
|
2522
2539
|
"ProFormDatePicker",
|
|
2523
2540
|
"ProFormDependency",
|
|
2524
2541
|
"ProFormDependencyProps",
|
|
@@ -2532,6 +2549,7 @@
|
|
|
2532
2549
|
"ProFormGroupProps",
|
|
2533
2550
|
"ProFormItem",
|
|
2534
2551
|
"ProFormItemProps",
|
|
2552
|
+
"ProFormItemSharedProps",
|
|
2535
2553
|
"ProFormList",
|
|
2536
2554
|
"ProFormListAction",
|
|
2537
2555
|
"ProFormListProps",
|
|
@@ -2540,6 +2558,8 @@
|
|
|
2540
2558
|
"ProFormProps",
|
|
2541
2559
|
"ProFormRadioGroup",
|
|
2542
2560
|
"ProFormRequestOption",
|
|
2561
|
+
"ProFormSchemaColumn",
|
|
2562
|
+
"ProFormSchemaValueType",
|
|
2543
2563
|
"ProFormSelect",
|
|
2544
2564
|
"ProFormSlider",
|
|
2545
2565
|
"ProFormSwitch",
|
|
@@ -2551,13 +2571,17 @@
|
|
|
2551
2571
|
"QueryFilter",
|
|
2552
2572
|
"QueryFilterProps",
|
|
2553
2573
|
"Rule",
|
|
2574
|
+
"SchemaForm",
|
|
2575
|
+
"SchemaFormProps",
|
|
2554
2576
|
"SubmitterProps",
|
|
2577
|
+
"UseFormWatch",
|
|
2555
2578
|
"ValidateStatus",
|
|
2556
2579
|
"ValidateTrigger",
|
|
2557
|
-
"createProFormField"
|
|
2580
|
+
"createProFormField",
|
|
2581
|
+
"useFormWatch"
|
|
2558
2582
|
],
|
|
2559
2583
|
"searchTags": [],
|
|
2560
|
-
"typeText": "interface DialogFormProps extends Omit<ProFormProps
|
|
2584
|
+
"typeText": "interface DialogFormProps extends Omit<ProFormProps<Values>, 'title'> { ... }",
|
|
2561
2585
|
"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
2586
|
"examples": [
|
|
2563
2587
|
{
|
|
@@ -3063,7 +3087,7 @@
|
|
|
3063
3087
|
"name": "DrawerForm",
|
|
3064
3088
|
"kind": "component",
|
|
3065
3089
|
"category": "forms",
|
|
3066
|
-
"summary": "",
|
|
3090
|
+
"summary": "Generic-aware export — keeps `<DrawerForm<MyValues> …>` fully typed.",
|
|
3067
3091
|
"importPath": "@1money/component-ui",
|
|
3068
3092
|
"subpathImport": "@1money/component-ui/ProForm",
|
|
3069
3093
|
"sourceFile": "src/components/ProForm/layouts/DrawerForm.tsx",
|
|
@@ -3150,7 +3174,7 @@
|
|
|
3150
3174
|
}
|
|
3151
3175
|
],
|
|
3152
3176
|
"extends": [
|
|
3153
|
-
"Omit<ProFormProps
|
|
3177
|
+
"Omit<ProFormProps<Values>, 'title'>"
|
|
3154
3178
|
],
|
|
3155
3179
|
"relatedSymbols": [
|
|
3156
3180
|
"CreateProFormFieldConfig",
|
|
@@ -3167,6 +3191,7 @@
|
|
|
3167
3191
|
"ProFormCheckboxGroup",
|
|
3168
3192
|
"ProFormColProps",
|
|
3169
3193
|
"ProFormContextValue",
|
|
3194
|
+
"ProFormDateFormatter",
|
|
3170
3195
|
"ProFormDatePicker",
|
|
3171
3196
|
"ProFormDependency",
|
|
3172
3197
|
"ProFormDependencyProps",
|
|
@@ -3180,6 +3205,7 @@
|
|
|
3180
3205
|
"ProFormGroupProps",
|
|
3181
3206
|
"ProFormItem",
|
|
3182
3207
|
"ProFormItemProps",
|
|
3208
|
+
"ProFormItemSharedProps",
|
|
3183
3209
|
"ProFormList",
|
|
3184
3210
|
"ProFormListAction",
|
|
3185
3211
|
"ProFormListProps",
|
|
@@ -3188,6 +3214,8 @@
|
|
|
3188
3214
|
"ProFormProps",
|
|
3189
3215
|
"ProFormRadioGroup",
|
|
3190
3216
|
"ProFormRequestOption",
|
|
3217
|
+
"ProFormSchemaColumn",
|
|
3218
|
+
"ProFormSchemaValueType",
|
|
3191
3219
|
"ProFormSelect",
|
|
3192
3220
|
"ProFormSlider",
|
|
3193
3221
|
"ProFormSwitch",
|
|
@@ -3199,10 +3227,14 @@
|
|
|
3199
3227
|
"QueryFilter",
|
|
3200
3228
|
"QueryFilterProps",
|
|
3201
3229
|
"Rule",
|
|
3230
|
+
"SchemaForm",
|
|
3231
|
+
"SchemaFormProps",
|
|
3202
3232
|
"SubmitterProps",
|
|
3233
|
+
"UseFormWatch",
|
|
3203
3234
|
"ValidateStatus",
|
|
3204
3235
|
"ValidateTrigger",
|
|
3205
|
-
"createProFormField"
|
|
3236
|
+
"createProFormField",
|
|
3237
|
+
"useFormWatch"
|
|
3206
3238
|
],
|
|
3207
3239
|
"searchTags": [],
|
|
3208
3240
|
"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,6 +3270,7 @@
|
|
|
3238
3270
|
"ProFormCheckboxGroup",
|
|
3239
3271
|
"ProFormColProps",
|
|
3240
3272
|
"ProFormContextValue",
|
|
3273
|
+
"ProFormDateFormatter",
|
|
3241
3274
|
"ProFormDatePicker",
|
|
3242
3275
|
"ProFormDependency",
|
|
3243
3276
|
"ProFormDependencyProps",
|
|
@@ -3251,6 +3284,7 @@
|
|
|
3251
3284
|
"ProFormGroupProps",
|
|
3252
3285
|
"ProFormItem",
|
|
3253
3286
|
"ProFormItemProps",
|
|
3287
|
+
"ProFormItemSharedProps",
|
|
3254
3288
|
"ProFormList",
|
|
3255
3289
|
"ProFormListAction",
|
|
3256
3290
|
"ProFormListProps",
|
|
@@ -3259,6 +3293,8 @@
|
|
|
3259
3293
|
"ProFormProps",
|
|
3260
3294
|
"ProFormRadioGroup",
|
|
3261
3295
|
"ProFormRequestOption",
|
|
3296
|
+
"ProFormSchemaColumn",
|
|
3297
|
+
"ProFormSchemaValueType",
|
|
3262
3298
|
"ProFormSelect",
|
|
3263
3299
|
"ProFormSlider",
|
|
3264
3300
|
"ProFormSwitch",
|
|
@@ -3270,13 +3306,17 @@
|
|
|
3270
3306
|
"QueryFilter",
|
|
3271
3307
|
"QueryFilterProps",
|
|
3272
3308
|
"Rule",
|
|
3309
|
+
"SchemaForm",
|
|
3310
|
+
"SchemaFormProps",
|
|
3273
3311
|
"SubmitterProps",
|
|
3312
|
+
"UseFormWatch",
|
|
3274
3313
|
"ValidateStatus",
|
|
3275
3314
|
"ValidateTrigger",
|
|
3276
|
-
"createProFormField"
|
|
3315
|
+
"createProFormField",
|
|
3316
|
+
"useFormWatch"
|
|
3277
3317
|
],
|
|
3278
3318
|
"searchTags": [],
|
|
3279
|
-
"typeText": "interface DrawerFormProps extends Omit<ProFormProps
|
|
3319
|
+
"typeText": "interface DrawerFormProps extends Omit<ProFormProps<Values>, 'title'> { ... }",
|
|
3280
3320
|
"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
3321
|
"examples": [
|
|
3282
3322
|
{
|
|
@@ -3820,6 +3860,7 @@
|
|
|
3820
3860
|
"ProFormCheckboxGroup",
|
|
3821
3861
|
"ProFormColProps",
|
|
3822
3862
|
"ProFormContextValue",
|
|
3863
|
+
"ProFormDateFormatter",
|
|
3823
3864
|
"ProFormDatePicker",
|
|
3824
3865
|
"ProFormDependency",
|
|
3825
3866
|
"ProFormDependencyProps",
|
|
@@ -3833,6 +3874,7 @@
|
|
|
3833
3874
|
"ProFormGroupProps",
|
|
3834
3875
|
"ProFormItem",
|
|
3835
3876
|
"ProFormItemProps",
|
|
3877
|
+
"ProFormItemSharedProps",
|
|
3836
3878
|
"ProFormList",
|
|
3837
3879
|
"ProFormListAction",
|
|
3838
3880
|
"ProFormListProps",
|
|
@@ -3841,6 +3883,8 @@
|
|
|
3841
3883
|
"ProFormProps",
|
|
3842
3884
|
"ProFormRadioGroup",
|
|
3843
3885
|
"ProFormRequestOption",
|
|
3886
|
+
"ProFormSchemaColumn",
|
|
3887
|
+
"ProFormSchemaValueType",
|
|
3844
3888
|
"ProFormSelect",
|
|
3845
3889
|
"ProFormSlider",
|
|
3846
3890
|
"ProFormSwitch",
|
|
@@ -3852,10 +3896,14 @@
|
|
|
3852
3896
|
"QueryFilter",
|
|
3853
3897
|
"QueryFilterProps",
|
|
3854
3898
|
"Rule",
|
|
3899
|
+
"SchemaForm",
|
|
3900
|
+
"SchemaFormProps",
|
|
3855
3901
|
"SubmitterProps",
|
|
3902
|
+
"UseFormWatch",
|
|
3856
3903
|
"ValidateStatus",
|
|
3857
3904
|
"ValidateTrigger",
|
|
3858
|
-
"createProFormField"
|
|
3905
|
+
"createProFormField",
|
|
3906
|
+
"useFormWatch"
|
|
3859
3907
|
],
|
|
3860
3908
|
"searchTags": [],
|
|
3861
3909
|
"typeText": "interface FormCoreInstance { ... }",
|
|
@@ -3892,6 +3940,7 @@
|
|
|
3892
3940
|
"ProFormCheckboxGroup",
|
|
3893
3941
|
"ProFormColProps",
|
|
3894
3942
|
"ProFormContextValue",
|
|
3943
|
+
"ProFormDateFormatter",
|
|
3895
3944
|
"ProFormDatePicker",
|
|
3896
3945
|
"ProFormDependency",
|
|
3897
3946
|
"ProFormDependencyProps",
|
|
@@ -3905,6 +3954,7 @@
|
|
|
3905
3954
|
"ProFormGroupProps",
|
|
3906
3955
|
"ProFormItem",
|
|
3907
3956
|
"ProFormItemProps",
|
|
3957
|
+
"ProFormItemSharedProps",
|
|
3908
3958
|
"ProFormList",
|
|
3909
3959
|
"ProFormListAction",
|
|
3910
3960
|
"ProFormListProps",
|
|
@@ -3913,6 +3963,8 @@
|
|
|
3913
3963
|
"ProFormProps",
|
|
3914
3964
|
"ProFormRadioGroup",
|
|
3915
3965
|
"ProFormRequestOption",
|
|
3966
|
+
"ProFormSchemaColumn",
|
|
3967
|
+
"ProFormSchemaValueType",
|
|
3916
3968
|
"ProFormSelect",
|
|
3917
3969
|
"ProFormSlider",
|
|
3918
3970
|
"ProFormSwitch",
|
|
@@ -3924,10 +3976,14 @@
|
|
|
3924
3976
|
"QueryFilter",
|
|
3925
3977
|
"QueryFilterProps",
|
|
3926
3978
|
"Rule",
|
|
3979
|
+
"SchemaForm",
|
|
3980
|
+
"SchemaFormProps",
|
|
3927
3981
|
"SubmitterProps",
|
|
3982
|
+
"UseFormWatch",
|
|
3928
3983
|
"ValidateStatus",
|
|
3929
3984
|
"ValidateTrigger",
|
|
3930
|
-
"createProFormField"
|
|
3985
|
+
"createProFormField",
|
|
3986
|
+
"useFormWatch"
|
|
3931
3987
|
],
|
|
3932
3988
|
"searchTags": [],
|
|
3933
3989
|
"typeText": "interface FormInstance { ... }",
|
|
@@ -3964,6 +4020,7 @@
|
|
|
3964
4020
|
"ProFormCheckboxGroup",
|
|
3965
4021
|
"ProFormColProps",
|
|
3966
4022
|
"ProFormContextValue",
|
|
4023
|
+
"ProFormDateFormatter",
|
|
3967
4024
|
"ProFormDatePicker",
|
|
3968
4025
|
"ProFormDependency",
|
|
3969
4026
|
"ProFormDependencyProps",
|
|
@@ -3977,6 +4034,7 @@
|
|
|
3977
4034
|
"ProFormGroupProps",
|
|
3978
4035
|
"ProFormItem",
|
|
3979
4036
|
"ProFormItemProps",
|
|
4037
|
+
"ProFormItemSharedProps",
|
|
3980
4038
|
"ProFormList",
|
|
3981
4039
|
"ProFormListAction",
|
|
3982
4040
|
"ProFormListProps",
|
|
@@ -3985,6 +4043,8 @@
|
|
|
3985
4043
|
"ProFormProps",
|
|
3986
4044
|
"ProFormRadioGroup",
|
|
3987
4045
|
"ProFormRequestOption",
|
|
4046
|
+
"ProFormSchemaColumn",
|
|
4047
|
+
"ProFormSchemaValueType",
|
|
3988
4048
|
"ProFormSelect",
|
|
3989
4049
|
"ProFormSlider",
|
|
3990
4050
|
"ProFormSwitch",
|
|
@@ -3996,10 +4056,14 @@
|
|
|
3996
4056
|
"QueryFilter",
|
|
3997
4057
|
"QueryFilterProps",
|
|
3998
4058
|
"Rule",
|
|
4059
|
+
"SchemaForm",
|
|
4060
|
+
"SchemaFormProps",
|
|
3999
4061
|
"SubmitterProps",
|
|
4062
|
+
"UseFormWatch",
|
|
4000
4063
|
"ValidateStatus",
|
|
4001
4064
|
"ValidateTrigger",
|
|
4002
|
-
"createProFormField"
|
|
4065
|
+
"createProFormField",
|
|
4066
|
+
"useFormWatch"
|
|
4003
4067
|
],
|
|
4004
4068
|
"searchTags": [],
|
|
4005
4069
|
"typeText": "(typeof FORM_LAYOUTS)[number]",
|
|
@@ -4036,6 +4100,7 @@
|
|
|
4036
4100
|
"ProFormCheckboxGroup",
|
|
4037
4101
|
"ProFormColProps",
|
|
4038
4102
|
"ProFormContextValue",
|
|
4103
|
+
"ProFormDateFormatter",
|
|
4039
4104
|
"ProFormDatePicker",
|
|
4040
4105
|
"ProFormDependency",
|
|
4041
4106
|
"ProFormDependencyProps",
|
|
@@ -4049,6 +4114,7 @@
|
|
|
4049
4114
|
"ProFormGroupProps",
|
|
4050
4115
|
"ProFormItem",
|
|
4051
4116
|
"ProFormItemProps",
|
|
4117
|
+
"ProFormItemSharedProps",
|
|
4052
4118
|
"ProFormList",
|
|
4053
4119
|
"ProFormListAction",
|
|
4054
4120
|
"ProFormListProps",
|
|
@@ -4057,6 +4123,8 @@
|
|
|
4057
4123
|
"ProFormProps",
|
|
4058
4124
|
"ProFormRadioGroup",
|
|
4059
4125
|
"ProFormRequestOption",
|
|
4126
|
+
"ProFormSchemaColumn",
|
|
4127
|
+
"ProFormSchemaValueType",
|
|
4060
4128
|
"ProFormSelect",
|
|
4061
4129
|
"ProFormSlider",
|
|
4062
4130
|
"ProFormSwitch",
|
|
@@ -4068,10 +4136,14 @@
|
|
|
4068
4136
|
"QueryFilter",
|
|
4069
4137
|
"QueryFilterProps",
|
|
4070
4138
|
"Rule",
|
|
4139
|
+
"SchemaForm",
|
|
4140
|
+
"SchemaFormProps",
|
|
4071
4141
|
"SubmitterProps",
|
|
4142
|
+
"UseFormWatch",
|
|
4072
4143
|
"ValidateStatus",
|
|
4073
4144
|
"ValidateTrigger",
|
|
4074
|
-
"createProFormField"
|
|
4145
|
+
"createProFormField",
|
|
4146
|
+
"useFormWatch"
|
|
4075
4147
|
],
|
|
4076
4148
|
"searchTags": [],
|
|
4077
4149
|
"typeText": "(typeof FORM_SIZES)[number]",
|
|
@@ -5110,6 +5182,7 @@
|
|
|
5110
5182
|
"ProFormCheckboxGroup",
|
|
5111
5183
|
"ProFormColProps",
|
|
5112
5184
|
"ProFormContextValue",
|
|
5185
|
+
"ProFormDateFormatter",
|
|
5113
5186
|
"ProFormDatePicker",
|
|
5114
5187
|
"ProFormDependency",
|
|
5115
5188
|
"ProFormDependencyProps",
|
|
@@ -5123,6 +5196,7 @@
|
|
|
5123
5196
|
"ProFormGroupProps",
|
|
5124
5197
|
"ProFormItem",
|
|
5125
5198
|
"ProFormItemProps",
|
|
5199
|
+
"ProFormItemSharedProps",
|
|
5126
5200
|
"ProFormList",
|
|
5127
5201
|
"ProFormListAction",
|
|
5128
5202
|
"ProFormListProps",
|
|
@@ -5131,6 +5205,8 @@
|
|
|
5131
5205
|
"ProFormProps",
|
|
5132
5206
|
"ProFormRadioGroup",
|
|
5133
5207
|
"ProFormRequestOption",
|
|
5208
|
+
"ProFormSchemaColumn",
|
|
5209
|
+
"ProFormSchemaValueType",
|
|
5134
5210
|
"ProFormSelect",
|
|
5135
5211
|
"ProFormSlider",
|
|
5136
5212
|
"ProFormSwitch",
|
|
@@ -5142,10 +5218,14 @@
|
|
|
5142
5218
|
"QueryFilter",
|
|
5143
5219
|
"QueryFilterProps",
|
|
5144
5220
|
"Rule",
|
|
5221
|
+
"SchemaForm",
|
|
5222
|
+
"SchemaFormProps",
|
|
5145
5223
|
"SubmitterProps",
|
|
5224
|
+
"UseFormWatch",
|
|
5146
5225
|
"ValidateStatus",
|
|
5147
5226
|
"ValidateTrigger",
|
|
5148
|
-
"createProFormField"
|
|
5227
|
+
"createProFormField",
|
|
5228
|
+
"useFormWatch"
|
|
5149
5229
|
],
|
|
5150
5230
|
"searchTags": [],
|
|
5151
5231
|
"typeText": "(typeof LABEL_ALIGNS)[number]",
|
|
@@ -6874,7 +6954,7 @@
|
|
|
6874
6954
|
},
|
|
6875
6955
|
{
|
|
6876
6956
|
"name": "initialValues",
|
|
6877
|
-
"type": "
|
|
6957
|
+
"type": "Partial<Values>",
|
|
6878
6958
|
"optional": true,
|
|
6879
6959
|
"default": null,
|
|
6880
6960
|
"description": "",
|
|
@@ -6882,7 +6962,7 @@
|
|
|
6882
6962
|
},
|
|
6883
6963
|
{
|
|
6884
6964
|
"name": "onFinish",
|
|
6885
|
-
"type": "(values:
|
|
6965
|
+
"type": "(values: Values) => void | Promise<void>",
|
|
6886
6966
|
"optional": true,
|
|
6887
6967
|
"default": null,
|
|
6888
6968
|
"description": "",
|
|
@@ -6890,7 +6970,7 @@
|
|
|
6890
6970
|
},
|
|
6891
6971
|
{
|
|
6892
6972
|
"name": "onFinishFailed",
|
|
6893
|
-
"type": "(errorInfo: {\n values:
|
|
6973
|
+
"type": "(errorInfo: {\n values: Values;\n errors: Record<string, string>;\n }) => void",
|
|
6894
6974
|
"optional": true,
|
|
6895
6975
|
"default": null,
|
|
6896
6976
|
"description": "",
|
|
@@ -6898,7 +6978,7 @@
|
|
|
6898
6978
|
},
|
|
6899
6979
|
{
|
|
6900
6980
|
"name": "onValuesChange",
|
|
6901
|
-
"type": "(\n changedValues:
|
|
6981
|
+
"type": "(\n changedValues: Partial<Values>,\n allValues: Values,\n ) => void",
|
|
6902
6982
|
"optional": true,
|
|
6903
6983
|
"default": null,
|
|
6904
6984
|
"description": "",
|
|
@@ -7018,7 +7098,7 @@
|
|
|
7018
7098
|
},
|
|
7019
7099
|
{
|
|
7020
7100
|
"name": "request",
|
|
7021
|
-
"type": "(params?: unknown) => Promise<
|
|
7101
|
+
"type": "(params?: unknown) => Promise<Partial<Values>>",
|
|
7022
7102
|
"optional": true,
|
|
7023
7103
|
"default": null,
|
|
7024
7104
|
"description": "",
|
|
@@ -7034,7 +7114,7 @@
|
|
|
7034
7114
|
},
|
|
7035
7115
|
{
|
|
7036
7116
|
"name": "formRef",
|
|
7037
|
-
"type": "MutableRefObject<ProFormFormInstance | undefined>",
|
|
7117
|
+
"type": "MutableRefObject<ProFormFormInstance<Values> | undefined>",
|
|
7038
7118
|
"optional": true,
|
|
7039
7119
|
"default": null,
|
|
7040
7120
|
"description": "",
|
|
@@ -7047,6 +7127,30 @@
|
|
|
7047
7127
|
"default": null,
|
|
7048
7128
|
"description": "",
|
|
7049
7129
|
"inheritedFrom": null
|
|
7130
|
+
},
|
|
7131
|
+
{
|
|
7132
|
+
"name": "dateFormatter",
|
|
7133
|
+
"type": "ProFormDateFormatter",
|
|
7134
|
+
"optional": true,
|
|
7135
|
+
"default": null,
|
|
7136
|
+
"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.",
|
|
7137
|
+
"inheritedFrom": null
|
|
7138
|
+
},
|
|
7139
|
+
{
|
|
7140
|
+
"name": "fieldProps",
|
|
7141
|
+
"type": "Record<string, unknown>",
|
|
7142
|
+
"optional": true,
|
|
7143
|
+
"default": null,
|
|
7144
|
+
"description": "Defaults injected into every ProFormXxx field's component props (field-level wins)",
|
|
7145
|
+
"inheritedFrom": null
|
|
7146
|
+
},
|
|
7147
|
+
{
|
|
7148
|
+
"name": "formItemProps",
|
|
7149
|
+
"type": "ProFormItemSharedProps",
|
|
7150
|
+
"optional": true,
|
|
7151
|
+
"default": null,
|
|
7152
|
+
"description": "Defaults merged into every ProForm.Item (item-level wins)",
|
|
7153
|
+
"inheritedFrom": null
|
|
7050
7154
|
}
|
|
7051
7155
|
],
|
|
7052
7156
|
"extends": [
|
|
@@ -7067,6 +7171,7 @@
|
|
|
7067
7171
|
"ProFormCheckboxGroup",
|
|
7068
7172
|
"ProFormColProps",
|
|
7069
7173
|
"ProFormContextValue",
|
|
7174
|
+
"ProFormDateFormatter",
|
|
7070
7175
|
"ProFormDatePicker",
|
|
7071
7176
|
"ProFormDependency",
|
|
7072
7177
|
"ProFormDependencyProps",
|
|
@@ -7080,6 +7185,7 @@
|
|
|
7080
7185
|
"ProFormGroupProps",
|
|
7081
7186
|
"ProFormItem",
|
|
7082
7187
|
"ProFormItemProps",
|
|
7188
|
+
"ProFormItemSharedProps",
|
|
7083
7189
|
"ProFormList",
|
|
7084
7190
|
"ProFormListAction",
|
|
7085
7191
|
"ProFormListProps",
|
|
@@ -7088,6 +7194,8 @@
|
|
|
7088
7194
|
"ProFormProps",
|
|
7089
7195
|
"ProFormRadioGroup",
|
|
7090
7196
|
"ProFormRequestOption",
|
|
7197
|
+
"ProFormSchemaColumn",
|
|
7198
|
+
"ProFormSchemaValueType",
|
|
7091
7199
|
"ProFormSelect",
|
|
7092
7200
|
"ProFormSlider",
|
|
7093
7201
|
"ProFormSwitch",
|
|
@@ -7099,10 +7207,14 @@
|
|
|
7099
7207
|
"QueryFilter",
|
|
7100
7208
|
"QueryFilterProps",
|
|
7101
7209
|
"Rule",
|
|
7210
|
+
"SchemaForm",
|
|
7211
|
+
"SchemaFormProps",
|
|
7102
7212
|
"SubmitterProps",
|
|
7213
|
+
"UseFormWatch",
|
|
7103
7214
|
"ValidateStatus",
|
|
7104
7215
|
"ValidateTrigger",
|
|
7105
|
-
"createProFormField"
|
|
7216
|
+
"createProFormField",
|
|
7217
|
+
"useFormWatch"
|
|
7106
7218
|
],
|
|
7107
7219
|
"searchTags": [
|
|
7108
7220
|
"form"
|
|
@@ -7112,10 +7224,12 @@
|
|
|
7112
7224
|
"useForm": "$local:useForm",
|
|
7113
7225
|
"useInstance": "$local:useFormInstance",
|
|
7114
7226
|
"useContext": "$local:useProFormContext",
|
|
7227
|
+
"useWatch": "useFormWatch",
|
|
7115
7228
|
"Dependency": "ProFormDependency",
|
|
7116
7229
|
"List": "ProFormList",
|
|
7117
7230
|
"Group": "ProFormGroup",
|
|
7118
7231
|
"FieldSet": "ProFormFieldSet",
|
|
7232
|
+
"SchemaForm": "SchemaForm",
|
|
7119
7233
|
"Submitter": "$local:Submitter",
|
|
7120
7234
|
"Text": "ProFormText",
|
|
7121
7235
|
"Password": "ProFormPassword",
|
|
@@ -7143,14 +7257,30 @@
|
|
|
7143
7257
|
"hash": "e95a0d0355599d90e5a8f3e2157c5f59f2ee97f9c77cde6b856ca73e439ba89d",
|
|
7144
7258
|
"source": "readme"
|
|
7145
7259
|
},
|
|
7260
|
+
{
|
|
7261
|
+
"hash": "31e687407721cc55ccd2d23531c5e503c2b504126b32c3d64a6ea3fd5841a76c",
|
|
7262
|
+
"source": "readme"
|
|
7263
|
+
},
|
|
7146
7264
|
{
|
|
7147
7265
|
"hash": "dbe17f0fba3f62604b6da16ec484cb907242b1a61d6976be96c8e08deea44e14",
|
|
7148
7266
|
"source": "readme"
|
|
7149
7267
|
},
|
|
7268
|
+
{
|
|
7269
|
+
"hash": "9cfaec36634043a155c8a1d3642132cb4bc92d53e7b40e98fa08319fae0b6a76",
|
|
7270
|
+
"source": "readme"
|
|
7271
|
+
},
|
|
7272
|
+
{
|
|
7273
|
+
"hash": "699022fcfe2193a016f965ca015fe7b541b5f1215b76c3ce9b65711615c76f76",
|
|
7274
|
+
"source": "readme"
|
|
7275
|
+
},
|
|
7150
7276
|
{
|
|
7151
7277
|
"hash": "d9c8c640f134945ee1c690fc09f249d48531b5e05729faa4795d7411a8b3bc4e",
|
|
7152
7278
|
"source": "stories"
|
|
7153
7279
|
},
|
|
7280
|
+
{
|
|
7281
|
+
"hash": "376f33e3d6f965eddd80993afe2207b0350adc6c32f0649c8b9255a0de0f3ba4",
|
|
7282
|
+
"source": "stories"
|
|
7283
|
+
},
|
|
7154
7284
|
{
|
|
7155
7285
|
"hash": "7f54085ee6892564556d190e01d8e809af4cd0841f2c8c6876faeb511fbe8834",
|
|
7156
7286
|
"source": "stories"
|
|
@@ -7294,6 +7424,22 @@
|
|
|
7294
7424
|
{
|
|
7295
7425
|
"hash": "834b1493f597716ffd0faa47a8af73c11fd286bff5048777205a4596bd3e648b",
|
|
7296
7426
|
"source": "stories"
|
|
7427
|
+
},
|
|
7428
|
+
{
|
|
7429
|
+
"hash": "8f8c9aa7c2f1a20af504f6a25beac2759618fbbf3f86b946c5e89835513469dc",
|
|
7430
|
+
"source": "stories"
|
|
7431
|
+
},
|
|
7432
|
+
{
|
|
7433
|
+
"hash": "8b751a499e8365e384d8c21bfd57f0c317933488ecf3d0d3cef92f63f7876153",
|
|
7434
|
+
"source": "stories"
|
|
7435
|
+
},
|
|
7436
|
+
{
|
|
7437
|
+
"hash": "2f750f408e4ca01cb0342d68602035d76929a817ec2f00df585e8b329963fad3",
|
|
7438
|
+
"source": "stories"
|
|
7439
|
+
},
|
|
7440
|
+
{
|
|
7441
|
+
"hash": "5f633bf5a40beede394e15ffdb383d616174b92eb10905d331eda3670885be60",
|
|
7442
|
+
"source": "stories"
|
|
7297
7443
|
}
|
|
7298
7444
|
]
|
|
7299
7445
|
},
|
|
@@ -7322,6 +7468,7 @@
|
|
|
7322
7468
|
"ProFormCheckboxGroup",
|
|
7323
7469
|
"ProFormColProps",
|
|
7324
7470
|
"ProFormContextValue",
|
|
7471
|
+
"ProFormDateFormatter",
|
|
7325
7472
|
"ProFormDatePicker",
|
|
7326
7473
|
"ProFormDependency",
|
|
7327
7474
|
"ProFormDependencyProps",
|
|
@@ -7335,6 +7482,7 @@
|
|
|
7335
7482
|
"ProFormGroupProps",
|
|
7336
7483
|
"ProFormItem",
|
|
7337
7484
|
"ProFormItemProps",
|
|
7485
|
+
"ProFormItemSharedProps",
|
|
7338
7486
|
"ProFormList",
|
|
7339
7487
|
"ProFormListAction",
|
|
7340
7488
|
"ProFormListProps",
|
|
@@ -7343,6 +7491,8 @@
|
|
|
7343
7491
|
"ProFormProps",
|
|
7344
7492
|
"ProFormRadioGroup",
|
|
7345
7493
|
"ProFormRequestOption",
|
|
7494
|
+
"ProFormSchemaColumn",
|
|
7495
|
+
"ProFormSchemaValueType",
|
|
7346
7496
|
"ProFormSelect",
|
|
7347
7497
|
"ProFormSlider",
|
|
7348
7498
|
"ProFormSwitch",
|
|
@@ -7354,10 +7504,14 @@
|
|
|
7354
7504
|
"QueryFilter",
|
|
7355
7505
|
"QueryFilterProps",
|
|
7356
7506
|
"Rule",
|
|
7507
|
+
"SchemaForm",
|
|
7508
|
+
"SchemaFormProps",
|
|
7357
7509
|
"SubmitterProps",
|
|
7510
|
+
"UseFormWatch",
|
|
7358
7511
|
"ValidateStatus",
|
|
7359
7512
|
"ValidateTrigger",
|
|
7360
|
-
"createProFormField"
|
|
7513
|
+
"createProFormField",
|
|
7514
|
+
"useFormWatch"
|
|
7361
7515
|
],
|
|
7362
7516
|
"searchTags": [],
|
|
7363
7517
|
"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,6 +7547,7 @@
|
|
|
7393
7547
|
"ProFormCheckbox",
|
|
7394
7548
|
"ProFormColProps",
|
|
7395
7549
|
"ProFormContextValue",
|
|
7550
|
+
"ProFormDateFormatter",
|
|
7396
7551
|
"ProFormDatePicker",
|
|
7397
7552
|
"ProFormDependency",
|
|
7398
7553
|
"ProFormDependencyProps",
|
|
@@ -7406,6 +7561,7 @@
|
|
|
7406
7561
|
"ProFormGroupProps",
|
|
7407
7562
|
"ProFormItem",
|
|
7408
7563
|
"ProFormItemProps",
|
|
7564
|
+
"ProFormItemSharedProps",
|
|
7409
7565
|
"ProFormList",
|
|
7410
7566
|
"ProFormListAction",
|
|
7411
7567
|
"ProFormListProps",
|
|
@@ -7414,6 +7570,8 @@
|
|
|
7414
7570
|
"ProFormProps",
|
|
7415
7571
|
"ProFormRadioGroup",
|
|
7416
7572
|
"ProFormRequestOption",
|
|
7573
|
+
"ProFormSchemaColumn",
|
|
7574
|
+
"ProFormSchemaValueType",
|
|
7417
7575
|
"ProFormSelect",
|
|
7418
7576
|
"ProFormSlider",
|
|
7419
7577
|
"ProFormSwitch",
|
|
@@ -7425,10 +7583,14 @@
|
|
|
7425
7583
|
"QueryFilter",
|
|
7426
7584
|
"QueryFilterProps",
|
|
7427
7585
|
"Rule",
|
|
7586
|
+
"SchemaForm",
|
|
7587
|
+
"SchemaFormProps",
|
|
7428
7588
|
"SubmitterProps",
|
|
7589
|
+
"UseFormWatch",
|
|
7429
7590
|
"ValidateStatus",
|
|
7430
7591
|
"ValidateTrigger",
|
|
7431
|
-
"createProFormField"
|
|
7592
|
+
"createProFormField",
|
|
7593
|
+
"useFormWatch"
|
|
7432
7594
|
],
|
|
7433
7595
|
"searchTags": [],
|
|
7434
7596
|
"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,6 +7626,7 @@
|
|
|
7464
7626
|
"ProFormCheckbox",
|
|
7465
7627
|
"ProFormCheckboxGroup",
|
|
7466
7628
|
"ProFormContextValue",
|
|
7629
|
+
"ProFormDateFormatter",
|
|
7467
7630
|
"ProFormDatePicker",
|
|
7468
7631
|
"ProFormDependency",
|
|
7469
7632
|
"ProFormDependencyProps",
|
|
@@ -7477,6 +7640,7 @@
|
|
|
7477
7640
|
"ProFormGroupProps",
|
|
7478
7641
|
"ProFormItem",
|
|
7479
7642
|
"ProFormItemProps",
|
|
7643
|
+
"ProFormItemSharedProps",
|
|
7480
7644
|
"ProFormList",
|
|
7481
7645
|
"ProFormListAction",
|
|
7482
7646
|
"ProFormListProps",
|
|
@@ -7485,6 +7649,8 @@
|
|
|
7485
7649
|
"ProFormProps",
|
|
7486
7650
|
"ProFormRadioGroup",
|
|
7487
7651
|
"ProFormRequestOption",
|
|
7652
|
+
"ProFormSchemaColumn",
|
|
7653
|
+
"ProFormSchemaValueType",
|
|
7488
7654
|
"ProFormSelect",
|
|
7489
7655
|
"ProFormSlider",
|
|
7490
7656
|
"ProFormSwitch",
|
|
@@ -7496,10 +7662,14 @@
|
|
|
7496
7662
|
"QueryFilter",
|
|
7497
7663
|
"QueryFilterProps",
|
|
7498
7664
|
"Rule",
|
|
7665
|
+
"SchemaForm",
|
|
7666
|
+
"SchemaFormProps",
|
|
7499
7667
|
"SubmitterProps",
|
|
7668
|
+
"UseFormWatch",
|
|
7500
7669
|
"ValidateStatus",
|
|
7501
7670
|
"ValidateTrigger",
|
|
7502
|
-
"createProFormField"
|
|
7671
|
+
"createProFormField",
|
|
7672
|
+
"useFormWatch"
|
|
7503
7673
|
],
|
|
7504
7674
|
"searchTags": [],
|
|
7505
7675
|
"typeText": "interface ProFormColProps { ... }",
|
|
@@ -7536,6 +7706,7 @@
|
|
|
7536
7706
|
"ProFormCheckbox",
|
|
7537
7707
|
"ProFormCheckboxGroup",
|
|
7538
7708
|
"ProFormColProps",
|
|
7709
|
+
"ProFormDateFormatter",
|
|
7539
7710
|
"ProFormDatePicker",
|
|
7540
7711
|
"ProFormDependency",
|
|
7541
7712
|
"ProFormDependencyProps",
|
|
@@ -7549,6 +7720,7 @@
|
|
|
7549
7720
|
"ProFormGroupProps",
|
|
7550
7721
|
"ProFormItem",
|
|
7551
7722
|
"ProFormItemProps",
|
|
7723
|
+
"ProFormItemSharedProps",
|
|
7552
7724
|
"ProFormList",
|
|
7553
7725
|
"ProFormListAction",
|
|
7554
7726
|
"ProFormListProps",
|
|
@@ -7557,6 +7729,8 @@
|
|
|
7557
7729
|
"ProFormProps",
|
|
7558
7730
|
"ProFormRadioGroup",
|
|
7559
7731
|
"ProFormRequestOption",
|
|
7732
|
+
"ProFormSchemaColumn",
|
|
7733
|
+
"ProFormSchemaValueType",
|
|
7560
7734
|
"ProFormSelect",
|
|
7561
7735
|
"ProFormSlider",
|
|
7562
7736
|
"ProFormSwitch",
|
|
@@ -7568,13 +7742,97 @@
|
|
|
7568
7742
|
"QueryFilter",
|
|
7569
7743
|
"QueryFilterProps",
|
|
7570
7744
|
"Rule",
|
|
7745
|
+
"SchemaForm",
|
|
7746
|
+
"SchemaFormProps",
|
|
7571
7747
|
"SubmitterProps",
|
|
7748
|
+
"UseFormWatch",
|
|
7572
7749
|
"ValidateStatus",
|
|
7573
7750
|
"ValidateTrigger",
|
|
7574
|
-
"createProFormField"
|
|
7751
|
+
"createProFormField",
|
|
7752
|
+
"useFormWatch"
|
|
7753
|
+
],
|
|
7754
|
+
"searchTags": [],
|
|
7755
|
+
"typeText": "interface ProFormContextValue extends ProFormStableContextValue, ProFormStateContextValue { ... }",
|
|
7756
|
+
"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';",
|
|
7757
|
+
"examples": [
|
|
7758
|
+
{
|
|
7759
|
+
"hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
|
|
7760
|
+
"source": "canonical"
|
|
7761
|
+
}
|
|
7762
|
+
]
|
|
7763
|
+
},
|
|
7764
|
+
{
|
|
7765
|
+
"name": "ProFormDateFormatter",
|
|
7766
|
+
"kind": "type",
|
|
7767
|
+
"category": "forms",
|
|
7768
|
+
"summary": "",
|
|
7769
|
+
"importPath": "@1money/component-ui",
|
|
7770
|
+
"subpathImport": "@1money/component-ui/ProForm",
|
|
7771
|
+
"sourceFile": "src/components/ProForm/interface.ts",
|
|
7772
|
+
"props": [],
|
|
7773
|
+
"extends": [],
|
|
7774
|
+
"relatedSymbols": [
|
|
7775
|
+
"CreateProFormFieldConfig",
|
|
7776
|
+
"DialogForm",
|
|
7777
|
+
"DialogFormProps",
|
|
7778
|
+
"DrawerForm",
|
|
7779
|
+
"DrawerFormProps",
|
|
7780
|
+
"FormCoreInstance",
|
|
7781
|
+
"FormInstance",
|
|
7782
|
+
"FormLayout",
|
|
7783
|
+
"FormSize",
|
|
7784
|
+
"LabelAlign",
|
|
7785
|
+
"ProForm",
|
|
7786
|
+
"ProFormCheckbox",
|
|
7787
|
+
"ProFormCheckboxGroup",
|
|
7788
|
+
"ProFormColProps",
|
|
7789
|
+
"ProFormContextValue",
|
|
7790
|
+
"ProFormDatePicker",
|
|
7791
|
+
"ProFormDependency",
|
|
7792
|
+
"ProFormDependencyProps",
|
|
7793
|
+
"ProFormFieldConvertValueFn",
|
|
7794
|
+
"ProFormFieldProps",
|
|
7795
|
+
"ProFormFieldSet",
|
|
7796
|
+
"ProFormFieldSetProps",
|
|
7797
|
+
"ProFormFieldTransformFn",
|
|
7798
|
+
"ProFormFormInstance",
|
|
7799
|
+
"ProFormGroup",
|
|
7800
|
+
"ProFormGroupProps",
|
|
7801
|
+
"ProFormItem",
|
|
7802
|
+
"ProFormItemProps",
|
|
7803
|
+
"ProFormItemSharedProps",
|
|
7804
|
+
"ProFormList",
|
|
7805
|
+
"ProFormListAction",
|
|
7806
|
+
"ProFormListProps",
|
|
7807
|
+
"ProFormMode",
|
|
7808
|
+
"ProFormPassword",
|
|
7809
|
+
"ProFormProps",
|
|
7810
|
+
"ProFormRadioGroup",
|
|
7811
|
+
"ProFormRequestOption",
|
|
7812
|
+
"ProFormSchemaColumn",
|
|
7813
|
+
"ProFormSchemaValueType",
|
|
7814
|
+
"ProFormSelect",
|
|
7815
|
+
"ProFormSlider",
|
|
7816
|
+
"ProFormSwitch",
|
|
7817
|
+
"ProFormText",
|
|
7818
|
+
"ProFormTextArea",
|
|
7819
|
+
"ProFormUpload",
|
|
7820
|
+
"ProFormValueEnumObj",
|
|
7821
|
+
"ProFormValueType",
|
|
7822
|
+
"QueryFilter",
|
|
7823
|
+
"QueryFilterProps",
|
|
7824
|
+
"Rule",
|
|
7825
|
+
"SchemaForm",
|
|
7826
|
+
"SchemaFormProps",
|
|
7827
|
+
"SubmitterProps",
|
|
7828
|
+
"UseFormWatch",
|
|
7829
|
+
"ValidateStatus",
|
|
7830
|
+
"ValidateTrigger",
|
|
7831
|
+
"createProFormField",
|
|
7832
|
+
"useFormWatch"
|
|
7575
7833
|
],
|
|
7576
7834
|
"searchTags": [],
|
|
7577
|
-
"typeText": "
|
|
7835
|
+
"typeText": "| 'string'\n | 'number'\n | (string & {})\n | ((value: Date, name: string) => unknown)\n | false",
|
|
7578
7836
|
"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
7837
|
"examples": [
|
|
7580
7838
|
{
|
|
@@ -7609,6 +7867,7 @@
|
|
|
7609
7867
|
"ProFormCheckboxGroup",
|
|
7610
7868
|
"ProFormColProps",
|
|
7611
7869
|
"ProFormContextValue",
|
|
7870
|
+
"ProFormDateFormatter",
|
|
7612
7871
|
"ProFormDependency",
|
|
7613
7872
|
"ProFormDependencyProps",
|
|
7614
7873
|
"ProFormFieldConvertValueFn",
|
|
@@ -7621,6 +7880,7 @@
|
|
|
7621
7880
|
"ProFormGroupProps",
|
|
7622
7881
|
"ProFormItem",
|
|
7623
7882
|
"ProFormItemProps",
|
|
7883
|
+
"ProFormItemSharedProps",
|
|
7624
7884
|
"ProFormList",
|
|
7625
7885
|
"ProFormListAction",
|
|
7626
7886
|
"ProFormListProps",
|
|
@@ -7629,6 +7889,8 @@
|
|
|
7629
7889
|
"ProFormProps",
|
|
7630
7890
|
"ProFormRadioGroup",
|
|
7631
7891
|
"ProFormRequestOption",
|
|
7892
|
+
"ProFormSchemaColumn",
|
|
7893
|
+
"ProFormSchemaValueType",
|
|
7632
7894
|
"ProFormSelect",
|
|
7633
7895
|
"ProFormSlider",
|
|
7634
7896
|
"ProFormSwitch",
|
|
@@ -7640,10 +7902,14 @@
|
|
|
7640
7902
|
"QueryFilter",
|
|
7641
7903
|
"QueryFilterProps",
|
|
7642
7904
|
"Rule",
|
|
7905
|
+
"SchemaForm",
|
|
7906
|
+
"SchemaFormProps",
|
|
7643
7907
|
"SubmitterProps",
|
|
7908
|
+
"UseFormWatch",
|
|
7644
7909
|
"ValidateStatus",
|
|
7645
7910
|
"ValidateTrigger",
|
|
7646
|
-
"createProFormField"
|
|
7911
|
+
"createProFormField",
|
|
7912
|
+
"useFormWatch"
|
|
7647
7913
|
],
|
|
7648
7914
|
"searchTags": [
|
|
7649
7915
|
"date input",
|
|
@@ -7708,6 +7974,7 @@
|
|
|
7708
7974
|
"ProFormCheckboxGroup",
|
|
7709
7975
|
"ProFormColProps",
|
|
7710
7976
|
"ProFormContextValue",
|
|
7977
|
+
"ProFormDateFormatter",
|
|
7711
7978
|
"ProFormDatePicker",
|
|
7712
7979
|
"ProFormDependencyProps",
|
|
7713
7980
|
"ProFormFieldConvertValueFn",
|
|
@@ -7720,6 +7987,7 @@
|
|
|
7720
7987
|
"ProFormGroupProps",
|
|
7721
7988
|
"ProFormItem",
|
|
7722
7989
|
"ProFormItemProps",
|
|
7990
|
+
"ProFormItemSharedProps",
|
|
7723
7991
|
"ProFormList",
|
|
7724
7992
|
"ProFormListAction",
|
|
7725
7993
|
"ProFormListProps",
|
|
@@ -7728,6 +7996,8 @@
|
|
|
7728
7996
|
"ProFormProps",
|
|
7729
7997
|
"ProFormRadioGroup",
|
|
7730
7998
|
"ProFormRequestOption",
|
|
7999
|
+
"ProFormSchemaColumn",
|
|
8000
|
+
"ProFormSchemaValueType",
|
|
7731
8001
|
"ProFormSelect",
|
|
7732
8002
|
"ProFormSlider",
|
|
7733
8003
|
"ProFormSwitch",
|
|
@@ -7739,10 +8009,14 @@
|
|
|
7739
8009
|
"QueryFilter",
|
|
7740
8010
|
"QueryFilterProps",
|
|
7741
8011
|
"Rule",
|
|
8012
|
+
"SchemaForm",
|
|
8013
|
+
"SchemaFormProps",
|
|
7742
8014
|
"SubmitterProps",
|
|
8015
|
+
"UseFormWatch",
|
|
7743
8016
|
"ValidateStatus",
|
|
7744
8017
|
"ValidateTrigger",
|
|
7745
|
-
"createProFormField"
|
|
8018
|
+
"createProFormField",
|
|
8019
|
+
"useFormWatch"
|
|
7746
8020
|
],
|
|
7747
8021
|
"searchTags": [],
|
|
7748
8022
|
"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,6 +8053,7 @@
|
|
|
7779
8053
|
"ProFormCheckboxGroup",
|
|
7780
8054
|
"ProFormColProps",
|
|
7781
8055
|
"ProFormContextValue",
|
|
8056
|
+
"ProFormDateFormatter",
|
|
7782
8057
|
"ProFormDatePicker",
|
|
7783
8058
|
"ProFormDependency",
|
|
7784
8059
|
"ProFormFieldConvertValueFn",
|
|
@@ -7791,6 +8066,7 @@
|
|
|
7791
8066
|
"ProFormGroupProps",
|
|
7792
8067
|
"ProFormItem",
|
|
7793
8068
|
"ProFormItemProps",
|
|
8069
|
+
"ProFormItemSharedProps",
|
|
7794
8070
|
"ProFormList",
|
|
7795
8071
|
"ProFormListAction",
|
|
7796
8072
|
"ProFormListProps",
|
|
@@ -7799,6 +8075,8 @@
|
|
|
7799
8075
|
"ProFormProps",
|
|
7800
8076
|
"ProFormRadioGroup",
|
|
7801
8077
|
"ProFormRequestOption",
|
|
8078
|
+
"ProFormSchemaColumn",
|
|
8079
|
+
"ProFormSchemaValueType",
|
|
7802
8080
|
"ProFormSelect",
|
|
7803
8081
|
"ProFormSlider",
|
|
7804
8082
|
"ProFormSwitch",
|
|
@@ -7810,10 +8088,14 @@
|
|
|
7810
8088
|
"QueryFilter",
|
|
7811
8089
|
"QueryFilterProps",
|
|
7812
8090
|
"Rule",
|
|
8091
|
+
"SchemaForm",
|
|
8092
|
+
"SchemaFormProps",
|
|
7813
8093
|
"SubmitterProps",
|
|
8094
|
+
"UseFormWatch",
|
|
7814
8095
|
"ValidateStatus",
|
|
7815
8096
|
"ValidateTrigger",
|
|
7816
|
-
"createProFormField"
|
|
8097
|
+
"createProFormField",
|
|
8098
|
+
"useFormWatch"
|
|
7817
8099
|
],
|
|
7818
8100
|
"searchTags": [],
|
|
7819
8101
|
"typeText": "interface ProFormDependencyProps { ... }",
|
|
@@ -7851,6 +8133,7 @@
|
|
|
7851
8133
|
"ProFormCheckboxGroup",
|
|
7852
8134
|
"ProFormColProps",
|
|
7853
8135
|
"ProFormContextValue",
|
|
8136
|
+
"ProFormDateFormatter",
|
|
7854
8137
|
"ProFormDatePicker",
|
|
7855
8138
|
"ProFormDependency",
|
|
7856
8139
|
"ProFormDependencyProps",
|
|
@@ -7863,6 +8146,7 @@
|
|
|
7863
8146
|
"ProFormGroupProps",
|
|
7864
8147
|
"ProFormItem",
|
|
7865
8148
|
"ProFormItemProps",
|
|
8149
|
+
"ProFormItemSharedProps",
|
|
7866
8150
|
"ProFormList",
|
|
7867
8151
|
"ProFormListAction",
|
|
7868
8152
|
"ProFormListProps",
|
|
@@ -7871,6 +8155,8 @@
|
|
|
7871
8155
|
"ProFormProps",
|
|
7872
8156
|
"ProFormRadioGroup",
|
|
7873
8157
|
"ProFormRequestOption",
|
|
8158
|
+
"ProFormSchemaColumn",
|
|
8159
|
+
"ProFormSchemaValueType",
|
|
7874
8160
|
"ProFormSelect",
|
|
7875
8161
|
"ProFormSlider",
|
|
7876
8162
|
"ProFormSwitch",
|
|
@@ -7882,10 +8168,14 @@
|
|
|
7882
8168
|
"QueryFilter",
|
|
7883
8169
|
"QueryFilterProps",
|
|
7884
8170
|
"Rule",
|
|
8171
|
+
"SchemaForm",
|
|
8172
|
+
"SchemaFormProps",
|
|
7885
8173
|
"SubmitterProps",
|
|
8174
|
+
"UseFormWatch",
|
|
7886
8175
|
"ValidateStatus",
|
|
7887
8176
|
"ValidateTrigger",
|
|
7888
|
-
"createProFormField"
|
|
8177
|
+
"createProFormField",
|
|
8178
|
+
"useFormWatch"
|
|
7889
8179
|
],
|
|
7890
8180
|
"searchTags": [],
|
|
7891
8181
|
"typeText": "(\n value: unknown,\n name: string,\n) => unknown",
|
|
@@ -7923,6 +8213,7 @@
|
|
|
7923
8213
|
"ProFormCheckboxGroup",
|
|
7924
8214
|
"ProFormColProps",
|
|
7925
8215
|
"ProFormContextValue",
|
|
8216
|
+
"ProFormDateFormatter",
|
|
7926
8217
|
"ProFormDatePicker",
|
|
7927
8218
|
"ProFormDependency",
|
|
7928
8219
|
"ProFormDependencyProps",
|
|
@@ -7935,6 +8226,7 @@
|
|
|
7935
8226
|
"ProFormGroupProps",
|
|
7936
8227
|
"ProFormItem",
|
|
7937
8228
|
"ProFormItemProps",
|
|
8229
|
+
"ProFormItemSharedProps",
|
|
7938
8230
|
"ProFormList",
|
|
7939
8231
|
"ProFormListAction",
|
|
7940
8232
|
"ProFormListProps",
|
|
@@ -7943,6 +8235,8 @@
|
|
|
7943
8235
|
"ProFormProps",
|
|
7944
8236
|
"ProFormRadioGroup",
|
|
7945
8237
|
"ProFormRequestOption",
|
|
8238
|
+
"ProFormSchemaColumn",
|
|
8239
|
+
"ProFormSchemaValueType",
|
|
7946
8240
|
"ProFormSelect",
|
|
7947
8241
|
"ProFormSlider",
|
|
7948
8242
|
"ProFormSwitch",
|
|
@@ -7954,10 +8248,14 @@
|
|
|
7954
8248
|
"QueryFilter",
|
|
7955
8249
|
"QueryFilterProps",
|
|
7956
8250
|
"Rule",
|
|
8251
|
+
"SchemaForm",
|
|
8252
|
+
"SchemaFormProps",
|
|
7957
8253
|
"SubmitterProps",
|
|
8254
|
+
"UseFormWatch",
|
|
7958
8255
|
"ValidateStatus",
|
|
7959
8256
|
"ValidateTrigger",
|
|
7960
|
-
"createProFormField"
|
|
8257
|
+
"createProFormField",
|
|
8258
|
+
"useFormWatch"
|
|
7961
8259
|
],
|
|
7962
8260
|
"searchTags": [],
|
|
7963
8261
|
"typeText": "interface ProFormFieldProps { ... }",
|
|
@@ -8068,6 +8366,7 @@
|
|
|
8068
8366
|
"ProFormCheckboxGroup",
|
|
8069
8367
|
"ProFormColProps",
|
|
8070
8368
|
"ProFormContextValue",
|
|
8369
|
+
"ProFormDateFormatter",
|
|
8071
8370
|
"ProFormDatePicker",
|
|
8072
8371
|
"ProFormDependency",
|
|
8073
8372
|
"ProFormDependencyProps",
|
|
@@ -8080,6 +8379,7 @@
|
|
|
8080
8379
|
"ProFormGroupProps",
|
|
8081
8380
|
"ProFormItem",
|
|
8082
8381
|
"ProFormItemProps",
|
|
8382
|
+
"ProFormItemSharedProps",
|
|
8083
8383
|
"ProFormList",
|
|
8084
8384
|
"ProFormListAction",
|
|
8085
8385
|
"ProFormListProps",
|
|
@@ -8088,6 +8388,8 @@
|
|
|
8088
8388
|
"ProFormProps",
|
|
8089
8389
|
"ProFormRadioGroup",
|
|
8090
8390
|
"ProFormRequestOption",
|
|
8391
|
+
"ProFormSchemaColumn",
|
|
8392
|
+
"ProFormSchemaValueType",
|
|
8091
8393
|
"ProFormSelect",
|
|
8092
8394
|
"ProFormSlider",
|
|
8093
8395
|
"ProFormSwitch",
|
|
@@ -8099,10 +8401,14 @@
|
|
|
8099
8401
|
"QueryFilter",
|
|
8100
8402
|
"QueryFilterProps",
|
|
8101
8403
|
"Rule",
|
|
8404
|
+
"SchemaForm",
|
|
8405
|
+
"SchemaFormProps",
|
|
8102
8406
|
"SubmitterProps",
|
|
8407
|
+
"UseFormWatch",
|
|
8103
8408
|
"ValidateStatus",
|
|
8104
8409
|
"ValidateTrigger",
|
|
8105
|
-
"createProFormField"
|
|
8410
|
+
"createProFormField",
|
|
8411
|
+
"useFormWatch"
|
|
8106
8412
|
],
|
|
8107
8413
|
"searchTags": [],
|
|
8108
8414
|
"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,6 +8445,7 @@
|
|
|
8139
8445
|
"ProFormCheckboxGroup",
|
|
8140
8446
|
"ProFormColProps",
|
|
8141
8447
|
"ProFormContextValue",
|
|
8448
|
+
"ProFormDateFormatter",
|
|
8142
8449
|
"ProFormDatePicker",
|
|
8143
8450
|
"ProFormDependency",
|
|
8144
8451
|
"ProFormDependencyProps",
|
|
@@ -8151,6 +8458,7 @@
|
|
|
8151
8458
|
"ProFormGroupProps",
|
|
8152
8459
|
"ProFormItem",
|
|
8153
8460
|
"ProFormItemProps",
|
|
8461
|
+
"ProFormItemSharedProps",
|
|
8154
8462
|
"ProFormList",
|
|
8155
8463
|
"ProFormListAction",
|
|
8156
8464
|
"ProFormListProps",
|
|
@@ -8159,6 +8467,8 @@
|
|
|
8159
8467
|
"ProFormProps",
|
|
8160
8468
|
"ProFormRadioGroup",
|
|
8161
8469
|
"ProFormRequestOption",
|
|
8470
|
+
"ProFormSchemaColumn",
|
|
8471
|
+
"ProFormSchemaValueType",
|
|
8162
8472
|
"ProFormSelect",
|
|
8163
8473
|
"ProFormSlider",
|
|
8164
8474
|
"ProFormSwitch",
|
|
@@ -8170,10 +8480,14 @@
|
|
|
8170
8480
|
"QueryFilter",
|
|
8171
8481
|
"QueryFilterProps",
|
|
8172
8482
|
"Rule",
|
|
8483
|
+
"SchemaForm",
|
|
8484
|
+
"SchemaFormProps",
|
|
8173
8485
|
"SubmitterProps",
|
|
8486
|
+
"UseFormWatch",
|
|
8174
8487
|
"ValidateStatus",
|
|
8175
8488
|
"ValidateTrigger",
|
|
8176
|
-
"createProFormField"
|
|
8489
|
+
"createProFormField",
|
|
8490
|
+
"useFormWatch"
|
|
8177
8491
|
],
|
|
8178
8492
|
"searchTags": [],
|
|
8179
8493
|
"typeText": "interface ProFormFieldSetProps { ... }",
|
|
@@ -8211,6 +8525,7 @@
|
|
|
8211
8525
|
"ProFormCheckboxGroup",
|
|
8212
8526
|
"ProFormColProps",
|
|
8213
8527
|
"ProFormContextValue",
|
|
8528
|
+
"ProFormDateFormatter",
|
|
8214
8529
|
"ProFormDatePicker",
|
|
8215
8530
|
"ProFormDependency",
|
|
8216
8531
|
"ProFormDependencyProps",
|
|
@@ -8223,6 +8538,7 @@
|
|
|
8223
8538
|
"ProFormGroupProps",
|
|
8224
8539
|
"ProFormItem",
|
|
8225
8540
|
"ProFormItemProps",
|
|
8541
|
+
"ProFormItemSharedProps",
|
|
8226
8542
|
"ProFormList",
|
|
8227
8543
|
"ProFormListAction",
|
|
8228
8544
|
"ProFormListProps",
|
|
@@ -8231,6 +8547,8 @@
|
|
|
8231
8547
|
"ProFormProps",
|
|
8232
8548
|
"ProFormRadioGroup",
|
|
8233
8549
|
"ProFormRequestOption",
|
|
8550
|
+
"ProFormSchemaColumn",
|
|
8551
|
+
"ProFormSchemaValueType",
|
|
8234
8552
|
"ProFormSelect",
|
|
8235
8553
|
"ProFormSlider",
|
|
8236
8554
|
"ProFormSwitch",
|
|
@@ -8242,10 +8560,14 @@
|
|
|
8242
8560
|
"QueryFilter",
|
|
8243
8561
|
"QueryFilterProps",
|
|
8244
8562
|
"Rule",
|
|
8563
|
+
"SchemaForm",
|
|
8564
|
+
"SchemaFormProps",
|
|
8245
8565
|
"SubmitterProps",
|
|
8566
|
+
"UseFormWatch",
|
|
8246
8567
|
"ValidateStatus",
|
|
8247
8568
|
"ValidateTrigger",
|
|
8248
|
-
"createProFormField"
|
|
8569
|
+
"createProFormField",
|
|
8570
|
+
"useFormWatch"
|
|
8249
8571
|
],
|
|
8250
8572
|
"searchTags": [],
|
|
8251
8573
|
"typeText": "(\n value: unknown,\n name: string,\n allValues: Record<string, unknown>,\n) => unknown",
|
|
@@ -8283,6 +8605,7 @@
|
|
|
8283
8605
|
"ProFormCheckboxGroup",
|
|
8284
8606
|
"ProFormColProps",
|
|
8285
8607
|
"ProFormContextValue",
|
|
8608
|
+
"ProFormDateFormatter",
|
|
8286
8609
|
"ProFormDatePicker",
|
|
8287
8610
|
"ProFormDependency",
|
|
8288
8611
|
"ProFormDependencyProps",
|
|
@@ -8295,6 +8618,7 @@
|
|
|
8295
8618
|
"ProFormGroupProps",
|
|
8296
8619
|
"ProFormItem",
|
|
8297
8620
|
"ProFormItemProps",
|
|
8621
|
+
"ProFormItemSharedProps",
|
|
8298
8622
|
"ProFormList",
|
|
8299
8623
|
"ProFormListAction",
|
|
8300
8624
|
"ProFormListProps",
|
|
@@ -8303,6 +8627,8 @@
|
|
|
8303
8627
|
"ProFormProps",
|
|
8304
8628
|
"ProFormRadioGroup",
|
|
8305
8629
|
"ProFormRequestOption",
|
|
8630
|
+
"ProFormSchemaColumn",
|
|
8631
|
+
"ProFormSchemaValueType",
|
|
8306
8632
|
"ProFormSelect",
|
|
8307
8633
|
"ProFormSlider",
|
|
8308
8634
|
"ProFormSwitch",
|
|
@@ -8314,13 +8640,17 @@
|
|
|
8314
8640
|
"QueryFilter",
|
|
8315
8641
|
"QueryFilterProps",
|
|
8316
8642
|
"Rule",
|
|
8643
|
+
"SchemaForm",
|
|
8644
|
+
"SchemaFormProps",
|
|
8317
8645
|
"SubmitterProps",
|
|
8646
|
+
"UseFormWatch",
|
|
8318
8647
|
"ValidateStatus",
|
|
8319
8648
|
"ValidateTrigger",
|
|
8320
|
-
"createProFormField"
|
|
8649
|
+
"createProFormField",
|
|
8650
|
+
"useFormWatch"
|
|
8321
8651
|
],
|
|
8322
8652
|
"searchTags": [],
|
|
8323
|
-
"typeText": "interface ProFormFormInstance extends FormInstance { ... }",
|
|
8653
|
+
"typeText": "interface ProFormFormInstance extends FormInstance<Values> { ... }",
|
|
8324
8654
|
"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
8655
|
"examples": [
|
|
8326
8656
|
{
|
|
@@ -8420,6 +8750,7 @@
|
|
|
8420
8750
|
"ProFormCheckboxGroup",
|
|
8421
8751
|
"ProFormColProps",
|
|
8422
8752
|
"ProFormContextValue",
|
|
8753
|
+
"ProFormDateFormatter",
|
|
8423
8754
|
"ProFormDatePicker",
|
|
8424
8755
|
"ProFormDependency",
|
|
8425
8756
|
"ProFormDependencyProps",
|
|
@@ -8432,6 +8763,7 @@
|
|
|
8432
8763
|
"ProFormGroupProps",
|
|
8433
8764
|
"ProFormItem",
|
|
8434
8765
|
"ProFormItemProps",
|
|
8766
|
+
"ProFormItemSharedProps",
|
|
8435
8767
|
"ProFormList",
|
|
8436
8768
|
"ProFormListAction",
|
|
8437
8769
|
"ProFormListProps",
|
|
@@ -8440,6 +8772,8 @@
|
|
|
8440
8772
|
"ProFormProps",
|
|
8441
8773
|
"ProFormRadioGroup",
|
|
8442
8774
|
"ProFormRequestOption",
|
|
8775
|
+
"ProFormSchemaColumn",
|
|
8776
|
+
"ProFormSchemaValueType",
|
|
8443
8777
|
"ProFormSelect",
|
|
8444
8778
|
"ProFormSlider",
|
|
8445
8779
|
"ProFormSwitch",
|
|
@@ -8451,10 +8785,14 @@
|
|
|
8451
8785
|
"QueryFilter",
|
|
8452
8786
|
"QueryFilterProps",
|
|
8453
8787
|
"Rule",
|
|
8788
|
+
"SchemaForm",
|
|
8789
|
+
"SchemaFormProps",
|
|
8454
8790
|
"SubmitterProps",
|
|
8791
|
+
"UseFormWatch",
|
|
8455
8792
|
"ValidateStatus",
|
|
8456
8793
|
"ValidateTrigger",
|
|
8457
|
-
"createProFormField"
|
|
8794
|
+
"createProFormField",
|
|
8795
|
+
"useFormWatch"
|
|
8458
8796
|
],
|
|
8459
8797
|
"searchTags": [],
|
|
8460
8798
|
"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,6 +8829,7 @@
|
|
|
8491
8829
|
"ProFormCheckboxGroup",
|
|
8492
8830
|
"ProFormColProps",
|
|
8493
8831
|
"ProFormContextValue",
|
|
8832
|
+
"ProFormDateFormatter",
|
|
8494
8833
|
"ProFormDatePicker",
|
|
8495
8834
|
"ProFormDependency",
|
|
8496
8835
|
"ProFormDependencyProps",
|
|
@@ -8503,6 +8842,7 @@
|
|
|
8503
8842
|
"ProFormGroup",
|
|
8504
8843
|
"ProFormItem",
|
|
8505
8844
|
"ProFormItemProps",
|
|
8845
|
+
"ProFormItemSharedProps",
|
|
8506
8846
|
"ProFormList",
|
|
8507
8847
|
"ProFormListAction",
|
|
8508
8848
|
"ProFormListProps",
|
|
@@ -8511,6 +8851,8 @@
|
|
|
8511
8851
|
"ProFormProps",
|
|
8512
8852
|
"ProFormRadioGroup",
|
|
8513
8853
|
"ProFormRequestOption",
|
|
8854
|
+
"ProFormSchemaColumn",
|
|
8855
|
+
"ProFormSchemaValueType",
|
|
8514
8856
|
"ProFormSelect",
|
|
8515
8857
|
"ProFormSlider",
|
|
8516
8858
|
"ProFormSwitch",
|
|
@@ -8522,10 +8864,14 @@
|
|
|
8522
8864
|
"QueryFilter",
|
|
8523
8865
|
"QueryFilterProps",
|
|
8524
8866
|
"Rule",
|
|
8867
|
+
"SchemaForm",
|
|
8868
|
+
"SchemaFormProps",
|
|
8525
8869
|
"SubmitterProps",
|
|
8870
|
+
"UseFormWatch",
|
|
8526
8871
|
"ValidateStatus",
|
|
8527
8872
|
"ValidateTrigger",
|
|
8528
|
-
"createProFormField"
|
|
8873
|
+
"createProFormField",
|
|
8874
|
+
"useFormWatch"
|
|
8529
8875
|
],
|
|
8530
8876
|
"searchTags": [],
|
|
8531
8877
|
"typeText": "interface ProFormGroupProps { ... }",
|
|
@@ -8713,6 +9059,22 @@
|
|
|
8713
9059
|
"default": null,
|
|
8714
9060
|
"description": "Value enum for select/radio/tag value types",
|
|
8715
9061
|
"inheritedFrom": null
|
|
9062
|
+
},
|
|
9063
|
+
{
|
|
9064
|
+
"name": "valuePropName",
|
|
9065
|
+
"type": "string",
|
|
9066
|
+
"optional": true,
|
|
9067
|
+
"default": null,
|
|
9068
|
+
"description": "Prop name the controlled value is injected under (default `value`; e.g.",
|
|
9069
|
+
"inheritedFrom": null
|
|
9070
|
+
},
|
|
9071
|
+
{
|
|
9072
|
+
"name": "validateDebounce",
|
|
9073
|
+
"type": "number",
|
|
9074
|
+
"optional": true,
|
|
9075
|
+
"default": null,
|
|
9076
|
+
"description": "Debounce (ms) applied to onChange-triggered validation",
|
|
9077
|
+
"inheritedFrom": null
|
|
8716
9078
|
}
|
|
8717
9079
|
],
|
|
8718
9080
|
"extends": [],
|
|
@@ -8732,6 +9094,7 @@
|
|
|
8732
9094
|
"ProFormCheckboxGroup",
|
|
8733
9095
|
"ProFormColProps",
|
|
8734
9096
|
"ProFormContextValue",
|
|
9097
|
+
"ProFormDateFormatter",
|
|
8735
9098
|
"ProFormDatePicker",
|
|
8736
9099
|
"ProFormDependency",
|
|
8737
9100
|
"ProFormDependencyProps",
|
|
@@ -8744,6 +9107,7 @@
|
|
|
8744
9107
|
"ProFormGroup",
|
|
8745
9108
|
"ProFormGroupProps",
|
|
8746
9109
|
"ProFormItemProps",
|
|
9110
|
+
"ProFormItemSharedProps",
|
|
8747
9111
|
"ProFormList",
|
|
8748
9112
|
"ProFormListAction",
|
|
8749
9113
|
"ProFormListProps",
|
|
@@ -8752,6 +9116,8 @@
|
|
|
8752
9116
|
"ProFormProps",
|
|
8753
9117
|
"ProFormRadioGroup",
|
|
8754
9118
|
"ProFormRequestOption",
|
|
9119
|
+
"ProFormSchemaColumn",
|
|
9120
|
+
"ProFormSchemaValueType",
|
|
8755
9121
|
"ProFormSelect",
|
|
8756
9122
|
"ProFormSlider",
|
|
8757
9123
|
"ProFormSwitch",
|
|
@@ -8763,10 +9129,14 @@
|
|
|
8763
9129
|
"QueryFilter",
|
|
8764
9130
|
"QueryFilterProps",
|
|
8765
9131
|
"Rule",
|
|
9132
|
+
"SchemaForm",
|
|
9133
|
+
"SchemaFormProps",
|
|
8766
9134
|
"SubmitterProps",
|
|
9135
|
+
"UseFormWatch",
|
|
8767
9136
|
"ValidateStatus",
|
|
8768
9137
|
"ValidateTrigger",
|
|
8769
|
-
"createProFormField"
|
|
9138
|
+
"createProFormField",
|
|
9139
|
+
"useFormWatch"
|
|
8770
9140
|
],
|
|
8771
9141
|
"searchTags": [],
|
|
8772
9142
|
"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,6 +9173,7 @@
|
|
|
8803
9173
|
"ProFormCheckboxGroup",
|
|
8804
9174
|
"ProFormColProps",
|
|
8805
9175
|
"ProFormContextValue",
|
|
9176
|
+
"ProFormDateFormatter",
|
|
8806
9177
|
"ProFormDatePicker",
|
|
8807
9178
|
"ProFormDependency",
|
|
8808
9179
|
"ProFormDependencyProps",
|
|
@@ -8815,6 +9186,7 @@
|
|
|
8815
9186
|
"ProFormGroup",
|
|
8816
9187
|
"ProFormGroupProps",
|
|
8817
9188
|
"ProFormItem",
|
|
9189
|
+
"ProFormItemSharedProps",
|
|
8818
9190
|
"ProFormList",
|
|
8819
9191
|
"ProFormListAction",
|
|
8820
9192
|
"ProFormListProps",
|
|
@@ -8823,6 +9195,8 @@
|
|
|
8823
9195
|
"ProFormProps",
|
|
8824
9196
|
"ProFormRadioGroup",
|
|
8825
9197
|
"ProFormRequestOption",
|
|
9198
|
+
"ProFormSchemaColumn",
|
|
9199
|
+
"ProFormSchemaValueType",
|
|
8826
9200
|
"ProFormSelect",
|
|
8827
9201
|
"ProFormSlider",
|
|
8828
9202
|
"ProFormSwitch",
|
|
@@ -8834,10 +9208,14 @@
|
|
|
8834
9208
|
"QueryFilter",
|
|
8835
9209
|
"QueryFilterProps",
|
|
8836
9210
|
"Rule",
|
|
9211
|
+
"SchemaForm",
|
|
9212
|
+
"SchemaFormProps",
|
|
8837
9213
|
"SubmitterProps",
|
|
9214
|
+
"UseFormWatch",
|
|
8838
9215
|
"ValidateStatus",
|
|
8839
9216
|
"ValidateTrigger",
|
|
8840
|
-
"createProFormField"
|
|
9217
|
+
"createProFormField",
|
|
9218
|
+
"useFormWatch"
|
|
8841
9219
|
],
|
|
8842
9220
|
"searchTags": [],
|
|
8843
9221
|
"typeText": "interface ProFormItemProps { ... }",
|
|
@@ -8849,6 +9227,86 @@
|
|
|
8849
9227
|
}
|
|
8850
9228
|
]
|
|
8851
9229
|
},
|
|
9230
|
+
{
|
|
9231
|
+
"name": "ProFormItemSharedProps",
|
|
9232
|
+
"kind": "type",
|
|
9233
|
+
"category": "forms",
|
|
9234
|
+
"summary": "Item props that can be shared form-wide via ProForm's `formItemProps`",
|
|
9235
|
+
"importPath": "@1money/component-ui",
|
|
9236
|
+
"subpathImport": "@1money/component-ui/ProForm",
|
|
9237
|
+
"sourceFile": "src/components/ProForm/interface.ts",
|
|
9238
|
+
"props": [],
|
|
9239
|
+
"extends": [],
|
|
9240
|
+
"relatedSymbols": [
|
|
9241
|
+
"CreateProFormFieldConfig",
|
|
9242
|
+
"DialogForm",
|
|
9243
|
+
"DialogFormProps",
|
|
9244
|
+
"DrawerForm",
|
|
9245
|
+
"DrawerFormProps",
|
|
9246
|
+
"FormCoreInstance",
|
|
9247
|
+
"FormInstance",
|
|
9248
|
+
"FormLayout",
|
|
9249
|
+
"FormSize",
|
|
9250
|
+
"LabelAlign",
|
|
9251
|
+
"ProForm",
|
|
9252
|
+
"ProFormCheckbox",
|
|
9253
|
+
"ProFormCheckboxGroup",
|
|
9254
|
+
"ProFormColProps",
|
|
9255
|
+
"ProFormContextValue",
|
|
9256
|
+
"ProFormDateFormatter",
|
|
9257
|
+
"ProFormDatePicker",
|
|
9258
|
+
"ProFormDependency",
|
|
9259
|
+
"ProFormDependencyProps",
|
|
9260
|
+
"ProFormFieldConvertValueFn",
|
|
9261
|
+
"ProFormFieldProps",
|
|
9262
|
+
"ProFormFieldSet",
|
|
9263
|
+
"ProFormFieldSetProps",
|
|
9264
|
+
"ProFormFieldTransformFn",
|
|
9265
|
+
"ProFormFormInstance",
|
|
9266
|
+
"ProFormGroup",
|
|
9267
|
+
"ProFormGroupProps",
|
|
9268
|
+
"ProFormItem",
|
|
9269
|
+
"ProFormItemProps",
|
|
9270
|
+
"ProFormList",
|
|
9271
|
+
"ProFormListAction",
|
|
9272
|
+
"ProFormListProps",
|
|
9273
|
+
"ProFormMode",
|
|
9274
|
+
"ProFormPassword",
|
|
9275
|
+
"ProFormProps",
|
|
9276
|
+
"ProFormRadioGroup",
|
|
9277
|
+
"ProFormRequestOption",
|
|
9278
|
+
"ProFormSchemaColumn",
|
|
9279
|
+
"ProFormSchemaValueType",
|
|
9280
|
+
"ProFormSelect",
|
|
9281
|
+
"ProFormSlider",
|
|
9282
|
+
"ProFormSwitch",
|
|
9283
|
+
"ProFormText",
|
|
9284
|
+
"ProFormTextArea",
|
|
9285
|
+
"ProFormUpload",
|
|
9286
|
+
"ProFormValueEnumObj",
|
|
9287
|
+
"ProFormValueType",
|
|
9288
|
+
"QueryFilter",
|
|
9289
|
+
"QueryFilterProps",
|
|
9290
|
+
"Rule",
|
|
9291
|
+
"SchemaForm",
|
|
9292
|
+
"SchemaFormProps",
|
|
9293
|
+
"SubmitterProps",
|
|
9294
|
+
"UseFormWatch",
|
|
9295
|
+
"ValidateStatus",
|
|
9296
|
+
"ValidateTrigger",
|
|
9297
|
+
"createProFormField",
|
|
9298
|
+
"useFormWatch"
|
|
9299
|
+
],
|
|
9300
|
+
"searchTags": [],
|
|
9301
|
+
"typeText": "Partial<\n Omit<ProFormItemProps, 'children' | 'name' | 'label' | 'rules'>\n>",
|
|
9302
|
+
"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';",
|
|
9303
|
+
"examples": [
|
|
9304
|
+
{
|
|
9305
|
+
"hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
|
|
9306
|
+
"source": "canonical"
|
|
9307
|
+
}
|
|
9308
|
+
]
|
|
9309
|
+
},
|
|
8852
9310
|
{
|
|
8853
9311
|
"name": "ProFormList",
|
|
8854
9312
|
"kind": "component",
|
|
@@ -8996,6 +9454,7 @@
|
|
|
8996
9454
|
"ProFormCheckboxGroup",
|
|
8997
9455
|
"ProFormColProps",
|
|
8998
9456
|
"ProFormContextValue",
|
|
9457
|
+
"ProFormDateFormatter",
|
|
8999
9458
|
"ProFormDatePicker",
|
|
9000
9459
|
"ProFormDependency",
|
|
9001
9460
|
"ProFormDependencyProps",
|
|
@@ -9009,6 +9468,7 @@
|
|
|
9009
9468
|
"ProFormGroupProps",
|
|
9010
9469
|
"ProFormItem",
|
|
9011
9470
|
"ProFormItemProps",
|
|
9471
|
+
"ProFormItemSharedProps",
|
|
9012
9472
|
"ProFormListAction",
|
|
9013
9473
|
"ProFormListProps",
|
|
9014
9474
|
"ProFormMode",
|
|
@@ -9016,6 +9476,8 @@
|
|
|
9016
9476
|
"ProFormProps",
|
|
9017
9477
|
"ProFormRadioGroup",
|
|
9018
9478
|
"ProFormRequestOption",
|
|
9479
|
+
"ProFormSchemaColumn",
|
|
9480
|
+
"ProFormSchemaValueType",
|
|
9019
9481
|
"ProFormSelect",
|
|
9020
9482
|
"ProFormSlider",
|
|
9021
9483
|
"ProFormSwitch",
|
|
@@ -9027,10 +9489,14 @@
|
|
|
9027
9489
|
"QueryFilter",
|
|
9028
9490
|
"QueryFilterProps",
|
|
9029
9491
|
"Rule",
|
|
9492
|
+
"SchemaForm",
|
|
9493
|
+
"SchemaFormProps",
|
|
9030
9494
|
"SubmitterProps",
|
|
9495
|
+
"UseFormWatch",
|
|
9031
9496
|
"ValidateStatus",
|
|
9032
9497
|
"ValidateTrigger",
|
|
9033
|
-
"createProFormField"
|
|
9498
|
+
"createProFormField",
|
|
9499
|
+
"useFormWatch"
|
|
9034
9500
|
],
|
|
9035
9501
|
"searchTags": [],
|
|
9036
9502
|
"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';",
|
|
@@ -9067,6 +9533,7 @@
|
|
|
9067
9533
|
"ProFormCheckboxGroup",
|
|
9068
9534
|
"ProFormColProps",
|
|
9069
9535
|
"ProFormContextValue",
|
|
9536
|
+
"ProFormDateFormatter",
|
|
9070
9537
|
"ProFormDatePicker",
|
|
9071
9538
|
"ProFormDependency",
|
|
9072
9539
|
"ProFormDependencyProps",
|
|
@@ -9080,6 +9547,7 @@
|
|
|
9080
9547
|
"ProFormGroupProps",
|
|
9081
9548
|
"ProFormItem",
|
|
9082
9549
|
"ProFormItemProps",
|
|
9550
|
+
"ProFormItemSharedProps",
|
|
9083
9551
|
"ProFormList",
|
|
9084
9552
|
"ProFormListProps",
|
|
9085
9553
|
"ProFormMode",
|
|
@@ -9087,6 +9555,8 @@
|
|
|
9087
9555
|
"ProFormProps",
|
|
9088
9556
|
"ProFormRadioGroup",
|
|
9089
9557
|
"ProFormRequestOption",
|
|
9558
|
+
"ProFormSchemaColumn",
|
|
9559
|
+
"ProFormSchemaValueType",
|
|
9090
9560
|
"ProFormSelect",
|
|
9091
9561
|
"ProFormSlider",
|
|
9092
9562
|
"ProFormSwitch",
|
|
@@ -9098,10 +9568,14 @@
|
|
|
9098
9568
|
"QueryFilter",
|
|
9099
9569
|
"QueryFilterProps",
|
|
9100
9570
|
"Rule",
|
|
9571
|
+
"SchemaForm",
|
|
9572
|
+
"SchemaFormProps",
|
|
9101
9573
|
"SubmitterProps",
|
|
9574
|
+
"UseFormWatch",
|
|
9102
9575
|
"ValidateStatus",
|
|
9103
9576
|
"ValidateTrigger",
|
|
9104
|
-
"createProFormField"
|
|
9577
|
+
"createProFormField",
|
|
9578
|
+
"useFormWatch"
|
|
9105
9579
|
],
|
|
9106
9580
|
"searchTags": [],
|
|
9107
9581
|
"typeText": "interface ProFormListAction { ... }",
|
|
@@ -9139,6 +9613,7 @@
|
|
|
9139
9613
|
"ProFormCheckboxGroup",
|
|
9140
9614
|
"ProFormColProps",
|
|
9141
9615
|
"ProFormContextValue",
|
|
9616
|
+
"ProFormDateFormatter",
|
|
9142
9617
|
"ProFormDatePicker",
|
|
9143
9618
|
"ProFormDependency",
|
|
9144
9619
|
"ProFormDependencyProps",
|
|
@@ -9152,6 +9627,7 @@
|
|
|
9152
9627
|
"ProFormGroupProps",
|
|
9153
9628
|
"ProFormItem",
|
|
9154
9629
|
"ProFormItemProps",
|
|
9630
|
+
"ProFormItemSharedProps",
|
|
9155
9631
|
"ProFormList",
|
|
9156
9632
|
"ProFormListAction",
|
|
9157
9633
|
"ProFormMode",
|
|
@@ -9159,6 +9635,8 @@
|
|
|
9159
9635
|
"ProFormProps",
|
|
9160
9636
|
"ProFormRadioGroup",
|
|
9161
9637
|
"ProFormRequestOption",
|
|
9638
|
+
"ProFormSchemaColumn",
|
|
9639
|
+
"ProFormSchemaValueType",
|
|
9162
9640
|
"ProFormSelect",
|
|
9163
9641
|
"ProFormSlider",
|
|
9164
9642
|
"ProFormSwitch",
|
|
@@ -9170,10 +9648,14 @@
|
|
|
9170
9648
|
"QueryFilter",
|
|
9171
9649
|
"QueryFilterProps",
|
|
9172
9650
|
"Rule",
|
|
9651
|
+
"SchemaForm",
|
|
9652
|
+
"SchemaFormProps",
|
|
9173
9653
|
"SubmitterProps",
|
|
9654
|
+
"UseFormWatch",
|
|
9174
9655
|
"ValidateStatus",
|
|
9175
9656
|
"ValidateTrigger",
|
|
9176
|
-
"createProFormField"
|
|
9657
|
+
"createProFormField",
|
|
9658
|
+
"useFormWatch"
|
|
9177
9659
|
],
|
|
9178
9660
|
"searchTags": [],
|
|
9179
9661
|
"typeText": "interface ProFormListProps { ... }",
|
|
@@ -9211,6 +9693,7 @@
|
|
|
9211
9693
|
"ProFormCheckboxGroup",
|
|
9212
9694
|
"ProFormColProps",
|
|
9213
9695
|
"ProFormContextValue",
|
|
9696
|
+
"ProFormDateFormatter",
|
|
9214
9697
|
"ProFormDatePicker",
|
|
9215
9698
|
"ProFormDependency",
|
|
9216
9699
|
"ProFormDependencyProps",
|
|
@@ -9224,6 +9707,7 @@
|
|
|
9224
9707
|
"ProFormGroupProps",
|
|
9225
9708
|
"ProFormItem",
|
|
9226
9709
|
"ProFormItemProps",
|
|
9710
|
+
"ProFormItemSharedProps",
|
|
9227
9711
|
"ProFormList",
|
|
9228
9712
|
"ProFormListAction",
|
|
9229
9713
|
"ProFormListProps",
|
|
@@ -9231,6 +9715,8 @@
|
|
|
9231
9715
|
"ProFormProps",
|
|
9232
9716
|
"ProFormRadioGroup",
|
|
9233
9717
|
"ProFormRequestOption",
|
|
9718
|
+
"ProFormSchemaColumn",
|
|
9719
|
+
"ProFormSchemaValueType",
|
|
9234
9720
|
"ProFormSelect",
|
|
9235
9721
|
"ProFormSlider",
|
|
9236
9722
|
"ProFormSwitch",
|
|
@@ -9242,10 +9728,14 @@
|
|
|
9242
9728
|
"QueryFilter",
|
|
9243
9729
|
"QueryFilterProps",
|
|
9244
9730
|
"Rule",
|
|
9731
|
+
"SchemaForm",
|
|
9732
|
+
"SchemaFormProps",
|
|
9245
9733
|
"SubmitterProps",
|
|
9734
|
+
"UseFormWatch",
|
|
9246
9735
|
"ValidateStatus",
|
|
9247
9736
|
"ValidateTrigger",
|
|
9248
|
-
"createProFormField"
|
|
9737
|
+
"createProFormField",
|
|
9738
|
+
"useFormWatch"
|
|
9249
9739
|
],
|
|
9250
9740
|
"searchTags": [],
|
|
9251
9741
|
"typeText": "(typeof PROFORM_MODES)[number]",
|
|
@@ -9283,6 +9773,7 @@
|
|
|
9283
9773
|
"ProFormCheckboxGroup",
|
|
9284
9774
|
"ProFormColProps",
|
|
9285
9775
|
"ProFormContextValue",
|
|
9776
|
+
"ProFormDateFormatter",
|
|
9286
9777
|
"ProFormDatePicker",
|
|
9287
9778
|
"ProFormDependency",
|
|
9288
9779
|
"ProFormDependencyProps",
|
|
@@ -9296,6 +9787,7 @@
|
|
|
9296
9787
|
"ProFormGroupProps",
|
|
9297
9788
|
"ProFormItem",
|
|
9298
9789
|
"ProFormItemProps",
|
|
9790
|
+
"ProFormItemSharedProps",
|
|
9299
9791
|
"ProFormList",
|
|
9300
9792
|
"ProFormListAction",
|
|
9301
9793
|
"ProFormListProps",
|
|
@@ -9303,6 +9795,8 @@
|
|
|
9303
9795
|
"ProFormProps",
|
|
9304
9796
|
"ProFormRadioGroup",
|
|
9305
9797
|
"ProFormRequestOption",
|
|
9798
|
+
"ProFormSchemaColumn",
|
|
9799
|
+
"ProFormSchemaValueType",
|
|
9306
9800
|
"ProFormSelect",
|
|
9307
9801
|
"ProFormSlider",
|
|
9308
9802
|
"ProFormSwitch",
|
|
@@ -9314,10 +9808,14 @@
|
|
|
9314
9808
|
"QueryFilter",
|
|
9315
9809
|
"QueryFilterProps",
|
|
9316
9810
|
"Rule",
|
|
9811
|
+
"SchemaForm",
|
|
9812
|
+
"SchemaFormProps",
|
|
9317
9813
|
"SubmitterProps",
|
|
9814
|
+
"UseFormWatch",
|
|
9318
9815
|
"ValidateStatus",
|
|
9319
9816
|
"ValidateTrigger",
|
|
9320
|
-
"createProFormField"
|
|
9817
|
+
"createProFormField",
|
|
9818
|
+
"useFormWatch"
|
|
9321
9819
|
],
|
|
9322
9820
|
"searchTags": [],
|
|
9323
9821
|
"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';",
|
|
@@ -9354,6 +9852,7 @@
|
|
|
9354
9852
|
"ProFormCheckboxGroup",
|
|
9355
9853
|
"ProFormColProps",
|
|
9356
9854
|
"ProFormContextValue",
|
|
9855
|
+
"ProFormDateFormatter",
|
|
9357
9856
|
"ProFormDatePicker",
|
|
9358
9857
|
"ProFormDependency",
|
|
9359
9858
|
"ProFormDependencyProps",
|
|
@@ -9367,6 +9866,7 @@
|
|
|
9367
9866
|
"ProFormGroupProps",
|
|
9368
9867
|
"ProFormItem",
|
|
9369
9868
|
"ProFormItemProps",
|
|
9869
|
+
"ProFormItemSharedProps",
|
|
9370
9870
|
"ProFormList",
|
|
9371
9871
|
"ProFormListAction",
|
|
9372
9872
|
"ProFormListProps",
|
|
@@ -9374,6 +9874,8 @@
|
|
|
9374
9874
|
"ProFormPassword",
|
|
9375
9875
|
"ProFormRadioGroup",
|
|
9376
9876
|
"ProFormRequestOption",
|
|
9877
|
+
"ProFormSchemaColumn",
|
|
9878
|
+
"ProFormSchemaValueType",
|
|
9377
9879
|
"ProFormSelect",
|
|
9378
9880
|
"ProFormSlider",
|
|
9379
9881
|
"ProFormSwitch",
|
|
@@ -9385,10 +9887,14 @@
|
|
|
9385
9887
|
"QueryFilter",
|
|
9386
9888
|
"QueryFilterProps",
|
|
9387
9889
|
"Rule",
|
|
9890
|
+
"SchemaForm",
|
|
9891
|
+
"SchemaFormProps",
|
|
9388
9892
|
"SubmitterProps",
|
|
9893
|
+
"UseFormWatch",
|
|
9389
9894
|
"ValidateStatus",
|
|
9390
9895
|
"ValidateTrigger",
|
|
9391
|
-
"createProFormField"
|
|
9896
|
+
"createProFormField",
|
|
9897
|
+
"useFormWatch"
|
|
9392
9898
|
],
|
|
9393
9899
|
"searchTags": [],
|
|
9394
9900
|
"typeText": "interface ProFormProps extends Omit<FormHTMLAttributes<HTMLFormElement>, 'onSubmit' | 'onReset'> { ... }",
|
|
@@ -9426,6 +9932,7 @@
|
|
|
9426
9932
|
"ProFormCheckboxGroup",
|
|
9427
9933
|
"ProFormColProps",
|
|
9428
9934
|
"ProFormContextValue",
|
|
9935
|
+
"ProFormDateFormatter",
|
|
9429
9936
|
"ProFormDatePicker",
|
|
9430
9937
|
"ProFormDependency",
|
|
9431
9938
|
"ProFormDependencyProps",
|
|
@@ -9439,6 +9946,7 @@
|
|
|
9439
9946
|
"ProFormGroupProps",
|
|
9440
9947
|
"ProFormItem",
|
|
9441
9948
|
"ProFormItemProps",
|
|
9949
|
+
"ProFormItemSharedProps",
|
|
9442
9950
|
"ProFormList",
|
|
9443
9951
|
"ProFormListAction",
|
|
9444
9952
|
"ProFormListProps",
|
|
@@ -9446,6 +9954,8 @@
|
|
|
9446
9954
|
"ProFormPassword",
|
|
9447
9955
|
"ProFormProps",
|
|
9448
9956
|
"ProFormRequestOption",
|
|
9957
|
+
"ProFormSchemaColumn",
|
|
9958
|
+
"ProFormSchemaValueType",
|
|
9449
9959
|
"ProFormSelect",
|
|
9450
9960
|
"ProFormSlider",
|
|
9451
9961
|
"ProFormSwitch",
|
|
@@ -9457,10 +9967,14 @@
|
|
|
9457
9967
|
"QueryFilter",
|
|
9458
9968
|
"QueryFilterProps",
|
|
9459
9969
|
"Rule",
|
|
9970
|
+
"SchemaForm",
|
|
9971
|
+
"SchemaFormProps",
|
|
9460
9972
|
"SubmitterProps",
|
|
9973
|
+
"UseFormWatch",
|
|
9461
9974
|
"ValidateStatus",
|
|
9462
9975
|
"ValidateTrigger",
|
|
9463
|
-
"createProFormField"
|
|
9976
|
+
"createProFormField",
|
|
9977
|
+
"useFormWatch"
|
|
9464
9978
|
],
|
|
9465
9979
|
"searchTags": [],
|
|
9466
9980
|
"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';",
|
|
@@ -9497,6 +10011,7 @@
|
|
|
9497
10011
|
"ProFormCheckboxGroup",
|
|
9498
10012
|
"ProFormColProps",
|
|
9499
10013
|
"ProFormContextValue",
|
|
10014
|
+
"ProFormDateFormatter",
|
|
9500
10015
|
"ProFormDatePicker",
|
|
9501
10016
|
"ProFormDependency",
|
|
9502
10017
|
"ProFormDependencyProps",
|
|
@@ -9510,6 +10025,7 @@
|
|
|
9510
10025
|
"ProFormGroupProps",
|
|
9511
10026
|
"ProFormItem",
|
|
9512
10027
|
"ProFormItemProps",
|
|
10028
|
+
"ProFormItemSharedProps",
|
|
9513
10029
|
"ProFormList",
|
|
9514
10030
|
"ProFormListAction",
|
|
9515
10031
|
"ProFormListProps",
|
|
@@ -9517,6 +10033,8 @@
|
|
|
9517
10033
|
"ProFormPassword",
|
|
9518
10034
|
"ProFormProps",
|
|
9519
10035
|
"ProFormRadioGroup",
|
|
10036
|
+
"ProFormSchemaColumn",
|
|
10037
|
+
"ProFormSchemaValueType",
|
|
9520
10038
|
"ProFormSelect",
|
|
9521
10039
|
"ProFormSlider",
|
|
9522
10040
|
"ProFormSwitch",
|
|
@@ -9528,10 +10046,14 @@
|
|
|
9528
10046
|
"QueryFilter",
|
|
9529
10047
|
"QueryFilterProps",
|
|
9530
10048
|
"Rule",
|
|
10049
|
+
"SchemaForm",
|
|
10050
|
+
"SchemaFormProps",
|
|
9531
10051
|
"SubmitterProps",
|
|
10052
|
+
"UseFormWatch",
|
|
9532
10053
|
"ValidateStatus",
|
|
9533
10054
|
"ValidateTrigger",
|
|
9534
|
-
"createProFormField"
|
|
10055
|
+
"createProFormField",
|
|
10056
|
+
"useFormWatch"
|
|
9535
10057
|
],
|
|
9536
10058
|
"searchTags": [],
|
|
9537
10059
|
"typeText": "interface ProFormRequestOption { ... }",
|
|
@@ -9544,13 +10066,13 @@
|
|
|
9544
10066
|
]
|
|
9545
10067
|
},
|
|
9546
10068
|
{
|
|
9547
|
-
"name": "
|
|
9548
|
-
"kind": "
|
|
10069
|
+
"name": "ProFormSchemaColumn",
|
|
10070
|
+
"kind": "type",
|
|
9549
10071
|
"category": "forms",
|
|
9550
10072
|
"summary": "",
|
|
9551
10073
|
"importPath": "@1money/component-ui",
|
|
9552
10074
|
"subpathImport": "@1money/component-ui/ProForm",
|
|
9553
|
-
"sourceFile": "src/components/ProForm/
|
|
10075
|
+
"sourceFile": "src/components/ProForm/interface.ts",
|
|
9554
10076
|
"props": [],
|
|
9555
10077
|
"extends": [],
|
|
9556
10078
|
"relatedSymbols": [
|
|
@@ -9569,6 +10091,7 @@
|
|
|
9569
10091
|
"ProFormCheckboxGroup",
|
|
9570
10092
|
"ProFormColProps",
|
|
9571
10093
|
"ProFormContextValue",
|
|
10094
|
+
"ProFormDateFormatter",
|
|
9572
10095
|
"ProFormDatePicker",
|
|
9573
10096
|
"ProFormDependency",
|
|
9574
10097
|
"ProFormDependencyProps",
|
|
@@ -9582,6 +10105,7 @@
|
|
|
9582
10105
|
"ProFormGroupProps",
|
|
9583
10106
|
"ProFormItem",
|
|
9584
10107
|
"ProFormItemProps",
|
|
10108
|
+
"ProFormItemSharedProps",
|
|
9585
10109
|
"ProFormList",
|
|
9586
10110
|
"ProFormListAction",
|
|
9587
10111
|
"ProFormListProps",
|
|
@@ -9590,6 +10114,8 @@
|
|
|
9590
10114
|
"ProFormProps",
|
|
9591
10115
|
"ProFormRadioGroup",
|
|
9592
10116
|
"ProFormRequestOption",
|
|
10117
|
+
"ProFormSchemaValueType",
|
|
10118
|
+
"ProFormSelect",
|
|
9593
10119
|
"ProFormSlider",
|
|
9594
10120
|
"ProFormSwitch",
|
|
9595
10121
|
"ProFormText",
|
|
@@ -9600,12 +10126,17 @@
|
|
|
9600
10126
|
"QueryFilter",
|
|
9601
10127
|
"QueryFilterProps",
|
|
9602
10128
|
"Rule",
|
|
10129
|
+
"SchemaForm",
|
|
10130
|
+
"SchemaFormProps",
|
|
9603
10131
|
"SubmitterProps",
|
|
10132
|
+
"UseFormWatch",
|
|
9604
10133
|
"ValidateStatus",
|
|
9605
10134
|
"ValidateTrigger",
|
|
9606
|
-
"createProFormField"
|
|
10135
|
+
"createProFormField",
|
|
10136
|
+
"useFormWatch"
|
|
9607
10137
|
],
|
|
9608
10138
|
"searchTags": [],
|
|
10139
|
+
"typeText": "interface ProFormSchemaColumn { ... }",
|
|
9609
10140
|
"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';",
|
|
9610
10141
|
"examples": [
|
|
9611
10142
|
{
|
|
@@ -9615,13 +10146,13 @@
|
|
|
9615
10146
|
]
|
|
9616
10147
|
},
|
|
9617
10148
|
{
|
|
9618
|
-
"name": "
|
|
9619
|
-
"kind": "
|
|
10149
|
+
"name": "ProFormSchemaValueType",
|
|
10150
|
+
"kind": "type",
|
|
9620
10151
|
"category": "forms",
|
|
9621
10152
|
"summary": "",
|
|
9622
10153
|
"importPath": "@1money/component-ui",
|
|
9623
10154
|
"subpathImport": "@1money/component-ui/ProForm",
|
|
9624
|
-
"sourceFile": "src/components/ProForm/
|
|
10155
|
+
"sourceFile": "src/components/ProForm/interface.ts",
|
|
9625
10156
|
"props": [],
|
|
9626
10157
|
"extends": [],
|
|
9627
10158
|
"relatedSymbols": [
|
|
@@ -9640,6 +10171,7 @@
|
|
|
9640
10171
|
"ProFormCheckboxGroup",
|
|
9641
10172
|
"ProFormColProps",
|
|
9642
10173
|
"ProFormContextValue",
|
|
10174
|
+
"ProFormDateFormatter",
|
|
9643
10175
|
"ProFormDatePicker",
|
|
9644
10176
|
"ProFormDependency",
|
|
9645
10177
|
"ProFormDependencyProps",
|
|
@@ -9653,6 +10185,7 @@
|
|
|
9653
10185
|
"ProFormGroupProps",
|
|
9654
10186
|
"ProFormItem",
|
|
9655
10187
|
"ProFormItemProps",
|
|
10188
|
+
"ProFormItemSharedProps",
|
|
9656
10189
|
"ProFormList",
|
|
9657
10190
|
"ProFormListAction",
|
|
9658
10191
|
"ProFormListProps",
|
|
@@ -9661,7 +10194,9 @@
|
|
|
9661
10194
|
"ProFormProps",
|
|
9662
10195
|
"ProFormRadioGroup",
|
|
9663
10196
|
"ProFormRequestOption",
|
|
10197
|
+
"ProFormSchemaColumn",
|
|
9664
10198
|
"ProFormSelect",
|
|
10199
|
+
"ProFormSlider",
|
|
9665
10200
|
"ProFormSwitch",
|
|
9666
10201
|
"ProFormText",
|
|
9667
10202
|
"ProFormTextArea",
|
|
@@ -9671,12 +10206,17 @@
|
|
|
9671
10206
|
"QueryFilter",
|
|
9672
10207
|
"QueryFilterProps",
|
|
9673
10208
|
"Rule",
|
|
10209
|
+
"SchemaForm",
|
|
10210
|
+
"SchemaFormProps",
|
|
9674
10211
|
"SubmitterProps",
|
|
10212
|
+
"UseFormWatch",
|
|
9675
10213
|
"ValidateStatus",
|
|
9676
10214
|
"ValidateTrigger",
|
|
9677
|
-
"createProFormField"
|
|
10215
|
+
"createProFormField",
|
|
10216
|
+
"useFormWatch"
|
|
9678
10217
|
],
|
|
9679
10218
|
"searchTags": [],
|
|
10219
|
+
"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'",
|
|
9680
10220
|
"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';",
|
|
9681
10221
|
"examples": [
|
|
9682
10222
|
{
|
|
@@ -9686,13 +10226,13 @@
|
|
|
9686
10226
|
]
|
|
9687
10227
|
},
|
|
9688
10228
|
{
|
|
9689
|
-
"name": "
|
|
10229
|
+
"name": "ProFormSelect",
|
|
9690
10230
|
"kind": "component",
|
|
9691
10231
|
"category": "forms",
|
|
9692
10232
|
"summary": "",
|
|
9693
10233
|
"importPath": "@1money/component-ui",
|
|
9694
10234
|
"subpathImport": "@1money/component-ui/ProForm",
|
|
9695
|
-
"sourceFile": "src/components/ProForm/fields/
|
|
10235
|
+
"sourceFile": "src/components/ProForm/fields/ProFormSelect.tsx",
|
|
9696
10236
|
"props": [],
|
|
9697
10237
|
"extends": [],
|
|
9698
10238
|
"relatedSymbols": [
|
|
@@ -9711,6 +10251,7 @@
|
|
|
9711
10251
|
"ProFormCheckboxGroup",
|
|
9712
10252
|
"ProFormColProps",
|
|
9713
10253
|
"ProFormContextValue",
|
|
10254
|
+
"ProFormDateFormatter",
|
|
9714
10255
|
"ProFormDatePicker",
|
|
9715
10256
|
"ProFormDependency",
|
|
9716
10257
|
"ProFormDependencyProps",
|
|
@@ -9724,6 +10265,7 @@
|
|
|
9724
10265
|
"ProFormGroupProps",
|
|
9725
10266
|
"ProFormItem",
|
|
9726
10267
|
"ProFormItemProps",
|
|
10268
|
+
"ProFormItemSharedProps",
|
|
9727
10269
|
"ProFormList",
|
|
9728
10270
|
"ProFormListAction",
|
|
9729
10271
|
"ProFormListProps",
|
|
@@ -9732,8 +10274,10 @@
|
|
|
9732
10274
|
"ProFormProps",
|
|
9733
10275
|
"ProFormRadioGroup",
|
|
9734
10276
|
"ProFormRequestOption",
|
|
9735
|
-
"
|
|
10277
|
+
"ProFormSchemaColumn",
|
|
10278
|
+
"ProFormSchemaValueType",
|
|
9736
10279
|
"ProFormSlider",
|
|
10280
|
+
"ProFormSwitch",
|
|
9737
10281
|
"ProFormText",
|
|
9738
10282
|
"ProFormTextArea",
|
|
9739
10283
|
"ProFormUpload",
|
|
@@ -9742,10 +10286,14 @@
|
|
|
9742
10286
|
"QueryFilter",
|
|
9743
10287
|
"QueryFilterProps",
|
|
9744
10288
|
"Rule",
|
|
10289
|
+
"SchemaForm",
|
|
10290
|
+
"SchemaFormProps",
|
|
9745
10291
|
"SubmitterProps",
|
|
10292
|
+
"UseFormWatch",
|
|
9746
10293
|
"ValidateStatus",
|
|
9747
10294
|
"ValidateTrigger",
|
|
9748
|
-
"createProFormField"
|
|
10295
|
+
"createProFormField",
|
|
10296
|
+
"useFormWatch"
|
|
9749
10297
|
],
|
|
9750
10298
|
"searchTags": [],
|
|
9751
10299
|
"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 +10305,13 @@
|
|
|
9757
10305
|
]
|
|
9758
10306
|
},
|
|
9759
10307
|
{
|
|
9760
|
-
"name": "
|
|
10308
|
+
"name": "ProFormSlider",
|
|
9761
10309
|
"kind": "component",
|
|
9762
10310
|
"category": "forms",
|
|
9763
10311
|
"summary": "",
|
|
9764
10312
|
"importPath": "@1money/component-ui",
|
|
9765
10313
|
"subpathImport": "@1money/component-ui/ProForm",
|
|
9766
|
-
"sourceFile": "src/components/ProForm/fields/
|
|
10314
|
+
"sourceFile": "src/components/ProForm/fields/ProFormSlider.tsx",
|
|
9767
10315
|
"props": [],
|
|
9768
10316
|
"extends": [],
|
|
9769
10317
|
"relatedSymbols": [
|
|
@@ -9782,6 +10330,7 @@
|
|
|
9782
10330
|
"ProFormCheckboxGroup",
|
|
9783
10331
|
"ProFormColProps",
|
|
9784
10332
|
"ProFormContextValue",
|
|
10333
|
+
"ProFormDateFormatter",
|
|
9785
10334
|
"ProFormDatePicker",
|
|
9786
10335
|
"ProFormDependency",
|
|
9787
10336
|
"ProFormDependencyProps",
|
|
@@ -9795,6 +10344,7 @@
|
|
|
9795
10344
|
"ProFormGroupProps",
|
|
9796
10345
|
"ProFormItem",
|
|
9797
10346
|
"ProFormItemProps",
|
|
10347
|
+
"ProFormItemSharedProps",
|
|
9798
10348
|
"ProFormList",
|
|
9799
10349
|
"ProFormListAction",
|
|
9800
10350
|
"ProFormListProps",
|
|
@@ -9803,9 +10353,11 @@
|
|
|
9803
10353
|
"ProFormProps",
|
|
9804
10354
|
"ProFormRadioGroup",
|
|
9805
10355
|
"ProFormRequestOption",
|
|
10356
|
+
"ProFormSchemaColumn",
|
|
10357
|
+
"ProFormSchemaValueType",
|
|
9806
10358
|
"ProFormSelect",
|
|
9807
|
-
"ProFormSlider",
|
|
9808
10359
|
"ProFormSwitch",
|
|
10360
|
+
"ProFormText",
|
|
9809
10361
|
"ProFormTextArea",
|
|
9810
10362
|
"ProFormUpload",
|
|
9811
10363
|
"ProFormValueEnumObj",
|
|
@@ -9813,10 +10365,172 @@
|
|
|
9813
10365
|
"QueryFilter",
|
|
9814
10366
|
"QueryFilterProps",
|
|
9815
10367
|
"Rule",
|
|
10368
|
+
"SchemaForm",
|
|
10369
|
+
"SchemaFormProps",
|
|
9816
10370
|
"SubmitterProps",
|
|
10371
|
+
"UseFormWatch",
|
|
9817
10372
|
"ValidateStatus",
|
|
9818
10373
|
"ValidateTrigger",
|
|
9819
|
-
"createProFormField"
|
|
10374
|
+
"createProFormField",
|
|
10375
|
+
"useFormWatch"
|
|
10376
|
+
],
|
|
10377
|
+
"searchTags": [],
|
|
10378
|
+
"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';",
|
|
10379
|
+
"examples": [
|
|
10380
|
+
{
|
|
10381
|
+
"hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
|
|
10382
|
+
"source": "canonical"
|
|
10383
|
+
}
|
|
10384
|
+
]
|
|
10385
|
+
},
|
|
10386
|
+
{
|
|
10387
|
+
"name": "ProFormSwitch",
|
|
10388
|
+
"kind": "component",
|
|
10389
|
+
"category": "forms",
|
|
10390
|
+
"summary": "",
|
|
10391
|
+
"importPath": "@1money/component-ui",
|
|
10392
|
+
"subpathImport": "@1money/component-ui/ProForm",
|
|
10393
|
+
"sourceFile": "src/components/ProForm/fields/ProFormSwitch.tsx",
|
|
10394
|
+
"props": [],
|
|
10395
|
+
"extends": [],
|
|
10396
|
+
"relatedSymbols": [
|
|
10397
|
+
"CreateProFormFieldConfig",
|
|
10398
|
+
"DialogForm",
|
|
10399
|
+
"DialogFormProps",
|
|
10400
|
+
"DrawerForm",
|
|
10401
|
+
"DrawerFormProps",
|
|
10402
|
+
"FormCoreInstance",
|
|
10403
|
+
"FormInstance",
|
|
10404
|
+
"FormLayout",
|
|
10405
|
+
"FormSize",
|
|
10406
|
+
"LabelAlign",
|
|
10407
|
+
"ProForm",
|
|
10408
|
+
"ProFormCheckbox",
|
|
10409
|
+
"ProFormCheckboxGroup",
|
|
10410
|
+
"ProFormColProps",
|
|
10411
|
+
"ProFormContextValue",
|
|
10412
|
+
"ProFormDateFormatter",
|
|
10413
|
+
"ProFormDatePicker",
|
|
10414
|
+
"ProFormDependency",
|
|
10415
|
+
"ProFormDependencyProps",
|
|
10416
|
+
"ProFormFieldConvertValueFn",
|
|
10417
|
+
"ProFormFieldProps",
|
|
10418
|
+
"ProFormFieldSet",
|
|
10419
|
+
"ProFormFieldSetProps",
|
|
10420
|
+
"ProFormFieldTransformFn",
|
|
10421
|
+
"ProFormFormInstance",
|
|
10422
|
+
"ProFormGroup",
|
|
10423
|
+
"ProFormGroupProps",
|
|
10424
|
+
"ProFormItem",
|
|
10425
|
+
"ProFormItemProps",
|
|
10426
|
+
"ProFormItemSharedProps",
|
|
10427
|
+
"ProFormList",
|
|
10428
|
+
"ProFormListAction",
|
|
10429
|
+
"ProFormListProps",
|
|
10430
|
+
"ProFormMode",
|
|
10431
|
+
"ProFormPassword",
|
|
10432
|
+
"ProFormProps",
|
|
10433
|
+
"ProFormRadioGroup",
|
|
10434
|
+
"ProFormRequestOption",
|
|
10435
|
+
"ProFormSchemaColumn",
|
|
10436
|
+
"ProFormSchemaValueType",
|
|
10437
|
+
"ProFormSelect",
|
|
10438
|
+
"ProFormSlider",
|
|
10439
|
+
"ProFormText",
|
|
10440
|
+
"ProFormTextArea",
|
|
10441
|
+
"ProFormUpload",
|
|
10442
|
+
"ProFormValueEnumObj",
|
|
10443
|
+
"ProFormValueType",
|
|
10444
|
+
"QueryFilter",
|
|
10445
|
+
"QueryFilterProps",
|
|
10446
|
+
"Rule",
|
|
10447
|
+
"SchemaForm",
|
|
10448
|
+
"SchemaFormProps",
|
|
10449
|
+
"SubmitterProps",
|
|
10450
|
+
"UseFormWatch",
|
|
10451
|
+
"ValidateStatus",
|
|
10452
|
+
"ValidateTrigger",
|
|
10453
|
+
"createProFormField",
|
|
10454
|
+
"useFormWatch"
|
|
10455
|
+
],
|
|
10456
|
+
"searchTags": [],
|
|
10457
|
+
"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';",
|
|
10458
|
+
"examples": [
|
|
10459
|
+
{
|
|
10460
|
+
"hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
|
|
10461
|
+
"source": "canonical"
|
|
10462
|
+
}
|
|
10463
|
+
]
|
|
10464
|
+
},
|
|
10465
|
+
{
|
|
10466
|
+
"name": "ProFormText",
|
|
10467
|
+
"kind": "component",
|
|
10468
|
+
"category": "forms",
|
|
10469
|
+
"summary": "",
|
|
10470
|
+
"importPath": "@1money/component-ui",
|
|
10471
|
+
"subpathImport": "@1money/component-ui/ProForm",
|
|
10472
|
+
"sourceFile": "src/components/ProForm/fields/ProFormText.tsx",
|
|
10473
|
+
"props": [],
|
|
10474
|
+
"extends": [],
|
|
10475
|
+
"relatedSymbols": [
|
|
10476
|
+
"CreateProFormFieldConfig",
|
|
10477
|
+
"DialogForm",
|
|
10478
|
+
"DialogFormProps",
|
|
10479
|
+
"DrawerForm",
|
|
10480
|
+
"DrawerFormProps",
|
|
10481
|
+
"FormCoreInstance",
|
|
10482
|
+
"FormInstance",
|
|
10483
|
+
"FormLayout",
|
|
10484
|
+
"FormSize",
|
|
10485
|
+
"LabelAlign",
|
|
10486
|
+
"ProForm",
|
|
10487
|
+
"ProFormCheckbox",
|
|
10488
|
+
"ProFormCheckboxGroup",
|
|
10489
|
+
"ProFormColProps",
|
|
10490
|
+
"ProFormContextValue",
|
|
10491
|
+
"ProFormDateFormatter",
|
|
10492
|
+
"ProFormDatePicker",
|
|
10493
|
+
"ProFormDependency",
|
|
10494
|
+
"ProFormDependencyProps",
|
|
10495
|
+
"ProFormFieldConvertValueFn",
|
|
10496
|
+
"ProFormFieldProps",
|
|
10497
|
+
"ProFormFieldSet",
|
|
10498
|
+
"ProFormFieldSetProps",
|
|
10499
|
+
"ProFormFieldTransformFn",
|
|
10500
|
+
"ProFormFormInstance",
|
|
10501
|
+
"ProFormGroup",
|
|
10502
|
+
"ProFormGroupProps",
|
|
10503
|
+
"ProFormItem",
|
|
10504
|
+
"ProFormItemProps",
|
|
10505
|
+
"ProFormItemSharedProps",
|
|
10506
|
+
"ProFormList",
|
|
10507
|
+
"ProFormListAction",
|
|
10508
|
+
"ProFormListProps",
|
|
10509
|
+
"ProFormMode",
|
|
10510
|
+
"ProFormPassword",
|
|
10511
|
+
"ProFormProps",
|
|
10512
|
+
"ProFormRadioGroup",
|
|
10513
|
+
"ProFormRequestOption",
|
|
10514
|
+
"ProFormSchemaColumn",
|
|
10515
|
+
"ProFormSchemaValueType",
|
|
10516
|
+
"ProFormSelect",
|
|
10517
|
+
"ProFormSlider",
|
|
10518
|
+
"ProFormSwitch",
|
|
10519
|
+
"ProFormTextArea",
|
|
10520
|
+
"ProFormUpload",
|
|
10521
|
+
"ProFormValueEnumObj",
|
|
10522
|
+
"ProFormValueType",
|
|
10523
|
+
"QueryFilter",
|
|
10524
|
+
"QueryFilterProps",
|
|
10525
|
+
"Rule",
|
|
10526
|
+
"SchemaForm",
|
|
10527
|
+
"SchemaFormProps",
|
|
10528
|
+
"SubmitterProps",
|
|
10529
|
+
"UseFormWatch",
|
|
10530
|
+
"ValidateStatus",
|
|
10531
|
+
"ValidateTrigger",
|
|
10532
|
+
"createProFormField",
|
|
10533
|
+
"useFormWatch"
|
|
9820
10534
|
],
|
|
9821
10535
|
"searchTags": [],
|
|
9822
10536
|
"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';",
|
|
@@ -9853,6 +10567,7 @@
|
|
|
9853
10567
|
"ProFormCheckboxGroup",
|
|
9854
10568
|
"ProFormColProps",
|
|
9855
10569
|
"ProFormContextValue",
|
|
10570
|
+
"ProFormDateFormatter",
|
|
9856
10571
|
"ProFormDatePicker",
|
|
9857
10572
|
"ProFormDependency",
|
|
9858
10573
|
"ProFormDependencyProps",
|
|
@@ -9866,6 +10581,7 @@
|
|
|
9866
10581
|
"ProFormGroupProps",
|
|
9867
10582
|
"ProFormItem",
|
|
9868
10583
|
"ProFormItemProps",
|
|
10584
|
+
"ProFormItemSharedProps",
|
|
9869
10585
|
"ProFormList",
|
|
9870
10586
|
"ProFormListAction",
|
|
9871
10587
|
"ProFormListProps",
|
|
@@ -9874,6 +10590,8 @@
|
|
|
9874
10590
|
"ProFormProps",
|
|
9875
10591
|
"ProFormRadioGroup",
|
|
9876
10592
|
"ProFormRequestOption",
|
|
10593
|
+
"ProFormSchemaColumn",
|
|
10594
|
+
"ProFormSchemaValueType",
|
|
9877
10595
|
"ProFormSelect",
|
|
9878
10596
|
"ProFormSlider",
|
|
9879
10597
|
"ProFormSwitch",
|
|
@@ -9884,10 +10602,14 @@
|
|
|
9884
10602
|
"QueryFilter",
|
|
9885
10603
|
"QueryFilterProps",
|
|
9886
10604
|
"Rule",
|
|
10605
|
+
"SchemaForm",
|
|
10606
|
+
"SchemaFormProps",
|
|
9887
10607
|
"SubmitterProps",
|
|
10608
|
+
"UseFormWatch",
|
|
9888
10609
|
"ValidateStatus",
|
|
9889
10610
|
"ValidateTrigger",
|
|
9890
|
-
"createProFormField"
|
|
10611
|
+
"createProFormField",
|
|
10612
|
+
"useFormWatch"
|
|
9891
10613
|
],
|
|
9892
10614
|
"searchTags": [],
|
|
9893
10615
|
"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';",
|
|
@@ -9924,6 +10646,7 @@
|
|
|
9924
10646
|
"ProFormCheckboxGroup",
|
|
9925
10647
|
"ProFormColProps",
|
|
9926
10648
|
"ProFormContextValue",
|
|
10649
|
+
"ProFormDateFormatter",
|
|
9927
10650
|
"ProFormDatePicker",
|
|
9928
10651
|
"ProFormDependency",
|
|
9929
10652
|
"ProFormDependencyProps",
|
|
@@ -9937,6 +10660,7 @@
|
|
|
9937
10660
|
"ProFormGroupProps",
|
|
9938
10661
|
"ProFormItem",
|
|
9939
10662
|
"ProFormItemProps",
|
|
10663
|
+
"ProFormItemSharedProps",
|
|
9940
10664
|
"ProFormList",
|
|
9941
10665
|
"ProFormListAction",
|
|
9942
10666
|
"ProFormListProps",
|
|
@@ -9945,6 +10669,8 @@
|
|
|
9945
10669
|
"ProFormProps",
|
|
9946
10670
|
"ProFormRadioGroup",
|
|
9947
10671
|
"ProFormRequestOption",
|
|
10672
|
+
"ProFormSchemaColumn",
|
|
10673
|
+
"ProFormSchemaValueType",
|
|
9948
10674
|
"ProFormSelect",
|
|
9949
10675
|
"ProFormSlider",
|
|
9950
10676
|
"ProFormSwitch",
|
|
@@ -9955,10 +10681,14 @@
|
|
|
9955
10681
|
"QueryFilter",
|
|
9956
10682
|
"QueryFilterProps",
|
|
9957
10683
|
"Rule",
|
|
10684
|
+
"SchemaForm",
|
|
10685
|
+
"SchemaFormProps",
|
|
9958
10686
|
"SubmitterProps",
|
|
10687
|
+
"UseFormWatch",
|
|
9959
10688
|
"ValidateStatus",
|
|
9960
10689
|
"ValidateTrigger",
|
|
9961
|
-
"createProFormField"
|
|
10690
|
+
"createProFormField",
|
|
10691
|
+
"useFormWatch"
|
|
9962
10692
|
],
|
|
9963
10693
|
"searchTags": [],
|
|
9964
10694
|
"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';",
|
|
@@ -9995,6 +10725,7 @@
|
|
|
9995
10725
|
"ProFormCheckboxGroup",
|
|
9996
10726
|
"ProFormColProps",
|
|
9997
10727
|
"ProFormContextValue",
|
|
10728
|
+
"ProFormDateFormatter",
|
|
9998
10729
|
"ProFormDatePicker",
|
|
9999
10730
|
"ProFormDependency",
|
|
10000
10731
|
"ProFormDependencyProps",
|
|
@@ -10008,6 +10739,7 @@
|
|
|
10008
10739
|
"ProFormGroupProps",
|
|
10009
10740
|
"ProFormItem",
|
|
10010
10741
|
"ProFormItemProps",
|
|
10742
|
+
"ProFormItemSharedProps",
|
|
10011
10743
|
"ProFormList",
|
|
10012
10744
|
"ProFormListAction",
|
|
10013
10745
|
"ProFormListProps",
|
|
@@ -10016,6 +10748,8 @@
|
|
|
10016
10748
|
"ProFormProps",
|
|
10017
10749
|
"ProFormRadioGroup",
|
|
10018
10750
|
"ProFormRequestOption",
|
|
10751
|
+
"ProFormSchemaColumn",
|
|
10752
|
+
"ProFormSchemaValueType",
|
|
10019
10753
|
"ProFormSelect",
|
|
10020
10754
|
"ProFormSlider",
|
|
10021
10755
|
"ProFormSwitch",
|
|
@@ -10026,10 +10760,14 @@
|
|
|
10026
10760
|
"QueryFilter",
|
|
10027
10761
|
"QueryFilterProps",
|
|
10028
10762
|
"Rule",
|
|
10763
|
+
"SchemaForm",
|
|
10764
|
+
"SchemaFormProps",
|
|
10029
10765
|
"SubmitterProps",
|
|
10766
|
+
"UseFormWatch",
|
|
10030
10767
|
"ValidateStatus",
|
|
10031
10768
|
"ValidateTrigger",
|
|
10032
|
-
"createProFormField"
|
|
10769
|
+
"createProFormField",
|
|
10770
|
+
"useFormWatch"
|
|
10033
10771
|
],
|
|
10034
10772
|
"searchTags": [],
|
|
10035
10773
|
"typeText": "Record<\n string | number,\n string | { text: string; disabled?: boolean }\n>",
|
|
@@ -10067,6 +10805,7 @@
|
|
|
10067
10805
|
"ProFormCheckboxGroup",
|
|
10068
10806
|
"ProFormColProps",
|
|
10069
10807
|
"ProFormContextValue",
|
|
10808
|
+
"ProFormDateFormatter",
|
|
10070
10809
|
"ProFormDatePicker",
|
|
10071
10810
|
"ProFormDependency",
|
|
10072
10811
|
"ProFormDependencyProps",
|
|
@@ -10080,6 +10819,7 @@
|
|
|
10080
10819
|
"ProFormGroupProps",
|
|
10081
10820
|
"ProFormItem",
|
|
10082
10821
|
"ProFormItemProps",
|
|
10822
|
+
"ProFormItemSharedProps",
|
|
10083
10823
|
"ProFormList",
|
|
10084
10824
|
"ProFormListAction",
|
|
10085
10825
|
"ProFormListProps",
|
|
@@ -10088,6 +10828,8 @@
|
|
|
10088
10828
|
"ProFormProps",
|
|
10089
10829
|
"ProFormRadioGroup",
|
|
10090
10830
|
"ProFormRequestOption",
|
|
10831
|
+
"ProFormSchemaColumn",
|
|
10832
|
+
"ProFormSchemaValueType",
|
|
10091
10833
|
"ProFormSelect",
|
|
10092
10834
|
"ProFormSlider",
|
|
10093
10835
|
"ProFormSwitch",
|
|
@@ -10098,10 +10840,14 @@
|
|
|
10098
10840
|
"QueryFilter",
|
|
10099
10841
|
"QueryFilterProps",
|
|
10100
10842
|
"Rule",
|
|
10843
|
+
"SchemaForm",
|
|
10844
|
+
"SchemaFormProps",
|
|
10101
10845
|
"SubmitterProps",
|
|
10846
|
+
"UseFormWatch",
|
|
10102
10847
|
"ValidateStatus",
|
|
10103
10848
|
"ValidateTrigger",
|
|
10104
|
-
"createProFormField"
|
|
10849
|
+
"createProFormField",
|
|
10850
|
+
"useFormWatch"
|
|
10105
10851
|
],
|
|
10106
10852
|
"searchTags": [],
|
|
10107
10853
|
"typeText": "| 'text'\n | 'password'\n | 'digit'\n | 'date'\n | 'dateTime'\n | 'select'\n | 'radio'\n | 'switch'\n | 'tag'",
|
|
@@ -10961,7 +11707,7 @@
|
|
|
10961
11707
|
"name": "QueryFilter",
|
|
10962
11708
|
"kind": "component",
|
|
10963
11709
|
"category": "forms",
|
|
10964
|
-
"summary": "",
|
|
11710
|
+
"summary": "Generic-aware export — keeps `<QueryFilter<MyValues> …>` fully typed.",
|
|
10965
11711
|
"importPath": "@1money/component-ui",
|
|
10966
11712
|
"subpathImport": "@1money/component-ui/ProForm",
|
|
10967
11713
|
"sourceFile": "src/components/ProForm/layouts/QueryFilter.tsx",
|
|
@@ -11032,7 +11778,7 @@
|
|
|
11032
11778
|
}
|
|
11033
11779
|
],
|
|
11034
11780
|
"extends": [
|
|
11035
|
-
"ProFormProps"
|
|
11781
|
+
"ProFormProps<Values>"
|
|
11036
11782
|
],
|
|
11037
11783
|
"relatedSymbols": [
|
|
11038
11784
|
"CreateProFormFieldConfig",
|
|
@@ -11050,6 +11796,7 @@
|
|
|
11050
11796
|
"ProFormCheckboxGroup",
|
|
11051
11797
|
"ProFormColProps",
|
|
11052
11798
|
"ProFormContextValue",
|
|
11799
|
+
"ProFormDateFormatter",
|
|
11053
11800
|
"ProFormDatePicker",
|
|
11054
11801
|
"ProFormDependency",
|
|
11055
11802
|
"ProFormDependencyProps",
|
|
@@ -11063,6 +11810,7 @@
|
|
|
11063
11810
|
"ProFormGroupProps",
|
|
11064
11811
|
"ProFormItem",
|
|
11065
11812
|
"ProFormItemProps",
|
|
11813
|
+
"ProFormItemSharedProps",
|
|
11066
11814
|
"ProFormList",
|
|
11067
11815
|
"ProFormListAction",
|
|
11068
11816
|
"ProFormListProps",
|
|
@@ -11071,6 +11819,8 @@
|
|
|
11071
11819
|
"ProFormProps",
|
|
11072
11820
|
"ProFormRadioGroup",
|
|
11073
11821
|
"ProFormRequestOption",
|
|
11822
|
+
"ProFormSchemaColumn",
|
|
11823
|
+
"ProFormSchemaValueType",
|
|
11074
11824
|
"ProFormSelect",
|
|
11075
11825
|
"ProFormSlider",
|
|
11076
11826
|
"ProFormSwitch",
|
|
@@ -11081,10 +11831,14 @@
|
|
|
11081
11831
|
"ProFormValueType",
|
|
11082
11832
|
"QueryFilterProps",
|
|
11083
11833
|
"Rule",
|
|
11834
|
+
"SchemaForm",
|
|
11835
|
+
"SchemaFormProps",
|
|
11084
11836
|
"SubmitterProps",
|
|
11837
|
+
"UseFormWatch",
|
|
11085
11838
|
"ValidateStatus",
|
|
11086
11839
|
"ValidateTrigger",
|
|
11087
|
-
"createProFormField"
|
|
11840
|
+
"createProFormField",
|
|
11841
|
+
"useFormWatch"
|
|
11088
11842
|
],
|
|
11089
11843
|
"searchTags": [],
|
|
11090
11844
|
"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,6 +11875,7 @@
|
|
|
11121
11875
|
"ProFormCheckboxGroup",
|
|
11122
11876
|
"ProFormColProps",
|
|
11123
11877
|
"ProFormContextValue",
|
|
11878
|
+
"ProFormDateFormatter",
|
|
11124
11879
|
"ProFormDatePicker",
|
|
11125
11880
|
"ProFormDependency",
|
|
11126
11881
|
"ProFormDependencyProps",
|
|
@@ -11134,6 +11889,7 @@
|
|
|
11134
11889
|
"ProFormGroupProps",
|
|
11135
11890
|
"ProFormItem",
|
|
11136
11891
|
"ProFormItemProps",
|
|
11892
|
+
"ProFormItemSharedProps",
|
|
11137
11893
|
"ProFormList",
|
|
11138
11894
|
"ProFormListAction",
|
|
11139
11895
|
"ProFormListProps",
|
|
@@ -11142,6 +11898,8 @@
|
|
|
11142
11898
|
"ProFormProps",
|
|
11143
11899
|
"ProFormRadioGroup",
|
|
11144
11900
|
"ProFormRequestOption",
|
|
11901
|
+
"ProFormSchemaColumn",
|
|
11902
|
+
"ProFormSchemaValueType",
|
|
11145
11903
|
"ProFormSelect",
|
|
11146
11904
|
"ProFormSlider",
|
|
11147
11905
|
"ProFormSwitch",
|
|
@@ -11152,13 +11910,17 @@
|
|
|
11152
11910
|
"ProFormValueType",
|
|
11153
11911
|
"QueryFilter",
|
|
11154
11912
|
"Rule",
|
|
11913
|
+
"SchemaForm",
|
|
11914
|
+
"SchemaFormProps",
|
|
11155
11915
|
"SubmitterProps",
|
|
11916
|
+
"UseFormWatch",
|
|
11156
11917
|
"ValidateStatus",
|
|
11157
11918
|
"ValidateTrigger",
|
|
11158
|
-
"createProFormField"
|
|
11919
|
+
"createProFormField",
|
|
11920
|
+
"useFormWatch"
|
|
11159
11921
|
],
|
|
11160
11922
|
"searchTags": [],
|
|
11161
|
-
"typeText": "interface QueryFilterProps extends ProFormProps { ... }",
|
|
11923
|
+
"typeText": "interface QueryFilterProps extends ProFormProps<Values> { ... }",
|
|
11162
11924
|
"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
11925
|
"examples": [
|
|
11164
11926
|
{
|
|
@@ -12081,6 +12843,7 @@
|
|
|
12081
12843
|
"ProFormCheckboxGroup",
|
|
12082
12844
|
"ProFormColProps",
|
|
12083
12845
|
"ProFormContextValue",
|
|
12846
|
+
"ProFormDateFormatter",
|
|
12084
12847
|
"ProFormDatePicker",
|
|
12085
12848
|
"ProFormDependency",
|
|
12086
12849
|
"ProFormDependencyProps",
|
|
@@ -12094,6 +12857,7 @@
|
|
|
12094
12857
|
"ProFormGroupProps",
|
|
12095
12858
|
"ProFormItem",
|
|
12096
12859
|
"ProFormItemProps",
|
|
12860
|
+
"ProFormItemSharedProps",
|
|
12097
12861
|
"ProFormList",
|
|
12098
12862
|
"ProFormListAction",
|
|
12099
12863
|
"ProFormListProps",
|
|
@@ -12102,6 +12866,8 @@
|
|
|
12102
12866
|
"ProFormProps",
|
|
12103
12867
|
"ProFormRadioGroup",
|
|
12104
12868
|
"ProFormRequestOption",
|
|
12869
|
+
"ProFormSchemaColumn",
|
|
12870
|
+
"ProFormSchemaValueType",
|
|
12105
12871
|
"ProFormSelect",
|
|
12106
12872
|
"ProFormSlider",
|
|
12107
12873
|
"ProFormSwitch",
|
|
@@ -12112,10 +12878,14 @@
|
|
|
12112
12878
|
"ProFormValueType",
|
|
12113
12879
|
"QueryFilter",
|
|
12114
12880
|
"QueryFilterProps",
|
|
12881
|
+
"SchemaForm",
|
|
12882
|
+
"SchemaFormProps",
|
|
12115
12883
|
"SubmitterProps",
|
|
12884
|
+
"UseFormWatch",
|
|
12116
12885
|
"ValidateStatus",
|
|
12117
12886
|
"ValidateTrigger",
|
|
12118
|
-
"createProFormField"
|
|
12887
|
+
"createProFormField",
|
|
12888
|
+
"useFormWatch"
|
|
12119
12889
|
],
|
|
12120
12890
|
"searchTags": [],
|
|
12121
12891
|
"typeText": "interface Rule { ... }",
|
|
@@ -12127,6 +12897,176 @@
|
|
|
12127
12897
|
}
|
|
12128
12898
|
]
|
|
12129
12899
|
},
|
|
12900
|
+
{
|
|
12901
|
+
"name": "SchemaForm",
|
|
12902
|
+
"kind": "component",
|
|
12903
|
+
"category": "forms",
|
|
12904
|
+
"summary": "Generic-aware export — keeps `<SchemaForm<MyValues> …>` fully typed.",
|
|
12905
|
+
"importPath": "@1money/component-ui",
|
|
12906
|
+
"subpathImport": "@1money/component-ui/ProForm",
|
|
12907
|
+
"sourceFile": "src/components/ProForm/SchemaForm.tsx",
|
|
12908
|
+
"props": [
|
|
12909
|
+
{
|
|
12910
|
+
"name": "columns",
|
|
12911
|
+
"type": "ProFormSchemaColumn[]",
|
|
12912
|
+
"optional": false,
|
|
12913
|
+
"default": null,
|
|
12914
|
+
"description": "",
|
|
12915
|
+
"inheritedFrom": null
|
|
12916
|
+
}
|
|
12917
|
+
],
|
|
12918
|
+
"extends": [
|
|
12919
|
+
"Omit<ProFormProps<Values>, 'children'>"
|
|
12920
|
+
],
|
|
12921
|
+
"relatedSymbols": [
|
|
12922
|
+
"CreateProFormFieldConfig",
|
|
12923
|
+
"DialogForm",
|
|
12924
|
+
"DialogFormProps",
|
|
12925
|
+
"DrawerForm",
|
|
12926
|
+
"DrawerFormProps",
|
|
12927
|
+
"FormCoreInstance",
|
|
12928
|
+
"FormInstance",
|
|
12929
|
+
"FormLayout",
|
|
12930
|
+
"FormSize",
|
|
12931
|
+
"LabelAlign",
|
|
12932
|
+
"ProForm",
|
|
12933
|
+
"ProFormCheckbox",
|
|
12934
|
+
"ProFormCheckboxGroup",
|
|
12935
|
+
"ProFormColProps",
|
|
12936
|
+
"ProFormContextValue",
|
|
12937
|
+
"ProFormDateFormatter",
|
|
12938
|
+
"ProFormDatePicker",
|
|
12939
|
+
"ProFormDependency",
|
|
12940
|
+
"ProFormDependencyProps",
|
|
12941
|
+
"ProFormFieldConvertValueFn",
|
|
12942
|
+
"ProFormFieldProps",
|
|
12943
|
+
"ProFormFieldSet",
|
|
12944
|
+
"ProFormFieldSetProps",
|
|
12945
|
+
"ProFormFieldTransformFn",
|
|
12946
|
+
"ProFormFormInstance",
|
|
12947
|
+
"ProFormGroup",
|
|
12948
|
+
"ProFormGroupProps",
|
|
12949
|
+
"ProFormItem",
|
|
12950
|
+
"ProFormItemProps",
|
|
12951
|
+
"ProFormItemSharedProps",
|
|
12952
|
+
"ProFormList",
|
|
12953
|
+
"ProFormListAction",
|
|
12954
|
+
"ProFormListProps",
|
|
12955
|
+
"ProFormMode",
|
|
12956
|
+
"ProFormPassword",
|
|
12957
|
+
"ProFormProps",
|
|
12958
|
+
"ProFormRadioGroup",
|
|
12959
|
+
"ProFormRequestOption",
|
|
12960
|
+
"ProFormSchemaColumn",
|
|
12961
|
+
"ProFormSchemaValueType",
|
|
12962
|
+
"ProFormSelect",
|
|
12963
|
+
"ProFormSlider",
|
|
12964
|
+
"ProFormSwitch",
|
|
12965
|
+
"ProFormText",
|
|
12966
|
+
"ProFormTextArea",
|
|
12967
|
+
"ProFormUpload",
|
|
12968
|
+
"ProFormValueEnumObj",
|
|
12969
|
+
"ProFormValueType",
|
|
12970
|
+
"QueryFilter",
|
|
12971
|
+
"QueryFilterProps",
|
|
12972
|
+
"Rule",
|
|
12973
|
+
"SchemaFormProps",
|
|
12974
|
+
"SubmitterProps",
|
|
12975
|
+
"UseFormWatch",
|
|
12976
|
+
"ValidateStatus",
|
|
12977
|
+
"ValidateTrigger",
|
|
12978
|
+
"createProFormField",
|
|
12979
|
+
"useFormWatch"
|
|
12980
|
+
],
|
|
12981
|
+
"searchTags": [],
|
|
12982
|
+
"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/>",
|
|
12983
|
+
"examples": [
|
|
12984
|
+
{
|
|
12985
|
+
"hash": "357291f4a9a14dd6bb041daa31e6fa890c90ae32d5dc581c42274d86cf08e80a",
|
|
12986
|
+
"source": "canonical"
|
|
12987
|
+
}
|
|
12988
|
+
]
|
|
12989
|
+
},
|
|
12990
|
+
{
|
|
12991
|
+
"name": "SchemaFormProps",
|
|
12992
|
+
"kind": "type",
|
|
12993
|
+
"category": "forms",
|
|
12994
|
+
"summary": "",
|
|
12995
|
+
"importPath": "@1money/component-ui",
|
|
12996
|
+
"subpathImport": "@1money/component-ui/ProForm",
|
|
12997
|
+
"sourceFile": "src/components/ProForm/interface.ts",
|
|
12998
|
+
"props": [],
|
|
12999
|
+
"extends": [],
|
|
13000
|
+
"relatedSymbols": [
|
|
13001
|
+
"CreateProFormFieldConfig",
|
|
13002
|
+
"DialogForm",
|
|
13003
|
+
"DialogFormProps",
|
|
13004
|
+
"DrawerForm",
|
|
13005
|
+
"DrawerFormProps",
|
|
13006
|
+
"FormCoreInstance",
|
|
13007
|
+
"FormInstance",
|
|
13008
|
+
"FormLayout",
|
|
13009
|
+
"FormSize",
|
|
13010
|
+
"LabelAlign",
|
|
13011
|
+
"ProForm",
|
|
13012
|
+
"ProFormCheckbox",
|
|
13013
|
+
"ProFormCheckboxGroup",
|
|
13014
|
+
"ProFormColProps",
|
|
13015
|
+
"ProFormContextValue",
|
|
13016
|
+
"ProFormDateFormatter",
|
|
13017
|
+
"ProFormDatePicker",
|
|
13018
|
+
"ProFormDependency",
|
|
13019
|
+
"ProFormDependencyProps",
|
|
13020
|
+
"ProFormFieldConvertValueFn",
|
|
13021
|
+
"ProFormFieldProps",
|
|
13022
|
+
"ProFormFieldSet",
|
|
13023
|
+
"ProFormFieldSetProps",
|
|
13024
|
+
"ProFormFieldTransformFn",
|
|
13025
|
+
"ProFormFormInstance",
|
|
13026
|
+
"ProFormGroup",
|
|
13027
|
+
"ProFormGroupProps",
|
|
13028
|
+
"ProFormItem",
|
|
13029
|
+
"ProFormItemProps",
|
|
13030
|
+
"ProFormItemSharedProps",
|
|
13031
|
+
"ProFormList",
|
|
13032
|
+
"ProFormListAction",
|
|
13033
|
+
"ProFormListProps",
|
|
13034
|
+
"ProFormMode",
|
|
13035
|
+
"ProFormPassword",
|
|
13036
|
+
"ProFormProps",
|
|
13037
|
+
"ProFormRadioGroup",
|
|
13038
|
+
"ProFormRequestOption",
|
|
13039
|
+
"ProFormSchemaColumn",
|
|
13040
|
+
"ProFormSchemaValueType",
|
|
13041
|
+
"ProFormSelect",
|
|
13042
|
+
"ProFormSlider",
|
|
13043
|
+
"ProFormSwitch",
|
|
13044
|
+
"ProFormText",
|
|
13045
|
+
"ProFormTextArea",
|
|
13046
|
+
"ProFormUpload",
|
|
13047
|
+
"ProFormValueEnumObj",
|
|
13048
|
+
"ProFormValueType",
|
|
13049
|
+
"QueryFilter",
|
|
13050
|
+
"QueryFilterProps",
|
|
13051
|
+
"Rule",
|
|
13052
|
+
"SchemaForm",
|
|
13053
|
+
"SubmitterProps",
|
|
13054
|
+
"UseFormWatch",
|
|
13055
|
+
"ValidateStatus",
|
|
13056
|
+
"ValidateTrigger",
|
|
13057
|
+
"createProFormField",
|
|
13058
|
+
"useFormWatch"
|
|
13059
|
+
],
|
|
13060
|
+
"searchTags": [],
|
|
13061
|
+
"typeText": "interface SchemaFormProps extends Omit<ProFormProps<Values>, 'children'> { ... }",
|
|
13062
|
+
"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';",
|
|
13063
|
+
"examples": [
|
|
13064
|
+
{
|
|
13065
|
+
"hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
|
|
13066
|
+
"source": "canonical"
|
|
13067
|
+
}
|
|
13068
|
+
]
|
|
13069
|
+
},
|
|
12130
13070
|
{
|
|
12131
13071
|
"name": "Segment",
|
|
12132
13072
|
"kind": "component",
|
|
@@ -14143,6 +15083,7 @@
|
|
|
14143
15083
|
"ProFormCheckboxGroup",
|
|
14144
15084
|
"ProFormColProps",
|
|
14145
15085
|
"ProFormContextValue",
|
|
15086
|
+
"ProFormDateFormatter",
|
|
14146
15087
|
"ProFormDatePicker",
|
|
14147
15088
|
"ProFormDependency",
|
|
14148
15089
|
"ProFormDependencyProps",
|
|
@@ -14156,6 +15097,7 @@
|
|
|
14156
15097
|
"ProFormGroupProps",
|
|
14157
15098
|
"ProFormItem",
|
|
14158
15099
|
"ProFormItemProps",
|
|
15100
|
+
"ProFormItemSharedProps",
|
|
14159
15101
|
"ProFormList",
|
|
14160
15102
|
"ProFormListAction",
|
|
14161
15103
|
"ProFormListProps",
|
|
@@ -14164,6 +15106,8 @@
|
|
|
14164
15106
|
"ProFormProps",
|
|
14165
15107
|
"ProFormRadioGroup",
|
|
14166
15108
|
"ProFormRequestOption",
|
|
15109
|
+
"ProFormSchemaColumn",
|
|
15110
|
+
"ProFormSchemaValueType",
|
|
14167
15111
|
"ProFormSelect",
|
|
14168
15112
|
"ProFormSlider",
|
|
14169
15113
|
"ProFormSwitch",
|
|
@@ -14175,9 +15119,13 @@
|
|
|
14175
15119
|
"QueryFilter",
|
|
14176
15120
|
"QueryFilterProps",
|
|
14177
15121
|
"Rule",
|
|
15122
|
+
"SchemaForm",
|
|
15123
|
+
"SchemaFormProps",
|
|
15124
|
+
"UseFormWatch",
|
|
14178
15125
|
"ValidateStatus",
|
|
14179
15126
|
"ValidateTrigger",
|
|
14180
|
-
"createProFormField"
|
|
15127
|
+
"createProFormField",
|
|
15128
|
+
"useFormWatch"
|
|
14181
15129
|
],
|
|
14182
15130
|
"searchTags": [],
|
|
14183
15131
|
"typeText": "interface SubmitterProps { ... }",
|
|
@@ -16748,6 +17696,86 @@
|
|
|
16748
17696
|
}
|
|
16749
17697
|
]
|
|
16750
17698
|
},
|
|
17699
|
+
{
|
|
17700
|
+
"name": "UseFormWatch",
|
|
17701
|
+
"kind": "type",
|
|
17702
|
+
"category": "forms",
|
|
17703
|
+
"summary": "",
|
|
17704
|
+
"importPath": "@1money/component-ui",
|
|
17705
|
+
"subpathImport": "@1money/component-ui/ProForm",
|
|
17706
|
+
"sourceFile": "src/components/ProForm/context.ts",
|
|
17707
|
+
"props": [],
|
|
17708
|
+
"extends": [],
|
|
17709
|
+
"relatedSymbols": [
|
|
17710
|
+
"CreateProFormFieldConfig",
|
|
17711
|
+
"DialogForm",
|
|
17712
|
+
"DialogFormProps",
|
|
17713
|
+
"DrawerForm",
|
|
17714
|
+
"DrawerFormProps",
|
|
17715
|
+
"FormCoreInstance",
|
|
17716
|
+
"FormInstance",
|
|
17717
|
+
"FormLayout",
|
|
17718
|
+
"FormSize",
|
|
17719
|
+
"LabelAlign",
|
|
17720
|
+
"ProForm",
|
|
17721
|
+
"ProFormCheckbox",
|
|
17722
|
+
"ProFormCheckboxGroup",
|
|
17723
|
+
"ProFormColProps",
|
|
17724
|
+
"ProFormContextValue",
|
|
17725
|
+
"ProFormDateFormatter",
|
|
17726
|
+
"ProFormDatePicker",
|
|
17727
|
+
"ProFormDependency",
|
|
17728
|
+
"ProFormDependencyProps",
|
|
17729
|
+
"ProFormFieldConvertValueFn",
|
|
17730
|
+
"ProFormFieldProps",
|
|
17731
|
+
"ProFormFieldSet",
|
|
17732
|
+
"ProFormFieldSetProps",
|
|
17733
|
+
"ProFormFieldTransformFn",
|
|
17734
|
+
"ProFormFormInstance",
|
|
17735
|
+
"ProFormGroup",
|
|
17736
|
+
"ProFormGroupProps",
|
|
17737
|
+
"ProFormItem",
|
|
17738
|
+
"ProFormItemProps",
|
|
17739
|
+
"ProFormItemSharedProps",
|
|
17740
|
+
"ProFormList",
|
|
17741
|
+
"ProFormListAction",
|
|
17742
|
+
"ProFormListProps",
|
|
17743
|
+
"ProFormMode",
|
|
17744
|
+
"ProFormPassword",
|
|
17745
|
+
"ProFormProps",
|
|
17746
|
+
"ProFormRadioGroup",
|
|
17747
|
+
"ProFormRequestOption",
|
|
17748
|
+
"ProFormSchemaColumn",
|
|
17749
|
+
"ProFormSchemaValueType",
|
|
17750
|
+
"ProFormSelect",
|
|
17751
|
+
"ProFormSlider",
|
|
17752
|
+
"ProFormSwitch",
|
|
17753
|
+
"ProFormText",
|
|
17754
|
+
"ProFormTextArea",
|
|
17755
|
+
"ProFormUpload",
|
|
17756
|
+
"ProFormValueEnumObj",
|
|
17757
|
+
"ProFormValueType",
|
|
17758
|
+
"QueryFilter",
|
|
17759
|
+
"QueryFilterProps",
|
|
17760
|
+
"Rule",
|
|
17761
|
+
"SchemaForm",
|
|
17762
|
+
"SchemaFormProps",
|
|
17763
|
+
"SubmitterProps",
|
|
17764
|
+
"ValidateStatus",
|
|
17765
|
+
"ValidateTrigger",
|
|
17766
|
+
"createProFormField",
|
|
17767
|
+
"useFormWatch"
|
|
17768
|
+
],
|
|
17769
|
+
"searchTags": [],
|
|
17770
|
+
"typeText": "interface UseFormWatch { ... }",
|
|
17771
|
+
"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';",
|
|
17772
|
+
"examples": [
|
|
17773
|
+
{
|
|
17774
|
+
"hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
|
|
17775
|
+
"source": "canonical"
|
|
17776
|
+
}
|
|
17777
|
+
]
|
|
17778
|
+
},
|
|
16751
17779
|
{
|
|
16752
17780
|
"name": "UsePaginationOptions",
|
|
16753
17781
|
"kind": "type",
|
|
@@ -16834,6 +17862,7 @@
|
|
|
16834
17862
|
"ProFormCheckboxGroup",
|
|
16835
17863
|
"ProFormColProps",
|
|
16836
17864
|
"ProFormContextValue",
|
|
17865
|
+
"ProFormDateFormatter",
|
|
16837
17866
|
"ProFormDatePicker",
|
|
16838
17867
|
"ProFormDependency",
|
|
16839
17868
|
"ProFormDependencyProps",
|
|
@@ -16847,6 +17876,7 @@
|
|
|
16847
17876
|
"ProFormGroupProps",
|
|
16848
17877
|
"ProFormItem",
|
|
16849
17878
|
"ProFormItemProps",
|
|
17879
|
+
"ProFormItemSharedProps",
|
|
16850
17880
|
"ProFormList",
|
|
16851
17881
|
"ProFormListAction",
|
|
16852
17882
|
"ProFormListProps",
|
|
@@ -16855,6 +17885,8 @@
|
|
|
16855
17885
|
"ProFormProps",
|
|
16856
17886
|
"ProFormRadioGroup",
|
|
16857
17887
|
"ProFormRequestOption",
|
|
17888
|
+
"ProFormSchemaColumn",
|
|
17889
|
+
"ProFormSchemaValueType",
|
|
16858
17890
|
"ProFormSelect",
|
|
16859
17891
|
"ProFormSlider",
|
|
16860
17892
|
"ProFormSwitch",
|
|
@@ -16866,9 +17898,13 @@
|
|
|
16866
17898
|
"QueryFilter",
|
|
16867
17899
|
"QueryFilterProps",
|
|
16868
17900
|
"Rule",
|
|
17901
|
+
"SchemaForm",
|
|
17902
|
+
"SchemaFormProps",
|
|
16869
17903
|
"SubmitterProps",
|
|
17904
|
+
"UseFormWatch",
|
|
16870
17905
|
"ValidateTrigger",
|
|
16871
|
-
"createProFormField"
|
|
17906
|
+
"createProFormField",
|
|
17907
|
+
"useFormWatch"
|
|
16872
17908
|
],
|
|
16873
17909
|
"searchTags": [],
|
|
16874
17910
|
"typeText": "(typeof VALIDATE_STATUSES)[number]",
|
|
@@ -16906,6 +17942,7 @@
|
|
|
16906
17942
|
"ProFormCheckboxGroup",
|
|
16907
17943
|
"ProFormColProps",
|
|
16908
17944
|
"ProFormContextValue",
|
|
17945
|
+
"ProFormDateFormatter",
|
|
16909
17946
|
"ProFormDatePicker",
|
|
16910
17947
|
"ProFormDependency",
|
|
16911
17948
|
"ProFormDependencyProps",
|
|
@@ -16919,6 +17956,7 @@
|
|
|
16919
17956
|
"ProFormGroupProps",
|
|
16920
17957
|
"ProFormItem",
|
|
16921
17958
|
"ProFormItemProps",
|
|
17959
|
+
"ProFormItemSharedProps",
|
|
16922
17960
|
"ProFormList",
|
|
16923
17961
|
"ProFormListAction",
|
|
16924
17962
|
"ProFormListProps",
|
|
@@ -16927,6 +17965,8 @@
|
|
|
16927
17965
|
"ProFormProps",
|
|
16928
17966
|
"ProFormRadioGroup",
|
|
16929
17967
|
"ProFormRequestOption",
|
|
17968
|
+
"ProFormSchemaColumn",
|
|
17969
|
+
"ProFormSchemaValueType",
|
|
16930
17970
|
"ProFormSelect",
|
|
16931
17971
|
"ProFormSlider",
|
|
16932
17972
|
"ProFormSwitch",
|
|
@@ -16938,9 +17978,13 @@
|
|
|
16938
17978
|
"QueryFilter",
|
|
16939
17979
|
"QueryFilterProps",
|
|
16940
17980
|
"Rule",
|
|
17981
|
+
"SchemaForm",
|
|
17982
|
+
"SchemaFormProps",
|
|
16941
17983
|
"SubmitterProps",
|
|
17984
|
+
"UseFormWatch",
|
|
16942
17985
|
"ValidateStatus",
|
|
16943
|
-
"createProFormField"
|
|
17986
|
+
"createProFormField",
|
|
17987
|
+
"useFormWatch"
|
|
16944
17988
|
],
|
|
16945
17989
|
"searchTags": [],
|
|
16946
17990
|
"typeText": "(typeof VALIDATE_TRIGGERS)[number]",
|
|
@@ -17199,6 +18243,7 @@
|
|
|
17199
18243
|
"ProFormCheckboxGroup",
|
|
17200
18244
|
"ProFormColProps",
|
|
17201
18245
|
"ProFormContextValue",
|
|
18246
|
+
"ProFormDateFormatter",
|
|
17202
18247
|
"ProFormDatePicker",
|
|
17203
18248
|
"ProFormDependency",
|
|
17204
18249
|
"ProFormDependencyProps",
|
|
@@ -17212,6 +18257,7 @@
|
|
|
17212
18257
|
"ProFormGroupProps",
|
|
17213
18258
|
"ProFormItem",
|
|
17214
18259
|
"ProFormItemProps",
|
|
18260
|
+
"ProFormItemSharedProps",
|
|
17215
18261
|
"ProFormList",
|
|
17216
18262
|
"ProFormListAction",
|
|
17217
18263
|
"ProFormListProps",
|
|
@@ -17220,6 +18266,8 @@
|
|
|
17220
18266
|
"ProFormProps",
|
|
17221
18267
|
"ProFormRadioGroup",
|
|
17222
18268
|
"ProFormRequestOption",
|
|
18269
|
+
"ProFormSchemaColumn",
|
|
18270
|
+
"ProFormSchemaValueType",
|
|
17223
18271
|
"ProFormSelect",
|
|
17224
18272
|
"ProFormSlider",
|
|
17225
18273
|
"ProFormSwitch",
|
|
@@ -17231,9 +18279,13 @@
|
|
|
17231
18279
|
"QueryFilter",
|
|
17232
18280
|
"QueryFilterProps",
|
|
17233
18281
|
"Rule",
|
|
18282
|
+
"SchemaForm",
|
|
18283
|
+
"SchemaFormProps",
|
|
17234
18284
|
"SubmitterProps",
|
|
18285
|
+
"UseFormWatch",
|
|
17235
18286
|
"ValidateStatus",
|
|
17236
|
-
"ValidateTrigger"
|
|
18287
|
+
"ValidateTrigger",
|
|
18288
|
+
"useFormWatch"
|
|
17237
18289
|
],
|
|
17238
18290
|
"searchTags": [],
|
|
17239
18291
|
"signature": "(config: CreateProFormFieldConfig<FieldProps>): FC<ProFormFieldProps<FieldProps>>",
|
|
@@ -17274,6 +18326,86 @@
|
|
|
17274
18326
|
}
|
|
17275
18327
|
]
|
|
17276
18328
|
},
|
|
18329
|
+
{
|
|
18330
|
+
"name": "useFormWatch",
|
|
18331
|
+
"kind": "hook",
|
|
18332
|
+
"category": "forms",
|
|
18333
|
+
"summary": "Watch a single field or the whole values object.",
|
|
18334
|
+
"importPath": "@1money/component-ui",
|
|
18335
|
+
"subpathImport": "@1money/component-ui/ProForm",
|
|
18336
|
+
"sourceFile": "src/components/ProForm/context.ts",
|
|
18337
|
+
"props": [],
|
|
18338
|
+
"extends": [],
|
|
18339
|
+
"relatedSymbols": [
|
|
18340
|
+
"CreateProFormFieldConfig",
|
|
18341
|
+
"DialogForm",
|
|
18342
|
+
"DialogFormProps",
|
|
18343
|
+
"DrawerForm",
|
|
18344
|
+
"DrawerFormProps",
|
|
18345
|
+
"FormCoreInstance",
|
|
18346
|
+
"FormInstance",
|
|
18347
|
+
"FormLayout",
|
|
18348
|
+
"FormSize",
|
|
18349
|
+
"LabelAlign",
|
|
18350
|
+
"ProForm",
|
|
18351
|
+
"ProFormCheckbox",
|
|
18352
|
+
"ProFormCheckboxGroup",
|
|
18353
|
+
"ProFormColProps",
|
|
18354
|
+
"ProFormContextValue",
|
|
18355
|
+
"ProFormDateFormatter",
|
|
18356
|
+
"ProFormDatePicker",
|
|
18357
|
+
"ProFormDependency",
|
|
18358
|
+
"ProFormDependencyProps",
|
|
18359
|
+
"ProFormFieldConvertValueFn",
|
|
18360
|
+
"ProFormFieldProps",
|
|
18361
|
+
"ProFormFieldSet",
|
|
18362
|
+
"ProFormFieldSetProps",
|
|
18363
|
+
"ProFormFieldTransformFn",
|
|
18364
|
+
"ProFormFormInstance",
|
|
18365
|
+
"ProFormGroup",
|
|
18366
|
+
"ProFormGroupProps",
|
|
18367
|
+
"ProFormItem",
|
|
18368
|
+
"ProFormItemProps",
|
|
18369
|
+
"ProFormItemSharedProps",
|
|
18370
|
+
"ProFormList",
|
|
18371
|
+
"ProFormListAction",
|
|
18372
|
+
"ProFormListProps",
|
|
18373
|
+
"ProFormMode",
|
|
18374
|
+
"ProFormPassword",
|
|
18375
|
+
"ProFormProps",
|
|
18376
|
+
"ProFormRadioGroup",
|
|
18377
|
+
"ProFormRequestOption",
|
|
18378
|
+
"ProFormSchemaColumn",
|
|
18379
|
+
"ProFormSchemaValueType",
|
|
18380
|
+
"ProFormSelect",
|
|
18381
|
+
"ProFormSlider",
|
|
18382
|
+
"ProFormSwitch",
|
|
18383
|
+
"ProFormText",
|
|
18384
|
+
"ProFormTextArea",
|
|
18385
|
+
"ProFormUpload",
|
|
18386
|
+
"ProFormValueEnumObj",
|
|
18387
|
+
"ProFormValueType",
|
|
18388
|
+
"QueryFilter",
|
|
18389
|
+
"QueryFilterProps",
|
|
18390
|
+
"Rule",
|
|
18391
|
+
"SchemaForm",
|
|
18392
|
+
"SchemaFormProps",
|
|
18393
|
+
"SubmitterProps",
|
|
18394
|
+
"UseFormWatch",
|
|
18395
|
+
"ValidateStatus",
|
|
18396
|
+
"ValidateTrigger",
|
|
18397
|
+
"createProFormField"
|
|
18398
|
+
],
|
|
18399
|
+
"searchTags": [],
|
|
18400
|
+
"signature": "UseFormWatch",
|
|
18401
|
+
"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';",
|
|
18402
|
+
"examples": [
|
|
18403
|
+
{
|
|
18404
|
+
"hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
|
|
18405
|
+
"source": "canonical"
|
|
18406
|
+
}
|
|
18407
|
+
]
|
|
18408
|
+
},
|
|
17277
18409
|
{
|
|
17278
18410
|
"name": "usePagination",
|
|
17279
18411
|
"kind": "hook",
|