@1money/component-ui 0.0.75 → 0.0.77

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 (153) hide show
  1. package/es/components/ProForm/ProForm.d.ts +1 -1
  2. package/es/components/ProForm/ProForm.js +46 -34
  3. package/es/components/ProForm/ProFormDependency.d.ts +2 -1
  4. package/es/components/ProForm/ProFormDependency.js +6 -16
  5. package/es/components/ProForm/ProFormItem.d.ts +7 -2
  6. package/es/components/ProForm/ProFormItem.js +5 -7
  7. package/es/components/ProForm/ProFormList.d.ts +6 -1
  8. package/es/components/ProForm/ProFormList.js +122 -42
  9. package/es/components/ProForm/SchemaForm.d.ts +1 -1
  10. package/es/components/ProForm/SchemaForm.js +8 -5
  11. package/es/components/ProForm/context.d.ts +8 -7
  12. package/es/components/ProForm/context.js +1 -1
  13. package/es/components/ProForm/core/constants.d.ts +3 -1
  14. package/es/components/ProForm/core/constants.js +8 -2
  15. package/es/components/ProForm/core/devWarning.d.ts +3 -0
  16. package/es/components/ProForm/core/devWarning.js +22 -0
  17. package/es/components/ProForm/core/formStore.d.ts +14 -6
  18. package/es/components/ProForm/core/formStore.js +21 -2
  19. package/es/components/ProForm/core/hooks/useForm.d.ts +1 -1
  20. package/es/components/ProForm/core/hooks/useForm.js +275 -107
  21. package/es/components/ProForm/core/hooks/useFormCore.d.ts +2 -2
  22. package/es/components/ProForm/core/hooks/useFormCore.js +121 -121
  23. package/es/components/ProForm/core/interface.d.ts +157 -103
  24. package/es/components/ProForm/core/namePathType.d.ts +25 -0
  25. package/es/components/ProForm/core/namePathType.js +2 -0
  26. package/es/components/ProForm/core/pathUtils.d.ts +5 -3
  27. package/es/components/ProForm/core/pathUtils.js +19 -1
  28. package/es/components/ProForm/core/runRules.d.ts +40 -17
  29. package/es/components/ProForm/core/runRules.js +480 -136
  30. package/es/components/ProForm/core/useFormItem.d.ts +7 -8
  31. package/es/components/ProForm/core/useFormItem.js +52 -82
  32. package/es/components/ProForm/core/validationError.d.ts +13 -0
  33. package/es/components/ProForm/core/validationError.js +29 -0
  34. package/es/components/ProForm/fields/ProFormCheckbox.d.ts +1 -1
  35. package/es/components/ProForm/fields/ProFormCheckboxGroup.d.ts +1 -1
  36. package/es/components/ProForm/fields/ProFormCheckboxGroup.js +19 -5
  37. package/es/components/ProForm/fields/ProFormDatePicker.d.ts +1 -1
  38. package/es/components/ProForm/fields/ProFormDatePicker.js +1 -1
  39. package/es/components/ProForm/fields/ProFormFieldSet.d.ts +7 -2
  40. package/es/components/ProForm/fields/ProFormFieldSet.js +49 -12
  41. package/es/components/ProForm/fields/ProFormPassword.d.ts +1 -1
  42. package/es/components/ProForm/fields/ProFormRadioGroup.d.ts +1 -1
  43. package/es/components/ProForm/fields/ProFormRadioGroup.js +8 -3
  44. package/es/components/ProForm/fields/ProFormSelect.d.ts +1 -1
  45. package/es/components/ProForm/fields/ProFormSelect.js +13 -7
  46. package/es/components/ProForm/fields/ProFormSlider.d.ts +1 -1
  47. package/es/components/ProForm/fields/ProFormSwitch.d.ts +1 -1
  48. package/es/components/ProForm/fields/ProFormText.d.ts +1 -1
  49. package/es/components/ProForm/fields/ProFormTextArea.d.ts +1 -1
  50. package/es/components/ProForm/fields/ProFormUpload.d.ts +1 -1
  51. package/es/components/ProForm/fields/ProFormUpload.js +1 -1
  52. package/es/components/ProForm/fields/createProFormField.d.ts +8 -2
  53. package/es/components/ProForm/fields/createProFormField.js +20 -27
  54. package/es/components/ProForm/hooks/useFieldRequest.d.ts +1 -1
  55. package/es/components/ProForm/hooks/useFieldRequest.js +10 -8
  56. package/es/components/ProForm/hooks/useUrlSync.d.ts +8 -7
  57. package/es/components/ProForm/hooks/useUrlSync.js +1 -1
  58. package/es/components/ProForm/index.d.ts +37 -27
  59. package/es/components/ProForm/index.js +4 -1
  60. package/es/components/ProForm/interface.d.ts +115 -119
  61. package/es/components/ProForm/layouts/DialogForm.d.ts +1 -1
  62. package/es/components/ProForm/layouts/DialogForm.js +1 -1
  63. package/es/components/ProForm/layouts/DrawerForm.d.ts +1 -1
  64. package/es/components/ProForm/layouts/DrawerForm.js +1 -1
  65. package/es/components/ProForm/layouts/QueryFilter.d.ts +1 -1
  66. package/es/components/ProForm/layouts/QueryFilter.js +24 -16
  67. package/es/components/ProForm/layouts/useOverlayForm.d.ts +2 -2
  68. package/es/components/ProForm/layouts/useOverlayForm.js +1 -1
  69. package/es/components/ProForm/utils.d.ts +15 -7
  70. package/es/components/ProForm/utils.js +51 -3
  71. package/es/components/Table/core/useTableSetup.js +2 -2
  72. package/es/components/Table/interface.d.ts +1 -1
  73. package/es/index.css +1 -1
  74. package/es/index.d.ts +1 -1
  75. package/es/index.js +1 -1
  76. package/lib/components/ProForm/ProForm.d.ts +1 -1
  77. package/lib/components/ProForm/ProForm.js +45 -33
  78. package/lib/components/ProForm/ProFormDependency.d.ts +2 -1
  79. package/lib/components/ProForm/ProFormDependency.js +5 -15
  80. package/lib/components/ProForm/ProFormItem.d.ts +7 -2
  81. package/lib/components/ProForm/ProFormItem.js +5 -7
  82. package/lib/components/ProForm/ProFormList.d.ts +6 -1
  83. package/lib/components/ProForm/ProFormList.js +120 -40
  84. package/lib/components/ProForm/SchemaForm.d.ts +1 -1
  85. package/lib/components/ProForm/SchemaForm.js +8 -5
  86. package/lib/components/ProForm/context.d.ts +8 -7
  87. package/lib/components/ProForm/context.js +1 -1
  88. package/lib/components/ProForm/core/constants.d.ts +3 -1
  89. package/lib/components/ProForm/core/constants.js +9 -3
  90. package/lib/components/ProForm/core/devWarning.d.ts +3 -0
  91. package/lib/components/ProForm/core/devWarning.js +29 -0
  92. package/lib/components/ProForm/core/formStore.d.ts +14 -6
  93. package/lib/components/ProForm/core/formStore.js +23 -2
  94. package/lib/components/ProForm/core/hooks/useForm.d.ts +1 -1
  95. package/lib/components/ProForm/core/hooks/useForm.js +271 -103
  96. package/lib/components/ProForm/core/hooks/useFormCore.d.ts +2 -2
  97. package/lib/components/ProForm/core/hooks/useFormCore.js +119 -119
  98. package/lib/components/ProForm/core/interface.d.ts +157 -103
  99. package/lib/components/ProForm/core/namePathType.d.ts +25 -0
  100. package/lib/components/ProForm/core/namePathType.js +6 -0
  101. package/lib/components/ProForm/core/pathUtils.d.ts +5 -3
  102. package/lib/components/ProForm/core/pathUtils.js +20 -1
  103. package/lib/components/ProForm/core/runRules.d.ts +40 -17
  104. package/lib/components/ProForm/core/runRules.js +483 -137
  105. package/lib/components/ProForm/core/useFormItem.d.ts +7 -8
  106. package/lib/components/ProForm/core/useFormItem.js +54 -84
  107. package/lib/components/ProForm/core/validationError.d.ts +13 -0
  108. package/lib/components/ProForm/core/validationError.js +36 -0
  109. package/lib/components/ProForm/fields/ProFormCheckbox.d.ts +1 -1
  110. package/lib/components/ProForm/fields/ProFormCheckboxGroup.d.ts +1 -1
  111. package/lib/components/ProForm/fields/ProFormCheckboxGroup.js +18 -4
  112. package/lib/components/ProForm/fields/ProFormDatePicker.d.ts +1 -1
  113. package/lib/components/ProForm/fields/ProFormDatePicker.js +1 -1
  114. package/lib/components/ProForm/fields/ProFormFieldSet.d.ts +7 -2
  115. package/lib/components/ProForm/fields/ProFormFieldSet.js +49 -12
  116. package/lib/components/ProForm/fields/ProFormPassword.d.ts +1 -1
  117. package/lib/components/ProForm/fields/ProFormRadioGroup.d.ts +1 -1
  118. package/lib/components/ProForm/fields/ProFormRadioGroup.js +7 -2
  119. package/lib/components/ProForm/fields/ProFormSelect.d.ts +1 -1
  120. package/lib/components/ProForm/fields/ProFormSelect.js +13 -7
  121. package/lib/components/ProForm/fields/ProFormSlider.d.ts +1 -1
  122. package/lib/components/ProForm/fields/ProFormSwitch.d.ts +1 -1
  123. package/lib/components/ProForm/fields/ProFormText.d.ts +1 -1
  124. package/lib/components/ProForm/fields/ProFormTextArea.d.ts +1 -1
  125. package/lib/components/ProForm/fields/ProFormUpload.d.ts +1 -1
  126. package/lib/components/ProForm/fields/ProFormUpload.js +1 -1
  127. package/lib/components/ProForm/fields/createProFormField.d.ts +8 -2
  128. package/lib/components/ProForm/fields/createProFormField.js +20 -27
  129. package/lib/components/ProForm/hooks/useFieldRequest.d.ts +1 -1
  130. package/lib/components/ProForm/hooks/useFieldRequest.js +10 -8
  131. package/lib/components/ProForm/hooks/useUrlSync.d.ts +8 -7
  132. package/lib/components/ProForm/hooks/useUrlSync.js +1 -1
  133. package/lib/components/ProForm/index.d.ts +37 -27
  134. package/lib/components/ProForm/index.js +10 -1
  135. package/lib/components/ProForm/interface.d.ts +115 -119
  136. package/lib/components/ProForm/layouts/DialogForm.d.ts +1 -1
  137. package/lib/components/ProForm/layouts/DialogForm.js +1 -1
  138. package/lib/components/ProForm/layouts/DrawerForm.d.ts +1 -1
  139. package/lib/components/ProForm/layouts/DrawerForm.js +1 -1
  140. package/lib/components/ProForm/layouts/QueryFilter.d.ts +1 -1
  141. package/lib/components/ProForm/layouts/QueryFilter.js +24 -16
  142. package/lib/components/ProForm/layouts/useOverlayForm.d.ts +2 -2
  143. package/lib/components/ProForm/layouts/useOverlayForm.js +1 -1
  144. package/lib/components/ProForm/utils.d.ts +15 -7
  145. package/lib/components/ProForm/utils.js +52 -3
  146. package/lib/components/Table/core/useTableSetup.js +2 -2
  147. package/lib/components/Table/interface.d.ts +1 -1
  148. package/lib/index.css +1 -1
  149. package/lib/index.d.ts +1 -1
  150. package/lib/index.js +1 -1
  151. package/package.json +1 -1
  152. package/scripts/mcp-server/examples.generated.json +95 -53
  153. package/scripts/mcp-server/index.generated.json +1715 -185
@@ -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",
@@ -2450,7 +2460,7 @@
2450
2460
  }
2451
2461
  ],
2452
2462
  "extends": [
2453
- "Omit<ProFormProps<Values>, 'title'>"
2463
+ "Omit<ProFormProps<Values, Params>, 'title'>"
2454
2464
  ],
2455
2465
  "relatedSymbols": [
2456
2466
  "CreateProFormFieldConfig",
@@ -2460,6 +2470,7 @@
2460
2470
  "FormCoreInstance",
2461
2471
  "FormInstance",
2462
2472
  "FormLayout",
2473
+ "FormListContextValue",
2463
2474
  "FormSize",
2464
2475
  "LabelAlign",
2465
2476
  "ProForm",
@@ -2473,10 +2484,12 @@
2473
2484
  "ProFormDependencyProps",
2474
2485
  "ProFormFieldConvertValueFn",
2475
2486
  "ProFormFieldName",
2487
+ "ProFormFieldOptionValue",
2476
2488
  "ProFormFieldProps",
2477
2489
  "ProFormFieldSet",
2478
2490
  "ProFormFieldSetProps",
2479
2491
  "ProFormFieldTransformFn",
2492
+ "ProFormFieldValueMap",
2480
2493
  "ProFormFormInstance",
2481
2494
  "ProFormGroup",
2482
2495
  "ProFormGroupProps",
@@ -2489,20 +2502,27 @@
2489
2502
  "ProFormListProps",
2490
2503
  "ProFormMode",
2491
2504
  "ProFormPassword",
2505
+ "ProFormPathValue",
2492
2506
  "ProFormProps",
2493
2507
  "ProFormRadioGroup",
2508
+ "ProFormRecursivePartial",
2494
2509
  "ProFormRequestOption",
2495
2510
  "ProFormSchemaColumn",
2511
+ "ProFormSchemaColumns",
2496
2512
  "ProFormSchemaValueType",
2497
2513
  "ProFormSelect",
2498
2514
  "ProFormSlider",
2515
+ "ProFormStableContextValue",
2516
+ "ProFormStateContextValue",
2499
2517
  "ProFormSwitch",
2518
+ "ProFormSyncToUrl",
2500
2519
  "ProFormText",
2501
2520
  "ProFormTextArea",
2502
2521
  "ProFormUpload",
2503
2522
  "ProFormValidateResult",
2504
2523
  "ProFormValueEnumObj",
2505
2524
  "ProFormValueType",
2525
+ "ProFormValuesPatch",
2506
2526
  "QueryFilter",
2507
2527
  "QueryFilterProps",
2508
2528
  "Rule",
@@ -2542,6 +2562,7 @@
2542
2562
  "FormCoreInstance",
2543
2563
  "FormInstance",
2544
2564
  "FormLayout",
2565
+ "FormListContextValue",
2545
2566
  "FormSize",
2546
2567
  "LabelAlign",
2547
2568
  "ProForm",
@@ -2555,10 +2576,12 @@
2555
2576
  "ProFormDependencyProps",
2556
2577
  "ProFormFieldConvertValueFn",
2557
2578
  "ProFormFieldName",
2579
+ "ProFormFieldOptionValue",
2558
2580
  "ProFormFieldProps",
2559
2581
  "ProFormFieldSet",
2560
2582
  "ProFormFieldSetProps",
2561
2583
  "ProFormFieldTransformFn",
2584
+ "ProFormFieldValueMap",
2562
2585
  "ProFormFormInstance",
2563
2586
  "ProFormGroup",
2564
2587
  "ProFormGroupProps",
@@ -2571,20 +2594,27 @@
2571
2594
  "ProFormListProps",
2572
2595
  "ProFormMode",
2573
2596
  "ProFormPassword",
2597
+ "ProFormPathValue",
2574
2598
  "ProFormProps",
2575
2599
  "ProFormRadioGroup",
2600
+ "ProFormRecursivePartial",
2576
2601
  "ProFormRequestOption",
2577
2602
  "ProFormSchemaColumn",
2603
+ "ProFormSchemaColumns",
2578
2604
  "ProFormSchemaValueType",
2579
2605
  "ProFormSelect",
2580
2606
  "ProFormSlider",
2607
+ "ProFormStableContextValue",
2608
+ "ProFormStateContextValue",
2581
2609
  "ProFormSwitch",
2610
+ "ProFormSyncToUrl",
2582
2611
  "ProFormText",
2583
2612
  "ProFormTextArea",
2584
2613
  "ProFormUpload",
2585
2614
  "ProFormValidateResult",
2586
2615
  "ProFormValueEnumObj",
2587
2616
  "ProFormValueType",
2617
+ "ProFormValuesPatch",
2588
2618
  "QueryFilter",
2589
2619
  "QueryFilterProps",
2590
2620
  "Rule",
@@ -2598,7 +2628,7 @@
2598
2628
  "useFormWatch"
2599
2629
  ],
2600
2630
  "searchTags": [],
2601
- "typeText": "interface DialogFormProps extends Omit<ProFormProps<Values>, 'title'> { ... }",
2631
+ "typeText": "interface DialogFormProps extends Omit<ProFormProps<Values, Params>, 'title'> { ... }",
2602
2632
  "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
2633
  "examples": [
2604
2634
  {
@@ -3199,7 +3229,7 @@
3199
3229
  }
3200
3230
  ],
3201
3231
  "extends": [
3202
- "Omit<ProFormProps<Values>, 'title'>"
3232
+ "Omit<ProFormProps<Values, Params>, 'title'>"
3203
3233
  ],
3204
3234
  "relatedSymbols": [
3205
3235
  "CreateProFormFieldConfig",
@@ -3209,6 +3239,7 @@
3209
3239
  "FormCoreInstance",
3210
3240
  "FormInstance",
3211
3241
  "FormLayout",
3242
+ "FormListContextValue",
3212
3243
  "FormSize",
3213
3244
  "LabelAlign",
3214
3245
  "ProForm",
@@ -3222,10 +3253,12 @@
3222
3253
  "ProFormDependencyProps",
3223
3254
  "ProFormFieldConvertValueFn",
3224
3255
  "ProFormFieldName",
3256
+ "ProFormFieldOptionValue",
3225
3257
  "ProFormFieldProps",
3226
3258
  "ProFormFieldSet",
3227
3259
  "ProFormFieldSetProps",
3228
3260
  "ProFormFieldTransformFn",
3261
+ "ProFormFieldValueMap",
3229
3262
  "ProFormFormInstance",
3230
3263
  "ProFormGroup",
3231
3264
  "ProFormGroupProps",
@@ -3238,20 +3271,27 @@
3238
3271
  "ProFormListProps",
3239
3272
  "ProFormMode",
3240
3273
  "ProFormPassword",
3274
+ "ProFormPathValue",
3241
3275
  "ProFormProps",
3242
3276
  "ProFormRadioGroup",
3277
+ "ProFormRecursivePartial",
3243
3278
  "ProFormRequestOption",
3244
3279
  "ProFormSchemaColumn",
3280
+ "ProFormSchemaColumns",
3245
3281
  "ProFormSchemaValueType",
3246
3282
  "ProFormSelect",
3247
3283
  "ProFormSlider",
3284
+ "ProFormStableContextValue",
3285
+ "ProFormStateContextValue",
3248
3286
  "ProFormSwitch",
3287
+ "ProFormSyncToUrl",
3249
3288
  "ProFormText",
3250
3289
  "ProFormTextArea",
3251
3290
  "ProFormUpload",
3252
3291
  "ProFormValidateResult",
3253
3292
  "ProFormValueEnumObj",
3254
3293
  "ProFormValueType",
3294
+ "ProFormValuesPatch",
3255
3295
  "QueryFilter",
3256
3296
  "QueryFilterProps",
3257
3297
  "Rule",
@@ -3291,6 +3331,7 @@
3291
3331
  "FormCoreInstance",
3292
3332
  "FormInstance",
3293
3333
  "FormLayout",
3334
+ "FormListContextValue",
3294
3335
  "FormSize",
3295
3336
  "LabelAlign",
3296
3337
  "ProForm",
@@ -3304,10 +3345,12 @@
3304
3345
  "ProFormDependencyProps",
3305
3346
  "ProFormFieldConvertValueFn",
3306
3347
  "ProFormFieldName",
3348
+ "ProFormFieldOptionValue",
3307
3349
  "ProFormFieldProps",
3308
3350
  "ProFormFieldSet",
3309
3351
  "ProFormFieldSetProps",
3310
3352
  "ProFormFieldTransformFn",
3353
+ "ProFormFieldValueMap",
3311
3354
  "ProFormFormInstance",
3312
3355
  "ProFormGroup",
3313
3356
  "ProFormGroupProps",
@@ -3320,20 +3363,27 @@
3320
3363
  "ProFormListProps",
3321
3364
  "ProFormMode",
3322
3365
  "ProFormPassword",
3366
+ "ProFormPathValue",
3323
3367
  "ProFormProps",
3324
3368
  "ProFormRadioGroup",
3369
+ "ProFormRecursivePartial",
3325
3370
  "ProFormRequestOption",
3326
3371
  "ProFormSchemaColumn",
3372
+ "ProFormSchemaColumns",
3327
3373
  "ProFormSchemaValueType",
3328
3374
  "ProFormSelect",
3329
3375
  "ProFormSlider",
3376
+ "ProFormStableContextValue",
3377
+ "ProFormStateContextValue",
3330
3378
  "ProFormSwitch",
3379
+ "ProFormSyncToUrl",
3331
3380
  "ProFormText",
3332
3381
  "ProFormTextArea",
3333
3382
  "ProFormUpload",
3334
3383
  "ProFormValidateResult",
3335
3384
  "ProFormValueEnumObj",
3336
3385
  "ProFormValueType",
3386
+ "ProFormValuesPatch",
3337
3387
  "QueryFilter",
3338
3388
  "QueryFilterProps",
3339
3389
  "Rule",
@@ -3347,7 +3397,7 @@
3347
3397
  "useFormWatch"
3348
3398
  ],
3349
3399
  "searchTags": [],
3350
- "typeText": "interface DrawerFormProps extends Omit<ProFormProps<Values>, 'title'> { ... }",
3400
+ "typeText": "interface DrawerFormProps extends Omit<ProFormProps<Values, Params>, 'title'> { ... }",
3351
3401
  "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
3402
  "examples": [
3353
3403
  {
@@ -3884,6 +3934,7 @@
3884
3934
  "DrawerFormProps",
3885
3935
  "FormInstance",
3886
3936
  "FormLayout",
3937
+ "FormListContextValue",
3887
3938
  "FormSize",
3888
3939
  "LabelAlign",
3889
3940
  "ProForm",
@@ -3897,10 +3948,12 @@
3897
3948
  "ProFormDependencyProps",
3898
3949
  "ProFormFieldConvertValueFn",
3899
3950
  "ProFormFieldName",
3951
+ "ProFormFieldOptionValue",
3900
3952
  "ProFormFieldProps",
3901
3953
  "ProFormFieldSet",
3902
3954
  "ProFormFieldSetProps",
3903
3955
  "ProFormFieldTransformFn",
3956
+ "ProFormFieldValueMap",
3904
3957
  "ProFormFormInstance",
3905
3958
  "ProFormGroup",
3906
3959
  "ProFormGroupProps",
@@ -3913,20 +3966,27 @@
3913
3966
  "ProFormListProps",
3914
3967
  "ProFormMode",
3915
3968
  "ProFormPassword",
3969
+ "ProFormPathValue",
3916
3970
  "ProFormProps",
3917
3971
  "ProFormRadioGroup",
3972
+ "ProFormRecursivePartial",
3918
3973
  "ProFormRequestOption",
3919
3974
  "ProFormSchemaColumn",
3975
+ "ProFormSchemaColumns",
3920
3976
  "ProFormSchemaValueType",
3921
3977
  "ProFormSelect",
3922
3978
  "ProFormSlider",
3979
+ "ProFormStableContextValue",
3980
+ "ProFormStateContextValue",
3923
3981
  "ProFormSwitch",
3982
+ "ProFormSyncToUrl",
3924
3983
  "ProFormText",
3925
3984
  "ProFormTextArea",
3926
3985
  "ProFormUpload",
3927
3986
  "ProFormValidateResult",
3928
3987
  "ProFormValueEnumObj",
3929
3988
  "ProFormValueType",
3989
+ "ProFormValuesPatch",
3930
3990
  "QueryFilter",
3931
3991
  "QueryFilterProps",
3932
3992
  "Rule",
@@ -3967,6 +4027,7 @@
3967
4027
  "DrawerFormProps",
3968
4028
  "FormCoreInstance",
3969
4029
  "FormLayout",
4030
+ "FormListContextValue",
3970
4031
  "FormSize",
3971
4032
  "LabelAlign",
3972
4033
  "ProForm",
@@ -3980,10 +4041,12 @@
3980
4041
  "ProFormDependencyProps",
3981
4042
  "ProFormFieldConvertValueFn",
3982
4043
  "ProFormFieldName",
4044
+ "ProFormFieldOptionValue",
3983
4045
  "ProFormFieldProps",
3984
4046
  "ProFormFieldSet",
3985
4047
  "ProFormFieldSetProps",
3986
4048
  "ProFormFieldTransformFn",
4049
+ "ProFormFieldValueMap",
3987
4050
  "ProFormFormInstance",
3988
4051
  "ProFormGroup",
3989
4052
  "ProFormGroupProps",
@@ -3996,20 +4059,27 @@
3996
4059
  "ProFormListProps",
3997
4060
  "ProFormMode",
3998
4061
  "ProFormPassword",
4062
+ "ProFormPathValue",
3999
4063
  "ProFormProps",
4000
4064
  "ProFormRadioGroup",
4065
+ "ProFormRecursivePartial",
4001
4066
  "ProFormRequestOption",
4002
4067
  "ProFormSchemaColumn",
4068
+ "ProFormSchemaColumns",
4003
4069
  "ProFormSchemaValueType",
4004
4070
  "ProFormSelect",
4005
4071
  "ProFormSlider",
4072
+ "ProFormStableContextValue",
4073
+ "ProFormStateContextValue",
4006
4074
  "ProFormSwitch",
4075
+ "ProFormSyncToUrl",
4007
4076
  "ProFormText",
4008
4077
  "ProFormTextArea",
4009
4078
  "ProFormUpload",
4010
4079
  "ProFormValidateResult",
4011
4080
  "ProFormValueEnumObj",
4012
4081
  "ProFormValueType",
4082
+ "ProFormValuesPatch",
4013
4083
  "QueryFilter",
4014
4084
  "QueryFilterProps",
4015
4085
  "Rule",
@@ -4050,6 +4120,7 @@
4050
4120
  "DrawerFormProps",
4051
4121
  "FormCoreInstance",
4052
4122
  "FormInstance",
4123
+ "FormListContextValue",
4053
4124
  "FormSize",
4054
4125
  "LabelAlign",
4055
4126
  "ProForm",
@@ -4063,10 +4134,12 @@
4063
4134
  "ProFormDependencyProps",
4064
4135
  "ProFormFieldConvertValueFn",
4065
4136
  "ProFormFieldName",
4137
+ "ProFormFieldOptionValue",
4066
4138
  "ProFormFieldProps",
4067
4139
  "ProFormFieldSet",
4068
4140
  "ProFormFieldSetProps",
4069
4141
  "ProFormFieldTransformFn",
4142
+ "ProFormFieldValueMap",
4070
4143
  "ProFormFormInstance",
4071
4144
  "ProFormGroup",
4072
4145
  "ProFormGroupProps",
@@ -4079,20 +4152,27 @@
4079
4152
  "ProFormListProps",
4080
4153
  "ProFormMode",
4081
4154
  "ProFormPassword",
4155
+ "ProFormPathValue",
4082
4156
  "ProFormProps",
4083
4157
  "ProFormRadioGroup",
4158
+ "ProFormRecursivePartial",
4084
4159
  "ProFormRequestOption",
4085
4160
  "ProFormSchemaColumn",
4161
+ "ProFormSchemaColumns",
4086
4162
  "ProFormSchemaValueType",
4087
4163
  "ProFormSelect",
4088
4164
  "ProFormSlider",
4165
+ "ProFormStableContextValue",
4166
+ "ProFormStateContextValue",
4089
4167
  "ProFormSwitch",
4168
+ "ProFormSyncToUrl",
4090
4169
  "ProFormText",
4091
4170
  "ProFormTextArea",
4092
4171
  "ProFormUpload",
4093
4172
  "ProFormValidateResult",
4094
4173
  "ProFormValueEnumObj",
4095
4174
  "ProFormValueType",
4175
+ "ProFormValuesPatch",
4096
4176
  "QueryFilter",
4097
4177
  "QueryFilterProps",
4098
4178
  "Rule",
@@ -4115,6 +4195,99 @@
4115
4195
  }
4116
4196
  ]
4117
4197
  },
4198
+ {
4199
+ "name": "FormListContextValue",
4200
+ "kind": "type",
4201
+ "category": "forms",
4202
+ "summary": "",
4203
+ "importPath": "@1money/component-ui",
4204
+ "subpathImport": "@1money/component-ui/ProForm",
4205
+ "sourceFile": "src/components/ProForm/interface.ts",
4206
+ "props": [],
4207
+ "extends": [],
4208
+ "relatedSymbols": [
4209
+ "CreateProFormFieldConfig",
4210
+ "DialogForm",
4211
+ "DialogFormProps",
4212
+ "DrawerForm",
4213
+ "DrawerFormProps",
4214
+ "FormCoreInstance",
4215
+ "FormInstance",
4216
+ "FormLayout",
4217
+ "FormSize",
4218
+ "LabelAlign",
4219
+ "ProForm",
4220
+ "ProFormCheckbox",
4221
+ "ProFormCheckboxGroup",
4222
+ "ProFormColProps",
4223
+ "ProFormContextValue",
4224
+ "ProFormDateFormatter",
4225
+ "ProFormDatePicker",
4226
+ "ProFormDependency",
4227
+ "ProFormDependencyProps",
4228
+ "ProFormFieldConvertValueFn",
4229
+ "ProFormFieldName",
4230
+ "ProFormFieldOptionValue",
4231
+ "ProFormFieldProps",
4232
+ "ProFormFieldSet",
4233
+ "ProFormFieldSetProps",
4234
+ "ProFormFieldTransformFn",
4235
+ "ProFormFieldValueMap",
4236
+ "ProFormFormInstance",
4237
+ "ProFormGroup",
4238
+ "ProFormGroupProps",
4239
+ "ProFormItem",
4240
+ "ProFormItemProps",
4241
+ "ProFormItemSharedProps",
4242
+ "ProFormLayoutConfig",
4243
+ "ProFormList",
4244
+ "ProFormListAction",
4245
+ "ProFormListProps",
4246
+ "ProFormMode",
4247
+ "ProFormPassword",
4248
+ "ProFormPathValue",
4249
+ "ProFormProps",
4250
+ "ProFormRadioGroup",
4251
+ "ProFormRecursivePartial",
4252
+ "ProFormRequestOption",
4253
+ "ProFormSchemaColumn",
4254
+ "ProFormSchemaColumns",
4255
+ "ProFormSchemaValueType",
4256
+ "ProFormSelect",
4257
+ "ProFormSlider",
4258
+ "ProFormStableContextValue",
4259
+ "ProFormStateContextValue",
4260
+ "ProFormSwitch",
4261
+ "ProFormSyncToUrl",
4262
+ "ProFormText",
4263
+ "ProFormTextArea",
4264
+ "ProFormUpload",
4265
+ "ProFormValidateResult",
4266
+ "ProFormValueEnumObj",
4267
+ "ProFormValueType",
4268
+ "ProFormValuesPatch",
4269
+ "QueryFilter",
4270
+ "QueryFilterProps",
4271
+ "Rule",
4272
+ "SchemaForm",
4273
+ "SchemaFormProps",
4274
+ "SubmitterProps",
4275
+ "UseFormWatch",
4276
+ "ValidateStatus",
4277
+ "ValidateTrigger",
4278
+ "createProFormField",
4279
+ "useFormWatch"
4280
+ ],
4281
+ "searchTags": [],
4282
+ "typeText": "interface FormListContextValue { ... }",
4283
+ "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';",
4284
+ "examples": [
4285
+ {
4286
+ "hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
4287
+ "source": "canonical"
4288
+ }
4289
+ ]
4290
+ },
4118
4291
  {
4119
4292
  "name": "FormSize",
4120
4293
  "kind": "type",
@@ -4134,6 +4307,7 @@
4134
4307
  "FormCoreInstance",
4135
4308
  "FormInstance",
4136
4309
  "FormLayout",
4310
+ "FormListContextValue",
4137
4311
  "LabelAlign",
4138
4312
  "ProForm",
4139
4313
  "ProFormCheckbox",
@@ -4146,10 +4320,12 @@
4146
4320
  "ProFormDependencyProps",
4147
4321
  "ProFormFieldConvertValueFn",
4148
4322
  "ProFormFieldName",
4323
+ "ProFormFieldOptionValue",
4149
4324
  "ProFormFieldProps",
4150
4325
  "ProFormFieldSet",
4151
4326
  "ProFormFieldSetProps",
4152
4327
  "ProFormFieldTransformFn",
4328
+ "ProFormFieldValueMap",
4153
4329
  "ProFormFormInstance",
4154
4330
  "ProFormGroup",
4155
4331
  "ProFormGroupProps",
@@ -4162,20 +4338,27 @@
4162
4338
  "ProFormListProps",
4163
4339
  "ProFormMode",
4164
4340
  "ProFormPassword",
4341
+ "ProFormPathValue",
4165
4342
  "ProFormProps",
4166
4343
  "ProFormRadioGroup",
4344
+ "ProFormRecursivePartial",
4167
4345
  "ProFormRequestOption",
4168
4346
  "ProFormSchemaColumn",
4347
+ "ProFormSchemaColumns",
4169
4348
  "ProFormSchemaValueType",
4170
4349
  "ProFormSelect",
4171
4350
  "ProFormSlider",
4351
+ "ProFormStableContextValue",
4352
+ "ProFormStateContextValue",
4172
4353
  "ProFormSwitch",
4354
+ "ProFormSyncToUrl",
4173
4355
  "ProFormText",
4174
4356
  "ProFormTextArea",
4175
4357
  "ProFormUpload",
4176
4358
  "ProFormValidateResult",
4177
4359
  "ProFormValueEnumObj",
4178
4360
  "ProFormValueType",
4361
+ "ProFormValuesPatch",
4179
4362
  "QueryFilter",
4180
4363
  "QueryFilterProps",
4181
4364
  "Rule",
@@ -5219,6 +5402,7 @@
5219
5402
  "FormCoreInstance",
5220
5403
  "FormInstance",
5221
5404
  "FormLayout",
5405
+ "FormListContextValue",
5222
5406
  "FormSize",
5223
5407
  "ProForm",
5224
5408
  "ProFormCheckbox",
@@ -5231,10 +5415,12 @@
5231
5415
  "ProFormDependencyProps",
5232
5416
  "ProFormFieldConvertValueFn",
5233
5417
  "ProFormFieldName",
5418
+ "ProFormFieldOptionValue",
5234
5419
  "ProFormFieldProps",
5235
5420
  "ProFormFieldSet",
5236
5421
  "ProFormFieldSetProps",
5237
5422
  "ProFormFieldTransformFn",
5423
+ "ProFormFieldValueMap",
5238
5424
  "ProFormFormInstance",
5239
5425
  "ProFormGroup",
5240
5426
  "ProFormGroupProps",
@@ -5247,20 +5433,27 @@
5247
5433
  "ProFormListProps",
5248
5434
  "ProFormMode",
5249
5435
  "ProFormPassword",
5436
+ "ProFormPathValue",
5250
5437
  "ProFormProps",
5251
5438
  "ProFormRadioGroup",
5439
+ "ProFormRecursivePartial",
5252
5440
  "ProFormRequestOption",
5253
5441
  "ProFormSchemaColumn",
5442
+ "ProFormSchemaColumns",
5254
5443
  "ProFormSchemaValueType",
5255
5444
  "ProFormSelect",
5256
5445
  "ProFormSlider",
5446
+ "ProFormStableContextValue",
5447
+ "ProFormStateContextValue",
5257
5448
  "ProFormSwitch",
5449
+ "ProFormSyncToUrl",
5258
5450
  "ProFormText",
5259
5451
  "ProFormTextArea",
5260
5452
  "ProFormUpload",
5261
5453
  "ProFormValidateResult",
5262
5454
  "ProFormValueEnumObj",
5263
5455
  "ProFormValueType",
5456
+ "ProFormValuesPatch",
5264
5457
  "QueryFilter",
5265
5458
  "QueryFilterProps",
5266
5459
  "Rule",
@@ -7000,7 +7193,7 @@
7000
7193
  },
7001
7194
  {
7002
7195
  "name": "initialValues",
7003
- "type": "Partial<Values>",
7196
+ "type": "ProFormRecursivePartial<Values>",
7004
7197
  "optional": true,
7005
7198
  "default": null,
7006
7199
  "description": "",
@@ -7016,7 +7209,7 @@
7016
7209
  },
7017
7210
  {
7018
7211
  "name": "onFinishFailed",
7019
- "type": "(errorInfo: {\n values: Values;\n errors: Record<string, string>;\n }) => void",
7212
+ "type": "(errorInfo: {\n values: Values;\n errors: Record<string, ReactNode>;\n }) => void",
7020
7213
  "optional": true,
7021
7214
  "default": null,
7022
7215
  "description": "",
@@ -7024,7 +7217,7 @@
7024
7217
  },
7025
7218
  {
7026
7219
  "name": "onValuesChange",
7027
- "type": "(\n changedValues: Partial<Values>,\n allValues: Values,\n ) => void",
7220
+ "type": "(\n changedValues: ProFormValuesPatch<Values>,\n allValues: Values,\n ) => void",
7028
7221
  "optional": true,
7029
7222
  "default": null,
7030
7223
  "description": "",
@@ -7056,7 +7249,7 @@
7056
7249
  },
7057
7250
  {
7058
7251
  "name": "syncToUrl",
7059
- "type": "ProFormSyncToUrl",
7252
+ "type": "ProFormSyncToUrl<Values>",
7060
7253
  "optional": true,
7061
7254
  "default": null,
7062
7255
  "description": "Sync form values to the URL query string; the function form maps values both ways.",
@@ -7072,7 +7265,7 @@
7072
7265
  },
7073
7266
  {
7074
7267
  "name": "extraUrlParams",
7075
- "type": "Record<string, unknown>",
7268
+ "type": "Record<string, any>",
7076
7269
  "optional": true,
7077
7270
  "default": null,
7078
7271
  "description": "Extra params always written to the URL alongside the form values.",
@@ -7126,25 +7319,9 @@
7126
7319
  "description": "",
7127
7320
  "inheritedFrom": null
7128
7321
  },
7129
- {
7130
- "name": "colon",
7131
- "type": "boolean",
7132
- "optional": true,
7133
- "default": null,
7134
- "description": "",
7135
- "inheritedFrom": null
7136
- },
7137
- {
7138
- "name": "requiredMark",
7139
- "type": "boolean",
7140
- "optional": true,
7141
- "default": null,
7142
- "description": "",
7143
- "inheritedFrom": null
7144
- },
7145
7322
  {
7146
7323
  "name": "validateTrigger",
7147
- "type": "ValidateTrigger",
7324
+ "type": "ValidateTriggerProp",
7148
7325
  "optional": true,
7149
7326
  "default": null,
7150
7327
  "description": "",
@@ -7158,14 +7335,6 @@
7158
7335
  "description": "",
7159
7336
  "inheritedFrom": null
7160
7337
  },
7161
- {
7162
- "name": "readonly",
7163
- "type": "boolean",
7164
- "optional": true,
7165
- "default": null,
7166
- "description": "",
7167
- "inheritedFrom": null
7168
- },
7169
7338
  {
7170
7339
  "name": "mode",
7171
7340
  "type": "ProFormMode",
@@ -7208,7 +7377,7 @@
7208
7377
  },
7209
7378
  {
7210
7379
  "name": "request",
7211
- "type": "(params?: unknown) => Promise<Partial<Values>>",
7380
+ "type": "(params?: Params) => Promise<ProFormValuesPatch<Values>>",
7212
7381
  "optional": true,
7213
7382
  "default": null,
7214
7383
  "description": "",
@@ -7216,7 +7385,7 @@
7216
7385
  },
7217
7386
  {
7218
7387
  "name": "params",
7219
- "type": "unknown",
7388
+ "type": "Params",
7220
7389
  "optional": true,
7221
7390
  "default": null,
7222
7391
  "description": "",
@@ -7248,7 +7417,7 @@
7248
7417
  },
7249
7418
  {
7250
7419
  "name": "fieldProps",
7251
- "type": "Record<string, unknown>",
7420
+ "type": "Record<string, any>",
7252
7421
  "optional": true,
7253
7422
  "default": null,
7254
7423
  "description": "Defaults injected into every ProFormXxx field's component props (field-level wins)",
@@ -7275,6 +7444,7 @@
7275
7444
  "FormCoreInstance",
7276
7445
  "FormInstance",
7277
7446
  "FormLayout",
7447
+ "FormListContextValue",
7278
7448
  "FormSize",
7279
7449
  "LabelAlign",
7280
7450
  "ProFormCheckbox",
@@ -7287,10 +7457,12 @@
7287
7457
  "ProFormDependencyProps",
7288
7458
  "ProFormFieldConvertValueFn",
7289
7459
  "ProFormFieldName",
7460
+ "ProFormFieldOptionValue",
7290
7461
  "ProFormFieldProps",
7291
7462
  "ProFormFieldSet",
7292
7463
  "ProFormFieldSetProps",
7293
7464
  "ProFormFieldTransformFn",
7465
+ "ProFormFieldValueMap",
7294
7466
  "ProFormFormInstance",
7295
7467
  "ProFormGroup",
7296
7468
  "ProFormGroupProps",
@@ -7303,20 +7475,27 @@
7303
7475
  "ProFormListProps",
7304
7476
  "ProFormMode",
7305
7477
  "ProFormPassword",
7478
+ "ProFormPathValue",
7306
7479
  "ProFormProps",
7307
7480
  "ProFormRadioGroup",
7481
+ "ProFormRecursivePartial",
7308
7482
  "ProFormRequestOption",
7309
7483
  "ProFormSchemaColumn",
7484
+ "ProFormSchemaColumns",
7310
7485
  "ProFormSchemaValueType",
7311
7486
  "ProFormSelect",
7312
7487
  "ProFormSlider",
7488
+ "ProFormStableContextValue",
7489
+ "ProFormStateContextValue",
7313
7490
  "ProFormSwitch",
7491
+ "ProFormSyncToUrl",
7314
7492
  "ProFormText",
7315
7493
  "ProFormTextArea",
7316
7494
  "ProFormUpload",
7317
7495
  "ProFormValidateResult",
7318
7496
  "ProFormValueEnumObj",
7319
7497
  "ProFormValueType",
7498
+ "ProFormValuesPatch",
7320
7499
  "QueryFilter",
7321
7500
  "QueryFilterProps",
7322
7501
  "Rule",
@@ -7371,7 +7550,23 @@
7371
7550
  "source": "readme"
7372
7551
  },
7373
7552
  {
7374
- "hash": "31e687407721cc55ccd2d23531c5e503c2b504126b32c3d64a6ea3fd5841a76c",
7553
+ "hash": "562dddaaddd3e544936b5e89215d9e70e60d127971cf1ac6ae60d8b177af7fab",
7554
+ "source": "readme"
7555
+ },
7556
+ {
7557
+ "hash": "62750a71bdc58bc9e0f99757dab54b58d289781855f75464a3dfde041584e5a9",
7558
+ "source": "readme"
7559
+ },
7560
+ {
7561
+ "hash": "4a895c708129dba60a9452a82b550b2f431e587c0987b51738984c48f0e964e1",
7562
+ "source": "readme"
7563
+ },
7564
+ {
7565
+ "hash": "aba0160ff1433e8ec47e740639c3fcc345982a27d57e7200952dd2bc7e98f388",
7566
+ "source": "readme"
7567
+ },
7568
+ {
7569
+ "hash": "4617e0aac2539a1d63cf4476b33848da29083ee5a92a4655275ac7eba9eb0246",
7375
7570
  "source": "readme"
7376
7571
  },
7377
7572
  {
@@ -7379,7 +7574,15 @@
7379
7574
  "source": "readme"
7380
7575
  },
7381
7576
  {
7382
- "hash": "dbe17f0fba3f62604b6da16ec484cb907242b1a61d6976be96c8e08deea44e14",
7577
+ "hash": "059d4b90513df16e1152c3b3c26f16fd3f888eed8540bfcd39df492d290fb571",
7578
+ "source": "readme"
7579
+ },
7580
+ {
7581
+ "hash": "b978823a61980bc8652f12244d9754f6b25138846aa816e17df5f72394a679f6",
7582
+ "source": "readme"
7583
+ },
7584
+ {
7585
+ "hash": "c71a7dffc772a7bab75e4c0e65062753a8527d613df86631bfff9aa0e99ea28b",
7383
7586
  "source": "readme"
7384
7587
  },
7385
7588
  {
@@ -7387,7 +7590,7 @@
7387
7590
  "source": "readme"
7388
7591
  },
7389
7592
  {
7390
- "hash": "699022fcfe2193a016f965ca015fe7b541b5f1215b76c3ce9b65711615c76f76",
7593
+ "hash": "72791f662fcf89e80142f2bfa365124f069ad691fd8779bb8d42587b91073e0d",
7391
7594
  "source": "readme"
7392
7595
  },
7393
7596
  {
@@ -7431,15 +7634,19 @@
7431
7634
  "source": "stories"
7432
7635
  },
7433
7636
  {
7434
- "hash": "74f28ec19da10ee7a3cecb129f444ca1e9b9bfa6a44bda5422d89c70a079ddc3",
7637
+ "hash": "e9cd91e807fb73460d6629c81e7b6b5b580f6432b27f470e6cdaebb98ced775c",
7638
+ "source": "stories"
7639
+ },
7640
+ {
7641
+ "hash": "59856252632897157d32c74aa985ecb8fb411ce6574ee696171c79f957372825",
7435
7642
  "source": "stories"
7436
7643
  },
7437
7644
  {
7438
- "hash": "fbc5d5eb0d5bdb23c26d08078a915d310bae38ddba853b4c3c905712dc72b3bb",
7645
+ "hash": "692b786f52a95876c3ce1005391b4720c2fdb792e169c6832998d818a6be5fbc",
7439
7646
  "source": "stories"
7440
7647
  },
7441
7648
  {
7442
- "hash": "3c3505571d048f21d338aa69eef9958e1c52c1291853b9b05ab914623319a464",
7649
+ "hash": "d5369ef44077dbcf96179383100ab2803515743fec525cd9038c16b98537baa8",
7443
7650
  "source": "stories"
7444
7651
  },
7445
7652
  {
@@ -7459,7 +7666,7 @@
7459
7666
  "source": "stories"
7460
7667
  },
7461
7668
  {
7462
- "hash": "06ed80f270ad4a44a62966e3d03d55cb761b84d414aac8e3da266148f530c106",
7669
+ "hash": "6f097a82d83df1982f3f442539825fbae168fd100c8516f97657fdc82d8373f1",
7463
7670
  "source": "stories"
7464
7671
  },
7465
7672
  {
@@ -7551,7 +7758,7 @@
7551
7758
  "source": "stories"
7552
7759
  },
7553
7760
  {
7554
- "hash": "c3aaf0098db4c77ba5af727f8c2eb70a9969be6ea15dcba309d583137cfe6e21",
7761
+ "hash": "8a26ecdb4c7ab900bc0b4ddf1c51f7da668aa5ed67d2683ef63f07028cdb7e84",
7555
7762
  "source": "stories"
7556
7763
  },
7557
7764
  {
@@ -7567,7 +7774,7 @@
7567
7774
  "source": "stories"
7568
7775
  },
7569
7776
  {
7570
- "hash": "8b751a499e8365e384d8c21bfd57f0c317933488ecf3d0d3cef92f63f7876153",
7777
+ "hash": "13500f6400048c58ebdd67eb24eb90d67d08102e36cba22502bc9dc016cc7476",
7571
7778
  "source": "stories"
7572
7779
  },
7573
7780
  {
@@ -7599,6 +7806,7 @@
7599
7806
  "FormCoreInstance",
7600
7807
  "FormInstance",
7601
7808
  "FormLayout",
7809
+ "FormListContextValue",
7602
7810
  "FormSize",
7603
7811
  "LabelAlign",
7604
7812
  "ProForm",
@@ -7611,10 +7819,12 @@
7611
7819
  "ProFormDependencyProps",
7612
7820
  "ProFormFieldConvertValueFn",
7613
7821
  "ProFormFieldName",
7822
+ "ProFormFieldOptionValue",
7614
7823
  "ProFormFieldProps",
7615
7824
  "ProFormFieldSet",
7616
7825
  "ProFormFieldSetProps",
7617
7826
  "ProFormFieldTransformFn",
7827
+ "ProFormFieldValueMap",
7618
7828
  "ProFormFormInstance",
7619
7829
  "ProFormGroup",
7620
7830
  "ProFormGroupProps",
@@ -7627,20 +7837,27 @@
7627
7837
  "ProFormListProps",
7628
7838
  "ProFormMode",
7629
7839
  "ProFormPassword",
7840
+ "ProFormPathValue",
7630
7841
  "ProFormProps",
7631
7842
  "ProFormRadioGroup",
7843
+ "ProFormRecursivePartial",
7632
7844
  "ProFormRequestOption",
7633
7845
  "ProFormSchemaColumn",
7846
+ "ProFormSchemaColumns",
7634
7847
  "ProFormSchemaValueType",
7635
7848
  "ProFormSelect",
7636
7849
  "ProFormSlider",
7850
+ "ProFormStableContextValue",
7851
+ "ProFormStateContextValue",
7637
7852
  "ProFormSwitch",
7853
+ "ProFormSyncToUrl",
7638
7854
  "ProFormText",
7639
7855
  "ProFormTextArea",
7640
7856
  "ProFormUpload",
7641
7857
  "ProFormValidateResult",
7642
7858
  "ProFormValueEnumObj",
7643
7859
  "ProFormValueType",
7860
+ "ProFormValuesPatch",
7644
7861
  "QueryFilter",
7645
7862
  "QueryFilterProps",
7646
7863
  "Rule",
@@ -7681,6 +7898,7 @@
7681
7898
  "FormCoreInstance",
7682
7899
  "FormInstance",
7683
7900
  "FormLayout",
7901
+ "FormListContextValue",
7684
7902
  "FormSize",
7685
7903
  "LabelAlign",
7686
7904
  "ProForm",
@@ -7693,10 +7911,12 @@
7693
7911
  "ProFormDependencyProps",
7694
7912
  "ProFormFieldConvertValueFn",
7695
7913
  "ProFormFieldName",
7914
+ "ProFormFieldOptionValue",
7696
7915
  "ProFormFieldProps",
7697
7916
  "ProFormFieldSet",
7698
7917
  "ProFormFieldSetProps",
7699
7918
  "ProFormFieldTransformFn",
7919
+ "ProFormFieldValueMap",
7700
7920
  "ProFormFormInstance",
7701
7921
  "ProFormGroup",
7702
7922
  "ProFormGroupProps",
@@ -7709,20 +7929,27 @@
7709
7929
  "ProFormListProps",
7710
7930
  "ProFormMode",
7711
7931
  "ProFormPassword",
7932
+ "ProFormPathValue",
7712
7933
  "ProFormProps",
7713
7934
  "ProFormRadioGroup",
7935
+ "ProFormRecursivePartial",
7714
7936
  "ProFormRequestOption",
7715
7937
  "ProFormSchemaColumn",
7938
+ "ProFormSchemaColumns",
7716
7939
  "ProFormSchemaValueType",
7717
7940
  "ProFormSelect",
7718
7941
  "ProFormSlider",
7942
+ "ProFormStableContextValue",
7943
+ "ProFormStateContextValue",
7719
7944
  "ProFormSwitch",
7945
+ "ProFormSyncToUrl",
7720
7946
  "ProFormText",
7721
7947
  "ProFormTextArea",
7722
7948
  "ProFormUpload",
7723
7949
  "ProFormValidateResult",
7724
7950
  "ProFormValueEnumObj",
7725
7951
  "ProFormValueType",
7952
+ "ProFormValuesPatch",
7726
7953
  "QueryFilter",
7727
7954
  "QueryFilterProps",
7728
7955
  "Rule",
@@ -7763,6 +7990,7 @@
7763
7990
  "FormCoreInstance",
7764
7991
  "FormInstance",
7765
7992
  "FormLayout",
7993
+ "FormListContextValue",
7766
7994
  "FormSize",
7767
7995
  "LabelAlign",
7768
7996
  "ProForm",
@@ -7775,10 +8003,12 @@
7775
8003
  "ProFormDependencyProps",
7776
8004
  "ProFormFieldConvertValueFn",
7777
8005
  "ProFormFieldName",
8006
+ "ProFormFieldOptionValue",
7778
8007
  "ProFormFieldProps",
7779
8008
  "ProFormFieldSet",
7780
8009
  "ProFormFieldSetProps",
7781
8010
  "ProFormFieldTransformFn",
8011
+ "ProFormFieldValueMap",
7782
8012
  "ProFormFormInstance",
7783
8013
  "ProFormGroup",
7784
8014
  "ProFormGroupProps",
@@ -7791,20 +8021,27 @@
7791
8021
  "ProFormListProps",
7792
8022
  "ProFormMode",
7793
8023
  "ProFormPassword",
8024
+ "ProFormPathValue",
7794
8025
  "ProFormProps",
7795
8026
  "ProFormRadioGroup",
8027
+ "ProFormRecursivePartial",
7796
8028
  "ProFormRequestOption",
7797
8029
  "ProFormSchemaColumn",
8030
+ "ProFormSchemaColumns",
7798
8031
  "ProFormSchemaValueType",
7799
8032
  "ProFormSelect",
7800
8033
  "ProFormSlider",
8034
+ "ProFormStableContextValue",
8035
+ "ProFormStateContextValue",
7801
8036
  "ProFormSwitch",
8037
+ "ProFormSyncToUrl",
7802
8038
  "ProFormText",
7803
8039
  "ProFormTextArea",
7804
8040
  "ProFormUpload",
7805
8041
  "ProFormValidateResult",
7806
8042
  "ProFormValueEnumObj",
7807
8043
  "ProFormValueType",
8044
+ "ProFormValuesPatch",
7808
8045
  "QueryFilter",
7809
8046
  "QueryFilterProps",
7810
8047
  "Rule",
@@ -7846,6 +8083,7 @@
7846
8083
  "FormCoreInstance",
7847
8084
  "FormInstance",
7848
8085
  "FormLayout",
8086
+ "FormListContextValue",
7849
8087
  "FormSize",
7850
8088
  "LabelAlign",
7851
8089
  "ProForm",
@@ -7858,10 +8096,12 @@
7858
8096
  "ProFormDependencyProps",
7859
8097
  "ProFormFieldConvertValueFn",
7860
8098
  "ProFormFieldName",
8099
+ "ProFormFieldOptionValue",
7861
8100
  "ProFormFieldProps",
7862
8101
  "ProFormFieldSet",
7863
8102
  "ProFormFieldSetProps",
7864
8103
  "ProFormFieldTransformFn",
8104
+ "ProFormFieldValueMap",
7865
8105
  "ProFormFormInstance",
7866
8106
  "ProFormGroup",
7867
8107
  "ProFormGroupProps",
@@ -7874,20 +8114,27 @@
7874
8114
  "ProFormListProps",
7875
8115
  "ProFormMode",
7876
8116
  "ProFormPassword",
8117
+ "ProFormPathValue",
7877
8118
  "ProFormProps",
7878
8119
  "ProFormRadioGroup",
8120
+ "ProFormRecursivePartial",
7879
8121
  "ProFormRequestOption",
7880
8122
  "ProFormSchemaColumn",
8123
+ "ProFormSchemaColumns",
7881
8124
  "ProFormSchemaValueType",
7882
8125
  "ProFormSelect",
7883
8126
  "ProFormSlider",
8127
+ "ProFormStableContextValue",
8128
+ "ProFormStateContextValue",
7884
8129
  "ProFormSwitch",
8130
+ "ProFormSyncToUrl",
7885
8131
  "ProFormText",
7886
8132
  "ProFormTextArea",
7887
8133
  "ProFormUpload",
7888
8134
  "ProFormValidateResult",
7889
8135
  "ProFormValueEnumObj",
7890
8136
  "ProFormValueType",
8137
+ "ProFormValuesPatch",
7891
8138
  "QueryFilter",
7892
8139
  "QueryFilterProps",
7893
8140
  "Rule",
@@ -7901,7 +8148,7 @@
7901
8148
  "useFormWatch"
7902
8149
  ],
7903
8150
  "searchTags": [],
7904
- "typeText": "interface ProFormContextValue extends ProFormStableContextValue, ProFormStateContextValue { ... }",
8151
+ "typeText": "interface ProFormContextValue extends ProFormStableContextValue<Values>, ProFormStateContextValue<Values> { ... }",
7905
8152
  "canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
7906
8153
  "examples": [
7907
8154
  {
@@ -7929,6 +8176,7 @@
7929
8176
  "FormCoreInstance",
7930
8177
  "FormInstance",
7931
8178
  "FormLayout",
8179
+ "FormListContextValue",
7932
8180
  "FormSize",
7933
8181
  "LabelAlign",
7934
8182
  "ProForm",
@@ -7941,10 +8189,12 @@
7941
8189
  "ProFormDependencyProps",
7942
8190
  "ProFormFieldConvertValueFn",
7943
8191
  "ProFormFieldName",
8192
+ "ProFormFieldOptionValue",
7944
8193
  "ProFormFieldProps",
7945
8194
  "ProFormFieldSet",
7946
8195
  "ProFormFieldSetProps",
7947
8196
  "ProFormFieldTransformFn",
8197
+ "ProFormFieldValueMap",
7948
8198
  "ProFormFormInstance",
7949
8199
  "ProFormGroup",
7950
8200
  "ProFormGroupProps",
@@ -7957,20 +8207,27 @@
7957
8207
  "ProFormListProps",
7958
8208
  "ProFormMode",
7959
8209
  "ProFormPassword",
8210
+ "ProFormPathValue",
7960
8211
  "ProFormProps",
7961
8212
  "ProFormRadioGroup",
8213
+ "ProFormRecursivePartial",
7962
8214
  "ProFormRequestOption",
7963
8215
  "ProFormSchemaColumn",
8216
+ "ProFormSchemaColumns",
7964
8217
  "ProFormSchemaValueType",
7965
8218
  "ProFormSelect",
7966
8219
  "ProFormSlider",
8220
+ "ProFormStableContextValue",
8221
+ "ProFormStateContextValue",
7967
8222
  "ProFormSwitch",
8223
+ "ProFormSyncToUrl",
7968
8224
  "ProFormText",
7969
8225
  "ProFormTextArea",
7970
8226
  "ProFormUpload",
7971
8227
  "ProFormValidateResult",
7972
8228
  "ProFormValueEnumObj",
7973
8229
  "ProFormValueType",
8230
+ "ProFormValuesPatch",
7974
8231
  "QueryFilter",
7975
8232
  "QueryFilterProps",
7976
8233
  "Rule",
@@ -7984,7 +8241,7 @@
7984
8241
  "useFormWatch"
7985
8242
  ],
7986
8243
  "searchTags": [],
7987
- "typeText": "| 'string'\n | 'number'\n | (string & {})\n | ((value: Date, name: string) => unknown)\n | false",
8244
+ "typeText": "| 'string'\n | 'number'\n | (string & {})\n | ((value: Date, name: string) => any)\n | false",
7988
8245
  "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';",
7989
8246
  "examples": [
7990
8247
  {
@@ -8012,6 +8269,7 @@
8012
8269
  "FormCoreInstance",
8013
8270
  "FormInstance",
8014
8271
  "FormLayout",
8272
+ "FormListContextValue",
8015
8273
  "FormSize",
8016
8274
  "LabelAlign",
8017
8275
  "ProForm",
@@ -8024,10 +8282,12 @@
8024
8282
  "ProFormDependencyProps",
8025
8283
  "ProFormFieldConvertValueFn",
8026
8284
  "ProFormFieldName",
8285
+ "ProFormFieldOptionValue",
8027
8286
  "ProFormFieldProps",
8028
8287
  "ProFormFieldSet",
8029
8288
  "ProFormFieldSetProps",
8030
8289
  "ProFormFieldTransformFn",
8290
+ "ProFormFieldValueMap",
8031
8291
  "ProFormFormInstance",
8032
8292
  "ProFormGroup",
8033
8293
  "ProFormGroupProps",
@@ -8040,20 +8300,27 @@
8040
8300
  "ProFormListProps",
8041
8301
  "ProFormMode",
8042
8302
  "ProFormPassword",
8303
+ "ProFormPathValue",
8043
8304
  "ProFormProps",
8044
8305
  "ProFormRadioGroup",
8306
+ "ProFormRecursivePartial",
8045
8307
  "ProFormRequestOption",
8046
8308
  "ProFormSchemaColumn",
8309
+ "ProFormSchemaColumns",
8047
8310
  "ProFormSchemaValueType",
8048
8311
  "ProFormSelect",
8049
8312
  "ProFormSlider",
8313
+ "ProFormStableContextValue",
8314
+ "ProFormStateContextValue",
8050
8315
  "ProFormSwitch",
8316
+ "ProFormSyncToUrl",
8051
8317
  "ProFormText",
8052
8318
  "ProFormTextArea",
8053
8319
  "ProFormUpload",
8054
8320
  "ProFormValidateResult",
8055
8321
  "ProFormValueEnumObj",
8056
8322
  "ProFormValueType",
8323
+ "ProFormValuesPatch",
8057
8324
  "QueryFilter",
8058
8325
  "QueryFilterProps",
8059
8326
  "Rule",
@@ -8089,23 +8356,15 @@
8089
8356
  "props": [
8090
8357
  {
8091
8358
  "name": "name",
8092
- "type": "ProFormFieldName<Values>[]",
8359
+ "type": "Name[]",
8093
8360
  "optional": false,
8094
8361
  "default": null,
8095
8362
  "description": "",
8096
8363
  "inheritedFrom": null
8097
8364
  },
8098
- {
8099
- "name": "ignoreFormListField",
8100
- "type": "boolean",
8101
- "optional": true,
8102
- "default": null,
8103
- "description": "",
8104
- "inheritedFrom": null
8105
- },
8106
8365
  {
8107
8366
  "name": "children",
8108
- "type": "(\n values: Record<string, unknown>,\n form: ProFormFormInstance<Values>,\n ) => ReactNode",
8367
+ "type": "(\n values: ProFormFieldValueMap<Values, Name>,\n form: ProFormFormInstance<Values>,\n ) => ReactNode",
8109
8368
  "optional": false,
8110
8369
  "default": null,
8111
8370
  "description": "",
@@ -8122,6 +8381,7 @@
8122
8381
  "FormCoreInstance",
8123
8382
  "FormInstance",
8124
8383
  "FormLayout",
8384
+ "FormListContextValue",
8125
8385
  "FormSize",
8126
8386
  "LabelAlign",
8127
8387
  "ProForm",
@@ -8134,10 +8394,12 @@
8134
8394
  "ProFormDependencyProps",
8135
8395
  "ProFormFieldConvertValueFn",
8136
8396
  "ProFormFieldName",
8397
+ "ProFormFieldOptionValue",
8137
8398
  "ProFormFieldProps",
8138
8399
  "ProFormFieldSet",
8139
8400
  "ProFormFieldSetProps",
8140
8401
  "ProFormFieldTransformFn",
8402
+ "ProFormFieldValueMap",
8141
8403
  "ProFormFormInstance",
8142
8404
  "ProFormGroup",
8143
8405
  "ProFormGroupProps",
@@ -8150,20 +8412,27 @@
8150
8412
  "ProFormListProps",
8151
8413
  "ProFormMode",
8152
8414
  "ProFormPassword",
8415
+ "ProFormPathValue",
8153
8416
  "ProFormProps",
8154
8417
  "ProFormRadioGroup",
8418
+ "ProFormRecursivePartial",
8155
8419
  "ProFormRequestOption",
8156
8420
  "ProFormSchemaColumn",
8421
+ "ProFormSchemaColumns",
8157
8422
  "ProFormSchemaValueType",
8158
8423
  "ProFormSelect",
8159
8424
  "ProFormSlider",
8425
+ "ProFormStableContextValue",
8426
+ "ProFormStateContextValue",
8160
8427
  "ProFormSwitch",
8428
+ "ProFormSyncToUrl",
8161
8429
  "ProFormText",
8162
8430
  "ProFormTextArea",
8163
8431
  "ProFormUpload",
8164
8432
  "ProFormValidateResult",
8165
8433
  "ProFormValueEnumObj",
8166
8434
  "ProFormValueType",
8435
+ "ProFormValuesPatch",
8167
8436
  "QueryFilter",
8168
8437
  "QueryFilterProps",
8169
8438
  "Rule",
@@ -8204,6 +8473,7 @@
8204
8473
  "FormCoreInstance",
8205
8474
  "FormInstance",
8206
8475
  "FormLayout",
8476
+ "FormListContextValue",
8207
8477
  "FormSize",
8208
8478
  "LabelAlign",
8209
8479
  "ProForm",
@@ -8216,10 +8486,12 @@
8216
8486
  "ProFormDependency",
8217
8487
  "ProFormFieldConvertValueFn",
8218
8488
  "ProFormFieldName",
8489
+ "ProFormFieldOptionValue",
8219
8490
  "ProFormFieldProps",
8220
8491
  "ProFormFieldSet",
8221
8492
  "ProFormFieldSetProps",
8222
8493
  "ProFormFieldTransformFn",
8494
+ "ProFormFieldValueMap",
8223
8495
  "ProFormFormInstance",
8224
8496
  "ProFormGroup",
8225
8497
  "ProFormGroupProps",
@@ -8232,20 +8504,27 @@
8232
8504
  "ProFormListProps",
8233
8505
  "ProFormMode",
8234
8506
  "ProFormPassword",
8507
+ "ProFormPathValue",
8235
8508
  "ProFormProps",
8236
8509
  "ProFormRadioGroup",
8510
+ "ProFormRecursivePartial",
8237
8511
  "ProFormRequestOption",
8238
8512
  "ProFormSchemaColumn",
8513
+ "ProFormSchemaColumns",
8239
8514
  "ProFormSchemaValueType",
8240
8515
  "ProFormSelect",
8241
8516
  "ProFormSlider",
8517
+ "ProFormStableContextValue",
8518
+ "ProFormStateContextValue",
8242
8519
  "ProFormSwitch",
8520
+ "ProFormSyncToUrl",
8243
8521
  "ProFormText",
8244
8522
  "ProFormTextArea",
8245
8523
  "ProFormUpload",
8246
8524
  "ProFormValidateResult",
8247
8525
  "ProFormValueEnumObj",
8248
8526
  "ProFormValueType",
8527
+ "ProFormValuesPatch",
8249
8528
  "QueryFilter",
8250
8529
  "QueryFilterProps",
8251
8530
  "Rule",
@@ -8287,6 +8566,7 @@
8287
8566
  "FormCoreInstance",
8288
8567
  "FormInstance",
8289
8568
  "FormLayout",
8569
+ "FormListContextValue",
8290
8570
  "FormSize",
8291
8571
  "LabelAlign",
8292
8572
  "ProForm",
@@ -8299,10 +8579,12 @@
8299
8579
  "ProFormDependency",
8300
8580
  "ProFormDependencyProps",
8301
8581
  "ProFormFieldName",
8582
+ "ProFormFieldOptionValue",
8302
8583
  "ProFormFieldProps",
8303
8584
  "ProFormFieldSet",
8304
8585
  "ProFormFieldSetProps",
8305
8586
  "ProFormFieldTransformFn",
8587
+ "ProFormFieldValueMap",
8306
8588
  "ProFormFormInstance",
8307
8589
  "ProFormGroup",
8308
8590
  "ProFormGroupProps",
@@ -8315,20 +8597,27 @@
8315
8597
  "ProFormListProps",
8316
8598
  "ProFormMode",
8317
8599
  "ProFormPassword",
8600
+ "ProFormPathValue",
8318
8601
  "ProFormProps",
8319
8602
  "ProFormRadioGroup",
8603
+ "ProFormRecursivePartial",
8320
8604
  "ProFormRequestOption",
8321
8605
  "ProFormSchemaColumn",
8606
+ "ProFormSchemaColumns",
8322
8607
  "ProFormSchemaValueType",
8323
8608
  "ProFormSelect",
8324
8609
  "ProFormSlider",
8610
+ "ProFormStableContextValue",
8611
+ "ProFormStateContextValue",
8325
8612
  "ProFormSwitch",
8613
+ "ProFormSyncToUrl",
8326
8614
  "ProFormText",
8327
8615
  "ProFormTextArea",
8328
8616
  "ProFormUpload",
8329
8617
  "ProFormValidateResult",
8330
8618
  "ProFormValueEnumObj",
8331
8619
  "ProFormValueType",
8620
+ "ProFormValuesPatch",
8332
8621
  "QueryFilter",
8333
8622
  "QueryFilterProps",
8334
8623
  "Rule",
@@ -8342,7 +8631,7 @@
8342
8631
  "useFormWatch"
8343
8632
  ],
8344
8633
  "searchTags": [],
8345
- "typeText": "(\n value: unknown,\n name: string,\n) => unknown",
8634
+ "typeText": "(\n value: ProFormPathValue<Values, Name>,\n name: Name,\n) => any",
8346
8635
  "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';",
8347
8636
  "examples": [
8348
8637
  {
@@ -8355,7 +8644,100 @@
8355
8644
  "name": "ProFormFieldName",
8356
8645
  "kind": "type",
8357
8646
  "category": "forms",
8358
- "summary": "Top-level keys of `Values` (for editor autocomplete) while still accepting any string — names may be dot-paths (`\"address.city\"`), list paths (`\"items.0.qty\"`), or keys produced by a renaming `transform`.",
8647
+ "summary": "Runtime ProForm field names are dot-path strings (`user.name`, `items.0.title`).",
8648
+ "importPath": "@1money/component-ui",
8649
+ "subpathImport": "@1money/component-ui/ProForm",
8650
+ "sourceFile": "src/components/ProForm/core/namePathType.ts",
8651
+ "props": [],
8652
+ "extends": [],
8653
+ "relatedSymbols": [
8654
+ "CreateProFormFieldConfig",
8655
+ "DialogForm",
8656
+ "DialogFormProps",
8657
+ "DrawerForm",
8658
+ "DrawerFormProps",
8659
+ "FormCoreInstance",
8660
+ "FormInstance",
8661
+ "FormLayout",
8662
+ "FormListContextValue",
8663
+ "FormSize",
8664
+ "LabelAlign",
8665
+ "ProForm",
8666
+ "ProFormCheckbox",
8667
+ "ProFormCheckboxGroup",
8668
+ "ProFormColProps",
8669
+ "ProFormContextValue",
8670
+ "ProFormDateFormatter",
8671
+ "ProFormDatePicker",
8672
+ "ProFormDependency",
8673
+ "ProFormDependencyProps",
8674
+ "ProFormFieldConvertValueFn",
8675
+ "ProFormFieldOptionValue",
8676
+ "ProFormFieldProps",
8677
+ "ProFormFieldSet",
8678
+ "ProFormFieldSetProps",
8679
+ "ProFormFieldTransformFn",
8680
+ "ProFormFieldValueMap",
8681
+ "ProFormFormInstance",
8682
+ "ProFormGroup",
8683
+ "ProFormGroupProps",
8684
+ "ProFormItem",
8685
+ "ProFormItemProps",
8686
+ "ProFormItemSharedProps",
8687
+ "ProFormLayoutConfig",
8688
+ "ProFormList",
8689
+ "ProFormListAction",
8690
+ "ProFormListProps",
8691
+ "ProFormMode",
8692
+ "ProFormPassword",
8693
+ "ProFormPathValue",
8694
+ "ProFormProps",
8695
+ "ProFormRadioGroup",
8696
+ "ProFormRecursivePartial",
8697
+ "ProFormRequestOption",
8698
+ "ProFormSchemaColumn",
8699
+ "ProFormSchemaColumns",
8700
+ "ProFormSchemaValueType",
8701
+ "ProFormSelect",
8702
+ "ProFormSlider",
8703
+ "ProFormStableContextValue",
8704
+ "ProFormStateContextValue",
8705
+ "ProFormSwitch",
8706
+ "ProFormSyncToUrl",
8707
+ "ProFormText",
8708
+ "ProFormTextArea",
8709
+ "ProFormUpload",
8710
+ "ProFormValidateResult",
8711
+ "ProFormValueEnumObj",
8712
+ "ProFormValueType",
8713
+ "ProFormValuesPatch",
8714
+ "QueryFilter",
8715
+ "QueryFilterProps",
8716
+ "Rule",
8717
+ "SchemaForm",
8718
+ "SchemaFormProps",
8719
+ "SubmitterProps",
8720
+ "UseFormWatch",
8721
+ "ValidateStatus",
8722
+ "ValidateTrigger",
8723
+ "createProFormField",
8724
+ "useFormWatch"
8725
+ ],
8726
+ "searchTags": [],
8727
+ "typeText": "string extends keyof Values ? string : DotPathInternal<NonNullable<Values>, 6>",
8728
+ "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';",
8729
+ "examples": [
8730
+ {
8731
+ "hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
8732
+ "source": "canonical"
8733
+ }
8734
+ ]
8735
+ },
8736
+ {
8737
+ "name": "ProFormFieldOptionValue",
8738
+ "kind": "type",
8739
+ "category": "forms",
8740
+ "summary": "",
8359
8741
  "importPath": "@1money/component-ui",
8360
8742
  "subpathImport": "@1money/component-ui/ProForm",
8361
8743
  "sourceFile": "src/components/ProForm/interface.ts",
@@ -8370,6 +8752,7 @@
8370
8752
  "FormCoreInstance",
8371
8753
  "FormInstance",
8372
8754
  "FormLayout",
8755
+ "FormListContextValue",
8373
8756
  "FormSize",
8374
8757
  "LabelAlign",
8375
8758
  "ProForm",
@@ -8382,10 +8765,12 @@
8382
8765
  "ProFormDependency",
8383
8766
  "ProFormDependencyProps",
8384
8767
  "ProFormFieldConvertValueFn",
8768
+ "ProFormFieldName",
8385
8769
  "ProFormFieldProps",
8386
8770
  "ProFormFieldSet",
8387
8771
  "ProFormFieldSetProps",
8388
8772
  "ProFormFieldTransformFn",
8773
+ "ProFormFieldValueMap",
8389
8774
  "ProFormFormInstance",
8390
8775
  "ProFormGroup",
8391
8776
  "ProFormGroupProps",
@@ -8398,20 +8783,27 @@
8398
8783
  "ProFormListProps",
8399
8784
  "ProFormMode",
8400
8785
  "ProFormPassword",
8786
+ "ProFormPathValue",
8401
8787
  "ProFormProps",
8402
8788
  "ProFormRadioGroup",
8789
+ "ProFormRecursivePartial",
8403
8790
  "ProFormRequestOption",
8404
8791
  "ProFormSchemaColumn",
8792
+ "ProFormSchemaColumns",
8405
8793
  "ProFormSchemaValueType",
8406
8794
  "ProFormSelect",
8407
8795
  "ProFormSlider",
8796
+ "ProFormStableContextValue",
8797
+ "ProFormStateContextValue",
8408
8798
  "ProFormSwitch",
8799
+ "ProFormSyncToUrl",
8409
8800
  "ProFormText",
8410
8801
  "ProFormTextArea",
8411
8802
  "ProFormUpload",
8412
8803
  "ProFormValidateResult",
8413
8804
  "ProFormValueEnumObj",
8414
8805
  "ProFormValueType",
8806
+ "ProFormValuesPatch",
8415
8807
  "QueryFilter",
8416
8808
  "QueryFilterProps",
8417
8809
  "Rule",
@@ -8425,7 +8817,7 @@
8425
8817
  "useFormWatch"
8426
8818
  ],
8427
8819
  "searchTags": [],
8428
- "typeText": "| Extract<keyof Values, string>\n | (string & {})",
8820
+ "typeText": "Name extends ProFormFieldName<Values>\n ? ProFormPathValue<Values, Name> extends readonly (infer Item)[]\n ? Item\n : ProFormPathValue<Values, Name>\n : never",
8429
8821
  "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';",
8430
8822
  "examples": [
8431
8823
  {
@@ -8438,7 +8830,7 @@
8438
8830
  "name": "ProFormFieldProps",
8439
8831
  "kind": "type",
8440
8832
  "category": "forms",
8441
- "summary": "",
8833
+ "summary": "Common field props with the historical generic order preserved: `ProFormFieldProps<FieldProps, Values, Name, FieldParams>`.",
8442
8834
  "importPath": "@1money/component-ui",
8443
8835
  "subpathImport": "@1money/component-ui/ProForm",
8444
8836
  "sourceFile": "src/components/ProForm/interface.ts",
@@ -8453,6 +8845,7 @@
8453
8845
  "FormCoreInstance",
8454
8846
  "FormInstance",
8455
8847
  "FormLayout",
8848
+ "FormListContextValue",
8456
8849
  "FormSize",
8457
8850
  "LabelAlign",
8458
8851
  "ProForm",
@@ -8466,9 +8859,11 @@
8466
8859
  "ProFormDependencyProps",
8467
8860
  "ProFormFieldConvertValueFn",
8468
8861
  "ProFormFieldName",
8862
+ "ProFormFieldOptionValue",
8469
8863
  "ProFormFieldSet",
8470
8864
  "ProFormFieldSetProps",
8471
8865
  "ProFormFieldTransformFn",
8866
+ "ProFormFieldValueMap",
8472
8867
  "ProFormFormInstance",
8473
8868
  "ProFormGroup",
8474
8869
  "ProFormGroupProps",
@@ -8481,20 +8876,27 @@
8481
8876
  "ProFormListProps",
8482
8877
  "ProFormMode",
8483
8878
  "ProFormPassword",
8879
+ "ProFormPathValue",
8484
8880
  "ProFormProps",
8485
8881
  "ProFormRadioGroup",
8882
+ "ProFormRecursivePartial",
8486
8883
  "ProFormRequestOption",
8487
8884
  "ProFormSchemaColumn",
8885
+ "ProFormSchemaColumns",
8488
8886
  "ProFormSchemaValueType",
8489
8887
  "ProFormSelect",
8490
8888
  "ProFormSlider",
8889
+ "ProFormStableContextValue",
8890
+ "ProFormStateContextValue",
8491
8891
  "ProFormSwitch",
8892
+ "ProFormSyncToUrl",
8492
8893
  "ProFormText",
8493
8894
  "ProFormTextArea",
8494
8895
  "ProFormUpload",
8495
8896
  "ProFormValidateResult",
8496
8897
  "ProFormValueEnumObj",
8497
8898
  "ProFormValueType",
8899
+ "ProFormValuesPatch",
8498
8900
  "QueryFilter",
8499
8901
  "QueryFilterProps",
8500
8902
  "Rule",
@@ -8508,7 +8910,7 @@
8508
8910
  "useFormWatch"
8509
8911
  ],
8510
8912
  "searchTags": [],
8511
- "typeText": "interface ProFormFieldProps { ... }",
8913
+ "typeText": "ProFormTypedFieldProps<Values, Name, FieldProps, FieldParams>",
8512
8914
  "canonicalUsage": "import {\n ProForm,\n ProFormText,\n ProFormSelect,\n DialogForm,\n QueryFilter,\n} from '@1money/component-ui';\n// or\nimport { ProForm, ProFormText } from '@1money/component-ui/ProForm';",
8513
8915
  "examples": [
8514
8916
  {
@@ -8528,7 +8930,7 @@
8528
8930
  "props": [
8529
8931
  {
8530
8932
  "name": "name",
8531
- "type": "string",
8933
+ "type": "Name",
8532
8934
  "optional": true,
8533
8935
  "default": null,
8534
8936
  "description": "",
@@ -8544,15 +8946,7 @@
8544
8946
  },
8545
8947
  {
8546
8948
  "name": "rules",
8547
- "type": "Rule[]",
8548
- "optional": true,
8549
- "default": null,
8550
- "description": "",
8551
- "inheritedFrom": null
8552
- },
8553
- {
8554
- "name": "required",
8555
- "type": "boolean",
8949
+ "type": "FormRule<Values>[]",
8556
8950
  "optional": true,
8557
8951
  "default": null,
8558
8952
  "description": "",
@@ -8609,6 +9003,7 @@
8609
9003
  "FormCoreInstance",
8610
9004
  "FormInstance",
8611
9005
  "FormLayout",
9006
+ "FormListContextValue",
8612
9007
  "FormSize",
8613
9008
  "LabelAlign",
8614
9009
  "ProForm",
@@ -8622,9 +9017,11 @@
8622
9017
  "ProFormDependencyProps",
8623
9018
  "ProFormFieldConvertValueFn",
8624
9019
  "ProFormFieldName",
9020
+ "ProFormFieldOptionValue",
8625
9021
  "ProFormFieldProps",
8626
9022
  "ProFormFieldSetProps",
8627
9023
  "ProFormFieldTransformFn",
9024
+ "ProFormFieldValueMap",
8628
9025
  "ProFormFormInstance",
8629
9026
  "ProFormGroup",
8630
9027
  "ProFormGroupProps",
@@ -8637,20 +9034,27 @@
8637
9034
  "ProFormListProps",
8638
9035
  "ProFormMode",
8639
9036
  "ProFormPassword",
9037
+ "ProFormPathValue",
8640
9038
  "ProFormProps",
8641
9039
  "ProFormRadioGroup",
9040
+ "ProFormRecursivePartial",
8642
9041
  "ProFormRequestOption",
8643
9042
  "ProFormSchemaColumn",
9043
+ "ProFormSchemaColumns",
8644
9044
  "ProFormSchemaValueType",
8645
9045
  "ProFormSelect",
8646
9046
  "ProFormSlider",
9047
+ "ProFormStableContextValue",
9048
+ "ProFormStateContextValue",
8647
9049
  "ProFormSwitch",
9050
+ "ProFormSyncToUrl",
8648
9051
  "ProFormText",
8649
9052
  "ProFormTextArea",
8650
9053
  "ProFormUpload",
8651
9054
  "ProFormValidateResult",
8652
9055
  "ProFormValueEnumObj",
8653
9056
  "ProFormValueType",
9057
+ "ProFormValuesPatch",
8654
9058
  "QueryFilter",
8655
9059
  "QueryFilterProps",
8656
9060
  "Rule",
@@ -8691,6 +9095,7 @@
8691
9095
  "FormCoreInstance",
8692
9096
  "FormInstance",
8693
9097
  "FormLayout",
9098
+ "FormListContextValue",
8694
9099
  "FormSize",
8695
9100
  "LabelAlign",
8696
9101
  "ProForm",
@@ -8704,9 +9109,11 @@
8704
9109
  "ProFormDependencyProps",
8705
9110
  "ProFormFieldConvertValueFn",
8706
9111
  "ProFormFieldName",
9112
+ "ProFormFieldOptionValue",
8707
9113
  "ProFormFieldProps",
8708
9114
  "ProFormFieldSet",
8709
9115
  "ProFormFieldTransformFn",
9116
+ "ProFormFieldValueMap",
8710
9117
  "ProFormFormInstance",
8711
9118
  "ProFormGroup",
8712
9119
  "ProFormGroupProps",
@@ -8719,20 +9126,27 @@
8719
9126
  "ProFormListProps",
8720
9127
  "ProFormMode",
8721
9128
  "ProFormPassword",
9129
+ "ProFormPathValue",
8722
9130
  "ProFormProps",
8723
9131
  "ProFormRadioGroup",
9132
+ "ProFormRecursivePartial",
8724
9133
  "ProFormRequestOption",
8725
9134
  "ProFormSchemaColumn",
9135
+ "ProFormSchemaColumns",
8726
9136
  "ProFormSchemaValueType",
8727
9137
  "ProFormSelect",
8728
9138
  "ProFormSlider",
9139
+ "ProFormStableContextValue",
9140
+ "ProFormStateContextValue",
8729
9141
  "ProFormSwitch",
9142
+ "ProFormSyncToUrl",
8730
9143
  "ProFormText",
8731
9144
  "ProFormTextArea",
8732
9145
  "ProFormUpload",
8733
9146
  "ProFormValidateResult",
8734
9147
  "ProFormValueEnumObj",
8735
9148
  "ProFormValueType",
9149
+ "ProFormValuesPatch",
8736
9150
  "QueryFilter",
8737
9151
  "QueryFilterProps",
8738
9152
  "Rule",
@@ -8774,6 +9188,7 @@
8774
9188
  "FormCoreInstance",
8775
9189
  "FormInstance",
8776
9190
  "FormLayout",
9191
+ "FormListContextValue",
8777
9192
  "FormSize",
8778
9193
  "LabelAlign",
8779
9194
  "ProForm",
@@ -8787,9 +9202,11 @@
8787
9202
  "ProFormDependencyProps",
8788
9203
  "ProFormFieldConvertValueFn",
8789
9204
  "ProFormFieldName",
9205
+ "ProFormFieldOptionValue",
8790
9206
  "ProFormFieldProps",
8791
9207
  "ProFormFieldSet",
8792
9208
  "ProFormFieldSetProps",
9209
+ "ProFormFieldValueMap",
8793
9210
  "ProFormFormInstance",
8794
9211
  "ProFormGroup",
8795
9212
  "ProFormGroupProps",
@@ -8802,20 +9219,27 @@
8802
9219
  "ProFormListProps",
8803
9220
  "ProFormMode",
8804
9221
  "ProFormPassword",
9222
+ "ProFormPathValue",
8805
9223
  "ProFormProps",
8806
9224
  "ProFormRadioGroup",
9225
+ "ProFormRecursivePartial",
8807
9226
  "ProFormRequestOption",
8808
9227
  "ProFormSchemaColumn",
9228
+ "ProFormSchemaColumns",
8809
9229
  "ProFormSchemaValueType",
8810
9230
  "ProFormSelect",
8811
9231
  "ProFormSlider",
9232
+ "ProFormStableContextValue",
9233
+ "ProFormStateContextValue",
8812
9234
  "ProFormSwitch",
9235
+ "ProFormSyncToUrl",
8813
9236
  "ProFormText",
8814
9237
  "ProFormTextArea",
8815
9238
  "ProFormUpload",
8816
9239
  "ProFormValidateResult",
8817
9240
  "ProFormValueEnumObj",
8818
9241
  "ProFormValueType",
9242
+ "ProFormValuesPatch",
8819
9243
  "QueryFilter",
8820
9244
  "QueryFilterProps",
8821
9245
  "Rule",
@@ -8829,7 +9253,7 @@
8829
9253
  "useFormWatch"
8830
9254
  ],
8831
9255
  "searchTags": [],
8832
- "typeText": "(\n value: unknown,\n name: string,\n allValues: Record<string, unknown>,\n) => unknown",
9256
+ "typeText": "(\n value: ProFormPathValue<Values, Name>,\n name: Name,\n allValues: Values,\n) => any",
8833
9257
  "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';",
8834
9258
  "examples": [
8835
9259
  {
@@ -8839,13 +9263,13 @@
8839
9263
  ]
8840
9264
  },
8841
9265
  {
8842
- "name": "ProFormFormInstance",
9266
+ "name": "ProFormFieldValueMap",
8843
9267
  "kind": "type",
8844
9268
  "category": "forms",
8845
9269
  "summary": "",
8846
9270
  "importPath": "@1money/component-ui",
8847
9271
  "subpathImport": "@1money/component-ui/ProForm",
8848
- "sourceFile": "src/components/ProForm/interface.ts",
9272
+ "sourceFile": "src/components/ProForm/core/namePathType.ts",
8849
9273
  "props": [],
8850
9274
  "extends": [],
8851
9275
  "relatedSymbols": [
@@ -8857,6 +9281,7 @@
8857
9281
  "FormCoreInstance",
8858
9282
  "FormInstance",
8859
9283
  "FormLayout",
9284
+ "FormListContextValue",
8860
9285
  "FormSize",
8861
9286
  "LabelAlign",
8862
9287
  "ProForm",
@@ -8870,10 +9295,12 @@
8870
9295
  "ProFormDependencyProps",
8871
9296
  "ProFormFieldConvertValueFn",
8872
9297
  "ProFormFieldName",
9298
+ "ProFormFieldOptionValue",
8873
9299
  "ProFormFieldProps",
8874
9300
  "ProFormFieldSet",
8875
9301
  "ProFormFieldSetProps",
8876
9302
  "ProFormFieldTransformFn",
9303
+ "ProFormFormInstance",
8877
9304
  "ProFormGroup",
8878
9305
  "ProFormGroupProps",
8879
9306
  "ProFormItem",
@@ -8885,20 +9312,27 @@
8885
9312
  "ProFormListProps",
8886
9313
  "ProFormMode",
8887
9314
  "ProFormPassword",
9315
+ "ProFormPathValue",
8888
9316
  "ProFormProps",
8889
9317
  "ProFormRadioGroup",
9318
+ "ProFormRecursivePartial",
8890
9319
  "ProFormRequestOption",
8891
9320
  "ProFormSchemaColumn",
9321
+ "ProFormSchemaColumns",
8892
9322
  "ProFormSchemaValueType",
8893
9323
  "ProFormSelect",
8894
9324
  "ProFormSlider",
9325
+ "ProFormStableContextValue",
9326
+ "ProFormStateContextValue",
8895
9327
  "ProFormSwitch",
9328
+ "ProFormSyncToUrl",
8896
9329
  "ProFormText",
8897
9330
  "ProFormTextArea",
8898
9331
  "ProFormUpload",
8899
9332
  "ProFormValidateResult",
8900
9333
  "ProFormValueEnumObj",
8901
9334
  "ProFormValueType",
9335
+ "ProFormValuesPatch",
8902
9336
  "QueryFilter",
8903
9337
  "QueryFilterProps",
8904
9338
  "Rule",
@@ -8912,7 +9346,7 @@
8912
9346
  "useFormWatch"
8913
9347
  ],
8914
9348
  "searchTags": [],
8915
- "typeText": "interface ProFormFormInstance extends FormInstance<Values> { ... }",
9349
+ "typeText": "Partial<{\n [FieldName in Name]: ProFormPathValue<Values, FieldName>;\n}>",
8916
9350
  "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';",
8917
9351
  "examples": [
8918
9352
  {
@@ -8922,37 +9356,130 @@
8922
9356
  ]
8923
9357
  },
8924
9358
  {
8925
- "name": "ProFormGroup",
8926
- "kind": "component",
9359
+ "name": "ProFormFormInstance",
9360
+ "kind": "type",
8927
9361
  "category": "forms",
8928
9362
  "summary": "",
8929
9363
  "importPath": "@1money/component-ui",
8930
9364
  "subpathImport": "@1money/component-ui/ProForm",
8931
- "sourceFile": "src/components/ProForm/ProFormGroup.tsx",
8932
- "props": [
8933
- {
8934
- "name": "title",
8935
- "type": "ReactNode",
8936
- "optional": true,
8937
- "default": null,
8938
- "description": "",
8939
- "inheritedFrom": null
8940
- },
8941
- {
8942
- "name": "extra",
8943
- "type": "ReactNode",
8944
- "optional": true,
8945
- "default": null,
8946
- "description": "",
8947
- "inheritedFrom": null
8948
- },
8949
- {
8950
- "name": "collapsible",
8951
- "type": "boolean",
8952
- "optional": true,
8953
- "default": null,
8954
- "description": "",
8955
- "inheritedFrom": null
9365
+ "sourceFile": "src/components/ProForm/interface.ts",
9366
+ "props": [],
9367
+ "extends": [],
9368
+ "relatedSymbols": [
9369
+ "CreateProFormFieldConfig",
9370
+ "DialogForm",
9371
+ "DialogFormProps",
9372
+ "DrawerForm",
9373
+ "DrawerFormProps",
9374
+ "FormCoreInstance",
9375
+ "FormInstance",
9376
+ "FormLayout",
9377
+ "FormListContextValue",
9378
+ "FormSize",
9379
+ "LabelAlign",
9380
+ "ProForm",
9381
+ "ProFormCheckbox",
9382
+ "ProFormCheckboxGroup",
9383
+ "ProFormColProps",
9384
+ "ProFormContextValue",
9385
+ "ProFormDateFormatter",
9386
+ "ProFormDatePicker",
9387
+ "ProFormDependency",
9388
+ "ProFormDependencyProps",
9389
+ "ProFormFieldConvertValueFn",
9390
+ "ProFormFieldName",
9391
+ "ProFormFieldOptionValue",
9392
+ "ProFormFieldProps",
9393
+ "ProFormFieldSet",
9394
+ "ProFormFieldSetProps",
9395
+ "ProFormFieldTransformFn",
9396
+ "ProFormFieldValueMap",
9397
+ "ProFormGroup",
9398
+ "ProFormGroupProps",
9399
+ "ProFormItem",
9400
+ "ProFormItemProps",
9401
+ "ProFormItemSharedProps",
9402
+ "ProFormLayoutConfig",
9403
+ "ProFormList",
9404
+ "ProFormListAction",
9405
+ "ProFormListProps",
9406
+ "ProFormMode",
9407
+ "ProFormPassword",
9408
+ "ProFormPathValue",
9409
+ "ProFormProps",
9410
+ "ProFormRadioGroup",
9411
+ "ProFormRecursivePartial",
9412
+ "ProFormRequestOption",
9413
+ "ProFormSchemaColumn",
9414
+ "ProFormSchemaColumns",
9415
+ "ProFormSchemaValueType",
9416
+ "ProFormSelect",
9417
+ "ProFormSlider",
9418
+ "ProFormStableContextValue",
9419
+ "ProFormStateContextValue",
9420
+ "ProFormSwitch",
9421
+ "ProFormSyncToUrl",
9422
+ "ProFormText",
9423
+ "ProFormTextArea",
9424
+ "ProFormUpload",
9425
+ "ProFormValidateResult",
9426
+ "ProFormValueEnumObj",
9427
+ "ProFormValueType",
9428
+ "ProFormValuesPatch",
9429
+ "QueryFilter",
9430
+ "QueryFilterProps",
9431
+ "Rule",
9432
+ "SchemaForm",
9433
+ "SchemaFormProps",
9434
+ "SubmitterProps",
9435
+ "UseFormWatch",
9436
+ "ValidateStatus",
9437
+ "ValidateTrigger",
9438
+ "createProFormField",
9439
+ "useFormWatch"
9440
+ ],
9441
+ "searchTags": [],
9442
+ "typeText": "interface ProFormFormInstance extends FormInstance<Values> { ... }",
9443
+ "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';",
9444
+ "examples": [
9445
+ {
9446
+ "hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
9447
+ "source": "canonical"
9448
+ }
9449
+ ]
9450
+ },
9451
+ {
9452
+ "name": "ProFormGroup",
9453
+ "kind": "component",
9454
+ "category": "forms",
9455
+ "summary": "",
9456
+ "importPath": "@1money/component-ui",
9457
+ "subpathImport": "@1money/component-ui/ProForm",
9458
+ "sourceFile": "src/components/ProForm/ProFormGroup.tsx",
9459
+ "props": [
9460
+ {
9461
+ "name": "title",
9462
+ "type": "ReactNode",
9463
+ "optional": true,
9464
+ "default": null,
9465
+ "description": "",
9466
+ "inheritedFrom": null
9467
+ },
9468
+ {
9469
+ "name": "extra",
9470
+ "type": "ReactNode",
9471
+ "optional": true,
9472
+ "default": null,
9473
+ "description": "",
9474
+ "inheritedFrom": null
9475
+ },
9476
+ {
9477
+ "name": "collapsible",
9478
+ "type": "boolean",
9479
+ "optional": true,
9480
+ "default": null,
9481
+ "description": "",
9482
+ "inheritedFrom": null
8956
9483
  },
8957
9484
  {
8958
9485
  "name": "defaultCollapsed",
@@ -9005,6 +9532,7 @@
9005
9532
  "FormCoreInstance",
9006
9533
  "FormInstance",
9007
9534
  "FormLayout",
9535
+ "FormListContextValue",
9008
9536
  "FormSize",
9009
9537
  "LabelAlign",
9010
9538
  "ProForm",
@@ -9018,10 +9546,12 @@
9018
9546
  "ProFormDependencyProps",
9019
9547
  "ProFormFieldConvertValueFn",
9020
9548
  "ProFormFieldName",
9549
+ "ProFormFieldOptionValue",
9021
9550
  "ProFormFieldProps",
9022
9551
  "ProFormFieldSet",
9023
9552
  "ProFormFieldSetProps",
9024
9553
  "ProFormFieldTransformFn",
9554
+ "ProFormFieldValueMap",
9025
9555
  "ProFormFormInstance",
9026
9556
  "ProFormGroupProps",
9027
9557
  "ProFormItem",
@@ -9033,20 +9563,27 @@
9033
9563
  "ProFormListProps",
9034
9564
  "ProFormMode",
9035
9565
  "ProFormPassword",
9566
+ "ProFormPathValue",
9036
9567
  "ProFormProps",
9037
9568
  "ProFormRadioGroup",
9569
+ "ProFormRecursivePartial",
9038
9570
  "ProFormRequestOption",
9039
9571
  "ProFormSchemaColumn",
9572
+ "ProFormSchemaColumns",
9040
9573
  "ProFormSchemaValueType",
9041
9574
  "ProFormSelect",
9042
9575
  "ProFormSlider",
9576
+ "ProFormStableContextValue",
9577
+ "ProFormStateContextValue",
9043
9578
  "ProFormSwitch",
9579
+ "ProFormSyncToUrl",
9044
9580
  "ProFormText",
9045
9581
  "ProFormTextArea",
9046
9582
  "ProFormUpload",
9047
9583
  "ProFormValidateResult",
9048
9584
  "ProFormValueEnumObj",
9049
9585
  "ProFormValueType",
9586
+ "ProFormValuesPatch",
9050
9587
  "QueryFilter",
9051
9588
  "QueryFilterProps",
9052
9589
  "Rule",
@@ -9087,6 +9624,7 @@
9087
9624
  "FormCoreInstance",
9088
9625
  "FormInstance",
9089
9626
  "FormLayout",
9627
+ "FormListContextValue",
9090
9628
  "FormSize",
9091
9629
  "LabelAlign",
9092
9630
  "ProForm",
@@ -9100,10 +9638,12 @@
9100
9638
  "ProFormDependencyProps",
9101
9639
  "ProFormFieldConvertValueFn",
9102
9640
  "ProFormFieldName",
9641
+ "ProFormFieldOptionValue",
9103
9642
  "ProFormFieldProps",
9104
9643
  "ProFormFieldSet",
9105
9644
  "ProFormFieldSetProps",
9106
9645
  "ProFormFieldTransformFn",
9646
+ "ProFormFieldValueMap",
9107
9647
  "ProFormFormInstance",
9108
9648
  "ProFormGroup",
9109
9649
  "ProFormItem",
@@ -9115,20 +9655,27 @@
9115
9655
  "ProFormListProps",
9116
9656
  "ProFormMode",
9117
9657
  "ProFormPassword",
9658
+ "ProFormPathValue",
9118
9659
  "ProFormProps",
9119
9660
  "ProFormRadioGroup",
9661
+ "ProFormRecursivePartial",
9120
9662
  "ProFormRequestOption",
9121
9663
  "ProFormSchemaColumn",
9664
+ "ProFormSchemaColumns",
9122
9665
  "ProFormSchemaValueType",
9123
9666
  "ProFormSelect",
9124
9667
  "ProFormSlider",
9668
+ "ProFormStableContextValue",
9669
+ "ProFormStateContextValue",
9125
9670
  "ProFormSwitch",
9671
+ "ProFormSyncToUrl",
9126
9672
  "ProFormText",
9127
9673
  "ProFormTextArea",
9128
9674
  "ProFormUpload",
9129
9675
  "ProFormValidateResult",
9130
9676
  "ProFormValueEnumObj",
9131
9677
  "ProFormValueType",
9678
+ "ProFormValuesPatch",
9132
9679
  "QueryFilter",
9133
9680
  "QueryFilterProps",
9134
9681
  "Rule",
@@ -9194,7 +9741,7 @@
9194
9741
  },
9195
9742
  {
9196
9743
  "name": "name",
9197
- "type": "string",
9744
+ "type": "Name",
9198
9745
  "optional": true,
9199
9746
  "default": null,
9200
9747
  "description": "",
@@ -9202,15 +9749,7 @@
9202
9749
  },
9203
9750
  {
9204
9751
  "name": "rules",
9205
- "type": "Rule[]",
9206
- "optional": true,
9207
- "default": null,
9208
- "description": "",
9209
- "inheritedFrom": null
9210
- },
9211
- {
9212
- "name": "required",
9213
- "type": "boolean",
9752
+ "type": "FormRule<Values>[]",
9214
9753
  "optional": true,
9215
9754
  "default": null,
9216
9755
  "description": "",
@@ -9248,14 +9787,6 @@
9248
9787
  "description": "",
9249
9788
  "inheritedFrom": null
9250
9789
  },
9251
- {
9252
- "name": "colon",
9253
- "type": "boolean",
9254
- "optional": true,
9255
- "default": null,
9256
- "description": "",
9257
- "inheritedFrom": null
9258
- },
9259
9790
  {
9260
9791
  "name": "hidden",
9261
9792
  "type": "boolean",
@@ -9266,7 +9797,7 @@
9266
9797
  },
9267
9798
  {
9268
9799
  "name": "transform",
9269
- "type": "ProFormFieldTransformFn",
9800
+ "type": "ProFormFieldTransformFn<Values, Name>",
9270
9801
  "optional": true,
9271
9802
  "default": null,
9272
9803
  "description": "Transform before submit, registered into ProForm pipeline",
@@ -9274,7 +9805,7 @@
9274
9805
  },
9275
9806
  {
9276
9807
  "name": "convertValue",
9277
- "type": "ProFormFieldConvertValueFn",
9808
+ "type": "ProFormFieldConvertValueFn<Values, Name>",
9278
9809
  "optional": true,
9279
9810
  "default": null,
9280
9811
  "description": "Convert the displayed value before rendering into children",
@@ -9290,7 +9821,7 @@
9290
9821
  },
9291
9822
  {
9292
9823
  "name": "readonlyRender",
9293
- "type": "(value: unknown, values: Record<string, unknown>) => ReactNode",
9824
+ "type": "(\n value: ProFormPathValue<Values, Name>,\n values: Values,\n ) => ReactNode",
9294
9825
  "optional": true,
9295
9826
  "default": null,
9296
9827
  "description": "Custom read-mode rendering; overrides valueType",
@@ -9343,6 +9874,14 @@
9343
9874
  "default": null,
9344
9875
  "description": "Debounce (ms) applied to onChange-triggered validation",
9345
9876
  "inheritedFrom": null
9877
+ },
9878
+ {
9879
+ "name": "validateTrigger",
9880
+ "type": "ValidateTriggerProp",
9881
+ "optional": true,
9882
+ "default": null,
9883
+ "description": "Item-level validateTrigger - overrides the form-level setting",
9884
+ "inheritedFrom": null
9346
9885
  }
9347
9886
  ],
9348
9887
  "extends": [],
@@ -9355,6 +9894,7 @@
9355
9894
  "FormCoreInstance",
9356
9895
  "FormInstance",
9357
9896
  "FormLayout",
9897
+ "FormListContextValue",
9358
9898
  "FormSize",
9359
9899
  "LabelAlign",
9360
9900
  "ProForm",
@@ -9368,10 +9908,12 @@
9368
9908
  "ProFormDependencyProps",
9369
9909
  "ProFormFieldConvertValueFn",
9370
9910
  "ProFormFieldName",
9911
+ "ProFormFieldOptionValue",
9371
9912
  "ProFormFieldProps",
9372
9913
  "ProFormFieldSet",
9373
9914
  "ProFormFieldSetProps",
9374
9915
  "ProFormFieldTransformFn",
9916
+ "ProFormFieldValueMap",
9375
9917
  "ProFormFormInstance",
9376
9918
  "ProFormGroup",
9377
9919
  "ProFormGroupProps",
@@ -9383,20 +9925,27 @@
9383
9925
  "ProFormListProps",
9384
9926
  "ProFormMode",
9385
9927
  "ProFormPassword",
9928
+ "ProFormPathValue",
9386
9929
  "ProFormProps",
9387
9930
  "ProFormRadioGroup",
9931
+ "ProFormRecursivePartial",
9388
9932
  "ProFormRequestOption",
9389
9933
  "ProFormSchemaColumn",
9934
+ "ProFormSchemaColumns",
9390
9935
  "ProFormSchemaValueType",
9391
9936
  "ProFormSelect",
9392
9937
  "ProFormSlider",
9938
+ "ProFormStableContextValue",
9939
+ "ProFormStateContextValue",
9393
9940
  "ProFormSwitch",
9941
+ "ProFormSyncToUrl",
9394
9942
  "ProFormText",
9395
9943
  "ProFormTextArea",
9396
9944
  "ProFormUpload",
9397
9945
  "ProFormValidateResult",
9398
9946
  "ProFormValueEnumObj",
9399
9947
  "ProFormValueType",
9948
+ "ProFormValuesPatch",
9400
9949
  "QueryFilter",
9401
9950
  "QueryFilterProps",
9402
9951
  "Rule",
@@ -9437,6 +9986,7 @@
9437
9986
  "FormCoreInstance",
9438
9987
  "FormInstance",
9439
9988
  "FormLayout",
9989
+ "FormListContextValue",
9440
9990
  "FormSize",
9441
9991
  "LabelAlign",
9442
9992
  "ProForm",
@@ -9450,10 +10000,12 @@
9450
10000
  "ProFormDependencyProps",
9451
10001
  "ProFormFieldConvertValueFn",
9452
10002
  "ProFormFieldName",
10003
+ "ProFormFieldOptionValue",
9453
10004
  "ProFormFieldProps",
9454
10005
  "ProFormFieldSet",
9455
10006
  "ProFormFieldSetProps",
9456
10007
  "ProFormFieldTransformFn",
10008
+ "ProFormFieldValueMap",
9457
10009
  "ProFormFormInstance",
9458
10010
  "ProFormGroup",
9459
10011
  "ProFormGroupProps",
@@ -9465,20 +10017,27 @@
9465
10017
  "ProFormListProps",
9466
10018
  "ProFormMode",
9467
10019
  "ProFormPassword",
10020
+ "ProFormPathValue",
9468
10021
  "ProFormProps",
9469
10022
  "ProFormRadioGroup",
10023
+ "ProFormRecursivePartial",
9470
10024
  "ProFormRequestOption",
9471
10025
  "ProFormSchemaColumn",
10026
+ "ProFormSchemaColumns",
9472
10027
  "ProFormSchemaValueType",
9473
10028
  "ProFormSelect",
9474
10029
  "ProFormSlider",
10030
+ "ProFormStableContextValue",
10031
+ "ProFormStateContextValue",
9475
10032
  "ProFormSwitch",
10033
+ "ProFormSyncToUrl",
9476
10034
  "ProFormText",
9477
10035
  "ProFormTextArea",
9478
10036
  "ProFormUpload",
9479
10037
  "ProFormValidateResult",
9480
10038
  "ProFormValueEnumObj",
9481
10039
  "ProFormValueType",
10040
+ "ProFormValuesPatch",
9482
10041
  "QueryFilter",
9483
10042
  "QueryFilterProps",
9484
10043
  "Rule",
@@ -9520,6 +10079,7 @@
9520
10079
  "FormCoreInstance",
9521
10080
  "FormInstance",
9522
10081
  "FormLayout",
10082
+ "FormListContextValue",
9523
10083
  "FormSize",
9524
10084
  "LabelAlign",
9525
10085
  "ProForm",
@@ -9533,10 +10093,12 @@
9533
10093
  "ProFormDependencyProps",
9534
10094
  "ProFormFieldConvertValueFn",
9535
10095
  "ProFormFieldName",
10096
+ "ProFormFieldOptionValue",
9536
10097
  "ProFormFieldProps",
9537
10098
  "ProFormFieldSet",
9538
10099
  "ProFormFieldSetProps",
9539
10100
  "ProFormFieldTransformFn",
10101
+ "ProFormFieldValueMap",
9540
10102
  "ProFormFormInstance",
9541
10103
  "ProFormGroup",
9542
10104
  "ProFormGroupProps",
@@ -9548,20 +10110,27 @@
9548
10110
  "ProFormListProps",
9549
10111
  "ProFormMode",
9550
10112
  "ProFormPassword",
10113
+ "ProFormPathValue",
9551
10114
  "ProFormProps",
9552
10115
  "ProFormRadioGroup",
10116
+ "ProFormRecursivePartial",
9553
10117
  "ProFormRequestOption",
9554
10118
  "ProFormSchemaColumn",
10119
+ "ProFormSchemaColumns",
9555
10120
  "ProFormSchemaValueType",
9556
10121
  "ProFormSelect",
9557
10122
  "ProFormSlider",
10123
+ "ProFormStableContextValue",
10124
+ "ProFormStateContextValue",
9558
10125
  "ProFormSwitch",
10126
+ "ProFormSyncToUrl",
9559
10127
  "ProFormText",
9560
10128
  "ProFormTextArea",
9561
10129
  "ProFormUpload",
9562
10130
  "ProFormValidateResult",
9563
10131
  "ProFormValueEnumObj",
9564
10132
  "ProFormValueType",
10133
+ "ProFormValuesPatch",
9565
10134
  "QueryFilter",
9566
10135
  "QueryFilterProps",
9567
10136
  "Rule",
@@ -9603,6 +10172,7 @@
9603
10172
  "FormCoreInstance",
9604
10173
  "FormInstance",
9605
10174
  "FormLayout",
10175
+ "FormListContextValue",
9606
10176
  "FormSize",
9607
10177
  "LabelAlign",
9608
10178
  "ProForm",
@@ -9616,10 +10186,12 @@
9616
10186
  "ProFormDependencyProps",
9617
10187
  "ProFormFieldConvertValueFn",
9618
10188
  "ProFormFieldName",
10189
+ "ProFormFieldOptionValue",
9619
10190
  "ProFormFieldProps",
9620
10191
  "ProFormFieldSet",
9621
10192
  "ProFormFieldSetProps",
9622
10193
  "ProFormFieldTransformFn",
10194
+ "ProFormFieldValueMap",
9623
10195
  "ProFormFormInstance",
9624
10196
  "ProFormGroup",
9625
10197
  "ProFormGroupProps",
@@ -9631,20 +10203,27 @@
9631
10203
  "ProFormListProps",
9632
10204
  "ProFormMode",
9633
10205
  "ProFormPassword",
10206
+ "ProFormPathValue",
9634
10207
  "ProFormProps",
9635
10208
  "ProFormRadioGroup",
10209
+ "ProFormRecursivePartial",
9636
10210
  "ProFormRequestOption",
9637
10211
  "ProFormSchemaColumn",
10212
+ "ProFormSchemaColumns",
9638
10213
  "ProFormSchemaValueType",
9639
10214
  "ProFormSelect",
9640
10215
  "ProFormSlider",
10216
+ "ProFormStableContextValue",
10217
+ "ProFormStateContextValue",
9641
10218
  "ProFormSwitch",
10219
+ "ProFormSyncToUrl",
9642
10220
  "ProFormText",
9643
10221
  "ProFormTextArea",
9644
10222
  "ProFormUpload",
9645
10223
  "ProFormValidateResult",
9646
10224
  "ProFormValueEnumObj",
9647
10225
  "ProFormValueType",
10226
+ "ProFormValuesPatch",
9648
10227
  "QueryFilter",
9649
10228
  "QueryFilterProps",
9650
10229
  "Rule",
@@ -9726,7 +10305,7 @@
9726
10305
  },
9727
10306
  {
9728
10307
  "name": "initialValue",
9729
- "type": "Record<string, unknown>[]",
10308
+ "type": "Item[]",
9730
10309
  "optional": true,
9731
10310
  "default": null,
9732
10311
  "description": "",
@@ -9758,7 +10337,7 @@
9758
10337
  },
9759
10338
  {
9760
10339
  "name": "itemRender",
9761
- "type": "(props: { listDom: ReactNode; action: ProFormListAction }) => ReactNode",
10340
+ "type": "(props: { listDom: ReactNode; action: ProFormListAction<Item> }) => ReactNode",
9762
10341
  "optional": true,
9763
10342
  "default": null,
9764
10343
  "description": "",
@@ -9766,7 +10345,7 @@
9766
10345
  },
9767
10346
  {
9768
10347
  "name": "actionRender",
9769
- "type": "(\n row: { index: number; record: unknown },\n action: ProFormListAction,\n defaultDom: { copy: ReactNode; delete: ReactNode },\n ) => ReactNode",
10348
+ "type": "(\n row: { index: number; record: Item },\n action: ProFormListAction<Item>,\n defaultDom: { copy: ReactNode; delete: ReactNode },\n ) => ReactNode",
9770
10349
  "optional": true,
9771
10350
  "default": null,
9772
10351
  "description": "",
@@ -9774,7 +10353,7 @@
9774
10353
  },
9775
10354
  {
9776
10355
  "name": "children",
9777
- "type": "ReactNode | ((fields: Array<{ name: string; key: string }>, action: ProFormListAction) => ReactNode)",
10356
+ "type": "ReactNode | ((fields: Array<{ name: string; key: string }>, action: ProFormListAction<Item>) => ReactNode)",
9778
10357
  "optional": true,
9779
10358
  "default": null,
9780
10359
  "description": "",
@@ -9782,7 +10361,7 @@
9782
10361
  },
9783
10362
  {
9784
10363
  "name": "onAfterAdd",
9785
- "type": "(defaultValue: Record<string, unknown>, index: number) => void",
10364
+ "type": "(defaultValue: Item, index: number) => void",
9786
10365
  "optional": true,
9787
10366
  "default": null,
9788
10367
  "description": "",
@@ -9807,6 +10386,7 @@
9807
10386
  "FormCoreInstance",
9808
10387
  "FormInstance",
9809
10388
  "FormLayout",
10389
+ "FormListContextValue",
9810
10390
  "FormSize",
9811
10391
  "LabelAlign",
9812
10392
  "ProForm",
@@ -9820,10 +10400,12 @@
9820
10400
  "ProFormDependencyProps",
9821
10401
  "ProFormFieldConvertValueFn",
9822
10402
  "ProFormFieldName",
10403
+ "ProFormFieldOptionValue",
9823
10404
  "ProFormFieldProps",
9824
10405
  "ProFormFieldSet",
9825
10406
  "ProFormFieldSetProps",
9826
10407
  "ProFormFieldTransformFn",
10408
+ "ProFormFieldValueMap",
9827
10409
  "ProFormFormInstance",
9828
10410
  "ProFormGroup",
9829
10411
  "ProFormGroupProps",
@@ -9835,20 +10417,27 @@
9835
10417
  "ProFormListProps",
9836
10418
  "ProFormMode",
9837
10419
  "ProFormPassword",
10420
+ "ProFormPathValue",
9838
10421
  "ProFormProps",
9839
10422
  "ProFormRadioGroup",
10423
+ "ProFormRecursivePartial",
9840
10424
  "ProFormRequestOption",
9841
10425
  "ProFormSchemaColumn",
10426
+ "ProFormSchemaColumns",
9842
10427
  "ProFormSchemaValueType",
9843
10428
  "ProFormSelect",
9844
10429
  "ProFormSlider",
10430
+ "ProFormStableContextValue",
10431
+ "ProFormStateContextValue",
9845
10432
  "ProFormSwitch",
10433
+ "ProFormSyncToUrl",
9846
10434
  "ProFormText",
9847
10435
  "ProFormTextArea",
9848
10436
  "ProFormUpload",
9849
10437
  "ProFormValidateResult",
9850
10438
  "ProFormValueEnumObj",
9851
10439
  "ProFormValueType",
10440
+ "ProFormValuesPatch",
9852
10441
  "QueryFilter",
9853
10442
  "QueryFilterProps",
9854
10443
  "Rule",
@@ -9889,6 +10478,7 @@
9889
10478
  "FormCoreInstance",
9890
10479
  "FormInstance",
9891
10480
  "FormLayout",
10481
+ "FormListContextValue",
9892
10482
  "FormSize",
9893
10483
  "LabelAlign",
9894
10484
  "ProForm",
@@ -9902,10 +10492,12 @@
9902
10492
  "ProFormDependencyProps",
9903
10493
  "ProFormFieldConvertValueFn",
9904
10494
  "ProFormFieldName",
10495
+ "ProFormFieldOptionValue",
9905
10496
  "ProFormFieldProps",
9906
10497
  "ProFormFieldSet",
9907
10498
  "ProFormFieldSetProps",
9908
10499
  "ProFormFieldTransformFn",
10500
+ "ProFormFieldValueMap",
9909
10501
  "ProFormFormInstance",
9910
10502
  "ProFormGroup",
9911
10503
  "ProFormGroupProps",
@@ -9917,20 +10509,27 @@
9917
10509
  "ProFormListProps",
9918
10510
  "ProFormMode",
9919
10511
  "ProFormPassword",
10512
+ "ProFormPathValue",
9920
10513
  "ProFormProps",
9921
10514
  "ProFormRadioGroup",
10515
+ "ProFormRecursivePartial",
9922
10516
  "ProFormRequestOption",
9923
10517
  "ProFormSchemaColumn",
10518
+ "ProFormSchemaColumns",
9924
10519
  "ProFormSchemaValueType",
9925
10520
  "ProFormSelect",
9926
10521
  "ProFormSlider",
10522
+ "ProFormStableContextValue",
10523
+ "ProFormStateContextValue",
9927
10524
  "ProFormSwitch",
10525
+ "ProFormSyncToUrl",
9928
10526
  "ProFormText",
9929
10527
  "ProFormTextArea",
9930
10528
  "ProFormUpload",
9931
10529
  "ProFormValidateResult",
9932
10530
  "ProFormValueEnumObj",
9933
10531
  "ProFormValueType",
10532
+ "ProFormValuesPatch",
9934
10533
  "QueryFilter",
9935
10534
  "QueryFilterProps",
9936
10535
  "Rule",
@@ -9972,6 +10571,7 @@
9972
10571
  "FormCoreInstance",
9973
10572
  "FormInstance",
9974
10573
  "FormLayout",
10574
+ "FormListContextValue",
9975
10575
  "FormSize",
9976
10576
  "LabelAlign",
9977
10577
  "ProForm",
@@ -9985,10 +10585,12 @@
9985
10585
  "ProFormDependencyProps",
9986
10586
  "ProFormFieldConvertValueFn",
9987
10587
  "ProFormFieldName",
10588
+ "ProFormFieldOptionValue",
9988
10589
  "ProFormFieldProps",
9989
10590
  "ProFormFieldSet",
9990
10591
  "ProFormFieldSetProps",
9991
10592
  "ProFormFieldTransformFn",
10593
+ "ProFormFieldValueMap",
9992
10594
  "ProFormFormInstance",
9993
10595
  "ProFormGroup",
9994
10596
  "ProFormGroupProps",
@@ -10000,20 +10602,27 @@
10000
10602
  "ProFormListAction",
10001
10603
  "ProFormMode",
10002
10604
  "ProFormPassword",
10605
+ "ProFormPathValue",
10003
10606
  "ProFormProps",
10004
10607
  "ProFormRadioGroup",
10608
+ "ProFormRecursivePartial",
10005
10609
  "ProFormRequestOption",
10006
10610
  "ProFormSchemaColumn",
10611
+ "ProFormSchemaColumns",
10007
10612
  "ProFormSchemaValueType",
10008
10613
  "ProFormSelect",
10009
10614
  "ProFormSlider",
10615
+ "ProFormStableContextValue",
10616
+ "ProFormStateContextValue",
10010
10617
  "ProFormSwitch",
10618
+ "ProFormSyncToUrl",
10011
10619
  "ProFormText",
10012
10620
  "ProFormTextArea",
10013
10621
  "ProFormUpload",
10014
10622
  "ProFormValidateResult",
10015
10623
  "ProFormValueEnumObj",
10016
10624
  "ProFormValueType",
10625
+ "ProFormValuesPatch",
10017
10626
  "QueryFilter",
10018
10627
  "QueryFilterProps",
10019
10628
  "Rule",
@@ -10055,6 +10664,7 @@
10055
10664
  "FormCoreInstance",
10056
10665
  "FormInstance",
10057
10666
  "FormLayout",
10667
+ "FormListContextValue",
10058
10668
  "FormSize",
10059
10669
  "LabelAlign",
10060
10670
  "ProForm",
@@ -10068,10 +10678,12 @@
10068
10678
  "ProFormDependencyProps",
10069
10679
  "ProFormFieldConvertValueFn",
10070
10680
  "ProFormFieldName",
10681
+ "ProFormFieldOptionValue",
10071
10682
  "ProFormFieldProps",
10072
10683
  "ProFormFieldSet",
10073
10684
  "ProFormFieldSetProps",
10074
10685
  "ProFormFieldTransformFn",
10686
+ "ProFormFieldValueMap",
10075
10687
  "ProFormFormInstance",
10076
10688
  "ProFormGroup",
10077
10689
  "ProFormGroupProps",
@@ -10083,20 +10695,27 @@
10083
10695
  "ProFormListAction",
10084
10696
  "ProFormListProps",
10085
10697
  "ProFormPassword",
10698
+ "ProFormPathValue",
10086
10699
  "ProFormProps",
10087
10700
  "ProFormRadioGroup",
10701
+ "ProFormRecursivePartial",
10088
10702
  "ProFormRequestOption",
10089
10703
  "ProFormSchemaColumn",
10704
+ "ProFormSchemaColumns",
10090
10705
  "ProFormSchemaValueType",
10091
10706
  "ProFormSelect",
10092
10707
  "ProFormSlider",
10708
+ "ProFormStableContextValue",
10709
+ "ProFormStateContextValue",
10093
10710
  "ProFormSwitch",
10711
+ "ProFormSyncToUrl",
10094
10712
  "ProFormText",
10095
10713
  "ProFormTextArea",
10096
10714
  "ProFormUpload",
10097
10715
  "ProFormValidateResult",
10098
10716
  "ProFormValueEnumObj",
10099
10717
  "ProFormValueType",
10718
+ "ProFormValuesPatch",
10100
10719
  "QueryFilter",
10101
10720
  "QueryFilterProps",
10102
10721
  "Rule",
@@ -10138,6 +10757,7 @@
10138
10757
  "FormCoreInstance",
10139
10758
  "FormInstance",
10140
10759
  "FormLayout",
10760
+ "FormListContextValue",
10141
10761
  "FormSize",
10142
10762
  "LabelAlign",
10143
10763
  "ProForm",
@@ -10151,10 +10771,12 @@
10151
10771
  "ProFormDependencyProps",
10152
10772
  "ProFormFieldConvertValueFn",
10153
10773
  "ProFormFieldName",
10774
+ "ProFormFieldOptionValue",
10154
10775
  "ProFormFieldProps",
10155
10776
  "ProFormFieldSet",
10156
10777
  "ProFormFieldSetProps",
10157
10778
  "ProFormFieldTransformFn",
10779
+ "ProFormFieldValueMap",
10158
10780
  "ProFormFormInstance",
10159
10781
  "ProFormGroup",
10160
10782
  "ProFormGroupProps",
@@ -10166,20 +10788,27 @@
10166
10788
  "ProFormListAction",
10167
10789
  "ProFormListProps",
10168
10790
  "ProFormMode",
10791
+ "ProFormPathValue",
10169
10792
  "ProFormProps",
10170
10793
  "ProFormRadioGroup",
10794
+ "ProFormRecursivePartial",
10171
10795
  "ProFormRequestOption",
10172
10796
  "ProFormSchemaColumn",
10797
+ "ProFormSchemaColumns",
10173
10798
  "ProFormSchemaValueType",
10174
10799
  "ProFormSelect",
10175
10800
  "ProFormSlider",
10801
+ "ProFormStableContextValue",
10802
+ "ProFormStateContextValue",
10176
10803
  "ProFormSwitch",
10804
+ "ProFormSyncToUrl",
10177
10805
  "ProFormText",
10178
10806
  "ProFormTextArea",
10179
10807
  "ProFormUpload",
10180
10808
  "ProFormValidateResult",
10181
10809
  "ProFormValueEnumObj",
10182
10810
  "ProFormValueType",
10811
+ "ProFormValuesPatch",
10183
10812
  "QueryFilter",
10184
10813
  "QueryFilterProps",
10185
10814
  "Rule",
@@ -10202,13 +10831,13 @@
10202
10831
  ]
10203
10832
  },
10204
10833
  {
10205
- "name": "ProFormProps",
10834
+ "name": "ProFormPathValue",
10206
10835
  "kind": "type",
10207
10836
  "category": "forms",
10208
10837
  "summary": "",
10209
10838
  "importPath": "@1money/component-ui",
10210
10839
  "subpathImport": "@1money/component-ui/ProForm",
10211
- "sourceFile": "src/components/ProForm/interface.ts",
10840
+ "sourceFile": "src/components/ProForm/core/namePathType.ts",
10212
10841
  "props": [],
10213
10842
  "extends": [],
10214
10843
  "relatedSymbols": [
@@ -10220,6 +10849,7 @@
10220
10849
  "FormCoreInstance",
10221
10850
  "FormInstance",
10222
10851
  "FormLayout",
10852
+ "FormListContextValue",
10223
10853
  "FormSize",
10224
10854
  "LabelAlign",
10225
10855
  "ProForm",
@@ -10233,10 +10863,12 @@
10233
10863
  "ProFormDependencyProps",
10234
10864
  "ProFormFieldConvertValueFn",
10235
10865
  "ProFormFieldName",
10866
+ "ProFormFieldOptionValue",
10236
10867
  "ProFormFieldProps",
10237
10868
  "ProFormFieldSet",
10238
10869
  "ProFormFieldSetProps",
10239
10870
  "ProFormFieldTransformFn",
10871
+ "ProFormFieldValueMap",
10240
10872
  "ProFormFormInstance",
10241
10873
  "ProFormGroup",
10242
10874
  "ProFormGroupProps",
@@ -10249,19 +10881,26 @@
10249
10881
  "ProFormListProps",
10250
10882
  "ProFormMode",
10251
10883
  "ProFormPassword",
10884
+ "ProFormProps",
10252
10885
  "ProFormRadioGroup",
10886
+ "ProFormRecursivePartial",
10253
10887
  "ProFormRequestOption",
10254
10888
  "ProFormSchemaColumn",
10889
+ "ProFormSchemaColumns",
10255
10890
  "ProFormSchemaValueType",
10256
10891
  "ProFormSelect",
10257
10892
  "ProFormSlider",
10893
+ "ProFormStableContextValue",
10894
+ "ProFormStateContextValue",
10258
10895
  "ProFormSwitch",
10896
+ "ProFormSyncToUrl",
10259
10897
  "ProFormText",
10260
10898
  "ProFormTextArea",
10261
10899
  "ProFormUpload",
10262
10900
  "ProFormValidateResult",
10263
10901
  "ProFormValueEnumObj",
10264
10902
  "ProFormValueType",
10903
+ "ProFormValuesPatch",
10265
10904
  "QueryFilter",
10266
10905
  "QueryFilterProps",
10267
10906
  "Rule",
@@ -10275,7 +10914,7 @@
10275
10914
  "useFormWatch"
10276
10915
  ],
10277
10916
  "searchTags": [],
10278
- "typeText": "interface ProFormProps extends Omit<FormHTMLAttributes<HTMLFormElement>, 'onSubmit' | 'onReset'> { ... }",
10917
+ "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",
10279
10918
  "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';",
10280
10919
  "examples": [
10281
10920
  {
@@ -10285,13 +10924,13 @@
10285
10924
  ]
10286
10925
  },
10287
10926
  {
10288
- "name": "ProFormRadioGroup",
10289
- "kind": "component",
10927
+ "name": "ProFormProps",
10928
+ "kind": "type",
10290
10929
  "category": "forms",
10291
10930
  "summary": "",
10292
10931
  "importPath": "@1money/component-ui",
10293
10932
  "subpathImport": "@1money/component-ui/ProForm",
10294
- "sourceFile": "src/components/ProForm/fields/ProFormRadioGroup.tsx",
10933
+ "sourceFile": "src/components/ProForm/interface.ts",
10295
10934
  "props": [],
10296
10935
  "extends": [],
10297
10936
  "relatedSymbols": [
@@ -10303,6 +10942,7 @@
10303
10942
  "FormCoreInstance",
10304
10943
  "FormInstance",
10305
10944
  "FormLayout",
10945
+ "FormListContextValue",
10306
10946
  "FormSize",
10307
10947
  "LabelAlign",
10308
10948
  "ProForm",
@@ -10316,10 +10956,12 @@
10316
10956
  "ProFormDependencyProps",
10317
10957
  "ProFormFieldConvertValueFn",
10318
10958
  "ProFormFieldName",
10959
+ "ProFormFieldOptionValue",
10319
10960
  "ProFormFieldProps",
10320
10961
  "ProFormFieldSet",
10321
10962
  "ProFormFieldSetProps",
10322
10963
  "ProFormFieldTransformFn",
10964
+ "ProFormFieldValueMap",
10323
10965
  "ProFormFormInstance",
10324
10966
  "ProFormGroup",
10325
10967
  "ProFormGroupProps",
@@ -10332,19 +10974,26 @@
10332
10974
  "ProFormListProps",
10333
10975
  "ProFormMode",
10334
10976
  "ProFormPassword",
10335
- "ProFormProps",
10977
+ "ProFormPathValue",
10978
+ "ProFormRadioGroup",
10979
+ "ProFormRecursivePartial",
10336
10980
  "ProFormRequestOption",
10337
10981
  "ProFormSchemaColumn",
10982
+ "ProFormSchemaColumns",
10338
10983
  "ProFormSchemaValueType",
10339
10984
  "ProFormSelect",
10340
10985
  "ProFormSlider",
10986
+ "ProFormStableContextValue",
10987
+ "ProFormStateContextValue",
10341
10988
  "ProFormSwitch",
10989
+ "ProFormSyncToUrl",
10342
10990
  "ProFormText",
10343
10991
  "ProFormTextArea",
10344
10992
  "ProFormUpload",
10345
10993
  "ProFormValidateResult",
10346
10994
  "ProFormValueEnumObj",
10347
10995
  "ProFormValueType",
10996
+ "ProFormValuesPatch",
10348
10997
  "QueryFilter",
10349
10998
  "QueryFilterProps",
10350
10999
  "Rule",
@@ -10358,6 +11007,7 @@
10358
11007
  "useFormWatch"
10359
11008
  ],
10360
11009
  "searchTags": [],
11010
+ "typeText": "interface ProFormProps extends Omit<FormHTMLAttributes<HTMLFormElement>, 'onSubmit' | 'onReset'> { ... }",
10361
11011
  "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';",
10362
11012
  "examples": [
10363
11013
  {
@@ -10367,13 +11017,13 @@
10367
11017
  ]
10368
11018
  },
10369
11019
  {
10370
- "name": "ProFormRequestOption",
10371
- "kind": "type",
11020
+ "name": "ProFormRadioGroup",
11021
+ "kind": "component",
10372
11022
  "category": "forms",
10373
11023
  "summary": "",
10374
11024
  "importPath": "@1money/component-ui",
10375
11025
  "subpathImport": "@1money/component-ui/ProForm",
10376
- "sourceFile": "src/components/ProForm/interface.ts",
11026
+ "sourceFile": "src/components/ProForm/fields/ProFormRadioGroup.tsx",
10377
11027
  "props": [],
10378
11028
  "extends": [],
10379
11029
  "relatedSymbols": [
@@ -10385,6 +11035,7 @@
10385
11035
  "FormCoreInstance",
10386
11036
  "FormInstance",
10387
11037
  "FormLayout",
11038
+ "FormListContextValue",
10388
11039
  "FormSize",
10389
11040
  "LabelAlign",
10390
11041
  "ProForm",
@@ -10398,10 +11049,12 @@
10398
11049
  "ProFormDependencyProps",
10399
11050
  "ProFormFieldConvertValueFn",
10400
11051
  "ProFormFieldName",
11052
+ "ProFormFieldOptionValue",
10401
11053
  "ProFormFieldProps",
10402
11054
  "ProFormFieldSet",
10403
11055
  "ProFormFieldSetProps",
10404
11056
  "ProFormFieldTransformFn",
11057
+ "ProFormFieldValueMap",
10405
11058
  "ProFormFormInstance",
10406
11059
  "ProFormGroup",
10407
11060
  "ProFormGroupProps",
@@ -10414,19 +11067,26 @@
10414
11067
  "ProFormListProps",
10415
11068
  "ProFormMode",
10416
11069
  "ProFormPassword",
11070
+ "ProFormPathValue",
10417
11071
  "ProFormProps",
10418
- "ProFormRadioGroup",
11072
+ "ProFormRecursivePartial",
11073
+ "ProFormRequestOption",
10419
11074
  "ProFormSchemaColumn",
11075
+ "ProFormSchemaColumns",
10420
11076
  "ProFormSchemaValueType",
10421
11077
  "ProFormSelect",
10422
11078
  "ProFormSlider",
11079
+ "ProFormStableContextValue",
11080
+ "ProFormStateContextValue",
10423
11081
  "ProFormSwitch",
11082
+ "ProFormSyncToUrl",
10424
11083
  "ProFormText",
10425
11084
  "ProFormTextArea",
10426
11085
  "ProFormUpload",
10427
11086
  "ProFormValidateResult",
10428
11087
  "ProFormValueEnumObj",
10429
11088
  "ProFormValueType",
11089
+ "ProFormValuesPatch",
10430
11090
  "QueryFilter",
10431
11091
  "QueryFilterProps",
10432
11092
  "Rule",
@@ -10440,7 +11100,6 @@
10440
11100
  "useFormWatch"
10441
11101
  ],
10442
11102
  "searchTags": [],
10443
- "typeText": "interface ProFormRequestOption { ... }",
10444
11103
  "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';",
10445
11104
  "examples": [
10446
11105
  {
@@ -10450,13 +11109,13 @@
10450
11109
  ]
10451
11110
  },
10452
11111
  {
10453
- "name": "ProFormSchemaColumn",
11112
+ "name": "ProFormRecursivePartial",
10454
11113
  "kind": "type",
10455
11114
  "category": "forms",
10456
11115
  "summary": "",
10457
11116
  "importPath": "@1money/component-ui",
10458
11117
  "subpathImport": "@1money/component-ui/ProForm",
10459
- "sourceFile": "src/components/ProForm/interface.ts",
11118
+ "sourceFile": "src/components/ProForm/core/namePathType.ts",
10460
11119
  "props": [],
10461
11120
  "extends": [],
10462
11121
  "relatedSymbols": [
@@ -10468,6 +11127,7 @@
10468
11127
  "FormCoreInstance",
10469
11128
  "FormInstance",
10470
11129
  "FormLayout",
11130
+ "FormListContextValue",
10471
11131
  "FormSize",
10472
11132
  "LabelAlign",
10473
11133
  "ProForm",
@@ -10481,10 +11141,12 @@
10481
11141
  "ProFormDependencyProps",
10482
11142
  "ProFormFieldConvertValueFn",
10483
11143
  "ProFormFieldName",
11144
+ "ProFormFieldOptionValue",
10484
11145
  "ProFormFieldProps",
10485
11146
  "ProFormFieldSet",
10486
11147
  "ProFormFieldSetProps",
10487
11148
  "ProFormFieldTransformFn",
11149
+ "ProFormFieldValueMap",
10488
11150
  "ProFormFormInstance",
10489
11151
  "ProFormGroup",
10490
11152
  "ProFormGroupProps",
@@ -10497,19 +11159,26 @@
10497
11159
  "ProFormListProps",
10498
11160
  "ProFormMode",
10499
11161
  "ProFormPassword",
11162
+ "ProFormPathValue",
10500
11163
  "ProFormProps",
10501
11164
  "ProFormRadioGroup",
10502
11165
  "ProFormRequestOption",
11166
+ "ProFormSchemaColumn",
11167
+ "ProFormSchemaColumns",
10503
11168
  "ProFormSchemaValueType",
10504
11169
  "ProFormSelect",
10505
11170
  "ProFormSlider",
11171
+ "ProFormStableContextValue",
11172
+ "ProFormStateContextValue",
10506
11173
  "ProFormSwitch",
11174
+ "ProFormSyncToUrl",
10507
11175
  "ProFormText",
10508
11176
  "ProFormTextArea",
10509
11177
  "ProFormUpload",
10510
11178
  "ProFormValidateResult",
10511
11179
  "ProFormValueEnumObj",
10512
11180
  "ProFormValueType",
11181
+ "ProFormValuesPatch",
10513
11182
  "QueryFilter",
10514
11183
  "QueryFilterProps",
10515
11184
  "Rule",
@@ -10523,7 +11192,7 @@
10523
11192
  "useFormWatch"
10524
11193
  ],
10525
11194
  "searchTags": [],
10526
- "typeText": "interface ProFormSchemaColumn { ... }",
11195
+ "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",
10527
11196
  "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';",
10528
11197
  "examples": [
10529
11198
  {
@@ -10533,7 +11202,7 @@
10533
11202
  ]
10534
11203
  },
10535
11204
  {
10536
- "name": "ProFormSchemaValueType",
11205
+ "name": "ProFormRequestOption",
10537
11206
  "kind": "type",
10538
11207
  "category": "forms",
10539
11208
  "summary": "",
@@ -10551,6 +11220,7 @@
10551
11220
  "FormCoreInstance",
10552
11221
  "FormInstance",
10553
11222
  "FormLayout",
11223
+ "FormListContextValue",
10554
11224
  "FormSize",
10555
11225
  "LabelAlign",
10556
11226
  "ProForm",
@@ -10564,10 +11234,12 @@
10564
11234
  "ProFormDependencyProps",
10565
11235
  "ProFormFieldConvertValueFn",
10566
11236
  "ProFormFieldName",
11237
+ "ProFormFieldOptionValue",
10567
11238
  "ProFormFieldProps",
10568
11239
  "ProFormFieldSet",
10569
11240
  "ProFormFieldSetProps",
10570
11241
  "ProFormFieldTransformFn",
11242
+ "ProFormFieldValueMap",
10571
11243
  "ProFormFormInstance",
10572
11244
  "ProFormGroup",
10573
11245
  "ProFormGroupProps",
@@ -10580,19 +11252,26 @@
10580
11252
  "ProFormListProps",
10581
11253
  "ProFormMode",
10582
11254
  "ProFormPassword",
11255
+ "ProFormPathValue",
10583
11256
  "ProFormProps",
10584
11257
  "ProFormRadioGroup",
10585
- "ProFormRequestOption",
11258
+ "ProFormRecursivePartial",
10586
11259
  "ProFormSchemaColumn",
11260
+ "ProFormSchemaColumns",
11261
+ "ProFormSchemaValueType",
10587
11262
  "ProFormSelect",
10588
11263
  "ProFormSlider",
11264
+ "ProFormStableContextValue",
11265
+ "ProFormStateContextValue",
10589
11266
  "ProFormSwitch",
11267
+ "ProFormSyncToUrl",
10590
11268
  "ProFormText",
10591
11269
  "ProFormTextArea",
10592
11270
  "ProFormUpload",
10593
11271
  "ProFormValidateResult",
10594
11272
  "ProFormValueEnumObj",
10595
11273
  "ProFormValueType",
11274
+ "ProFormValuesPatch",
10596
11275
  "QueryFilter",
10597
11276
  "QueryFilterProps",
10598
11277
  "Rule",
@@ -10606,7 +11285,7 @@
10606
11285
  "useFormWatch"
10607
11286
  ],
10608
11287
  "searchTags": [],
10609
- "typeText": "| 'text'\n | 'password'\n | 'textarea'\n | 'digit'\n | 'select'\n | 'checkbox'\n | 'checkboxGroup'\n | 'radioGroup'\n | 'switch'\n | 'slider'\n | 'date'\n | 'dateTime'\n | 'upload'",
11288
+ "typeText": "interface ProFormRequestOption { ... }",
10610
11289
  "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';",
10611
11290
  "examples": [
10612
11291
  {
@@ -10616,13 +11295,13 @@
10616
11295
  ]
10617
11296
  },
10618
11297
  {
10619
- "name": "ProFormSelect",
10620
- "kind": "component",
11298
+ "name": "ProFormSchemaColumn",
11299
+ "kind": "type",
10621
11300
  "category": "forms",
10622
11301
  "summary": "",
10623
11302
  "importPath": "@1money/component-ui",
10624
11303
  "subpathImport": "@1money/component-ui/ProForm",
10625
- "sourceFile": "src/components/ProForm/fields/ProFormSelect.tsx",
11304
+ "sourceFile": "src/components/ProForm/interface.ts",
10626
11305
  "props": [],
10627
11306
  "extends": [],
10628
11307
  "relatedSymbols": [
@@ -10634,6 +11313,7 @@
10634
11313
  "FormCoreInstance",
10635
11314
  "FormInstance",
10636
11315
  "FormLayout",
11316
+ "FormListContextValue",
10637
11317
  "FormSize",
10638
11318
  "LabelAlign",
10639
11319
  "ProForm",
@@ -10647,10 +11327,12 @@
10647
11327
  "ProFormDependencyProps",
10648
11328
  "ProFormFieldConvertValueFn",
10649
11329
  "ProFormFieldName",
11330
+ "ProFormFieldOptionValue",
10650
11331
  "ProFormFieldProps",
10651
11332
  "ProFormFieldSet",
10652
11333
  "ProFormFieldSetProps",
10653
11334
  "ProFormFieldTransformFn",
11335
+ "ProFormFieldValueMap",
10654
11336
  "ProFormFormInstance",
10655
11337
  "ProFormGroup",
10656
11338
  "ProFormGroupProps",
@@ -10663,19 +11345,26 @@
10663
11345
  "ProFormListProps",
10664
11346
  "ProFormMode",
10665
11347
  "ProFormPassword",
11348
+ "ProFormPathValue",
10666
11349
  "ProFormProps",
10667
11350
  "ProFormRadioGroup",
11351
+ "ProFormRecursivePartial",
10668
11352
  "ProFormRequestOption",
10669
- "ProFormSchemaColumn",
11353
+ "ProFormSchemaColumns",
10670
11354
  "ProFormSchemaValueType",
11355
+ "ProFormSelect",
10671
11356
  "ProFormSlider",
11357
+ "ProFormStableContextValue",
11358
+ "ProFormStateContextValue",
10672
11359
  "ProFormSwitch",
11360
+ "ProFormSyncToUrl",
10673
11361
  "ProFormText",
10674
11362
  "ProFormTextArea",
10675
11363
  "ProFormUpload",
10676
11364
  "ProFormValidateResult",
10677
11365
  "ProFormValueEnumObj",
10678
11366
  "ProFormValueType",
11367
+ "ProFormValuesPatch",
10679
11368
  "QueryFilter",
10680
11369
  "QueryFilterProps",
10681
11370
  "Rule",
@@ -10689,6 +11378,7 @@
10689
11378
  "useFormWatch"
10690
11379
  ],
10691
11380
  "searchTags": [],
11381
+ "typeText": "interface ProFormSchemaColumn { ... }",
10692
11382
  "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';",
10693
11383
  "examples": [
10694
11384
  {
@@ -10698,13 +11388,13 @@
10698
11388
  ]
10699
11389
  },
10700
11390
  {
10701
- "name": "ProFormSlider",
10702
- "kind": "component",
11391
+ "name": "ProFormSchemaColumns",
11392
+ "kind": "type",
10703
11393
  "category": "forms",
10704
11394
  "summary": "",
10705
11395
  "importPath": "@1money/component-ui",
10706
11396
  "subpathImport": "@1money/component-ui/ProForm",
10707
- "sourceFile": "src/components/ProForm/fields/ProFormSlider.tsx",
11397
+ "sourceFile": "src/components/ProForm/interface.ts",
10708
11398
  "props": [],
10709
11399
  "extends": [],
10710
11400
  "relatedSymbols": [
@@ -10716,6 +11406,7 @@
10716
11406
  "FormCoreInstance",
10717
11407
  "FormInstance",
10718
11408
  "FormLayout",
11409
+ "FormListContextValue",
10719
11410
  "FormSize",
10720
11411
  "LabelAlign",
10721
11412
  "ProForm",
@@ -10729,10 +11420,12 @@
10729
11420
  "ProFormDependencyProps",
10730
11421
  "ProFormFieldConvertValueFn",
10731
11422
  "ProFormFieldName",
11423
+ "ProFormFieldOptionValue",
10732
11424
  "ProFormFieldProps",
10733
11425
  "ProFormFieldSet",
10734
11426
  "ProFormFieldSetProps",
10735
11427
  "ProFormFieldTransformFn",
11428
+ "ProFormFieldValueMap",
10736
11429
  "ProFormFormInstance",
10737
11430
  "ProFormGroup",
10738
11431
  "ProFormGroupProps",
@@ -10745,19 +11438,26 @@
10745
11438
  "ProFormListProps",
10746
11439
  "ProFormMode",
10747
11440
  "ProFormPassword",
11441
+ "ProFormPathValue",
10748
11442
  "ProFormProps",
10749
11443
  "ProFormRadioGroup",
11444
+ "ProFormRecursivePartial",
10750
11445
  "ProFormRequestOption",
10751
11446
  "ProFormSchemaColumn",
10752
11447
  "ProFormSchemaValueType",
10753
11448
  "ProFormSelect",
11449
+ "ProFormSlider",
11450
+ "ProFormStableContextValue",
11451
+ "ProFormStateContextValue",
10754
11452
  "ProFormSwitch",
11453
+ "ProFormSyncToUrl",
10755
11454
  "ProFormText",
10756
11455
  "ProFormTextArea",
10757
11456
  "ProFormUpload",
10758
11457
  "ProFormValidateResult",
10759
11458
  "ProFormValueEnumObj",
10760
11459
  "ProFormValueType",
11460
+ "ProFormValuesPatch",
10761
11461
  "QueryFilter",
10762
11462
  "QueryFilterProps",
10763
11463
  "Rule",
@@ -10771,6 +11471,7 @@
10771
11471
  "useFormWatch"
10772
11472
  ],
10773
11473
  "searchTags": [],
11474
+ "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>",
10774
11475
  "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';",
10775
11476
  "examples": [
10776
11477
  {
@@ -10780,13 +11481,13 @@
10780
11481
  ]
10781
11482
  },
10782
11483
  {
10783
- "name": "ProFormSwitch",
10784
- "kind": "component",
11484
+ "name": "ProFormSchemaValueType",
11485
+ "kind": "type",
10785
11486
  "category": "forms",
10786
11487
  "summary": "",
10787
11488
  "importPath": "@1money/component-ui",
10788
11489
  "subpathImport": "@1money/component-ui/ProForm",
10789
- "sourceFile": "src/components/ProForm/fields/ProFormSwitch.tsx",
11490
+ "sourceFile": "src/components/ProForm/interface.ts",
10790
11491
  "props": [],
10791
11492
  "extends": [],
10792
11493
  "relatedSymbols": [
@@ -10798,6 +11499,7 @@
10798
11499
  "FormCoreInstance",
10799
11500
  "FormInstance",
10800
11501
  "FormLayout",
11502
+ "FormListContextValue",
10801
11503
  "FormSize",
10802
11504
  "LabelAlign",
10803
11505
  "ProForm",
@@ -10811,10 +11513,12 @@
10811
11513
  "ProFormDependencyProps",
10812
11514
  "ProFormFieldConvertValueFn",
10813
11515
  "ProFormFieldName",
11516
+ "ProFormFieldOptionValue",
10814
11517
  "ProFormFieldProps",
10815
11518
  "ProFormFieldSet",
10816
11519
  "ProFormFieldSetProps",
10817
11520
  "ProFormFieldTransformFn",
11521
+ "ProFormFieldValueMap",
10818
11522
  "ProFormFormInstance",
10819
11523
  "ProFormGroup",
10820
11524
  "ProFormGroupProps",
@@ -10827,19 +11531,26 @@
10827
11531
  "ProFormListProps",
10828
11532
  "ProFormMode",
10829
11533
  "ProFormPassword",
11534
+ "ProFormPathValue",
10830
11535
  "ProFormProps",
10831
11536
  "ProFormRadioGroup",
11537
+ "ProFormRecursivePartial",
10832
11538
  "ProFormRequestOption",
10833
11539
  "ProFormSchemaColumn",
10834
- "ProFormSchemaValueType",
11540
+ "ProFormSchemaColumns",
10835
11541
  "ProFormSelect",
10836
11542
  "ProFormSlider",
11543
+ "ProFormStableContextValue",
11544
+ "ProFormStateContextValue",
11545
+ "ProFormSwitch",
11546
+ "ProFormSyncToUrl",
10837
11547
  "ProFormText",
10838
11548
  "ProFormTextArea",
10839
11549
  "ProFormUpload",
10840
11550
  "ProFormValidateResult",
10841
11551
  "ProFormValueEnumObj",
10842
11552
  "ProFormValueType",
11553
+ "ProFormValuesPatch",
10843
11554
  "QueryFilter",
10844
11555
  "QueryFilterProps",
10845
11556
  "Rule",
@@ -10853,6 +11564,7 @@
10853
11564
  "useFormWatch"
10854
11565
  ],
10855
11566
  "searchTags": [],
11567
+ "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'",
10856
11568
  "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';",
10857
11569
  "examples": [
10858
11570
  {
@@ -10862,13 +11574,13 @@
10862
11574
  ]
10863
11575
  },
10864
11576
  {
10865
- "name": "ProFormText",
11577
+ "name": "ProFormSelect",
10866
11578
  "kind": "component",
10867
11579
  "category": "forms",
10868
11580
  "summary": "",
10869
11581
  "importPath": "@1money/component-ui",
10870
11582
  "subpathImport": "@1money/component-ui/ProForm",
10871
- "sourceFile": "src/components/ProForm/fields/ProFormText.tsx",
11583
+ "sourceFile": "src/components/ProForm/fields/ProFormSelect.tsx",
10872
11584
  "props": [],
10873
11585
  "extends": [],
10874
11586
  "relatedSymbols": [
@@ -10880,6 +11592,7 @@
10880
11592
  "FormCoreInstance",
10881
11593
  "FormInstance",
10882
11594
  "FormLayout",
11595
+ "FormListContextValue",
10883
11596
  "FormSize",
10884
11597
  "LabelAlign",
10885
11598
  "ProForm",
@@ -10893,10 +11606,12 @@
10893
11606
  "ProFormDependencyProps",
10894
11607
  "ProFormFieldConvertValueFn",
10895
11608
  "ProFormFieldName",
11609
+ "ProFormFieldOptionValue",
10896
11610
  "ProFormFieldProps",
10897
11611
  "ProFormFieldSet",
10898
11612
  "ProFormFieldSetProps",
10899
11613
  "ProFormFieldTransformFn",
11614
+ "ProFormFieldValueMap",
10900
11615
  "ProFormFormInstance",
10901
11616
  "ProFormGroup",
10902
11617
  "ProFormGroupProps",
@@ -10909,19 +11624,26 @@
10909
11624
  "ProFormListProps",
10910
11625
  "ProFormMode",
10911
11626
  "ProFormPassword",
11627
+ "ProFormPathValue",
10912
11628
  "ProFormProps",
10913
11629
  "ProFormRadioGroup",
11630
+ "ProFormRecursivePartial",
10914
11631
  "ProFormRequestOption",
10915
11632
  "ProFormSchemaColumn",
11633
+ "ProFormSchemaColumns",
10916
11634
  "ProFormSchemaValueType",
10917
- "ProFormSelect",
10918
11635
  "ProFormSlider",
11636
+ "ProFormStableContextValue",
11637
+ "ProFormStateContextValue",
10919
11638
  "ProFormSwitch",
11639
+ "ProFormSyncToUrl",
11640
+ "ProFormText",
10920
11641
  "ProFormTextArea",
10921
11642
  "ProFormUpload",
10922
11643
  "ProFormValidateResult",
10923
11644
  "ProFormValueEnumObj",
10924
11645
  "ProFormValueType",
11646
+ "ProFormValuesPatch",
10925
11647
  "QueryFilter",
10926
11648
  "QueryFilterProps",
10927
11649
  "Rule",
@@ -10944,13 +11666,13 @@
10944
11666
  ]
10945
11667
  },
10946
11668
  {
10947
- "name": "ProFormTextArea",
11669
+ "name": "ProFormSlider",
10948
11670
  "kind": "component",
10949
11671
  "category": "forms",
10950
11672
  "summary": "",
10951
11673
  "importPath": "@1money/component-ui",
10952
11674
  "subpathImport": "@1money/component-ui/ProForm",
10953
- "sourceFile": "src/components/ProForm/fields/ProFormTextArea.tsx",
11675
+ "sourceFile": "src/components/ProForm/fields/ProFormSlider.tsx",
10954
11676
  "props": [],
10955
11677
  "extends": [],
10956
11678
  "relatedSymbols": [
@@ -10962,6 +11684,7 @@
10962
11684
  "FormCoreInstance",
10963
11685
  "FormInstance",
10964
11686
  "FormLayout",
11687
+ "FormListContextValue",
10965
11688
  "FormSize",
10966
11689
  "LabelAlign",
10967
11690
  "ProForm",
@@ -10975,10 +11698,12 @@
10975
11698
  "ProFormDependencyProps",
10976
11699
  "ProFormFieldConvertValueFn",
10977
11700
  "ProFormFieldName",
11701
+ "ProFormFieldOptionValue",
10978
11702
  "ProFormFieldProps",
10979
11703
  "ProFormFieldSet",
10980
11704
  "ProFormFieldSetProps",
10981
11705
  "ProFormFieldTransformFn",
11706
+ "ProFormFieldValueMap",
10982
11707
  "ProFormFormInstance",
10983
11708
  "ProFormGroup",
10984
11709
  "ProFormGroupProps",
@@ -10991,19 +11716,26 @@
10991
11716
  "ProFormListProps",
10992
11717
  "ProFormMode",
10993
11718
  "ProFormPassword",
11719
+ "ProFormPathValue",
10994
11720
  "ProFormProps",
10995
11721
  "ProFormRadioGroup",
11722
+ "ProFormRecursivePartial",
10996
11723
  "ProFormRequestOption",
10997
11724
  "ProFormSchemaColumn",
11725
+ "ProFormSchemaColumns",
10998
11726
  "ProFormSchemaValueType",
10999
11727
  "ProFormSelect",
11000
- "ProFormSlider",
11728
+ "ProFormStableContextValue",
11729
+ "ProFormStateContextValue",
11001
11730
  "ProFormSwitch",
11731
+ "ProFormSyncToUrl",
11002
11732
  "ProFormText",
11733
+ "ProFormTextArea",
11003
11734
  "ProFormUpload",
11004
11735
  "ProFormValidateResult",
11005
11736
  "ProFormValueEnumObj",
11006
11737
  "ProFormValueType",
11738
+ "ProFormValuesPatch",
11007
11739
  "QueryFilter",
11008
11740
  "QueryFilterProps",
11009
11741
  "Rule",
@@ -11026,13 +11758,13 @@
11026
11758
  ]
11027
11759
  },
11028
11760
  {
11029
- "name": "ProFormUpload",
11030
- "kind": "component",
11761
+ "name": "ProFormStableContextValue",
11762
+ "kind": "type",
11031
11763
  "category": "forms",
11032
11764
  "summary": "",
11033
11765
  "importPath": "@1money/component-ui",
11034
11766
  "subpathImport": "@1money/component-ui/ProForm",
11035
- "sourceFile": "src/components/ProForm/fields/ProFormUpload.tsx",
11767
+ "sourceFile": "src/components/ProForm/interface.ts",
11036
11768
  "props": [],
11037
11769
  "extends": [],
11038
11770
  "relatedSymbols": [
@@ -11044,6 +11776,7 @@
11044
11776
  "FormCoreInstance",
11045
11777
  "FormInstance",
11046
11778
  "FormLayout",
11779
+ "FormListContextValue",
11047
11780
  "FormSize",
11048
11781
  "LabelAlign",
11049
11782
  "ProForm",
@@ -11057,10 +11790,12 @@
11057
11790
  "ProFormDependencyProps",
11058
11791
  "ProFormFieldConvertValueFn",
11059
11792
  "ProFormFieldName",
11793
+ "ProFormFieldOptionValue",
11060
11794
  "ProFormFieldProps",
11061
11795
  "ProFormFieldSet",
11062
11796
  "ProFormFieldSetProps",
11063
11797
  "ProFormFieldTransformFn",
11798
+ "ProFormFieldValueMap",
11064
11799
  "ProFormFormInstance",
11065
11800
  "ProFormGroup",
11066
11801
  "ProFormGroupProps",
@@ -11073,19 +11808,26 @@
11073
11808
  "ProFormListProps",
11074
11809
  "ProFormMode",
11075
11810
  "ProFormPassword",
11811
+ "ProFormPathValue",
11076
11812
  "ProFormProps",
11077
11813
  "ProFormRadioGroup",
11814
+ "ProFormRecursivePartial",
11078
11815
  "ProFormRequestOption",
11079
11816
  "ProFormSchemaColumn",
11817
+ "ProFormSchemaColumns",
11080
11818
  "ProFormSchemaValueType",
11081
11819
  "ProFormSelect",
11082
11820
  "ProFormSlider",
11821
+ "ProFormStateContextValue",
11083
11822
  "ProFormSwitch",
11823
+ "ProFormSyncToUrl",
11084
11824
  "ProFormText",
11085
11825
  "ProFormTextArea",
11826
+ "ProFormUpload",
11086
11827
  "ProFormValidateResult",
11087
11828
  "ProFormValueEnumObj",
11088
11829
  "ProFormValueType",
11830
+ "ProFormValuesPatch",
11089
11831
  "QueryFilter",
11090
11832
  "QueryFilterProps",
11091
11833
  "Rule",
@@ -11099,6 +11841,7 @@
11099
11841
  "useFormWatch"
11100
11842
  ],
11101
11843
  "searchTags": [],
11844
+ "typeText": "interface ProFormStableContextValue { ... }",
11102
11845
  "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';",
11103
11846
  "examples": [
11104
11847
  {
@@ -11108,10 +11851,10 @@
11108
11851
  ]
11109
11852
  },
11110
11853
  {
11111
- "name": "ProFormValidateResult",
11854
+ "name": "ProFormStateContextValue",
11112
11855
  "kind": "type",
11113
11856
  "category": "forms",
11114
- "summary": "Result of `validateFieldsReturnFormatValue` — a discriminated union: checking `success` narrows to `values` (success) or `errors` (failure) without `!`.",
11857
+ "summary": "",
11115
11858
  "importPath": "@1money/component-ui",
11116
11859
  "subpathImport": "@1money/component-ui/ProForm",
11117
11860
  "sourceFile": "src/components/ProForm/interface.ts",
@@ -11126,6 +11869,7 @@
11126
11869
  "FormCoreInstance",
11127
11870
  "FormInstance",
11128
11871
  "FormLayout",
11872
+ "FormListContextValue",
11129
11873
  "FormSize",
11130
11874
  "LabelAlign",
11131
11875
  "ProForm",
@@ -11139,10 +11883,12 @@
11139
11883
  "ProFormDependencyProps",
11140
11884
  "ProFormFieldConvertValueFn",
11141
11885
  "ProFormFieldName",
11886
+ "ProFormFieldOptionValue",
11142
11887
  "ProFormFieldProps",
11143
11888
  "ProFormFieldSet",
11144
11889
  "ProFormFieldSetProps",
11145
11890
  "ProFormFieldTransformFn",
11891
+ "ProFormFieldValueMap",
11146
11892
  "ProFormFormInstance",
11147
11893
  "ProFormGroup",
11148
11894
  "ProFormGroupProps",
@@ -11155,19 +11901,26 @@
11155
11901
  "ProFormListProps",
11156
11902
  "ProFormMode",
11157
11903
  "ProFormPassword",
11904
+ "ProFormPathValue",
11158
11905
  "ProFormProps",
11159
11906
  "ProFormRadioGroup",
11907
+ "ProFormRecursivePartial",
11160
11908
  "ProFormRequestOption",
11161
11909
  "ProFormSchemaColumn",
11910
+ "ProFormSchemaColumns",
11162
11911
  "ProFormSchemaValueType",
11163
11912
  "ProFormSelect",
11164
11913
  "ProFormSlider",
11914
+ "ProFormStableContextValue",
11165
11915
  "ProFormSwitch",
11916
+ "ProFormSyncToUrl",
11166
11917
  "ProFormText",
11167
11918
  "ProFormTextArea",
11168
11919
  "ProFormUpload",
11920
+ "ProFormValidateResult",
11169
11921
  "ProFormValueEnumObj",
11170
11922
  "ProFormValueType",
11923
+ "ProFormValuesPatch",
11171
11924
  "QueryFilter",
11172
11925
  "QueryFilterProps",
11173
11926
  "Rule",
@@ -11181,7 +11934,7 @@
11181
11934
  "useFormWatch"
11182
11935
  ],
11183
11936
  "searchTags": [],
11184
- "typeText": "| { success: true; values: Values; errors?: undefined }\n | { success: false; errors: Record<string, string>; values?: undefined }",
11937
+ "typeText": "interface ProFormStateContextValue { ... }",
11185
11938
  "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';",
11186
11939
  "examples": [
11187
11940
  {
@@ -11191,13 +11944,13 @@
11191
11944
  ]
11192
11945
  },
11193
11946
  {
11194
- "name": "ProFormValueEnumObj",
11195
- "kind": "type",
11947
+ "name": "ProFormSwitch",
11948
+ "kind": "component",
11196
11949
  "category": "forms",
11197
11950
  "summary": "",
11198
11951
  "importPath": "@1money/component-ui",
11199
11952
  "subpathImport": "@1money/component-ui/ProForm",
11200
- "sourceFile": "src/components/ProForm/interface.ts",
11953
+ "sourceFile": "src/components/ProForm/fields/ProFormSwitch.tsx",
11201
11954
  "props": [],
11202
11955
  "extends": [],
11203
11956
  "relatedSymbols": [
@@ -11209,6 +11962,7 @@
11209
11962
  "FormCoreInstance",
11210
11963
  "FormInstance",
11211
11964
  "FormLayout",
11965
+ "FormListContextValue",
11212
11966
  "FormSize",
11213
11967
  "LabelAlign",
11214
11968
  "ProForm",
@@ -11222,10 +11976,12 @@
11222
11976
  "ProFormDependencyProps",
11223
11977
  "ProFormFieldConvertValueFn",
11224
11978
  "ProFormFieldName",
11979
+ "ProFormFieldOptionValue",
11225
11980
  "ProFormFieldProps",
11226
11981
  "ProFormFieldSet",
11227
11982
  "ProFormFieldSetProps",
11228
11983
  "ProFormFieldTransformFn",
11984
+ "ProFormFieldValueMap",
11229
11985
  "ProFormFormInstance",
11230
11986
  "ProFormGroup",
11231
11987
  "ProFormGroupProps",
@@ -11238,19 +11994,26 @@
11238
11994
  "ProFormListProps",
11239
11995
  "ProFormMode",
11240
11996
  "ProFormPassword",
11997
+ "ProFormPathValue",
11241
11998
  "ProFormProps",
11242
11999
  "ProFormRadioGroup",
12000
+ "ProFormRecursivePartial",
11243
12001
  "ProFormRequestOption",
11244
12002
  "ProFormSchemaColumn",
12003
+ "ProFormSchemaColumns",
11245
12004
  "ProFormSchemaValueType",
11246
12005
  "ProFormSelect",
11247
12006
  "ProFormSlider",
11248
- "ProFormSwitch",
12007
+ "ProFormStableContextValue",
12008
+ "ProFormStateContextValue",
12009
+ "ProFormSyncToUrl",
11249
12010
  "ProFormText",
11250
12011
  "ProFormTextArea",
11251
12012
  "ProFormUpload",
11252
12013
  "ProFormValidateResult",
12014
+ "ProFormValueEnumObj",
11253
12015
  "ProFormValueType",
12016
+ "ProFormValuesPatch",
11254
12017
  "QueryFilter",
11255
12018
  "QueryFilterProps",
11256
12019
  "Rule",
@@ -11264,7 +12027,6 @@
11264
12027
  "useFormWatch"
11265
12028
  ],
11266
12029
  "searchTags": [],
11267
- "typeText": "Record<\n string | number,\n string | { text: string; disabled?: boolean }\n>",
11268
12030
  "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';",
11269
12031
  "examples": [
11270
12032
  {
@@ -11274,13 +12036,13 @@
11274
12036
  ]
11275
12037
  },
11276
12038
  {
11277
- "name": "ProFormValueType",
12039
+ "name": "ProFormSyncToUrl",
11278
12040
  "kind": "type",
11279
12041
  "category": "forms",
11280
12042
  "summary": "",
11281
12043
  "importPath": "@1money/component-ui",
11282
12044
  "subpathImport": "@1money/component-ui/ProForm",
11283
- "sourceFile": "src/components/ProForm/interface.ts",
12045
+ "sourceFile": "src/components/ProForm/hooks/useUrlSync.ts",
11284
12046
  "props": [],
11285
12047
  "extends": [],
11286
12048
  "relatedSymbols": [
@@ -11292,6 +12054,7 @@
11292
12054
  "FormCoreInstance",
11293
12055
  "FormInstance",
11294
12056
  "FormLayout",
12057
+ "FormListContextValue",
11295
12058
  "FormSize",
11296
12059
  "LabelAlign",
11297
12060
  "ProForm",
@@ -11305,10 +12068,12 @@
11305
12068
  "ProFormDependencyProps",
11306
12069
  "ProFormFieldConvertValueFn",
11307
12070
  "ProFormFieldName",
12071
+ "ProFormFieldOptionValue",
11308
12072
  "ProFormFieldProps",
11309
12073
  "ProFormFieldSet",
11310
12074
  "ProFormFieldSetProps",
11311
12075
  "ProFormFieldTransformFn",
12076
+ "ProFormFieldValueMap",
11312
12077
  "ProFormFormInstance",
11313
12078
  "ProFormGroup",
11314
12079
  "ProFormGroupProps",
@@ -11321,19 +12086,26 @@
11321
12086
  "ProFormListProps",
11322
12087
  "ProFormMode",
11323
12088
  "ProFormPassword",
12089
+ "ProFormPathValue",
11324
12090
  "ProFormProps",
11325
12091
  "ProFormRadioGroup",
12092
+ "ProFormRecursivePartial",
11326
12093
  "ProFormRequestOption",
11327
12094
  "ProFormSchemaColumn",
12095
+ "ProFormSchemaColumns",
11328
12096
  "ProFormSchemaValueType",
11329
12097
  "ProFormSelect",
11330
12098
  "ProFormSlider",
12099
+ "ProFormStableContextValue",
12100
+ "ProFormStateContextValue",
11331
12101
  "ProFormSwitch",
11332
12102
  "ProFormText",
11333
12103
  "ProFormTextArea",
11334
12104
  "ProFormUpload",
11335
12105
  "ProFormValidateResult",
11336
12106
  "ProFormValueEnumObj",
12107
+ "ProFormValueType",
12108
+ "ProFormValuesPatch",
11337
12109
  "QueryFilter",
11338
12110
  "QueryFilterProps",
11339
12111
  "Rule",
@@ -11347,7 +12119,655 @@
11347
12119
  "useFormWatch"
11348
12120
  ],
11349
12121
  "searchTags": [],
11350
- "typeText": "| 'text'\n | 'password'\n | 'digit'\n | 'date'\n | 'dateTime'\n | 'select'\n | 'radio'\n | 'switch'\n | 'tag'",
12122
+ "typeText": "| boolean\n | ((\n values: ProFormValuesPatch<Values> | Record<string, string>,\n type: 'get' | 'set',\n ) => Record<string, any>)",
12123
+ "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';",
12124
+ "examples": [
12125
+ {
12126
+ "hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
12127
+ "source": "canonical"
12128
+ }
12129
+ ]
12130
+ },
12131
+ {
12132
+ "name": "ProFormText",
12133
+ "kind": "component",
12134
+ "category": "forms",
12135
+ "summary": "",
12136
+ "importPath": "@1money/component-ui",
12137
+ "subpathImport": "@1money/component-ui/ProForm",
12138
+ "sourceFile": "src/components/ProForm/fields/ProFormText.tsx",
12139
+ "props": [],
12140
+ "extends": [],
12141
+ "relatedSymbols": [
12142
+ "CreateProFormFieldConfig",
12143
+ "DialogForm",
12144
+ "DialogFormProps",
12145
+ "DrawerForm",
12146
+ "DrawerFormProps",
12147
+ "FormCoreInstance",
12148
+ "FormInstance",
12149
+ "FormLayout",
12150
+ "FormListContextValue",
12151
+ "FormSize",
12152
+ "LabelAlign",
12153
+ "ProForm",
12154
+ "ProFormCheckbox",
12155
+ "ProFormCheckboxGroup",
12156
+ "ProFormColProps",
12157
+ "ProFormContextValue",
12158
+ "ProFormDateFormatter",
12159
+ "ProFormDatePicker",
12160
+ "ProFormDependency",
12161
+ "ProFormDependencyProps",
12162
+ "ProFormFieldConvertValueFn",
12163
+ "ProFormFieldName",
12164
+ "ProFormFieldOptionValue",
12165
+ "ProFormFieldProps",
12166
+ "ProFormFieldSet",
12167
+ "ProFormFieldSetProps",
12168
+ "ProFormFieldTransformFn",
12169
+ "ProFormFieldValueMap",
12170
+ "ProFormFormInstance",
12171
+ "ProFormGroup",
12172
+ "ProFormGroupProps",
12173
+ "ProFormItem",
12174
+ "ProFormItemProps",
12175
+ "ProFormItemSharedProps",
12176
+ "ProFormLayoutConfig",
12177
+ "ProFormList",
12178
+ "ProFormListAction",
12179
+ "ProFormListProps",
12180
+ "ProFormMode",
12181
+ "ProFormPassword",
12182
+ "ProFormPathValue",
12183
+ "ProFormProps",
12184
+ "ProFormRadioGroup",
12185
+ "ProFormRecursivePartial",
12186
+ "ProFormRequestOption",
12187
+ "ProFormSchemaColumn",
12188
+ "ProFormSchemaColumns",
12189
+ "ProFormSchemaValueType",
12190
+ "ProFormSelect",
12191
+ "ProFormSlider",
12192
+ "ProFormStableContextValue",
12193
+ "ProFormStateContextValue",
12194
+ "ProFormSwitch",
12195
+ "ProFormSyncToUrl",
12196
+ "ProFormTextArea",
12197
+ "ProFormUpload",
12198
+ "ProFormValidateResult",
12199
+ "ProFormValueEnumObj",
12200
+ "ProFormValueType",
12201
+ "ProFormValuesPatch",
12202
+ "QueryFilter",
12203
+ "QueryFilterProps",
12204
+ "Rule",
12205
+ "SchemaForm",
12206
+ "SchemaFormProps",
12207
+ "SubmitterProps",
12208
+ "UseFormWatch",
12209
+ "ValidateStatus",
12210
+ "ValidateTrigger",
12211
+ "createProFormField",
12212
+ "useFormWatch"
12213
+ ],
12214
+ "searchTags": [],
12215
+ "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';",
12216
+ "examples": [
12217
+ {
12218
+ "hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
12219
+ "source": "canonical"
12220
+ }
12221
+ ]
12222
+ },
12223
+ {
12224
+ "name": "ProFormTextArea",
12225
+ "kind": "component",
12226
+ "category": "forms",
12227
+ "summary": "",
12228
+ "importPath": "@1money/component-ui",
12229
+ "subpathImport": "@1money/component-ui/ProForm",
12230
+ "sourceFile": "src/components/ProForm/fields/ProFormTextArea.tsx",
12231
+ "props": [],
12232
+ "extends": [],
12233
+ "relatedSymbols": [
12234
+ "CreateProFormFieldConfig",
12235
+ "DialogForm",
12236
+ "DialogFormProps",
12237
+ "DrawerForm",
12238
+ "DrawerFormProps",
12239
+ "FormCoreInstance",
12240
+ "FormInstance",
12241
+ "FormLayout",
12242
+ "FormListContextValue",
12243
+ "FormSize",
12244
+ "LabelAlign",
12245
+ "ProForm",
12246
+ "ProFormCheckbox",
12247
+ "ProFormCheckboxGroup",
12248
+ "ProFormColProps",
12249
+ "ProFormContextValue",
12250
+ "ProFormDateFormatter",
12251
+ "ProFormDatePicker",
12252
+ "ProFormDependency",
12253
+ "ProFormDependencyProps",
12254
+ "ProFormFieldConvertValueFn",
12255
+ "ProFormFieldName",
12256
+ "ProFormFieldOptionValue",
12257
+ "ProFormFieldProps",
12258
+ "ProFormFieldSet",
12259
+ "ProFormFieldSetProps",
12260
+ "ProFormFieldTransformFn",
12261
+ "ProFormFieldValueMap",
12262
+ "ProFormFormInstance",
12263
+ "ProFormGroup",
12264
+ "ProFormGroupProps",
12265
+ "ProFormItem",
12266
+ "ProFormItemProps",
12267
+ "ProFormItemSharedProps",
12268
+ "ProFormLayoutConfig",
12269
+ "ProFormList",
12270
+ "ProFormListAction",
12271
+ "ProFormListProps",
12272
+ "ProFormMode",
12273
+ "ProFormPassword",
12274
+ "ProFormPathValue",
12275
+ "ProFormProps",
12276
+ "ProFormRadioGroup",
12277
+ "ProFormRecursivePartial",
12278
+ "ProFormRequestOption",
12279
+ "ProFormSchemaColumn",
12280
+ "ProFormSchemaColumns",
12281
+ "ProFormSchemaValueType",
12282
+ "ProFormSelect",
12283
+ "ProFormSlider",
12284
+ "ProFormStableContextValue",
12285
+ "ProFormStateContextValue",
12286
+ "ProFormSwitch",
12287
+ "ProFormSyncToUrl",
12288
+ "ProFormText",
12289
+ "ProFormUpload",
12290
+ "ProFormValidateResult",
12291
+ "ProFormValueEnumObj",
12292
+ "ProFormValueType",
12293
+ "ProFormValuesPatch",
12294
+ "QueryFilter",
12295
+ "QueryFilterProps",
12296
+ "Rule",
12297
+ "SchemaForm",
12298
+ "SchemaFormProps",
12299
+ "SubmitterProps",
12300
+ "UseFormWatch",
12301
+ "ValidateStatus",
12302
+ "ValidateTrigger",
12303
+ "createProFormField",
12304
+ "useFormWatch"
12305
+ ],
12306
+ "searchTags": [],
12307
+ "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';",
12308
+ "examples": [
12309
+ {
12310
+ "hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
12311
+ "source": "canonical"
12312
+ }
12313
+ ]
12314
+ },
12315
+ {
12316
+ "name": "ProFormUpload",
12317
+ "kind": "component",
12318
+ "category": "forms",
12319
+ "summary": "",
12320
+ "importPath": "@1money/component-ui",
12321
+ "subpathImport": "@1money/component-ui/ProForm",
12322
+ "sourceFile": "src/components/ProForm/fields/ProFormUpload.tsx",
12323
+ "props": [],
12324
+ "extends": [],
12325
+ "relatedSymbols": [
12326
+ "CreateProFormFieldConfig",
12327
+ "DialogForm",
12328
+ "DialogFormProps",
12329
+ "DrawerForm",
12330
+ "DrawerFormProps",
12331
+ "FormCoreInstance",
12332
+ "FormInstance",
12333
+ "FormLayout",
12334
+ "FormListContextValue",
12335
+ "FormSize",
12336
+ "LabelAlign",
12337
+ "ProForm",
12338
+ "ProFormCheckbox",
12339
+ "ProFormCheckboxGroup",
12340
+ "ProFormColProps",
12341
+ "ProFormContextValue",
12342
+ "ProFormDateFormatter",
12343
+ "ProFormDatePicker",
12344
+ "ProFormDependency",
12345
+ "ProFormDependencyProps",
12346
+ "ProFormFieldConvertValueFn",
12347
+ "ProFormFieldName",
12348
+ "ProFormFieldOptionValue",
12349
+ "ProFormFieldProps",
12350
+ "ProFormFieldSet",
12351
+ "ProFormFieldSetProps",
12352
+ "ProFormFieldTransformFn",
12353
+ "ProFormFieldValueMap",
12354
+ "ProFormFormInstance",
12355
+ "ProFormGroup",
12356
+ "ProFormGroupProps",
12357
+ "ProFormItem",
12358
+ "ProFormItemProps",
12359
+ "ProFormItemSharedProps",
12360
+ "ProFormLayoutConfig",
12361
+ "ProFormList",
12362
+ "ProFormListAction",
12363
+ "ProFormListProps",
12364
+ "ProFormMode",
12365
+ "ProFormPassword",
12366
+ "ProFormPathValue",
12367
+ "ProFormProps",
12368
+ "ProFormRadioGroup",
12369
+ "ProFormRecursivePartial",
12370
+ "ProFormRequestOption",
12371
+ "ProFormSchemaColumn",
12372
+ "ProFormSchemaColumns",
12373
+ "ProFormSchemaValueType",
12374
+ "ProFormSelect",
12375
+ "ProFormSlider",
12376
+ "ProFormStableContextValue",
12377
+ "ProFormStateContextValue",
12378
+ "ProFormSwitch",
12379
+ "ProFormSyncToUrl",
12380
+ "ProFormText",
12381
+ "ProFormTextArea",
12382
+ "ProFormValidateResult",
12383
+ "ProFormValueEnumObj",
12384
+ "ProFormValueType",
12385
+ "ProFormValuesPatch",
12386
+ "QueryFilter",
12387
+ "QueryFilterProps",
12388
+ "Rule",
12389
+ "SchemaForm",
12390
+ "SchemaFormProps",
12391
+ "SubmitterProps",
12392
+ "UseFormWatch",
12393
+ "ValidateStatus",
12394
+ "ValidateTrigger",
12395
+ "createProFormField",
12396
+ "useFormWatch"
12397
+ ],
12398
+ "searchTags": [],
12399
+ "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';",
12400
+ "examples": [
12401
+ {
12402
+ "hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
12403
+ "source": "canonical"
12404
+ }
12405
+ ]
12406
+ },
12407
+ {
12408
+ "name": "ProFormValidateResult",
12409
+ "kind": "type",
12410
+ "category": "forms",
12411
+ "summary": "Result of `validateFieldsReturnFormatValue` — a discriminated union: checking `success` narrows to `values` (success) or `errors` (failure) without `!`.",
12412
+ "importPath": "@1money/component-ui",
12413
+ "subpathImport": "@1money/component-ui/ProForm",
12414
+ "sourceFile": "src/components/ProForm/interface.ts",
12415
+ "props": [],
12416
+ "extends": [],
12417
+ "relatedSymbols": [
12418
+ "CreateProFormFieldConfig",
12419
+ "DialogForm",
12420
+ "DialogFormProps",
12421
+ "DrawerForm",
12422
+ "DrawerFormProps",
12423
+ "FormCoreInstance",
12424
+ "FormInstance",
12425
+ "FormLayout",
12426
+ "FormListContextValue",
12427
+ "FormSize",
12428
+ "LabelAlign",
12429
+ "ProForm",
12430
+ "ProFormCheckbox",
12431
+ "ProFormCheckboxGroup",
12432
+ "ProFormColProps",
12433
+ "ProFormContextValue",
12434
+ "ProFormDateFormatter",
12435
+ "ProFormDatePicker",
12436
+ "ProFormDependency",
12437
+ "ProFormDependencyProps",
12438
+ "ProFormFieldConvertValueFn",
12439
+ "ProFormFieldName",
12440
+ "ProFormFieldOptionValue",
12441
+ "ProFormFieldProps",
12442
+ "ProFormFieldSet",
12443
+ "ProFormFieldSetProps",
12444
+ "ProFormFieldTransformFn",
12445
+ "ProFormFieldValueMap",
12446
+ "ProFormFormInstance",
12447
+ "ProFormGroup",
12448
+ "ProFormGroupProps",
12449
+ "ProFormItem",
12450
+ "ProFormItemProps",
12451
+ "ProFormItemSharedProps",
12452
+ "ProFormLayoutConfig",
12453
+ "ProFormList",
12454
+ "ProFormListAction",
12455
+ "ProFormListProps",
12456
+ "ProFormMode",
12457
+ "ProFormPassword",
12458
+ "ProFormPathValue",
12459
+ "ProFormProps",
12460
+ "ProFormRadioGroup",
12461
+ "ProFormRecursivePartial",
12462
+ "ProFormRequestOption",
12463
+ "ProFormSchemaColumn",
12464
+ "ProFormSchemaColumns",
12465
+ "ProFormSchemaValueType",
12466
+ "ProFormSelect",
12467
+ "ProFormSlider",
12468
+ "ProFormStableContextValue",
12469
+ "ProFormStateContextValue",
12470
+ "ProFormSwitch",
12471
+ "ProFormSyncToUrl",
12472
+ "ProFormText",
12473
+ "ProFormTextArea",
12474
+ "ProFormUpload",
12475
+ "ProFormValueEnumObj",
12476
+ "ProFormValueType",
12477
+ "ProFormValuesPatch",
12478
+ "QueryFilter",
12479
+ "QueryFilterProps",
12480
+ "Rule",
12481
+ "SchemaForm",
12482
+ "SchemaFormProps",
12483
+ "SubmitterProps",
12484
+ "UseFormWatch",
12485
+ "ValidateStatus",
12486
+ "ValidateTrigger",
12487
+ "createProFormField",
12488
+ "useFormWatch"
12489
+ ],
12490
+ "searchTags": [],
12491
+ "typeText": "| { success: true; values: Values; errors?: undefined }\n | { success: false; errors: Record<string, ReactNode>; values?: undefined }",
12492
+ "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';",
12493
+ "examples": [
12494
+ {
12495
+ "hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
12496
+ "source": "canonical"
12497
+ }
12498
+ ]
12499
+ },
12500
+ {
12501
+ "name": "ProFormValueEnumObj",
12502
+ "kind": "type",
12503
+ "category": "forms",
12504
+ "summary": "",
12505
+ "importPath": "@1money/component-ui",
12506
+ "subpathImport": "@1money/component-ui/ProForm",
12507
+ "sourceFile": "src/components/ProForm/interface.ts",
12508
+ "props": [],
12509
+ "extends": [],
12510
+ "relatedSymbols": [
12511
+ "CreateProFormFieldConfig",
12512
+ "DialogForm",
12513
+ "DialogFormProps",
12514
+ "DrawerForm",
12515
+ "DrawerFormProps",
12516
+ "FormCoreInstance",
12517
+ "FormInstance",
12518
+ "FormLayout",
12519
+ "FormListContextValue",
12520
+ "FormSize",
12521
+ "LabelAlign",
12522
+ "ProForm",
12523
+ "ProFormCheckbox",
12524
+ "ProFormCheckboxGroup",
12525
+ "ProFormColProps",
12526
+ "ProFormContextValue",
12527
+ "ProFormDateFormatter",
12528
+ "ProFormDatePicker",
12529
+ "ProFormDependency",
12530
+ "ProFormDependencyProps",
12531
+ "ProFormFieldConvertValueFn",
12532
+ "ProFormFieldName",
12533
+ "ProFormFieldOptionValue",
12534
+ "ProFormFieldProps",
12535
+ "ProFormFieldSet",
12536
+ "ProFormFieldSetProps",
12537
+ "ProFormFieldTransformFn",
12538
+ "ProFormFieldValueMap",
12539
+ "ProFormFormInstance",
12540
+ "ProFormGroup",
12541
+ "ProFormGroupProps",
12542
+ "ProFormItem",
12543
+ "ProFormItemProps",
12544
+ "ProFormItemSharedProps",
12545
+ "ProFormLayoutConfig",
12546
+ "ProFormList",
12547
+ "ProFormListAction",
12548
+ "ProFormListProps",
12549
+ "ProFormMode",
12550
+ "ProFormPassword",
12551
+ "ProFormPathValue",
12552
+ "ProFormProps",
12553
+ "ProFormRadioGroup",
12554
+ "ProFormRecursivePartial",
12555
+ "ProFormRequestOption",
12556
+ "ProFormSchemaColumn",
12557
+ "ProFormSchemaColumns",
12558
+ "ProFormSchemaValueType",
12559
+ "ProFormSelect",
12560
+ "ProFormSlider",
12561
+ "ProFormStableContextValue",
12562
+ "ProFormStateContextValue",
12563
+ "ProFormSwitch",
12564
+ "ProFormSyncToUrl",
12565
+ "ProFormText",
12566
+ "ProFormTextArea",
12567
+ "ProFormUpload",
12568
+ "ProFormValidateResult",
12569
+ "ProFormValueType",
12570
+ "ProFormValuesPatch",
12571
+ "QueryFilter",
12572
+ "QueryFilterProps",
12573
+ "Rule",
12574
+ "SchemaForm",
12575
+ "SchemaFormProps",
12576
+ "SubmitterProps",
12577
+ "UseFormWatch",
12578
+ "ValidateStatus",
12579
+ "ValidateTrigger",
12580
+ "createProFormField",
12581
+ "useFormWatch"
12582
+ ],
12583
+ "searchTags": [],
12584
+ "typeText": "Record<\n string | number,\n string | { text: string; disabled?: boolean }\n>",
12585
+ "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';",
12586
+ "examples": [
12587
+ {
12588
+ "hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
12589
+ "source": "canonical"
12590
+ }
12591
+ ]
12592
+ },
12593
+ {
12594
+ "name": "ProFormValueType",
12595
+ "kind": "type",
12596
+ "category": "forms",
12597
+ "summary": "",
12598
+ "importPath": "@1money/component-ui",
12599
+ "subpathImport": "@1money/component-ui/ProForm",
12600
+ "sourceFile": "src/components/ProForm/interface.ts",
12601
+ "props": [],
12602
+ "extends": [],
12603
+ "relatedSymbols": [
12604
+ "CreateProFormFieldConfig",
12605
+ "DialogForm",
12606
+ "DialogFormProps",
12607
+ "DrawerForm",
12608
+ "DrawerFormProps",
12609
+ "FormCoreInstance",
12610
+ "FormInstance",
12611
+ "FormLayout",
12612
+ "FormListContextValue",
12613
+ "FormSize",
12614
+ "LabelAlign",
12615
+ "ProForm",
12616
+ "ProFormCheckbox",
12617
+ "ProFormCheckboxGroup",
12618
+ "ProFormColProps",
12619
+ "ProFormContextValue",
12620
+ "ProFormDateFormatter",
12621
+ "ProFormDatePicker",
12622
+ "ProFormDependency",
12623
+ "ProFormDependencyProps",
12624
+ "ProFormFieldConvertValueFn",
12625
+ "ProFormFieldName",
12626
+ "ProFormFieldOptionValue",
12627
+ "ProFormFieldProps",
12628
+ "ProFormFieldSet",
12629
+ "ProFormFieldSetProps",
12630
+ "ProFormFieldTransformFn",
12631
+ "ProFormFieldValueMap",
12632
+ "ProFormFormInstance",
12633
+ "ProFormGroup",
12634
+ "ProFormGroupProps",
12635
+ "ProFormItem",
12636
+ "ProFormItemProps",
12637
+ "ProFormItemSharedProps",
12638
+ "ProFormLayoutConfig",
12639
+ "ProFormList",
12640
+ "ProFormListAction",
12641
+ "ProFormListProps",
12642
+ "ProFormMode",
12643
+ "ProFormPassword",
12644
+ "ProFormPathValue",
12645
+ "ProFormProps",
12646
+ "ProFormRadioGroup",
12647
+ "ProFormRecursivePartial",
12648
+ "ProFormRequestOption",
12649
+ "ProFormSchemaColumn",
12650
+ "ProFormSchemaColumns",
12651
+ "ProFormSchemaValueType",
12652
+ "ProFormSelect",
12653
+ "ProFormSlider",
12654
+ "ProFormStableContextValue",
12655
+ "ProFormStateContextValue",
12656
+ "ProFormSwitch",
12657
+ "ProFormSyncToUrl",
12658
+ "ProFormText",
12659
+ "ProFormTextArea",
12660
+ "ProFormUpload",
12661
+ "ProFormValidateResult",
12662
+ "ProFormValueEnumObj",
12663
+ "ProFormValuesPatch",
12664
+ "QueryFilter",
12665
+ "QueryFilterProps",
12666
+ "Rule",
12667
+ "SchemaForm",
12668
+ "SchemaFormProps",
12669
+ "SubmitterProps",
12670
+ "UseFormWatch",
12671
+ "ValidateStatus",
12672
+ "ValidateTrigger",
12673
+ "createProFormField",
12674
+ "useFormWatch"
12675
+ ],
12676
+ "searchTags": [],
12677
+ "typeText": "| 'text'\n | 'password'\n | 'digit'\n | 'date'\n | 'dateTime'\n | 'select'\n | 'radio'\n | 'switch'\n | 'tag'",
12678
+ "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';",
12679
+ "examples": [
12680
+ {
12681
+ "hash": "0c865e04e29af2a17146034e78e156e8271e4c6700f4b8d431d67f0ba04a6d6a",
12682
+ "source": "canonical"
12683
+ }
12684
+ ]
12685
+ },
12686
+ {
12687
+ "name": "ProFormValuesPatch",
12688
+ "kind": "type",
12689
+ "category": "forms",
12690
+ "summary": "",
12691
+ "importPath": "@1money/component-ui",
12692
+ "subpathImport": "@1money/component-ui/ProForm",
12693
+ "sourceFile": "src/components/ProForm/core/namePathType.ts",
12694
+ "props": [],
12695
+ "extends": [],
12696
+ "relatedSymbols": [
12697
+ "CreateProFormFieldConfig",
12698
+ "DialogForm",
12699
+ "DialogFormProps",
12700
+ "DrawerForm",
12701
+ "DrawerFormProps",
12702
+ "FormCoreInstance",
12703
+ "FormInstance",
12704
+ "FormLayout",
12705
+ "FormListContextValue",
12706
+ "FormSize",
12707
+ "LabelAlign",
12708
+ "ProForm",
12709
+ "ProFormCheckbox",
12710
+ "ProFormCheckboxGroup",
12711
+ "ProFormColProps",
12712
+ "ProFormContextValue",
12713
+ "ProFormDateFormatter",
12714
+ "ProFormDatePicker",
12715
+ "ProFormDependency",
12716
+ "ProFormDependencyProps",
12717
+ "ProFormFieldConvertValueFn",
12718
+ "ProFormFieldName",
12719
+ "ProFormFieldOptionValue",
12720
+ "ProFormFieldProps",
12721
+ "ProFormFieldSet",
12722
+ "ProFormFieldSetProps",
12723
+ "ProFormFieldTransformFn",
12724
+ "ProFormFieldValueMap",
12725
+ "ProFormFormInstance",
12726
+ "ProFormGroup",
12727
+ "ProFormGroupProps",
12728
+ "ProFormItem",
12729
+ "ProFormItemProps",
12730
+ "ProFormItemSharedProps",
12731
+ "ProFormLayoutConfig",
12732
+ "ProFormList",
12733
+ "ProFormListAction",
12734
+ "ProFormListProps",
12735
+ "ProFormMode",
12736
+ "ProFormPassword",
12737
+ "ProFormPathValue",
12738
+ "ProFormProps",
12739
+ "ProFormRadioGroup",
12740
+ "ProFormRecursivePartial",
12741
+ "ProFormRequestOption",
12742
+ "ProFormSchemaColumn",
12743
+ "ProFormSchemaColumns",
12744
+ "ProFormSchemaValueType",
12745
+ "ProFormSelect",
12746
+ "ProFormSlider",
12747
+ "ProFormStableContextValue",
12748
+ "ProFormStateContextValue",
12749
+ "ProFormSwitch",
12750
+ "ProFormSyncToUrl",
12751
+ "ProFormText",
12752
+ "ProFormTextArea",
12753
+ "ProFormUpload",
12754
+ "ProFormValidateResult",
12755
+ "ProFormValueEnumObj",
12756
+ "ProFormValueType",
12757
+ "QueryFilter",
12758
+ "QueryFilterProps",
12759
+ "Rule",
12760
+ "SchemaForm",
12761
+ "SchemaFormProps",
12762
+ "SubmitterProps",
12763
+ "UseFormWatch",
12764
+ "ValidateStatus",
12765
+ "ValidateTrigger",
12766
+ "createProFormField",
12767
+ "useFormWatch"
12768
+ ],
12769
+ "searchTags": [],
12770
+ "typeText": "| ProFormRecursivePartial<Values>\n | Partial<{\n [FieldName in ProFormFieldName<Values>]: ProFormFieldPatchValue<\n Values,\n FieldName\n >;\n }>",
11351
12771
  "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';",
11352
12772
  "examples": [
11353
12773
  {
@@ -12267,7 +13687,7 @@
12267
13687
  }
12268
13688
  ],
12269
13689
  "extends": [
12270
- "ProFormProps<Values>"
13690
+ "ProFormProps<Values, Params>"
12271
13691
  ],
12272
13692
  "relatedSymbols": [
12273
13693
  "CreateProFormFieldConfig",
@@ -12278,6 +13698,7 @@
12278
13698
  "FormCoreInstance",
12279
13699
  "FormInstance",
12280
13700
  "FormLayout",
13701
+ "FormListContextValue",
12281
13702
  "FormSize",
12282
13703
  "LabelAlign",
12283
13704
  "ProForm",
@@ -12291,10 +13712,12 @@
12291
13712
  "ProFormDependencyProps",
12292
13713
  "ProFormFieldConvertValueFn",
12293
13714
  "ProFormFieldName",
13715
+ "ProFormFieldOptionValue",
12294
13716
  "ProFormFieldProps",
12295
13717
  "ProFormFieldSet",
12296
13718
  "ProFormFieldSetProps",
12297
13719
  "ProFormFieldTransformFn",
13720
+ "ProFormFieldValueMap",
12298
13721
  "ProFormFormInstance",
12299
13722
  "ProFormGroup",
12300
13723
  "ProFormGroupProps",
@@ -12307,20 +13730,27 @@
12307
13730
  "ProFormListProps",
12308
13731
  "ProFormMode",
12309
13732
  "ProFormPassword",
13733
+ "ProFormPathValue",
12310
13734
  "ProFormProps",
12311
13735
  "ProFormRadioGroup",
13736
+ "ProFormRecursivePartial",
12312
13737
  "ProFormRequestOption",
12313
13738
  "ProFormSchemaColumn",
13739
+ "ProFormSchemaColumns",
12314
13740
  "ProFormSchemaValueType",
12315
13741
  "ProFormSelect",
12316
13742
  "ProFormSlider",
13743
+ "ProFormStableContextValue",
13744
+ "ProFormStateContextValue",
12317
13745
  "ProFormSwitch",
13746
+ "ProFormSyncToUrl",
12318
13747
  "ProFormText",
12319
13748
  "ProFormTextArea",
12320
13749
  "ProFormUpload",
12321
13750
  "ProFormValidateResult",
12322
13751
  "ProFormValueEnumObj",
12323
13752
  "ProFormValueType",
13753
+ "ProFormValuesPatch",
12324
13754
  "QueryFilterProps",
12325
13755
  "Rule",
12326
13756
  "SchemaForm",
@@ -12360,6 +13790,7 @@
12360
13790
  "FormCoreInstance",
12361
13791
  "FormInstance",
12362
13792
  "FormLayout",
13793
+ "FormListContextValue",
12363
13794
  "FormSize",
12364
13795
  "LabelAlign",
12365
13796
  "ProForm",
@@ -12373,10 +13804,12 @@
12373
13804
  "ProFormDependencyProps",
12374
13805
  "ProFormFieldConvertValueFn",
12375
13806
  "ProFormFieldName",
13807
+ "ProFormFieldOptionValue",
12376
13808
  "ProFormFieldProps",
12377
13809
  "ProFormFieldSet",
12378
13810
  "ProFormFieldSetProps",
12379
13811
  "ProFormFieldTransformFn",
13812
+ "ProFormFieldValueMap",
12380
13813
  "ProFormFormInstance",
12381
13814
  "ProFormGroup",
12382
13815
  "ProFormGroupProps",
@@ -12389,20 +13822,27 @@
12389
13822
  "ProFormListProps",
12390
13823
  "ProFormMode",
12391
13824
  "ProFormPassword",
13825
+ "ProFormPathValue",
12392
13826
  "ProFormProps",
12393
13827
  "ProFormRadioGroup",
13828
+ "ProFormRecursivePartial",
12394
13829
  "ProFormRequestOption",
12395
13830
  "ProFormSchemaColumn",
13831
+ "ProFormSchemaColumns",
12396
13832
  "ProFormSchemaValueType",
12397
13833
  "ProFormSelect",
12398
13834
  "ProFormSlider",
13835
+ "ProFormStableContextValue",
13836
+ "ProFormStateContextValue",
12399
13837
  "ProFormSwitch",
13838
+ "ProFormSyncToUrl",
12400
13839
  "ProFormText",
12401
13840
  "ProFormTextArea",
12402
13841
  "ProFormUpload",
12403
13842
  "ProFormValidateResult",
12404
13843
  "ProFormValueEnumObj",
12405
13844
  "ProFormValueType",
13845
+ "ProFormValuesPatch",
12406
13846
  "QueryFilter",
12407
13847
  "Rule",
12408
13848
  "SchemaForm",
@@ -12415,7 +13855,7 @@
12415
13855
  "useFormWatch"
12416
13856
  ],
12417
13857
  "searchTags": [],
12418
- "typeText": "interface QueryFilterProps extends ProFormProps<Values> { ... }",
13858
+ "typeText": "interface QueryFilterProps extends ProFormProps<Values, Params> { ... }",
12419
13859
  "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';",
12420
13860
  "examples": [
12421
13861
  {
@@ -13331,6 +14771,7 @@
13331
14771
  "FormCoreInstance",
13332
14772
  "FormInstance",
13333
14773
  "FormLayout",
14774
+ "FormListContextValue",
13334
14775
  "FormSize",
13335
14776
  "LabelAlign",
13336
14777
  "ProForm",
@@ -13344,10 +14785,12 @@
13344
14785
  "ProFormDependencyProps",
13345
14786
  "ProFormFieldConvertValueFn",
13346
14787
  "ProFormFieldName",
14788
+ "ProFormFieldOptionValue",
13347
14789
  "ProFormFieldProps",
13348
14790
  "ProFormFieldSet",
13349
14791
  "ProFormFieldSetProps",
13350
14792
  "ProFormFieldTransformFn",
14793
+ "ProFormFieldValueMap",
13351
14794
  "ProFormFormInstance",
13352
14795
  "ProFormGroup",
13353
14796
  "ProFormGroupProps",
@@ -13360,20 +14803,27 @@
13360
14803
  "ProFormListProps",
13361
14804
  "ProFormMode",
13362
14805
  "ProFormPassword",
14806
+ "ProFormPathValue",
13363
14807
  "ProFormProps",
13364
14808
  "ProFormRadioGroup",
14809
+ "ProFormRecursivePartial",
13365
14810
  "ProFormRequestOption",
13366
14811
  "ProFormSchemaColumn",
14812
+ "ProFormSchemaColumns",
13367
14813
  "ProFormSchemaValueType",
13368
14814
  "ProFormSelect",
13369
14815
  "ProFormSlider",
14816
+ "ProFormStableContextValue",
14817
+ "ProFormStateContextValue",
13370
14818
  "ProFormSwitch",
14819
+ "ProFormSyncToUrl",
13371
14820
  "ProFormText",
13372
14821
  "ProFormTextArea",
13373
14822
  "ProFormUpload",
13374
14823
  "ProFormValidateResult",
13375
14824
  "ProFormValueEnumObj",
13376
14825
  "ProFormValueType",
14826
+ "ProFormValuesPatch",
13377
14827
  "QueryFilter",
13378
14828
  "QueryFilterProps",
13379
14829
  "SchemaForm",
@@ -13406,7 +14856,7 @@
13406
14856
  "props": [
13407
14857
  {
13408
14858
  "name": "columns",
13409
- "type": "ProFormSchemaColumn<Values>[]",
14859
+ "type": "ProFormSchemaColumns<Values, FieldParams>",
13410
14860
  "optional": false,
13411
14861
  "default": null,
13412
14862
  "description": "",
@@ -13414,7 +14864,7 @@
13414
14864
  }
13415
14865
  ],
13416
14866
  "extends": [
13417
- "Omit<ProFormProps<Values>, 'children'>"
14867
+ "Omit<ProFormProps<Values, Params>, 'children'>"
13418
14868
  ],
13419
14869
  "relatedSymbols": [
13420
14870
  "CreateProFormFieldConfig",
@@ -13425,6 +14875,7 @@
13425
14875
  "FormCoreInstance",
13426
14876
  "FormInstance",
13427
14877
  "FormLayout",
14878
+ "FormListContextValue",
13428
14879
  "FormSize",
13429
14880
  "LabelAlign",
13430
14881
  "ProForm",
@@ -13438,10 +14889,12 @@
13438
14889
  "ProFormDependencyProps",
13439
14890
  "ProFormFieldConvertValueFn",
13440
14891
  "ProFormFieldName",
14892
+ "ProFormFieldOptionValue",
13441
14893
  "ProFormFieldProps",
13442
14894
  "ProFormFieldSet",
13443
14895
  "ProFormFieldSetProps",
13444
14896
  "ProFormFieldTransformFn",
14897
+ "ProFormFieldValueMap",
13445
14898
  "ProFormFormInstance",
13446
14899
  "ProFormGroup",
13447
14900
  "ProFormGroupProps",
@@ -13454,20 +14907,27 @@
13454
14907
  "ProFormListProps",
13455
14908
  "ProFormMode",
13456
14909
  "ProFormPassword",
14910
+ "ProFormPathValue",
13457
14911
  "ProFormProps",
13458
14912
  "ProFormRadioGroup",
14913
+ "ProFormRecursivePartial",
13459
14914
  "ProFormRequestOption",
13460
14915
  "ProFormSchemaColumn",
14916
+ "ProFormSchemaColumns",
13461
14917
  "ProFormSchemaValueType",
13462
14918
  "ProFormSelect",
13463
14919
  "ProFormSlider",
14920
+ "ProFormStableContextValue",
14921
+ "ProFormStateContextValue",
13464
14922
  "ProFormSwitch",
14923
+ "ProFormSyncToUrl",
13465
14924
  "ProFormText",
13466
14925
  "ProFormTextArea",
13467
14926
  "ProFormUpload",
13468
14927
  "ProFormValidateResult",
13469
14928
  "ProFormValueEnumObj",
13470
14929
  "ProFormValueType",
14930
+ "ProFormValuesPatch",
13471
14931
  "QueryFilter",
13472
14932
  "QueryFilterProps",
13473
14933
  "Rule",
@@ -13507,6 +14967,7 @@
13507
14967
  "FormCoreInstance",
13508
14968
  "FormInstance",
13509
14969
  "FormLayout",
14970
+ "FormListContextValue",
13510
14971
  "FormSize",
13511
14972
  "LabelAlign",
13512
14973
  "ProForm",
@@ -13520,10 +14981,12 @@
13520
14981
  "ProFormDependencyProps",
13521
14982
  "ProFormFieldConvertValueFn",
13522
14983
  "ProFormFieldName",
14984
+ "ProFormFieldOptionValue",
13523
14985
  "ProFormFieldProps",
13524
14986
  "ProFormFieldSet",
13525
14987
  "ProFormFieldSetProps",
13526
14988
  "ProFormFieldTransformFn",
14989
+ "ProFormFieldValueMap",
13527
14990
  "ProFormFormInstance",
13528
14991
  "ProFormGroup",
13529
14992
  "ProFormGroupProps",
@@ -13536,20 +14999,27 @@
13536
14999
  "ProFormListProps",
13537
15000
  "ProFormMode",
13538
15001
  "ProFormPassword",
15002
+ "ProFormPathValue",
13539
15003
  "ProFormProps",
13540
15004
  "ProFormRadioGroup",
15005
+ "ProFormRecursivePartial",
13541
15006
  "ProFormRequestOption",
13542
15007
  "ProFormSchemaColumn",
15008
+ "ProFormSchemaColumns",
13543
15009
  "ProFormSchemaValueType",
13544
15010
  "ProFormSelect",
13545
15011
  "ProFormSlider",
15012
+ "ProFormStableContextValue",
15013
+ "ProFormStateContextValue",
13546
15014
  "ProFormSwitch",
15015
+ "ProFormSyncToUrl",
13547
15016
  "ProFormText",
13548
15017
  "ProFormTextArea",
13549
15018
  "ProFormUpload",
13550
15019
  "ProFormValidateResult",
13551
15020
  "ProFormValueEnumObj",
13552
15021
  "ProFormValueType",
15022
+ "ProFormValuesPatch",
13553
15023
  "QueryFilter",
13554
15024
  "QueryFilterProps",
13555
15025
  "Rule",
@@ -13562,7 +15032,7 @@
13562
15032
  "useFormWatch"
13563
15033
  ],
13564
15034
  "searchTags": [],
13565
- "typeText": "interface SchemaFormProps extends Omit<ProFormProps<Values>, 'children'> { ... }",
15035
+ "typeText": "interface SchemaFormProps extends Omit<ProFormProps<Values, Params>, 'children'> { ... }",
13566
15036
  "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';",
13567
15037
  "examples": [
13568
15038
  {
@@ -15580,6 +17050,7 @@
15580
17050
  "FormCoreInstance",
15581
17051
  "FormInstance",
15582
17052
  "FormLayout",
17053
+ "FormListContextValue",
15583
17054
  "FormSize",
15584
17055
  "LabelAlign",
15585
17056
  "ProForm",
@@ -15593,10 +17064,12 @@
15593
17064
  "ProFormDependencyProps",
15594
17065
  "ProFormFieldConvertValueFn",
15595
17066
  "ProFormFieldName",
17067
+ "ProFormFieldOptionValue",
15596
17068
  "ProFormFieldProps",
15597
17069
  "ProFormFieldSet",
15598
17070
  "ProFormFieldSetProps",
15599
17071
  "ProFormFieldTransformFn",
17072
+ "ProFormFieldValueMap",
15600
17073
  "ProFormFormInstance",
15601
17074
  "ProFormGroup",
15602
17075
  "ProFormGroupProps",
@@ -15609,20 +17082,27 @@
15609
17082
  "ProFormListProps",
15610
17083
  "ProFormMode",
15611
17084
  "ProFormPassword",
17085
+ "ProFormPathValue",
15612
17086
  "ProFormProps",
15613
17087
  "ProFormRadioGroup",
17088
+ "ProFormRecursivePartial",
15614
17089
  "ProFormRequestOption",
15615
17090
  "ProFormSchemaColumn",
17091
+ "ProFormSchemaColumns",
15616
17092
  "ProFormSchemaValueType",
15617
17093
  "ProFormSelect",
15618
17094
  "ProFormSlider",
17095
+ "ProFormStableContextValue",
17096
+ "ProFormStateContextValue",
15619
17097
  "ProFormSwitch",
17098
+ "ProFormSyncToUrl",
15620
17099
  "ProFormText",
15621
17100
  "ProFormTextArea",
15622
17101
  "ProFormUpload",
15623
17102
  "ProFormValidateResult",
15624
17103
  "ProFormValueEnumObj",
15625
17104
  "ProFormValueType",
17105
+ "ProFormValuesPatch",
15626
17106
  "QueryFilter",
15627
17107
  "QueryFilterProps",
15628
17108
  "Rule",
@@ -18222,6 +19702,7 @@
18222
19702
  "FormCoreInstance",
18223
19703
  "FormInstance",
18224
19704
  "FormLayout",
19705
+ "FormListContextValue",
18225
19706
  "FormSize",
18226
19707
  "LabelAlign",
18227
19708
  "ProForm",
@@ -18235,10 +19716,12 @@
18235
19716
  "ProFormDependencyProps",
18236
19717
  "ProFormFieldConvertValueFn",
18237
19718
  "ProFormFieldName",
19719
+ "ProFormFieldOptionValue",
18238
19720
  "ProFormFieldProps",
18239
19721
  "ProFormFieldSet",
18240
19722
  "ProFormFieldSetProps",
18241
19723
  "ProFormFieldTransformFn",
19724
+ "ProFormFieldValueMap",
18242
19725
  "ProFormFormInstance",
18243
19726
  "ProFormGroup",
18244
19727
  "ProFormGroupProps",
@@ -18251,20 +19734,27 @@
18251
19734
  "ProFormListProps",
18252
19735
  "ProFormMode",
18253
19736
  "ProFormPassword",
19737
+ "ProFormPathValue",
18254
19738
  "ProFormProps",
18255
19739
  "ProFormRadioGroup",
19740
+ "ProFormRecursivePartial",
18256
19741
  "ProFormRequestOption",
18257
19742
  "ProFormSchemaColumn",
19743
+ "ProFormSchemaColumns",
18258
19744
  "ProFormSchemaValueType",
18259
19745
  "ProFormSelect",
18260
19746
  "ProFormSlider",
19747
+ "ProFormStableContextValue",
19748
+ "ProFormStateContextValue",
18261
19749
  "ProFormSwitch",
19750
+ "ProFormSyncToUrl",
18262
19751
  "ProFormText",
18263
19752
  "ProFormTextArea",
18264
19753
  "ProFormUpload",
18265
19754
  "ProFormValidateResult",
18266
19755
  "ProFormValueEnumObj",
18267
19756
  "ProFormValueType",
19757
+ "ProFormValuesPatch",
18268
19758
  "QueryFilter",
18269
19759
  "QueryFilterProps",
18270
19760
  "Rule",
@@ -18365,6 +19855,7 @@
18365
19855
  "FormCoreInstance",
18366
19856
  "FormInstance",
18367
19857
  "FormLayout",
19858
+ "FormListContextValue",
18368
19859
  "FormSize",
18369
19860
  "LabelAlign",
18370
19861
  "ProForm",
@@ -18378,10 +19869,12 @@
18378
19869
  "ProFormDependencyProps",
18379
19870
  "ProFormFieldConvertValueFn",
18380
19871
  "ProFormFieldName",
19872
+ "ProFormFieldOptionValue",
18381
19873
  "ProFormFieldProps",
18382
19874
  "ProFormFieldSet",
18383
19875
  "ProFormFieldSetProps",
18384
19876
  "ProFormFieldTransformFn",
19877
+ "ProFormFieldValueMap",
18385
19878
  "ProFormFormInstance",
18386
19879
  "ProFormGroup",
18387
19880
  "ProFormGroupProps",
@@ -18394,20 +19887,27 @@
18394
19887
  "ProFormListProps",
18395
19888
  "ProFormMode",
18396
19889
  "ProFormPassword",
19890
+ "ProFormPathValue",
18397
19891
  "ProFormProps",
18398
19892
  "ProFormRadioGroup",
19893
+ "ProFormRecursivePartial",
18399
19894
  "ProFormRequestOption",
18400
19895
  "ProFormSchemaColumn",
19896
+ "ProFormSchemaColumns",
18401
19897
  "ProFormSchemaValueType",
18402
19898
  "ProFormSelect",
18403
19899
  "ProFormSlider",
19900
+ "ProFormStableContextValue",
19901
+ "ProFormStateContextValue",
18404
19902
  "ProFormSwitch",
19903
+ "ProFormSyncToUrl",
18405
19904
  "ProFormText",
18406
19905
  "ProFormTextArea",
18407
19906
  "ProFormUpload",
18408
19907
  "ProFormValidateResult",
18409
19908
  "ProFormValueEnumObj",
18410
19909
  "ProFormValueType",
19910
+ "ProFormValuesPatch",
18411
19911
  "QueryFilter",
18412
19912
  "QueryFilterProps",
18413
19913
  "Rule",
@@ -18448,6 +19948,7 @@
18448
19948
  "FormCoreInstance",
18449
19949
  "FormInstance",
18450
19950
  "FormLayout",
19951
+ "FormListContextValue",
18451
19952
  "FormSize",
18452
19953
  "LabelAlign",
18453
19954
  "ProForm",
@@ -18461,10 +19962,12 @@
18461
19962
  "ProFormDependencyProps",
18462
19963
  "ProFormFieldConvertValueFn",
18463
19964
  "ProFormFieldName",
19965
+ "ProFormFieldOptionValue",
18464
19966
  "ProFormFieldProps",
18465
19967
  "ProFormFieldSet",
18466
19968
  "ProFormFieldSetProps",
18467
19969
  "ProFormFieldTransformFn",
19970
+ "ProFormFieldValueMap",
18468
19971
  "ProFormFormInstance",
18469
19972
  "ProFormGroup",
18470
19973
  "ProFormGroupProps",
@@ -18477,20 +19980,27 @@
18477
19980
  "ProFormListProps",
18478
19981
  "ProFormMode",
18479
19982
  "ProFormPassword",
19983
+ "ProFormPathValue",
18480
19984
  "ProFormProps",
18481
19985
  "ProFormRadioGroup",
19986
+ "ProFormRecursivePartial",
18482
19987
  "ProFormRequestOption",
18483
19988
  "ProFormSchemaColumn",
19989
+ "ProFormSchemaColumns",
18484
19990
  "ProFormSchemaValueType",
18485
19991
  "ProFormSelect",
18486
19992
  "ProFormSlider",
19993
+ "ProFormStableContextValue",
19994
+ "ProFormStateContextValue",
18487
19995
  "ProFormSwitch",
19996
+ "ProFormSyncToUrl",
18488
19997
  "ProFormText",
18489
19998
  "ProFormTextArea",
18490
19999
  "ProFormUpload",
18491
20000
  "ProFormValidateResult",
18492
20001
  "ProFormValueEnumObj",
18493
20002
  "ProFormValueType",
20003
+ "ProFormValuesPatch",
18494
20004
  "QueryFilter",
18495
20005
  "QueryFilterProps",
18496
20006
  "Rule",
@@ -18752,6 +20262,7 @@
18752
20262
  "FormCoreInstance",
18753
20263
  "FormInstance",
18754
20264
  "FormLayout",
20265
+ "FormListContextValue",
18755
20266
  "FormSize",
18756
20267
  "LabelAlign",
18757
20268
  "ProForm",
@@ -18765,10 +20276,12 @@
18765
20276
  "ProFormDependencyProps",
18766
20277
  "ProFormFieldConvertValueFn",
18767
20278
  "ProFormFieldName",
20279
+ "ProFormFieldOptionValue",
18768
20280
  "ProFormFieldProps",
18769
20281
  "ProFormFieldSet",
18770
20282
  "ProFormFieldSetProps",
18771
20283
  "ProFormFieldTransformFn",
20284
+ "ProFormFieldValueMap",
18772
20285
  "ProFormFormInstance",
18773
20286
  "ProFormGroup",
18774
20287
  "ProFormGroupProps",
@@ -18781,20 +20294,27 @@
18781
20294
  "ProFormListProps",
18782
20295
  "ProFormMode",
18783
20296
  "ProFormPassword",
20297
+ "ProFormPathValue",
18784
20298
  "ProFormProps",
18785
20299
  "ProFormRadioGroup",
20300
+ "ProFormRecursivePartial",
18786
20301
  "ProFormRequestOption",
18787
20302
  "ProFormSchemaColumn",
20303
+ "ProFormSchemaColumns",
18788
20304
  "ProFormSchemaValueType",
18789
20305
  "ProFormSelect",
18790
20306
  "ProFormSlider",
20307
+ "ProFormStableContextValue",
20308
+ "ProFormStateContextValue",
18791
20309
  "ProFormSwitch",
20310
+ "ProFormSyncToUrl",
18792
20311
  "ProFormText",
18793
20312
  "ProFormTextArea",
18794
20313
  "ProFormUpload",
18795
20314
  "ProFormValidateResult",
18796
20315
  "ProFormValueEnumObj",
18797
20316
  "ProFormValueType",
20317
+ "ProFormValuesPatch",
18798
20318
  "QueryFilter",
18799
20319
  "QueryFilterProps",
18800
20320
  "Rule",
@@ -18807,7 +20327,7 @@
18807
20327
  "useFormWatch"
18808
20328
  ],
18809
20329
  "searchTags": [],
18810
- "signature": "(config: CreateProFormFieldConfig<FieldProps>): FC<ProFormFieldProps<FieldProps>>",
20330
+ "signature": "(config: CreateProFormFieldConfig<FieldProps>): ProFormFieldComponent<FieldProps>",
18811
20331
  "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';",
18812
20332
  "examples": [
18813
20333
  {
@@ -18864,6 +20384,7 @@
18864
20384
  "FormCoreInstance",
18865
20385
  "FormInstance",
18866
20386
  "FormLayout",
20387
+ "FormListContextValue",
18867
20388
  "FormSize",
18868
20389
  "LabelAlign",
18869
20390
  "ProForm",
@@ -18877,10 +20398,12 @@
18877
20398
  "ProFormDependencyProps",
18878
20399
  "ProFormFieldConvertValueFn",
18879
20400
  "ProFormFieldName",
20401
+ "ProFormFieldOptionValue",
18880
20402
  "ProFormFieldProps",
18881
20403
  "ProFormFieldSet",
18882
20404
  "ProFormFieldSetProps",
18883
20405
  "ProFormFieldTransformFn",
20406
+ "ProFormFieldValueMap",
18884
20407
  "ProFormFormInstance",
18885
20408
  "ProFormGroup",
18886
20409
  "ProFormGroupProps",
@@ -18893,20 +20416,27 @@
18893
20416
  "ProFormListProps",
18894
20417
  "ProFormMode",
18895
20418
  "ProFormPassword",
20419
+ "ProFormPathValue",
18896
20420
  "ProFormProps",
18897
20421
  "ProFormRadioGroup",
20422
+ "ProFormRecursivePartial",
18898
20423
  "ProFormRequestOption",
18899
20424
  "ProFormSchemaColumn",
20425
+ "ProFormSchemaColumns",
18900
20426
  "ProFormSchemaValueType",
18901
20427
  "ProFormSelect",
18902
20428
  "ProFormSlider",
20429
+ "ProFormStableContextValue",
20430
+ "ProFormStateContextValue",
18903
20431
  "ProFormSwitch",
20432
+ "ProFormSyncToUrl",
18904
20433
  "ProFormText",
18905
20434
  "ProFormTextArea",
18906
20435
  "ProFormUpload",
18907
20436
  "ProFormValidateResult",
18908
20437
  "ProFormValueEnumObj",
18909
20438
  "ProFormValueType",
20439
+ "ProFormValuesPatch",
18910
20440
  "QueryFilter",
18911
20441
  "QueryFilterProps",
18912
20442
  "Rule",