szld-libs 0.2.64 → 0.2.66
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/szld-components.es.js +4589 -4569
- package/dist/szld-components.umd.js +39 -39
- package/es/components/DynamicForm/index.d.ts +1 -1
- package/es/components/DynamicForm/index.js +2 -0
- package/es/components/DynamicForm/myCascader/index.d.ts +2 -1
- package/es/components/DynamicForm/myCascader/index.js +26 -20
- package/es/components/DynamicForm/myCheckbox/index.d.ts +1 -0
- package/es/components/DynamicForm/myCheckbox/index.js +6 -3
- package/es/components/DynamicForm/myRadio/index.d.ts +1 -0
- package/es/components/DynamicForm/myRadio/index.js +6 -3
- package/es/components/DynamicForm/mySelect/index.d.ts +2 -1
- package/es/components/DynamicForm/mySelect/index.js +29 -22
- package/es/components/DynamicForm/useDynamicForm.d.ts +1 -0
- package/es/components/DynamicForm/useDynamicForm.js +5 -0
- package/lib/components/DynamicForm/index.d.ts +1 -1
- package/lib/components/DynamicForm/index.js +2 -0
- package/lib/components/DynamicForm/myCascader/index.d.ts +2 -1
- package/lib/components/DynamicForm/myCascader/index.js +26 -20
- package/lib/components/DynamicForm/myCheckbox/index.d.ts +1 -0
- package/lib/components/DynamicForm/myCheckbox/index.js +6 -3
- package/lib/components/DynamicForm/myRadio/index.d.ts +1 -0
- package/lib/components/DynamicForm/myRadio/index.js +6 -3
- package/lib/components/DynamicForm/mySelect/index.d.ts +2 -1
- package/lib/components/DynamicForm/mySelect/index.js +29 -22
- package/lib/components/DynamicForm/useDynamicForm.d.ts +1 -0
- package/lib/components/DynamicForm/useDynamicForm.js +5 -0
- package/package.json +1 -1
|
@@ -25,6 +25,7 @@ function useDynamicForm(props) {
|
|
|
25
25
|
updateDelFileList,
|
|
26
26
|
interfaceTypeChildren,
|
|
27
27
|
interfaceTypeDict,
|
|
28
|
+
interfaceTypeSysDict,
|
|
28
29
|
relatedidKey,
|
|
29
30
|
actionUrlKey,
|
|
30
31
|
actionUrlExtraParams,
|
|
@@ -405,6 +406,7 @@ function useDynamicForm(props) {
|
|
|
405
406
|
commonRequest,
|
|
406
407
|
value: formatValue,
|
|
407
408
|
interfaceTypeDict,
|
|
409
|
+
interfaceTypeSysDict,
|
|
408
410
|
actionUrlKey,
|
|
409
411
|
actionUrlExtraParams,
|
|
410
412
|
onChange: (val) => {
|
|
@@ -471,6 +473,7 @@ function useDynamicForm(props) {
|
|
|
471
473
|
handleUrlOptions,
|
|
472
474
|
value: formatValue,
|
|
473
475
|
interfaceTypeDict,
|
|
476
|
+
interfaceTypeSysDict,
|
|
474
477
|
actionUrlKey,
|
|
475
478
|
actionUrlExtraParams,
|
|
476
479
|
onChange: (e) => {
|
|
@@ -491,6 +494,7 @@ function useDynamicForm(props) {
|
|
|
491
494
|
value: formatValue,
|
|
492
495
|
handleUrlOptions,
|
|
493
496
|
interfaceTypeDict,
|
|
497
|
+
interfaceTypeSysDict,
|
|
494
498
|
actionUrlKey,
|
|
495
499
|
actionUrlExtraParams,
|
|
496
500
|
onChange: (val) => {
|
|
@@ -525,6 +529,7 @@ function useDynamicForm(props) {
|
|
|
525
529
|
value: item.attrvalue,
|
|
526
530
|
style: { width: defaultWidth, ...itemStyle == null ? void 0 : itemStyle.style },
|
|
527
531
|
interfaceTypeDict,
|
|
532
|
+
interfaceTypeSysDict,
|
|
528
533
|
actionUrlKey,
|
|
529
534
|
actionUrlExtraParams
|
|
530
535
|
}
|