@1money/component-ui 0.0.76 → 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 (145) hide show
  1. package/es/components/ProForm/ProForm.d.ts +1 -1
  2. package/es/components/ProForm/ProForm.js +2 -3
  3. package/es/components/ProForm/ProFormDependency.d.ts +2 -1
  4. package/es/components/ProForm/ProFormDependency.js +1 -1
  5. package/es/components/ProForm/ProFormItem.d.ts +7 -2
  6. package/es/components/ProForm/ProFormItem.js +1 -1
  7. package/es/components/ProForm/ProFormList.d.ts +6 -1
  8. package/es/components/ProForm/ProFormList.js +13 -5
  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 +1 -1
  14. package/es/components/ProForm/core/constants.js +2 -2
  15. package/es/components/ProForm/core/formStore.d.ts +4 -4
  16. package/es/components/ProForm/core/formStore.js +1 -1
  17. package/es/components/ProForm/core/hooks/useForm.d.ts +1 -1
  18. package/es/components/ProForm/core/hooks/useForm.js +34 -9
  19. package/es/components/ProForm/core/hooks/useFormCore.d.ts +2 -2
  20. package/es/components/ProForm/core/hooks/useFormCore.js +17 -123
  21. package/es/components/ProForm/core/interface.d.ts +70 -91
  22. package/es/components/ProForm/core/namePathType.d.ts +25 -0
  23. package/es/components/ProForm/core/namePathType.js +2 -0
  24. package/es/components/ProForm/core/pathUtils.d.ts +5 -3
  25. package/es/components/ProForm/core/pathUtils.js +19 -1
  26. package/es/components/ProForm/core/runRules.d.ts +8 -17
  27. package/es/components/ProForm/core/runRules.js +22 -129
  28. package/es/components/ProForm/core/useFormItem.d.ts +1 -1
  29. package/es/components/ProForm/core/useFormItem.js +14 -66
  30. package/es/components/ProForm/core/validationError.d.ts +2 -2
  31. package/es/components/ProForm/core/validationError.js +1 -1
  32. package/es/components/ProForm/fields/ProFormCheckbox.d.ts +1 -1
  33. package/es/components/ProForm/fields/ProFormCheckboxGroup.d.ts +1 -1
  34. package/es/components/ProForm/fields/ProFormCheckboxGroup.js +1 -1
  35. package/es/components/ProForm/fields/ProFormDatePicker.d.ts +1 -1
  36. package/es/components/ProForm/fields/ProFormDatePicker.js +1 -1
  37. package/es/components/ProForm/fields/ProFormFieldSet.d.ts +7 -2
  38. package/es/components/ProForm/fields/ProFormFieldSet.js +5 -7
  39. package/es/components/ProForm/fields/ProFormPassword.d.ts +1 -1
  40. package/es/components/ProForm/fields/ProFormRadioGroup.d.ts +1 -1
  41. package/es/components/ProForm/fields/ProFormRadioGroup.js +1 -1
  42. package/es/components/ProForm/fields/ProFormSelect.d.ts +1 -1
  43. package/es/components/ProForm/fields/ProFormSelect.js +1 -1
  44. package/es/components/ProForm/fields/ProFormSlider.d.ts +1 -1
  45. package/es/components/ProForm/fields/ProFormSwitch.d.ts +1 -1
  46. package/es/components/ProForm/fields/ProFormText.d.ts +1 -1
  47. package/es/components/ProForm/fields/ProFormTextArea.d.ts +1 -1
  48. package/es/components/ProForm/fields/ProFormUpload.d.ts +1 -1
  49. package/es/components/ProForm/fields/ProFormUpload.js +1 -1
  50. package/es/components/ProForm/fields/createProFormField.d.ts +8 -2
  51. package/es/components/ProForm/fields/createProFormField.js +3 -3
  52. package/es/components/ProForm/hooks/useFieldRequest.d.ts +1 -1
  53. package/es/components/ProForm/hooks/useFieldRequest.js +1 -1
  54. package/es/components/ProForm/hooks/useUrlSync.d.ts +8 -7
  55. package/es/components/ProForm/hooks/useUrlSync.js +1 -1
  56. package/es/components/ProForm/index.d.ts +35 -26
  57. package/es/components/ProForm/index.js +1 -1
  58. package/es/components/ProForm/interface.d.ts +96 -91
  59. package/es/components/ProForm/layouts/DialogForm.d.ts +1 -1
  60. package/es/components/ProForm/layouts/DialogForm.js +1 -1
  61. package/es/components/ProForm/layouts/DrawerForm.d.ts +1 -1
  62. package/es/components/ProForm/layouts/DrawerForm.js +1 -1
  63. package/es/components/ProForm/layouts/QueryFilter.d.ts +1 -1
  64. package/es/components/ProForm/layouts/QueryFilter.js +1 -1
  65. package/es/components/ProForm/layouts/useOverlayForm.d.ts +2 -2
  66. package/es/components/ProForm/layouts/useOverlayForm.js +1 -1
  67. package/es/components/ProForm/utils.d.ts +8 -8
  68. package/es/components/ProForm/utils.js +1 -1
  69. package/es/index.css +1 -1
  70. package/es/index.d.ts +1 -1
  71. package/es/index.js +1 -1
  72. package/lib/components/ProForm/ProForm.d.ts +1 -1
  73. package/lib/components/ProForm/ProForm.js +2 -3
  74. package/lib/components/ProForm/ProFormDependency.d.ts +2 -1
  75. package/lib/components/ProForm/ProFormDependency.js +1 -1
  76. package/lib/components/ProForm/ProFormItem.d.ts +7 -2
  77. package/lib/components/ProForm/ProFormItem.js +1 -1
  78. package/lib/components/ProForm/ProFormList.d.ts +6 -1
  79. package/lib/components/ProForm/ProFormList.js +13 -5
  80. package/lib/components/ProForm/SchemaForm.d.ts +1 -1
  81. package/lib/components/ProForm/SchemaForm.js +8 -5
  82. package/lib/components/ProForm/context.d.ts +8 -7
  83. package/lib/components/ProForm/context.js +1 -1
  84. package/lib/components/ProForm/core/constants.d.ts +1 -1
  85. package/lib/components/ProForm/core/constants.js +2 -2
  86. package/lib/components/ProForm/core/formStore.d.ts +4 -4
  87. package/lib/components/ProForm/core/formStore.js +1 -1
  88. package/lib/components/ProForm/core/hooks/useForm.d.ts +1 -1
  89. package/lib/components/ProForm/core/hooks/useForm.js +34 -9
  90. package/lib/components/ProForm/core/hooks/useFormCore.d.ts +2 -2
  91. package/lib/components/ProForm/core/hooks/useFormCore.js +16 -122
  92. package/lib/components/ProForm/core/interface.d.ts +70 -91
  93. package/lib/components/ProForm/core/namePathType.d.ts +25 -0
  94. package/lib/components/ProForm/core/namePathType.js +6 -0
  95. package/lib/components/ProForm/core/pathUtils.d.ts +5 -3
  96. package/lib/components/ProForm/core/pathUtils.js +20 -1
  97. package/lib/components/ProForm/core/runRules.d.ts +8 -17
  98. package/lib/components/ProForm/core/runRules.js +22 -130
  99. package/lib/components/ProForm/core/useFormItem.d.ts +1 -1
  100. package/lib/components/ProForm/core/useFormItem.js +17 -69
  101. package/lib/components/ProForm/core/validationError.d.ts +2 -2
  102. package/lib/components/ProForm/core/validationError.js +1 -1
  103. package/lib/components/ProForm/fields/ProFormCheckbox.d.ts +1 -1
  104. package/lib/components/ProForm/fields/ProFormCheckboxGroup.d.ts +1 -1
  105. package/lib/components/ProForm/fields/ProFormCheckboxGroup.js +1 -1
  106. package/lib/components/ProForm/fields/ProFormDatePicker.d.ts +1 -1
  107. package/lib/components/ProForm/fields/ProFormDatePicker.js +1 -1
  108. package/lib/components/ProForm/fields/ProFormFieldSet.d.ts +7 -2
  109. package/lib/components/ProForm/fields/ProFormFieldSet.js +5 -7
  110. package/lib/components/ProForm/fields/ProFormPassword.d.ts +1 -1
  111. package/lib/components/ProForm/fields/ProFormRadioGroup.d.ts +1 -1
  112. package/lib/components/ProForm/fields/ProFormRadioGroup.js +1 -1
  113. package/lib/components/ProForm/fields/ProFormSelect.d.ts +1 -1
  114. package/lib/components/ProForm/fields/ProFormSelect.js +1 -1
  115. package/lib/components/ProForm/fields/ProFormSlider.d.ts +1 -1
  116. package/lib/components/ProForm/fields/ProFormSwitch.d.ts +1 -1
  117. package/lib/components/ProForm/fields/ProFormText.d.ts +1 -1
  118. package/lib/components/ProForm/fields/ProFormTextArea.d.ts +1 -1
  119. package/lib/components/ProForm/fields/ProFormUpload.d.ts +1 -1
  120. package/lib/components/ProForm/fields/ProFormUpload.js +1 -1
  121. package/lib/components/ProForm/fields/createProFormField.d.ts +8 -2
  122. package/lib/components/ProForm/fields/createProFormField.js +3 -3
  123. package/lib/components/ProForm/hooks/useFieldRequest.d.ts +1 -1
  124. package/lib/components/ProForm/hooks/useFieldRequest.js +1 -1
  125. package/lib/components/ProForm/hooks/useUrlSync.d.ts +8 -7
  126. package/lib/components/ProForm/hooks/useUrlSync.js +1 -1
  127. package/lib/components/ProForm/index.d.ts +35 -26
  128. package/lib/components/ProForm/index.js +1 -1
  129. package/lib/components/ProForm/interface.d.ts +96 -91
  130. package/lib/components/ProForm/layouts/DialogForm.d.ts +1 -1
  131. package/lib/components/ProForm/layouts/DialogForm.js +1 -1
  132. package/lib/components/ProForm/layouts/DrawerForm.d.ts +1 -1
  133. package/lib/components/ProForm/layouts/DrawerForm.js +1 -1
  134. package/lib/components/ProForm/layouts/QueryFilter.d.ts +1 -1
  135. package/lib/components/ProForm/layouts/QueryFilter.js +1 -1
  136. package/lib/components/ProForm/layouts/useOverlayForm.d.ts +2 -2
  137. package/lib/components/ProForm/layouts/useOverlayForm.js +1 -1
  138. package/lib/components/ProForm/utils.d.ts +8 -8
  139. package/lib/components/ProForm/utils.js +1 -1
  140. package/lib/index.css +1 -1
  141. package/lib/index.d.ts +1 -1
  142. package/lib/index.js +1 -1
  143. package/package.json +1 -1
  144. package/scripts/mcp-server/examples.generated.json +53 -17
  145. package/scripts/mcp-server/index.generated.json +1734 -160
@@ -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": "",
@@ -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.",
@@ -7184,7 +7377,7 @@
7184
7377
  },
7185
7378
  {
7186
7379
  "name": "request",
7187
- "type": "(params?: unknown) => Promise<Partial<Values>>",
7380
+ "type": "(params?: Params) => Promise<ProFormValuesPatch<Values>>",
7188
7381
  "optional": true,
7189
7382
  "default": null,
7190
7383
  "description": "",
@@ -7192,7 +7385,7 @@
7192
7385
  },
7193
7386
  {
7194
7387
  "name": "params",
7195
- "type": "unknown",
7388
+ "type": "Params",
7196
7389
  "optional": true,
7197
7390
  "default": null,
7198
7391
  "description": "",
@@ -7224,7 +7417,7 @@
7224
7417
  },
7225
7418
  {
7226
7419
  "name": "fieldProps",
7227
- "type": "Record<string, unknown>",
7420
+ "type": "Record<string, any>",
7228
7421
  "optional": true,
7229
7422
  "default": null,
7230
7423
  "description": "Defaults injected into every ProFormXxx field's component props (field-level wins)",
@@ -7251,6 +7444,7 @@
7251
7444
  "FormCoreInstance",
7252
7445
  "FormInstance",
7253
7446
  "FormLayout",
7447
+ "FormListContextValue",
7254
7448
  "FormSize",
7255
7449
  "LabelAlign",
7256
7450
  "ProFormCheckbox",
@@ -7263,10 +7457,12 @@
7263
7457
  "ProFormDependencyProps",
7264
7458
  "ProFormFieldConvertValueFn",
7265
7459
  "ProFormFieldName",
7460
+ "ProFormFieldOptionValue",
7266
7461
  "ProFormFieldProps",
7267
7462
  "ProFormFieldSet",
7268
7463
  "ProFormFieldSetProps",
7269
7464
  "ProFormFieldTransformFn",
7465
+ "ProFormFieldValueMap",
7270
7466
  "ProFormFormInstance",
7271
7467
  "ProFormGroup",
7272
7468
  "ProFormGroupProps",
@@ -7279,20 +7475,27 @@
7279
7475
  "ProFormListProps",
7280
7476
  "ProFormMode",
7281
7477
  "ProFormPassword",
7478
+ "ProFormPathValue",
7282
7479
  "ProFormProps",
7283
7480
  "ProFormRadioGroup",
7481
+ "ProFormRecursivePartial",
7284
7482
  "ProFormRequestOption",
7285
7483
  "ProFormSchemaColumn",
7484
+ "ProFormSchemaColumns",
7286
7485
  "ProFormSchemaValueType",
7287
7486
  "ProFormSelect",
7288
7487
  "ProFormSlider",
7488
+ "ProFormStableContextValue",
7489
+ "ProFormStateContextValue",
7289
7490
  "ProFormSwitch",
7491
+ "ProFormSyncToUrl",
7290
7492
  "ProFormText",
7291
7493
  "ProFormTextArea",
7292
7494
  "ProFormUpload",
7293
7495
  "ProFormValidateResult",
7294
7496
  "ProFormValueEnumObj",
7295
7497
  "ProFormValueType",
7498
+ "ProFormValuesPatch",
7296
7499
  "QueryFilter",
7297
7500
  "QueryFilterProps",
7298
7501
  "Rule",
@@ -7347,7 +7550,23 @@
7347
7550
  "source": "readme"
7348
7551
  },
7349
7552
  {
7350
- "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",
7351
7570
  "source": "readme"
7352
7571
  },
7353
7572
  {
@@ -7362,12 +7581,16 @@
7362
7581
  "hash": "b978823a61980bc8652f12244d9754f6b25138846aa816e17df5f72394a679f6",
7363
7582
  "source": "readme"
7364
7583
  },
7584
+ {
7585
+ "hash": "c71a7dffc772a7bab75e4c0e65062753a8527d613df86631bfff9aa0e99ea28b",
7586
+ "source": "readme"
7587
+ },
7365
7588
  {
7366
7589
  "hash": "9cfaec36634043a155c8a1d3642132cb4bc92d53e7b40e98fa08319fae0b6a76",
7367
7590
  "source": "readme"
7368
7591
  },
7369
7592
  {
7370
- "hash": "699022fcfe2193a016f965ca015fe7b541b5f1215b76c3ce9b65711615c76f76",
7593
+ "hash": "72791f662fcf89e80142f2bfa365124f069ad691fd8779bb8d42587b91073e0d",
7371
7594
  "source": "readme"
7372
7595
  },
7373
7596
  {
@@ -7419,7 +7642,11 @@
7419
7642
  "source": "stories"
7420
7643
  },
7421
7644
  {
7422
- "hash": "3c3505571d048f21d338aa69eef9958e1c52c1291853b9b05ab914623319a464",
7645
+ "hash": "692b786f52a95876c3ce1005391b4720c2fdb792e169c6832998d818a6be5fbc",
7646
+ "source": "stories"
7647
+ },
7648
+ {
7649
+ "hash": "d5369ef44077dbcf96179383100ab2803515743fec525cd9038c16b98537baa8",
7423
7650
  "source": "stories"
7424
7651
  },
7425
7652
  {
@@ -7579,6 +7806,7 @@
7579
7806
  "FormCoreInstance",
7580
7807
  "FormInstance",
7581
7808
  "FormLayout",
7809
+ "FormListContextValue",
7582
7810
  "FormSize",
7583
7811
  "LabelAlign",
7584
7812
  "ProForm",
@@ -7591,10 +7819,12 @@
7591
7819
  "ProFormDependencyProps",
7592
7820
  "ProFormFieldConvertValueFn",
7593
7821
  "ProFormFieldName",
7822
+ "ProFormFieldOptionValue",
7594
7823
  "ProFormFieldProps",
7595
7824
  "ProFormFieldSet",
7596
7825
  "ProFormFieldSetProps",
7597
7826
  "ProFormFieldTransformFn",
7827
+ "ProFormFieldValueMap",
7598
7828
  "ProFormFormInstance",
7599
7829
  "ProFormGroup",
7600
7830
  "ProFormGroupProps",
@@ -7607,20 +7837,27 @@
7607
7837
  "ProFormListProps",
7608
7838
  "ProFormMode",
7609
7839
  "ProFormPassword",
7840
+ "ProFormPathValue",
7610
7841
  "ProFormProps",
7611
7842
  "ProFormRadioGroup",
7843
+ "ProFormRecursivePartial",
7612
7844
  "ProFormRequestOption",
7613
7845
  "ProFormSchemaColumn",
7846
+ "ProFormSchemaColumns",
7614
7847
  "ProFormSchemaValueType",
7615
7848
  "ProFormSelect",
7616
7849
  "ProFormSlider",
7850
+ "ProFormStableContextValue",
7851
+ "ProFormStateContextValue",
7617
7852
  "ProFormSwitch",
7853
+ "ProFormSyncToUrl",
7618
7854
  "ProFormText",
7619
7855
  "ProFormTextArea",
7620
7856
  "ProFormUpload",
7621
7857
  "ProFormValidateResult",
7622
7858
  "ProFormValueEnumObj",
7623
7859
  "ProFormValueType",
7860
+ "ProFormValuesPatch",
7624
7861
  "QueryFilter",
7625
7862
  "QueryFilterProps",
7626
7863
  "Rule",
@@ -7661,6 +7898,7 @@
7661
7898
  "FormCoreInstance",
7662
7899
  "FormInstance",
7663
7900
  "FormLayout",
7901
+ "FormListContextValue",
7664
7902
  "FormSize",
7665
7903
  "LabelAlign",
7666
7904
  "ProForm",
@@ -7673,10 +7911,12 @@
7673
7911
  "ProFormDependencyProps",
7674
7912
  "ProFormFieldConvertValueFn",
7675
7913
  "ProFormFieldName",
7914
+ "ProFormFieldOptionValue",
7676
7915
  "ProFormFieldProps",
7677
7916
  "ProFormFieldSet",
7678
7917
  "ProFormFieldSetProps",
7679
7918
  "ProFormFieldTransformFn",
7919
+ "ProFormFieldValueMap",
7680
7920
  "ProFormFormInstance",
7681
7921
  "ProFormGroup",
7682
7922
  "ProFormGroupProps",
@@ -7689,20 +7929,27 @@
7689
7929
  "ProFormListProps",
7690
7930
  "ProFormMode",
7691
7931
  "ProFormPassword",
7932
+ "ProFormPathValue",
7692
7933
  "ProFormProps",
7693
7934
  "ProFormRadioGroup",
7935
+ "ProFormRecursivePartial",
7694
7936
  "ProFormRequestOption",
7695
7937
  "ProFormSchemaColumn",
7938
+ "ProFormSchemaColumns",
7696
7939
  "ProFormSchemaValueType",
7697
7940
  "ProFormSelect",
7698
7941
  "ProFormSlider",
7942
+ "ProFormStableContextValue",
7943
+ "ProFormStateContextValue",
7699
7944
  "ProFormSwitch",
7945
+ "ProFormSyncToUrl",
7700
7946
  "ProFormText",
7701
7947
  "ProFormTextArea",
7702
7948
  "ProFormUpload",
7703
7949
  "ProFormValidateResult",
7704
7950
  "ProFormValueEnumObj",
7705
7951
  "ProFormValueType",
7952
+ "ProFormValuesPatch",
7706
7953
  "QueryFilter",
7707
7954
  "QueryFilterProps",
7708
7955
  "Rule",
@@ -7743,6 +7990,7 @@
7743
7990
  "FormCoreInstance",
7744
7991
  "FormInstance",
7745
7992
  "FormLayout",
7993
+ "FormListContextValue",
7746
7994
  "FormSize",
7747
7995
  "LabelAlign",
7748
7996
  "ProForm",
@@ -7755,10 +8003,12 @@
7755
8003
  "ProFormDependencyProps",
7756
8004
  "ProFormFieldConvertValueFn",
7757
8005
  "ProFormFieldName",
8006
+ "ProFormFieldOptionValue",
7758
8007
  "ProFormFieldProps",
7759
8008
  "ProFormFieldSet",
7760
8009
  "ProFormFieldSetProps",
7761
8010
  "ProFormFieldTransformFn",
8011
+ "ProFormFieldValueMap",
7762
8012
  "ProFormFormInstance",
7763
8013
  "ProFormGroup",
7764
8014
  "ProFormGroupProps",
@@ -7771,20 +8021,27 @@
7771
8021
  "ProFormListProps",
7772
8022
  "ProFormMode",
7773
8023
  "ProFormPassword",
8024
+ "ProFormPathValue",
7774
8025
  "ProFormProps",
7775
8026
  "ProFormRadioGroup",
8027
+ "ProFormRecursivePartial",
7776
8028
  "ProFormRequestOption",
7777
8029
  "ProFormSchemaColumn",
8030
+ "ProFormSchemaColumns",
7778
8031
  "ProFormSchemaValueType",
7779
8032
  "ProFormSelect",
7780
8033
  "ProFormSlider",
8034
+ "ProFormStableContextValue",
8035
+ "ProFormStateContextValue",
7781
8036
  "ProFormSwitch",
8037
+ "ProFormSyncToUrl",
7782
8038
  "ProFormText",
7783
8039
  "ProFormTextArea",
7784
8040
  "ProFormUpload",
7785
8041
  "ProFormValidateResult",
7786
8042
  "ProFormValueEnumObj",
7787
8043
  "ProFormValueType",
8044
+ "ProFormValuesPatch",
7788
8045
  "QueryFilter",
7789
8046
  "QueryFilterProps",
7790
8047
  "Rule",
@@ -7826,6 +8083,7 @@
7826
8083
  "FormCoreInstance",
7827
8084
  "FormInstance",
7828
8085
  "FormLayout",
8086
+ "FormListContextValue",
7829
8087
  "FormSize",
7830
8088
  "LabelAlign",
7831
8089
  "ProForm",
@@ -7838,10 +8096,12 @@
7838
8096
  "ProFormDependencyProps",
7839
8097
  "ProFormFieldConvertValueFn",
7840
8098
  "ProFormFieldName",
8099
+ "ProFormFieldOptionValue",
7841
8100
  "ProFormFieldProps",
7842
8101
  "ProFormFieldSet",
7843
8102
  "ProFormFieldSetProps",
7844
8103
  "ProFormFieldTransformFn",
8104
+ "ProFormFieldValueMap",
7845
8105
  "ProFormFormInstance",
7846
8106
  "ProFormGroup",
7847
8107
  "ProFormGroupProps",
@@ -7854,20 +8114,27 @@
7854
8114
  "ProFormListProps",
7855
8115
  "ProFormMode",
7856
8116
  "ProFormPassword",
8117
+ "ProFormPathValue",
7857
8118
  "ProFormProps",
7858
8119
  "ProFormRadioGroup",
8120
+ "ProFormRecursivePartial",
7859
8121
  "ProFormRequestOption",
7860
8122
  "ProFormSchemaColumn",
8123
+ "ProFormSchemaColumns",
7861
8124
  "ProFormSchemaValueType",
7862
8125
  "ProFormSelect",
7863
8126
  "ProFormSlider",
8127
+ "ProFormStableContextValue",
8128
+ "ProFormStateContextValue",
7864
8129
  "ProFormSwitch",
8130
+ "ProFormSyncToUrl",
7865
8131
  "ProFormText",
7866
8132
  "ProFormTextArea",
7867
8133
  "ProFormUpload",
7868
8134
  "ProFormValidateResult",
7869
8135
  "ProFormValueEnumObj",
7870
8136
  "ProFormValueType",
8137
+ "ProFormValuesPatch",
7871
8138
  "QueryFilter",
7872
8139
  "QueryFilterProps",
7873
8140
  "Rule",
@@ -7881,7 +8148,7 @@
7881
8148
  "useFormWatch"
7882
8149
  ],
7883
8150
  "searchTags": [],
7884
- "typeText": "interface ProFormContextValue extends ProFormStableContextValue, ProFormStateContextValue { ... }",
8151
+ "typeText": "interface ProFormContextValue extends ProFormStableContextValue<Values>, ProFormStateContextValue<Values> { ... }",
7885
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';",
7886
8153
  "examples": [
7887
8154
  {
@@ -7909,6 +8176,7 @@
7909
8176
  "FormCoreInstance",
7910
8177
  "FormInstance",
7911
8178
  "FormLayout",
8179
+ "FormListContextValue",
7912
8180
  "FormSize",
7913
8181
  "LabelAlign",
7914
8182
  "ProForm",
@@ -7921,10 +8189,12 @@
7921
8189
  "ProFormDependencyProps",
7922
8190
  "ProFormFieldConvertValueFn",
7923
8191
  "ProFormFieldName",
8192
+ "ProFormFieldOptionValue",
7924
8193
  "ProFormFieldProps",
7925
8194
  "ProFormFieldSet",
7926
8195
  "ProFormFieldSetProps",
7927
8196
  "ProFormFieldTransformFn",
8197
+ "ProFormFieldValueMap",
7928
8198
  "ProFormFormInstance",
7929
8199
  "ProFormGroup",
7930
8200
  "ProFormGroupProps",
@@ -7937,20 +8207,27 @@
7937
8207
  "ProFormListProps",
7938
8208
  "ProFormMode",
7939
8209
  "ProFormPassword",
8210
+ "ProFormPathValue",
7940
8211
  "ProFormProps",
7941
8212
  "ProFormRadioGroup",
8213
+ "ProFormRecursivePartial",
7942
8214
  "ProFormRequestOption",
7943
8215
  "ProFormSchemaColumn",
8216
+ "ProFormSchemaColumns",
7944
8217
  "ProFormSchemaValueType",
7945
8218
  "ProFormSelect",
7946
8219
  "ProFormSlider",
8220
+ "ProFormStableContextValue",
8221
+ "ProFormStateContextValue",
7947
8222
  "ProFormSwitch",
8223
+ "ProFormSyncToUrl",
7948
8224
  "ProFormText",
7949
8225
  "ProFormTextArea",
7950
8226
  "ProFormUpload",
7951
8227
  "ProFormValidateResult",
7952
8228
  "ProFormValueEnumObj",
7953
8229
  "ProFormValueType",
8230
+ "ProFormValuesPatch",
7954
8231
  "QueryFilter",
7955
8232
  "QueryFilterProps",
7956
8233
  "Rule",
@@ -7964,7 +8241,7 @@
7964
8241
  "useFormWatch"
7965
8242
  ],
7966
8243
  "searchTags": [],
7967
- "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",
7968
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';",
7969
8246
  "examples": [
7970
8247
  {
@@ -7992,6 +8269,7 @@
7992
8269
  "FormCoreInstance",
7993
8270
  "FormInstance",
7994
8271
  "FormLayout",
8272
+ "FormListContextValue",
7995
8273
  "FormSize",
7996
8274
  "LabelAlign",
7997
8275
  "ProForm",
@@ -8004,10 +8282,12 @@
8004
8282
  "ProFormDependencyProps",
8005
8283
  "ProFormFieldConvertValueFn",
8006
8284
  "ProFormFieldName",
8285
+ "ProFormFieldOptionValue",
8007
8286
  "ProFormFieldProps",
8008
8287
  "ProFormFieldSet",
8009
8288
  "ProFormFieldSetProps",
8010
8289
  "ProFormFieldTransformFn",
8290
+ "ProFormFieldValueMap",
8011
8291
  "ProFormFormInstance",
8012
8292
  "ProFormGroup",
8013
8293
  "ProFormGroupProps",
@@ -8020,20 +8300,27 @@
8020
8300
  "ProFormListProps",
8021
8301
  "ProFormMode",
8022
8302
  "ProFormPassword",
8303
+ "ProFormPathValue",
8023
8304
  "ProFormProps",
8024
8305
  "ProFormRadioGroup",
8306
+ "ProFormRecursivePartial",
8025
8307
  "ProFormRequestOption",
8026
8308
  "ProFormSchemaColumn",
8309
+ "ProFormSchemaColumns",
8027
8310
  "ProFormSchemaValueType",
8028
8311
  "ProFormSelect",
8029
8312
  "ProFormSlider",
8313
+ "ProFormStableContextValue",
8314
+ "ProFormStateContextValue",
8030
8315
  "ProFormSwitch",
8316
+ "ProFormSyncToUrl",
8031
8317
  "ProFormText",
8032
8318
  "ProFormTextArea",
8033
8319
  "ProFormUpload",
8034
8320
  "ProFormValidateResult",
8035
8321
  "ProFormValueEnumObj",
8036
8322
  "ProFormValueType",
8323
+ "ProFormValuesPatch",
8037
8324
  "QueryFilter",
8038
8325
  "QueryFilterProps",
8039
8326
  "Rule",
@@ -8069,7 +8356,7 @@
8069
8356
  "props": [
8070
8357
  {
8071
8358
  "name": "name",
8072
- "type": "ProFormFieldName<Values>[]",
8359
+ "type": "Name[]",
8073
8360
  "optional": false,
8074
8361
  "default": null,
8075
8362
  "description": "",
@@ -8077,7 +8364,7 @@
8077
8364
  },
8078
8365
  {
8079
8366
  "name": "children",
8080
- "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",
8081
8368
  "optional": false,
8082
8369
  "default": null,
8083
8370
  "description": "",
@@ -8094,6 +8381,7 @@
8094
8381
  "FormCoreInstance",
8095
8382
  "FormInstance",
8096
8383
  "FormLayout",
8384
+ "FormListContextValue",
8097
8385
  "FormSize",
8098
8386
  "LabelAlign",
8099
8387
  "ProForm",
@@ -8106,10 +8394,12 @@
8106
8394
  "ProFormDependencyProps",
8107
8395
  "ProFormFieldConvertValueFn",
8108
8396
  "ProFormFieldName",
8397
+ "ProFormFieldOptionValue",
8109
8398
  "ProFormFieldProps",
8110
8399
  "ProFormFieldSet",
8111
8400
  "ProFormFieldSetProps",
8112
8401
  "ProFormFieldTransformFn",
8402
+ "ProFormFieldValueMap",
8113
8403
  "ProFormFormInstance",
8114
8404
  "ProFormGroup",
8115
8405
  "ProFormGroupProps",
@@ -8122,20 +8412,27 @@
8122
8412
  "ProFormListProps",
8123
8413
  "ProFormMode",
8124
8414
  "ProFormPassword",
8415
+ "ProFormPathValue",
8125
8416
  "ProFormProps",
8126
8417
  "ProFormRadioGroup",
8418
+ "ProFormRecursivePartial",
8127
8419
  "ProFormRequestOption",
8128
8420
  "ProFormSchemaColumn",
8421
+ "ProFormSchemaColumns",
8129
8422
  "ProFormSchemaValueType",
8130
8423
  "ProFormSelect",
8131
8424
  "ProFormSlider",
8425
+ "ProFormStableContextValue",
8426
+ "ProFormStateContextValue",
8132
8427
  "ProFormSwitch",
8428
+ "ProFormSyncToUrl",
8133
8429
  "ProFormText",
8134
8430
  "ProFormTextArea",
8135
8431
  "ProFormUpload",
8136
8432
  "ProFormValidateResult",
8137
8433
  "ProFormValueEnumObj",
8138
8434
  "ProFormValueType",
8435
+ "ProFormValuesPatch",
8139
8436
  "QueryFilter",
8140
8437
  "QueryFilterProps",
8141
8438
  "Rule",
@@ -8176,6 +8473,7 @@
8176
8473
  "FormCoreInstance",
8177
8474
  "FormInstance",
8178
8475
  "FormLayout",
8476
+ "FormListContextValue",
8179
8477
  "FormSize",
8180
8478
  "LabelAlign",
8181
8479
  "ProForm",
@@ -8188,10 +8486,12 @@
8188
8486
  "ProFormDependency",
8189
8487
  "ProFormFieldConvertValueFn",
8190
8488
  "ProFormFieldName",
8489
+ "ProFormFieldOptionValue",
8191
8490
  "ProFormFieldProps",
8192
8491
  "ProFormFieldSet",
8193
8492
  "ProFormFieldSetProps",
8194
8493
  "ProFormFieldTransformFn",
8494
+ "ProFormFieldValueMap",
8195
8495
  "ProFormFormInstance",
8196
8496
  "ProFormGroup",
8197
8497
  "ProFormGroupProps",
@@ -8204,20 +8504,27 @@
8204
8504
  "ProFormListProps",
8205
8505
  "ProFormMode",
8206
8506
  "ProFormPassword",
8507
+ "ProFormPathValue",
8207
8508
  "ProFormProps",
8208
8509
  "ProFormRadioGroup",
8510
+ "ProFormRecursivePartial",
8209
8511
  "ProFormRequestOption",
8210
8512
  "ProFormSchemaColumn",
8513
+ "ProFormSchemaColumns",
8211
8514
  "ProFormSchemaValueType",
8212
8515
  "ProFormSelect",
8213
8516
  "ProFormSlider",
8517
+ "ProFormStableContextValue",
8518
+ "ProFormStateContextValue",
8214
8519
  "ProFormSwitch",
8520
+ "ProFormSyncToUrl",
8215
8521
  "ProFormText",
8216
8522
  "ProFormTextArea",
8217
8523
  "ProFormUpload",
8218
8524
  "ProFormValidateResult",
8219
8525
  "ProFormValueEnumObj",
8220
8526
  "ProFormValueType",
8527
+ "ProFormValuesPatch",
8221
8528
  "QueryFilter",
8222
8529
  "QueryFilterProps",
8223
8530
  "Rule",
@@ -8259,6 +8566,7 @@
8259
8566
  "FormCoreInstance",
8260
8567
  "FormInstance",
8261
8568
  "FormLayout",
8569
+ "FormListContextValue",
8262
8570
  "FormSize",
8263
8571
  "LabelAlign",
8264
8572
  "ProForm",
@@ -8271,10 +8579,12 @@
8271
8579
  "ProFormDependency",
8272
8580
  "ProFormDependencyProps",
8273
8581
  "ProFormFieldName",
8582
+ "ProFormFieldOptionValue",
8274
8583
  "ProFormFieldProps",
8275
8584
  "ProFormFieldSet",
8276
8585
  "ProFormFieldSetProps",
8277
8586
  "ProFormFieldTransformFn",
8587
+ "ProFormFieldValueMap",
8278
8588
  "ProFormFormInstance",
8279
8589
  "ProFormGroup",
8280
8590
  "ProFormGroupProps",
@@ -8287,20 +8597,27 @@
8287
8597
  "ProFormListProps",
8288
8598
  "ProFormMode",
8289
8599
  "ProFormPassword",
8600
+ "ProFormPathValue",
8290
8601
  "ProFormProps",
8291
8602
  "ProFormRadioGroup",
8603
+ "ProFormRecursivePartial",
8292
8604
  "ProFormRequestOption",
8293
8605
  "ProFormSchemaColumn",
8606
+ "ProFormSchemaColumns",
8294
8607
  "ProFormSchemaValueType",
8295
8608
  "ProFormSelect",
8296
8609
  "ProFormSlider",
8610
+ "ProFormStableContextValue",
8611
+ "ProFormStateContextValue",
8297
8612
  "ProFormSwitch",
8613
+ "ProFormSyncToUrl",
8298
8614
  "ProFormText",
8299
8615
  "ProFormTextArea",
8300
8616
  "ProFormUpload",
8301
8617
  "ProFormValidateResult",
8302
8618
  "ProFormValueEnumObj",
8303
8619
  "ProFormValueType",
8620
+ "ProFormValuesPatch",
8304
8621
  "QueryFilter",
8305
8622
  "QueryFilterProps",
8306
8623
  "Rule",
@@ -8314,7 +8631,7 @@
8314
8631
  "useFormWatch"
8315
8632
  ],
8316
8633
  "searchTags": [],
8317
- "typeText": "(\n value: unknown,\n name: string,\n) => unknown",
8634
+ "typeText": "(\n value: ProFormPathValue<Values, Name>,\n name: Name,\n) => any",
8318
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';",
8319
8636
  "examples": [
8320
8637
  {
@@ -8327,7 +8644,100 @@
8327
8644
  "name": "ProFormFieldName",
8328
8645
  "kind": "type",
8329
8646
  "category": "forms",
8330
- "summary": "Top-level keys of `Values` (for editor autocomplete) while still accepting any string — names may be dot-paths (`\"address.city\"`), list paths (`\"items.0.qty\"`), or keys produced by a renaming `transform`.",
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": "",
8331
8741
  "importPath": "@1money/component-ui",
8332
8742
  "subpathImport": "@1money/component-ui/ProForm",
8333
8743
  "sourceFile": "src/components/ProForm/interface.ts",
@@ -8342,6 +8752,7 @@
8342
8752
  "FormCoreInstance",
8343
8753
  "FormInstance",
8344
8754
  "FormLayout",
8755
+ "FormListContextValue",
8345
8756
  "FormSize",
8346
8757
  "LabelAlign",
8347
8758
  "ProForm",
@@ -8354,10 +8765,12 @@
8354
8765
  "ProFormDependency",
8355
8766
  "ProFormDependencyProps",
8356
8767
  "ProFormFieldConvertValueFn",
8768
+ "ProFormFieldName",
8357
8769
  "ProFormFieldProps",
8358
8770
  "ProFormFieldSet",
8359
8771
  "ProFormFieldSetProps",
8360
8772
  "ProFormFieldTransformFn",
8773
+ "ProFormFieldValueMap",
8361
8774
  "ProFormFormInstance",
8362
8775
  "ProFormGroup",
8363
8776
  "ProFormGroupProps",
@@ -8370,20 +8783,27 @@
8370
8783
  "ProFormListProps",
8371
8784
  "ProFormMode",
8372
8785
  "ProFormPassword",
8786
+ "ProFormPathValue",
8373
8787
  "ProFormProps",
8374
8788
  "ProFormRadioGroup",
8789
+ "ProFormRecursivePartial",
8375
8790
  "ProFormRequestOption",
8376
8791
  "ProFormSchemaColumn",
8792
+ "ProFormSchemaColumns",
8377
8793
  "ProFormSchemaValueType",
8378
8794
  "ProFormSelect",
8379
8795
  "ProFormSlider",
8796
+ "ProFormStableContextValue",
8797
+ "ProFormStateContextValue",
8380
8798
  "ProFormSwitch",
8799
+ "ProFormSyncToUrl",
8381
8800
  "ProFormText",
8382
8801
  "ProFormTextArea",
8383
8802
  "ProFormUpload",
8384
8803
  "ProFormValidateResult",
8385
8804
  "ProFormValueEnumObj",
8386
8805
  "ProFormValueType",
8806
+ "ProFormValuesPatch",
8387
8807
  "QueryFilter",
8388
8808
  "QueryFilterProps",
8389
8809
  "Rule",
@@ -8397,7 +8817,7 @@
8397
8817
  "useFormWatch"
8398
8818
  ],
8399
8819
  "searchTags": [],
8400
- "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",
8401
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';",
8402
8822
  "examples": [
8403
8823
  {
@@ -8410,7 +8830,7 @@
8410
8830
  "name": "ProFormFieldProps",
8411
8831
  "kind": "type",
8412
8832
  "category": "forms",
8413
- "summary": "",
8833
+ "summary": "Common field props with the historical generic order preserved: `ProFormFieldProps<FieldProps, Values, Name, FieldParams>`.",
8414
8834
  "importPath": "@1money/component-ui",
8415
8835
  "subpathImport": "@1money/component-ui/ProForm",
8416
8836
  "sourceFile": "src/components/ProForm/interface.ts",
@@ -8425,6 +8845,7 @@
8425
8845
  "FormCoreInstance",
8426
8846
  "FormInstance",
8427
8847
  "FormLayout",
8848
+ "FormListContextValue",
8428
8849
  "FormSize",
8429
8850
  "LabelAlign",
8430
8851
  "ProForm",
@@ -8438,9 +8859,11 @@
8438
8859
  "ProFormDependencyProps",
8439
8860
  "ProFormFieldConvertValueFn",
8440
8861
  "ProFormFieldName",
8862
+ "ProFormFieldOptionValue",
8441
8863
  "ProFormFieldSet",
8442
8864
  "ProFormFieldSetProps",
8443
8865
  "ProFormFieldTransformFn",
8866
+ "ProFormFieldValueMap",
8444
8867
  "ProFormFormInstance",
8445
8868
  "ProFormGroup",
8446
8869
  "ProFormGroupProps",
@@ -8453,20 +8876,27 @@
8453
8876
  "ProFormListProps",
8454
8877
  "ProFormMode",
8455
8878
  "ProFormPassword",
8879
+ "ProFormPathValue",
8456
8880
  "ProFormProps",
8457
8881
  "ProFormRadioGroup",
8882
+ "ProFormRecursivePartial",
8458
8883
  "ProFormRequestOption",
8459
8884
  "ProFormSchemaColumn",
8885
+ "ProFormSchemaColumns",
8460
8886
  "ProFormSchemaValueType",
8461
8887
  "ProFormSelect",
8462
8888
  "ProFormSlider",
8889
+ "ProFormStableContextValue",
8890
+ "ProFormStateContextValue",
8463
8891
  "ProFormSwitch",
8892
+ "ProFormSyncToUrl",
8464
8893
  "ProFormText",
8465
8894
  "ProFormTextArea",
8466
8895
  "ProFormUpload",
8467
8896
  "ProFormValidateResult",
8468
8897
  "ProFormValueEnumObj",
8469
8898
  "ProFormValueType",
8899
+ "ProFormValuesPatch",
8470
8900
  "QueryFilter",
8471
8901
  "QueryFilterProps",
8472
8902
  "Rule",
@@ -8480,7 +8910,7 @@
8480
8910
  "useFormWatch"
8481
8911
  ],
8482
8912
  "searchTags": [],
8483
- "typeText": "interface ProFormFieldProps { ... }",
8913
+ "typeText": "ProFormTypedFieldProps<Values, Name, FieldProps, FieldParams>",
8484
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';",
8485
8915
  "examples": [
8486
8916
  {
@@ -8500,7 +8930,7 @@
8500
8930
  "props": [
8501
8931
  {
8502
8932
  "name": "name",
8503
- "type": "string",
8933
+ "type": "Name",
8504
8934
  "optional": true,
8505
8935
  "default": null,
8506
8936
  "description": "",
@@ -8516,7 +8946,7 @@
8516
8946
  },
8517
8947
  {
8518
8948
  "name": "rules",
8519
- "type": "FormRule[]",
8949
+ "type": "FormRule<Values>[]",
8520
8950
  "optional": true,
8521
8951
  "default": null,
8522
8952
  "description": "",
@@ -8573,6 +9003,7 @@
8573
9003
  "FormCoreInstance",
8574
9004
  "FormInstance",
8575
9005
  "FormLayout",
9006
+ "FormListContextValue",
8576
9007
  "FormSize",
8577
9008
  "LabelAlign",
8578
9009
  "ProForm",
@@ -8586,9 +9017,11 @@
8586
9017
  "ProFormDependencyProps",
8587
9018
  "ProFormFieldConvertValueFn",
8588
9019
  "ProFormFieldName",
9020
+ "ProFormFieldOptionValue",
8589
9021
  "ProFormFieldProps",
8590
9022
  "ProFormFieldSetProps",
8591
9023
  "ProFormFieldTransformFn",
9024
+ "ProFormFieldValueMap",
8592
9025
  "ProFormFormInstance",
8593
9026
  "ProFormGroup",
8594
9027
  "ProFormGroupProps",
@@ -8601,20 +9034,27 @@
8601
9034
  "ProFormListProps",
8602
9035
  "ProFormMode",
8603
9036
  "ProFormPassword",
9037
+ "ProFormPathValue",
8604
9038
  "ProFormProps",
8605
9039
  "ProFormRadioGroup",
9040
+ "ProFormRecursivePartial",
8606
9041
  "ProFormRequestOption",
8607
9042
  "ProFormSchemaColumn",
9043
+ "ProFormSchemaColumns",
8608
9044
  "ProFormSchemaValueType",
8609
9045
  "ProFormSelect",
8610
9046
  "ProFormSlider",
9047
+ "ProFormStableContextValue",
9048
+ "ProFormStateContextValue",
8611
9049
  "ProFormSwitch",
9050
+ "ProFormSyncToUrl",
8612
9051
  "ProFormText",
8613
9052
  "ProFormTextArea",
8614
9053
  "ProFormUpload",
8615
9054
  "ProFormValidateResult",
8616
9055
  "ProFormValueEnumObj",
8617
9056
  "ProFormValueType",
9057
+ "ProFormValuesPatch",
8618
9058
  "QueryFilter",
8619
9059
  "QueryFilterProps",
8620
9060
  "Rule",
@@ -8655,6 +9095,7 @@
8655
9095
  "FormCoreInstance",
8656
9096
  "FormInstance",
8657
9097
  "FormLayout",
9098
+ "FormListContextValue",
8658
9099
  "FormSize",
8659
9100
  "LabelAlign",
8660
9101
  "ProForm",
@@ -8668,9 +9109,11 @@
8668
9109
  "ProFormDependencyProps",
8669
9110
  "ProFormFieldConvertValueFn",
8670
9111
  "ProFormFieldName",
9112
+ "ProFormFieldOptionValue",
8671
9113
  "ProFormFieldProps",
8672
9114
  "ProFormFieldSet",
8673
9115
  "ProFormFieldTransformFn",
9116
+ "ProFormFieldValueMap",
8674
9117
  "ProFormFormInstance",
8675
9118
  "ProFormGroup",
8676
9119
  "ProFormGroupProps",
@@ -8683,20 +9126,27 @@
8683
9126
  "ProFormListProps",
8684
9127
  "ProFormMode",
8685
9128
  "ProFormPassword",
9129
+ "ProFormPathValue",
8686
9130
  "ProFormProps",
8687
9131
  "ProFormRadioGroup",
9132
+ "ProFormRecursivePartial",
8688
9133
  "ProFormRequestOption",
8689
9134
  "ProFormSchemaColumn",
9135
+ "ProFormSchemaColumns",
8690
9136
  "ProFormSchemaValueType",
8691
9137
  "ProFormSelect",
8692
9138
  "ProFormSlider",
9139
+ "ProFormStableContextValue",
9140
+ "ProFormStateContextValue",
8693
9141
  "ProFormSwitch",
9142
+ "ProFormSyncToUrl",
8694
9143
  "ProFormText",
8695
9144
  "ProFormTextArea",
8696
9145
  "ProFormUpload",
8697
9146
  "ProFormValidateResult",
8698
9147
  "ProFormValueEnumObj",
8699
9148
  "ProFormValueType",
9149
+ "ProFormValuesPatch",
8700
9150
  "QueryFilter",
8701
9151
  "QueryFilterProps",
8702
9152
  "Rule",
@@ -8738,6 +9188,7 @@
8738
9188
  "FormCoreInstance",
8739
9189
  "FormInstance",
8740
9190
  "FormLayout",
9191
+ "FormListContextValue",
8741
9192
  "FormSize",
8742
9193
  "LabelAlign",
8743
9194
  "ProForm",
@@ -8751,9 +9202,11 @@
8751
9202
  "ProFormDependencyProps",
8752
9203
  "ProFormFieldConvertValueFn",
8753
9204
  "ProFormFieldName",
9205
+ "ProFormFieldOptionValue",
8754
9206
  "ProFormFieldProps",
8755
9207
  "ProFormFieldSet",
8756
9208
  "ProFormFieldSetProps",
9209
+ "ProFormFieldValueMap",
8757
9210
  "ProFormFormInstance",
8758
9211
  "ProFormGroup",
8759
9212
  "ProFormGroupProps",
@@ -8766,20 +9219,27 @@
8766
9219
  "ProFormListProps",
8767
9220
  "ProFormMode",
8768
9221
  "ProFormPassword",
9222
+ "ProFormPathValue",
8769
9223
  "ProFormProps",
8770
9224
  "ProFormRadioGroup",
9225
+ "ProFormRecursivePartial",
8771
9226
  "ProFormRequestOption",
8772
9227
  "ProFormSchemaColumn",
9228
+ "ProFormSchemaColumns",
8773
9229
  "ProFormSchemaValueType",
8774
9230
  "ProFormSelect",
8775
9231
  "ProFormSlider",
9232
+ "ProFormStableContextValue",
9233
+ "ProFormStateContextValue",
8776
9234
  "ProFormSwitch",
9235
+ "ProFormSyncToUrl",
8777
9236
  "ProFormText",
8778
9237
  "ProFormTextArea",
8779
9238
  "ProFormUpload",
8780
9239
  "ProFormValidateResult",
8781
9240
  "ProFormValueEnumObj",
8782
9241
  "ProFormValueType",
9242
+ "ProFormValuesPatch",
8783
9243
  "QueryFilter",
8784
9244
  "QueryFilterProps",
8785
9245
  "Rule",
@@ -8793,7 +9253,7 @@
8793
9253
  "useFormWatch"
8794
9254
  ],
8795
9255
  "searchTags": [],
8796
- "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",
8797
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';",
8798
9258
  "examples": [
8799
9259
  {
@@ -8803,13 +9263,13 @@
8803
9263
  ]
8804
9264
  },
8805
9265
  {
8806
- "name": "ProFormFormInstance",
9266
+ "name": "ProFormFieldValueMap",
8807
9267
  "kind": "type",
8808
9268
  "category": "forms",
8809
9269
  "summary": "",
8810
9270
  "importPath": "@1money/component-ui",
8811
9271
  "subpathImport": "@1money/component-ui/ProForm",
8812
- "sourceFile": "src/components/ProForm/interface.ts",
9272
+ "sourceFile": "src/components/ProForm/core/namePathType.ts",
8813
9273
  "props": [],
8814
9274
  "extends": [],
8815
9275
  "relatedSymbols": [
@@ -8821,6 +9281,7 @@
8821
9281
  "FormCoreInstance",
8822
9282
  "FormInstance",
8823
9283
  "FormLayout",
9284
+ "FormListContextValue",
8824
9285
  "FormSize",
8825
9286
  "LabelAlign",
8826
9287
  "ProForm",
@@ -8834,10 +9295,12 @@
8834
9295
  "ProFormDependencyProps",
8835
9296
  "ProFormFieldConvertValueFn",
8836
9297
  "ProFormFieldName",
9298
+ "ProFormFieldOptionValue",
8837
9299
  "ProFormFieldProps",
8838
9300
  "ProFormFieldSet",
8839
9301
  "ProFormFieldSetProps",
8840
9302
  "ProFormFieldTransformFn",
9303
+ "ProFormFormInstance",
8841
9304
  "ProFormGroup",
8842
9305
  "ProFormGroupProps",
8843
9306
  "ProFormItem",
@@ -8849,20 +9312,27 @@
8849
9312
  "ProFormListProps",
8850
9313
  "ProFormMode",
8851
9314
  "ProFormPassword",
9315
+ "ProFormPathValue",
8852
9316
  "ProFormProps",
8853
9317
  "ProFormRadioGroup",
9318
+ "ProFormRecursivePartial",
8854
9319
  "ProFormRequestOption",
8855
9320
  "ProFormSchemaColumn",
9321
+ "ProFormSchemaColumns",
8856
9322
  "ProFormSchemaValueType",
8857
9323
  "ProFormSelect",
8858
9324
  "ProFormSlider",
9325
+ "ProFormStableContextValue",
9326
+ "ProFormStateContextValue",
8859
9327
  "ProFormSwitch",
9328
+ "ProFormSyncToUrl",
8860
9329
  "ProFormText",
8861
9330
  "ProFormTextArea",
8862
9331
  "ProFormUpload",
8863
9332
  "ProFormValidateResult",
8864
9333
  "ProFormValueEnumObj",
8865
9334
  "ProFormValueType",
9335
+ "ProFormValuesPatch",
8866
9336
  "QueryFilter",
8867
9337
  "QueryFilterProps",
8868
9338
  "Rule",
@@ -8876,7 +9346,7 @@
8876
9346
  "useFormWatch"
8877
9347
  ],
8878
9348
  "searchTags": [],
8879
- "typeText": "interface ProFormFormInstance extends FormInstance<Values> { ... }",
9349
+ "typeText": "Partial<{\n [FieldName in Name]: ProFormPathValue<Values, FieldName>;\n}>",
8880
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';",
8881
9351
  "examples": [
8882
9352
  {
@@ -8886,76 +9356,169 @@
8886
9356
  ]
8887
9357
  },
8888
9358
  {
8889
- "name": "ProFormGroup",
8890
- "kind": "component",
9359
+ "name": "ProFormFormInstance",
9360
+ "kind": "type",
8891
9361
  "category": "forms",
8892
9362
  "summary": "",
8893
9363
  "importPath": "@1money/component-ui",
8894
9364
  "subpathImport": "@1money/component-ui/ProForm",
8895
- "sourceFile": "src/components/ProForm/ProFormGroup.tsx",
8896
- "props": [
8897
- {
8898
- "name": "title",
8899
- "type": "ReactNode",
8900
- "optional": true,
8901
- "default": null,
8902
- "description": "",
8903
- "inheritedFrom": null
8904
- },
8905
- {
8906
- "name": "extra",
8907
- "type": "ReactNode",
8908
- "optional": true,
8909
- "default": null,
8910
- "description": "",
8911
- "inheritedFrom": null
8912
- },
8913
- {
8914
- "name": "collapsible",
8915
- "type": "boolean",
8916
- "optional": true,
8917
- "default": null,
8918
- "description": "",
8919
- "inheritedFrom": null
8920
- },
8921
- {
8922
- "name": "defaultCollapsed",
8923
- "type": "boolean",
8924
- "optional": true,
8925
- "default": null,
8926
- "description": "",
8927
- "inheritedFrom": null
8928
- },
8929
- {
8930
- "name": "collapsed",
8931
- "type": "boolean",
8932
- "optional": true,
8933
- "default": null,
8934
- "description": "",
8935
- "inheritedFrom": null
8936
- },
8937
- {
8938
- "name": "onCollapse",
8939
- "type": "(collapsed: boolean) => void",
8940
- "optional": true,
8941
- "default": null,
8942
- "description": "",
8943
- "inheritedFrom": null
8944
- },
8945
- {
8946
- "name": "style",
8947
- "type": "CSSProperties",
8948
- "optional": true,
8949
- "default": null,
8950
- "description": "",
8951
- "inheritedFrom": null
8952
- },
8953
- {
8954
- "name": "children",
8955
- "type": "ReactNode",
8956
- "optional": true,
8957
- "default": null,
8958
- "description": "",
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
9483
+ },
9484
+ {
9485
+ "name": "defaultCollapsed",
9486
+ "type": "boolean",
9487
+ "optional": true,
9488
+ "default": null,
9489
+ "description": "",
9490
+ "inheritedFrom": null
9491
+ },
9492
+ {
9493
+ "name": "collapsed",
9494
+ "type": "boolean",
9495
+ "optional": true,
9496
+ "default": null,
9497
+ "description": "",
9498
+ "inheritedFrom": null
9499
+ },
9500
+ {
9501
+ "name": "onCollapse",
9502
+ "type": "(collapsed: boolean) => void",
9503
+ "optional": true,
9504
+ "default": null,
9505
+ "description": "",
9506
+ "inheritedFrom": null
9507
+ },
9508
+ {
9509
+ "name": "style",
9510
+ "type": "CSSProperties",
9511
+ "optional": true,
9512
+ "default": null,
9513
+ "description": "",
9514
+ "inheritedFrom": null
9515
+ },
9516
+ {
9517
+ "name": "children",
9518
+ "type": "ReactNode",
9519
+ "optional": true,
9520
+ "default": null,
9521
+ "description": "",
8959
9522
  "inheritedFrom": null
8960
9523
  }
8961
9524
  ],
@@ -8969,6 +9532,7 @@
8969
9532
  "FormCoreInstance",
8970
9533
  "FormInstance",
8971
9534
  "FormLayout",
9535
+ "FormListContextValue",
8972
9536
  "FormSize",
8973
9537
  "LabelAlign",
8974
9538
  "ProForm",
@@ -8982,10 +9546,12 @@
8982
9546
  "ProFormDependencyProps",
8983
9547
  "ProFormFieldConvertValueFn",
8984
9548
  "ProFormFieldName",
9549
+ "ProFormFieldOptionValue",
8985
9550
  "ProFormFieldProps",
8986
9551
  "ProFormFieldSet",
8987
9552
  "ProFormFieldSetProps",
8988
9553
  "ProFormFieldTransformFn",
9554
+ "ProFormFieldValueMap",
8989
9555
  "ProFormFormInstance",
8990
9556
  "ProFormGroupProps",
8991
9557
  "ProFormItem",
@@ -8997,20 +9563,27 @@
8997
9563
  "ProFormListProps",
8998
9564
  "ProFormMode",
8999
9565
  "ProFormPassword",
9566
+ "ProFormPathValue",
9000
9567
  "ProFormProps",
9001
9568
  "ProFormRadioGroup",
9569
+ "ProFormRecursivePartial",
9002
9570
  "ProFormRequestOption",
9003
9571
  "ProFormSchemaColumn",
9572
+ "ProFormSchemaColumns",
9004
9573
  "ProFormSchemaValueType",
9005
9574
  "ProFormSelect",
9006
9575
  "ProFormSlider",
9576
+ "ProFormStableContextValue",
9577
+ "ProFormStateContextValue",
9007
9578
  "ProFormSwitch",
9579
+ "ProFormSyncToUrl",
9008
9580
  "ProFormText",
9009
9581
  "ProFormTextArea",
9010
9582
  "ProFormUpload",
9011
9583
  "ProFormValidateResult",
9012
9584
  "ProFormValueEnumObj",
9013
9585
  "ProFormValueType",
9586
+ "ProFormValuesPatch",
9014
9587
  "QueryFilter",
9015
9588
  "QueryFilterProps",
9016
9589
  "Rule",
@@ -9051,6 +9624,7 @@
9051
9624
  "FormCoreInstance",
9052
9625
  "FormInstance",
9053
9626
  "FormLayout",
9627
+ "FormListContextValue",
9054
9628
  "FormSize",
9055
9629
  "LabelAlign",
9056
9630
  "ProForm",
@@ -9064,10 +9638,12 @@
9064
9638
  "ProFormDependencyProps",
9065
9639
  "ProFormFieldConvertValueFn",
9066
9640
  "ProFormFieldName",
9641
+ "ProFormFieldOptionValue",
9067
9642
  "ProFormFieldProps",
9068
9643
  "ProFormFieldSet",
9069
9644
  "ProFormFieldSetProps",
9070
9645
  "ProFormFieldTransformFn",
9646
+ "ProFormFieldValueMap",
9071
9647
  "ProFormFormInstance",
9072
9648
  "ProFormGroup",
9073
9649
  "ProFormItem",
@@ -9079,20 +9655,27 @@
9079
9655
  "ProFormListProps",
9080
9656
  "ProFormMode",
9081
9657
  "ProFormPassword",
9658
+ "ProFormPathValue",
9082
9659
  "ProFormProps",
9083
9660
  "ProFormRadioGroup",
9661
+ "ProFormRecursivePartial",
9084
9662
  "ProFormRequestOption",
9085
9663
  "ProFormSchemaColumn",
9664
+ "ProFormSchemaColumns",
9086
9665
  "ProFormSchemaValueType",
9087
9666
  "ProFormSelect",
9088
9667
  "ProFormSlider",
9668
+ "ProFormStableContextValue",
9669
+ "ProFormStateContextValue",
9089
9670
  "ProFormSwitch",
9671
+ "ProFormSyncToUrl",
9090
9672
  "ProFormText",
9091
9673
  "ProFormTextArea",
9092
9674
  "ProFormUpload",
9093
9675
  "ProFormValidateResult",
9094
9676
  "ProFormValueEnumObj",
9095
9677
  "ProFormValueType",
9678
+ "ProFormValuesPatch",
9096
9679
  "QueryFilter",
9097
9680
  "QueryFilterProps",
9098
9681
  "Rule",
@@ -9158,7 +9741,7 @@
9158
9741
  },
9159
9742
  {
9160
9743
  "name": "name",
9161
- "type": "string",
9744
+ "type": "Name",
9162
9745
  "optional": true,
9163
9746
  "default": null,
9164
9747
  "description": "",
@@ -9166,7 +9749,7 @@
9166
9749
  },
9167
9750
  {
9168
9751
  "name": "rules",
9169
- "type": "FormRule[]",
9752
+ "type": "FormRule<Values>[]",
9170
9753
  "optional": true,
9171
9754
  "default": null,
9172
9755
  "description": "",
@@ -9214,7 +9797,7 @@
9214
9797
  },
9215
9798
  {
9216
9799
  "name": "transform",
9217
- "type": "ProFormFieldTransformFn",
9800
+ "type": "ProFormFieldTransformFn<Values, Name>",
9218
9801
  "optional": true,
9219
9802
  "default": null,
9220
9803
  "description": "Transform before submit, registered into ProForm pipeline",
@@ -9222,7 +9805,7 @@
9222
9805
  },
9223
9806
  {
9224
9807
  "name": "convertValue",
9225
- "type": "ProFormFieldConvertValueFn",
9808
+ "type": "ProFormFieldConvertValueFn<Values, Name>",
9226
9809
  "optional": true,
9227
9810
  "default": null,
9228
9811
  "description": "Convert the displayed value before rendering into children",
@@ -9238,7 +9821,7 @@
9238
9821
  },
9239
9822
  {
9240
9823
  "name": "readonlyRender",
9241
- "type": "(value: unknown, values: Record<string, unknown>) => ReactNode",
9824
+ "type": "(\n value: ProFormPathValue<Values, Name>,\n values: Values,\n ) => ReactNode",
9242
9825
  "optional": true,
9243
9826
  "default": null,
9244
9827
  "description": "Custom read-mode rendering; overrides valueType",
@@ -9311,6 +9894,7 @@
9311
9894
  "FormCoreInstance",
9312
9895
  "FormInstance",
9313
9896
  "FormLayout",
9897
+ "FormListContextValue",
9314
9898
  "FormSize",
9315
9899
  "LabelAlign",
9316
9900
  "ProForm",
@@ -9324,10 +9908,12 @@
9324
9908
  "ProFormDependencyProps",
9325
9909
  "ProFormFieldConvertValueFn",
9326
9910
  "ProFormFieldName",
9911
+ "ProFormFieldOptionValue",
9327
9912
  "ProFormFieldProps",
9328
9913
  "ProFormFieldSet",
9329
9914
  "ProFormFieldSetProps",
9330
9915
  "ProFormFieldTransformFn",
9916
+ "ProFormFieldValueMap",
9331
9917
  "ProFormFormInstance",
9332
9918
  "ProFormGroup",
9333
9919
  "ProFormGroupProps",
@@ -9339,20 +9925,27 @@
9339
9925
  "ProFormListProps",
9340
9926
  "ProFormMode",
9341
9927
  "ProFormPassword",
9928
+ "ProFormPathValue",
9342
9929
  "ProFormProps",
9343
9930
  "ProFormRadioGroup",
9931
+ "ProFormRecursivePartial",
9344
9932
  "ProFormRequestOption",
9345
9933
  "ProFormSchemaColumn",
9934
+ "ProFormSchemaColumns",
9346
9935
  "ProFormSchemaValueType",
9347
9936
  "ProFormSelect",
9348
9937
  "ProFormSlider",
9938
+ "ProFormStableContextValue",
9939
+ "ProFormStateContextValue",
9349
9940
  "ProFormSwitch",
9941
+ "ProFormSyncToUrl",
9350
9942
  "ProFormText",
9351
9943
  "ProFormTextArea",
9352
9944
  "ProFormUpload",
9353
9945
  "ProFormValidateResult",
9354
9946
  "ProFormValueEnumObj",
9355
9947
  "ProFormValueType",
9948
+ "ProFormValuesPatch",
9356
9949
  "QueryFilter",
9357
9950
  "QueryFilterProps",
9358
9951
  "Rule",
@@ -9393,6 +9986,7 @@
9393
9986
  "FormCoreInstance",
9394
9987
  "FormInstance",
9395
9988
  "FormLayout",
9989
+ "FormListContextValue",
9396
9990
  "FormSize",
9397
9991
  "LabelAlign",
9398
9992
  "ProForm",
@@ -9406,10 +10000,12 @@
9406
10000
  "ProFormDependencyProps",
9407
10001
  "ProFormFieldConvertValueFn",
9408
10002
  "ProFormFieldName",
10003
+ "ProFormFieldOptionValue",
9409
10004
  "ProFormFieldProps",
9410
10005
  "ProFormFieldSet",
9411
10006
  "ProFormFieldSetProps",
9412
10007
  "ProFormFieldTransformFn",
10008
+ "ProFormFieldValueMap",
9413
10009
  "ProFormFormInstance",
9414
10010
  "ProFormGroup",
9415
10011
  "ProFormGroupProps",
@@ -9421,20 +10017,27 @@
9421
10017
  "ProFormListProps",
9422
10018
  "ProFormMode",
9423
10019
  "ProFormPassword",
10020
+ "ProFormPathValue",
9424
10021
  "ProFormProps",
9425
10022
  "ProFormRadioGroup",
10023
+ "ProFormRecursivePartial",
9426
10024
  "ProFormRequestOption",
9427
10025
  "ProFormSchemaColumn",
10026
+ "ProFormSchemaColumns",
9428
10027
  "ProFormSchemaValueType",
9429
10028
  "ProFormSelect",
9430
10029
  "ProFormSlider",
10030
+ "ProFormStableContextValue",
10031
+ "ProFormStateContextValue",
9431
10032
  "ProFormSwitch",
10033
+ "ProFormSyncToUrl",
9432
10034
  "ProFormText",
9433
10035
  "ProFormTextArea",
9434
10036
  "ProFormUpload",
9435
10037
  "ProFormValidateResult",
9436
10038
  "ProFormValueEnumObj",
9437
10039
  "ProFormValueType",
10040
+ "ProFormValuesPatch",
9438
10041
  "QueryFilter",
9439
10042
  "QueryFilterProps",
9440
10043
  "Rule",
@@ -9476,6 +10079,7 @@
9476
10079
  "FormCoreInstance",
9477
10080
  "FormInstance",
9478
10081
  "FormLayout",
10082
+ "FormListContextValue",
9479
10083
  "FormSize",
9480
10084
  "LabelAlign",
9481
10085
  "ProForm",
@@ -9489,10 +10093,12 @@
9489
10093
  "ProFormDependencyProps",
9490
10094
  "ProFormFieldConvertValueFn",
9491
10095
  "ProFormFieldName",
10096
+ "ProFormFieldOptionValue",
9492
10097
  "ProFormFieldProps",
9493
10098
  "ProFormFieldSet",
9494
10099
  "ProFormFieldSetProps",
9495
10100
  "ProFormFieldTransformFn",
10101
+ "ProFormFieldValueMap",
9496
10102
  "ProFormFormInstance",
9497
10103
  "ProFormGroup",
9498
10104
  "ProFormGroupProps",
@@ -9504,20 +10110,27 @@
9504
10110
  "ProFormListProps",
9505
10111
  "ProFormMode",
9506
10112
  "ProFormPassword",
10113
+ "ProFormPathValue",
9507
10114
  "ProFormProps",
9508
10115
  "ProFormRadioGroup",
10116
+ "ProFormRecursivePartial",
9509
10117
  "ProFormRequestOption",
9510
10118
  "ProFormSchemaColumn",
10119
+ "ProFormSchemaColumns",
9511
10120
  "ProFormSchemaValueType",
9512
10121
  "ProFormSelect",
9513
10122
  "ProFormSlider",
10123
+ "ProFormStableContextValue",
10124
+ "ProFormStateContextValue",
9514
10125
  "ProFormSwitch",
10126
+ "ProFormSyncToUrl",
9515
10127
  "ProFormText",
9516
10128
  "ProFormTextArea",
9517
10129
  "ProFormUpload",
9518
10130
  "ProFormValidateResult",
9519
10131
  "ProFormValueEnumObj",
9520
10132
  "ProFormValueType",
10133
+ "ProFormValuesPatch",
9521
10134
  "QueryFilter",
9522
10135
  "QueryFilterProps",
9523
10136
  "Rule",
@@ -9559,6 +10172,7 @@
9559
10172
  "FormCoreInstance",
9560
10173
  "FormInstance",
9561
10174
  "FormLayout",
10175
+ "FormListContextValue",
9562
10176
  "FormSize",
9563
10177
  "LabelAlign",
9564
10178
  "ProForm",
@@ -9572,10 +10186,12 @@
9572
10186
  "ProFormDependencyProps",
9573
10187
  "ProFormFieldConvertValueFn",
9574
10188
  "ProFormFieldName",
10189
+ "ProFormFieldOptionValue",
9575
10190
  "ProFormFieldProps",
9576
10191
  "ProFormFieldSet",
9577
10192
  "ProFormFieldSetProps",
9578
10193
  "ProFormFieldTransformFn",
10194
+ "ProFormFieldValueMap",
9579
10195
  "ProFormFormInstance",
9580
10196
  "ProFormGroup",
9581
10197
  "ProFormGroupProps",
@@ -9587,20 +10203,27 @@
9587
10203
  "ProFormListProps",
9588
10204
  "ProFormMode",
9589
10205
  "ProFormPassword",
10206
+ "ProFormPathValue",
9590
10207
  "ProFormProps",
9591
10208
  "ProFormRadioGroup",
10209
+ "ProFormRecursivePartial",
9592
10210
  "ProFormRequestOption",
9593
10211
  "ProFormSchemaColumn",
10212
+ "ProFormSchemaColumns",
9594
10213
  "ProFormSchemaValueType",
9595
10214
  "ProFormSelect",
9596
10215
  "ProFormSlider",
10216
+ "ProFormStableContextValue",
10217
+ "ProFormStateContextValue",
9597
10218
  "ProFormSwitch",
10219
+ "ProFormSyncToUrl",
9598
10220
  "ProFormText",
9599
10221
  "ProFormTextArea",
9600
10222
  "ProFormUpload",
9601
10223
  "ProFormValidateResult",
9602
10224
  "ProFormValueEnumObj",
9603
10225
  "ProFormValueType",
10226
+ "ProFormValuesPatch",
9604
10227
  "QueryFilter",
9605
10228
  "QueryFilterProps",
9606
10229
  "Rule",
@@ -9682,7 +10305,7 @@
9682
10305
  },
9683
10306
  {
9684
10307
  "name": "initialValue",
9685
- "type": "Record<string, unknown>[]",
10308
+ "type": "Item[]",
9686
10309
  "optional": true,
9687
10310
  "default": null,
9688
10311
  "description": "",
@@ -9714,7 +10337,7 @@
9714
10337
  },
9715
10338
  {
9716
10339
  "name": "itemRender",
9717
- "type": "(props: { listDom: ReactNode; action: ProFormListAction }) => ReactNode",
10340
+ "type": "(props: { listDom: ReactNode; action: ProFormListAction<Item> }) => ReactNode",
9718
10341
  "optional": true,
9719
10342
  "default": null,
9720
10343
  "description": "",
@@ -9722,7 +10345,7 @@
9722
10345
  },
9723
10346
  {
9724
10347
  "name": "actionRender",
9725
- "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",
9726
10349
  "optional": true,
9727
10350
  "default": null,
9728
10351
  "description": "",
@@ -9730,7 +10353,7 @@
9730
10353
  },
9731
10354
  {
9732
10355
  "name": "children",
9733
- "type": "ReactNode | ((fields: Array<{ name: string; key: string }>, action: ProFormListAction) => ReactNode)",
10356
+ "type": "ReactNode | ((fields: Array<{ name: string; key: string }>, action: ProFormListAction<Item>) => ReactNode)",
9734
10357
  "optional": true,
9735
10358
  "default": null,
9736
10359
  "description": "",
@@ -9738,7 +10361,7 @@
9738
10361
  },
9739
10362
  {
9740
10363
  "name": "onAfterAdd",
9741
- "type": "(defaultValue: Record<string, unknown>, index: number) => void",
10364
+ "type": "(defaultValue: Item, index: number) => void",
9742
10365
  "optional": true,
9743
10366
  "default": null,
9744
10367
  "description": "",
@@ -9763,6 +10386,7 @@
9763
10386
  "FormCoreInstance",
9764
10387
  "FormInstance",
9765
10388
  "FormLayout",
10389
+ "FormListContextValue",
9766
10390
  "FormSize",
9767
10391
  "LabelAlign",
9768
10392
  "ProForm",
@@ -9776,10 +10400,12 @@
9776
10400
  "ProFormDependencyProps",
9777
10401
  "ProFormFieldConvertValueFn",
9778
10402
  "ProFormFieldName",
10403
+ "ProFormFieldOptionValue",
9779
10404
  "ProFormFieldProps",
9780
10405
  "ProFormFieldSet",
9781
10406
  "ProFormFieldSetProps",
9782
10407
  "ProFormFieldTransformFn",
10408
+ "ProFormFieldValueMap",
9783
10409
  "ProFormFormInstance",
9784
10410
  "ProFormGroup",
9785
10411
  "ProFormGroupProps",
@@ -9791,20 +10417,27 @@
9791
10417
  "ProFormListProps",
9792
10418
  "ProFormMode",
9793
10419
  "ProFormPassword",
10420
+ "ProFormPathValue",
9794
10421
  "ProFormProps",
9795
10422
  "ProFormRadioGroup",
10423
+ "ProFormRecursivePartial",
9796
10424
  "ProFormRequestOption",
9797
10425
  "ProFormSchemaColumn",
10426
+ "ProFormSchemaColumns",
9798
10427
  "ProFormSchemaValueType",
9799
10428
  "ProFormSelect",
9800
10429
  "ProFormSlider",
10430
+ "ProFormStableContextValue",
10431
+ "ProFormStateContextValue",
9801
10432
  "ProFormSwitch",
10433
+ "ProFormSyncToUrl",
9802
10434
  "ProFormText",
9803
10435
  "ProFormTextArea",
9804
10436
  "ProFormUpload",
9805
10437
  "ProFormValidateResult",
9806
10438
  "ProFormValueEnumObj",
9807
10439
  "ProFormValueType",
10440
+ "ProFormValuesPatch",
9808
10441
  "QueryFilter",
9809
10442
  "QueryFilterProps",
9810
10443
  "Rule",
@@ -9845,6 +10478,7 @@
9845
10478
  "FormCoreInstance",
9846
10479
  "FormInstance",
9847
10480
  "FormLayout",
10481
+ "FormListContextValue",
9848
10482
  "FormSize",
9849
10483
  "LabelAlign",
9850
10484
  "ProForm",
@@ -9858,10 +10492,12 @@
9858
10492
  "ProFormDependencyProps",
9859
10493
  "ProFormFieldConvertValueFn",
9860
10494
  "ProFormFieldName",
10495
+ "ProFormFieldOptionValue",
9861
10496
  "ProFormFieldProps",
9862
10497
  "ProFormFieldSet",
9863
10498
  "ProFormFieldSetProps",
9864
10499
  "ProFormFieldTransformFn",
10500
+ "ProFormFieldValueMap",
9865
10501
  "ProFormFormInstance",
9866
10502
  "ProFormGroup",
9867
10503
  "ProFormGroupProps",
@@ -9873,20 +10509,27 @@
9873
10509
  "ProFormListProps",
9874
10510
  "ProFormMode",
9875
10511
  "ProFormPassword",
10512
+ "ProFormPathValue",
9876
10513
  "ProFormProps",
9877
10514
  "ProFormRadioGroup",
10515
+ "ProFormRecursivePartial",
9878
10516
  "ProFormRequestOption",
9879
10517
  "ProFormSchemaColumn",
10518
+ "ProFormSchemaColumns",
9880
10519
  "ProFormSchemaValueType",
9881
10520
  "ProFormSelect",
9882
10521
  "ProFormSlider",
10522
+ "ProFormStableContextValue",
10523
+ "ProFormStateContextValue",
9883
10524
  "ProFormSwitch",
10525
+ "ProFormSyncToUrl",
9884
10526
  "ProFormText",
9885
10527
  "ProFormTextArea",
9886
10528
  "ProFormUpload",
9887
10529
  "ProFormValidateResult",
9888
10530
  "ProFormValueEnumObj",
9889
10531
  "ProFormValueType",
10532
+ "ProFormValuesPatch",
9890
10533
  "QueryFilter",
9891
10534
  "QueryFilterProps",
9892
10535
  "Rule",
@@ -9928,6 +10571,7 @@
9928
10571
  "FormCoreInstance",
9929
10572
  "FormInstance",
9930
10573
  "FormLayout",
10574
+ "FormListContextValue",
9931
10575
  "FormSize",
9932
10576
  "LabelAlign",
9933
10577
  "ProForm",
@@ -9941,10 +10585,12 @@
9941
10585
  "ProFormDependencyProps",
9942
10586
  "ProFormFieldConvertValueFn",
9943
10587
  "ProFormFieldName",
10588
+ "ProFormFieldOptionValue",
9944
10589
  "ProFormFieldProps",
9945
10590
  "ProFormFieldSet",
9946
10591
  "ProFormFieldSetProps",
9947
10592
  "ProFormFieldTransformFn",
10593
+ "ProFormFieldValueMap",
9948
10594
  "ProFormFormInstance",
9949
10595
  "ProFormGroup",
9950
10596
  "ProFormGroupProps",
@@ -9956,20 +10602,27 @@
9956
10602
  "ProFormListAction",
9957
10603
  "ProFormMode",
9958
10604
  "ProFormPassword",
10605
+ "ProFormPathValue",
9959
10606
  "ProFormProps",
9960
10607
  "ProFormRadioGroup",
10608
+ "ProFormRecursivePartial",
9961
10609
  "ProFormRequestOption",
9962
10610
  "ProFormSchemaColumn",
10611
+ "ProFormSchemaColumns",
9963
10612
  "ProFormSchemaValueType",
9964
10613
  "ProFormSelect",
9965
10614
  "ProFormSlider",
10615
+ "ProFormStableContextValue",
10616
+ "ProFormStateContextValue",
9966
10617
  "ProFormSwitch",
10618
+ "ProFormSyncToUrl",
9967
10619
  "ProFormText",
9968
10620
  "ProFormTextArea",
9969
10621
  "ProFormUpload",
9970
10622
  "ProFormValidateResult",
9971
10623
  "ProFormValueEnumObj",
9972
10624
  "ProFormValueType",
10625
+ "ProFormValuesPatch",
9973
10626
  "QueryFilter",
9974
10627
  "QueryFilterProps",
9975
10628
  "Rule",
@@ -10011,6 +10664,7 @@
10011
10664
  "FormCoreInstance",
10012
10665
  "FormInstance",
10013
10666
  "FormLayout",
10667
+ "FormListContextValue",
10014
10668
  "FormSize",
10015
10669
  "LabelAlign",
10016
10670
  "ProForm",
@@ -10024,10 +10678,12 @@
10024
10678
  "ProFormDependencyProps",
10025
10679
  "ProFormFieldConvertValueFn",
10026
10680
  "ProFormFieldName",
10681
+ "ProFormFieldOptionValue",
10027
10682
  "ProFormFieldProps",
10028
10683
  "ProFormFieldSet",
10029
10684
  "ProFormFieldSetProps",
10030
10685
  "ProFormFieldTransformFn",
10686
+ "ProFormFieldValueMap",
10031
10687
  "ProFormFormInstance",
10032
10688
  "ProFormGroup",
10033
10689
  "ProFormGroupProps",
@@ -10039,20 +10695,27 @@
10039
10695
  "ProFormListAction",
10040
10696
  "ProFormListProps",
10041
10697
  "ProFormPassword",
10698
+ "ProFormPathValue",
10042
10699
  "ProFormProps",
10043
10700
  "ProFormRadioGroup",
10701
+ "ProFormRecursivePartial",
10044
10702
  "ProFormRequestOption",
10045
10703
  "ProFormSchemaColumn",
10704
+ "ProFormSchemaColumns",
10046
10705
  "ProFormSchemaValueType",
10047
10706
  "ProFormSelect",
10048
10707
  "ProFormSlider",
10708
+ "ProFormStableContextValue",
10709
+ "ProFormStateContextValue",
10049
10710
  "ProFormSwitch",
10711
+ "ProFormSyncToUrl",
10050
10712
  "ProFormText",
10051
10713
  "ProFormTextArea",
10052
10714
  "ProFormUpload",
10053
10715
  "ProFormValidateResult",
10054
10716
  "ProFormValueEnumObj",
10055
10717
  "ProFormValueType",
10718
+ "ProFormValuesPatch",
10056
10719
  "QueryFilter",
10057
10720
  "QueryFilterProps",
10058
10721
  "Rule",
@@ -10094,6 +10757,7 @@
10094
10757
  "FormCoreInstance",
10095
10758
  "FormInstance",
10096
10759
  "FormLayout",
10760
+ "FormListContextValue",
10097
10761
  "FormSize",
10098
10762
  "LabelAlign",
10099
10763
  "ProForm",
@@ -10107,10 +10771,12 @@
10107
10771
  "ProFormDependencyProps",
10108
10772
  "ProFormFieldConvertValueFn",
10109
10773
  "ProFormFieldName",
10774
+ "ProFormFieldOptionValue",
10110
10775
  "ProFormFieldProps",
10111
10776
  "ProFormFieldSet",
10112
10777
  "ProFormFieldSetProps",
10113
10778
  "ProFormFieldTransformFn",
10779
+ "ProFormFieldValueMap",
10114
10780
  "ProFormFormInstance",
10115
10781
  "ProFormGroup",
10116
10782
  "ProFormGroupProps",
@@ -10122,20 +10788,27 @@
10122
10788
  "ProFormListAction",
10123
10789
  "ProFormListProps",
10124
10790
  "ProFormMode",
10791
+ "ProFormPathValue",
10125
10792
  "ProFormProps",
10126
10793
  "ProFormRadioGroup",
10794
+ "ProFormRecursivePartial",
10127
10795
  "ProFormRequestOption",
10128
10796
  "ProFormSchemaColumn",
10797
+ "ProFormSchemaColumns",
10129
10798
  "ProFormSchemaValueType",
10130
10799
  "ProFormSelect",
10131
10800
  "ProFormSlider",
10801
+ "ProFormStableContextValue",
10802
+ "ProFormStateContextValue",
10132
10803
  "ProFormSwitch",
10804
+ "ProFormSyncToUrl",
10133
10805
  "ProFormText",
10134
10806
  "ProFormTextArea",
10135
10807
  "ProFormUpload",
10136
10808
  "ProFormValidateResult",
10137
10809
  "ProFormValueEnumObj",
10138
10810
  "ProFormValueType",
10811
+ "ProFormValuesPatch",
10139
10812
  "QueryFilter",
10140
10813
  "QueryFilterProps",
10141
10814
  "Rule",
@@ -10158,13 +10831,13 @@
10158
10831
  ]
10159
10832
  },
10160
10833
  {
10161
- "name": "ProFormProps",
10834
+ "name": "ProFormPathValue",
10162
10835
  "kind": "type",
10163
10836
  "category": "forms",
10164
10837
  "summary": "",
10165
10838
  "importPath": "@1money/component-ui",
10166
10839
  "subpathImport": "@1money/component-ui/ProForm",
10167
- "sourceFile": "src/components/ProForm/interface.ts",
10840
+ "sourceFile": "src/components/ProForm/core/namePathType.ts",
10168
10841
  "props": [],
10169
10842
  "extends": [],
10170
10843
  "relatedSymbols": [
@@ -10176,6 +10849,7 @@
10176
10849
  "FormCoreInstance",
10177
10850
  "FormInstance",
10178
10851
  "FormLayout",
10852
+ "FormListContextValue",
10179
10853
  "FormSize",
10180
10854
  "LabelAlign",
10181
10855
  "ProForm",
@@ -10189,10 +10863,12 @@
10189
10863
  "ProFormDependencyProps",
10190
10864
  "ProFormFieldConvertValueFn",
10191
10865
  "ProFormFieldName",
10866
+ "ProFormFieldOptionValue",
10192
10867
  "ProFormFieldProps",
10193
10868
  "ProFormFieldSet",
10194
10869
  "ProFormFieldSetProps",
10195
10870
  "ProFormFieldTransformFn",
10871
+ "ProFormFieldValueMap",
10196
10872
  "ProFormFormInstance",
10197
10873
  "ProFormGroup",
10198
10874
  "ProFormGroupProps",
@@ -10205,19 +10881,26 @@
10205
10881
  "ProFormListProps",
10206
10882
  "ProFormMode",
10207
10883
  "ProFormPassword",
10884
+ "ProFormProps",
10208
10885
  "ProFormRadioGroup",
10886
+ "ProFormRecursivePartial",
10209
10887
  "ProFormRequestOption",
10210
10888
  "ProFormSchemaColumn",
10889
+ "ProFormSchemaColumns",
10211
10890
  "ProFormSchemaValueType",
10212
10891
  "ProFormSelect",
10213
10892
  "ProFormSlider",
10893
+ "ProFormStableContextValue",
10894
+ "ProFormStateContextValue",
10214
10895
  "ProFormSwitch",
10896
+ "ProFormSyncToUrl",
10215
10897
  "ProFormText",
10216
10898
  "ProFormTextArea",
10217
10899
  "ProFormUpload",
10218
10900
  "ProFormValidateResult",
10219
10901
  "ProFormValueEnumObj",
10220
10902
  "ProFormValueType",
10903
+ "ProFormValuesPatch",
10221
10904
  "QueryFilter",
10222
10905
  "QueryFilterProps",
10223
10906
  "Rule",
@@ -10231,7 +10914,7 @@
10231
10914
  "useFormWatch"
10232
10915
  ],
10233
10916
  "searchTags": [],
10234
- "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",
10235
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';",
10236
10919
  "examples": [
10237
10920
  {
@@ -10241,13 +10924,13 @@
10241
10924
  ]
10242
10925
  },
10243
10926
  {
10244
- "name": "ProFormRadioGroup",
10245
- "kind": "component",
10927
+ "name": "ProFormProps",
10928
+ "kind": "type",
10246
10929
  "category": "forms",
10247
10930
  "summary": "",
10248
10931
  "importPath": "@1money/component-ui",
10249
10932
  "subpathImport": "@1money/component-ui/ProForm",
10250
- "sourceFile": "src/components/ProForm/fields/ProFormRadioGroup.tsx",
10933
+ "sourceFile": "src/components/ProForm/interface.ts",
10251
10934
  "props": [],
10252
10935
  "extends": [],
10253
10936
  "relatedSymbols": [
@@ -10259,6 +10942,7 @@
10259
10942
  "FormCoreInstance",
10260
10943
  "FormInstance",
10261
10944
  "FormLayout",
10945
+ "FormListContextValue",
10262
10946
  "FormSize",
10263
10947
  "LabelAlign",
10264
10948
  "ProForm",
@@ -10272,10 +10956,12 @@
10272
10956
  "ProFormDependencyProps",
10273
10957
  "ProFormFieldConvertValueFn",
10274
10958
  "ProFormFieldName",
10959
+ "ProFormFieldOptionValue",
10275
10960
  "ProFormFieldProps",
10276
10961
  "ProFormFieldSet",
10277
10962
  "ProFormFieldSetProps",
10278
10963
  "ProFormFieldTransformFn",
10964
+ "ProFormFieldValueMap",
10279
10965
  "ProFormFormInstance",
10280
10966
  "ProFormGroup",
10281
10967
  "ProFormGroupProps",
@@ -10288,19 +10974,26 @@
10288
10974
  "ProFormListProps",
10289
10975
  "ProFormMode",
10290
10976
  "ProFormPassword",
10291
- "ProFormProps",
10977
+ "ProFormPathValue",
10978
+ "ProFormRadioGroup",
10979
+ "ProFormRecursivePartial",
10292
10980
  "ProFormRequestOption",
10293
10981
  "ProFormSchemaColumn",
10982
+ "ProFormSchemaColumns",
10294
10983
  "ProFormSchemaValueType",
10295
10984
  "ProFormSelect",
10296
10985
  "ProFormSlider",
10986
+ "ProFormStableContextValue",
10987
+ "ProFormStateContextValue",
10297
10988
  "ProFormSwitch",
10989
+ "ProFormSyncToUrl",
10298
10990
  "ProFormText",
10299
10991
  "ProFormTextArea",
10300
10992
  "ProFormUpload",
10301
10993
  "ProFormValidateResult",
10302
10994
  "ProFormValueEnumObj",
10303
10995
  "ProFormValueType",
10996
+ "ProFormValuesPatch",
10304
10997
  "QueryFilter",
10305
10998
  "QueryFilterProps",
10306
10999
  "Rule",
@@ -10314,6 +11007,7 @@
10314
11007
  "useFormWatch"
10315
11008
  ],
10316
11009
  "searchTags": [],
11010
+ "typeText": "interface ProFormProps extends Omit<FormHTMLAttributes<HTMLFormElement>, 'onSubmit' | 'onReset'> { ... }",
10317
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';",
10318
11012
  "examples": [
10319
11013
  {
@@ -10323,13 +11017,13 @@
10323
11017
  ]
10324
11018
  },
10325
11019
  {
10326
- "name": "ProFormRequestOption",
10327
- "kind": "type",
11020
+ "name": "ProFormRadioGroup",
11021
+ "kind": "component",
10328
11022
  "category": "forms",
10329
11023
  "summary": "",
10330
11024
  "importPath": "@1money/component-ui",
10331
11025
  "subpathImport": "@1money/component-ui/ProForm",
10332
- "sourceFile": "src/components/ProForm/interface.ts",
11026
+ "sourceFile": "src/components/ProForm/fields/ProFormRadioGroup.tsx",
10333
11027
  "props": [],
10334
11028
  "extends": [],
10335
11029
  "relatedSymbols": [
@@ -10341,6 +11035,7 @@
10341
11035
  "FormCoreInstance",
10342
11036
  "FormInstance",
10343
11037
  "FormLayout",
11038
+ "FormListContextValue",
10344
11039
  "FormSize",
10345
11040
  "LabelAlign",
10346
11041
  "ProForm",
@@ -10354,10 +11049,12 @@
10354
11049
  "ProFormDependencyProps",
10355
11050
  "ProFormFieldConvertValueFn",
10356
11051
  "ProFormFieldName",
11052
+ "ProFormFieldOptionValue",
10357
11053
  "ProFormFieldProps",
10358
11054
  "ProFormFieldSet",
10359
11055
  "ProFormFieldSetProps",
10360
11056
  "ProFormFieldTransformFn",
11057
+ "ProFormFieldValueMap",
10361
11058
  "ProFormFormInstance",
10362
11059
  "ProFormGroup",
10363
11060
  "ProFormGroupProps",
@@ -10370,19 +11067,26 @@
10370
11067
  "ProFormListProps",
10371
11068
  "ProFormMode",
10372
11069
  "ProFormPassword",
11070
+ "ProFormPathValue",
10373
11071
  "ProFormProps",
10374
- "ProFormRadioGroup",
11072
+ "ProFormRecursivePartial",
11073
+ "ProFormRequestOption",
10375
11074
  "ProFormSchemaColumn",
11075
+ "ProFormSchemaColumns",
10376
11076
  "ProFormSchemaValueType",
10377
11077
  "ProFormSelect",
10378
11078
  "ProFormSlider",
11079
+ "ProFormStableContextValue",
11080
+ "ProFormStateContextValue",
10379
11081
  "ProFormSwitch",
11082
+ "ProFormSyncToUrl",
10380
11083
  "ProFormText",
10381
11084
  "ProFormTextArea",
10382
11085
  "ProFormUpload",
10383
11086
  "ProFormValidateResult",
10384
11087
  "ProFormValueEnumObj",
10385
11088
  "ProFormValueType",
11089
+ "ProFormValuesPatch",
10386
11090
  "QueryFilter",
10387
11091
  "QueryFilterProps",
10388
11092
  "Rule",
@@ -10396,7 +11100,6 @@
10396
11100
  "useFormWatch"
10397
11101
  ],
10398
11102
  "searchTags": [],
10399
- "typeText": "interface ProFormRequestOption { ... }",
10400
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';",
10401
11104
  "examples": [
10402
11105
  {
@@ -10406,13 +11109,13 @@
10406
11109
  ]
10407
11110
  },
10408
11111
  {
10409
- "name": "ProFormSchemaColumn",
11112
+ "name": "ProFormRecursivePartial",
10410
11113
  "kind": "type",
10411
11114
  "category": "forms",
10412
11115
  "summary": "",
10413
11116
  "importPath": "@1money/component-ui",
10414
11117
  "subpathImport": "@1money/component-ui/ProForm",
10415
- "sourceFile": "src/components/ProForm/interface.ts",
11118
+ "sourceFile": "src/components/ProForm/core/namePathType.ts",
10416
11119
  "props": [],
10417
11120
  "extends": [],
10418
11121
  "relatedSymbols": [
@@ -10424,6 +11127,7 @@
10424
11127
  "FormCoreInstance",
10425
11128
  "FormInstance",
10426
11129
  "FormLayout",
11130
+ "FormListContextValue",
10427
11131
  "FormSize",
10428
11132
  "LabelAlign",
10429
11133
  "ProForm",
@@ -10437,10 +11141,12 @@
10437
11141
  "ProFormDependencyProps",
10438
11142
  "ProFormFieldConvertValueFn",
10439
11143
  "ProFormFieldName",
11144
+ "ProFormFieldOptionValue",
10440
11145
  "ProFormFieldProps",
10441
11146
  "ProFormFieldSet",
10442
11147
  "ProFormFieldSetProps",
10443
11148
  "ProFormFieldTransformFn",
11149
+ "ProFormFieldValueMap",
10444
11150
  "ProFormFormInstance",
10445
11151
  "ProFormGroup",
10446
11152
  "ProFormGroupProps",
@@ -10453,19 +11159,26 @@
10453
11159
  "ProFormListProps",
10454
11160
  "ProFormMode",
10455
11161
  "ProFormPassword",
11162
+ "ProFormPathValue",
10456
11163
  "ProFormProps",
10457
11164
  "ProFormRadioGroup",
10458
11165
  "ProFormRequestOption",
11166
+ "ProFormSchemaColumn",
11167
+ "ProFormSchemaColumns",
10459
11168
  "ProFormSchemaValueType",
10460
11169
  "ProFormSelect",
10461
11170
  "ProFormSlider",
11171
+ "ProFormStableContextValue",
11172
+ "ProFormStateContextValue",
10462
11173
  "ProFormSwitch",
11174
+ "ProFormSyncToUrl",
10463
11175
  "ProFormText",
10464
11176
  "ProFormTextArea",
10465
11177
  "ProFormUpload",
10466
11178
  "ProFormValidateResult",
10467
11179
  "ProFormValueEnumObj",
10468
11180
  "ProFormValueType",
11181
+ "ProFormValuesPatch",
10469
11182
  "QueryFilter",
10470
11183
  "QueryFilterProps",
10471
11184
  "Rule",
@@ -10479,7 +11192,7 @@
10479
11192
  "useFormWatch"
10480
11193
  ],
10481
11194
  "searchTags": [],
10482
- "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",
10483
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';",
10484
11197
  "examples": [
10485
11198
  {
@@ -10489,7 +11202,7 @@
10489
11202
  ]
10490
11203
  },
10491
11204
  {
10492
- "name": "ProFormSchemaValueType",
11205
+ "name": "ProFormRequestOption",
10493
11206
  "kind": "type",
10494
11207
  "category": "forms",
10495
11208
  "summary": "",
@@ -10507,6 +11220,7 @@
10507
11220
  "FormCoreInstance",
10508
11221
  "FormInstance",
10509
11222
  "FormLayout",
11223
+ "FormListContextValue",
10510
11224
  "FormSize",
10511
11225
  "LabelAlign",
10512
11226
  "ProForm",
@@ -10520,10 +11234,12 @@
10520
11234
  "ProFormDependencyProps",
10521
11235
  "ProFormFieldConvertValueFn",
10522
11236
  "ProFormFieldName",
11237
+ "ProFormFieldOptionValue",
10523
11238
  "ProFormFieldProps",
10524
11239
  "ProFormFieldSet",
10525
11240
  "ProFormFieldSetProps",
10526
11241
  "ProFormFieldTransformFn",
11242
+ "ProFormFieldValueMap",
10527
11243
  "ProFormFormInstance",
10528
11244
  "ProFormGroup",
10529
11245
  "ProFormGroupProps",
@@ -10536,19 +11252,26 @@
10536
11252
  "ProFormListProps",
10537
11253
  "ProFormMode",
10538
11254
  "ProFormPassword",
11255
+ "ProFormPathValue",
10539
11256
  "ProFormProps",
10540
11257
  "ProFormRadioGroup",
10541
- "ProFormRequestOption",
11258
+ "ProFormRecursivePartial",
10542
11259
  "ProFormSchemaColumn",
11260
+ "ProFormSchemaColumns",
11261
+ "ProFormSchemaValueType",
10543
11262
  "ProFormSelect",
10544
11263
  "ProFormSlider",
11264
+ "ProFormStableContextValue",
11265
+ "ProFormStateContextValue",
10545
11266
  "ProFormSwitch",
11267
+ "ProFormSyncToUrl",
10546
11268
  "ProFormText",
10547
11269
  "ProFormTextArea",
10548
11270
  "ProFormUpload",
10549
11271
  "ProFormValidateResult",
10550
11272
  "ProFormValueEnumObj",
10551
11273
  "ProFormValueType",
11274
+ "ProFormValuesPatch",
10552
11275
  "QueryFilter",
10553
11276
  "QueryFilterProps",
10554
11277
  "Rule",
@@ -10562,7 +11285,7 @@
10562
11285
  "useFormWatch"
10563
11286
  ],
10564
11287
  "searchTags": [],
10565
- "typeText": "| 'text'\n | 'password'\n | 'textarea'\n | 'digit'\n | 'select'\n | 'checkbox'\n | 'checkboxGroup'\n | 'radioGroup'\n | 'switch'\n | 'slider'\n | 'date'\n | 'dateTime'\n | 'upload'",
11288
+ "typeText": "interface ProFormRequestOption { ... }",
10566
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';",
10567
11290
  "examples": [
10568
11291
  {
@@ -10572,13 +11295,13 @@
10572
11295
  ]
10573
11296
  },
10574
11297
  {
10575
- "name": "ProFormSelect",
10576
- "kind": "component",
11298
+ "name": "ProFormSchemaColumn",
11299
+ "kind": "type",
10577
11300
  "category": "forms",
10578
11301
  "summary": "",
10579
11302
  "importPath": "@1money/component-ui",
10580
11303
  "subpathImport": "@1money/component-ui/ProForm",
10581
- "sourceFile": "src/components/ProForm/fields/ProFormSelect.tsx",
11304
+ "sourceFile": "src/components/ProForm/interface.ts",
10582
11305
  "props": [],
10583
11306
  "extends": [],
10584
11307
  "relatedSymbols": [
@@ -10590,6 +11313,7 @@
10590
11313
  "FormCoreInstance",
10591
11314
  "FormInstance",
10592
11315
  "FormLayout",
11316
+ "FormListContextValue",
10593
11317
  "FormSize",
10594
11318
  "LabelAlign",
10595
11319
  "ProForm",
@@ -10603,10 +11327,12 @@
10603
11327
  "ProFormDependencyProps",
10604
11328
  "ProFormFieldConvertValueFn",
10605
11329
  "ProFormFieldName",
11330
+ "ProFormFieldOptionValue",
10606
11331
  "ProFormFieldProps",
10607
11332
  "ProFormFieldSet",
10608
11333
  "ProFormFieldSetProps",
10609
11334
  "ProFormFieldTransformFn",
11335
+ "ProFormFieldValueMap",
10610
11336
  "ProFormFormInstance",
10611
11337
  "ProFormGroup",
10612
11338
  "ProFormGroupProps",
@@ -10619,19 +11345,26 @@
10619
11345
  "ProFormListProps",
10620
11346
  "ProFormMode",
10621
11347
  "ProFormPassword",
11348
+ "ProFormPathValue",
10622
11349
  "ProFormProps",
10623
11350
  "ProFormRadioGroup",
11351
+ "ProFormRecursivePartial",
10624
11352
  "ProFormRequestOption",
10625
- "ProFormSchemaColumn",
11353
+ "ProFormSchemaColumns",
10626
11354
  "ProFormSchemaValueType",
11355
+ "ProFormSelect",
10627
11356
  "ProFormSlider",
11357
+ "ProFormStableContextValue",
11358
+ "ProFormStateContextValue",
10628
11359
  "ProFormSwitch",
11360
+ "ProFormSyncToUrl",
10629
11361
  "ProFormText",
10630
11362
  "ProFormTextArea",
10631
11363
  "ProFormUpload",
10632
11364
  "ProFormValidateResult",
10633
11365
  "ProFormValueEnumObj",
10634
11366
  "ProFormValueType",
11367
+ "ProFormValuesPatch",
10635
11368
  "QueryFilter",
10636
11369
  "QueryFilterProps",
10637
11370
  "Rule",
@@ -10645,6 +11378,7 @@
10645
11378
  "useFormWatch"
10646
11379
  ],
10647
11380
  "searchTags": [],
11381
+ "typeText": "interface ProFormSchemaColumn { ... }",
10648
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';",
10649
11383
  "examples": [
10650
11384
  {
@@ -10654,13 +11388,13 @@
10654
11388
  ]
10655
11389
  },
10656
11390
  {
10657
- "name": "ProFormSlider",
10658
- "kind": "component",
11391
+ "name": "ProFormSchemaColumns",
11392
+ "kind": "type",
10659
11393
  "category": "forms",
10660
11394
  "summary": "",
10661
11395
  "importPath": "@1money/component-ui",
10662
11396
  "subpathImport": "@1money/component-ui/ProForm",
10663
- "sourceFile": "src/components/ProForm/fields/ProFormSlider.tsx",
11397
+ "sourceFile": "src/components/ProForm/interface.ts",
10664
11398
  "props": [],
10665
11399
  "extends": [],
10666
11400
  "relatedSymbols": [
@@ -10672,6 +11406,7 @@
10672
11406
  "FormCoreInstance",
10673
11407
  "FormInstance",
10674
11408
  "FormLayout",
11409
+ "FormListContextValue",
10675
11410
  "FormSize",
10676
11411
  "LabelAlign",
10677
11412
  "ProForm",
@@ -10685,10 +11420,12 @@
10685
11420
  "ProFormDependencyProps",
10686
11421
  "ProFormFieldConvertValueFn",
10687
11422
  "ProFormFieldName",
11423
+ "ProFormFieldOptionValue",
10688
11424
  "ProFormFieldProps",
10689
11425
  "ProFormFieldSet",
10690
11426
  "ProFormFieldSetProps",
10691
11427
  "ProFormFieldTransformFn",
11428
+ "ProFormFieldValueMap",
10692
11429
  "ProFormFormInstance",
10693
11430
  "ProFormGroup",
10694
11431
  "ProFormGroupProps",
@@ -10701,19 +11438,26 @@
10701
11438
  "ProFormListProps",
10702
11439
  "ProFormMode",
10703
11440
  "ProFormPassword",
11441
+ "ProFormPathValue",
10704
11442
  "ProFormProps",
10705
11443
  "ProFormRadioGroup",
11444
+ "ProFormRecursivePartial",
10706
11445
  "ProFormRequestOption",
10707
11446
  "ProFormSchemaColumn",
10708
11447
  "ProFormSchemaValueType",
10709
11448
  "ProFormSelect",
11449
+ "ProFormSlider",
11450
+ "ProFormStableContextValue",
11451
+ "ProFormStateContextValue",
10710
11452
  "ProFormSwitch",
11453
+ "ProFormSyncToUrl",
10711
11454
  "ProFormText",
10712
11455
  "ProFormTextArea",
10713
11456
  "ProFormUpload",
10714
11457
  "ProFormValidateResult",
10715
11458
  "ProFormValueEnumObj",
10716
11459
  "ProFormValueType",
11460
+ "ProFormValuesPatch",
10717
11461
  "QueryFilter",
10718
11462
  "QueryFilterProps",
10719
11463
  "Rule",
@@ -10727,6 +11471,7 @@
10727
11471
  "useFormWatch"
10728
11472
  ],
10729
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>",
10730
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';",
10731
11476
  "examples": [
10732
11477
  {
@@ -10736,13 +11481,13 @@
10736
11481
  ]
10737
11482
  },
10738
11483
  {
10739
- "name": "ProFormSwitch",
10740
- "kind": "component",
11484
+ "name": "ProFormSchemaValueType",
11485
+ "kind": "type",
10741
11486
  "category": "forms",
10742
11487
  "summary": "",
10743
11488
  "importPath": "@1money/component-ui",
10744
11489
  "subpathImport": "@1money/component-ui/ProForm",
10745
- "sourceFile": "src/components/ProForm/fields/ProFormSwitch.tsx",
11490
+ "sourceFile": "src/components/ProForm/interface.ts",
10746
11491
  "props": [],
10747
11492
  "extends": [],
10748
11493
  "relatedSymbols": [
@@ -10754,6 +11499,7 @@
10754
11499
  "FormCoreInstance",
10755
11500
  "FormInstance",
10756
11501
  "FormLayout",
11502
+ "FormListContextValue",
10757
11503
  "FormSize",
10758
11504
  "LabelAlign",
10759
11505
  "ProForm",
@@ -10767,10 +11513,12 @@
10767
11513
  "ProFormDependencyProps",
10768
11514
  "ProFormFieldConvertValueFn",
10769
11515
  "ProFormFieldName",
11516
+ "ProFormFieldOptionValue",
10770
11517
  "ProFormFieldProps",
10771
11518
  "ProFormFieldSet",
10772
11519
  "ProFormFieldSetProps",
10773
11520
  "ProFormFieldTransformFn",
11521
+ "ProFormFieldValueMap",
10774
11522
  "ProFormFormInstance",
10775
11523
  "ProFormGroup",
10776
11524
  "ProFormGroupProps",
@@ -10783,19 +11531,26 @@
10783
11531
  "ProFormListProps",
10784
11532
  "ProFormMode",
10785
11533
  "ProFormPassword",
11534
+ "ProFormPathValue",
10786
11535
  "ProFormProps",
10787
11536
  "ProFormRadioGroup",
11537
+ "ProFormRecursivePartial",
10788
11538
  "ProFormRequestOption",
10789
11539
  "ProFormSchemaColumn",
10790
- "ProFormSchemaValueType",
11540
+ "ProFormSchemaColumns",
10791
11541
  "ProFormSelect",
10792
11542
  "ProFormSlider",
11543
+ "ProFormStableContextValue",
11544
+ "ProFormStateContextValue",
11545
+ "ProFormSwitch",
11546
+ "ProFormSyncToUrl",
10793
11547
  "ProFormText",
10794
11548
  "ProFormTextArea",
10795
11549
  "ProFormUpload",
10796
11550
  "ProFormValidateResult",
10797
11551
  "ProFormValueEnumObj",
10798
11552
  "ProFormValueType",
11553
+ "ProFormValuesPatch",
10799
11554
  "QueryFilter",
10800
11555
  "QueryFilterProps",
10801
11556
  "Rule",
@@ -10809,6 +11564,7 @@
10809
11564
  "useFormWatch"
10810
11565
  ],
10811
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'",
10812
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';",
10813
11569
  "examples": [
10814
11570
  {
@@ -10818,13 +11574,13 @@
10818
11574
  ]
10819
11575
  },
10820
11576
  {
10821
- "name": "ProFormText",
11577
+ "name": "ProFormSelect",
10822
11578
  "kind": "component",
10823
11579
  "category": "forms",
10824
11580
  "summary": "",
10825
11581
  "importPath": "@1money/component-ui",
10826
11582
  "subpathImport": "@1money/component-ui/ProForm",
10827
- "sourceFile": "src/components/ProForm/fields/ProFormText.tsx",
11583
+ "sourceFile": "src/components/ProForm/fields/ProFormSelect.tsx",
10828
11584
  "props": [],
10829
11585
  "extends": [],
10830
11586
  "relatedSymbols": [
@@ -10836,6 +11592,7 @@
10836
11592
  "FormCoreInstance",
10837
11593
  "FormInstance",
10838
11594
  "FormLayout",
11595
+ "FormListContextValue",
10839
11596
  "FormSize",
10840
11597
  "LabelAlign",
10841
11598
  "ProForm",
@@ -10849,10 +11606,12 @@
10849
11606
  "ProFormDependencyProps",
10850
11607
  "ProFormFieldConvertValueFn",
10851
11608
  "ProFormFieldName",
11609
+ "ProFormFieldOptionValue",
10852
11610
  "ProFormFieldProps",
10853
11611
  "ProFormFieldSet",
10854
11612
  "ProFormFieldSetProps",
10855
11613
  "ProFormFieldTransformFn",
11614
+ "ProFormFieldValueMap",
10856
11615
  "ProFormFormInstance",
10857
11616
  "ProFormGroup",
10858
11617
  "ProFormGroupProps",
@@ -10865,19 +11624,26 @@
10865
11624
  "ProFormListProps",
10866
11625
  "ProFormMode",
10867
11626
  "ProFormPassword",
11627
+ "ProFormPathValue",
10868
11628
  "ProFormProps",
10869
11629
  "ProFormRadioGroup",
11630
+ "ProFormRecursivePartial",
10870
11631
  "ProFormRequestOption",
10871
11632
  "ProFormSchemaColumn",
11633
+ "ProFormSchemaColumns",
10872
11634
  "ProFormSchemaValueType",
10873
- "ProFormSelect",
10874
11635
  "ProFormSlider",
11636
+ "ProFormStableContextValue",
11637
+ "ProFormStateContextValue",
10875
11638
  "ProFormSwitch",
11639
+ "ProFormSyncToUrl",
11640
+ "ProFormText",
10876
11641
  "ProFormTextArea",
10877
11642
  "ProFormUpload",
10878
11643
  "ProFormValidateResult",
10879
11644
  "ProFormValueEnumObj",
10880
11645
  "ProFormValueType",
11646
+ "ProFormValuesPatch",
10881
11647
  "QueryFilter",
10882
11648
  "QueryFilterProps",
10883
11649
  "Rule",
@@ -10900,13 +11666,13 @@
10900
11666
  ]
10901
11667
  },
10902
11668
  {
10903
- "name": "ProFormTextArea",
11669
+ "name": "ProFormSlider",
10904
11670
  "kind": "component",
10905
11671
  "category": "forms",
10906
11672
  "summary": "",
10907
11673
  "importPath": "@1money/component-ui",
10908
11674
  "subpathImport": "@1money/component-ui/ProForm",
10909
- "sourceFile": "src/components/ProForm/fields/ProFormTextArea.tsx",
11675
+ "sourceFile": "src/components/ProForm/fields/ProFormSlider.tsx",
10910
11676
  "props": [],
10911
11677
  "extends": [],
10912
11678
  "relatedSymbols": [
@@ -10918,6 +11684,7 @@
10918
11684
  "FormCoreInstance",
10919
11685
  "FormInstance",
10920
11686
  "FormLayout",
11687
+ "FormListContextValue",
10921
11688
  "FormSize",
10922
11689
  "LabelAlign",
10923
11690
  "ProForm",
@@ -10931,10 +11698,12 @@
10931
11698
  "ProFormDependencyProps",
10932
11699
  "ProFormFieldConvertValueFn",
10933
11700
  "ProFormFieldName",
11701
+ "ProFormFieldOptionValue",
10934
11702
  "ProFormFieldProps",
10935
11703
  "ProFormFieldSet",
10936
11704
  "ProFormFieldSetProps",
10937
11705
  "ProFormFieldTransformFn",
11706
+ "ProFormFieldValueMap",
10938
11707
  "ProFormFormInstance",
10939
11708
  "ProFormGroup",
10940
11709
  "ProFormGroupProps",
@@ -10947,19 +11716,26 @@
10947
11716
  "ProFormListProps",
10948
11717
  "ProFormMode",
10949
11718
  "ProFormPassword",
11719
+ "ProFormPathValue",
10950
11720
  "ProFormProps",
10951
11721
  "ProFormRadioGroup",
11722
+ "ProFormRecursivePartial",
10952
11723
  "ProFormRequestOption",
10953
11724
  "ProFormSchemaColumn",
11725
+ "ProFormSchemaColumns",
10954
11726
  "ProFormSchemaValueType",
10955
11727
  "ProFormSelect",
10956
- "ProFormSlider",
11728
+ "ProFormStableContextValue",
11729
+ "ProFormStateContextValue",
10957
11730
  "ProFormSwitch",
11731
+ "ProFormSyncToUrl",
10958
11732
  "ProFormText",
11733
+ "ProFormTextArea",
10959
11734
  "ProFormUpload",
10960
11735
  "ProFormValidateResult",
10961
11736
  "ProFormValueEnumObj",
10962
11737
  "ProFormValueType",
11738
+ "ProFormValuesPatch",
10963
11739
  "QueryFilter",
10964
11740
  "QueryFilterProps",
10965
11741
  "Rule",
@@ -10982,13 +11758,13 @@
10982
11758
  ]
10983
11759
  },
10984
11760
  {
10985
- "name": "ProFormUpload",
10986
- "kind": "component",
11761
+ "name": "ProFormStableContextValue",
11762
+ "kind": "type",
10987
11763
  "category": "forms",
10988
11764
  "summary": "",
10989
11765
  "importPath": "@1money/component-ui",
10990
11766
  "subpathImport": "@1money/component-ui/ProForm",
10991
- "sourceFile": "src/components/ProForm/fields/ProFormUpload.tsx",
11767
+ "sourceFile": "src/components/ProForm/interface.ts",
10992
11768
  "props": [],
10993
11769
  "extends": [],
10994
11770
  "relatedSymbols": [
@@ -11000,6 +11776,7 @@
11000
11776
  "FormCoreInstance",
11001
11777
  "FormInstance",
11002
11778
  "FormLayout",
11779
+ "FormListContextValue",
11003
11780
  "FormSize",
11004
11781
  "LabelAlign",
11005
11782
  "ProForm",
@@ -11013,10 +11790,12 @@
11013
11790
  "ProFormDependencyProps",
11014
11791
  "ProFormFieldConvertValueFn",
11015
11792
  "ProFormFieldName",
11793
+ "ProFormFieldOptionValue",
11016
11794
  "ProFormFieldProps",
11017
11795
  "ProFormFieldSet",
11018
11796
  "ProFormFieldSetProps",
11019
11797
  "ProFormFieldTransformFn",
11798
+ "ProFormFieldValueMap",
11020
11799
  "ProFormFormInstance",
11021
11800
  "ProFormGroup",
11022
11801
  "ProFormGroupProps",
@@ -11029,19 +11808,26 @@
11029
11808
  "ProFormListProps",
11030
11809
  "ProFormMode",
11031
11810
  "ProFormPassword",
11811
+ "ProFormPathValue",
11032
11812
  "ProFormProps",
11033
11813
  "ProFormRadioGroup",
11814
+ "ProFormRecursivePartial",
11034
11815
  "ProFormRequestOption",
11035
11816
  "ProFormSchemaColumn",
11817
+ "ProFormSchemaColumns",
11036
11818
  "ProFormSchemaValueType",
11037
11819
  "ProFormSelect",
11038
11820
  "ProFormSlider",
11821
+ "ProFormStateContextValue",
11039
11822
  "ProFormSwitch",
11823
+ "ProFormSyncToUrl",
11040
11824
  "ProFormText",
11041
11825
  "ProFormTextArea",
11826
+ "ProFormUpload",
11042
11827
  "ProFormValidateResult",
11043
11828
  "ProFormValueEnumObj",
11044
11829
  "ProFormValueType",
11830
+ "ProFormValuesPatch",
11045
11831
  "QueryFilter",
11046
11832
  "QueryFilterProps",
11047
11833
  "Rule",
@@ -11055,6 +11841,7 @@
11055
11841
  "useFormWatch"
11056
11842
  ],
11057
11843
  "searchTags": [],
11844
+ "typeText": "interface ProFormStableContextValue { ... }",
11058
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';",
11059
11846
  "examples": [
11060
11847
  {
@@ -11064,10 +11851,10 @@
11064
11851
  ]
11065
11852
  },
11066
11853
  {
11067
- "name": "ProFormValidateResult",
11854
+ "name": "ProFormStateContextValue",
11068
11855
  "kind": "type",
11069
11856
  "category": "forms",
11070
- "summary": "Result of `validateFieldsReturnFormatValue` — a discriminated union: checking `success` narrows to `values` (success) or `errors` (failure) without `!`.",
11857
+ "summary": "",
11071
11858
  "importPath": "@1money/component-ui",
11072
11859
  "subpathImport": "@1money/component-ui/ProForm",
11073
11860
  "sourceFile": "src/components/ProForm/interface.ts",
@@ -11082,6 +11869,7 @@
11082
11869
  "FormCoreInstance",
11083
11870
  "FormInstance",
11084
11871
  "FormLayout",
11872
+ "FormListContextValue",
11085
11873
  "FormSize",
11086
11874
  "LabelAlign",
11087
11875
  "ProForm",
@@ -11095,10 +11883,12 @@
11095
11883
  "ProFormDependencyProps",
11096
11884
  "ProFormFieldConvertValueFn",
11097
11885
  "ProFormFieldName",
11886
+ "ProFormFieldOptionValue",
11098
11887
  "ProFormFieldProps",
11099
11888
  "ProFormFieldSet",
11100
11889
  "ProFormFieldSetProps",
11101
11890
  "ProFormFieldTransformFn",
11891
+ "ProFormFieldValueMap",
11102
11892
  "ProFormFormInstance",
11103
11893
  "ProFormGroup",
11104
11894
  "ProFormGroupProps",
@@ -11111,19 +11901,26 @@
11111
11901
  "ProFormListProps",
11112
11902
  "ProFormMode",
11113
11903
  "ProFormPassword",
11904
+ "ProFormPathValue",
11114
11905
  "ProFormProps",
11115
11906
  "ProFormRadioGroup",
11907
+ "ProFormRecursivePartial",
11116
11908
  "ProFormRequestOption",
11117
11909
  "ProFormSchemaColumn",
11910
+ "ProFormSchemaColumns",
11118
11911
  "ProFormSchemaValueType",
11119
11912
  "ProFormSelect",
11120
11913
  "ProFormSlider",
11914
+ "ProFormStableContextValue",
11121
11915
  "ProFormSwitch",
11916
+ "ProFormSyncToUrl",
11122
11917
  "ProFormText",
11123
11918
  "ProFormTextArea",
11124
11919
  "ProFormUpload",
11920
+ "ProFormValidateResult",
11125
11921
  "ProFormValueEnumObj",
11126
11922
  "ProFormValueType",
11923
+ "ProFormValuesPatch",
11127
11924
  "QueryFilter",
11128
11925
  "QueryFilterProps",
11129
11926
  "Rule",
@@ -11137,7 +11934,7 @@
11137
11934
  "useFormWatch"
11138
11935
  ],
11139
11936
  "searchTags": [],
11140
- "typeText": "| { success: true; values: Values; errors?: undefined }\n | { success: false; errors: Record<string, ReactNode>; values?: undefined }",
11937
+ "typeText": "interface ProFormStateContextValue { ... }",
11141
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';",
11142
11939
  "examples": [
11143
11940
  {
@@ -11147,13 +11944,13 @@
11147
11944
  ]
11148
11945
  },
11149
11946
  {
11150
- "name": "ProFormValueEnumObj",
11151
- "kind": "type",
11947
+ "name": "ProFormSwitch",
11948
+ "kind": "component",
11152
11949
  "category": "forms",
11153
11950
  "summary": "",
11154
11951
  "importPath": "@1money/component-ui",
11155
11952
  "subpathImport": "@1money/component-ui/ProForm",
11156
- "sourceFile": "src/components/ProForm/interface.ts",
11953
+ "sourceFile": "src/components/ProForm/fields/ProFormSwitch.tsx",
11157
11954
  "props": [],
11158
11955
  "extends": [],
11159
11956
  "relatedSymbols": [
@@ -11165,6 +11962,7 @@
11165
11962
  "FormCoreInstance",
11166
11963
  "FormInstance",
11167
11964
  "FormLayout",
11965
+ "FormListContextValue",
11168
11966
  "FormSize",
11169
11967
  "LabelAlign",
11170
11968
  "ProForm",
@@ -11178,10 +11976,12 @@
11178
11976
  "ProFormDependencyProps",
11179
11977
  "ProFormFieldConvertValueFn",
11180
11978
  "ProFormFieldName",
11979
+ "ProFormFieldOptionValue",
11181
11980
  "ProFormFieldProps",
11182
11981
  "ProFormFieldSet",
11183
11982
  "ProFormFieldSetProps",
11184
11983
  "ProFormFieldTransformFn",
11984
+ "ProFormFieldValueMap",
11185
11985
  "ProFormFormInstance",
11186
11986
  "ProFormGroup",
11187
11987
  "ProFormGroupProps",
@@ -11194,19 +11994,26 @@
11194
11994
  "ProFormListProps",
11195
11995
  "ProFormMode",
11196
11996
  "ProFormPassword",
11997
+ "ProFormPathValue",
11197
11998
  "ProFormProps",
11198
11999
  "ProFormRadioGroup",
12000
+ "ProFormRecursivePartial",
11199
12001
  "ProFormRequestOption",
11200
12002
  "ProFormSchemaColumn",
12003
+ "ProFormSchemaColumns",
11201
12004
  "ProFormSchemaValueType",
11202
12005
  "ProFormSelect",
11203
12006
  "ProFormSlider",
11204
- "ProFormSwitch",
12007
+ "ProFormStableContextValue",
12008
+ "ProFormStateContextValue",
12009
+ "ProFormSyncToUrl",
11205
12010
  "ProFormText",
11206
12011
  "ProFormTextArea",
11207
12012
  "ProFormUpload",
11208
12013
  "ProFormValidateResult",
12014
+ "ProFormValueEnumObj",
11209
12015
  "ProFormValueType",
12016
+ "ProFormValuesPatch",
11210
12017
  "QueryFilter",
11211
12018
  "QueryFilterProps",
11212
12019
  "Rule",
@@ -11220,7 +12027,6 @@
11220
12027
  "useFormWatch"
11221
12028
  ],
11222
12029
  "searchTags": [],
11223
- "typeText": "Record<\n string | number,\n string | { text: string; disabled?: boolean }\n>",
11224
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';",
11225
12031
  "examples": [
11226
12032
  {
@@ -11230,13 +12036,13 @@
11230
12036
  ]
11231
12037
  },
11232
12038
  {
11233
- "name": "ProFormValueType",
12039
+ "name": "ProFormSyncToUrl",
11234
12040
  "kind": "type",
11235
12041
  "category": "forms",
11236
12042
  "summary": "",
11237
12043
  "importPath": "@1money/component-ui",
11238
12044
  "subpathImport": "@1money/component-ui/ProForm",
11239
- "sourceFile": "src/components/ProForm/interface.ts",
12045
+ "sourceFile": "src/components/ProForm/hooks/useUrlSync.ts",
11240
12046
  "props": [],
11241
12047
  "extends": [],
11242
12048
  "relatedSymbols": [
@@ -11248,6 +12054,7 @@
11248
12054
  "FormCoreInstance",
11249
12055
  "FormInstance",
11250
12056
  "FormLayout",
12057
+ "FormListContextValue",
11251
12058
  "FormSize",
11252
12059
  "LabelAlign",
11253
12060
  "ProForm",
@@ -11261,10 +12068,12 @@
11261
12068
  "ProFormDependencyProps",
11262
12069
  "ProFormFieldConvertValueFn",
11263
12070
  "ProFormFieldName",
12071
+ "ProFormFieldOptionValue",
11264
12072
  "ProFormFieldProps",
11265
12073
  "ProFormFieldSet",
11266
12074
  "ProFormFieldSetProps",
11267
12075
  "ProFormFieldTransformFn",
12076
+ "ProFormFieldValueMap",
11268
12077
  "ProFormFormInstance",
11269
12078
  "ProFormGroup",
11270
12079
  "ProFormGroupProps",
@@ -11277,19 +12086,26 @@
11277
12086
  "ProFormListProps",
11278
12087
  "ProFormMode",
11279
12088
  "ProFormPassword",
12089
+ "ProFormPathValue",
11280
12090
  "ProFormProps",
11281
12091
  "ProFormRadioGroup",
12092
+ "ProFormRecursivePartial",
11282
12093
  "ProFormRequestOption",
11283
12094
  "ProFormSchemaColumn",
12095
+ "ProFormSchemaColumns",
11284
12096
  "ProFormSchemaValueType",
11285
12097
  "ProFormSelect",
11286
12098
  "ProFormSlider",
12099
+ "ProFormStableContextValue",
12100
+ "ProFormStateContextValue",
11287
12101
  "ProFormSwitch",
11288
12102
  "ProFormText",
11289
12103
  "ProFormTextArea",
11290
12104
  "ProFormUpload",
11291
12105
  "ProFormValidateResult",
11292
12106
  "ProFormValueEnumObj",
12107
+ "ProFormValueType",
12108
+ "ProFormValuesPatch",
11293
12109
  "QueryFilter",
11294
12110
  "QueryFilterProps",
11295
12111
  "Rule",
@@ -11303,7 +12119,655 @@
11303
12119
  "useFormWatch"
11304
12120
  ],
11305
12121
  "searchTags": [],
11306
- "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 }>",
11307
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';",
11308
12772
  "examples": [
11309
12773
  {
@@ -12223,7 +13687,7 @@
12223
13687
  }
12224
13688
  ],
12225
13689
  "extends": [
12226
- "ProFormProps<Values>"
13690
+ "ProFormProps<Values, Params>"
12227
13691
  ],
12228
13692
  "relatedSymbols": [
12229
13693
  "CreateProFormFieldConfig",
@@ -12234,6 +13698,7 @@
12234
13698
  "FormCoreInstance",
12235
13699
  "FormInstance",
12236
13700
  "FormLayout",
13701
+ "FormListContextValue",
12237
13702
  "FormSize",
12238
13703
  "LabelAlign",
12239
13704
  "ProForm",
@@ -12247,10 +13712,12 @@
12247
13712
  "ProFormDependencyProps",
12248
13713
  "ProFormFieldConvertValueFn",
12249
13714
  "ProFormFieldName",
13715
+ "ProFormFieldOptionValue",
12250
13716
  "ProFormFieldProps",
12251
13717
  "ProFormFieldSet",
12252
13718
  "ProFormFieldSetProps",
12253
13719
  "ProFormFieldTransformFn",
13720
+ "ProFormFieldValueMap",
12254
13721
  "ProFormFormInstance",
12255
13722
  "ProFormGroup",
12256
13723
  "ProFormGroupProps",
@@ -12263,20 +13730,27 @@
12263
13730
  "ProFormListProps",
12264
13731
  "ProFormMode",
12265
13732
  "ProFormPassword",
13733
+ "ProFormPathValue",
12266
13734
  "ProFormProps",
12267
13735
  "ProFormRadioGroup",
13736
+ "ProFormRecursivePartial",
12268
13737
  "ProFormRequestOption",
12269
13738
  "ProFormSchemaColumn",
13739
+ "ProFormSchemaColumns",
12270
13740
  "ProFormSchemaValueType",
12271
13741
  "ProFormSelect",
12272
13742
  "ProFormSlider",
13743
+ "ProFormStableContextValue",
13744
+ "ProFormStateContextValue",
12273
13745
  "ProFormSwitch",
13746
+ "ProFormSyncToUrl",
12274
13747
  "ProFormText",
12275
13748
  "ProFormTextArea",
12276
13749
  "ProFormUpload",
12277
13750
  "ProFormValidateResult",
12278
13751
  "ProFormValueEnumObj",
12279
13752
  "ProFormValueType",
13753
+ "ProFormValuesPatch",
12280
13754
  "QueryFilterProps",
12281
13755
  "Rule",
12282
13756
  "SchemaForm",
@@ -12316,6 +13790,7 @@
12316
13790
  "FormCoreInstance",
12317
13791
  "FormInstance",
12318
13792
  "FormLayout",
13793
+ "FormListContextValue",
12319
13794
  "FormSize",
12320
13795
  "LabelAlign",
12321
13796
  "ProForm",
@@ -12329,10 +13804,12 @@
12329
13804
  "ProFormDependencyProps",
12330
13805
  "ProFormFieldConvertValueFn",
12331
13806
  "ProFormFieldName",
13807
+ "ProFormFieldOptionValue",
12332
13808
  "ProFormFieldProps",
12333
13809
  "ProFormFieldSet",
12334
13810
  "ProFormFieldSetProps",
12335
13811
  "ProFormFieldTransformFn",
13812
+ "ProFormFieldValueMap",
12336
13813
  "ProFormFormInstance",
12337
13814
  "ProFormGroup",
12338
13815
  "ProFormGroupProps",
@@ -12345,20 +13822,27 @@
12345
13822
  "ProFormListProps",
12346
13823
  "ProFormMode",
12347
13824
  "ProFormPassword",
13825
+ "ProFormPathValue",
12348
13826
  "ProFormProps",
12349
13827
  "ProFormRadioGroup",
13828
+ "ProFormRecursivePartial",
12350
13829
  "ProFormRequestOption",
12351
13830
  "ProFormSchemaColumn",
13831
+ "ProFormSchemaColumns",
12352
13832
  "ProFormSchemaValueType",
12353
13833
  "ProFormSelect",
12354
13834
  "ProFormSlider",
13835
+ "ProFormStableContextValue",
13836
+ "ProFormStateContextValue",
12355
13837
  "ProFormSwitch",
13838
+ "ProFormSyncToUrl",
12356
13839
  "ProFormText",
12357
13840
  "ProFormTextArea",
12358
13841
  "ProFormUpload",
12359
13842
  "ProFormValidateResult",
12360
13843
  "ProFormValueEnumObj",
12361
13844
  "ProFormValueType",
13845
+ "ProFormValuesPatch",
12362
13846
  "QueryFilter",
12363
13847
  "Rule",
12364
13848
  "SchemaForm",
@@ -12371,7 +13855,7 @@
12371
13855
  "useFormWatch"
12372
13856
  ],
12373
13857
  "searchTags": [],
12374
- "typeText": "interface QueryFilterProps extends ProFormProps<Values> { ... }",
13858
+ "typeText": "interface QueryFilterProps extends ProFormProps<Values, Params> { ... }",
12375
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';",
12376
13860
  "examples": [
12377
13861
  {
@@ -13287,6 +14771,7 @@
13287
14771
  "FormCoreInstance",
13288
14772
  "FormInstance",
13289
14773
  "FormLayout",
14774
+ "FormListContextValue",
13290
14775
  "FormSize",
13291
14776
  "LabelAlign",
13292
14777
  "ProForm",
@@ -13300,10 +14785,12 @@
13300
14785
  "ProFormDependencyProps",
13301
14786
  "ProFormFieldConvertValueFn",
13302
14787
  "ProFormFieldName",
14788
+ "ProFormFieldOptionValue",
13303
14789
  "ProFormFieldProps",
13304
14790
  "ProFormFieldSet",
13305
14791
  "ProFormFieldSetProps",
13306
14792
  "ProFormFieldTransformFn",
14793
+ "ProFormFieldValueMap",
13307
14794
  "ProFormFormInstance",
13308
14795
  "ProFormGroup",
13309
14796
  "ProFormGroupProps",
@@ -13316,20 +14803,27 @@
13316
14803
  "ProFormListProps",
13317
14804
  "ProFormMode",
13318
14805
  "ProFormPassword",
14806
+ "ProFormPathValue",
13319
14807
  "ProFormProps",
13320
14808
  "ProFormRadioGroup",
14809
+ "ProFormRecursivePartial",
13321
14810
  "ProFormRequestOption",
13322
14811
  "ProFormSchemaColumn",
14812
+ "ProFormSchemaColumns",
13323
14813
  "ProFormSchemaValueType",
13324
14814
  "ProFormSelect",
13325
14815
  "ProFormSlider",
14816
+ "ProFormStableContextValue",
14817
+ "ProFormStateContextValue",
13326
14818
  "ProFormSwitch",
14819
+ "ProFormSyncToUrl",
13327
14820
  "ProFormText",
13328
14821
  "ProFormTextArea",
13329
14822
  "ProFormUpload",
13330
14823
  "ProFormValidateResult",
13331
14824
  "ProFormValueEnumObj",
13332
14825
  "ProFormValueType",
14826
+ "ProFormValuesPatch",
13333
14827
  "QueryFilter",
13334
14828
  "QueryFilterProps",
13335
14829
  "SchemaForm",
@@ -13362,7 +14856,7 @@
13362
14856
  "props": [
13363
14857
  {
13364
14858
  "name": "columns",
13365
- "type": "ProFormSchemaColumn<Values>[]",
14859
+ "type": "ProFormSchemaColumns<Values, FieldParams>",
13366
14860
  "optional": false,
13367
14861
  "default": null,
13368
14862
  "description": "",
@@ -13370,7 +14864,7 @@
13370
14864
  }
13371
14865
  ],
13372
14866
  "extends": [
13373
- "Omit<ProFormProps<Values>, 'children'>"
14867
+ "Omit<ProFormProps<Values, Params>, 'children'>"
13374
14868
  ],
13375
14869
  "relatedSymbols": [
13376
14870
  "CreateProFormFieldConfig",
@@ -13381,6 +14875,7 @@
13381
14875
  "FormCoreInstance",
13382
14876
  "FormInstance",
13383
14877
  "FormLayout",
14878
+ "FormListContextValue",
13384
14879
  "FormSize",
13385
14880
  "LabelAlign",
13386
14881
  "ProForm",
@@ -13394,10 +14889,12 @@
13394
14889
  "ProFormDependencyProps",
13395
14890
  "ProFormFieldConvertValueFn",
13396
14891
  "ProFormFieldName",
14892
+ "ProFormFieldOptionValue",
13397
14893
  "ProFormFieldProps",
13398
14894
  "ProFormFieldSet",
13399
14895
  "ProFormFieldSetProps",
13400
14896
  "ProFormFieldTransformFn",
14897
+ "ProFormFieldValueMap",
13401
14898
  "ProFormFormInstance",
13402
14899
  "ProFormGroup",
13403
14900
  "ProFormGroupProps",
@@ -13410,20 +14907,27 @@
13410
14907
  "ProFormListProps",
13411
14908
  "ProFormMode",
13412
14909
  "ProFormPassword",
14910
+ "ProFormPathValue",
13413
14911
  "ProFormProps",
13414
14912
  "ProFormRadioGroup",
14913
+ "ProFormRecursivePartial",
13415
14914
  "ProFormRequestOption",
13416
14915
  "ProFormSchemaColumn",
14916
+ "ProFormSchemaColumns",
13417
14917
  "ProFormSchemaValueType",
13418
14918
  "ProFormSelect",
13419
14919
  "ProFormSlider",
14920
+ "ProFormStableContextValue",
14921
+ "ProFormStateContextValue",
13420
14922
  "ProFormSwitch",
14923
+ "ProFormSyncToUrl",
13421
14924
  "ProFormText",
13422
14925
  "ProFormTextArea",
13423
14926
  "ProFormUpload",
13424
14927
  "ProFormValidateResult",
13425
14928
  "ProFormValueEnumObj",
13426
14929
  "ProFormValueType",
14930
+ "ProFormValuesPatch",
13427
14931
  "QueryFilter",
13428
14932
  "QueryFilterProps",
13429
14933
  "Rule",
@@ -13463,6 +14967,7 @@
13463
14967
  "FormCoreInstance",
13464
14968
  "FormInstance",
13465
14969
  "FormLayout",
14970
+ "FormListContextValue",
13466
14971
  "FormSize",
13467
14972
  "LabelAlign",
13468
14973
  "ProForm",
@@ -13476,10 +14981,12 @@
13476
14981
  "ProFormDependencyProps",
13477
14982
  "ProFormFieldConvertValueFn",
13478
14983
  "ProFormFieldName",
14984
+ "ProFormFieldOptionValue",
13479
14985
  "ProFormFieldProps",
13480
14986
  "ProFormFieldSet",
13481
14987
  "ProFormFieldSetProps",
13482
14988
  "ProFormFieldTransformFn",
14989
+ "ProFormFieldValueMap",
13483
14990
  "ProFormFormInstance",
13484
14991
  "ProFormGroup",
13485
14992
  "ProFormGroupProps",
@@ -13492,20 +14999,27 @@
13492
14999
  "ProFormListProps",
13493
15000
  "ProFormMode",
13494
15001
  "ProFormPassword",
15002
+ "ProFormPathValue",
13495
15003
  "ProFormProps",
13496
15004
  "ProFormRadioGroup",
15005
+ "ProFormRecursivePartial",
13497
15006
  "ProFormRequestOption",
13498
15007
  "ProFormSchemaColumn",
15008
+ "ProFormSchemaColumns",
13499
15009
  "ProFormSchemaValueType",
13500
15010
  "ProFormSelect",
13501
15011
  "ProFormSlider",
15012
+ "ProFormStableContextValue",
15013
+ "ProFormStateContextValue",
13502
15014
  "ProFormSwitch",
15015
+ "ProFormSyncToUrl",
13503
15016
  "ProFormText",
13504
15017
  "ProFormTextArea",
13505
15018
  "ProFormUpload",
13506
15019
  "ProFormValidateResult",
13507
15020
  "ProFormValueEnumObj",
13508
15021
  "ProFormValueType",
15022
+ "ProFormValuesPatch",
13509
15023
  "QueryFilter",
13510
15024
  "QueryFilterProps",
13511
15025
  "Rule",
@@ -13518,7 +15032,7 @@
13518
15032
  "useFormWatch"
13519
15033
  ],
13520
15034
  "searchTags": [],
13521
- "typeText": "interface SchemaFormProps extends Omit<ProFormProps<Values>, 'children'> { ... }",
15035
+ "typeText": "interface SchemaFormProps extends Omit<ProFormProps<Values, Params>, 'children'> { ... }",
13522
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';",
13523
15037
  "examples": [
13524
15038
  {
@@ -15536,6 +17050,7 @@
15536
17050
  "FormCoreInstance",
15537
17051
  "FormInstance",
15538
17052
  "FormLayout",
17053
+ "FormListContextValue",
15539
17054
  "FormSize",
15540
17055
  "LabelAlign",
15541
17056
  "ProForm",
@@ -15549,10 +17064,12 @@
15549
17064
  "ProFormDependencyProps",
15550
17065
  "ProFormFieldConvertValueFn",
15551
17066
  "ProFormFieldName",
17067
+ "ProFormFieldOptionValue",
15552
17068
  "ProFormFieldProps",
15553
17069
  "ProFormFieldSet",
15554
17070
  "ProFormFieldSetProps",
15555
17071
  "ProFormFieldTransformFn",
17072
+ "ProFormFieldValueMap",
15556
17073
  "ProFormFormInstance",
15557
17074
  "ProFormGroup",
15558
17075
  "ProFormGroupProps",
@@ -15565,20 +17082,27 @@
15565
17082
  "ProFormListProps",
15566
17083
  "ProFormMode",
15567
17084
  "ProFormPassword",
17085
+ "ProFormPathValue",
15568
17086
  "ProFormProps",
15569
17087
  "ProFormRadioGroup",
17088
+ "ProFormRecursivePartial",
15570
17089
  "ProFormRequestOption",
15571
17090
  "ProFormSchemaColumn",
17091
+ "ProFormSchemaColumns",
15572
17092
  "ProFormSchemaValueType",
15573
17093
  "ProFormSelect",
15574
17094
  "ProFormSlider",
17095
+ "ProFormStableContextValue",
17096
+ "ProFormStateContextValue",
15575
17097
  "ProFormSwitch",
17098
+ "ProFormSyncToUrl",
15576
17099
  "ProFormText",
15577
17100
  "ProFormTextArea",
15578
17101
  "ProFormUpload",
15579
17102
  "ProFormValidateResult",
15580
17103
  "ProFormValueEnumObj",
15581
17104
  "ProFormValueType",
17105
+ "ProFormValuesPatch",
15582
17106
  "QueryFilter",
15583
17107
  "QueryFilterProps",
15584
17108
  "Rule",
@@ -18178,6 +19702,7 @@
18178
19702
  "FormCoreInstance",
18179
19703
  "FormInstance",
18180
19704
  "FormLayout",
19705
+ "FormListContextValue",
18181
19706
  "FormSize",
18182
19707
  "LabelAlign",
18183
19708
  "ProForm",
@@ -18191,10 +19716,12 @@
18191
19716
  "ProFormDependencyProps",
18192
19717
  "ProFormFieldConvertValueFn",
18193
19718
  "ProFormFieldName",
19719
+ "ProFormFieldOptionValue",
18194
19720
  "ProFormFieldProps",
18195
19721
  "ProFormFieldSet",
18196
19722
  "ProFormFieldSetProps",
18197
19723
  "ProFormFieldTransformFn",
19724
+ "ProFormFieldValueMap",
18198
19725
  "ProFormFormInstance",
18199
19726
  "ProFormGroup",
18200
19727
  "ProFormGroupProps",
@@ -18207,20 +19734,27 @@
18207
19734
  "ProFormListProps",
18208
19735
  "ProFormMode",
18209
19736
  "ProFormPassword",
19737
+ "ProFormPathValue",
18210
19738
  "ProFormProps",
18211
19739
  "ProFormRadioGroup",
19740
+ "ProFormRecursivePartial",
18212
19741
  "ProFormRequestOption",
18213
19742
  "ProFormSchemaColumn",
19743
+ "ProFormSchemaColumns",
18214
19744
  "ProFormSchemaValueType",
18215
19745
  "ProFormSelect",
18216
19746
  "ProFormSlider",
19747
+ "ProFormStableContextValue",
19748
+ "ProFormStateContextValue",
18217
19749
  "ProFormSwitch",
19750
+ "ProFormSyncToUrl",
18218
19751
  "ProFormText",
18219
19752
  "ProFormTextArea",
18220
19753
  "ProFormUpload",
18221
19754
  "ProFormValidateResult",
18222
19755
  "ProFormValueEnumObj",
18223
19756
  "ProFormValueType",
19757
+ "ProFormValuesPatch",
18224
19758
  "QueryFilter",
18225
19759
  "QueryFilterProps",
18226
19760
  "Rule",
@@ -18321,6 +19855,7 @@
18321
19855
  "FormCoreInstance",
18322
19856
  "FormInstance",
18323
19857
  "FormLayout",
19858
+ "FormListContextValue",
18324
19859
  "FormSize",
18325
19860
  "LabelAlign",
18326
19861
  "ProForm",
@@ -18334,10 +19869,12 @@
18334
19869
  "ProFormDependencyProps",
18335
19870
  "ProFormFieldConvertValueFn",
18336
19871
  "ProFormFieldName",
19872
+ "ProFormFieldOptionValue",
18337
19873
  "ProFormFieldProps",
18338
19874
  "ProFormFieldSet",
18339
19875
  "ProFormFieldSetProps",
18340
19876
  "ProFormFieldTransformFn",
19877
+ "ProFormFieldValueMap",
18341
19878
  "ProFormFormInstance",
18342
19879
  "ProFormGroup",
18343
19880
  "ProFormGroupProps",
@@ -18350,20 +19887,27 @@
18350
19887
  "ProFormListProps",
18351
19888
  "ProFormMode",
18352
19889
  "ProFormPassword",
19890
+ "ProFormPathValue",
18353
19891
  "ProFormProps",
18354
19892
  "ProFormRadioGroup",
19893
+ "ProFormRecursivePartial",
18355
19894
  "ProFormRequestOption",
18356
19895
  "ProFormSchemaColumn",
19896
+ "ProFormSchemaColumns",
18357
19897
  "ProFormSchemaValueType",
18358
19898
  "ProFormSelect",
18359
19899
  "ProFormSlider",
19900
+ "ProFormStableContextValue",
19901
+ "ProFormStateContextValue",
18360
19902
  "ProFormSwitch",
19903
+ "ProFormSyncToUrl",
18361
19904
  "ProFormText",
18362
19905
  "ProFormTextArea",
18363
19906
  "ProFormUpload",
18364
19907
  "ProFormValidateResult",
18365
19908
  "ProFormValueEnumObj",
18366
19909
  "ProFormValueType",
19910
+ "ProFormValuesPatch",
18367
19911
  "QueryFilter",
18368
19912
  "QueryFilterProps",
18369
19913
  "Rule",
@@ -18404,6 +19948,7 @@
18404
19948
  "FormCoreInstance",
18405
19949
  "FormInstance",
18406
19950
  "FormLayout",
19951
+ "FormListContextValue",
18407
19952
  "FormSize",
18408
19953
  "LabelAlign",
18409
19954
  "ProForm",
@@ -18417,10 +19962,12 @@
18417
19962
  "ProFormDependencyProps",
18418
19963
  "ProFormFieldConvertValueFn",
18419
19964
  "ProFormFieldName",
19965
+ "ProFormFieldOptionValue",
18420
19966
  "ProFormFieldProps",
18421
19967
  "ProFormFieldSet",
18422
19968
  "ProFormFieldSetProps",
18423
19969
  "ProFormFieldTransformFn",
19970
+ "ProFormFieldValueMap",
18424
19971
  "ProFormFormInstance",
18425
19972
  "ProFormGroup",
18426
19973
  "ProFormGroupProps",
@@ -18433,20 +19980,27 @@
18433
19980
  "ProFormListProps",
18434
19981
  "ProFormMode",
18435
19982
  "ProFormPassword",
19983
+ "ProFormPathValue",
18436
19984
  "ProFormProps",
18437
19985
  "ProFormRadioGroup",
19986
+ "ProFormRecursivePartial",
18438
19987
  "ProFormRequestOption",
18439
19988
  "ProFormSchemaColumn",
19989
+ "ProFormSchemaColumns",
18440
19990
  "ProFormSchemaValueType",
18441
19991
  "ProFormSelect",
18442
19992
  "ProFormSlider",
19993
+ "ProFormStableContextValue",
19994
+ "ProFormStateContextValue",
18443
19995
  "ProFormSwitch",
19996
+ "ProFormSyncToUrl",
18444
19997
  "ProFormText",
18445
19998
  "ProFormTextArea",
18446
19999
  "ProFormUpload",
18447
20000
  "ProFormValidateResult",
18448
20001
  "ProFormValueEnumObj",
18449
20002
  "ProFormValueType",
20003
+ "ProFormValuesPatch",
18450
20004
  "QueryFilter",
18451
20005
  "QueryFilterProps",
18452
20006
  "Rule",
@@ -18708,6 +20262,7 @@
18708
20262
  "FormCoreInstance",
18709
20263
  "FormInstance",
18710
20264
  "FormLayout",
20265
+ "FormListContextValue",
18711
20266
  "FormSize",
18712
20267
  "LabelAlign",
18713
20268
  "ProForm",
@@ -18721,10 +20276,12 @@
18721
20276
  "ProFormDependencyProps",
18722
20277
  "ProFormFieldConvertValueFn",
18723
20278
  "ProFormFieldName",
20279
+ "ProFormFieldOptionValue",
18724
20280
  "ProFormFieldProps",
18725
20281
  "ProFormFieldSet",
18726
20282
  "ProFormFieldSetProps",
18727
20283
  "ProFormFieldTransformFn",
20284
+ "ProFormFieldValueMap",
18728
20285
  "ProFormFormInstance",
18729
20286
  "ProFormGroup",
18730
20287
  "ProFormGroupProps",
@@ -18737,20 +20294,27 @@
18737
20294
  "ProFormListProps",
18738
20295
  "ProFormMode",
18739
20296
  "ProFormPassword",
20297
+ "ProFormPathValue",
18740
20298
  "ProFormProps",
18741
20299
  "ProFormRadioGroup",
20300
+ "ProFormRecursivePartial",
18742
20301
  "ProFormRequestOption",
18743
20302
  "ProFormSchemaColumn",
20303
+ "ProFormSchemaColumns",
18744
20304
  "ProFormSchemaValueType",
18745
20305
  "ProFormSelect",
18746
20306
  "ProFormSlider",
20307
+ "ProFormStableContextValue",
20308
+ "ProFormStateContextValue",
18747
20309
  "ProFormSwitch",
20310
+ "ProFormSyncToUrl",
18748
20311
  "ProFormText",
18749
20312
  "ProFormTextArea",
18750
20313
  "ProFormUpload",
18751
20314
  "ProFormValidateResult",
18752
20315
  "ProFormValueEnumObj",
18753
20316
  "ProFormValueType",
20317
+ "ProFormValuesPatch",
18754
20318
  "QueryFilter",
18755
20319
  "QueryFilterProps",
18756
20320
  "Rule",
@@ -18763,7 +20327,7 @@
18763
20327
  "useFormWatch"
18764
20328
  ],
18765
20329
  "searchTags": [],
18766
- "signature": "(config: CreateProFormFieldConfig<FieldProps>): FC<ProFormFieldProps<FieldProps>>",
20330
+ "signature": "(config: CreateProFormFieldConfig<FieldProps>): ProFormFieldComponent<FieldProps>",
18767
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';",
18768
20332
  "examples": [
18769
20333
  {
@@ -18820,6 +20384,7 @@
18820
20384
  "FormCoreInstance",
18821
20385
  "FormInstance",
18822
20386
  "FormLayout",
20387
+ "FormListContextValue",
18823
20388
  "FormSize",
18824
20389
  "LabelAlign",
18825
20390
  "ProForm",
@@ -18833,10 +20398,12 @@
18833
20398
  "ProFormDependencyProps",
18834
20399
  "ProFormFieldConvertValueFn",
18835
20400
  "ProFormFieldName",
20401
+ "ProFormFieldOptionValue",
18836
20402
  "ProFormFieldProps",
18837
20403
  "ProFormFieldSet",
18838
20404
  "ProFormFieldSetProps",
18839
20405
  "ProFormFieldTransformFn",
20406
+ "ProFormFieldValueMap",
18840
20407
  "ProFormFormInstance",
18841
20408
  "ProFormGroup",
18842
20409
  "ProFormGroupProps",
@@ -18849,20 +20416,27 @@
18849
20416
  "ProFormListProps",
18850
20417
  "ProFormMode",
18851
20418
  "ProFormPassword",
20419
+ "ProFormPathValue",
18852
20420
  "ProFormProps",
18853
20421
  "ProFormRadioGroup",
20422
+ "ProFormRecursivePartial",
18854
20423
  "ProFormRequestOption",
18855
20424
  "ProFormSchemaColumn",
20425
+ "ProFormSchemaColumns",
18856
20426
  "ProFormSchemaValueType",
18857
20427
  "ProFormSelect",
18858
20428
  "ProFormSlider",
20429
+ "ProFormStableContextValue",
20430
+ "ProFormStateContextValue",
18859
20431
  "ProFormSwitch",
20432
+ "ProFormSyncToUrl",
18860
20433
  "ProFormText",
18861
20434
  "ProFormTextArea",
18862
20435
  "ProFormUpload",
18863
20436
  "ProFormValidateResult",
18864
20437
  "ProFormValueEnumObj",
18865
20438
  "ProFormValueType",
20439
+ "ProFormValuesPatch",
18866
20440
  "QueryFilter",
18867
20441
  "QueryFilterProps",
18868
20442
  "Rule",