@1money/component-ui 0.0.76 → 0.0.78

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (181) hide show
  1. package/es/components/Dialog/Dialog.js +11 -3
  2. package/es/components/Dialog/interface.d.ts +1 -0
  3. package/es/components/Grid/Col.js +60 -4
  4. package/es/components/Grid/Grid.d.ts +4 -1
  5. package/es/components/Grid/Grid.js +5 -4
  6. package/es/components/Grid/Row.js +7 -5
  7. package/es/components/Grid/constants.d.ts +5 -3
  8. package/es/components/Grid/constants.js +13 -4
  9. package/es/components/Grid/helper.d.ts +8 -6
  10. package/es/components/Grid/helper.js +63 -15
  11. package/es/components/Grid/interface.d.ts +2 -1
  12. package/es/components/Grid/style/Grid.css +240 -196
  13. package/es/components/ProForm/ProForm.d.ts +1 -1
  14. package/es/components/ProForm/ProForm.js +4 -5
  15. package/es/components/ProForm/ProFormDependency.d.ts +2 -1
  16. package/es/components/ProForm/ProFormDependency.js +1 -1
  17. package/es/components/ProForm/ProFormItem.d.ts +7 -2
  18. package/es/components/ProForm/ProFormItem.js +1 -1
  19. package/es/components/ProForm/ProFormList.d.ts +6 -1
  20. package/es/components/ProForm/ProFormList.js +13 -5
  21. package/es/components/ProForm/SchemaForm.d.ts +1 -1
  22. package/es/components/ProForm/SchemaForm.js +8 -5
  23. package/es/components/ProForm/constants.d.ts +1 -1
  24. package/es/components/ProForm/constants.js +5 -2
  25. package/es/components/ProForm/context.d.ts +8 -7
  26. package/es/components/ProForm/context.js +1 -1
  27. package/es/components/ProForm/core/constants.d.ts +1 -1
  28. package/es/components/ProForm/core/constants.js +2 -2
  29. package/es/components/ProForm/core/devWarning.d.ts +1 -3
  30. package/es/components/ProForm/core/devWarning.js +5 -15
  31. package/es/components/ProForm/core/formStore.d.ts +4 -4
  32. package/es/components/ProForm/core/formStore.js +1 -1
  33. package/es/components/ProForm/core/hooks/useForm.d.ts +1 -1
  34. package/es/components/ProForm/core/hooks/useForm.js +34 -9
  35. package/es/components/ProForm/core/hooks/useFormCore.d.ts +2 -2
  36. package/es/components/ProForm/core/hooks/useFormCore.js +17 -123
  37. package/es/components/ProForm/core/interface.d.ts +70 -91
  38. package/es/components/ProForm/core/namePathType.d.ts +25 -0
  39. package/es/components/ProForm/core/namePathType.js +2 -0
  40. package/es/components/ProForm/core/pathUtils.d.ts +5 -3
  41. package/es/components/ProForm/core/pathUtils.js +19 -1
  42. package/es/components/ProForm/core/runRules.d.ts +8 -17
  43. package/es/components/ProForm/core/runRules.js +22 -129
  44. package/es/components/ProForm/core/useFormItem.d.ts +1 -1
  45. package/es/components/ProForm/core/useFormItem.js +14 -66
  46. package/es/components/ProForm/core/validationError.d.ts +2 -2
  47. package/es/components/ProForm/core/validationError.js +1 -1
  48. package/es/components/ProForm/fields/ProFormCheckbox.d.ts +1 -1
  49. package/es/components/ProForm/fields/ProFormCheckboxGroup.d.ts +1 -1
  50. package/es/components/ProForm/fields/ProFormCheckboxGroup.js +1 -1
  51. package/es/components/ProForm/fields/ProFormDatePicker.d.ts +1 -1
  52. package/es/components/ProForm/fields/ProFormDatePicker.js +1 -1
  53. package/es/components/ProForm/fields/ProFormFieldSet.d.ts +7 -2
  54. package/es/components/ProForm/fields/ProFormFieldSet.js +5 -7
  55. package/es/components/ProForm/fields/ProFormPassword.d.ts +1 -1
  56. package/es/components/ProForm/fields/ProFormRadioGroup.d.ts +1 -1
  57. package/es/components/ProForm/fields/ProFormRadioGroup.js +1 -1
  58. package/es/components/ProForm/fields/ProFormSelect.d.ts +1 -1
  59. package/es/components/ProForm/fields/ProFormSelect.js +1 -1
  60. package/es/components/ProForm/fields/ProFormSlider.d.ts +1 -1
  61. package/es/components/ProForm/fields/ProFormSwitch.d.ts +1 -1
  62. package/es/components/ProForm/fields/ProFormText.d.ts +1 -1
  63. package/es/components/ProForm/fields/ProFormTextArea.d.ts +1 -1
  64. package/es/components/ProForm/fields/ProFormUpload.d.ts +1 -1
  65. package/es/components/ProForm/fields/ProFormUpload.js +1 -1
  66. package/es/components/ProForm/fields/createProFormField.d.ts +8 -2
  67. package/es/components/ProForm/fields/createProFormField.js +3 -3
  68. package/es/components/ProForm/hooks/useFieldRequest.d.ts +1 -1
  69. package/es/components/ProForm/hooks/useFieldRequest.js +1 -1
  70. package/es/components/ProForm/hooks/useUrlSync.d.ts +8 -7
  71. package/es/components/ProForm/hooks/useUrlSync.js +1 -1
  72. package/es/components/ProForm/index.d.ts +35 -26
  73. package/es/components/ProForm/index.js +1 -1
  74. package/es/components/ProForm/interface.d.ts +96 -91
  75. package/es/components/ProForm/layouts/DialogForm.d.ts +1 -1
  76. package/es/components/ProForm/layouts/DialogForm.js +2 -4
  77. package/es/components/ProForm/layouts/DrawerForm.d.ts +1 -1
  78. package/es/components/ProForm/layouts/DrawerForm.js +1 -1
  79. package/es/components/ProForm/layouts/QueryFilter.d.ts +1 -1
  80. package/es/components/ProForm/layouts/QueryFilter.js +1 -1
  81. package/es/components/ProForm/layouts/useOverlayForm.d.ts +2 -2
  82. package/es/components/ProForm/layouts/useOverlayForm.js +1 -1
  83. package/es/components/ProForm/utils.d.ts +8 -8
  84. package/es/components/ProForm/utils.js +1 -1
  85. package/es/index.css +1 -1
  86. package/es/index.d.ts +1 -1
  87. package/es/index.js +1 -1
  88. package/es/utils/devWarn.d.ts +4 -0
  89. package/es/utils/devWarn.js +23 -0
  90. package/lib/components/Dialog/Dialog.js +11 -3
  91. package/lib/components/Dialog/interface.d.ts +1 -0
  92. package/lib/components/Grid/Col.js +59 -3
  93. package/lib/components/Grid/Grid.d.ts +4 -1
  94. package/lib/components/Grid/Grid.js +5 -4
  95. package/lib/components/Grid/Row.js +6 -4
  96. package/lib/components/Grid/constants.d.ts +5 -3
  97. package/lib/components/Grid/constants.js +14 -5
  98. package/lib/components/Grid/helper.d.ts +8 -6
  99. package/lib/components/Grid/helper.js +63 -15
  100. package/lib/components/Grid/interface.d.ts +2 -1
  101. package/lib/components/Grid/style/Grid.css +240 -196
  102. package/lib/components/ProForm/ProForm.d.ts +1 -1
  103. package/lib/components/ProForm/ProForm.js +3 -4
  104. package/lib/components/ProForm/ProFormDependency.d.ts +2 -1
  105. package/lib/components/ProForm/ProFormDependency.js +1 -1
  106. package/lib/components/ProForm/ProFormItem.d.ts +7 -2
  107. package/lib/components/ProForm/ProFormItem.js +1 -1
  108. package/lib/components/ProForm/ProFormList.d.ts +6 -1
  109. package/lib/components/ProForm/ProFormList.js +13 -5
  110. package/lib/components/ProForm/SchemaForm.d.ts +1 -1
  111. package/lib/components/ProForm/SchemaForm.js +8 -5
  112. package/lib/components/ProForm/constants.d.ts +1 -1
  113. package/lib/components/ProForm/constants.js +5 -2
  114. package/lib/components/ProForm/context.d.ts +8 -7
  115. package/lib/components/ProForm/context.js +1 -1
  116. package/lib/components/ProForm/core/constants.d.ts +1 -1
  117. package/lib/components/ProForm/core/constants.js +2 -2
  118. package/lib/components/ProForm/core/devWarning.d.ts +1 -3
  119. package/lib/components/ProForm/core/devWarning.js +23 -24
  120. package/lib/components/ProForm/core/formStore.d.ts +4 -4
  121. package/lib/components/ProForm/core/formStore.js +1 -1
  122. package/lib/components/ProForm/core/hooks/useForm.d.ts +1 -1
  123. package/lib/components/ProForm/core/hooks/useForm.js +34 -9
  124. package/lib/components/ProForm/core/hooks/useFormCore.d.ts +2 -2
  125. package/lib/components/ProForm/core/hooks/useFormCore.js +16 -122
  126. package/lib/components/ProForm/core/interface.d.ts +70 -91
  127. package/lib/components/ProForm/core/namePathType.d.ts +25 -0
  128. package/lib/components/ProForm/core/namePathType.js +6 -0
  129. package/lib/components/ProForm/core/pathUtils.d.ts +5 -3
  130. package/lib/components/ProForm/core/pathUtils.js +20 -1
  131. package/lib/components/ProForm/core/runRules.d.ts +8 -17
  132. package/lib/components/ProForm/core/runRules.js +22 -130
  133. package/lib/components/ProForm/core/useFormItem.d.ts +1 -1
  134. package/lib/components/ProForm/core/useFormItem.js +17 -69
  135. package/lib/components/ProForm/core/validationError.d.ts +2 -2
  136. package/lib/components/ProForm/core/validationError.js +1 -1
  137. package/lib/components/ProForm/fields/ProFormCheckbox.d.ts +1 -1
  138. package/lib/components/ProForm/fields/ProFormCheckboxGroup.d.ts +1 -1
  139. package/lib/components/ProForm/fields/ProFormCheckboxGroup.js +1 -1
  140. package/lib/components/ProForm/fields/ProFormDatePicker.d.ts +1 -1
  141. package/lib/components/ProForm/fields/ProFormDatePicker.js +1 -1
  142. package/lib/components/ProForm/fields/ProFormFieldSet.d.ts +7 -2
  143. package/lib/components/ProForm/fields/ProFormFieldSet.js +5 -7
  144. package/lib/components/ProForm/fields/ProFormPassword.d.ts +1 -1
  145. package/lib/components/ProForm/fields/ProFormRadioGroup.d.ts +1 -1
  146. package/lib/components/ProForm/fields/ProFormRadioGroup.js +1 -1
  147. package/lib/components/ProForm/fields/ProFormSelect.d.ts +1 -1
  148. package/lib/components/ProForm/fields/ProFormSelect.js +1 -1
  149. package/lib/components/ProForm/fields/ProFormSlider.d.ts +1 -1
  150. package/lib/components/ProForm/fields/ProFormSwitch.d.ts +1 -1
  151. package/lib/components/ProForm/fields/ProFormText.d.ts +1 -1
  152. package/lib/components/ProForm/fields/ProFormTextArea.d.ts +1 -1
  153. package/lib/components/ProForm/fields/ProFormUpload.d.ts +1 -1
  154. package/lib/components/ProForm/fields/ProFormUpload.js +1 -1
  155. package/lib/components/ProForm/fields/createProFormField.d.ts +8 -2
  156. package/lib/components/ProForm/fields/createProFormField.js +3 -3
  157. package/lib/components/ProForm/hooks/useFieldRequest.d.ts +1 -1
  158. package/lib/components/ProForm/hooks/useFieldRequest.js +1 -1
  159. package/lib/components/ProForm/hooks/useUrlSync.d.ts +8 -7
  160. package/lib/components/ProForm/hooks/useUrlSync.js +1 -1
  161. package/lib/components/ProForm/index.d.ts +35 -26
  162. package/lib/components/ProForm/index.js +1 -1
  163. package/lib/components/ProForm/interface.d.ts +96 -91
  164. package/lib/components/ProForm/layouts/DialogForm.d.ts +1 -1
  165. package/lib/components/ProForm/layouts/DialogForm.js +2 -4
  166. package/lib/components/ProForm/layouts/DrawerForm.d.ts +1 -1
  167. package/lib/components/ProForm/layouts/DrawerForm.js +1 -1
  168. package/lib/components/ProForm/layouts/QueryFilter.d.ts +1 -1
  169. package/lib/components/ProForm/layouts/QueryFilter.js +1 -1
  170. package/lib/components/ProForm/layouts/useOverlayForm.d.ts +2 -2
  171. package/lib/components/ProForm/layouts/useOverlayForm.js +1 -1
  172. package/lib/components/ProForm/utils.d.ts +8 -8
  173. package/lib/components/ProForm/utils.js +1 -1
  174. package/lib/index.css +1 -1
  175. package/lib/index.d.ts +1 -1
  176. package/lib/index.js +1 -1
  177. package/lib/utils/devWarn.d.ts +4 -0
  178. package/lib/utils/devWarn.js +31 -0
  179. package/package.json +1 -1
  180. package/scripts/mcp-server/examples.generated.json +224 -74
  181. package/scripts/mcp-server/index.generated.json +1758 -100
@@ -2003,6 +2003,7 @@
2003
2003
  "FormCoreInstance",
2004
2004
  "FormInstance",
2005
2005
  "FormLayout",
2006
+ "FormListContextValue",
2006
2007
  "FormSize",
2007
2008
  "LabelAlign",
2008
2009
  "ProForm",
@@ -2016,10 +2017,12 @@
2016
2017
  "ProFormDependencyProps",
2017
2018
  "ProFormFieldConvertValueFn",
2018
2019
  "ProFormFieldName",
2020
+ "ProFormFieldOptionValue",
2019
2021
  "ProFormFieldProps",
2020
2022
  "ProFormFieldSet",
2021
2023
  "ProFormFieldSetProps",
2022
2024
  "ProFormFieldTransformFn",
2025
+ "ProFormFieldValueMap",
2023
2026
  "ProFormFormInstance",
2024
2027
  "ProFormGroup",
2025
2028
  "ProFormGroupProps",
@@ -2032,20 +2035,27 @@
2032
2035
  "ProFormListProps",
2033
2036
  "ProFormMode",
2034
2037
  "ProFormPassword",
2038
+ "ProFormPathValue",
2035
2039
  "ProFormProps",
2036
2040
  "ProFormRadioGroup",
2041
+ "ProFormRecursivePartial",
2037
2042
  "ProFormRequestOption",
2038
2043
  "ProFormSchemaColumn",
2044
+ "ProFormSchemaColumns",
2039
2045
  "ProFormSchemaValueType",
2040
2046
  "ProFormSelect",
2041
2047
  "ProFormSlider",
2048
+ "ProFormStableContextValue",
2049
+ "ProFormStateContextValue",
2042
2050
  "ProFormSwitch",
2051
+ "ProFormSyncToUrl",
2043
2052
  "ProFormText",
2044
2053
  "ProFormTextArea",
2045
2054
  "ProFormUpload",
2046
2055
  "ProFormValidateResult",
2047
2056
  "ProFormValueEnumObj",
2048
2057
  "ProFormValueType",
2058
+ "ProFormValuesPatch",
2049
2059
  "QueryFilter",
2050
2060
  "QueryFilterProps",
2051
2061
  "Rule",
@@ -2141,6 +2151,14 @@
2141
2151
  "description": "",
2142
2152
  "inheritedFrom": null
2143
2153
  },
2154
+ {
2155
+ "name": "width",
2156
+ "type": "number | string",
2157
+ "optional": true,
2158
+ "default": null,
2159
+ "description": "",
2160
+ "inheritedFrom": null
2161
+ },
2144
2162
  {
2145
2163
  "name": "title",
2146
2164
  "type": "ReactNode",
@@ -2450,7 +2468,7 @@
2450
2468
  }
2451
2469
  ],
2452
2470
  "extends": [
2453
- "Omit<ProFormProps<Values>, 'title'>"
2471
+ "Omit<ProFormProps<Values, Params>, 'title'>"
2454
2472
  ],
2455
2473
  "relatedSymbols": [
2456
2474
  "CreateProFormFieldConfig",
@@ -2460,6 +2478,7 @@
2460
2478
  "FormCoreInstance",
2461
2479
  "FormInstance",
2462
2480
  "FormLayout",
2481
+ "FormListContextValue",
2463
2482
  "FormSize",
2464
2483
  "LabelAlign",
2465
2484
  "ProForm",
@@ -2473,10 +2492,12 @@
2473
2492
  "ProFormDependencyProps",
2474
2493
  "ProFormFieldConvertValueFn",
2475
2494
  "ProFormFieldName",
2495
+ "ProFormFieldOptionValue",
2476
2496
  "ProFormFieldProps",
2477
2497
  "ProFormFieldSet",
2478
2498
  "ProFormFieldSetProps",
2479
2499
  "ProFormFieldTransformFn",
2500
+ "ProFormFieldValueMap",
2480
2501
  "ProFormFormInstance",
2481
2502
  "ProFormGroup",
2482
2503
  "ProFormGroupProps",
@@ -2489,20 +2510,27 @@
2489
2510
  "ProFormListProps",
2490
2511
  "ProFormMode",
2491
2512
  "ProFormPassword",
2513
+ "ProFormPathValue",
2492
2514
  "ProFormProps",
2493
2515
  "ProFormRadioGroup",
2516
+ "ProFormRecursivePartial",
2494
2517
  "ProFormRequestOption",
2495
2518
  "ProFormSchemaColumn",
2519
+ "ProFormSchemaColumns",
2496
2520
  "ProFormSchemaValueType",
2497
2521
  "ProFormSelect",
2498
2522
  "ProFormSlider",
2523
+ "ProFormStableContextValue",
2524
+ "ProFormStateContextValue",
2499
2525
  "ProFormSwitch",
2526
+ "ProFormSyncToUrl",
2500
2527
  "ProFormText",
2501
2528
  "ProFormTextArea",
2502
2529
  "ProFormUpload",
2503
2530
  "ProFormValidateResult",
2504
2531
  "ProFormValueEnumObj",
2505
2532
  "ProFormValueType",
2533
+ "ProFormValuesPatch",
2506
2534
  "QueryFilter",
2507
2535
  "QueryFilterProps",
2508
2536
  "Rule",
@@ -2542,6 +2570,7 @@
2542
2570
  "FormCoreInstance",
2543
2571
  "FormInstance",
2544
2572
  "FormLayout",
2573
+ "FormListContextValue",
2545
2574
  "FormSize",
2546
2575
  "LabelAlign",
2547
2576
  "ProForm",
@@ -2555,10 +2584,12 @@
2555
2584
  "ProFormDependencyProps",
2556
2585
  "ProFormFieldConvertValueFn",
2557
2586
  "ProFormFieldName",
2587
+ "ProFormFieldOptionValue",
2558
2588
  "ProFormFieldProps",
2559
2589
  "ProFormFieldSet",
2560
2590
  "ProFormFieldSetProps",
2561
2591
  "ProFormFieldTransformFn",
2592
+ "ProFormFieldValueMap",
2562
2593
  "ProFormFormInstance",
2563
2594
  "ProFormGroup",
2564
2595
  "ProFormGroupProps",
@@ -2571,20 +2602,27 @@
2571
2602
  "ProFormListProps",
2572
2603
  "ProFormMode",
2573
2604
  "ProFormPassword",
2605
+ "ProFormPathValue",
2574
2606
  "ProFormProps",
2575
2607
  "ProFormRadioGroup",
2608
+ "ProFormRecursivePartial",
2576
2609
  "ProFormRequestOption",
2577
2610
  "ProFormSchemaColumn",
2611
+ "ProFormSchemaColumns",
2578
2612
  "ProFormSchemaValueType",
2579
2613
  "ProFormSelect",
2580
2614
  "ProFormSlider",
2615
+ "ProFormStableContextValue",
2616
+ "ProFormStateContextValue",
2581
2617
  "ProFormSwitch",
2618
+ "ProFormSyncToUrl",
2582
2619
  "ProFormText",
2583
2620
  "ProFormTextArea",
2584
2621
  "ProFormUpload",
2585
2622
  "ProFormValidateResult",
2586
2623
  "ProFormValueEnumObj",
2587
2624
  "ProFormValueType",
2625
+ "ProFormValuesPatch",
2588
2626
  "QueryFilter",
2589
2627
  "QueryFilterProps",
2590
2628
  "Rule",
@@ -2598,7 +2636,7 @@
2598
2636
  "useFormWatch"
2599
2637
  ],
2600
2638
  "searchTags": [],
2601
- "typeText": "interface DialogFormProps extends Omit<ProFormProps<Values>, 'title'> { ... }",
2639
+ "typeText": "interface DialogFormProps extends Omit<ProFormProps<Values, Params>, 'title'> { ... }",
2602
2640
  "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';",
2603
2641
  "examples": [
2604
2642
  {
@@ -3199,7 +3237,7 @@
3199
3237
  }
3200
3238
  ],
3201
3239
  "extends": [
3202
- "Omit<ProFormProps<Values>, 'title'>"
3240
+ "Omit<ProFormProps<Values, Params>, 'title'>"
3203
3241
  ],
3204
3242
  "relatedSymbols": [
3205
3243
  "CreateProFormFieldConfig",
@@ -3209,6 +3247,7 @@
3209
3247
  "FormCoreInstance",
3210
3248
  "FormInstance",
3211
3249
  "FormLayout",
3250
+ "FormListContextValue",
3212
3251
  "FormSize",
3213
3252
  "LabelAlign",
3214
3253
  "ProForm",
@@ -3222,10 +3261,12 @@
3222
3261
  "ProFormDependencyProps",
3223
3262
  "ProFormFieldConvertValueFn",
3224
3263
  "ProFormFieldName",
3264
+ "ProFormFieldOptionValue",
3225
3265
  "ProFormFieldProps",
3226
3266
  "ProFormFieldSet",
3227
3267
  "ProFormFieldSetProps",
3228
3268
  "ProFormFieldTransformFn",
3269
+ "ProFormFieldValueMap",
3229
3270
  "ProFormFormInstance",
3230
3271
  "ProFormGroup",
3231
3272
  "ProFormGroupProps",
@@ -3238,20 +3279,27 @@
3238
3279
  "ProFormListProps",
3239
3280
  "ProFormMode",
3240
3281
  "ProFormPassword",
3282
+ "ProFormPathValue",
3241
3283
  "ProFormProps",
3242
3284
  "ProFormRadioGroup",
3285
+ "ProFormRecursivePartial",
3243
3286
  "ProFormRequestOption",
3244
3287
  "ProFormSchemaColumn",
3288
+ "ProFormSchemaColumns",
3245
3289
  "ProFormSchemaValueType",
3246
3290
  "ProFormSelect",
3247
3291
  "ProFormSlider",
3292
+ "ProFormStableContextValue",
3293
+ "ProFormStateContextValue",
3248
3294
  "ProFormSwitch",
3295
+ "ProFormSyncToUrl",
3249
3296
  "ProFormText",
3250
3297
  "ProFormTextArea",
3251
3298
  "ProFormUpload",
3252
3299
  "ProFormValidateResult",
3253
3300
  "ProFormValueEnumObj",
3254
3301
  "ProFormValueType",
3302
+ "ProFormValuesPatch",
3255
3303
  "QueryFilter",
3256
3304
  "QueryFilterProps",
3257
3305
  "Rule",
@@ -3291,6 +3339,7 @@
3291
3339
  "FormCoreInstance",
3292
3340
  "FormInstance",
3293
3341
  "FormLayout",
3342
+ "FormListContextValue",
3294
3343
  "FormSize",
3295
3344
  "LabelAlign",
3296
3345
  "ProForm",
@@ -3304,10 +3353,12 @@
3304
3353
  "ProFormDependencyProps",
3305
3354
  "ProFormFieldConvertValueFn",
3306
3355
  "ProFormFieldName",
3356
+ "ProFormFieldOptionValue",
3307
3357
  "ProFormFieldProps",
3308
3358
  "ProFormFieldSet",
3309
3359
  "ProFormFieldSetProps",
3310
3360
  "ProFormFieldTransformFn",
3361
+ "ProFormFieldValueMap",
3311
3362
  "ProFormFormInstance",
3312
3363
  "ProFormGroup",
3313
3364
  "ProFormGroupProps",
@@ -3320,20 +3371,27 @@
3320
3371
  "ProFormListProps",
3321
3372
  "ProFormMode",
3322
3373
  "ProFormPassword",
3374
+ "ProFormPathValue",
3323
3375
  "ProFormProps",
3324
3376
  "ProFormRadioGroup",
3377
+ "ProFormRecursivePartial",
3325
3378
  "ProFormRequestOption",
3326
3379
  "ProFormSchemaColumn",
3380
+ "ProFormSchemaColumns",
3327
3381
  "ProFormSchemaValueType",
3328
3382
  "ProFormSelect",
3329
3383
  "ProFormSlider",
3384
+ "ProFormStableContextValue",
3385
+ "ProFormStateContextValue",
3330
3386
  "ProFormSwitch",
3387
+ "ProFormSyncToUrl",
3331
3388
  "ProFormText",
3332
3389
  "ProFormTextArea",
3333
3390
  "ProFormUpload",
3334
3391
  "ProFormValidateResult",
3335
3392
  "ProFormValueEnumObj",
3336
3393
  "ProFormValueType",
3394
+ "ProFormValuesPatch",
3337
3395
  "QueryFilter",
3338
3396
  "QueryFilterProps",
3339
3397
  "Rule",
@@ -3347,7 +3405,7 @@
3347
3405
  "useFormWatch"
3348
3406
  ],
3349
3407
  "searchTags": [],
3350
- "typeText": "interface DrawerFormProps extends Omit<ProFormProps<Values>, 'title'> { ... }",
3408
+ "typeText": "interface DrawerFormProps extends Omit<ProFormProps<Values, Params>, 'title'> { ... }",
3351
3409
  "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';",
3352
3410
  "examples": [
3353
3411
  {
@@ -3884,6 +3942,7 @@
3884
3942
  "DrawerFormProps",
3885
3943
  "FormInstance",
3886
3944
  "FormLayout",
3945
+ "FormListContextValue",
3887
3946
  "FormSize",
3888
3947
  "LabelAlign",
3889
3948
  "ProForm",
@@ -3897,10 +3956,12 @@
3897
3956
  "ProFormDependencyProps",
3898
3957
  "ProFormFieldConvertValueFn",
3899
3958
  "ProFormFieldName",
3959
+ "ProFormFieldOptionValue",
3900
3960
  "ProFormFieldProps",
3901
3961
  "ProFormFieldSet",
3902
3962
  "ProFormFieldSetProps",
3903
3963
  "ProFormFieldTransformFn",
3964
+ "ProFormFieldValueMap",
3904
3965
  "ProFormFormInstance",
3905
3966
  "ProFormGroup",
3906
3967
  "ProFormGroupProps",
@@ -3913,20 +3974,27 @@
3913
3974
  "ProFormListProps",
3914
3975
  "ProFormMode",
3915
3976
  "ProFormPassword",
3977
+ "ProFormPathValue",
3916
3978
  "ProFormProps",
3917
3979
  "ProFormRadioGroup",
3980
+ "ProFormRecursivePartial",
3918
3981
  "ProFormRequestOption",
3919
3982
  "ProFormSchemaColumn",
3983
+ "ProFormSchemaColumns",
3920
3984
  "ProFormSchemaValueType",
3921
3985
  "ProFormSelect",
3922
3986
  "ProFormSlider",
3987
+ "ProFormStableContextValue",
3988
+ "ProFormStateContextValue",
3923
3989
  "ProFormSwitch",
3990
+ "ProFormSyncToUrl",
3924
3991
  "ProFormText",
3925
3992
  "ProFormTextArea",
3926
3993
  "ProFormUpload",
3927
3994
  "ProFormValidateResult",
3928
3995
  "ProFormValueEnumObj",
3929
3996
  "ProFormValueType",
3997
+ "ProFormValuesPatch",
3930
3998
  "QueryFilter",
3931
3999
  "QueryFilterProps",
3932
4000
  "Rule",
@@ -3967,6 +4035,7 @@
3967
4035
  "DrawerFormProps",
3968
4036
  "FormCoreInstance",
3969
4037
  "FormLayout",
4038
+ "FormListContextValue",
3970
4039
  "FormSize",
3971
4040
  "LabelAlign",
3972
4041
  "ProForm",
@@ -3980,10 +4049,12 @@
3980
4049
  "ProFormDependencyProps",
3981
4050
  "ProFormFieldConvertValueFn",
3982
4051
  "ProFormFieldName",
4052
+ "ProFormFieldOptionValue",
3983
4053
  "ProFormFieldProps",
3984
4054
  "ProFormFieldSet",
3985
4055
  "ProFormFieldSetProps",
3986
4056
  "ProFormFieldTransformFn",
4057
+ "ProFormFieldValueMap",
3987
4058
  "ProFormFormInstance",
3988
4059
  "ProFormGroup",
3989
4060
  "ProFormGroupProps",
@@ -3996,20 +4067,27 @@
3996
4067
  "ProFormListProps",
3997
4068
  "ProFormMode",
3998
4069
  "ProFormPassword",
4070
+ "ProFormPathValue",
3999
4071
  "ProFormProps",
4000
4072
  "ProFormRadioGroup",
4073
+ "ProFormRecursivePartial",
4001
4074
  "ProFormRequestOption",
4002
4075
  "ProFormSchemaColumn",
4076
+ "ProFormSchemaColumns",
4003
4077
  "ProFormSchemaValueType",
4004
4078
  "ProFormSelect",
4005
4079
  "ProFormSlider",
4080
+ "ProFormStableContextValue",
4081
+ "ProFormStateContextValue",
4006
4082
  "ProFormSwitch",
4083
+ "ProFormSyncToUrl",
4007
4084
  "ProFormText",
4008
4085
  "ProFormTextArea",
4009
4086
  "ProFormUpload",
4010
4087
  "ProFormValidateResult",
4011
4088
  "ProFormValueEnumObj",
4012
4089
  "ProFormValueType",
4090
+ "ProFormValuesPatch",
4013
4091
  "QueryFilter",
4014
4092
  "QueryFilterProps",
4015
4093
  "Rule",
@@ -4050,6 +4128,7 @@
4050
4128
  "DrawerFormProps",
4051
4129
  "FormCoreInstance",
4052
4130
  "FormInstance",
4131
+ "FormListContextValue",
4053
4132
  "FormSize",
4054
4133
  "LabelAlign",
4055
4134
  "ProForm",
@@ -4063,10 +4142,12 @@
4063
4142
  "ProFormDependencyProps",
4064
4143
  "ProFormFieldConvertValueFn",
4065
4144
  "ProFormFieldName",
4145
+ "ProFormFieldOptionValue",
4066
4146
  "ProFormFieldProps",
4067
4147
  "ProFormFieldSet",
4068
4148
  "ProFormFieldSetProps",
4069
4149
  "ProFormFieldTransformFn",
4150
+ "ProFormFieldValueMap",
4070
4151
  "ProFormFormInstance",
4071
4152
  "ProFormGroup",
4072
4153
  "ProFormGroupProps",
@@ -4079,20 +4160,27 @@
4079
4160
  "ProFormListProps",
4080
4161
  "ProFormMode",
4081
4162
  "ProFormPassword",
4163
+ "ProFormPathValue",
4082
4164
  "ProFormProps",
4083
4165
  "ProFormRadioGroup",
4166
+ "ProFormRecursivePartial",
4084
4167
  "ProFormRequestOption",
4085
4168
  "ProFormSchemaColumn",
4169
+ "ProFormSchemaColumns",
4086
4170
  "ProFormSchemaValueType",
4087
4171
  "ProFormSelect",
4088
4172
  "ProFormSlider",
4173
+ "ProFormStableContextValue",
4174
+ "ProFormStateContextValue",
4089
4175
  "ProFormSwitch",
4176
+ "ProFormSyncToUrl",
4090
4177
  "ProFormText",
4091
4178
  "ProFormTextArea",
4092
4179
  "ProFormUpload",
4093
4180
  "ProFormValidateResult",
4094
4181
  "ProFormValueEnumObj",
4095
4182
  "ProFormValueType",
4183
+ "ProFormValuesPatch",
4096
4184
  "QueryFilter",
4097
4185
  "QueryFilterProps",
4098
4186
  "Rule",
@@ -4115,6 +4203,99 @@
4115
4203
  }
4116
4204
  ]
4117
4205
  },
4206
+ {
4207
+ "name": "FormListContextValue",
4208
+ "kind": "type",
4209
+ "category": "forms",
4210
+ "summary": "",
4211
+ "importPath": "@1money/component-ui",
4212
+ "subpathImport": "@1money/component-ui/ProForm",
4213
+ "sourceFile": "src/components/ProForm/interface.ts",
4214
+ "props": [],
4215
+ "extends": [],
4216
+ "relatedSymbols": [
4217
+ "CreateProFormFieldConfig",
4218
+ "DialogForm",
4219
+ "DialogFormProps",
4220
+ "DrawerForm",
4221
+ "DrawerFormProps",
4222
+ "FormCoreInstance",
4223
+ "FormInstance",
4224
+ "FormLayout",
4225
+ "FormSize",
4226
+ "LabelAlign",
4227
+ "ProForm",
4228
+ "ProFormCheckbox",
4229
+ "ProFormCheckboxGroup",
4230
+ "ProFormColProps",
4231
+ "ProFormContextValue",
4232
+ "ProFormDateFormatter",
4233
+ "ProFormDatePicker",
4234
+ "ProFormDependency",
4235
+ "ProFormDependencyProps",
4236
+ "ProFormFieldConvertValueFn",
4237
+ "ProFormFieldName",
4238
+ "ProFormFieldOptionValue",
4239
+ "ProFormFieldProps",
4240
+ "ProFormFieldSet",
4241
+ "ProFormFieldSetProps",
4242
+ "ProFormFieldTransformFn",
4243
+ "ProFormFieldValueMap",
4244
+ "ProFormFormInstance",
4245
+ "ProFormGroup",
4246
+ "ProFormGroupProps",
4247
+ "ProFormItem",
4248
+ "ProFormItemProps",
4249
+ "ProFormItemSharedProps",
4250
+ "ProFormLayoutConfig",
4251
+ "ProFormList",
4252
+ "ProFormListAction",
4253
+ "ProFormListProps",
4254
+ "ProFormMode",
4255
+ "ProFormPassword",
4256
+ "ProFormPathValue",
4257
+ "ProFormProps",
4258
+ "ProFormRadioGroup",
4259
+ "ProFormRecursivePartial",
4260
+ "ProFormRequestOption",
4261
+ "ProFormSchemaColumn",
4262
+ "ProFormSchemaColumns",
4263
+ "ProFormSchemaValueType",
4264
+ "ProFormSelect",
4265
+ "ProFormSlider",
4266
+ "ProFormStableContextValue",
4267
+ "ProFormStateContextValue",
4268
+ "ProFormSwitch",
4269
+ "ProFormSyncToUrl",
4270
+ "ProFormText",
4271
+ "ProFormTextArea",
4272
+ "ProFormUpload",
4273
+ "ProFormValidateResult",
4274
+ "ProFormValueEnumObj",
4275
+ "ProFormValueType",
4276
+ "ProFormValuesPatch",
4277
+ "QueryFilter",
4278
+ "QueryFilterProps",
4279
+ "Rule",
4280
+ "SchemaForm",
4281
+ "SchemaFormProps",
4282
+ "SubmitterProps",
4283
+ "UseFormWatch",
4284
+ "ValidateStatus",
4285
+ "ValidateTrigger",
4286
+ "createProFormField",
4287
+ "useFormWatch"
4288
+ ],
4289
+ "searchTags": [],
4290
+ "typeText": "interface FormListContextValue { ... }",
4291
+ "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';",
4292
+ "examples": [
4293
+ {
4294
+ "hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
4295
+ "source": "canonical"
4296
+ }
4297
+ ]
4298
+ },
4118
4299
  {
4119
4300
  "name": "FormSize",
4120
4301
  "kind": "type",
@@ -4134,6 +4315,7 @@
4134
4315
  "FormCoreInstance",
4135
4316
  "FormInstance",
4136
4317
  "FormLayout",
4318
+ "FormListContextValue",
4137
4319
  "LabelAlign",
4138
4320
  "ProForm",
4139
4321
  "ProFormCheckbox",
@@ -4146,10 +4328,12 @@
4146
4328
  "ProFormDependencyProps",
4147
4329
  "ProFormFieldConvertValueFn",
4148
4330
  "ProFormFieldName",
4331
+ "ProFormFieldOptionValue",
4149
4332
  "ProFormFieldProps",
4150
4333
  "ProFormFieldSet",
4151
4334
  "ProFormFieldSetProps",
4152
4335
  "ProFormFieldTransformFn",
4336
+ "ProFormFieldValueMap",
4153
4337
  "ProFormFormInstance",
4154
4338
  "ProFormGroup",
4155
4339
  "ProFormGroupProps",
@@ -4162,20 +4346,27 @@
4162
4346
  "ProFormListProps",
4163
4347
  "ProFormMode",
4164
4348
  "ProFormPassword",
4349
+ "ProFormPathValue",
4165
4350
  "ProFormProps",
4166
4351
  "ProFormRadioGroup",
4352
+ "ProFormRecursivePartial",
4167
4353
  "ProFormRequestOption",
4168
4354
  "ProFormSchemaColumn",
4355
+ "ProFormSchemaColumns",
4169
4356
  "ProFormSchemaValueType",
4170
4357
  "ProFormSelect",
4171
4358
  "ProFormSlider",
4359
+ "ProFormStableContextValue",
4360
+ "ProFormStateContextValue",
4172
4361
  "ProFormSwitch",
4362
+ "ProFormSyncToUrl",
4173
4363
  "ProFormText",
4174
4364
  "ProFormTextArea",
4175
4365
  "ProFormUpload",
4176
4366
  "ProFormValidateResult",
4177
4367
  "ProFormValueEnumObj",
4178
4368
  "ProFormValueType",
4369
+ "ProFormValuesPatch",
4179
4370
  "QueryFilter",
4180
4371
  "QueryFilterProps",
4181
4372
  "Rule",
@@ -4232,31 +4423,83 @@
4232
4423
  "source": "readme"
4233
4424
  },
4234
4425
  {
4235
- "hash": "0cda435f1e77eae5e9d6a2c883f7b45f34643b77a9a4f8ca3d23ea33a09b9a01",
4426
+ "hash": "17543ee50d9e8d0c57b34b1c130fc07f3f79acf781228ef5a831be51e710f6c5",
4236
4427
  "source": "readme"
4237
4428
  },
4238
4429
  {
4239
- "hash": "dbe5994cff8f6c4f3635681f94133b647911651dcbd137756971ec6c7ff898f9",
4430
+ "hash": "659937a02004ff278161fb5e5f275f70e74bfc2be9cb0006f467fd47fb6550f2",
4431
+ "source": "stories"
4432
+ },
4433
+ {
4434
+ "hash": "2c3e8df84f97a0c45dee2b95fc78c4b44f9173c4b0421a06f1c4ba6088ba407e",
4435
+ "source": "stories"
4436
+ },
4437
+ {
4438
+ "hash": "900a6c842c5f571d94658a4de0d28d1ce726745efc44a81da6b6ab04cb3c3c1d",
4439
+ "source": "stories"
4440
+ },
4441
+ {
4442
+ "hash": "a42255849b141dd73dff3ced30dfeb8ee519d47ca162bbe07a53959a0ea251c4",
4443
+ "source": "stories"
4444
+ },
4445
+ {
4446
+ "hash": "05c3c5fa95ff7d6243ba7d1b45aa7eeb2fbd1b7a8ac53adf85ac29f3c2d215ec",
4447
+ "source": "stories"
4448
+ },
4449
+ {
4450
+ "hash": "dd276ec40a68db70b9c67d52adaacba880f9c1f3c39d293d57b769890d92a448",
4451
+ "source": "stories"
4452
+ },
4453
+ {
4454
+ "hash": "147587a799da67b4343553b5435fe31ac9f430de58f9e765d4f6ab30880c9cda",
4455
+ "source": "stories"
4456
+ },
4457
+ {
4458
+ "hash": "ecb3533d4ee872b4622fda0666553a144f5e4e9dc6b2721213f921fd0d2757da",
4459
+ "source": "stories"
4460
+ },
4461
+ {
4462
+ "hash": "aad211d09ce80f06ce3a71874dacf77a849944badd75f6b1b9ac1d4595d1e789",
4463
+ "source": "stories"
4464
+ },
4465
+ {
4466
+ "hash": "393f0c9c2f19d0c46277430d3414f19443e0ae06c63b1cc70483c5107356c310",
4467
+ "source": "stories"
4468
+ },
4469
+ {
4470
+ "hash": "3b1c013f838f3b6af14a9a63496b252a2639f729be7c2afe0f0aa6f72973e0fe",
4471
+ "source": "stories"
4472
+ },
4473
+ {
4474
+ "hash": "88b4f9d2df4fa6c3faa1e2f13f63d992f6c70030e1c5f56b23f198bc735e0ee7",
4475
+ "source": "stories"
4476
+ },
4477
+ {
4478
+ "hash": "f21609ac4b7aeed97ece902670a14304b9156937eeca3ab4edf884ea4a8289aa",
4479
+ "source": "stories"
4480
+ },
4481
+ {
4482
+ "hash": "8fb084db7fe25d6133b446ee034f21273995ab316045602bae78fecb682613a1",
4240
4483
  "source": "stories"
4241
4484
  },
4242
4485
  {
4243
- "hash": "99531c5452d90fd65cb2b8267d93bd81cafb03cf282005f5232b325f159fa2f7",
4486
+ "hash": "d0d6d084a06b00746d89e17b1ebf4562e80c7210150ba0b8f6631c5f03a5eb63",
4244
4487
  "source": "stories"
4245
4488
  },
4246
4489
  {
4247
- "hash": "06b3a8e6513382a6e7d5bd530b625d83a008bbb52aa5f05cb2812e54e8854b3a",
4490
+ "hash": "5e62458df6c4fc5e394adb062eaf4e86dc588a4e0853291cab7570d562727b7d",
4248
4491
  "source": "stories"
4249
4492
  },
4250
4493
  {
4251
- "hash": "35d03672d22c429b5728577ce7f8d9a9e1c71faa8b6a6831ec83c20ab0f32541",
4494
+ "hash": "a33e8cbf38a27bce297ad4b5fcc85bfdaca5929487fdcef6068cea40b4c01bb1",
4252
4495
  "source": "stories"
4253
4496
  },
4254
4497
  {
4255
- "hash": "0738342c14cdb11218bb04fca3fb2f8adc34b4d7bbe92ca4a57b934569d07089",
4498
+ "hash": "889a457e21065033d6605caafda90cc3784769e68c8bef026d4ad686ade70300",
4256
4499
  "source": "stories"
4257
4500
  },
4258
4501
  {
4259
- "hash": "259f23e43a9bab9ac08664151900a9dc9f3cc181adccdacc7a28bd34ab37be7e",
4502
+ "hash": "e163c095234bf8e498a14071e955061aeaf911e0efdd0052b6b1940ce57c97d9",
4260
4503
  "source": "stories"
4261
4504
  }
4262
4505
  ]
@@ -5219,6 +5462,7 @@
5219
5462
  "FormCoreInstance",
5220
5463
  "FormInstance",
5221
5464
  "FormLayout",
5465
+ "FormListContextValue",
5222
5466
  "FormSize",
5223
5467
  "ProForm",
5224
5468
  "ProFormCheckbox",
@@ -5231,10 +5475,12 @@
5231
5475
  "ProFormDependencyProps",
5232
5476
  "ProFormFieldConvertValueFn",
5233
5477
  "ProFormFieldName",
5478
+ "ProFormFieldOptionValue",
5234
5479
  "ProFormFieldProps",
5235
5480
  "ProFormFieldSet",
5236
5481
  "ProFormFieldSetProps",
5237
5482
  "ProFormFieldTransformFn",
5483
+ "ProFormFieldValueMap",
5238
5484
  "ProFormFormInstance",
5239
5485
  "ProFormGroup",
5240
5486
  "ProFormGroupProps",
@@ -5247,20 +5493,27 @@
5247
5493
  "ProFormListProps",
5248
5494
  "ProFormMode",
5249
5495
  "ProFormPassword",
5496
+ "ProFormPathValue",
5250
5497
  "ProFormProps",
5251
5498
  "ProFormRadioGroup",
5499
+ "ProFormRecursivePartial",
5252
5500
  "ProFormRequestOption",
5253
5501
  "ProFormSchemaColumn",
5502
+ "ProFormSchemaColumns",
5254
5503
  "ProFormSchemaValueType",
5255
5504
  "ProFormSelect",
5256
5505
  "ProFormSlider",
5506
+ "ProFormStableContextValue",
5507
+ "ProFormStateContextValue",
5257
5508
  "ProFormSwitch",
5509
+ "ProFormSyncToUrl",
5258
5510
  "ProFormText",
5259
5511
  "ProFormTextArea",
5260
5512
  "ProFormUpload",
5261
5513
  "ProFormValidateResult",
5262
5514
  "ProFormValueEnumObj",
5263
5515
  "ProFormValueType",
5516
+ "ProFormValuesPatch",
5264
5517
  "QueryFilter",
5265
5518
  "QueryFilterProps",
5266
5519
  "Rule",
@@ -7000,7 +7253,7 @@
7000
7253
  },
7001
7254
  {
7002
7255
  "name": "initialValues",
7003
- "type": "Partial<Values>",
7256
+ "type": "ProFormRecursivePartial<Values>",
7004
7257
  "optional": true,
7005
7258
  "default": null,
7006
7259
  "description": "",
@@ -7024,7 +7277,7 @@
7024
7277
  },
7025
7278
  {
7026
7279
  "name": "onValuesChange",
7027
- "type": "(\n changedValues: Partial<Values>,\n allValues: Values,\n ) => void",
7280
+ "type": "(\n changedValues: ProFormValuesPatch<Values>,\n allValues: Values,\n ) => void",
7028
7281
  "optional": true,
7029
7282
  "default": null,
7030
7283
  "description": "",
@@ -7056,7 +7309,7 @@
7056
7309
  },
7057
7310
  {
7058
7311
  "name": "syncToUrl",
7059
- "type": "ProFormSyncToUrl",
7312
+ "type": "ProFormSyncToUrl<Values>",
7060
7313
  "optional": true,
7061
7314
  "default": null,
7062
7315
  "description": "Sync form values to the URL query string; the function form maps values both ways.",
@@ -7072,7 +7325,7 @@
7072
7325
  },
7073
7326
  {
7074
7327
  "name": "extraUrlParams",
7075
- "type": "Record<string, unknown>",
7328
+ "type": "Record<string, any>",
7076
7329
  "optional": true,
7077
7330
  "default": null,
7078
7331
  "description": "Extra params always written to the URL alongside the form values.",
@@ -7184,7 +7437,7 @@
7184
7437
  },
7185
7438
  {
7186
7439
  "name": "request",
7187
- "type": "(params?: unknown) => Promise<Partial<Values>>",
7440
+ "type": "(params?: Params) => Promise<ProFormValuesPatch<Values>>",
7188
7441
  "optional": true,
7189
7442
  "default": null,
7190
7443
  "description": "",
@@ -7192,7 +7445,7 @@
7192
7445
  },
7193
7446
  {
7194
7447
  "name": "params",
7195
- "type": "unknown",
7448
+ "type": "Params",
7196
7449
  "optional": true,
7197
7450
  "default": null,
7198
7451
  "description": "",
@@ -7224,7 +7477,7 @@
7224
7477
  },
7225
7478
  {
7226
7479
  "name": "fieldProps",
7227
- "type": "Record<string, unknown>",
7480
+ "type": "Record<string, any>",
7228
7481
  "optional": true,
7229
7482
  "default": null,
7230
7483
  "description": "Defaults injected into every ProFormXxx field's component props (field-level wins)",
@@ -7251,6 +7504,7 @@
7251
7504
  "FormCoreInstance",
7252
7505
  "FormInstance",
7253
7506
  "FormLayout",
7507
+ "FormListContextValue",
7254
7508
  "FormSize",
7255
7509
  "LabelAlign",
7256
7510
  "ProFormCheckbox",
@@ -7263,10 +7517,12 @@
7263
7517
  "ProFormDependencyProps",
7264
7518
  "ProFormFieldConvertValueFn",
7265
7519
  "ProFormFieldName",
7520
+ "ProFormFieldOptionValue",
7266
7521
  "ProFormFieldProps",
7267
7522
  "ProFormFieldSet",
7268
7523
  "ProFormFieldSetProps",
7269
7524
  "ProFormFieldTransformFn",
7525
+ "ProFormFieldValueMap",
7270
7526
  "ProFormFormInstance",
7271
7527
  "ProFormGroup",
7272
7528
  "ProFormGroupProps",
@@ -7279,20 +7535,27 @@
7279
7535
  "ProFormListProps",
7280
7536
  "ProFormMode",
7281
7537
  "ProFormPassword",
7538
+ "ProFormPathValue",
7282
7539
  "ProFormProps",
7283
7540
  "ProFormRadioGroup",
7541
+ "ProFormRecursivePartial",
7284
7542
  "ProFormRequestOption",
7285
7543
  "ProFormSchemaColumn",
7544
+ "ProFormSchemaColumns",
7286
7545
  "ProFormSchemaValueType",
7287
7546
  "ProFormSelect",
7288
7547
  "ProFormSlider",
7548
+ "ProFormStableContextValue",
7549
+ "ProFormStateContextValue",
7289
7550
  "ProFormSwitch",
7551
+ "ProFormSyncToUrl",
7290
7552
  "ProFormText",
7291
7553
  "ProFormTextArea",
7292
7554
  "ProFormUpload",
7293
7555
  "ProFormValidateResult",
7294
7556
  "ProFormValueEnumObj",
7295
7557
  "ProFormValueType",
7558
+ "ProFormValuesPatch",
7296
7559
  "QueryFilter",
7297
7560
  "QueryFilterProps",
7298
7561
  "Rule",
@@ -7347,7 +7610,23 @@
7347
7610
  "source": "readme"
7348
7611
  },
7349
7612
  {
7350
- "hash": "31e687407721cc55ccd2d23531c5e503c2b504126b32c3d64a6ea3fd5841a76c",
7613
+ "hash": "562dddaaddd3e544936b5e89215d9e70e60d127971cf1ac6ae60d8b177af7fab",
7614
+ "source": "readme"
7615
+ },
7616
+ {
7617
+ "hash": "62750a71bdc58bc9e0f99757dab54b58d289781855f75464a3dfde041584e5a9",
7618
+ "source": "readme"
7619
+ },
7620
+ {
7621
+ "hash": "4a895c708129dba60a9452a82b550b2f431e587c0987b51738984c48f0e964e1",
7622
+ "source": "readme"
7623
+ },
7624
+ {
7625
+ "hash": "aba0160ff1433e8ec47e740639c3fcc345982a27d57e7200952dd2bc7e98f388",
7626
+ "source": "readme"
7627
+ },
7628
+ {
7629
+ "hash": "4617e0aac2539a1d63cf4476b33848da29083ee5a92a4655275ac7eba9eb0246",
7351
7630
  "source": "readme"
7352
7631
  },
7353
7632
  {
@@ -7362,12 +7641,16 @@
7362
7641
  "hash": "b978823a61980bc8652f12244d9754f6b25138846aa816e17df5f72394a679f6",
7363
7642
  "source": "readme"
7364
7643
  },
7644
+ {
7645
+ "hash": "c71a7dffc772a7bab75e4c0e65062753a8527d613df86631bfff9aa0e99ea28b",
7646
+ "source": "readme"
7647
+ },
7365
7648
  {
7366
7649
  "hash": "9cfaec36634043a155c8a1d3642132cb4bc92d53e7b40e98fa08319fae0b6a76",
7367
7650
  "source": "readme"
7368
7651
  },
7369
7652
  {
7370
- "hash": "699022fcfe2193a016f965ca015fe7b541b5f1215b76c3ce9b65711615c76f76",
7653
+ "hash": "72791f662fcf89e80142f2bfa365124f069ad691fd8779bb8d42587b91073e0d",
7371
7654
  "source": "readme"
7372
7655
  },
7373
7656
  {
@@ -7391,7 +7674,7 @@
7391
7674
  "source": "stories"
7392
7675
  },
7393
7676
  {
7394
- "hash": "35ef262aacb50e576c661e627da1e7f2a63d545598db02d89b2aca173d0a6129",
7677
+ "hash": "a4f761e7565b681a7fc266a2d8fa8abea6821b0cdde836710ae297a857a86c19",
7395
7678
  "source": "stories"
7396
7679
  },
7397
7680
  {
@@ -7419,7 +7702,11 @@
7419
7702
  "source": "stories"
7420
7703
  },
7421
7704
  {
7422
- "hash": "3c3505571d048f21d338aa69eef9958e1c52c1291853b9b05ab914623319a464",
7705
+ "hash": "692b786f52a95876c3ce1005391b4720c2fdb792e169c6832998d818a6be5fbc",
7706
+ "source": "stories"
7707
+ },
7708
+ {
7709
+ "hash": "d5369ef44077dbcf96179383100ab2803515743fec525cd9038c16b98537baa8",
7423
7710
  "source": "stories"
7424
7711
  },
7425
7712
  {
@@ -7450,6 +7737,10 @@
7450
7737
  "hash": "bfa365023d672d8f94c08d4bf7dba03404964ed3489949e44748853da10be22b",
7451
7738
  "source": "stories"
7452
7739
  },
7740
+ {
7741
+ "hash": "267b1cee479eb227e3e0dc2e583586ffa25a245dc1ea61600d8b038326496d16",
7742
+ "source": "stories"
7743
+ },
7453
7744
  {
7454
7745
  "hash": "5694ed3a17a8aaa5d7736cb50c6e16eff3b03b29a74afbbd401544ec9a894672",
7455
7746
  "source": "stories"
@@ -7475,7 +7766,7 @@
7475
7766
  "source": "stories"
7476
7767
  },
7477
7768
  {
7478
- "hash": "49dfc73d483629f124012f5f0ce9f22e06b9496d4f80a2c7a2ad32ac3cb8f6c9",
7769
+ "hash": "e81d400d6a0f0bda06097d7c51b429dfa7fd16d2ad7ccba32265402b756c22bb",
7479
7770
  "source": "stories"
7480
7771
  },
7481
7772
  {
@@ -7483,7 +7774,7 @@
7483
7774
  "source": "stories"
7484
7775
  },
7485
7776
  {
7486
- "hash": "fcf58f34ec54a1feebe1b6bcd494ced5bc067fe18fe4faea458801a538a151fb",
7777
+ "hash": "bde1cfac6cd9e79abd8a588ca4513007cd6469937fb2c18b39021f44a28134b7",
7487
7778
  "source": "stories"
7488
7779
  },
7489
7780
  {
@@ -7557,6 +7848,26 @@
7557
7848
  {
7558
7849
  "hash": "5f633bf5a40beede394e15ffdb383d616174b92eb10905d331eda3670885be60",
7559
7850
  "source": "stories"
7851
+ },
7852
+ {
7853
+ "hash": "d6965745af06852a81359a3c4705cf8186acb400f765e3f1eb95f8184c09ae58",
7854
+ "source": "stories"
7855
+ },
7856
+ {
7857
+ "hash": "269342ac60c8933658e1742f472b34e32a6a6356d8ef56c07232ead730f83373",
7858
+ "source": "stories"
7859
+ },
7860
+ {
7861
+ "hash": "82296675b7970df9eb7f280d893c161ec78b0563e42bd73528b51abb8533923c",
7862
+ "source": "stories"
7863
+ },
7864
+ {
7865
+ "hash": "b5990026021f4a0cfbac3d0bee608a7ae7c76564e78a068bfc6dd6cedbf985cf",
7866
+ "source": "stories"
7867
+ },
7868
+ {
7869
+ "hash": "997b534904e60a96182155c95bdb97f044ea39feef9ac915c014984b29bbf90b",
7870
+ "source": "stories"
7560
7871
  }
7561
7872
  ]
7562
7873
  },
@@ -7579,6 +7890,7 @@
7579
7890
  "FormCoreInstance",
7580
7891
  "FormInstance",
7581
7892
  "FormLayout",
7893
+ "FormListContextValue",
7582
7894
  "FormSize",
7583
7895
  "LabelAlign",
7584
7896
  "ProForm",
@@ -7591,10 +7903,12 @@
7591
7903
  "ProFormDependencyProps",
7592
7904
  "ProFormFieldConvertValueFn",
7593
7905
  "ProFormFieldName",
7906
+ "ProFormFieldOptionValue",
7594
7907
  "ProFormFieldProps",
7595
7908
  "ProFormFieldSet",
7596
7909
  "ProFormFieldSetProps",
7597
7910
  "ProFormFieldTransformFn",
7911
+ "ProFormFieldValueMap",
7598
7912
  "ProFormFormInstance",
7599
7913
  "ProFormGroup",
7600
7914
  "ProFormGroupProps",
@@ -7607,20 +7921,27 @@
7607
7921
  "ProFormListProps",
7608
7922
  "ProFormMode",
7609
7923
  "ProFormPassword",
7924
+ "ProFormPathValue",
7610
7925
  "ProFormProps",
7611
7926
  "ProFormRadioGroup",
7927
+ "ProFormRecursivePartial",
7612
7928
  "ProFormRequestOption",
7613
7929
  "ProFormSchemaColumn",
7930
+ "ProFormSchemaColumns",
7614
7931
  "ProFormSchemaValueType",
7615
7932
  "ProFormSelect",
7616
7933
  "ProFormSlider",
7934
+ "ProFormStableContextValue",
7935
+ "ProFormStateContextValue",
7617
7936
  "ProFormSwitch",
7937
+ "ProFormSyncToUrl",
7618
7938
  "ProFormText",
7619
7939
  "ProFormTextArea",
7620
7940
  "ProFormUpload",
7621
7941
  "ProFormValidateResult",
7622
7942
  "ProFormValueEnumObj",
7623
7943
  "ProFormValueType",
7944
+ "ProFormValuesPatch",
7624
7945
  "QueryFilter",
7625
7946
  "QueryFilterProps",
7626
7947
  "Rule",
@@ -7661,6 +7982,7 @@
7661
7982
  "FormCoreInstance",
7662
7983
  "FormInstance",
7663
7984
  "FormLayout",
7985
+ "FormListContextValue",
7664
7986
  "FormSize",
7665
7987
  "LabelAlign",
7666
7988
  "ProForm",
@@ -7673,10 +7995,12 @@
7673
7995
  "ProFormDependencyProps",
7674
7996
  "ProFormFieldConvertValueFn",
7675
7997
  "ProFormFieldName",
7998
+ "ProFormFieldOptionValue",
7676
7999
  "ProFormFieldProps",
7677
8000
  "ProFormFieldSet",
7678
8001
  "ProFormFieldSetProps",
7679
8002
  "ProFormFieldTransformFn",
8003
+ "ProFormFieldValueMap",
7680
8004
  "ProFormFormInstance",
7681
8005
  "ProFormGroup",
7682
8006
  "ProFormGroupProps",
@@ -7689,20 +8013,27 @@
7689
8013
  "ProFormListProps",
7690
8014
  "ProFormMode",
7691
8015
  "ProFormPassword",
8016
+ "ProFormPathValue",
7692
8017
  "ProFormProps",
7693
8018
  "ProFormRadioGroup",
8019
+ "ProFormRecursivePartial",
7694
8020
  "ProFormRequestOption",
7695
8021
  "ProFormSchemaColumn",
8022
+ "ProFormSchemaColumns",
7696
8023
  "ProFormSchemaValueType",
7697
8024
  "ProFormSelect",
7698
8025
  "ProFormSlider",
8026
+ "ProFormStableContextValue",
8027
+ "ProFormStateContextValue",
7699
8028
  "ProFormSwitch",
8029
+ "ProFormSyncToUrl",
7700
8030
  "ProFormText",
7701
8031
  "ProFormTextArea",
7702
8032
  "ProFormUpload",
7703
8033
  "ProFormValidateResult",
7704
8034
  "ProFormValueEnumObj",
7705
8035
  "ProFormValueType",
8036
+ "ProFormValuesPatch",
7706
8037
  "QueryFilter",
7707
8038
  "QueryFilterProps",
7708
8039
  "Rule",
@@ -7743,6 +8074,7 @@
7743
8074
  "FormCoreInstance",
7744
8075
  "FormInstance",
7745
8076
  "FormLayout",
8077
+ "FormListContextValue",
7746
8078
  "FormSize",
7747
8079
  "LabelAlign",
7748
8080
  "ProForm",
@@ -7755,10 +8087,12 @@
7755
8087
  "ProFormDependencyProps",
7756
8088
  "ProFormFieldConvertValueFn",
7757
8089
  "ProFormFieldName",
8090
+ "ProFormFieldOptionValue",
7758
8091
  "ProFormFieldProps",
7759
8092
  "ProFormFieldSet",
7760
8093
  "ProFormFieldSetProps",
7761
8094
  "ProFormFieldTransformFn",
8095
+ "ProFormFieldValueMap",
7762
8096
  "ProFormFormInstance",
7763
8097
  "ProFormGroup",
7764
8098
  "ProFormGroupProps",
@@ -7771,20 +8105,27 @@
7771
8105
  "ProFormListProps",
7772
8106
  "ProFormMode",
7773
8107
  "ProFormPassword",
8108
+ "ProFormPathValue",
7774
8109
  "ProFormProps",
7775
8110
  "ProFormRadioGroup",
8111
+ "ProFormRecursivePartial",
7776
8112
  "ProFormRequestOption",
7777
8113
  "ProFormSchemaColumn",
8114
+ "ProFormSchemaColumns",
7778
8115
  "ProFormSchemaValueType",
7779
8116
  "ProFormSelect",
7780
8117
  "ProFormSlider",
8118
+ "ProFormStableContextValue",
8119
+ "ProFormStateContextValue",
7781
8120
  "ProFormSwitch",
8121
+ "ProFormSyncToUrl",
7782
8122
  "ProFormText",
7783
8123
  "ProFormTextArea",
7784
8124
  "ProFormUpload",
7785
8125
  "ProFormValidateResult",
7786
8126
  "ProFormValueEnumObj",
7787
8127
  "ProFormValueType",
8128
+ "ProFormValuesPatch",
7788
8129
  "QueryFilter",
7789
8130
  "QueryFilterProps",
7790
8131
  "Rule",
@@ -7826,6 +8167,7 @@
7826
8167
  "FormCoreInstance",
7827
8168
  "FormInstance",
7828
8169
  "FormLayout",
8170
+ "FormListContextValue",
7829
8171
  "FormSize",
7830
8172
  "LabelAlign",
7831
8173
  "ProForm",
@@ -7838,10 +8180,12 @@
7838
8180
  "ProFormDependencyProps",
7839
8181
  "ProFormFieldConvertValueFn",
7840
8182
  "ProFormFieldName",
8183
+ "ProFormFieldOptionValue",
7841
8184
  "ProFormFieldProps",
7842
8185
  "ProFormFieldSet",
7843
8186
  "ProFormFieldSetProps",
7844
8187
  "ProFormFieldTransformFn",
8188
+ "ProFormFieldValueMap",
7845
8189
  "ProFormFormInstance",
7846
8190
  "ProFormGroup",
7847
8191
  "ProFormGroupProps",
@@ -7854,20 +8198,27 @@
7854
8198
  "ProFormListProps",
7855
8199
  "ProFormMode",
7856
8200
  "ProFormPassword",
8201
+ "ProFormPathValue",
7857
8202
  "ProFormProps",
7858
8203
  "ProFormRadioGroup",
8204
+ "ProFormRecursivePartial",
7859
8205
  "ProFormRequestOption",
7860
8206
  "ProFormSchemaColumn",
8207
+ "ProFormSchemaColumns",
7861
8208
  "ProFormSchemaValueType",
7862
8209
  "ProFormSelect",
7863
8210
  "ProFormSlider",
8211
+ "ProFormStableContextValue",
8212
+ "ProFormStateContextValue",
7864
8213
  "ProFormSwitch",
8214
+ "ProFormSyncToUrl",
7865
8215
  "ProFormText",
7866
8216
  "ProFormTextArea",
7867
8217
  "ProFormUpload",
7868
8218
  "ProFormValidateResult",
7869
8219
  "ProFormValueEnumObj",
7870
8220
  "ProFormValueType",
8221
+ "ProFormValuesPatch",
7871
8222
  "QueryFilter",
7872
8223
  "QueryFilterProps",
7873
8224
  "Rule",
@@ -7881,7 +8232,7 @@
7881
8232
  "useFormWatch"
7882
8233
  ],
7883
8234
  "searchTags": [],
7884
- "typeText": "interface ProFormContextValue extends ProFormStableContextValue, ProFormStateContextValue { ... }",
8235
+ "typeText": "interface ProFormContextValue extends ProFormStableContextValue<Values>, ProFormStateContextValue<Values> { ... }",
7885
8236
  "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';",
7886
8237
  "examples": [
7887
8238
  {
@@ -7909,6 +8260,7 @@
7909
8260
  "FormCoreInstance",
7910
8261
  "FormInstance",
7911
8262
  "FormLayout",
8263
+ "FormListContextValue",
7912
8264
  "FormSize",
7913
8265
  "LabelAlign",
7914
8266
  "ProForm",
@@ -7921,10 +8273,12 @@
7921
8273
  "ProFormDependencyProps",
7922
8274
  "ProFormFieldConvertValueFn",
7923
8275
  "ProFormFieldName",
8276
+ "ProFormFieldOptionValue",
7924
8277
  "ProFormFieldProps",
7925
8278
  "ProFormFieldSet",
7926
8279
  "ProFormFieldSetProps",
7927
8280
  "ProFormFieldTransformFn",
8281
+ "ProFormFieldValueMap",
7928
8282
  "ProFormFormInstance",
7929
8283
  "ProFormGroup",
7930
8284
  "ProFormGroupProps",
@@ -7937,20 +8291,27 @@
7937
8291
  "ProFormListProps",
7938
8292
  "ProFormMode",
7939
8293
  "ProFormPassword",
8294
+ "ProFormPathValue",
7940
8295
  "ProFormProps",
7941
8296
  "ProFormRadioGroup",
8297
+ "ProFormRecursivePartial",
7942
8298
  "ProFormRequestOption",
7943
8299
  "ProFormSchemaColumn",
8300
+ "ProFormSchemaColumns",
7944
8301
  "ProFormSchemaValueType",
7945
8302
  "ProFormSelect",
7946
8303
  "ProFormSlider",
8304
+ "ProFormStableContextValue",
8305
+ "ProFormStateContextValue",
7947
8306
  "ProFormSwitch",
8307
+ "ProFormSyncToUrl",
7948
8308
  "ProFormText",
7949
8309
  "ProFormTextArea",
7950
8310
  "ProFormUpload",
7951
8311
  "ProFormValidateResult",
7952
8312
  "ProFormValueEnumObj",
7953
8313
  "ProFormValueType",
8314
+ "ProFormValuesPatch",
7954
8315
  "QueryFilter",
7955
8316
  "QueryFilterProps",
7956
8317
  "Rule",
@@ -7964,7 +8325,7 @@
7964
8325
  "useFormWatch"
7965
8326
  ],
7966
8327
  "searchTags": [],
7967
- "typeText": "| 'string'\n | 'number'\n | (string & {})\n | ((value: Date, name: string) => unknown)\n | false",
8328
+ "typeText": "| 'string'\n | 'number'\n | (string & {})\n | ((value: Date, name: string) => any)\n | false",
7968
8329
  "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';",
7969
8330
  "examples": [
7970
8331
  {
@@ -7992,6 +8353,7 @@
7992
8353
  "FormCoreInstance",
7993
8354
  "FormInstance",
7994
8355
  "FormLayout",
8356
+ "FormListContextValue",
7995
8357
  "FormSize",
7996
8358
  "LabelAlign",
7997
8359
  "ProForm",
@@ -8004,10 +8366,12 @@
8004
8366
  "ProFormDependencyProps",
8005
8367
  "ProFormFieldConvertValueFn",
8006
8368
  "ProFormFieldName",
8369
+ "ProFormFieldOptionValue",
8007
8370
  "ProFormFieldProps",
8008
8371
  "ProFormFieldSet",
8009
8372
  "ProFormFieldSetProps",
8010
8373
  "ProFormFieldTransformFn",
8374
+ "ProFormFieldValueMap",
8011
8375
  "ProFormFormInstance",
8012
8376
  "ProFormGroup",
8013
8377
  "ProFormGroupProps",
@@ -8020,20 +8384,27 @@
8020
8384
  "ProFormListProps",
8021
8385
  "ProFormMode",
8022
8386
  "ProFormPassword",
8387
+ "ProFormPathValue",
8023
8388
  "ProFormProps",
8024
8389
  "ProFormRadioGroup",
8390
+ "ProFormRecursivePartial",
8025
8391
  "ProFormRequestOption",
8026
8392
  "ProFormSchemaColumn",
8393
+ "ProFormSchemaColumns",
8027
8394
  "ProFormSchemaValueType",
8028
8395
  "ProFormSelect",
8029
8396
  "ProFormSlider",
8397
+ "ProFormStableContextValue",
8398
+ "ProFormStateContextValue",
8030
8399
  "ProFormSwitch",
8400
+ "ProFormSyncToUrl",
8031
8401
  "ProFormText",
8032
8402
  "ProFormTextArea",
8033
8403
  "ProFormUpload",
8034
8404
  "ProFormValidateResult",
8035
8405
  "ProFormValueEnumObj",
8036
8406
  "ProFormValueType",
8407
+ "ProFormValuesPatch",
8037
8408
  "QueryFilter",
8038
8409
  "QueryFilterProps",
8039
8410
  "Rule",
@@ -8069,7 +8440,7 @@
8069
8440
  "props": [
8070
8441
  {
8071
8442
  "name": "name",
8072
- "type": "ProFormFieldName<Values>[]",
8443
+ "type": "Name[]",
8073
8444
  "optional": false,
8074
8445
  "default": null,
8075
8446
  "description": "",
@@ -8077,7 +8448,7 @@
8077
8448
  },
8078
8449
  {
8079
8450
  "name": "children",
8080
- "type": "(\n values: Record<string, unknown>,\n form: ProFormFormInstance<Values>,\n ) => ReactNode",
8451
+ "type": "(\n values: ProFormFieldValueMap<Values, Name>,\n form: ProFormFormInstance<Values>,\n ) => ReactNode",
8081
8452
  "optional": false,
8082
8453
  "default": null,
8083
8454
  "description": "",
@@ -8094,6 +8465,7 @@
8094
8465
  "FormCoreInstance",
8095
8466
  "FormInstance",
8096
8467
  "FormLayout",
8468
+ "FormListContextValue",
8097
8469
  "FormSize",
8098
8470
  "LabelAlign",
8099
8471
  "ProForm",
@@ -8106,10 +8478,12 @@
8106
8478
  "ProFormDependencyProps",
8107
8479
  "ProFormFieldConvertValueFn",
8108
8480
  "ProFormFieldName",
8481
+ "ProFormFieldOptionValue",
8109
8482
  "ProFormFieldProps",
8110
8483
  "ProFormFieldSet",
8111
8484
  "ProFormFieldSetProps",
8112
8485
  "ProFormFieldTransformFn",
8486
+ "ProFormFieldValueMap",
8113
8487
  "ProFormFormInstance",
8114
8488
  "ProFormGroup",
8115
8489
  "ProFormGroupProps",
@@ -8122,20 +8496,27 @@
8122
8496
  "ProFormListProps",
8123
8497
  "ProFormMode",
8124
8498
  "ProFormPassword",
8499
+ "ProFormPathValue",
8125
8500
  "ProFormProps",
8126
8501
  "ProFormRadioGroup",
8502
+ "ProFormRecursivePartial",
8127
8503
  "ProFormRequestOption",
8128
8504
  "ProFormSchemaColumn",
8505
+ "ProFormSchemaColumns",
8129
8506
  "ProFormSchemaValueType",
8130
8507
  "ProFormSelect",
8131
8508
  "ProFormSlider",
8509
+ "ProFormStableContextValue",
8510
+ "ProFormStateContextValue",
8132
8511
  "ProFormSwitch",
8512
+ "ProFormSyncToUrl",
8133
8513
  "ProFormText",
8134
8514
  "ProFormTextArea",
8135
8515
  "ProFormUpload",
8136
8516
  "ProFormValidateResult",
8137
8517
  "ProFormValueEnumObj",
8138
8518
  "ProFormValueType",
8519
+ "ProFormValuesPatch",
8139
8520
  "QueryFilter",
8140
8521
  "QueryFilterProps",
8141
8522
  "Rule",
@@ -8176,6 +8557,7 @@
8176
8557
  "FormCoreInstance",
8177
8558
  "FormInstance",
8178
8559
  "FormLayout",
8560
+ "FormListContextValue",
8179
8561
  "FormSize",
8180
8562
  "LabelAlign",
8181
8563
  "ProForm",
@@ -8188,10 +8570,12 @@
8188
8570
  "ProFormDependency",
8189
8571
  "ProFormFieldConvertValueFn",
8190
8572
  "ProFormFieldName",
8573
+ "ProFormFieldOptionValue",
8191
8574
  "ProFormFieldProps",
8192
8575
  "ProFormFieldSet",
8193
8576
  "ProFormFieldSetProps",
8194
8577
  "ProFormFieldTransformFn",
8578
+ "ProFormFieldValueMap",
8195
8579
  "ProFormFormInstance",
8196
8580
  "ProFormGroup",
8197
8581
  "ProFormGroupProps",
@@ -8204,20 +8588,27 @@
8204
8588
  "ProFormListProps",
8205
8589
  "ProFormMode",
8206
8590
  "ProFormPassword",
8591
+ "ProFormPathValue",
8207
8592
  "ProFormProps",
8208
8593
  "ProFormRadioGroup",
8594
+ "ProFormRecursivePartial",
8209
8595
  "ProFormRequestOption",
8210
8596
  "ProFormSchemaColumn",
8597
+ "ProFormSchemaColumns",
8211
8598
  "ProFormSchemaValueType",
8212
8599
  "ProFormSelect",
8213
8600
  "ProFormSlider",
8601
+ "ProFormStableContextValue",
8602
+ "ProFormStateContextValue",
8214
8603
  "ProFormSwitch",
8604
+ "ProFormSyncToUrl",
8215
8605
  "ProFormText",
8216
8606
  "ProFormTextArea",
8217
8607
  "ProFormUpload",
8218
8608
  "ProFormValidateResult",
8219
8609
  "ProFormValueEnumObj",
8220
8610
  "ProFormValueType",
8611
+ "ProFormValuesPatch",
8221
8612
  "QueryFilter",
8222
8613
  "QueryFilterProps",
8223
8614
  "Rule",
@@ -8259,6 +8650,7 @@
8259
8650
  "FormCoreInstance",
8260
8651
  "FormInstance",
8261
8652
  "FormLayout",
8653
+ "FormListContextValue",
8262
8654
  "FormSize",
8263
8655
  "LabelAlign",
8264
8656
  "ProForm",
@@ -8271,10 +8663,12 @@
8271
8663
  "ProFormDependency",
8272
8664
  "ProFormDependencyProps",
8273
8665
  "ProFormFieldName",
8666
+ "ProFormFieldOptionValue",
8274
8667
  "ProFormFieldProps",
8275
8668
  "ProFormFieldSet",
8276
8669
  "ProFormFieldSetProps",
8277
8670
  "ProFormFieldTransformFn",
8671
+ "ProFormFieldValueMap",
8278
8672
  "ProFormFormInstance",
8279
8673
  "ProFormGroup",
8280
8674
  "ProFormGroupProps",
@@ -8287,20 +8681,27 @@
8287
8681
  "ProFormListProps",
8288
8682
  "ProFormMode",
8289
8683
  "ProFormPassword",
8684
+ "ProFormPathValue",
8290
8685
  "ProFormProps",
8291
8686
  "ProFormRadioGroup",
8687
+ "ProFormRecursivePartial",
8292
8688
  "ProFormRequestOption",
8293
8689
  "ProFormSchemaColumn",
8690
+ "ProFormSchemaColumns",
8294
8691
  "ProFormSchemaValueType",
8295
8692
  "ProFormSelect",
8296
8693
  "ProFormSlider",
8694
+ "ProFormStableContextValue",
8695
+ "ProFormStateContextValue",
8297
8696
  "ProFormSwitch",
8697
+ "ProFormSyncToUrl",
8298
8698
  "ProFormText",
8299
8699
  "ProFormTextArea",
8300
8700
  "ProFormUpload",
8301
8701
  "ProFormValidateResult",
8302
8702
  "ProFormValueEnumObj",
8303
8703
  "ProFormValueType",
8704
+ "ProFormValuesPatch",
8304
8705
  "QueryFilter",
8305
8706
  "QueryFilterProps",
8306
8707
  "Rule",
@@ -8314,7 +8715,7 @@
8314
8715
  "useFormWatch"
8315
8716
  ],
8316
8717
  "searchTags": [],
8317
- "typeText": "(\n value: unknown,\n name: string,\n) => unknown",
8718
+ "typeText": "(\n value: ProFormPathValue<Values, Name>,\n name: Name,\n) => any",
8318
8719
  "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';",
8319
8720
  "examples": [
8320
8721
  {
@@ -8327,7 +8728,100 @@
8327
8728
  "name": "ProFormFieldName",
8328
8729
  "kind": "type",
8329
8730
  "category": "forms",
8330
- "summary": "Top-level keys of `Values` (for editor autocomplete) while still accepting any string — names may be dot-paths (`\"address.city\"`), list paths (`\"items.0.qty\"`), or keys produced by a renaming `transform`.",
8731
+ "summary": "Runtime ProForm field names are dot-path strings (`user.name`, `items.0.title`).",
8732
+ "importPath": "@1money/component-ui",
8733
+ "subpathImport": "@1money/component-ui/ProForm",
8734
+ "sourceFile": "src/components/ProForm/core/namePathType.ts",
8735
+ "props": [],
8736
+ "extends": [],
8737
+ "relatedSymbols": [
8738
+ "CreateProFormFieldConfig",
8739
+ "DialogForm",
8740
+ "DialogFormProps",
8741
+ "DrawerForm",
8742
+ "DrawerFormProps",
8743
+ "FormCoreInstance",
8744
+ "FormInstance",
8745
+ "FormLayout",
8746
+ "FormListContextValue",
8747
+ "FormSize",
8748
+ "LabelAlign",
8749
+ "ProForm",
8750
+ "ProFormCheckbox",
8751
+ "ProFormCheckboxGroup",
8752
+ "ProFormColProps",
8753
+ "ProFormContextValue",
8754
+ "ProFormDateFormatter",
8755
+ "ProFormDatePicker",
8756
+ "ProFormDependency",
8757
+ "ProFormDependencyProps",
8758
+ "ProFormFieldConvertValueFn",
8759
+ "ProFormFieldOptionValue",
8760
+ "ProFormFieldProps",
8761
+ "ProFormFieldSet",
8762
+ "ProFormFieldSetProps",
8763
+ "ProFormFieldTransformFn",
8764
+ "ProFormFieldValueMap",
8765
+ "ProFormFormInstance",
8766
+ "ProFormGroup",
8767
+ "ProFormGroupProps",
8768
+ "ProFormItem",
8769
+ "ProFormItemProps",
8770
+ "ProFormItemSharedProps",
8771
+ "ProFormLayoutConfig",
8772
+ "ProFormList",
8773
+ "ProFormListAction",
8774
+ "ProFormListProps",
8775
+ "ProFormMode",
8776
+ "ProFormPassword",
8777
+ "ProFormPathValue",
8778
+ "ProFormProps",
8779
+ "ProFormRadioGroup",
8780
+ "ProFormRecursivePartial",
8781
+ "ProFormRequestOption",
8782
+ "ProFormSchemaColumn",
8783
+ "ProFormSchemaColumns",
8784
+ "ProFormSchemaValueType",
8785
+ "ProFormSelect",
8786
+ "ProFormSlider",
8787
+ "ProFormStableContextValue",
8788
+ "ProFormStateContextValue",
8789
+ "ProFormSwitch",
8790
+ "ProFormSyncToUrl",
8791
+ "ProFormText",
8792
+ "ProFormTextArea",
8793
+ "ProFormUpload",
8794
+ "ProFormValidateResult",
8795
+ "ProFormValueEnumObj",
8796
+ "ProFormValueType",
8797
+ "ProFormValuesPatch",
8798
+ "QueryFilter",
8799
+ "QueryFilterProps",
8800
+ "Rule",
8801
+ "SchemaForm",
8802
+ "SchemaFormProps",
8803
+ "SubmitterProps",
8804
+ "UseFormWatch",
8805
+ "ValidateStatus",
8806
+ "ValidateTrigger",
8807
+ "createProFormField",
8808
+ "useFormWatch"
8809
+ ],
8810
+ "searchTags": [],
8811
+ "typeText": "string extends keyof Values ? string : DotPathInternal<NonNullable<Values>, 6>",
8812
+ "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';",
8813
+ "examples": [
8814
+ {
8815
+ "hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
8816
+ "source": "canonical"
8817
+ }
8818
+ ]
8819
+ },
8820
+ {
8821
+ "name": "ProFormFieldOptionValue",
8822
+ "kind": "type",
8823
+ "category": "forms",
8824
+ "summary": "",
8331
8825
  "importPath": "@1money/component-ui",
8332
8826
  "subpathImport": "@1money/component-ui/ProForm",
8333
8827
  "sourceFile": "src/components/ProForm/interface.ts",
@@ -8342,6 +8836,7 @@
8342
8836
  "FormCoreInstance",
8343
8837
  "FormInstance",
8344
8838
  "FormLayout",
8839
+ "FormListContextValue",
8345
8840
  "FormSize",
8346
8841
  "LabelAlign",
8347
8842
  "ProForm",
@@ -8354,10 +8849,12 @@
8354
8849
  "ProFormDependency",
8355
8850
  "ProFormDependencyProps",
8356
8851
  "ProFormFieldConvertValueFn",
8852
+ "ProFormFieldName",
8357
8853
  "ProFormFieldProps",
8358
8854
  "ProFormFieldSet",
8359
8855
  "ProFormFieldSetProps",
8360
8856
  "ProFormFieldTransformFn",
8857
+ "ProFormFieldValueMap",
8361
8858
  "ProFormFormInstance",
8362
8859
  "ProFormGroup",
8363
8860
  "ProFormGroupProps",
@@ -8370,20 +8867,27 @@
8370
8867
  "ProFormListProps",
8371
8868
  "ProFormMode",
8372
8869
  "ProFormPassword",
8870
+ "ProFormPathValue",
8373
8871
  "ProFormProps",
8374
8872
  "ProFormRadioGroup",
8873
+ "ProFormRecursivePartial",
8375
8874
  "ProFormRequestOption",
8376
8875
  "ProFormSchemaColumn",
8876
+ "ProFormSchemaColumns",
8377
8877
  "ProFormSchemaValueType",
8378
8878
  "ProFormSelect",
8379
8879
  "ProFormSlider",
8880
+ "ProFormStableContextValue",
8881
+ "ProFormStateContextValue",
8380
8882
  "ProFormSwitch",
8883
+ "ProFormSyncToUrl",
8381
8884
  "ProFormText",
8382
8885
  "ProFormTextArea",
8383
8886
  "ProFormUpload",
8384
8887
  "ProFormValidateResult",
8385
8888
  "ProFormValueEnumObj",
8386
8889
  "ProFormValueType",
8890
+ "ProFormValuesPatch",
8387
8891
  "QueryFilter",
8388
8892
  "QueryFilterProps",
8389
8893
  "Rule",
@@ -8397,7 +8901,7 @@
8397
8901
  "useFormWatch"
8398
8902
  ],
8399
8903
  "searchTags": [],
8400
- "typeText": "| Extract<keyof Values, string>\n | (string & {})",
8904
+ "typeText": "Name extends ProFormFieldName<Values>\n ? ProFormPathValue<Values, Name> extends readonly (infer Item)[]\n ? Item\n : ProFormPathValue<Values, Name>\n : never",
8401
8905
  "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';",
8402
8906
  "examples": [
8403
8907
  {
@@ -8410,7 +8914,7 @@
8410
8914
  "name": "ProFormFieldProps",
8411
8915
  "kind": "type",
8412
8916
  "category": "forms",
8413
- "summary": "",
8917
+ "summary": "Common field props with the historical generic order preserved: `ProFormFieldProps<FieldProps, Values, Name, FieldParams>`.",
8414
8918
  "importPath": "@1money/component-ui",
8415
8919
  "subpathImport": "@1money/component-ui/ProForm",
8416
8920
  "sourceFile": "src/components/ProForm/interface.ts",
@@ -8425,6 +8929,7 @@
8425
8929
  "FormCoreInstance",
8426
8930
  "FormInstance",
8427
8931
  "FormLayout",
8932
+ "FormListContextValue",
8428
8933
  "FormSize",
8429
8934
  "LabelAlign",
8430
8935
  "ProForm",
@@ -8438,9 +8943,11 @@
8438
8943
  "ProFormDependencyProps",
8439
8944
  "ProFormFieldConvertValueFn",
8440
8945
  "ProFormFieldName",
8946
+ "ProFormFieldOptionValue",
8441
8947
  "ProFormFieldSet",
8442
8948
  "ProFormFieldSetProps",
8443
8949
  "ProFormFieldTransformFn",
8950
+ "ProFormFieldValueMap",
8444
8951
  "ProFormFormInstance",
8445
8952
  "ProFormGroup",
8446
8953
  "ProFormGroupProps",
@@ -8453,20 +8960,27 @@
8453
8960
  "ProFormListProps",
8454
8961
  "ProFormMode",
8455
8962
  "ProFormPassword",
8963
+ "ProFormPathValue",
8456
8964
  "ProFormProps",
8457
8965
  "ProFormRadioGroup",
8966
+ "ProFormRecursivePartial",
8458
8967
  "ProFormRequestOption",
8459
8968
  "ProFormSchemaColumn",
8969
+ "ProFormSchemaColumns",
8460
8970
  "ProFormSchemaValueType",
8461
8971
  "ProFormSelect",
8462
8972
  "ProFormSlider",
8973
+ "ProFormStableContextValue",
8974
+ "ProFormStateContextValue",
8463
8975
  "ProFormSwitch",
8976
+ "ProFormSyncToUrl",
8464
8977
  "ProFormText",
8465
8978
  "ProFormTextArea",
8466
8979
  "ProFormUpload",
8467
8980
  "ProFormValidateResult",
8468
8981
  "ProFormValueEnumObj",
8469
8982
  "ProFormValueType",
8983
+ "ProFormValuesPatch",
8470
8984
  "QueryFilter",
8471
8985
  "QueryFilterProps",
8472
8986
  "Rule",
@@ -8480,7 +8994,7 @@
8480
8994
  "useFormWatch"
8481
8995
  ],
8482
8996
  "searchTags": [],
8483
- "typeText": "interface ProFormFieldProps { ... }",
8997
+ "typeText": "ProFormTypedFieldProps<Values, Name, FieldProps, FieldParams>",
8484
8998
  "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';",
8485
8999
  "examples": [
8486
9000
  {
@@ -8500,7 +9014,7 @@
8500
9014
  "props": [
8501
9015
  {
8502
9016
  "name": "name",
8503
- "type": "string",
9017
+ "type": "Name",
8504
9018
  "optional": true,
8505
9019
  "default": null,
8506
9020
  "description": "",
@@ -8516,7 +9030,7 @@
8516
9030
  },
8517
9031
  {
8518
9032
  "name": "rules",
8519
- "type": "FormRule[]",
9033
+ "type": "FormRule<Values>[]",
8520
9034
  "optional": true,
8521
9035
  "default": null,
8522
9036
  "description": "",
@@ -8573,6 +9087,7 @@
8573
9087
  "FormCoreInstance",
8574
9088
  "FormInstance",
8575
9089
  "FormLayout",
9090
+ "FormListContextValue",
8576
9091
  "FormSize",
8577
9092
  "LabelAlign",
8578
9093
  "ProForm",
@@ -8586,9 +9101,11 @@
8586
9101
  "ProFormDependencyProps",
8587
9102
  "ProFormFieldConvertValueFn",
8588
9103
  "ProFormFieldName",
9104
+ "ProFormFieldOptionValue",
8589
9105
  "ProFormFieldProps",
8590
9106
  "ProFormFieldSetProps",
8591
9107
  "ProFormFieldTransformFn",
9108
+ "ProFormFieldValueMap",
8592
9109
  "ProFormFormInstance",
8593
9110
  "ProFormGroup",
8594
9111
  "ProFormGroupProps",
@@ -8601,20 +9118,27 @@
8601
9118
  "ProFormListProps",
8602
9119
  "ProFormMode",
8603
9120
  "ProFormPassword",
9121
+ "ProFormPathValue",
8604
9122
  "ProFormProps",
8605
9123
  "ProFormRadioGroup",
9124
+ "ProFormRecursivePartial",
8606
9125
  "ProFormRequestOption",
8607
9126
  "ProFormSchemaColumn",
9127
+ "ProFormSchemaColumns",
8608
9128
  "ProFormSchemaValueType",
8609
9129
  "ProFormSelect",
8610
9130
  "ProFormSlider",
9131
+ "ProFormStableContextValue",
9132
+ "ProFormStateContextValue",
8611
9133
  "ProFormSwitch",
9134
+ "ProFormSyncToUrl",
8612
9135
  "ProFormText",
8613
9136
  "ProFormTextArea",
8614
9137
  "ProFormUpload",
8615
9138
  "ProFormValidateResult",
8616
9139
  "ProFormValueEnumObj",
8617
9140
  "ProFormValueType",
9141
+ "ProFormValuesPatch",
8618
9142
  "QueryFilter",
8619
9143
  "QueryFilterProps",
8620
9144
  "Rule",
@@ -8655,6 +9179,7 @@
8655
9179
  "FormCoreInstance",
8656
9180
  "FormInstance",
8657
9181
  "FormLayout",
9182
+ "FormListContextValue",
8658
9183
  "FormSize",
8659
9184
  "LabelAlign",
8660
9185
  "ProForm",
@@ -8668,9 +9193,11 @@
8668
9193
  "ProFormDependencyProps",
8669
9194
  "ProFormFieldConvertValueFn",
8670
9195
  "ProFormFieldName",
9196
+ "ProFormFieldOptionValue",
8671
9197
  "ProFormFieldProps",
8672
9198
  "ProFormFieldSet",
8673
9199
  "ProFormFieldTransformFn",
9200
+ "ProFormFieldValueMap",
8674
9201
  "ProFormFormInstance",
8675
9202
  "ProFormGroup",
8676
9203
  "ProFormGroupProps",
@@ -8683,20 +9210,27 @@
8683
9210
  "ProFormListProps",
8684
9211
  "ProFormMode",
8685
9212
  "ProFormPassword",
9213
+ "ProFormPathValue",
8686
9214
  "ProFormProps",
8687
9215
  "ProFormRadioGroup",
9216
+ "ProFormRecursivePartial",
8688
9217
  "ProFormRequestOption",
8689
9218
  "ProFormSchemaColumn",
9219
+ "ProFormSchemaColumns",
8690
9220
  "ProFormSchemaValueType",
8691
9221
  "ProFormSelect",
8692
9222
  "ProFormSlider",
9223
+ "ProFormStableContextValue",
9224
+ "ProFormStateContextValue",
8693
9225
  "ProFormSwitch",
9226
+ "ProFormSyncToUrl",
8694
9227
  "ProFormText",
8695
9228
  "ProFormTextArea",
8696
9229
  "ProFormUpload",
8697
9230
  "ProFormValidateResult",
8698
9231
  "ProFormValueEnumObj",
8699
9232
  "ProFormValueType",
9233
+ "ProFormValuesPatch",
8700
9234
  "QueryFilter",
8701
9235
  "QueryFilterProps",
8702
9236
  "Rule",
@@ -8738,6 +9272,7 @@
8738
9272
  "FormCoreInstance",
8739
9273
  "FormInstance",
8740
9274
  "FormLayout",
9275
+ "FormListContextValue",
8741
9276
  "FormSize",
8742
9277
  "LabelAlign",
8743
9278
  "ProForm",
@@ -8751,9 +9286,11 @@
8751
9286
  "ProFormDependencyProps",
8752
9287
  "ProFormFieldConvertValueFn",
8753
9288
  "ProFormFieldName",
9289
+ "ProFormFieldOptionValue",
8754
9290
  "ProFormFieldProps",
8755
9291
  "ProFormFieldSet",
8756
9292
  "ProFormFieldSetProps",
9293
+ "ProFormFieldValueMap",
8757
9294
  "ProFormFormInstance",
8758
9295
  "ProFormGroup",
8759
9296
  "ProFormGroupProps",
@@ -8766,20 +9303,27 @@
8766
9303
  "ProFormListProps",
8767
9304
  "ProFormMode",
8768
9305
  "ProFormPassword",
9306
+ "ProFormPathValue",
8769
9307
  "ProFormProps",
8770
9308
  "ProFormRadioGroup",
9309
+ "ProFormRecursivePartial",
8771
9310
  "ProFormRequestOption",
8772
9311
  "ProFormSchemaColumn",
9312
+ "ProFormSchemaColumns",
8773
9313
  "ProFormSchemaValueType",
8774
9314
  "ProFormSelect",
8775
9315
  "ProFormSlider",
9316
+ "ProFormStableContextValue",
9317
+ "ProFormStateContextValue",
8776
9318
  "ProFormSwitch",
9319
+ "ProFormSyncToUrl",
8777
9320
  "ProFormText",
8778
9321
  "ProFormTextArea",
8779
9322
  "ProFormUpload",
8780
9323
  "ProFormValidateResult",
8781
9324
  "ProFormValueEnumObj",
8782
9325
  "ProFormValueType",
9326
+ "ProFormValuesPatch",
8783
9327
  "QueryFilter",
8784
9328
  "QueryFilterProps",
8785
9329
  "Rule",
@@ -8793,7 +9337,7 @@
8793
9337
  "useFormWatch"
8794
9338
  ],
8795
9339
  "searchTags": [],
8796
- "typeText": "(\n value: unknown,\n name: string,\n allValues: Record<string, unknown>,\n) => unknown",
9340
+ "typeText": "(\n value: ProFormPathValue<Values, Name>,\n name: Name,\n allValues: Values,\n) => any",
8797
9341
  "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';",
8798
9342
  "examples": [
8799
9343
  {
@@ -8803,13 +9347,13 @@
8803
9347
  ]
8804
9348
  },
8805
9349
  {
8806
- "name": "ProFormFormInstance",
9350
+ "name": "ProFormFieldValueMap",
8807
9351
  "kind": "type",
8808
9352
  "category": "forms",
8809
9353
  "summary": "",
8810
9354
  "importPath": "@1money/component-ui",
8811
9355
  "subpathImport": "@1money/component-ui/ProForm",
8812
- "sourceFile": "src/components/ProForm/interface.ts",
9356
+ "sourceFile": "src/components/ProForm/core/namePathType.ts",
8813
9357
  "props": [],
8814
9358
  "extends": [],
8815
9359
  "relatedSymbols": [
@@ -8821,6 +9365,7 @@
8821
9365
  "FormCoreInstance",
8822
9366
  "FormInstance",
8823
9367
  "FormLayout",
9368
+ "FormListContextValue",
8824
9369
  "FormSize",
8825
9370
  "LabelAlign",
8826
9371
  "ProForm",
@@ -8834,10 +9379,12 @@
8834
9379
  "ProFormDependencyProps",
8835
9380
  "ProFormFieldConvertValueFn",
8836
9381
  "ProFormFieldName",
9382
+ "ProFormFieldOptionValue",
8837
9383
  "ProFormFieldProps",
8838
9384
  "ProFormFieldSet",
8839
9385
  "ProFormFieldSetProps",
8840
9386
  "ProFormFieldTransformFn",
9387
+ "ProFormFormInstance",
8841
9388
  "ProFormGroup",
8842
9389
  "ProFormGroupProps",
8843
9390
  "ProFormItem",
@@ -8849,20 +9396,27 @@
8849
9396
  "ProFormListProps",
8850
9397
  "ProFormMode",
8851
9398
  "ProFormPassword",
9399
+ "ProFormPathValue",
8852
9400
  "ProFormProps",
8853
9401
  "ProFormRadioGroup",
9402
+ "ProFormRecursivePartial",
8854
9403
  "ProFormRequestOption",
8855
9404
  "ProFormSchemaColumn",
9405
+ "ProFormSchemaColumns",
8856
9406
  "ProFormSchemaValueType",
8857
9407
  "ProFormSelect",
8858
9408
  "ProFormSlider",
9409
+ "ProFormStableContextValue",
9410
+ "ProFormStateContextValue",
8859
9411
  "ProFormSwitch",
9412
+ "ProFormSyncToUrl",
8860
9413
  "ProFormText",
8861
9414
  "ProFormTextArea",
8862
9415
  "ProFormUpload",
8863
9416
  "ProFormValidateResult",
8864
9417
  "ProFormValueEnumObj",
8865
9418
  "ProFormValueType",
9419
+ "ProFormValuesPatch",
8866
9420
  "QueryFilter",
8867
9421
  "QueryFilterProps",
8868
9422
  "Rule",
@@ -8876,7 +9430,7 @@
8876
9430
  "useFormWatch"
8877
9431
  ],
8878
9432
  "searchTags": [],
8879
- "typeText": "interface ProFormFormInstance extends FormInstance<Values> { ... }",
9433
+ "typeText": "Partial<{\n [FieldName in Name]: ProFormPathValue<Values, FieldName>;\n}>",
8880
9434
  "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';",
8881
9435
  "examples": [
8882
9436
  {
@@ -8886,9 +9440,102 @@
8886
9440
  ]
8887
9441
  },
8888
9442
  {
8889
- "name": "ProFormGroup",
8890
- "kind": "component",
8891
- "category": "forms",
9443
+ "name": "ProFormFormInstance",
9444
+ "kind": "type",
9445
+ "category": "forms",
9446
+ "summary": "",
9447
+ "importPath": "@1money/component-ui",
9448
+ "subpathImport": "@1money/component-ui/ProForm",
9449
+ "sourceFile": "src/components/ProForm/interface.ts",
9450
+ "props": [],
9451
+ "extends": [],
9452
+ "relatedSymbols": [
9453
+ "CreateProFormFieldConfig",
9454
+ "DialogForm",
9455
+ "DialogFormProps",
9456
+ "DrawerForm",
9457
+ "DrawerFormProps",
9458
+ "FormCoreInstance",
9459
+ "FormInstance",
9460
+ "FormLayout",
9461
+ "FormListContextValue",
9462
+ "FormSize",
9463
+ "LabelAlign",
9464
+ "ProForm",
9465
+ "ProFormCheckbox",
9466
+ "ProFormCheckboxGroup",
9467
+ "ProFormColProps",
9468
+ "ProFormContextValue",
9469
+ "ProFormDateFormatter",
9470
+ "ProFormDatePicker",
9471
+ "ProFormDependency",
9472
+ "ProFormDependencyProps",
9473
+ "ProFormFieldConvertValueFn",
9474
+ "ProFormFieldName",
9475
+ "ProFormFieldOptionValue",
9476
+ "ProFormFieldProps",
9477
+ "ProFormFieldSet",
9478
+ "ProFormFieldSetProps",
9479
+ "ProFormFieldTransformFn",
9480
+ "ProFormFieldValueMap",
9481
+ "ProFormGroup",
9482
+ "ProFormGroupProps",
9483
+ "ProFormItem",
9484
+ "ProFormItemProps",
9485
+ "ProFormItemSharedProps",
9486
+ "ProFormLayoutConfig",
9487
+ "ProFormList",
9488
+ "ProFormListAction",
9489
+ "ProFormListProps",
9490
+ "ProFormMode",
9491
+ "ProFormPassword",
9492
+ "ProFormPathValue",
9493
+ "ProFormProps",
9494
+ "ProFormRadioGroup",
9495
+ "ProFormRecursivePartial",
9496
+ "ProFormRequestOption",
9497
+ "ProFormSchemaColumn",
9498
+ "ProFormSchemaColumns",
9499
+ "ProFormSchemaValueType",
9500
+ "ProFormSelect",
9501
+ "ProFormSlider",
9502
+ "ProFormStableContextValue",
9503
+ "ProFormStateContextValue",
9504
+ "ProFormSwitch",
9505
+ "ProFormSyncToUrl",
9506
+ "ProFormText",
9507
+ "ProFormTextArea",
9508
+ "ProFormUpload",
9509
+ "ProFormValidateResult",
9510
+ "ProFormValueEnumObj",
9511
+ "ProFormValueType",
9512
+ "ProFormValuesPatch",
9513
+ "QueryFilter",
9514
+ "QueryFilterProps",
9515
+ "Rule",
9516
+ "SchemaForm",
9517
+ "SchemaFormProps",
9518
+ "SubmitterProps",
9519
+ "UseFormWatch",
9520
+ "ValidateStatus",
9521
+ "ValidateTrigger",
9522
+ "createProFormField",
9523
+ "useFormWatch"
9524
+ ],
9525
+ "searchTags": [],
9526
+ "typeText": "interface ProFormFormInstance extends FormInstance<Values> { ... }",
9527
+ "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';",
9528
+ "examples": [
9529
+ {
9530
+ "hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
9531
+ "source": "canonical"
9532
+ }
9533
+ ]
9534
+ },
9535
+ {
9536
+ "name": "ProFormGroup",
9537
+ "kind": "component",
9538
+ "category": "forms",
8892
9539
  "summary": "",
8893
9540
  "importPath": "@1money/component-ui",
8894
9541
  "subpathImport": "@1money/component-ui/ProForm",
@@ -8969,6 +9616,7 @@
8969
9616
  "FormCoreInstance",
8970
9617
  "FormInstance",
8971
9618
  "FormLayout",
9619
+ "FormListContextValue",
8972
9620
  "FormSize",
8973
9621
  "LabelAlign",
8974
9622
  "ProForm",
@@ -8982,10 +9630,12 @@
8982
9630
  "ProFormDependencyProps",
8983
9631
  "ProFormFieldConvertValueFn",
8984
9632
  "ProFormFieldName",
9633
+ "ProFormFieldOptionValue",
8985
9634
  "ProFormFieldProps",
8986
9635
  "ProFormFieldSet",
8987
9636
  "ProFormFieldSetProps",
8988
9637
  "ProFormFieldTransformFn",
9638
+ "ProFormFieldValueMap",
8989
9639
  "ProFormFormInstance",
8990
9640
  "ProFormGroupProps",
8991
9641
  "ProFormItem",
@@ -8997,20 +9647,27 @@
8997
9647
  "ProFormListProps",
8998
9648
  "ProFormMode",
8999
9649
  "ProFormPassword",
9650
+ "ProFormPathValue",
9000
9651
  "ProFormProps",
9001
9652
  "ProFormRadioGroup",
9653
+ "ProFormRecursivePartial",
9002
9654
  "ProFormRequestOption",
9003
9655
  "ProFormSchemaColumn",
9656
+ "ProFormSchemaColumns",
9004
9657
  "ProFormSchemaValueType",
9005
9658
  "ProFormSelect",
9006
9659
  "ProFormSlider",
9660
+ "ProFormStableContextValue",
9661
+ "ProFormStateContextValue",
9007
9662
  "ProFormSwitch",
9663
+ "ProFormSyncToUrl",
9008
9664
  "ProFormText",
9009
9665
  "ProFormTextArea",
9010
9666
  "ProFormUpload",
9011
9667
  "ProFormValidateResult",
9012
9668
  "ProFormValueEnumObj",
9013
9669
  "ProFormValueType",
9670
+ "ProFormValuesPatch",
9014
9671
  "QueryFilter",
9015
9672
  "QueryFilterProps",
9016
9673
  "Rule",
@@ -9051,6 +9708,7 @@
9051
9708
  "FormCoreInstance",
9052
9709
  "FormInstance",
9053
9710
  "FormLayout",
9711
+ "FormListContextValue",
9054
9712
  "FormSize",
9055
9713
  "LabelAlign",
9056
9714
  "ProForm",
@@ -9064,10 +9722,12 @@
9064
9722
  "ProFormDependencyProps",
9065
9723
  "ProFormFieldConvertValueFn",
9066
9724
  "ProFormFieldName",
9725
+ "ProFormFieldOptionValue",
9067
9726
  "ProFormFieldProps",
9068
9727
  "ProFormFieldSet",
9069
9728
  "ProFormFieldSetProps",
9070
9729
  "ProFormFieldTransformFn",
9730
+ "ProFormFieldValueMap",
9071
9731
  "ProFormFormInstance",
9072
9732
  "ProFormGroup",
9073
9733
  "ProFormItem",
@@ -9079,20 +9739,27 @@
9079
9739
  "ProFormListProps",
9080
9740
  "ProFormMode",
9081
9741
  "ProFormPassword",
9742
+ "ProFormPathValue",
9082
9743
  "ProFormProps",
9083
9744
  "ProFormRadioGroup",
9745
+ "ProFormRecursivePartial",
9084
9746
  "ProFormRequestOption",
9085
9747
  "ProFormSchemaColumn",
9748
+ "ProFormSchemaColumns",
9086
9749
  "ProFormSchemaValueType",
9087
9750
  "ProFormSelect",
9088
9751
  "ProFormSlider",
9752
+ "ProFormStableContextValue",
9753
+ "ProFormStateContextValue",
9089
9754
  "ProFormSwitch",
9755
+ "ProFormSyncToUrl",
9090
9756
  "ProFormText",
9091
9757
  "ProFormTextArea",
9092
9758
  "ProFormUpload",
9093
9759
  "ProFormValidateResult",
9094
9760
  "ProFormValueEnumObj",
9095
9761
  "ProFormValueType",
9762
+ "ProFormValuesPatch",
9096
9763
  "QueryFilter",
9097
9764
  "QueryFilterProps",
9098
9765
  "Rule",
@@ -9158,7 +9825,7 @@
9158
9825
  },
9159
9826
  {
9160
9827
  "name": "name",
9161
- "type": "string",
9828
+ "type": "Name",
9162
9829
  "optional": true,
9163
9830
  "default": null,
9164
9831
  "description": "",
@@ -9166,7 +9833,7 @@
9166
9833
  },
9167
9834
  {
9168
9835
  "name": "rules",
9169
- "type": "FormRule[]",
9836
+ "type": "FormRule<Values>[]",
9170
9837
  "optional": true,
9171
9838
  "default": null,
9172
9839
  "description": "",
@@ -9214,7 +9881,7 @@
9214
9881
  },
9215
9882
  {
9216
9883
  "name": "transform",
9217
- "type": "ProFormFieldTransformFn",
9884
+ "type": "ProFormFieldTransformFn<Values, Name>",
9218
9885
  "optional": true,
9219
9886
  "default": null,
9220
9887
  "description": "Transform before submit, registered into ProForm pipeline",
@@ -9222,7 +9889,7 @@
9222
9889
  },
9223
9890
  {
9224
9891
  "name": "convertValue",
9225
- "type": "ProFormFieldConvertValueFn",
9892
+ "type": "ProFormFieldConvertValueFn<Values, Name>",
9226
9893
  "optional": true,
9227
9894
  "default": null,
9228
9895
  "description": "Convert the displayed value before rendering into children",
@@ -9238,7 +9905,7 @@
9238
9905
  },
9239
9906
  {
9240
9907
  "name": "readonlyRender",
9241
- "type": "(value: unknown, values: Record<string, unknown>) => ReactNode",
9908
+ "type": "(\n value: ProFormPathValue<Values, Name>,\n values: Values,\n ) => ReactNode",
9242
9909
  "optional": true,
9243
9910
  "default": null,
9244
9911
  "description": "Custom read-mode rendering; overrides valueType",
@@ -9311,6 +9978,7 @@
9311
9978
  "FormCoreInstance",
9312
9979
  "FormInstance",
9313
9980
  "FormLayout",
9981
+ "FormListContextValue",
9314
9982
  "FormSize",
9315
9983
  "LabelAlign",
9316
9984
  "ProForm",
@@ -9324,10 +9992,12 @@
9324
9992
  "ProFormDependencyProps",
9325
9993
  "ProFormFieldConvertValueFn",
9326
9994
  "ProFormFieldName",
9995
+ "ProFormFieldOptionValue",
9327
9996
  "ProFormFieldProps",
9328
9997
  "ProFormFieldSet",
9329
9998
  "ProFormFieldSetProps",
9330
9999
  "ProFormFieldTransformFn",
10000
+ "ProFormFieldValueMap",
9331
10001
  "ProFormFormInstance",
9332
10002
  "ProFormGroup",
9333
10003
  "ProFormGroupProps",
@@ -9339,20 +10009,27 @@
9339
10009
  "ProFormListProps",
9340
10010
  "ProFormMode",
9341
10011
  "ProFormPassword",
10012
+ "ProFormPathValue",
9342
10013
  "ProFormProps",
9343
10014
  "ProFormRadioGroup",
10015
+ "ProFormRecursivePartial",
9344
10016
  "ProFormRequestOption",
9345
10017
  "ProFormSchemaColumn",
10018
+ "ProFormSchemaColumns",
9346
10019
  "ProFormSchemaValueType",
9347
10020
  "ProFormSelect",
9348
10021
  "ProFormSlider",
10022
+ "ProFormStableContextValue",
10023
+ "ProFormStateContextValue",
9349
10024
  "ProFormSwitch",
10025
+ "ProFormSyncToUrl",
9350
10026
  "ProFormText",
9351
10027
  "ProFormTextArea",
9352
10028
  "ProFormUpload",
9353
10029
  "ProFormValidateResult",
9354
10030
  "ProFormValueEnumObj",
9355
10031
  "ProFormValueType",
10032
+ "ProFormValuesPatch",
9356
10033
  "QueryFilter",
9357
10034
  "QueryFilterProps",
9358
10035
  "Rule",
@@ -9393,6 +10070,7 @@
9393
10070
  "FormCoreInstance",
9394
10071
  "FormInstance",
9395
10072
  "FormLayout",
10073
+ "FormListContextValue",
9396
10074
  "FormSize",
9397
10075
  "LabelAlign",
9398
10076
  "ProForm",
@@ -9406,10 +10084,12 @@
9406
10084
  "ProFormDependencyProps",
9407
10085
  "ProFormFieldConvertValueFn",
9408
10086
  "ProFormFieldName",
10087
+ "ProFormFieldOptionValue",
9409
10088
  "ProFormFieldProps",
9410
10089
  "ProFormFieldSet",
9411
10090
  "ProFormFieldSetProps",
9412
10091
  "ProFormFieldTransformFn",
10092
+ "ProFormFieldValueMap",
9413
10093
  "ProFormFormInstance",
9414
10094
  "ProFormGroup",
9415
10095
  "ProFormGroupProps",
@@ -9421,20 +10101,27 @@
9421
10101
  "ProFormListProps",
9422
10102
  "ProFormMode",
9423
10103
  "ProFormPassword",
10104
+ "ProFormPathValue",
9424
10105
  "ProFormProps",
9425
10106
  "ProFormRadioGroup",
10107
+ "ProFormRecursivePartial",
9426
10108
  "ProFormRequestOption",
9427
10109
  "ProFormSchemaColumn",
10110
+ "ProFormSchemaColumns",
9428
10111
  "ProFormSchemaValueType",
9429
10112
  "ProFormSelect",
9430
10113
  "ProFormSlider",
10114
+ "ProFormStableContextValue",
10115
+ "ProFormStateContextValue",
9431
10116
  "ProFormSwitch",
10117
+ "ProFormSyncToUrl",
9432
10118
  "ProFormText",
9433
10119
  "ProFormTextArea",
9434
10120
  "ProFormUpload",
9435
10121
  "ProFormValidateResult",
9436
10122
  "ProFormValueEnumObj",
9437
10123
  "ProFormValueType",
10124
+ "ProFormValuesPatch",
9438
10125
  "QueryFilter",
9439
10126
  "QueryFilterProps",
9440
10127
  "Rule",
@@ -9476,6 +10163,7 @@
9476
10163
  "FormCoreInstance",
9477
10164
  "FormInstance",
9478
10165
  "FormLayout",
10166
+ "FormListContextValue",
9479
10167
  "FormSize",
9480
10168
  "LabelAlign",
9481
10169
  "ProForm",
@@ -9489,10 +10177,12 @@
9489
10177
  "ProFormDependencyProps",
9490
10178
  "ProFormFieldConvertValueFn",
9491
10179
  "ProFormFieldName",
10180
+ "ProFormFieldOptionValue",
9492
10181
  "ProFormFieldProps",
9493
10182
  "ProFormFieldSet",
9494
10183
  "ProFormFieldSetProps",
9495
10184
  "ProFormFieldTransformFn",
10185
+ "ProFormFieldValueMap",
9496
10186
  "ProFormFormInstance",
9497
10187
  "ProFormGroup",
9498
10188
  "ProFormGroupProps",
@@ -9504,20 +10194,27 @@
9504
10194
  "ProFormListProps",
9505
10195
  "ProFormMode",
9506
10196
  "ProFormPassword",
10197
+ "ProFormPathValue",
9507
10198
  "ProFormProps",
9508
10199
  "ProFormRadioGroup",
10200
+ "ProFormRecursivePartial",
9509
10201
  "ProFormRequestOption",
9510
10202
  "ProFormSchemaColumn",
10203
+ "ProFormSchemaColumns",
9511
10204
  "ProFormSchemaValueType",
9512
10205
  "ProFormSelect",
9513
10206
  "ProFormSlider",
10207
+ "ProFormStableContextValue",
10208
+ "ProFormStateContextValue",
9514
10209
  "ProFormSwitch",
10210
+ "ProFormSyncToUrl",
9515
10211
  "ProFormText",
9516
10212
  "ProFormTextArea",
9517
10213
  "ProFormUpload",
9518
10214
  "ProFormValidateResult",
9519
10215
  "ProFormValueEnumObj",
9520
10216
  "ProFormValueType",
10217
+ "ProFormValuesPatch",
9521
10218
  "QueryFilter",
9522
10219
  "QueryFilterProps",
9523
10220
  "Rule",
@@ -9559,6 +10256,7 @@
9559
10256
  "FormCoreInstance",
9560
10257
  "FormInstance",
9561
10258
  "FormLayout",
10259
+ "FormListContextValue",
9562
10260
  "FormSize",
9563
10261
  "LabelAlign",
9564
10262
  "ProForm",
@@ -9572,10 +10270,12 @@
9572
10270
  "ProFormDependencyProps",
9573
10271
  "ProFormFieldConvertValueFn",
9574
10272
  "ProFormFieldName",
10273
+ "ProFormFieldOptionValue",
9575
10274
  "ProFormFieldProps",
9576
10275
  "ProFormFieldSet",
9577
10276
  "ProFormFieldSetProps",
9578
10277
  "ProFormFieldTransformFn",
10278
+ "ProFormFieldValueMap",
9579
10279
  "ProFormFormInstance",
9580
10280
  "ProFormGroup",
9581
10281
  "ProFormGroupProps",
@@ -9587,20 +10287,27 @@
9587
10287
  "ProFormListProps",
9588
10288
  "ProFormMode",
9589
10289
  "ProFormPassword",
10290
+ "ProFormPathValue",
9590
10291
  "ProFormProps",
9591
10292
  "ProFormRadioGroup",
10293
+ "ProFormRecursivePartial",
9592
10294
  "ProFormRequestOption",
9593
10295
  "ProFormSchemaColumn",
10296
+ "ProFormSchemaColumns",
9594
10297
  "ProFormSchemaValueType",
9595
10298
  "ProFormSelect",
9596
10299
  "ProFormSlider",
10300
+ "ProFormStableContextValue",
10301
+ "ProFormStateContextValue",
9597
10302
  "ProFormSwitch",
10303
+ "ProFormSyncToUrl",
9598
10304
  "ProFormText",
9599
10305
  "ProFormTextArea",
9600
10306
  "ProFormUpload",
9601
10307
  "ProFormValidateResult",
9602
10308
  "ProFormValueEnumObj",
9603
10309
  "ProFormValueType",
10310
+ "ProFormValuesPatch",
9604
10311
  "QueryFilter",
9605
10312
  "QueryFilterProps",
9606
10313
  "Rule",
@@ -9682,7 +10389,7 @@
9682
10389
  },
9683
10390
  {
9684
10391
  "name": "initialValue",
9685
- "type": "Record<string, unknown>[]",
10392
+ "type": "Item[]",
9686
10393
  "optional": true,
9687
10394
  "default": null,
9688
10395
  "description": "",
@@ -9714,7 +10421,7 @@
9714
10421
  },
9715
10422
  {
9716
10423
  "name": "itemRender",
9717
- "type": "(props: { listDom: ReactNode; action: ProFormListAction }) => ReactNode",
10424
+ "type": "(props: { listDom: ReactNode; action: ProFormListAction<Item> }) => ReactNode",
9718
10425
  "optional": true,
9719
10426
  "default": null,
9720
10427
  "description": "",
@@ -9722,7 +10429,7 @@
9722
10429
  },
9723
10430
  {
9724
10431
  "name": "actionRender",
9725
- "type": "(\n row: { index: number; record: unknown },\n action: ProFormListAction,\n defaultDom: { copy: ReactNode; delete: ReactNode },\n ) => ReactNode",
10432
+ "type": "(\n row: { index: number; record: Item },\n action: ProFormListAction<Item>,\n defaultDom: { copy: ReactNode; delete: ReactNode },\n ) => ReactNode",
9726
10433
  "optional": true,
9727
10434
  "default": null,
9728
10435
  "description": "",
@@ -9730,7 +10437,7 @@
9730
10437
  },
9731
10438
  {
9732
10439
  "name": "children",
9733
- "type": "ReactNode | ((fields: Array<{ name: string; key: string }>, action: ProFormListAction) => ReactNode)",
10440
+ "type": "ReactNode | ((fields: Array<{ name: string; key: string }>, action: ProFormListAction<Item>) => ReactNode)",
9734
10441
  "optional": true,
9735
10442
  "default": null,
9736
10443
  "description": "",
@@ -9738,7 +10445,7 @@
9738
10445
  },
9739
10446
  {
9740
10447
  "name": "onAfterAdd",
9741
- "type": "(defaultValue: Record<string, unknown>, index: number) => void",
10448
+ "type": "(defaultValue: Item, index: number) => void",
9742
10449
  "optional": true,
9743
10450
  "default": null,
9744
10451
  "description": "",
@@ -9763,6 +10470,7 @@
9763
10470
  "FormCoreInstance",
9764
10471
  "FormInstance",
9765
10472
  "FormLayout",
10473
+ "FormListContextValue",
9766
10474
  "FormSize",
9767
10475
  "LabelAlign",
9768
10476
  "ProForm",
@@ -9776,10 +10484,12 @@
9776
10484
  "ProFormDependencyProps",
9777
10485
  "ProFormFieldConvertValueFn",
9778
10486
  "ProFormFieldName",
10487
+ "ProFormFieldOptionValue",
9779
10488
  "ProFormFieldProps",
9780
10489
  "ProFormFieldSet",
9781
10490
  "ProFormFieldSetProps",
9782
10491
  "ProFormFieldTransformFn",
10492
+ "ProFormFieldValueMap",
9783
10493
  "ProFormFormInstance",
9784
10494
  "ProFormGroup",
9785
10495
  "ProFormGroupProps",
@@ -9791,20 +10501,27 @@
9791
10501
  "ProFormListProps",
9792
10502
  "ProFormMode",
9793
10503
  "ProFormPassword",
10504
+ "ProFormPathValue",
9794
10505
  "ProFormProps",
9795
10506
  "ProFormRadioGroup",
10507
+ "ProFormRecursivePartial",
9796
10508
  "ProFormRequestOption",
9797
10509
  "ProFormSchemaColumn",
10510
+ "ProFormSchemaColumns",
9798
10511
  "ProFormSchemaValueType",
9799
10512
  "ProFormSelect",
9800
10513
  "ProFormSlider",
10514
+ "ProFormStableContextValue",
10515
+ "ProFormStateContextValue",
9801
10516
  "ProFormSwitch",
10517
+ "ProFormSyncToUrl",
9802
10518
  "ProFormText",
9803
10519
  "ProFormTextArea",
9804
10520
  "ProFormUpload",
9805
10521
  "ProFormValidateResult",
9806
10522
  "ProFormValueEnumObj",
9807
10523
  "ProFormValueType",
10524
+ "ProFormValuesPatch",
9808
10525
  "QueryFilter",
9809
10526
  "QueryFilterProps",
9810
10527
  "Rule",
@@ -9845,6 +10562,7 @@
9845
10562
  "FormCoreInstance",
9846
10563
  "FormInstance",
9847
10564
  "FormLayout",
10565
+ "FormListContextValue",
9848
10566
  "FormSize",
9849
10567
  "LabelAlign",
9850
10568
  "ProForm",
@@ -9858,10 +10576,12 @@
9858
10576
  "ProFormDependencyProps",
9859
10577
  "ProFormFieldConvertValueFn",
9860
10578
  "ProFormFieldName",
10579
+ "ProFormFieldOptionValue",
9861
10580
  "ProFormFieldProps",
9862
10581
  "ProFormFieldSet",
9863
10582
  "ProFormFieldSetProps",
9864
10583
  "ProFormFieldTransformFn",
10584
+ "ProFormFieldValueMap",
9865
10585
  "ProFormFormInstance",
9866
10586
  "ProFormGroup",
9867
10587
  "ProFormGroupProps",
@@ -9873,20 +10593,27 @@
9873
10593
  "ProFormListProps",
9874
10594
  "ProFormMode",
9875
10595
  "ProFormPassword",
10596
+ "ProFormPathValue",
9876
10597
  "ProFormProps",
9877
10598
  "ProFormRadioGroup",
10599
+ "ProFormRecursivePartial",
9878
10600
  "ProFormRequestOption",
9879
10601
  "ProFormSchemaColumn",
10602
+ "ProFormSchemaColumns",
9880
10603
  "ProFormSchemaValueType",
9881
10604
  "ProFormSelect",
9882
10605
  "ProFormSlider",
10606
+ "ProFormStableContextValue",
10607
+ "ProFormStateContextValue",
9883
10608
  "ProFormSwitch",
10609
+ "ProFormSyncToUrl",
9884
10610
  "ProFormText",
9885
10611
  "ProFormTextArea",
9886
10612
  "ProFormUpload",
9887
10613
  "ProFormValidateResult",
9888
10614
  "ProFormValueEnumObj",
9889
10615
  "ProFormValueType",
10616
+ "ProFormValuesPatch",
9890
10617
  "QueryFilter",
9891
10618
  "QueryFilterProps",
9892
10619
  "Rule",
@@ -9928,6 +10655,7 @@
9928
10655
  "FormCoreInstance",
9929
10656
  "FormInstance",
9930
10657
  "FormLayout",
10658
+ "FormListContextValue",
9931
10659
  "FormSize",
9932
10660
  "LabelAlign",
9933
10661
  "ProForm",
@@ -9941,10 +10669,12 @@
9941
10669
  "ProFormDependencyProps",
9942
10670
  "ProFormFieldConvertValueFn",
9943
10671
  "ProFormFieldName",
10672
+ "ProFormFieldOptionValue",
9944
10673
  "ProFormFieldProps",
9945
10674
  "ProFormFieldSet",
9946
10675
  "ProFormFieldSetProps",
9947
10676
  "ProFormFieldTransformFn",
10677
+ "ProFormFieldValueMap",
9948
10678
  "ProFormFormInstance",
9949
10679
  "ProFormGroup",
9950
10680
  "ProFormGroupProps",
@@ -9956,20 +10686,27 @@
9956
10686
  "ProFormListAction",
9957
10687
  "ProFormMode",
9958
10688
  "ProFormPassword",
10689
+ "ProFormPathValue",
9959
10690
  "ProFormProps",
9960
10691
  "ProFormRadioGroup",
10692
+ "ProFormRecursivePartial",
9961
10693
  "ProFormRequestOption",
9962
10694
  "ProFormSchemaColumn",
10695
+ "ProFormSchemaColumns",
9963
10696
  "ProFormSchemaValueType",
9964
10697
  "ProFormSelect",
9965
10698
  "ProFormSlider",
10699
+ "ProFormStableContextValue",
10700
+ "ProFormStateContextValue",
9966
10701
  "ProFormSwitch",
10702
+ "ProFormSyncToUrl",
9967
10703
  "ProFormText",
9968
10704
  "ProFormTextArea",
9969
10705
  "ProFormUpload",
9970
10706
  "ProFormValidateResult",
9971
10707
  "ProFormValueEnumObj",
9972
10708
  "ProFormValueType",
10709
+ "ProFormValuesPatch",
9973
10710
  "QueryFilter",
9974
10711
  "QueryFilterProps",
9975
10712
  "Rule",
@@ -10011,6 +10748,7 @@
10011
10748
  "FormCoreInstance",
10012
10749
  "FormInstance",
10013
10750
  "FormLayout",
10751
+ "FormListContextValue",
10014
10752
  "FormSize",
10015
10753
  "LabelAlign",
10016
10754
  "ProForm",
@@ -10024,10 +10762,12 @@
10024
10762
  "ProFormDependencyProps",
10025
10763
  "ProFormFieldConvertValueFn",
10026
10764
  "ProFormFieldName",
10765
+ "ProFormFieldOptionValue",
10027
10766
  "ProFormFieldProps",
10028
10767
  "ProFormFieldSet",
10029
10768
  "ProFormFieldSetProps",
10030
10769
  "ProFormFieldTransformFn",
10770
+ "ProFormFieldValueMap",
10031
10771
  "ProFormFormInstance",
10032
10772
  "ProFormGroup",
10033
10773
  "ProFormGroupProps",
@@ -10039,20 +10779,27 @@
10039
10779
  "ProFormListAction",
10040
10780
  "ProFormListProps",
10041
10781
  "ProFormPassword",
10782
+ "ProFormPathValue",
10042
10783
  "ProFormProps",
10043
10784
  "ProFormRadioGroup",
10785
+ "ProFormRecursivePartial",
10044
10786
  "ProFormRequestOption",
10045
10787
  "ProFormSchemaColumn",
10788
+ "ProFormSchemaColumns",
10046
10789
  "ProFormSchemaValueType",
10047
10790
  "ProFormSelect",
10048
10791
  "ProFormSlider",
10792
+ "ProFormStableContextValue",
10793
+ "ProFormStateContextValue",
10049
10794
  "ProFormSwitch",
10795
+ "ProFormSyncToUrl",
10050
10796
  "ProFormText",
10051
10797
  "ProFormTextArea",
10052
10798
  "ProFormUpload",
10053
10799
  "ProFormValidateResult",
10054
10800
  "ProFormValueEnumObj",
10055
10801
  "ProFormValueType",
10802
+ "ProFormValuesPatch",
10056
10803
  "QueryFilter",
10057
10804
  "QueryFilterProps",
10058
10805
  "Rule",
@@ -10094,6 +10841,99 @@
10094
10841
  "FormCoreInstance",
10095
10842
  "FormInstance",
10096
10843
  "FormLayout",
10844
+ "FormListContextValue",
10845
+ "FormSize",
10846
+ "LabelAlign",
10847
+ "ProForm",
10848
+ "ProFormCheckbox",
10849
+ "ProFormCheckboxGroup",
10850
+ "ProFormColProps",
10851
+ "ProFormContextValue",
10852
+ "ProFormDateFormatter",
10853
+ "ProFormDatePicker",
10854
+ "ProFormDependency",
10855
+ "ProFormDependencyProps",
10856
+ "ProFormFieldConvertValueFn",
10857
+ "ProFormFieldName",
10858
+ "ProFormFieldOptionValue",
10859
+ "ProFormFieldProps",
10860
+ "ProFormFieldSet",
10861
+ "ProFormFieldSetProps",
10862
+ "ProFormFieldTransformFn",
10863
+ "ProFormFieldValueMap",
10864
+ "ProFormFormInstance",
10865
+ "ProFormGroup",
10866
+ "ProFormGroupProps",
10867
+ "ProFormItem",
10868
+ "ProFormItemProps",
10869
+ "ProFormItemSharedProps",
10870
+ "ProFormLayoutConfig",
10871
+ "ProFormList",
10872
+ "ProFormListAction",
10873
+ "ProFormListProps",
10874
+ "ProFormMode",
10875
+ "ProFormPathValue",
10876
+ "ProFormProps",
10877
+ "ProFormRadioGroup",
10878
+ "ProFormRecursivePartial",
10879
+ "ProFormRequestOption",
10880
+ "ProFormSchemaColumn",
10881
+ "ProFormSchemaColumns",
10882
+ "ProFormSchemaValueType",
10883
+ "ProFormSelect",
10884
+ "ProFormSlider",
10885
+ "ProFormStableContextValue",
10886
+ "ProFormStateContextValue",
10887
+ "ProFormSwitch",
10888
+ "ProFormSyncToUrl",
10889
+ "ProFormText",
10890
+ "ProFormTextArea",
10891
+ "ProFormUpload",
10892
+ "ProFormValidateResult",
10893
+ "ProFormValueEnumObj",
10894
+ "ProFormValueType",
10895
+ "ProFormValuesPatch",
10896
+ "QueryFilter",
10897
+ "QueryFilterProps",
10898
+ "Rule",
10899
+ "SchemaForm",
10900
+ "SchemaFormProps",
10901
+ "SubmitterProps",
10902
+ "UseFormWatch",
10903
+ "ValidateStatus",
10904
+ "ValidateTrigger",
10905
+ "createProFormField",
10906
+ "useFormWatch"
10907
+ ],
10908
+ "searchTags": [],
10909
+ "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';",
10910
+ "examples": [
10911
+ {
10912
+ "hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
10913
+ "source": "canonical"
10914
+ }
10915
+ ]
10916
+ },
10917
+ {
10918
+ "name": "ProFormPathValue",
10919
+ "kind": "type",
10920
+ "category": "forms",
10921
+ "summary": "",
10922
+ "importPath": "@1money/component-ui",
10923
+ "subpathImport": "@1money/component-ui/ProForm",
10924
+ "sourceFile": "src/components/ProForm/core/namePathType.ts",
10925
+ "props": [],
10926
+ "extends": [],
10927
+ "relatedSymbols": [
10928
+ "CreateProFormFieldConfig",
10929
+ "DialogForm",
10930
+ "DialogFormProps",
10931
+ "DrawerForm",
10932
+ "DrawerFormProps",
10933
+ "FormCoreInstance",
10934
+ "FormInstance",
10935
+ "FormLayout",
10936
+ "FormListContextValue",
10097
10937
  "FormSize",
10098
10938
  "LabelAlign",
10099
10939
  "ProForm",
@@ -10107,10 +10947,12 @@
10107
10947
  "ProFormDependencyProps",
10108
10948
  "ProFormFieldConvertValueFn",
10109
10949
  "ProFormFieldName",
10950
+ "ProFormFieldOptionValue",
10110
10951
  "ProFormFieldProps",
10111
10952
  "ProFormFieldSet",
10112
10953
  "ProFormFieldSetProps",
10113
10954
  "ProFormFieldTransformFn",
10955
+ "ProFormFieldValueMap",
10114
10956
  "ProFormFormInstance",
10115
10957
  "ProFormGroup",
10116
10958
  "ProFormGroupProps",
@@ -10122,20 +10964,27 @@
10122
10964
  "ProFormListAction",
10123
10965
  "ProFormListProps",
10124
10966
  "ProFormMode",
10967
+ "ProFormPassword",
10125
10968
  "ProFormProps",
10126
10969
  "ProFormRadioGroup",
10970
+ "ProFormRecursivePartial",
10127
10971
  "ProFormRequestOption",
10128
10972
  "ProFormSchemaColumn",
10973
+ "ProFormSchemaColumns",
10129
10974
  "ProFormSchemaValueType",
10130
10975
  "ProFormSelect",
10131
10976
  "ProFormSlider",
10977
+ "ProFormStableContextValue",
10978
+ "ProFormStateContextValue",
10132
10979
  "ProFormSwitch",
10980
+ "ProFormSyncToUrl",
10133
10981
  "ProFormText",
10134
10982
  "ProFormTextArea",
10135
10983
  "ProFormUpload",
10136
10984
  "ProFormValidateResult",
10137
10985
  "ProFormValueEnumObj",
10138
10986
  "ProFormValueType",
10987
+ "ProFormValuesPatch",
10139
10988
  "QueryFilter",
10140
10989
  "QueryFilterProps",
10141
10990
  "Rule",
@@ -10149,6 +10998,7 @@
10149
10998
  "useFormWatch"
10150
10999
  ],
10151
11000
  "searchTags": [],
11001
+ "typeText": "Path extends string\n ? Path extends `${infer Head}.${infer Tail}`\n ? ProFormPathValue<NonNullable<SegmentValue<NonNullable<Values>, Head>>, Tail>\n : SegmentValue<NonNullable<Values>, Path>\n : any",
10152
11002
  "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';",
10153
11003
  "examples": [
10154
11004
  {
@@ -10176,6 +11026,7 @@
10176
11026
  "FormCoreInstance",
10177
11027
  "FormInstance",
10178
11028
  "FormLayout",
11029
+ "FormListContextValue",
10179
11030
  "FormSize",
10180
11031
  "LabelAlign",
10181
11032
  "ProForm",
@@ -10189,10 +11040,12 @@
10189
11040
  "ProFormDependencyProps",
10190
11041
  "ProFormFieldConvertValueFn",
10191
11042
  "ProFormFieldName",
11043
+ "ProFormFieldOptionValue",
10192
11044
  "ProFormFieldProps",
10193
11045
  "ProFormFieldSet",
10194
11046
  "ProFormFieldSetProps",
10195
11047
  "ProFormFieldTransformFn",
11048
+ "ProFormFieldValueMap",
10196
11049
  "ProFormFormInstance",
10197
11050
  "ProFormGroup",
10198
11051
  "ProFormGroupProps",
@@ -10205,19 +11058,26 @@
10205
11058
  "ProFormListProps",
10206
11059
  "ProFormMode",
10207
11060
  "ProFormPassword",
11061
+ "ProFormPathValue",
10208
11062
  "ProFormRadioGroup",
11063
+ "ProFormRecursivePartial",
10209
11064
  "ProFormRequestOption",
10210
11065
  "ProFormSchemaColumn",
11066
+ "ProFormSchemaColumns",
10211
11067
  "ProFormSchemaValueType",
10212
11068
  "ProFormSelect",
10213
11069
  "ProFormSlider",
11070
+ "ProFormStableContextValue",
11071
+ "ProFormStateContextValue",
10214
11072
  "ProFormSwitch",
11073
+ "ProFormSyncToUrl",
10215
11074
  "ProFormText",
10216
11075
  "ProFormTextArea",
10217
11076
  "ProFormUpload",
10218
11077
  "ProFormValidateResult",
10219
11078
  "ProFormValueEnumObj",
10220
11079
  "ProFormValueType",
11080
+ "ProFormValuesPatch",
10221
11081
  "QueryFilter",
10222
11082
  "QueryFilterProps",
10223
11083
  "Rule",
@@ -10259,6 +11119,7 @@
10259
11119
  "FormCoreInstance",
10260
11120
  "FormInstance",
10261
11121
  "FormLayout",
11122
+ "FormListContextValue",
10262
11123
  "FormSize",
10263
11124
  "LabelAlign",
10264
11125
  "ProForm",
@@ -10272,10 +11133,12 @@
10272
11133
  "ProFormDependencyProps",
10273
11134
  "ProFormFieldConvertValueFn",
10274
11135
  "ProFormFieldName",
11136
+ "ProFormFieldOptionValue",
10275
11137
  "ProFormFieldProps",
10276
11138
  "ProFormFieldSet",
10277
11139
  "ProFormFieldSetProps",
10278
11140
  "ProFormFieldTransformFn",
11141
+ "ProFormFieldValueMap",
10279
11142
  "ProFormFormInstance",
10280
11143
  "ProFormGroup",
10281
11144
  "ProFormGroupProps",
@@ -10288,19 +11151,26 @@
10288
11151
  "ProFormListProps",
10289
11152
  "ProFormMode",
10290
11153
  "ProFormPassword",
11154
+ "ProFormPathValue",
10291
11155
  "ProFormProps",
11156
+ "ProFormRecursivePartial",
10292
11157
  "ProFormRequestOption",
10293
11158
  "ProFormSchemaColumn",
11159
+ "ProFormSchemaColumns",
10294
11160
  "ProFormSchemaValueType",
10295
11161
  "ProFormSelect",
10296
11162
  "ProFormSlider",
11163
+ "ProFormStableContextValue",
11164
+ "ProFormStateContextValue",
10297
11165
  "ProFormSwitch",
11166
+ "ProFormSyncToUrl",
10298
11167
  "ProFormText",
10299
11168
  "ProFormTextArea",
10300
11169
  "ProFormUpload",
10301
11170
  "ProFormValidateResult",
10302
11171
  "ProFormValueEnumObj",
10303
11172
  "ProFormValueType",
11173
+ "ProFormValuesPatch",
10304
11174
  "QueryFilter",
10305
11175
  "QueryFilterProps",
10306
11176
  "Rule",
@@ -10323,13 +11193,13 @@
10323
11193
  ]
10324
11194
  },
10325
11195
  {
10326
- "name": "ProFormRequestOption",
11196
+ "name": "ProFormRecursivePartial",
10327
11197
  "kind": "type",
10328
11198
  "category": "forms",
10329
11199
  "summary": "",
10330
11200
  "importPath": "@1money/component-ui",
10331
11201
  "subpathImport": "@1money/component-ui/ProForm",
10332
- "sourceFile": "src/components/ProForm/interface.ts",
11202
+ "sourceFile": "src/components/ProForm/core/namePathType.ts",
10333
11203
  "props": [],
10334
11204
  "extends": [],
10335
11205
  "relatedSymbols": [
@@ -10341,6 +11211,7 @@
10341
11211
  "FormCoreInstance",
10342
11212
  "FormInstance",
10343
11213
  "FormLayout",
11214
+ "FormListContextValue",
10344
11215
  "FormSize",
10345
11216
  "LabelAlign",
10346
11217
  "ProForm",
@@ -10354,10 +11225,12 @@
10354
11225
  "ProFormDependencyProps",
10355
11226
  "ProFormFieldConvertValueFn",
10356
11227
  "ProFormFieldName",
11228
+ "ProFormFieldOptionValue",
10357
11229
  "ProFormFieldProps",
10358
11230
  "ProFormFieldSet",
10359
11231
  "ProFormFieldSetProps",
10360
11232
  "ProFormFieldTransformFn",
11233
+ "ProFormFieldValueMap",
10361
11234
  "ProFormFormInstance",
10362
11235
  "ProFormGroup",
10363
11236
  "ProFormGroupProps",
@@ -10370,19 +11243,26 @@
10370
11243
  "ProFormListProps",
10371
11244
  "ProFormMode",
10372
11245
  "ProFormPassword",
11246
+ "ProFormPathValue",
10373
11247
  "ProFormProps",
10374
11248
  "ProFormRadioGroup",
11249
+ "ProFormRequestOption",
10375
11250
  "ProFormSchemaColumn",
11251
+ "ProFormSchemaColumns",
10376
11252
  "ProFormSchemaValueType",
10377
11253
  "ProFormSelect",
10378
11254
  "ProFormSlider",
11255
+ "ProFormStableContextValue",
11256
+ "ProFormStateContextValue",
10379
11257
  "ProFormSwitch",
11258
+ "ProFormSyncToUrl",
10380
11259
  "ProFormText",
10381
11260
  "ProFormTextArea",
10382
11261
  "ProFormUpload",
10383
11262
  "ProFormValidateResult",
10384
11263
  "ProFormValueEnumObj",
10385
11264
  "ProFormValueType",
11265
+ "ProFormValuesPatch",
10386
11266
  "QueryFilter",
10387
11267
  "QueryFilterProps",
10388
11268
  "Rule",
@@ -10396,7 +11276,7 @@
10396
11276
  "useFormWatch"
10397
11277
  ],
10398
11278
  "searchTags": [],
10399
- "typeText": "interface ProFormRequestOption { ... }",
11279
+ "typeText": "Value extends Primitive\n ? Value\n : Value extends readonly (infer Item)[]\n ? ProFormRecursivePartial<Item>[]\n : Value extends object\n ? { [Key in keyof Value]?: ProFormRecursivePartial<Value[Key]> }\n : Value",
10400
11280
  "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';",
10401
11281
  "examples": [
10402
11282
  {
@@ -10406,7 +11286,7 @@
10406
11286
  ]
10407
11287
  },
10408
11288
  {
10409
- "name": "ProFormSchemaColumn",
11289
+ "name": "ProFormRequestOption",
10410
11290
  "kind": "type",
10411
11291
  "category": "forms",
10412
11292
  "summary": "",
@@ -10424,6 +11304,7 @@
10424
11304
  "FormCoreInstance",
10425
11305
  "FormInstance",
10426
11306
  "FormLayout",
11307
+ "FormListContextValue",
10427
11308
  "FormSize",
10428
11309
  "LabelAlign",
10429
11310
  "ProForm",
@@ -10437,10 +11318,12 @@
10437
11318
  "ProFormDependencyProps",
10438
11319
  "ProFormFieldConvertValueFn",
10439
11320
  "ProFormFieldName",
11321
+ "ProFormFieldOptionValue",
10440
11322
  "ProFormFieldProps",
10441
11323
  "ProFormFieldSet",
10442
11324
  "ProFormFieldSetProps",
10443
11325
  "ProFormFieldTransformFn",
11326
+ "ProFormFieldValueMap",
10444
11327
  "ProFormFormInstance",
10445
11328
  "ProFormGroup",
10446
11329
  "ProFormGroupProps",
@@ -10453,19 +11336,26 @@
10453
11336
  "ProFormListProps",
10454
11337
  "ProFormMode",
10455
11338
  "ProFormPassword",
11339
+ "ProFormPathValue",
10456
11340
  "ProFormProps",
10457
11341
  "ProFormRadioGroup",
10458
- "ProFormRequestOption",
11342
+ "ProFormRecursivePartial",
11343
+ "ProFormSchemaColumn",
11344
+ "ProFormSchemaColumns",
10459
11345
  "ProFormSchemaValueType",
10460
11346
  "ProFormSelect",
10461
11347
  "ProFormSlider",
11348
+ "ProFormStableContextValue",
11349
+ "ProFormStateContextValue",
10462
11350
  "ProFormSwitch",
11351
+ "ProFormSyncToUrl",
10463
11352
  "ProFormText",
10464
11353
  "ProFormTextArea",
10465
11354
  "ProFormUpload",
10466
11355
  "ProFormValidateResult",
10467
11356
  "ProFormValueEnumObj",
10468
11357
  "ProFormValueType",
11358
+ "ProFormValuesPatch",
10469
11359
  "QueryFilter",
10470
11360
  "QueryFilterProps",
10471
11361
  "Rule",
@@ -10479,7 +11369,7 @@
10479
11369
  "useFormWatch"
10480
11370
  ],
10481
11371
  "searchTags": [],
10482
- "typeText": "interface ProFormSchemaColumn { ... }",
11372
+ "typeText": "interface ProFormRequestOption { ... }",
10483
11373
  "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';",
10484
11374
  "examples": [
10485
11375
  {
@@ -10489,7 +11379,7 @@
10489
11379
  ]
10490
11380
  },
10491
11381
  {
10492
- "name": "ProFormSchemaValueType",
11382
+ "name": "ProFormSchemaColumn",
10493
11383
  "kind": "type",
10494
11384
  "category": "forms",
10495
11385
  "summary": "",
@@ -10507,6 +11397,7 @@
10507
11397
  "FormCoreInstance",
10508
11398
  "FormInstance",
10509
11399
  "FormLayout",
11400
+ "FormListContextValue",
10510
11401
  "FormSize",
10511
11402
  "LabelAlign",
10512
11403
  "ProForm",
@@ -10520,10 +11411,12 @@
10520
11411
  "ProFormDependencyProps",
10521
11412
  "ProFormFieldConvertValueFn",
10522
11413
  "ProFormFieldName",
11414
+ "ProFormFieldOptionValue",
10523
11415
  "ProFormFieldProps",
10524
11416
  "ProFormFieldSet",
10525
11417
  "ProFormFieldSetProps",
10526
11418
  "ProFormFieldTransformFn",
11419
+ "ProFormFieldValueMap",
10527
11420
  "ProFormFormInstance",
10528
11421
  "ProFormGroup",
10529
11422
  "ProFormGroupProps",
@@ -10536,19 +11429,26 @@
10536
11429
  "ProFormListProps",
10537
11430
  "ProFormMode",
10538
11431
  "ProFormPassword",
11432
+ "ProFormPathValue",
10539
11433
  "ProFormProps",
10540
11434
  "ProFormRadioGroup",
11435
+ "ProFormRecursivePartial",
10541
11436
  "ProFormRequestOption",
10542
- "ProFormSchemaColumn",
11437
+ "ProFormSchemaColumns",
11438
+ "ProFormSchemaValueType",
10543
11439
  "ProFormSelect",
10544
11440
  "ProFormSlider",
11441
+ "ProFormStableContextValue",
11442
+ "ProFormStateContextValue",
10545
11443
  "ProFormSwitch",
11444
+ "ProFormSyncToUrl",
10546
11445
  "ProFormText",
10547
11446
  "ProFormTextArea",
10548
11447
  "ProFormUpload",
10549
11448
  "ProFormValidateResult",
10550
11449
  "ProFormValueEnumObj",
10551
11450
  "ProFormValueType",
11451
+ "ProFormValuesPatch",
10552
11452
  "QueryFilter",
10553
11453
  "QueryFilterProps",
10554
11454
  "Rule",
@@ -10562,7 +11462,7 @@
10562
11462
  "useFormWatch"
10563
11463
  ],
10564
11464
  "searchTags": [],
10565
- "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'",
11465
+ "typeText": "interface ProFormSchemaColumn { ... }",
10566
11466
  "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';",
10567
11467
  "examples": [
10568
11468
  {
@@ -10572,13 +11472,13 @@
10572
11472
  ]
10573
11473
  },
10574
11474
  {
10575
- "name": "ProFormSelect",
10576
- "kind": "component",
11475
+ "name": "ProFormSchemaColumns",
11476
+ "kind": "type",
10577
11477
  "category": "forms",
10578
11478
  "summary": "",
10579
11479
  "importPath": "@1money/component-ui",
10580
11480
  "subpathImport": "@1money/component-ui/ProForm",
10581
- "sourceFile": "src/components/ProForm/fields/ProFormSelect.tsx",
11481
+ "sourceFile": "src/components/ProForm/interface.ts",
10582
11482
  "props": [],
10583
11483
  "extends": [],
10584
11484
  "relatedSymbols": [
@@ -10590,6 +11490,7 @@
10590
11490
  "FormCoreInstance",
10591
11491
  "FormInstance",
10592
11492
  "FormLayout",
11493
+ "FormListContextValue",
10593
11494
  "FormSize",
10594
11495
  "LabelAlign",
10595
11496
  "ProForm",
@@ -10603,10 +11504,12 @@
10603
11504
  "ProFormDependencyProps",
10604
11505
  "ProFormFieldConvertValueFn",
10605
11506
  "ProFormFieldName",
11507
+ "ProFormFieldOptionValue",
10606
11508
  "ProFormFieldProps",
10607
11509
  "ProFormFieldSet",
10608
11510
  "ProFormFieldSetProps",
10609
11511
  "ProFormFieldTransformFn",
11512
+ "ProFormFieldValueMap",
10610
11513
  "ProFormFormInstance",
10611
11514
  "ProFormGroup",
10612
11515
  "ProFormGroupProps",
@@ -10619,19 +11522,26 @@
10619
11522
  "ProFormListProps",
10620
11523
  "ProFormMode",
10621
11524
  "ProFormPassword",
11525
+ "ProFormPathValue",
10622
11526
  "ProFormProps",
10623
11527
  "ProFormRadioGroup",
11528
+ "ProFormRecursivePartial",
10624
11529
  "ProFormRequestOption",
10625
11530
  "ProFormSchemaColumn",
10626
11531
  "ProFormSchemaValueType",
11532
+ "ProFormSelect",
10627
11533
  "ProFormSlider",
11534
+ "ProFormStableContextValue",
11535
+ "ProFormStateContextValue",
10628
11536
  "ProFormSwitch",
11537
+ "ProFormSyncToUrl",
10629
11538
  "ProFormText",
10630
11539
  "ProFormTextArea",
10631
11540
  "ProFormUpload",
10632
11541
  "ProFormValidateResult",
10633
11542
  "ProFormValueEnumObj",
10634
11543
  "ProFormValueType",
11544
+ "ProFormValuesPatch",
10635
11545
  "QueryFilter",
10636
11546
  "QueryFilterProps",
10637
11547
  "Rule",
@@ -10645,6 +11555,7 @@
10645
11555
  "useFormWatch"
10646
11556
  ],
10647
11557
  "searchTags": [],
11558
+ "typeText": "Array<\n | ProFormSchemaColumn<Values, ProFormFieldName<Values>, FieldParams>\n | {\n [Name in ProFormFieldName<Values>]: ProFormSchemaColumn<\n Values,\n Name,\n FieldParams\n >;\n }[ProFormFieldName<Values>]\n>",
10648
11559
  "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';",
10649
11560
  "examples": [
10650
11561
  {
@@ -10654,13 +11565,13 @@
10654
11565
  ]
10655
11566
  },
10656
11567
  {
10657
- "name": "ProFormSlider",
10658
- "kind": "component",
11568
+ "name": "ProFormSchemaValueType",
11569
+ "kind": "type",
10659
11570
  "category": "forms",
10660
11571
  "summary": "",
10661
11572
  "importPath": "@1money/component-ui",
10662
11573
  "subpathImport": "@1money/component-ui/ProForm",
10663
- "sourceFile": "src/components/ProForm/fields/ProFormSlider.tsx",
11574
+ "sourceFile": "src/components/ProForm/interface.ts",
10664
11575
  "props": [],
10665
11576
  "extends": [],
10666
11577
  "relatedSymbols": [
@@ -10672,6 +11583,7 @@
10672
11583
  "FormCoreInstance",
10673
11584
  "FormInstance",
10674
11585
  "FormLayout",
11586
+ "FormListContextValue",
10675
11587
  "FormSize",
10676
11588
  "LabelAlign",
10677
11589
  "ProForm",
@@ -10685,10 +11597,12 @@
10685
11597
  "ProFormDependencyProps",
10686
11598
  "ProFormFieldConvertValueFn",
10687
11599
  "ProFormFieldName",
11600
+ "ProFormFieldOptionValue",
10688
11601
  "ProFormFieldProps",
10689
11602
  "ProFormFieldSet",
10690
11603
  "ProFormFieldSetProps",
10691
11604
  "ProFormFieldTransformFn",
11605
+ "ProFormFieldValueMap",
10692
11606
  "ProFormFormInstance",
10693
11607
  "ProFormGroup",
10694
11608
  "ProFormGroupProps",
@@ -10701,19 +11615,26 @@
10701
11615
  "ProFormListProps",
10702
11616
  "ProFormMode",
10703
11617
  "ProFormPassword",
11618
+ "ProFormPathValue",
10704
11619
  "ProFormProps",
10705
11620
  "ProFormRadioGroup",
11621
+ "ProFormRecursivePartial",
10706
11622
  "ProFormRequestOption",
10707
11623
  "ProFormSchemaColumn",
10708
- "ProFormSchemaValueType",
11624
+ "ProFormSchemaColumns",
10709
11625
  "ProFormSelect",
11626
+ "ProFormSlider",
11627
+ "ProFormStableContextValue",
11628
+ "ProFormStateContextValue",
10710
11629
  "ProFormSwitch",
11630
+ "ProFormSyncToUrl",
10711
11631
  "ProFormText",
10712
11632
  "ProFormTextArea",
10713
11633
  "ProFormUpload",
10714
11634
  "ProFormValidateResult",
10715
11635
  "ProFormValueEnumObj",
10716
11636
  "ProFormValueType",
11637
+ "ProFormValuesPatch",
10717
11638
  "QueryFilter",
10718
11639
  "QueryFilterProps",
10719
11640
  "Rule",
@@ -10727,6 +11648,7 @@
10727
11648
  "useFormWatch"
10728
11649
  ],
10729
11650
  "searchTags": [],
11651
+ "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'",
10730
11652
  "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';",
10731
11653
  "examples": [
10732
11654
  {
@@ -10736,13 +11658,13 @@
10736
11658
  ]
10737
11659
  },
10738
11660
  {
10739
- "name": "ProFormSwitch",
11661
+ "name": "ProFormSelect",
10740
11662
  "kind": "component",
10741
11663
  "category": "forms",
10742
11664
  "summary": "",
10743
11665
  "importPath": "@1money/component-ui",
10744
11666
  "subpathImport": "@1money/component-ui/ProForm",
10745
- "sourceFile": "src/components/ProForm/fields/ProFormSwitch.tsx",
11667
+ "sourceFile": "src/components/ProForm/fields/ProFormSelect.tsx",
10746
11668
  "props": [],
10747
11669
  "extends": [],
10748
11670
  "relatedSymbols": [
@@ -10754,6 +11676,7 @@
10754
11676
  "FormCoreInstance",
10755
11677
  "FormInstance",
10756
11678
  "FormLayout",
11679
+ "FormListContextValue",
10757
11680
  "FormSize",
10758
11681
  "LabelAlign",
10759
11682
  "ProForm",
@@ -10767,10 +11690,12 @@
10767
11690
  "ProFormDependencyProps",
10768
11691
  "ProFormFieldConvertValueFn",
10769
11692
  "ProFormFieldName",
11693
+ "ProFormFieldOptionValue",
10770
11694
  "ProFormFieldProps",
10771
11695
  "ProFormFieldSet",
10772
11696
  "ProFormFieldSetProps",
10773
11697
  "ProFormFieldTransformFn",
11698
+ "ProFormFieldValueMap",
10774
11699
  "ProFormFormInstance",
10775
11700
  "ProFormGroup",
10776
11701
  "ProFormGroupProps",
@@ -10783,19 +11708,26 @@
10783
11708
  "ProFormListProps",
10784
11709
  "ProFormMode",
10785
11710
  "ProFormPassword",
11711
+ "ProFormPathValue",
10786
11712
  "ProFormProps",
10787
11713
  "ProFormRadioGroup",
11714
+ "ProFormRecursivePartial",
10788
11715
  "ProFormRequestOption",
10789
11716
  "ProFormSchemaColumn",
11717
+ "ProFormSchemaColumns",
10790
11718
  "ProFormSchemaValueType",
10791
- "ProFormSelect",
10792
11719
  "ProFormSlider",
11720
+ "ProFormStableContextValue",
11721
+ "ProFormStateContextValue",
11722
+ "ProFormSwitch",
11723
+ "ProFormSyncToUrl",
10793
11724
  "ProFormText",
10794
11725
  "ProFormTextArea",
10795
11726
  "ProFormUpload",
10796
11727
  "ProFormValidateResult",
10797
11728
  "ProFormValueEnumObj",
10798
11729
  "ProFormValueType",
11730
+ "ProFormValuesPatch",
10799
11731
  "QueryFilter",
10800
11732
  "QueryFilterProps",
10801
11733
  "Rule",
@@ -10818,13 +11750,13 @@
10818
11750
  ]
10819
11751
  },
10820
11752
  {
10821
- "name": "ProFormText",
11753
+ "name": "ProFormSlider",
10822
11754
  "kind": "component",
10823
11755
  "category": "forms",
10824
11756
  "summary": "",
10825
11757
  "importPath": "@1money/component-ui",
10826
11758
  "subpathImport": "@1money/component-ui/ProForm",
10827
- "sourceFile": "src/components/ProForm/fields/ProFormText.tsx",
11759
+ "sourceFile": "src/components/ProForm/fields/ProFormSlider.tsx",
10828
11760
  "props": [],
10829
11761
  "extends": [],
10830
11762
  "relatedSymbols": [
@@ -10836,6 +11768,7 @@
10836
11768
  "FormCoreInstance",
10837
11769
  "FormInstance",
10838
11770
  "FormLayout",
11771
+ "FormListContextValue",
10839
11772
  "FormSize",
10840
11773
  "LabelAlign",
10841
11774
  "ProForm",
@@ -10849,10 +11782,12 @@
10849
11782
  "ProFormDependencyProps",
10850
11783
  "ProFormFieldConvertValueFn",
10851
11784
  "ProFormFieldName",
11785
+ "ProFormFieldOptionValue",
10852
11786
  "ProFormFieldProps",
10853
11787
  "ProFormFieldSet",
10854
11788
  "ProFormFieldSetProps",
10855
11789
  "ProFormFieldTransformFn",
11790
+ "ProFormFieldValueMap",
10856
11791
  "ProFormFormInstance",
10857
11792
  "ProFormGroup",
10858
11793
  "ProFormGroupProps",
@@ -10865,19 +11800,26 @@
10865
11800
  "ProFormListProps",
10866
11801
  "ProFormMode",
10867
11802
  "ProFormPassword",
11803
+ "ProFormPathValue",
10868
11804
  "ProFormProps",
10869
11805
  "ProFormRadioGroup",
11806
+ "ProFormRecursivePartial",
10870
11807
  "ProFormRequestOption",
10871
11808
  "ProFormSchemaColumn",
11809
+ "ProFormSchemaColumns",
10872
11810
  "ProFormSchemaValueType",
10873
11811
  "ProFormSelect",
10874
- "ProFormSlider",
11812
+ "ProFormStableContextValue",
11813
+ "ProFormStateContextValue",
10875
11814
  "ProFormSwitch",
11815
+ "ProFormSyncToUrl",
11816
+ "ProFormText",
10876
11817
  "ProFormTextArea",
10877
11818
  "ProFormUpload",
10878
11819
  "ProFormValidateResult",
10879
11820
  "ProFormValueEnumObj",
10880
11821
  "ProFormValueType",
11822
+ "ProFormValuesPatch",
10881
11823
  "QueryFilter",
10882
11824
  "QueryFilterProps",
10883
11825
  "Rule",
@@ -10900,13 +11842,13 @@
10900
11842
  ]
10901
11843
  },
10902
11844
  {
10903
- "name": "ProFormTextArea",
10904
- "kind": "component",
11845
+ "name": "ProFormStableContextValue",
11846
+ "kind": "type",
10905
11847
  "category": "forms",
10906
11848
  "summary": "",
10907
11849
  "importPath": "@1money/component-ui",
10908
11850
  "subpathImport": "@1money/component-ui/ProForm",
10909
- "sourceFile": "src/components/ProForm/fields/ProFormTextArea.tsx",
11851
+ "sourceFile": "src/components/ProForm/interface.ts",
10910
11852
  "props": [],
10911
11853
  "extends": [],
10912
11854
  "relatedSymbols": [
@@ -10918,6 +11860,7 @@
10918
11860
  "FormCoreInstance",
10919
11861
  "FormInstance",
10920
11862
  "FormLayout",
11863
+ "FormListContextValue",
10921
11864
  "FormSize",
10922
11865
  "LabelAlign",
10923
11866
  "ProForm",
@@ -10931,10 +11874,12 @@
10931
11874
  "ProFormDependencyProps",
10932
11875
  "ProFormFieldConvertValueFn",
10933
11876
  "ProFormFieldName",
11877
+ "ProFormFieldOptionValue",
10934
11878
  "ProFormFieldProps",
10935
11879
  "ProFormFieldSet",
10936
11880
  "ProFormFieldSetProps",
10937
11881
  "ProFormFieldTransformFn",
11882
+ "ProFormFieldValueMap",
10938
11883
  "ProFormFormInstance",
10939
11884
  "ProFormGroup",
10940
11885
  "ProFormGroupProps",
@@ -10947,19 +11892,26 @@
10947
11892
  "ProFormListProps",
10948
11893
  "ProFormMode",
10949
11894
  "ProFormPassword",
11895
+ "ProFormPathValue",
10950
11896
  "ProFormProps",
10951
11897
  "ProFormRadioGroup",
11898
+ "ProFormRecursivePartial",
10952
11899
  "ProFormRequestOption",
10953
11900
  "ProFormSchemaColumn",
11901
+ "ProFormSchemaColumns",
10954
11902
  "ProFormSchemaValueType",
10955
11903
  "ProFormSelect",
10956
11904
  "ProFormSlider",
11905
+ "ProFormStateContextValue",
10957
11906
  "ProFormSwitch",
11907
+ "ProFormSyncToUrl",
10958
11908
  "ProFormText",
11909
+ "ProFormTextArea",
10959
11910
  "ProFormUpload",
10960
11911
  "ProFormValidateResult",
10961
11912
  "ProFormValueEnumObj",
10962
11913
  "ProFormValueType",
11914
+ "ProFormValuesPatch",
10963
11915
  "QueryFilter",
10964
11916
  "QueryFilterProps",
10965
11917
  "Rule",
@@ -10973,6 +11925,7 @@
10973
11925
  "useFormWatch"
10974
11926
  ],
10975
11927
  "searchTags": [],
11928
+ "typeText": "interface ProFormStableContextValue { ... }",
10976
11929
  "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';",
10977
11930
  "examples": [
10978
11931
  {
@@ -10982,13 +11935,13 @@
10982
11935
  ]
10983
11936
  },
10984
11937
  {
10985
- "name": "ProFormUpload",
10986
- "kind": "component",
11938
+ "name": "ProFormStateContextValue",
11939
+ "kind": "type",
10987
11940
  "category": "forms",
10988
11941
  "summary": "",
10989
11942
  "importPath": "@1money/component-ui",
10990
11943
  "subpathImport": "@1money/component-ui/ProForm",
10991
- "sourceFile": "src/components/ProForm/fields/ProFormUpload.tsx",
11944
+ "sourceFile": "src/components/ProForm/interface.ts",
10992
11945
  "props": [],
10993
11946
  "extends": [],
10994
11947
  "relatedSymbols": [
@@ -11000,6 +11953,7 @@
11000
11953
  "FormCoreInstance",
11001
11954
  "FormInstance",
11002
11955
  "FormLayout",
11956
+ "FormListContextValue",
11003
11957
  "FormSize",
11004
11958
  "LabelAlign",
11005
11959
  "ProForm",
@@ -11013,10 +11967,12 @@
11013
11967
  "ProFormDependencyProps",
11014
11968
  "ProFormFieldConvertValueFn",
11015
11969
  "ProFormFieldName",
11970
+ "ProFormFieldOptionValue",
11016
11971
  "ProFormFieldProps",
11017
11972
  "ProFormFieldSet",
11018
11973
  "ProFormFieldSetProps",
11019
11974
  "ProFormFieldTransformFn",
11975
+ "ProFormFieldValueMap",
11020
11976
  "ProFormFormInstance",
11021
11977
  "ProFormGroup",
11022
11978
  "ProFormGroupProps",
@@ -11029,19 +11985,26 @@
11029
11985
  "ProFormListProps",
11030
11986
  "ProFormMode",
11031
11987
  "ProFormPassword",
11988
+ "ProFormPathValue",
11032
11989
  "ProFormProps",
11033
11990
  "ProFormRadioGroup",
11991
+ "ProFormRecursivePartial",
11034
11992
  "ProFormRequestOption",
11035
11993
  "ProFormSchemaColumn",
11994
+ "ProFormSchemaColumns",
11036
11995
  "ProFormSchemaValueType",
11037
11996
  "ProFormSelect",
11038
11997
  "ProFormSlider",
11998
+ "ProFormStableContextValue",
11039
11999
  "ProFormSwitch",
12000
+ "ProFormSyncToUrl",
11040
12001
  "ProFormText",
11041
12002
  "ProFormTextArea",
12003
+ "ProFormUpload",
11042
12004
  "ProFormValidateResult",
11043
12005
  "ProFormValueEnumObj",
11044
12006
  "ProFormValueType",
12007
+ "ProFormValuesPatch",
11045
12008
  "QueryFilter",
11046
12009
  "QueryFilterProps",
11047
12010
  "Rule",
@@ -11055,6 +12018,7 @@
11055
12018
  "useFormWatch"
11056
12019
  ],
11057
12020
  "searchTags": [],
12021
+ "typeText": "interface ProFormStateContextValue { ... }",
11058
12022
  "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';",
11059
12023
  "examples": [
11060
12024
  {
@@ -11064,13 +12028,13 @@
11064
12028
  ]
11065
12029
  },
11066
12030
  {
11067
- "name": "ProFormValidateResult",
11068
- "kind": "type",
12031
+ "name": "ProFormSwitch",
12032
+ "kind": "component",
11069
12033
  "category": "forms",
11070
- "summary": "Result of `validateFieldsReturnFormatValue` — a discriminated union: checking `success` narrows to `values` (success) or `errors` (failure) without `!`.",
12034
+ "summary": "",
11071
12035
  "importPath": "@1money/component-ui",
11072
12036
  "subpathImport": "@1money/component-ui/ProForm",
11073
- "sourceFile": "src/components/ProForm/interface.ts",
12037
+ "sourceFile": "src/components/ProForm/fields/ProFormSwitch.tsx",
11074
12038
  "props": [],
11075
12039
  "extends": [],
11076
12040
  "relatedSymbols": [
@@ -11082,6 +12046,7 @@
11082
12046
  "FormCoreInstance",
11083
12047
  "FormInstance",
11084
12048
  "FormLayout",
12049
+ "FormListContextValue",
11085
12050
  "FormSize",
11086
12051
  "LabelAlign",
11087
12052
  "ProForm",
@@ -11095,10 +12060,12 @@
11095
12060
  "ProFormDependencyProps",
11096
12061
  "ProFormFieldConvertValueFn",
11097
12062
  "ProFormFieldName",
12063
+ "ProFormFieldOptionValue",
11098
12064
  "ProFormFieldProps",
11099
12065
  "ProFormFieldSet",
11100
12066
  "ProFormFieldSetProps",
11101
12067
  "ProFormFieldTransformFn",
12068
+ "ProFormFieldValueMap",
11102
12069
  "ProFormFormInstance",
11103
12070
  "ProFormGroup",
11104
12071
  "ProFormGroupProps",
@@ -11111,19 +12078,26 @@
11111
12078
  "ProFormListProps",
11112
12079
  "ProFormMode",
11113
12080
  "ProFormPassword",
12081
+ "ProFormPathValue",
11114
12082
  "ProFormProps",
11115
12083
  "ProFormRadioGroup",
12084
+ "ProFormRecursivePartial",
11116
12085
  "ProFormRequestOption",
11117
12086
  "ProFormSchemaColumn",
12087
+ "ProFormSchemaColumns",
11118
12088
  "ProFormSchemaValueType",
11119
12089
  "ProFormSelect",
11120
12090
  "ProFormSlider",
11121
- "ProFormSwitch",
12091
+ "ProFormStableContextValue",
12092
+ "ProFormStateContextValue",
12093
+ "ProFormSyncToUrl",
11122
12094
  "ProFormText",
11123
12095
  "ProFormTextArea",
11124
12096
  "ProFormUpload",
12097
+ "ProFormValidateResult",
11125
12098
  "ProFormValueEnumObj",
11126
12099
  "ProFormValueType",
12100
+ "ProFormValuesPatch",
11127
12101
  "QueryFilter",
11128
12102
  "QueryFilterProps",
11129
12103
  "Rule",
@@ -11137,7 +12111,6 @@
11137
12111
  "useFormWatch"
11138
12112
  ],
11139
12113
  "searchTags": [],
11140
- "typeText": "| { success: true; values: Values; errors?: undefined }\n | { success: false; errors: Record<string, ReactNode>; values?: undefined }",
11141
12114
  "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';",
11142
12115
  "examples": [
11143
12116
  {
@@ -11147,13 +12120,13 @@
11147
12120
  ]
11148
12121
  },
11149
12122
  {
11150
- "name": "ProFormValueEnumObj",
12123
+ "name": "ProFormSyncToUrl",
11151
12124
  "kind": "type",
11152
12125
  "category": "forms",
11153
12126
  "summary": "",
11154
12127
  "importPath": "@1money/component-ui",
11155
12128
  "subpathImport": "@1money/component-ui/ProForm",
11156
- "sourceFile": "src/components/ProForm/interface.ts",
12129
+ "sourceFile": "src/components/ProForm/hooks/useUrlSync.ts",
11157
12130
  "props": [],
11158
12131
  "extends": [],
11159
12132
  "relatedSymbols": [
@@ -11165,6 +12138,7 @@
11165
12138
  "FormCoreInstance",
11166
12139
  "FormInstance",
11167
12140
  "FormLayout",
12141
+ "FormListContextValue",
11168
12142
  "FormSize",
11169
12143
  "LabelAlign",
11170
12144
  "ProForm",
@@ -11178,10 +12152,12 @@
11178
12152
  "ProFormDependencyProps",
11179
12153
  "ProFormFieldConvertValueFn",
11180
12154
  "ProFormFieldName",
12155
+ "ProFormFieldOptionValue",
11181
12156
  "ProFormFieldProps",
11182
12157
  "ProFormFieldSet",
11183
12158
  "ProFormFieldSetProps",
11184
12159
  "ProFormFieldTransformFn",
12160
+ "ProFormFieldValueMap",
11185
12161
  "ProFormFormInstance",
11186
12162
  "ProFormGroup",
11187
12163
  "ProFormGroupProps",
@@ -11194,19 +12170,26 @@
11194
12170
  "ProFormListProps",
11195
12171
  "ProFormMode",
11196
12172
  "ProFormPassword",
12173
+ "ProFormPathValue",
11197
12174
  "ProFormProps",
11198
12175
  "ProFormRadioGroup",
12176
+ "ProFormRecursivePartial",
11199
12177
  "ProFormRequestOption",
11200
12178
  "ProFormSchemaColumn",
12179
+ "ProFormSchemaColumns",
11201
12180
  "ProFormSchemaValueType",
11202
12181
  "ProFormSelect",
11203
12182
  "ProFormSlider",
12183
+ "ProFormStableContextValue",
12184
+ "ProFormStateContextValue",
11204
12185
  "ProFormSwitch",
11205
12186
  "ProFormText",
11206
12187
  "ProFormTextArea",
11207
12188
  "ProFormUpload",
11208
12189
  "ProFormValidateResult",
12190
+ "ProFormValueEnumObj",
11209
12191
  "ProFormValueType",
12192
+ "ProFormValuesPatch",
11210
12193
  "QueryFilter",
11211
12194
  "QueryFilterProps",
11212
12195
  "Rule",
@@ -11220,7 +12203,7 @@
11220
12203
  "useFormWatch"
11221
12204
  ],
11222
12205
  "searchTags": [],
11223
- "typeText": "Record<\n string | number,\n string | { text: string; disabled?: boolean }\n>",
12206
+ "typeText": "| boolean\n | ((\n values: ProFormValuesPatch<Values> | Record<string, string>,\n type: 'get' | 'set',\n ) => Record<string, any>)",
11224
12207
  "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';",
11225
12208
  "examples": [
11226
12209
  {
@@ -11230,13 +12213,13 @@
11230
12213
  ]
11231
12214
  },
11232
12215
  {
11233
- "name": "ProFormValueType",
11234
- "kind": "type",
12216
+ "name": "ProFormText",
12217
+ "kind": "component",
11235
12218
  "category": "forms",
11236
12219
  "summary": "",
11237
12220
  "importPath": "@1money/component-ui",
11238
12221
  "subpathImport": "@1money/component-ui/ProForm",
11239
- "sourceFile": "src/components/ProForm/interface.ts",
12222
+ "sourceFile": "src/components/ProForm/fields/ProFormText.tsx",
11240
12223
  "props": [],
11241
12224
  "extends": [],
11242
12225
  "relatedSymbols": [
@@ -11248,6 +12231,7 @@
11248
12231
  "FormCoreInstance",
11249
12232
  "FormInstance",
11250
12233
  "FormLayout",
12234
+ "FormListContextValue",
11251
12235
  "FormSize",
11252
12236
  "LabelAlign",
11253
12237
  "ProForm",
@@ -11261,10 +12245,12 @@
11261
12245
  "ProFormDependencyProps",
11262
12246
  "ProFormFieldConvertValueFn",
11263
12247
  "ProFormFieldName",
12248
+ "ProFormFieldOptionValue",
11264
12249
  "ProFormFieldProps",
11265
12250
  "ProFormFieldSet",
11266
12251
  "ProFormFieldSetProps",
11267
12252
  "ProFormFieldTransformFn",
12253
+ "ProFormFieldValueMap",
11268
12254
  "ProFormFormInstance",
11269
12255
  "ProFormGroup",
11270
12256
  "ProFormGroupProps",
@@ -11277,19 +12263,26 @@
11277
12263
  "ProFormListProps",
11278
12264
  "ProFormMode",
11279
12265
  "ProFormPassword",
12266
+ "ProFormPathValue",
11280
12267
  "ProFormProps",
11281
12268
  "ProFormRadioGroup",
12269
+ "ProFormRecursivePartial",
11282
12270
  "ProFormRequestOption",
11283
12271
  "ProFormSchemaColumn",
12272
+ "ProFormSchemaColumns",
11284
12273
  "ProFormSchemaValueType",
11285
12274
  "ProFormSelect",
11286
12275
  "ProFormSlider",
12276
+ "ProFormStableContextValue",
12277
+ "ProFormStateContextValue",
11287
12278
  "ProFormSwitch",
11288
- "ProFormText",
12279
+ "ProFormSyncToUrl",
11289
12280
  "ProFormTextArea",
11290
12281
  "ProFormUpload",
11291
12282
  "ProFormValidateResult",
11292
12283
  "ProFormValueEnumObj",
12284
+ "ProFormValueType",
12285
+ "ProFormValuesPatch",
11293
12286
  "QueryFilter",
11294
12287
  "QueryFilterProps",
11295
12288
  "Rule",
@@ -11303,7 +12296,562 @@
11303
12296
  "useFormWatch"
11304
12297
  ],
11305
12298
  "searchTags": [],
11306
- "typeText": "| 'text'\n | 'password'\n | 'digit'\n | 'date'\n | 'dateTime'\n | 'select'\n | 'radio'\n | 'switch'\n | 'tag'",
12299
+ "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';",
12300
+ "examples": [
12301
+ {
12302
+ "hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
12303
+ "source": "canonical"
12304
+ }
12305
+ ]
12306
+ },
12307
+ {
12308
+ "name": "ProFormTextArea",
12309
+ "kind": "component",
12310
+ "category": "forms",
12311
+ "summary": "",
12312
+ "importPath": "@1money/component-ui",
12313
+ "subpathImport": "@1money/component-ui/ProForm",
12314
+ "sourceFile": "src/components/ProForm/fields/ProFormTextArea.tsx",
12315
+ "props": [],
12316
+ "extends": [],
12317
+ "relatedSymbols": [
12318
+ "CreateProFormFieldConfig",
12319
+ "DialogForm",
12320
+ "DialogFormProps",
12321
+ "DrawerForm",
12322
+ "DrawerFormProps",
12323
+ "FormCoreInstance",
12324
+ "FormInstance",
12325
+ "FormLayout",
12326
+ "FormListContextValue",
12327
+ "FormSize",
12328
+ "LabelAlign",
12329
+ "ProForm",
12330
+ "ProFormCheckbox",
12331
+ "ProFormCheckboxGroup",
12332
+ "ProFormColProps",
12333
+ "ProFormContextValue",
12334
+ "ProFormDateFormatter",
12335
+ "ProFormDatePicker",
12336
+ "ProFormDependency",
12337
+ "ProFormDependencyProps",
12338
+ "ProFormFieldConvertValueFn",
12339
+ "ProFormFieldName",
12340
+ "ProFormFieldOptionValue",
12341
+ "ProFormFieldProps",
12342
+ "ProFormFieldSet",
12343
+ "ProFormFieldSetProps",
12344
+ "ProFormFieldTransformFn",
12345
+ "ProFormFieldValueMap",
12346
+ "ProFormFormInstance",
12347
+ "ProFormGroup",
12348
+ "ProFormGroupProps",
12349
+ "ProFormItem",
12350
+ "ProFormItemProps",
12351
+ "ProFormItemSharedProps",
12352
+ "ProFormLayoutConfig",
12353
+ "ProFormList",
12354
+ "ProFormListAction",
12355
+ "ProFormListProps",
12356
+ "ProFormMode",
12357
+ "ProFormPassword",
12358
+ "ProFormPathValue",
12359
+ "ProFormProps",
12360
+ "ProFormRadioGroup",
12361
+ "ProFormRecursivePartial",
12362
+ "ProFormRequestOption",
12363
+ "ProFormSchemaColumn",
12364
+ "ProFormSchemaColumns",
12365
+ "ProFormSchemaValueType",
12366
+ "ProFormSelect",
12367
+ "ProFormSlider",
12368
+ "ProFormStableContextValue",
12369
+ "ProFormStateContextValue",
12370
+ "ProFormSwitch",
12371
+ "ProFormSyncToUrl",
12372
+ "ProFormText",
12373
+ "ProFormUpload",
12374
+ "ProFormValidateResult",
12375
+ "ProFormValueEnumObj",
12376
+ "ProFormValueType",
12377
+ "ProFormValuesPatch",
12378
+ "QueryFilter",
12379
+ "QueryFilterProps",
12380
+ "Rule",
12381
+ "SchemaForm",
12382
+ "SchemaFormProps",
12383
+ "SubmitterProps",
12384
+ "UseFormWatch",
12385
+ "ValidateStatus",
12386
+ "ValidateTrigger",
12387
+ "createProFormField",
12388
+ "useFormWatch"
12389
+ ],
12390
+ "searchTags": [],
12391
+ "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';",
12392
+ "examples": [
12393
+ {
12394
+ "hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
12395
+ "source": "canonical"
12396
+ }
12397
+ ]
12398
+ },
12399
+ {
12400
+ "name": "ProFormUpload",
12401
+ "kind": "component",
12402
+ "category": "forms",
12403
+ "summary": "",
12404
+ "importPath": "@1money/component-ui",
12405
+ "subpathImport": "@1money/component-ui/ProForm",
12406
+ "sourceFile": "src/components/ProForm/fields/ProFormUpload.tsx",
12407
+ "props": [],
12408
+ "extends": [],
12409
+ "relatedSymbols": [
12410
+ "CreateProFormFieldConfig",
12411
+ "DialogForm",
12412
+ "DialogFormProps",
12413
+ "DrawerForm",
12414
+ "DrawerFormProps",
12415
+ "FormCoreInstance",
12416
+ "FormInstance",
12417
+ "FormLayout",
12418
+ "FormListContextValue",
12419
+ "FormSize",
12420
+ "LabelAlign",
12421
+ "ProForm",
12422
+ "ProFormCheckbox",
12423
+ "ProFormCheckboxGroup",
12424
+ "ProFormColProps",
12425
+ "ProFormContextValue",
12426
+ "ProFormDateFormatter",
12427
+ "ProFormDatePicker",
12428
+ "ProFormDependency",
12429
+ "ProFormDependencyProps",
12430
+ "ProFormFieldConvertValueFn",
12431
+ "ProFormFieldName",
12432
+ "ProFormFieldOptionValue",
12433
+ "ProFormFieldProps",
12434
+ "ProFormFieldSet",
12435
+ "ProFormFieldSetProps",
12436
+ "ProFormFieldTransformFn",
12437
+ "ProFormFieldValueMap",
12438
+ "ProFormFormInstance",
12439
+ "ProFormGroup",
12440
+ "ProFormGroupProps",
12441
+ "ProFormItem",
12442
+ "ProFormItemProps",
12443
+ "ProFormItemSharedProps",
12444
+ "ProFormLayoutConfig",
12445
+ "ProFormList",
12446
+ "ProFormListAction",
12447
+ "ProFormListProps",
12448
+ "ProFormMode",
12449
+ "ProFormPassword",
12450
+ "ProFormPathValue",
12451
+ "ProFormProps",
12452
+ "ProFormRadioGroup",
12453
+ "ProFormRecursivePartial",
12454
+ "ProFormRequestOption",
12455
+ "ProFormSchemaColumn",
12456
+ "ProFormSchemaColumns",
12457
+ "ProFormSchemaValueType",
12458
+ "ProFormSelect",
12459
+ "ProFormSlider",
12460
+ "ProFormStableContextValue",
12461
+ "ProFormStateContextValue",
12462
+ "ProFormSwitch",
12463
+ "ProFormSyncToUrl",
12464
+ "ProFormText",
12465
+ "ProFormTextArea",
12466
+ "ProFormValidateResult",
12467
+ "ProFormValueEnumObj",
12468
+ "ProFormValueType",
12469
+ "ProFormValuesPatch",
12470
+ "QueryFilter",
12471
+ "QueryFilterProps",
12472
+ "Rule",
12473
+ "SchemaForm",
12474
+ "SchemaFormProps",
12475
+ "SubmitterProps",
12476
+ "UseFormWatch",
12477
+ "ValidateStatus",
12478
+ "ValidateTrigger",
12479
+ "createProFormField",
12480
+ "useFormWatch"
12481
+ ],
12482
+ "searchTags": [],
12483
+ "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';",
12484
+ "examples": [
12485
+ {
12486
+ "hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
12487
+ "source": "canonical"
12488
+ }
12489
+ ]
12490
+ },
12491
+ {
12492
+ "name": "ProFormValidateResult",
12493
+ "kind": "type",
12494
+ "category": "forms",
12495
+ "summary": "Result of `validateFieldsReturnFormatValue` — a discriminated union: checking `success` narrows to `values` (success) or `errors` (failure) without `!`.",
12496
+ "importPath": "@1money/component-ui",
12497
+ "subpathImport": "@1money/component-ui/ProForm",
12498
+ "sourceFile": "src/components/ProForm/interface.ts",
12499
+ "props": [],
12500
+ "extends": [],
12501
+ "relatedSymbols": [
12502
+ "CreateProFormFieldConfig",
12503
+ "DialogForm",
12504
+ "DialogFormProps",
12505
+ "DrawerForm",
12506
+ "DrawerFormProps",
12507
+ "FormCoreInstance",
12508
+ "FormInstance",
12509
+ "FormLayout",
12510
+ "FormListContextValue",
12511
+ "FormSize",
12512
+ "LabelAlign",
12513
+ "ProForm",
12514
+ "ProFormCheckbox",
12515
+ "ProFormCheckboxGroup",
12516
+ "ProFormColProps",
12517
+ "ProFormContextValue",
12518
+ "ProFormDateFormatter",
12519
+ "ProFormDatePicker",
12520
+ "ProFormDependency",
12521
+ "ProFormDependencyProps",
12522
+ "ProFormFieldConvertValueFn",
12523
+ "ProFormFieldName",
12524
+ "ProFormFieldOptionValue",
12525
+ "ProFormFieldProps",
12526
+ "ProFormFieldSet",
12527
+ "ProFormFieldSetProps",
12528
+ "ProFormFieldTransformFn",
12529
+ "ProFormFieldValueMap",
12530
+ "ProFormFormInstance",
12531
+ "ProFormGroup",
12532
+ "ProFormGroupProps",
12533
+ "ProFormItem",
12534
+ "ProFormItemProps",
12535
+ "ProFormItemSharedProps",
12536
+ "ProFormLayoutConfig",
12537
+ "ProFormList",
12538
+ "ProFormListAction",
12539
+ "ProFormListProps",
12540
+ "ProFormMode",
12541
+ "ProFormPassword",
12542
+ "ProFormPathValue",
12543
+ "ProFormProps",
12544
+ "ProFormRadioGroup",
12545
+ "ProFormRecursivePartial",
12546
+ "ProFormRequestOption",
12547
+ "ProFormSchemaColumn",
12548
+ "ProFormSchemaColumns",
12549
+ "ProFormSchemaValueType",
12550
+ "ProFormSelect",
12551
+ "ProFormSlider",
12552
+ "ProFormStableContextValue",
12553
+ "ProFormStateContextValue",
12554
+ "ProFormSwitch",
12555
+ "ProFormSyncToUrl",
12556
+ "ProFormText",
12557
+ "ProFormTextArea",
12558
+ "ProFormUpload",
12559
+ "ProFormValueEnumObj",
12560
+ "ProFormValueType",
12561
+ "ProFormValuesPatch",
12562
+ "QueryFilter",
12563
+ "QueryFilterProps",
12564
+ "Rule",
12565
+ "SchemaForm",
12566
+ "SchemaFormProps",
12567
+ "SubmitterProps",
12568
+ "UseFormWatch",
12569
+ "ValidateStatus",
12570
+ "ValidateTrigger",
12571
+ "createProFormField",
12572
+ "useFormWatch"
12573
+ ],
12574
+ "searchTags": [],
12575
+ "typeText": "| { success: true; values: Values; errors?: undefined }\n | { success: false; errors: Record<string, ReactNode>; values?: undefined }",
12576
+ "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';",
12577
+ "examples": [
12578
+ {
12579
+ "hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
12580
+ "source": "canonical"
12581
+ }
12582
+ ]
12583
+ },
12584
+ {
12585
+ "name": "ProFormValueEnumObj",
12586
+ "kind": "type",
12587
+ "category": "forms",
12588
+ "summary": "",
12589
+ "importPath": "@1money/component-ui",
12590
+ "subpathImport": "@1money/component-ui/ProForm",
12591
+ "sourceFile": "src/components/ProForm/interface.ts",
12592
+ "props": [],
12593
+ "extends": [],
12594
+ "relatedSymbols": [
12595
+ "CreateProFormFieldConfig",
12596
+ "DialogForm",
12597
+ "DialogFormProps",
12598
+ "DrawerForm",
12599
+ "DrawerFormProps",
12600
+ "FormCoreInstance",
12601
+ "FormInstance",
12602
+ "FormLayout",
12603
+ "FormListContextValue",
12604
+ "FormSize",
12605
+ "LabelAlign",
12606
+ "ProForm",
12607
+ "ProFormCheckbox",
12608
+ "ProFormCheckboxGroup",
12609
+ "ProFormColProps",
12610
+ "ProFormContextValue",
12611
+ "ProFormDateFormatter",
12612
+ "ProFormDatePicker",
12613
+ "ProFormDependency",
12614
+ "ProFormDependencyProps",
12615
+ "ProFormFieldConvertValueFn",
12616
+ "ProFormFieldName",
12617
+ "ProFormFieldOptionValue",
12618
+ "ProFormFieldProps",
12619
+ "ProFormFieldSet",
12620
+ "ProFormFieldSetProps",
12621
+ "ProFormFieldTransformFn",
12622
+ "ProFormFieldValueMap",
12623
+ "ProFormFormInstance",
12624
+ "ProFormGroup",
12625
+ "ProFormGroupProps",
12626
+ "ProFormItem",
12627
+ "ProFormItemProps",
12628
+ "ProFormItemSharedProps",
12629
+ "ProFormLayoutConfig",
12630
+ "ProFormList",
12631
+ "ProFormListAction",
12632
+ "ProFormListProps",
12633
+ "ProFormMode",
12634
+ "ProFormPassword",
12635
+ "ProFormPathValue",
12636
+ "ProFormProps",
12637
+ "ProFormRadioGroup",
12638
+ "ProFormRecursivePartial",
12639
+ "ProFormRequestOption",
12640
+ "ProFormSchemaColumn",
12641
+ "ProFormSchemaColumns",
12642
+ "ProFormSchemaValueType",
12643
+ "ProFormSelect",
12644
+ "ProFormSlider",
12645
+ "ProFormStableContextValue",
12646
+ "ProFormStateContextValue",
12647
+ "ProFormSwitch",
12648
+ "ProFormSyncToUrl",
12649
+ "ProFormText",
12650
+ "ProFormTextArea",
12651
+ "ProFormUpload",
12652
+ "ProFormValidateResult",
12653
+ "ProFormValueType",
12654
+ "ProFormValuesPatch",
12655
+ "QueryFilter",
12656
+ "QueryFilterProps",
12657
+ "Rule",
12658
+ "SchemaForm",
12659
+ "SchemaFormProps",
12660
+ "SubmitterProps",
12661
+ "UseFormWatch",
12662
+ "ValidateStatus",
12663
+ "ValidateTrigger",
12664
+ "createProFormField",
12665
+ "useFormWatch"
12666
+ ],
12667
+ "searchTags": [],
12668
+ "typeText": "Record<\n string | number,\n string | { text: string; disabled?: boolean }\n>",
12669
+ "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';",
12670
+ "examples": [
12671
+ {
12672
+ "hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
12673
+ "source": "canonical"
12674
+ }
12675
+ ]
12676
+ },
12677
+ {
12678
+ "name": "ProFormValueType",
12679
+ "kind": "type",
12680
+ "category": "forms",
12681
+ "summary": "",
12682
+ "importPath": "@1money/component-ui",
12683
+ "subpathImport": "@1money/component-ui/ProForm",
12684
+ "sourceFile": "src/components/ProForm/interface.ts",
12685
+ "props": [],
12686
+ "extends": [],
12687
+ "relatedSymbols": [
12688
+ "CreateProFormFieldConfig",
12689
+ "DialogForm",
12690
+ "DialogFormProps",
12691
+ "DrawerForm",
12692
+ "DrawerFormProps",
12693
+ "FormCoreInstance",
12694
+ "FormInstance",
12695
+ "FormLayout",
12696
+ "FormListContextValue",
12697
+ "FormSize",
12698
+ "LabelAlign",
12699
+ "ProForm",
12700
+ "ProFormCheckbox",
12701
+ "ProFormCheckboxGroup",
12702
+ "ProFormColProps",
12703
+ "ProFormContextValue",
12704
+ "ProFormDateFormatter",
12705
+ "ProFormDatePicker",
12706
+ "ProFormDependency",
12707
+ "ProFormDependencyProps",
12708
+ "ProFormFieldConvertValueFn",
12709
+ "ProFormFieldName",
12710
+ "ProFormFieldOptionValue",
12711
+ "ProFormFieldProps",
12712
+ "ProFormFieldSet",
12713
+ "ProFormFieldSetProps",
12714
+ "ProFormFieldTransformFn",
12715
+ "ProFormFieldValueMap",
12716
+ "ProFormFormInstance",
12717
+ "ProFormGroup",
12718
+ "ProFormGroupProps",
12719
+ "ProFormItem",
12720
+ "ProFormItemProps",
12721
+ "ProFormItemSharedProps",
12722
+ "ProFormLayoutConfig",
12723
+ "ProFormList",
12724
+ "ProFormListAction",
12725
+ "ProFormListProps",
12726
+ "ProFormMode",
12727
+ "ProFormPassword",
12728
+ "ProFormPathValue",
12729
+ "ProFormProps",
12730
+ "ProFormRadioGroup",
12731
+ "ProFormRecursivePartial",
12732
+ "ProFormRequestOption",
12733
+ "ProFormSchemaColumn",
12734
+ "ProFormSchemaColumns",
12735
+ "ProFormSchemaValueType",
12736
+ "ProFormSelect",
12737
+ "ProFormSlider",
12738
+ "ProFormStableContextValue",
12739
+ "ProFormStateContextValue",
12740
+ "ProFormSwitch",
12741
+ "ProFormSyncToUrl",
12742
+ "ProFormText",
12743
+ "ProFormTextArea",
12744
+ "ProFormUpload",
12745
+ "ProFormValidateResult",
12746
+ "ProFormValueEnumObj",
12747
+ "ProFormValuesPatch",
12748
+ "QueryFilter",
12749
+ "QueryFilterProps",
12750
+ "Rule",
12751
+ "SchemaForm",
12752
+ "SchemaFormProps",
12753
+ "SubmitterProps",
12754
+ "UseFormWatch",
12755
+ "ValidateStatus",
12756
+ "ValidateTrigger",
12757
+ "createProFormField",
12758
+ "useFormWatch"
12759
+ ],
12760
+ "searchTags": [],
12761
+ "typeText": "| 'text'\n | 'password'\n | 'digit'\n | 'date'\n | 'dateTime'\n | 'select'\n | 'radio'\n | 'switch'\n | 'tag'",
12762
+ "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';",
12763
+ "examples": [
12764
+ {
12765
+ "hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
12766
+ "source": "canonical"
12767
+ }
12768
+ ]
12769
+ },
12770
+ {
12771
+ "name": "ProFormValuesPatch",
12772
+ "kind": "type",
12773
+ "category": "forms",
12774
+ "summary": "",
12775
+ "importPath": "@1money/component-ui",
12776
+ "subpathImport": "@1money/component-ui/ProForm",
12777
+ "sourceFile": "src/components/ProForm/core/namePathType.ts",
12778
+ "props": [],
12779
+ "extends": [],
12780
+ "relatedSymbols": [
12781
+ "CreateProFormFieldConfig",
12782
+ "DialogForm",
12783
+ "DialogFormProps",
12784
+ "DrawerForm",
12785
+ "DrawerFormProps",
12786
+ "FormCoreInstance",
12787
+ "FormInstance",
12788
+ "FormLayout",
12789
+ "FormListContextValue",
12790
+ "FormSize",
12791
+ "LabelAlign",
12792
+ "ProForm",
12793
+ "ProFormCheckbox",
12794
+ "ProFormCheckboxGroup",
12795
+ "ProFormColProps",
12796
+ "ProFormContextValue",
12797
+ "ProFormDateFormatter",
12798
+ "ProFormDatePicker",
12799
+ "ProFormDependency",
12800
+ "ProFormDependencyProps",
12801
+ "ProFormFieldConvertValueFn",
12802
+ "ProFormFieldName",
12803
+ "ProFormFieldOptionValue",
12804
+ "ProFormFieldProps",
12805
+ "ProFormFieldSet",
12806
+ "ProFormFieldSetProps",
12807
+ "ProFormFieldTransformFn",
12808
+ "ProFormFieldValueMap",
12809
+ "ProFormFormInstance",
12810
+ "ProFormGroup",
12811
+ "ProFormGroupProps",
12812
+ "ProFormItem",
12813
+ "ProFormItemProps",
12814
+ "ProFormItemSharedProps",
12815
+ "ProFormLayoutConfig",
12816
+ "ProFormList",
12817
+ "ProFormListAction",
12818
+ "ProFormListProps",
12819
+ "ProFormMode",
12820
+ "ProFormPassword",
12821
+ "ProFormPathValue",
12822
+ "ProFormProps",
12823
+ "ProFormRadioGroup",
12824
+ "ProFormRecursivePartial",
12825
+ "ProFormRequestOption",
12826
+ "ProFormSchemaColumn",
12827
+ "ProFormSchemaColumns",
12828
+ "ProFormSchemaValueType",
12829
+ "ProFormSelect",
12830
+ "ProFormSlider",
12831
+ "ProFormStableContextValue",
12832
+ "ProFormStateContextValue",
12833
+ "ProFormSwitch",
12834
+ "ProFormSyncToUrl",
12835
+ "ProFormText",
12836
+ "ProFormTextArea",
12837
+ "ProFormUpload",
12838
+ "ProFormValidateResult",
12839
+ "ProFormValueEnumObj",
12840
+ "ProFormValueType",
12841
+ "QueryFilter",
12842
+ "QueryFilterProps",
12843
+ "Rule",
12844
+ "SchemaForm",
12845
+ "SchemaFormProps",
12846
+ "SubmitterProps",
12847
+ "UseFormWatch",
12848
+ "ValidateStatus",
12849
+ "ValidateTrigger",
12850
+ "createProFormField",
12851
+ "useFormWatch"
12852
+ ],
12853
+ "searchTags": [],
12854
+ "typeText": "| ProFormRecursivePartial<Values>\n | Partial<{\n [FieldName in ProFormFieldName<Values>]: ProFormFieldPatchValue<\n Values,\n FieldName\n >;\n }>",
11307
12855
  "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';",
11308
12856
  "examples": [
11309
12857
  {
@@ -12223,7 +13771,7 @@
12223
13771
  }
12224
13772
  ],
12225
13773
  "extends": [
12226
- "ProFormProps<Values>"
13774
+ "ProFormProps<Values, Params>"
12227
13775
  ],
12228
13776
  "relatedSymbols": [
12229
13777
  "CreateProFormFieldConfig",
@@ -12234,6 +13782,7 @@
12234
13782
  "FormCoreInstance",
12235
13783
  "FormInstance",
12236
13784
  "FormLayout",
13785
+ "FormListContextValue",
12237
13786
  "FormSize",
12238
13787
  "LabelAlign",
12239
13788
  "ProForm",
@@ -12247,10 +13796,12 @@
12247
13796
  "ProFormDependencyProps",
12248
13797
  "ProFormFieldConvertValueFn",
12249
13798
  "ProFormFieldName",
13799
+ "ProFormFieldOptionValue",
12250
13800
  "ProFormFieldProps",
12251
13801
  "ProFormFieldSet",
12252
13802
  "ProFormFieldSetProps",
12253
13803
  "ProFormFieldTransformFn",
13804
+ "ProFormFieldValueMap",
12254
13805
  "ProFormFormInstance",
12255
13806
  "ProFormGroup",
12256
13807
  "ProFormGroupProps",
@@ -12263,20 +13814,27 @@
12263
13814
  "ProFormListProps",
12264
13815
  "ProFormMode",
12265
13816
  "ProFormPassword",
13817
+ "ProFormPathValue",
12266
13818
  "ProFormProps",
12267
13819
  "ProFormRadioGroup",
13820
+ "ProFormRecursivePartial",
12268
13821
  "ProFormRequestOption",
12269
13822
  "ProFormSchemaColumn",
13823
+ "ProFormSchemaColumns",
12270
13824
  "ProFormSchemaValueType",
12271
13825
  "ProFormSelect",
12272
13826
  "ProFormSlider",
13827
+ "ProFormStableContextValue",
13828
+ "ProFormStateContextValue",
12273
13829
  "ProFormSwitch",
13830
+ "ProFormSyncToUrl",
12274
13831
  "ProFormText",
12275
13832
  "ProFormTextArea",
12276
13833
  "ProFormUpload",
12277
13834
  "ProFormValidateResult",
12278
13835
  "ProFormValueEnumObj",
12279
13836
  "ProFormValueType",
13837
+ "ProFormValuesPatch",
12280
13838
  "QueryFilterProps",
12281
13839
  "Rule",
12282
13840
  "SchemaForm",
@@ -12316,6 +13874,7 @@
12316
13874
  "FormCoreInstance",
12317
13875
  "FormInstance",
12318
13876
  "FormLayout",
13877
+ "FormListContextValue",
12319
13878
  "FormSize",
12320
13879
  "LabelAlign",
12321
13880
  "ProForm",
@@ -12329,10 +13888,12 @@
12329
13888
  "ProFormDependencyProps",
12330
13889
  "ProFormFieldConvertValueFn",
12331
13890
  "ProFormFieldName",
13891
+ "ProFormFieldOptionValue",
12332
13892
  "ProFormFieldProps",
12333
13893
  "ProFormFieldSet",
12334
13894
  "ProFormFieldSetProps",
12335
13895
  "ProFormFieldTransformFn",
13896
+ "ProFormFieldValueMap",
12336
13897
  "ProFormFormInstance",
12337
13898
  "ProFormGroup",
12338
13899
  "ProFormGroupProps",
@@ -12345,20 +13906,27 @@
12345
13906
  "ProFormListProps",
12346
13907
  "ProFormMode",
12347
13908
  "ProFormPassword",
13909
+ "ProFormPathValue",
12348
13910
  "ProFormProps",
12349
13911
  "ProFormRadioGroup",
13912
+ "ProFormRecursivePartial",
12350
13913
  "ProFormRequestOption",
12351
13914
  "ProFormSchemaColumn",
13915
+ "ProFormSchemaColumns",
12352
13916
  "ProFormSchemaValueType",
12353
13917
  "ProFormSelect",
12354
13918
  "ProFormSlider",
13919
+ "ProFormStableContextValue",
13920
+ "ProFormStateContextValue",
12355
13921
  "ProFormSwitch",
13922
+ "ProFormSyncToUrl",
12356
13923
  "ProFormText",
12357
13924
  "ProFormTextArea",
12358
13925
  "ProFormUpload",
12359
13926
  "ProFormValidateResult",
12360
13927
  "ProFormValueEnumObj",
12361
13928
  "ProFormValueType",
13929
+ "ProFormValuesPatch",
12362
13930
  "QueryFilter",
12363
13931
  "Rule",
12364
13932
  "SchemaForm",
@@ -12371,7 +13939,7 @@
12371
13939
  "useFormWatch"
12372
13940
  ],
12373
13941
  "searchTags": [],
12374
- "typeText": "interface QueryFilterProps extends ProFormProps<Values> { ... }",
13942
+ "typeText": "interface QueryFilterProps extends ProFormProps<Values, Params> { ... }",
12375
13943
  "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';",
12376
13944
  "examples": [
12377
13945
  {
@@ -13287,6 +14855,7 @@
13287
14855
  "FormCoreInstance",
13288
14856
  "FormInstance",
13289
14857
  "FormLayout",
14858
+ "FormListContextValue",
13290
14859
  "FormSize",
13291
14860
  "LabelAlign",
13292
14861
  "ProForm",
@@ -13300,10 +14869,12 @@
13300
14869
  "ProFormDependencyProps",
13301
14870
  "ProFormFieldConvertValueFn",
13302
14871
  "ProFormFieldName",
14872
+ "ProFormFieldOptionValue",
13303
14873
  "ProFormFieldProps",
13304
14874
  "ProFormFieldSet",
13305
14875
  "ProFormFieldSetProps",
13306
14876
  "ProFormFieldTransformFn",
14877
+ "ProFormFieldValueMap",
13307
14878
  "ProFormFormInstance",
13308
14879
  "ProFormGroup",
13309
14880
  "ProFormGroupProps",
@@ -13316,20 +14887,27 @@
13316
14887
  "ProFormListProps",
13317
14888
  "ProFormMode",
13318
14889
  "ProFormPassword",
14890
+ "ProFormPathValue",
13319
14891
  "ProFormProps",
13320
14892
  "ProFormRadioGroup",
14893
+ "ProFormRecursivePartial",
13321
14894
  "ProFormRequestOption",
13322
14895
  "ProFormSchemaColumn",
14896
+ "ProFormSchemaColumns",
13323
14897
  "ProFormSchemaValueType",
13324
14898
  "ProFormSelect",
13325
14899
  "ProFormSlider",
14900
+ "ProFormStableContextValue",
14901
+ "ProFormStateContextValue",
13326
14902
  "ProFormSwitch",
14903
+ "ProFormSyncToUrl",
13327
14904
  "ProFormText",
13328
14905
  "ProFormTextArea",
13329
14906
  "ProFormUpload",
13330
14907
  "ProFormValidateResult",
13331
14908
  "ProFormValueEnumObj",
13332
14909
  "ProFormValueType",
14910
+ "ProFormValuesPatch",
13333
14911
  "QueryFilter",
13334
14912
  "QueryFilterProps",
13335
14913
  "SchemaForm",
@@ -13362,7 +14940,7 @@
13362
14940
  "props": [
13363
14941
  {
13364
14942
  "name": "columns",
13365
- "type": "ProFormSchemaColumn<Values>[]",
14943
+ "type": "ProFormSchemaColumns<Values, FieldParams>",
13366
14944
  "optional": false,
13367
14945
  "default": null,
13368
14946
  "description": "",
@@ -13370,7 +14948,7 @@
13370
14948
  }
13371
14949
  ],
13372
14950
  "extends": [
13373
- "Omit<ProFormProps<Values>, 'children'>"
14951
+ "Omit<ProFormProps<Values, Params>, 'children'>"
13374
14952
  ],
13375
14953
  "relatedSymbols": [
13376
14954
  "CreateProFormFieldConfig",
@@ -13381,6 +14959,7 @@
13381
14959
  "FormCoreInstance",
13382
14960
  "FormInstance",
13383
14961
  "FormLayout",
14962
+ "FormListContextValue",
13384
14963
  "FormSize",
13385
14964
  "LabelAlign",
13386
14965
  "ProForm",
@@ -13394,10 +14973,12 @@
13394
14973
  "ProFormDependencyProps",
13395
14974
  "ProFormFieldConvertValueFn",
13396
14975
  "ProFormFieldName",
14976
+ "ProFormFieldOptionValue",
13397
14977
  "ProFormFieldProps",
13398
14978
  "ProFormFieldSet",
13399
14979
  "ProFormFieldSetProps",
13400
14980
  "ProFormFieldTransformFn",
14981
+ "ProFormFieldValueMap",
13401
14982
  "ProFormFormInstance",
13402
14983
  "ProFormGroup",
13403
14984
  "ProFormGroupProps",
@@ -13410,20 +14991,27 @@
13410
14991
  "ProFormListProps",
13411
14992
  "ProFormMode",
13412
14993
  "ProFormPassword",
14994
+ "ProFormPathValue",
13413
14995
  "ProFormProps",
13414
14996
  "ProFormRadioGroup",
14997
+ "ProFormRecursivePartial",
13415
14998
  "ProFormRequestOption",
13416
14999
  "ProFormSchemaColumn",
15000
+ "ProFormSchemaColumns",
13417
15001
  "ProFormSchemaValueType",
13418
15002
  "ProFormSelect",
13419
15003
  "ProFormSlider",
15004
+ "ProFormStableContextValue",
15005
+ "ProFormStateContextValue",
13420
15006
  "ProFormSwitch",
15007
+ "ProFormSyncToUrl",
13421
15008
  "ProFormText",
13422
15009
  "ProFormTextArea",
13423
15010
  "ProFormUpload",
13424
15011
  "ProFormValidateResult",
13425
15012
  "ProFormValueEnumObj",
13426
15013
  "ProFormValueType",
15014
+ "ProFormValuesPatch",
13427
15015
  "QueryFilter",
13428
15016
  "QueryFilterProps",
13429
15017
  "Rule",
@@ -13463,6 +15051,7 @@
13463
15051
  "FormCoreInstance",
13464
15052
  "FormInstance",
13465
15053
  "FormLayout",
15054
+ "FormListContextValue",
13466
15055
  "FormSize",
13467
15056
  "LabelAlign",
13468
15057
  "ProForm",
@@ -13476,10 +15065,12 @@
13476
15065
  "ProFormDependencyProps",
13477
15066
  "ProFormFieldConvertValueFn",
13478
15067
  "ProFormFieldName",
15068
+ "ProFormFieldOptionValue",
13479
15069
  "ProFormFieldProps",
13480
15070
  "ProFormFieldSet",
13481
15071
  "ProFormFieldSetProps",
13482
15072
  "ProFormFieldTransformFn",
15073
+ "ProFormFieldValueMap",
13483
15074
  "ProFormFormInstance",
13484
15075
  "ProFormGroup",
13485
15076
  "ProFormGroupProps",
@@ -13492,20 +15083,27 @@
13492
15083
  "ProFormListProps",
13493
15084
  "ProFormMode",
13494
15085
  "ProFormPassword",
15086
+ "ProFormPathValue",
13495
15087
  "ProFormProps",
13496
15088
  "ProFormRadioGroup",
15089
+ "ProFormRecursivePartial",
13497
15090
  "ProFormRequestOption",
13498
15091
  "ProFormSchemaColumn",
15092
+ "ProFormSchemaColumns",
13499
15093
  "ProFormSchemaValueType",
13500
15094
  "ProFormSelect",
13501
15095
  "ProFormSlider",
15096
+ "ProFormStableContextValue",
15097
+ "ProFormStateContextValue",
13502
15098
  "ProFormSwitch",
15099
+ "ProFormSyncToUrl",
13503
15100
  "ProFormText",
13504
15101
  "ProFormTextArea",
13505
15102
  "ProFormUpload",
13506
15103
  "ProFormValidateResult",
13507
15104
  "ProFormValueEnumObj",
13508
15105
  "ProFormValueType",
15106
+ "ProFormValuesPatch",
13509
15107
  "QueryFilter",
13510
15108
  "QueryFilterProps",
13511
15109
  "Rule",
@@ -13518,7 +15116,7 @@
13518
15116
  "useFormWatch"
13519
15117
  ],
13520
15118
  "searchTags": [],
13521
- "typeText": "interface SchemaFormProps extends Omit<ProFormProps<Values>, 'children'> { ... }",
15119
+ "typeText": "interface SchemaFormProps extends Omit<ProFormProps<Values, Params>, 'children'> { ... }",
13522
15120
  "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';",
13523
15121
  "examples": [
13524
15122
  {
@@ -15536,6 +17134,7 @@
15536
17134
  "FormCoreInstance",
15537
17135
  "FormInstance",
15538
17136
  "FormLayout",
17137
+ "FormListContextValue",
15539
17138
  "FormSize",
15540
17139
  "LabelAlign",
15541
17140
  "ProForm",
@@ -15549,10 +17148,12 @@
15549
17148
  "ProFormDependencyProps",
15550
17149
  "ProFormFieldConvertValueFn",
15551
17150
  "ProFormFieldName",
17151
+ "ProFormFieldOptionValue",
15552
17152
  "ProFormFieldProps",
15553
17153
  "ProFormFieldSet",
15554
17154
  "ProFormFieldSetProps",
15555
17155
  "ProFormFieldTransformFn",
17156
+ "ProFormFieldValueMap",
15556
17157
  "ProFormFormInstance",
15557
17158
  "ProFormGroup",
15558
17159
  "ProFormGroupProps",
@@ -15565,20 +17166,27 @@
15565
17166
  "ProFormListProps",
15566
17167
  "ProFormMode",
15567
17168
  "ProFormPassword",
17169
+ "ProFormPathValue",
15568
17170
  "ProFormProps",
15569
17171
  "ProFormRadioGroup",
17172
+ "ProFormRecursivePartial",
15570
17173
  "ProFormRequestOption",
15571
17174
  "ProFormSchemaColumn",
17175
+ "ProFormSchemaColumns",
15572
17176
  "ProFormSchemaValueType",
15573
17177
  "ProFormSelect",
15574
17178
  "ProFormSlider",
17179
+ "ProFormStableContextValue",
17180
+ "ProFormStateContextValue",
15575
17181
  "ProFormSwitch",
17182
+ "ProFormSyncToUrl",
15576
17183
  "ProFormText",
15577
17184
  "ProFormTextArea",
15578
17185
  "ProFormUpload",
15579
17186
  "ProFormValidateResult",
15580
17187
  "ProFormValueEnumObj",
15581
17188
  "ProFormValueType",
17189
+ "ProFormValuesPatch",
15582
17190
  "QueryFilter",
15583
17191
  "QueryFilterProps",
15584
17192
  "Rule",
@@ -18178,6 +19786,7 @@
18178
19786
  "FormCoreInstance",
18179
19787
  "FormInstance",
18180
19788
  "FormLayout",
19789
+ "FormListContextValue",
18181
19790
  "FormSize",
18182
19791
  "LabelAlign",
18183
19792
  "ProForm",
@@ -18191,10 +19800,12 @@
18191
19800
  "ProFormDependencyProps",
18192
19801
  "ProFormFieldConvertValueFn",
18193
19802
  "ProFormFieldName",
19803
+ "ProFormFieldOptionValue",
18194
19804
  "ProFormFieldProps",
18195
19805
  "ProFormFieldSet",
18196
19806
  "ProFormFieldSetProps",
18197
19807
  "ProFormFieldTransformFn",
19808
+ "ProFormFieldValueMap",
18198
19809
  "ProFormFormInstance",
18199
19810
  "ProFormGroup",
18200
19811
  "ProFormGroupProps",
@@ -18207,20 +19818,27 @@
18207
19818
  "ProFormListProps",
18208
19819
  "ProFormMode",
18209
19820
  "ProFormPassword",
19821
+ "ProFormPathValue",
18210
19822
  "ProFormProps",
18211
19823
  "ProFormRadioGroup",
19824
+ "ProFormRecursivePartial",
18212
19825
  "ProFormRequestOption",
18213
19826
  "ProFormSchemaColumn",
19827
+ "ProFormSchemaColumns",
18214
19828
  "ProFormSchemaValueType",
18215
19829
  "ProFormSelect",
18216
19830
  "ProFormSlider",
19831
+ "ProFormStableContextValue",
19832
+ "ProFormStateContextValue",
18217
19833
  "ProFormSwitch",
19834
+ "ProFormSyncToUrl",
18218
19835
  "ProFormText",
18219
19836
  "ProFormTextArea",
18220
19837
  "ProFormUpload",
18221
19838
  "ProFormValidateResult",
18222
19839
  "ProFormValueEnumObj",
18223
19840
  "ProFormValueType",
19841
+ "ProFormValuesPatch",
18224
19842
  "QueryFilter",
18225
19843
  "QueryFilterProps",
18226
19844
  "Rule",
@@ -18321,6 +19939,7 @@
18321
19939
  "FormCoreInstance",
18322
19940
  "FormInstance",
18323
19941
  "FormLayout",
19942
+ "FormListContextValue",
18324
19943
  "FormSize",
18325
19944
  "LabelAlign",
18326
19945
  "ProForm",
@@ -18334,10 +19953,12 @@
18334
19953
  "ProFormDependencyProps",
18335
19954
  "ProFormFieldConvertValueFn",
18336
19955
  "ProFormFieldName",
19956
+ "ProFormFieldOptionValue",
18337
19957
  "ProFormFieldProps",
18338
19958
  "ProFormFieldSet",
18339
19959
  "ProFormFieldSetProps",
18340
19960
  "ProFormFieldTransformFn",
19961
+ "ProFormFieldValueMap",
18341
19962
  "ProFormFormInstance",
18342
19963
  "ProFormGroup",
18343
19964
  "ProFormGroupProps",
@@ -18350,20 +19971,27 @@
18350
19971
  "ProFormListProps",
18351
19972
  "ProFormMode",
18352
19973
  "ProFormPassword",
19974
+ "ProFormPathValue",
18353
19975
  "ProFormProps",
18354
19976
  "ProFormRadioGroup",
19977
+ "ProFormRecursivePartial",
18355
19978
  "ProFormRequestOption",
18356
19979
  "ProFormSchemaColumn",
19980
+ "ProFormSchemaColumns",
18357
19981
  "ProFormSchemaValueType",
18358
19982
  "ProFormSelect",
18359
19983
  "ProFormSlider",
19984
+ "ProFormStableContextValue",
19985
+ "ProFormStateContextValue",
18360
19986
  "ProFormSwitch",
19987
+ "ProFormSyncToUrl",
18361
19988
  "ProFormText",
18362
19989
  "ProFormTextArea",
18363
19990
  "ProFormUpload",
18364
19991
  "ProFormValidateResult",
18365
19992
  "ProFormValueEnumObj",
18366
19993
  "ProFormValueType",
19994
+ "ProFormValuesPatch",
18367
19995
  "QueryFilter",
18368
19996
  "QueryFilterProps",
18369
19997
  "Rule",
@@ -18404,6 +20032,7 @@
18404
20032
  "FormCoreInstance",
18405
20033
  "FormInstance",
18406
20034
  "FormLayout",
20035
+ "FormListContextValue",
18407
20036
  "FormSize",
18408
20037
  "LabelAlign",
18409
20038
  "ProForm",
@@ -18417,10 +20046,12 @@
18417
20046
  "ProFormDependencyProps",
18418
20047
  "ProFormFieldConvertValueFn",
18419
20048
  "ProFormFieldName",
20049
+ "ProFormFieldOptionValue",
18420
20050
  "ProFormFieldProps",
18421
20051
  "ProFormFieldSet",
18422
20052
  "ProFormFieldSetProps",
18423
20053
  "ProFormFieldTransformFn",
20054
+ "ProFormFieldValueMap",
18424
20055
  "ProFormFormInstance",
18425
20056
  "ProFormGroup",
18426
20057
  "ProFormGroupProps",
@@ -18433,20 +20064,27 @@
18433
20064
  "ProFormListProps",
18434
20065
  "ProFormMode",
18435
20066
  "ProFormPassword",
20067
+ "ProFormPathValue",
18436
20068
  "ProFormProps",
18437
20069
  "ProFormRadioGroup",
20070
+ "ProFormRecursivePartial",
18438
20071
  "ProFormRequestOption",
18439
20072
  "ProFormSchemaColumn",
20073
+ "ProFormSchemaColumns",
18440
20074
  "ProFormSchemaValueType",
18441
20075
  "ProFormSelect",
18442
20076
  "ProFormSlider",
20077
+ "ProFormStableContextValue",
20078
+ "ProFormStateContextValue",
18443
20079
  "ProFormSwitch",
20080
+ "ProFormSyncToUrl",
18444
20081
  "ProFormText",
18445
20082
  "ProFormTextArea",
18446
20083
  "ProFormUpload",
18447
20084
  "ProFormValidateResult",
18448
20085
  "ProFormValueEnumObj",
18449
20086
  "ProFormValueType",
20087
+ "ProFormValuesPatch",
18450
20088
  "QueryFilter",
18451
20089
  "QueryFilterProps",
18452
20090
  "Rule",
@@ -18708,6 +20346,7 @@
18708
20346
  "FormCoreInstance",
18709
20347
  "FormInstance",
18710
20348
  "FormLayout",
20349
+ "FormListContextValue",
18711
20350
  "FormSize",
18712
20351
  "LabelAlign",
18713
20352
  "ProForm",
@@ -18721,10 +20360,12 @@
18721
20360
  "ProFormDependencyProps",
18722
20361
  "ProFormFieldConvertValueFn",
18723
20362
  "ProFormFieldName",
20363
+ "ProFormFieldOptionValue",
18724
20364
  "ProFormFieldProps",
18725
20365
  "ProFormFieldSet",
18726
20366
  "ProFormFieldSetProps",
18727
20367
  "ProFormFieldTransformFn",
20368
+ "ProFormFieldValueMap",
18728
20369
  "ProFormFormInstance",
18729
20370
  "ProFormGroup",
18730
20371
  "ProFormGroupProps",
@@ -18737,20 +20378,27 @@
18737
20378
  "ProFormListProps",
18738
20379
  "ProFormMode",
18739
20380
  "ProFormPassword",
20381
+ "ProFormPathValue",
18740
20382
  "ProFormProps",
18741
20383
  "ProFormRadioGroup",
20384
+ "ProFormRecursivePartial",
18742
20385
  "ProFormRequestOption",
18743
20386
  "ProFormSchemaColumn",
20387
+ "ProFormSchemaColumns",
18744
20388
  "ProFormSchemaValueType",
18745
20389
  "ProFormSelect",
18746
20390
  "ProFormSlider",
20391
+ "ProFormStableContextValue",
20392
+ "ProFormStateContextValue",
18747
20393
  "ProFormSwitch",
20394
+ "ProFormSyncToUrl",
18748
20395
  "ProFormText",
18749
20396
  "ProFormTextArea",
18750
20397
  "ProFormUpload",
18751
20398
  "ProFormValidateResult",
18752
20399
  "ProFormValueEnumObj",
18753
20400
  "ProFormValueType",
20401
+ "ProFormValuesPatch",
18754
20402
  "QueryFilter",
18755
20403
  "QueryFilterProps",
18756
20404
  "Rule",
@@ -18763,7 +20411,7 @@
18763
20411
  "useFormWatch"
18764
20412
  ],
18765
20413
  "searchTags": [],
18766
- "signature": "(config: CreateProFormFieldConfig<FieldProps>): FC<ProFormFieldProps<FieldProps>>",
20414
+ "signature": "(config: CreateProFormFieldConfig<FieldProps>): ProFormFieldComponent<FieldProps>",
18767
20415
  "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';",
18768
20416
  "examples": [
18769
20417
  {
@@ -18820,6 +20468,7 @@
18820
20468
  "FormCoreInstance",
18821
20469
  "FormInstance",
18822
20470
  "FormLayout",
20471
+ "FormListContextValue",
18823
20472
  "FormSize",
18824
20473
  "LabelAlign",
18825
20474
  "ProForm",
@@ -18833,10 +20482,12 @@
18833
20482
  "ProFormDependencyProps",
18834
20483
  "ProFormFieldConvertValueFn",
18835
20484
  "ProFormFieldName",
20485
+ "ProFormFieldOptionValue",
18836
20486
  "ProFormFieldProps",
18837
20487
  "ProFormFieldSet",
18838
20488
  "ProFormFieldSetProps",
18839
20489
  "ProFormFieldTransformFn",
20490
+ "ProFormFieldValueMap",
18840
20491
  "ProFormFormInstance",
18841
20492
  "ProFormGroup",
18842
20493
  "ProFormGroupProps",
@@ -18849,20 +20500,27 @@
18849
20500
  "ProFormListProps",
18850
20501
  "ProFormMode",
18851
20502
  "ProFormPassword",
20503
+ "ProFormPathValue",
18852
20504
  "ProFormProps",
18853
20505
  "ProFormRadioGroup",
20506
+ "ProFormRecursivePartial",
18854
20507
  "ProFormRequestOption",
18855
20508
  "ProFormSchemaColumn",
20509
+ "ProFormSchemaColumns",
18856
20510
  "ProFormSchemaValueType",
18857
20511
  "ProFormSelect",
18858
20512
  "ProFormSlider",
20513
+ "ProFormStableContextValue",
20514
+ "ProFormStateContextValue",
18859
20515
  "ProFormSwitch",
20516
+ "ProFormSyncToUrl",
18860
20517
  "ProFormText",
18861
20518
  "ProFormTextArea",
18862
20519
  "ProFormUpload",
18863
20520
  "ProFormValidateResult",
18864
20521
  "ProFormValueEnumObj",
18865
20522
  "ProFormValueType",
20523
+ "ProFormValuesPatch",
18866
20524
  "QueryFilter",
18867
20525
  "QueryFilterProps",
18868
20526
  "Rule",