iv-npm 1.1.74 → 1.2.2
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/package.json +1 -1
- package/packages/shared/package.json +30 -31
- package/packages/ui/dist/business-ui/component/IVSetofbookDropdown.d.ts +11 -0
- package/packages/ui/dist/index.cjs.js +57 -52
- package/packages/ui/dist/index.esm.js +58 -53
- package/packages/ui/dist/index.umd.js +57 -52
- package/packages/ui/dist/index.umd.js.map +1 -1
- package/packages/ui/package.json +60 -60
- package/pnpm-lock.yaml +19 -9
package/package.json
CHANGED
|
@@ -1,31 +1,30 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@IVNPM/shared",
|
|
3
|
-
"version": "1.0.0",
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "IVNPM/shared",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"prepare": "npm run build",
|
|
8
|
-
"dev": "tsup --watch",
|
|
9
|
-
"build": "tsup"
|
|
10
|
-
},
|
|
11
|
-
"main": "dist/utils/index.mjs",
|
|
12
|
-
"module": "dist/utils/index.mjs",
|
|
13
|
-
"types": "dist/utils/index.d.ts",
|
|
14
|
-
"files": [
|
|
15
|
-
"index.js",
|
|
16
|
-
"dist"
|
|
17
|
-
],
|
|
18
|
-
"author": "Mr.Cong",
|
|
19
|
-
"license": "ISC",
|
|
20
|
-
"devDependencies": {
|
|
21
|
-
"rollup-plugin-copy": "^3.4.0",
|
|
22
|
-
"tsup": "^6.2.1"
|
|
23
|
-
},
|
|
24
|
-
"peerDependencies": {
|
|
25
|
-
"ant-design-vue": "^3.2.5"
|
|
26
|
-
},
|
|
27
|
-
"dependencies": {
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@IVNPM/shared",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "IVNPM/shared",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"prepare": "npm run build",
|
|
8
|
+
"dev": "tsup --watch",
|
|
9
|
+
"build": "tsup"
|
|
10
|
+
},
|
|
11
|
+
"main": "dist/utils/index.mjs",
|
|
12
|
+
"module": "dist/utils/index.mjs",
|
|
13
|
+
"types": "dist/utils/index.d.ts",
|
|
14
|
+
"files": [
|
|
15
|
+
"index.js",
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"author": "Mr.Cong",
|
|
19
|
+
"license": "ISC",
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"rollup-plugin-copy": "^3.4.0",
|
|
22
|
+
"tsup": "^6.2.1"
|
|
23
|
+
},
|
|
24
|
+
"peerDependencies": {
|
|
25
|
+
"ant-design-vue": "^3.2.5"
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"nanoid": "^4.0.0"
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
* 组件定义-------------------------------------
|
|
3
3
|
* */
|
|
4
4
|
declare const _default: import("vue").DefineComponent<{
|
|
5
|
+
name: {
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
required: true;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
5
10
|
value: {
|
|
6
11
|
type: null;
|
|
7
12
|
required: true;
|
|
@@ -74,6 +79,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
74
79
|
}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
75
80
|
[key: string]: any;
|
|
76
81
|
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:value" | "change")[], "update:value" | "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
82
|
+
name: {
|
|
83
|
+
type: StringConstructor;
|
|
84
|
+
required: true;
|
|
85
|
+
default: string;
|
|
86
|
+
};
|
|
77
87
|
value: {
|
|
78
88
|
type: null;
|
|
79
89
|
required: true;
|
|
@@ -147,6 +157,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
147
157
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
148
158
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
149
159
|
}, {
|
|
160
|
+
name: string;
|
|
150
161
|
replaceFields: any;
|
|
151
162
|
inputStyle: Record<string, any>;
|
|
152
163
|
wrapperCol: Record<string, any>;
|
|
@@ -1655,7 +1655,7 @@ var script$l = /*#__PURE__*/vue.defineComponent({
|
|
|
1655
1655
|
)) : vue.createCommentVNode("v-if", true)];
|
|
1656
1656
|
}),
|
|
1657
1657
|
"default": vue.withCtx(function () {
|
|
1658
|
-
return [vue.createVNode(_component_a_tree_select, {
|
|
1658
|
+
return [vue.createVNode(_component_a_tree_select, vue.mergeProps(_ctx.$attrs, {
|
|
1659
1659
|
value: vue.unref(inputV),
|
|
1660
1660
|
"onUpdate:value": _cache[0] || (_cache[0] = function ($event) {
|
|
1661
1661
|
return vue.isRef(inputV) ? inputV.value = $event : null;
|
|
@@ -1671,13 +1671,13 @@ var script$l = /*#__PURE__*/vue.defineComponent({
|
|
|
1671
1671
|
multiple: __props.multiple,
|
|
1672
1672
|
"filter-option": vue.unref(filterOptionHeadle),
|
|
1673
1673
|
treeDefaultExpandAll: "",
|
|
1674
|
-
style:
|
|
1674
|
+
style: __props.inputStyle,
|
|
1675
1675
|
onChange: _cache[1] || (_cache[1] = function ($event) {
|
|
1676
1676
|
return _ctx.$emit('change', $event);
|
|
1677
1677
|
}),
|
|
1678
1678
|
replaceFields: __props.replaceFields
|
|
1679
|
-
}, null,
|
|
1680
|
-
/*
|
|
1679
|
+
}), null, 16
|
|
1680
|
+
/* FULL_PROPS */
|
|
1681
1681
|
, ["value", "tree-data", "getPopupContainer", "placeholder", "allowClear", "multiple", "filter-option", "style", "replaceFields"])];
|
|
1682
1682
|
}),
|
|
1683
1683
|
_: 1
|
|
@@ -1880,7 +1880,7 @@ var script$k = /*#__PURE__*/vue.defineComponent({
|
|
|
1880
1880
|
)) : vue.createCommentVNode("v-if", true)];
|
|
1881
1881
|
}),
|
|
1882
1882
|
"default": vue.withCtx(function () {
|
|
1883
|
-
return [vue.createVNode(_component_a_select, {
|
|
1883
|
+
return [vue.createVNode(_component_a_select, vue.mergeProps(_ctx.$attrs, {
|
|
1884
1884
|
value: vue.unref(inputV),
|
|
1885
1885
|
"onUpdate:value": _cache[0] || (_cache[0] = function ($event) {
|
|
1886
1886
|
return vue.isRef(inputV) ? inputV.value = $event : null;
|
|
@@ -1888,7 +1888,7 @@ var script$k = /*#__PURE__*/vue.defineComponent({
|
|
|
1888
1888
|
getPopupContainer: function getPopupContainer(triggerNode) {
|
|
1889
1889
|
return triggerNode.parentNode;
|
|
1890
1890
|
},
|
|
1891
|
-
style:
|
|
1891
|
+
style: __props.inputStyle,
|
|
1892
1892
|
placeholder: __props.placeholder,
|
|
1893
1893
|
options: dataV.value,
|
|
1894
1894
|
mode: __props.multiple ? 'multiple' : '',
|
|
@@ -1899,8 +1899,8 @@ var script$k = /*#__PURE__*/vue.defineComponent({
|
|
|
1899
1899
|
return _ctx.$emit('change', $event);
|
|
1900
1900
|
}),
|
|
1901
1901
|
"filter-option": vue.unref(filterOptionHeadle)
|
|
1902
|
-
}, null,
|
|
1903
|
-
/*
|
|
1902
|
+
}), null, 16
|
|
1903
|
+
/* FULL_PROPS */
|
|
1904
1904
|
, ["value", "getPopupContainer", "style", "placeholder", "options", "mode", "fieldNames", "allowClear", "filter-option"])];
|
|
1905
1905
|
}),
|
|
1906
1906
|
_: 1
|
|
@@ -2100,7 +2100,7 @@ var script$j = /*#__PURE__*/vue.defineComponent({
|
|
|
2100
2100
|
)) : vue.createCommentVNode("v-if", true)];
|
|
2101
2101
|
}),
|
|
2102
2102
|
"default": vue.withCtx(function () {
|
|
2103
|
-
return [vue.createVNode(_component_a_select, {
|
|
2103
|
+
return [vue.createVNode(_component_a_select, vue.mergeProps(_ctx.$attrs, {
|
|
2104
2104
|
getPopupContainer: function getPopupContainer(triggerNode) {
|
|
2105
2105
|
return triggerNode.parentNode;
|
|
2106
2106
|
},
|
|
@@ -2108,7 +2108,7 @@ var script$j = /*#__PURE__*/vue.defineComponent({
|
|
|
2108
2108
|
"onUpdate:value": _cache[0] || (_cache[0] = function ($event) {
|
|
2109
2109
|
return vue.isRef(inputV) ? inputV.value = $event : null;
|
|
2110
2110
|
}),
|
|
2111
|
-
style:
|
|
2111
|
+
style: __props.inputStyle,
|
|
2112
2112
|
placeholder: __props.placeholder,
|
|
2113
2113
|
options: dataV.value,
|
|
2114
2114
|
mode: __props.multiple ? 'multiple' : '',
|
|
@@ -2119,8 +2119,8 @@ var script$j = /*#__PURE__*/vue.defineComponent({
|
|
|
2119
2119
|
return _ctx.$emit('change', $event);
|
|
2120
2120
|
}),
|
|
2121
2121
|
"filter-option": vue.unref(filterOptionHeadle)
|
|
2122
|
-
}, null,
|
|
2123
|
-
/*
|
|
2122
|
+
}), null, 16
|
|
2123
|
+
/* FULL_PROPS */
|
|
2124
2124
|
, ["getPopupContainer", "value", "style", "placeholder", "options", "mode", "fieldNames", "allowClear", "filter-option"])];
|
|
2125
2125
|
}),
|
|
2126
2126
|
_: 1
|
|
@@ -2146,6 +2146,11 @@ var _hoisted_1$g = {
|
|
|
2146
2146
|
var script$i = /*#__PURE__*/vue.defineComponent({
|
|
2147
2147
|
__name: 'IVSetofbookDropdown',
|
|
2148
2148
|
props: {
|
|
2149
|
+
name: {
|
|
2150
|
+
type: String,
|
|
2151
|
+
required: true,
|
|
2152
|
+
"default": "setOfBookIds"
|
|
2153
|
+
},
|
|
2149
2154
|
value: {
|
|
2150
2155
|
type: null,
|
|
2151
2156
|
required: true
|
|
@@ -2324,7 +2329,7 @@ var script$i = /*#__PURE__*/vue.defineComponent({
|
|
|
2324
2329
|
)) : vue.createCommentVNode("v-if", true)];
|
|
2325
2330
|
}),
|
|
2326
2331
|
"default": vue.withCtx(function () {
|
|
2327
|
-
return [vue.createVNode(_component_a_tree_select, {
|
|
2332
|
+
return [vue.createVNode(_component_a_tree_select, vue.mergeProps(_ctx.$attrs, {
|
|
2328
2333
|
value: vue.unref(inputV),
|
|
2329
2334
|
"onUpdate:value": _cache[0] || (_cache[0] = function ($event) {
|
|
2330
2335
|
return vue.isRef(inputV) ? inputV.value = $event : null;
|
|
@@ -2340,13 +2345,13 @@ var script$i = /*#__PURE__*/vue.defineComponent({
|
|
|
2340
2345
|
"filter-option": vue.unref(filterOptionHeadle),
|
|
2341
2346
|
multiple: __props.multiple,
|
|
2342
2347
|
treeDefaultExpandAll: "",
|
|
2343
|
-
style:
|
|
2348
|
+
style: __props.inputStyle,
|
|
2344
2349
|
onChange: _cache[1] || (_cache[1] = function ($event) {
|
|
2345
2350
|
return _ctx.$emit('change', $event);
|
|
2346
2351
|
}),
|
|
2347
2352
|
replaceFields: __props.replaceFields
|
|
2348
|
-
}, null,
|
|
2349
|
-
/*
|
|
2353
|
+
}), null, 16
|
|
2354
|
+
/* FULL_PROPS */
|
|
2350
2355
|
, ["value", "tree-data", "getPopupContainer", "placeholder", "allowClear", "filter-option", "multiple", "style", "replaceFields"])];
|
|
2351
2356
|
}),
|
|
2352
2357
|
_: 1
|
|
@@ -2541,7 +2546,7 @@ var script$h = /*#__PURE__*/vue.defineComponent({
|
|
|
2541
2546
|
)) : vue.createCommentVNode("v-if", true)];
|
|
2542
2547
|
}),
|
|
2543
2548
|
"default": vue.withCtx(function () {
|
|
2544
|
-
return [vue.createVNode(_component_a_select, {
|
|
2549
|
+
return [vue.createVNode(_component_a_select, vue.mergeProps(_ctx.$attrs, {
|
|
2545
2550
|
value: vue.unref(inputV),
|
|
2546
2551
|
"onUpdate:value": _cache[0] || (_cache[0] = function ($event) {
|
|
2547
2552
|
return vue.isRef(inputV) ? inputV.value = $event : null;
|
|
@@ -2550,7 +2555,7 @@ var script$h = /*#__PURE__*/vue.defineComponent({
|
|
|
2550
2555
|
return triggerNode.parentNode;
|
|
2551
2556
|
},
|
|
2552
2557
|
allowClear: !__props.isRequired,
|
|
2553
|
-
style:
|
|
2558
|
+
style: __props.inputStyle,
|
|
2554
2559
|
placeholder: __props.placeholder,
|
|
2555
2560
|
showSearch: "",
|
|
2556
2561
|
mode: __props.multiple ? 'multiple' : '',
|
|
@@ -2561,8 +2566,8 @@ var script$h = /*#__PURE__*/vue.defineComponent({
|
|
|
2561
2566
|
return _ctx.$emit('change', $event);
|
|
2562
2567
|
}),
|
|
2563
2568
|
fieldNames: __props.fieldNames
|
|
2564
|
-
}, null,
|
|
2565
|
-
/*
|
|
2569
|
+
}), null, 16
|
|
2570
|
+
/* FULL_PROPS */
|
|
2566
2571
|
, ["value", "getPopupContainer", "allowClear", "style", "placeholder", "mode", "options", "filter-option", "fieldNames"])];
|
|
2567
2572
|
}),
|
|
2568
2573
|
_: 1
|
|
@@ -2748,7 +2753,7 @@ var script$g = /*#__PURE__*/vue.defineComponent({
|
|
|
2748
2753
|
)) : vue.createCommentVNode("v-if", true)];
|
|
2749
2754
|
}),
|
|
2750
2755
|
"default": vue.withCtx(function () {
|
|
2751
|
-
return [vue.createVNode(_component_a_select, {
|
|
2756
|
+
return [vue.createVNode(_component_a_select, vue.mergeProps(_ctx.$attrs, {
|
|
2752
2757
|
getPopupContainer: function getPopupContainer(triggerNode) {
|
|
2753
2758
|
return triggerNode.parentNode;
|
|
2754
2759
|
},
|
|
@@ -2756,7 +2761,7 @@ var script$g = /*#__PURE__*/vue.defineComponent({
|
|
|
2756
2761
|
"onUpdate:value": _cache[0] || (_cache[0] = function ($event) {
|
|
2757
2762
|
return vue.isRef(inputV) ? inputV.value = $event : null;
|
|
2758
2763
|
}),
|
|
2759
|
-
style:
|
|
2764
|
+
style: __props.inputStyle,
|
|
2760
2765
|
placeholder: __props.placeholder,
|
|
2761
2766
|
options: dataV.value,
|
|
2762
2767
|
mode: __props.multiple ? 'multiple' : '',
|
|
@@ -2767,8 +2772,8 @@ var script$g = /*#__PURE__*/vue.defineComponent({
|
|
|
2767
2772
|
return _ctx.$emit('change', $event);
|
|
2768
2773
|
}),
|
|
2769
2774
|
"filter-option": vue.unref(filterOptionHeadle)
|
|
2770
|
-
}, null,
|
|
2771
|
-
/*
|
|
2775
|
+
}), null, 16
|
|
2776
|
+
/* FULL_PROPS */
|
|
2772
2777
|
, ["getPopupContainer", "value", "style", "placeholder", "options", "mode", "fieldNames", "allowClear", "filter-option"])];
|
|
2773
2778
|
}),
|
|
2774
2779
|
_: 1
|
|
@@ -2844,7 +2849,7 @@ var script$f = /*#__PURE__*/vue.defineComponent({
|
|
|
2844
2849
|
return function (_ctx, _cache) {
|
|
2845
2850
|
var _component_a_select = vue.resolveComponent("a-select");
|
|
2846
2851
|
|
|
2847
|
-
return vue.openBlock(), vue.createBlock(_component_a_select, {
|
|
2852
|
+
return vue.openBlock(), vue.createBlock(_component_a_select, vue.mergeProps(_ctx.$attrs, {
|
|
2848
2853
|
value: vue.unref(inputV),
|
|
2849
2854
|
"onUpdate:value": _cache[0] || (_cache[0] = function ($event) {
|
|
2850
2855
|
return vue.isRef(inputV) ? inputV.value = $event : null;
|
|
@@ -2852,7 +2857,7 @@ var script$f = /*#__PURE__*/vue.defineComponent({
|
|
|
2852
2857
|
getPopupContainer: function getPopupContainer(triggerNode) {
|
|
2853
2858
|
return triggerNode.parentNode;
|
|
2854
2859
|
},
|
|
2855
|
-
style:
|
|
2860
|
+
style: __props.inputStyle,
|
|
2856
2861
|
bordered: false,
|
|
2857
2862
|
options: dataV.value,
|
|
2858
2863
|
fieldNames: __props.fieldNames,
|
|
@@ -2860,8 +2865,8 @@ var script$f = /*#__PURE__*/vue.defineComponent({
|
|
|
2860
2865
|
onChange: _cache[1] || (_cache[1] = function ($event) {
|
|
2861
2866
|
return _ctx.$emit('change', $event);
|
|
2862
2867
|
})
|
|
2863
|
-
}, null,
|
|
2864
|
-
/*
|
|
2868
|
+
}), null, 16
|
|
2869
|
+
/* FULL_PROPS */
|
|
2865
2870
|
, ["value", "getPopupContainer", "style", "options", "fieldNames", "filter-option"]);
|
|
2866
2871
|
};
|
|
2867
2872
|
}
|
|
@@ -2985,7 +2990,7 @@ var script$e = /*#__PURE__*/vue.defineComponent({
|
|
|
2985
2990
|
return function (_ctx, _cache) {
|
|
2986
2991
|
var _component_a_select = vue.resolveComponent("a-select");
|
|
2987
2992
|
|
|
2988
|
-
return vue.openBlock(), vue.createBlock(_component_a_select, {
|
|
2993
|
+
return vue.openBlock(), vue.createBlock(_component_a_select, vue.mergeProps(_ctx.$attrs, {
|
|
2989
2994
|
value: vue.unref(inputV),
|
|
2990
2995
|
"onUpdate:value": _cache[0] || (_cache[0] = function ($event) {
|
|
2991
2996
|
return vue.isRef(inputV) ? inputV.value = $event : null;
|
|
@@ -2993,7 +2998,7 @@ var script$e = /*#__PURE__*/vue.defineComponent({
|
|
|
2993
2998
|
getPopupContainer: function getPopupContainer(triggerNode) {
|
|
2994
2999
|
return triggerNode.parentNode;
|
|
2995
3000
|
},
|
|
2996
|
-
style:
|
|
3001
|
+
style: __props.inputStyle,
|
|
2997
3002
|
bordered: false,
|
|
2998
3003
|
options: dataV.value,
|
|
2999
3004
|
fieldNames: __props.fieldNames,
|
|
@@ -3001,8 +3006,8 @@ var script$e = /*#__PURE__*/vue.defineComponent({
|
|
|
3001
3006
|
onChange: _cache[1] || (_cache[1] = function ($event) {
|
|
3002
3007
|
return _ctx.$emit('change', $event);
|
|
3003
3008
|
})
|
|
3004
|
-
}, null,
|
|
3005
|
-
/*
|
|
3009
|
+
}), null, 16
|
|
3010
|
+
/* FULL_PROPS */
|
|
3006
3011
|
, ["value", "getPopupContainer", "style", "options", "fieldNames", "filter-option"]);
|
|
3007
3012
|
};
|
|
3008
3013
|
}
|
|
@@ -3193,7 +3198,7 @@ var script$d = /*#__PURE__*/vue.defineComponent({
|
|
|
3193
3198
|
)) : vue.createCommentVNode("v-if", true)];
|
|
3194
3199
|
}),
|
|
3195
3200
|
"default": vue.withCtx(function () {
|
|
3196
|
-
return [vue.createVNode(_component_a_tree_select, {
|
|
3201
|
+
return [vue.createVNode(_component_a_tree_select, vue.mergeProps(_ctx.$attrs, {
|
|
3197
3202
|
value: vue.unref(inputV),
|
|
3198
3203
|
"onUpdate:value": _cache[0] || (_cache[0] = function ($event) {
|
|
3199
3204
|
return vue.isRef(inputV) ? inputV.value = $event : null;
|
|
@@ -3213,13 +3218,13 @@ var script$d = /*#__PURE__*/vue.defineComponent({
|
|
|
3213
3218
|
"filter-option": vue.unref(filterOptionHeadle),
|
|
3214
3219
|
multiple: __props.multiple,
|
|
3215
3220
|
treeDefaultExpandAll: "",
|
|
3216
|
-
style:
|
|
3221
|
+
style: __props.inputStyle,
|
|
3217
3222
|
onChange: _cache[1] || (_cache[1] = function ($event) {
|
|
3218
3223
|
return _ctx.$emit('change', $event);
|
|
3219
3224
|
}),
|
|
3220
3225
|
replaceFields: __props.replaceFields
|
|
3221
|
-
}, null,
|
|
3222
|
-
/*
|
|
3226
|
+
}), null, 16
|
|
3227
|
+
/* FULL_PROPS */
|
|
3223
3228
|
, ["value", "tree-data", "getPopupContainer", "placeholder", "allowClear", "filter-option", "multiple", "style", "replaceFields"])];
|
|
3224
3229
|
}),
|
|
3225
3230
|
_: 1
|
|
@@ -3418,7 +3423,7 @@ var script$c = /*#__PURE__*/vue.defineComponent({
|
|
|
3418
3423
|
)) : vue.createCommentVNode("v-if", true)];
|
|
3419
3424
|
}),
|
|
3420
3425
|
"default": vue.withCtx(function () {
|
|
3421
|
-
return [vue.createVNode(_component_a_select, {
|
|
3426
|
+
return [vue.createVNode(_component_a_select, vue.mergeProps(_ctx.$attrs, {
|
|
3422
3427
|
getPopupContainer: function getPopupContainer(triggerNode) {
|
|
3423
3428
|
return triggerNode.parentNode;
|
|
3424
3429
|
},
|
|
@@ -3426,7 +3431,7 @@ var script$c = /*#__PURE__*/vue.defineComponent({
|
|
|
3426
3431
|
"onUpdate:value": _cache[0] || (_cache[0] = function ($event) {
|
|
3427
3432
|
return vue.isRef(inputV) ? inputV.value = $event : null;
|
|
3428
3433
|
}),
|
|
3429
|
-
style:
|
|
3434
|
+
style: __props.inputStyle,
|
|
3430
3435
|
placeholder: __props.placeholder,
|
|
3431
3436
|
options: dataV.value,
|
|
3432
3437
|
mode: __props.multiple ? 'multiple' : '',
|
|
@@ -3437,8 +3442,8 @@ var script$c = /*#__PURE__*/vue.defineComponent({
|
|
|
3437
3442
|
return _ctx.$emit('change', $event);
|
|
3438
3443
|
}),
|
|
3439
3444
|
"filter-option": vue.unref(filterOptionHeadle)
|
|
3440
|
-
}, null,
|
|
3441
|
-
/*
|
|
3445
|
+
}), null, 16
|
|
3446
|
+
/* FULL_PROPS */
|
|
3442
3447
|
, ["getPopupContainer", "value", "style", "placeholder", "options", "mode", "fieldNames", "allowClear", "filter-option"])];
|
|
3443
3448
|
}),
|
|
3444
3449
|
_: 1
|
|
@@ -3641,7 +3646,7 @@ var script$b = /*#__PURE__*/vue.defineComponent({
|
|
|
3641
3646
|
)) : vue.createCommentVNode("v-if", true)];
|
|
3642
3647
|
}),
|
|
3643
3648
|
"default": vue.withCtx(function () {
|
|
3644
|
-
return [vue.createVNode(_component_a_select, {
|
|
3649
|
+
return [vue.createVNode(_component_a_select, vue.mergeProps(_ctx.$attrs, {
|
|
3645
3650
|
getPopupContainer: function getPopupContainer(triggerNode) {
|
|
3646
3651
|
return triggerNode.parentNode;
|
|
3647
3652
|
},
|
|
@@ -3649,7 +3654,7 @@ var script$b = /*#__PURE__*/vue.defineComponent({
|
|
|
3649
3654
|
"onUpdate:value": _cache[0] || (_cache[0] = function ($event) {
|
|
3650
3655
|
return vue.isRef(inputV) ? inputV.value = $event : null;
|
|
3651
3656
|
}),
|
|
3652
|
-
style:
|
|
3657
|
+
style: __props.inputStyle,
|
|
3653
3658
|
placeholder: __props.placeholder,
|
|
3654
3659
|
options: dataV.value,
|
|
3655
3660
|
mode: __props.multiple ? 'multiple' : '',
|
|
@@ -3660,8 +3665,8 @@ var script$b = /*#__PURE__*/vue.defineComponent({
|
|
|
3660
3665
|
return _ctx.$emit('change', $event);
|
|
3661
3666
|
}),
|
|
3662
3667
|
"filter-option": vue.unref(filterOptionHeadle)
|
|
3663
|
-
}, null,
|
|
3664
|
-
/*
|
|
3668
|
+
}), null, 16
|
|
3669
|
+
/* FULL_PROPS */
|
|
3665
3670
|
, ["getPopupContainer", "value", "style", "placeholder", "options", "mode", "fieldNames", "allowClear", "filter-option"]), _hoisted_2$7];
|
|
3666
3671
|
}),
|
|
3667
3672
|
_: 1
|
|
@@ -3860,7 +3865,7 @@ var script$a = /*#__PURE__*/vue.defineComponent({
|
|
|
3860
3865
|
)) : vue.createCommentVNode("v-if", true)];
|
|
3861
3866
|
}),
|
|
3862
3867
|
"default": vue.withCtx(function () {
|
|
3863
|
-
return [vue.createVNode(_component_a_select, {
|
|
3868
|
+
return [vue.createVNode(_component_a_select, vue.mergeProps(_ctx.$attrs, {
|
|
3864
3869
|
getPopupContainer: function getPopupContainer(triggerNode) {
|
|
3865
3870
|
return triggerNode.parentNode;
|
|
3866
3871
|
},
|
|
@@ -3868,7 +3873,7 @@ var script$a = /*#__PURE__*/vue.defineComponent({
|
|
|
3868
3873
|
"onUpdate:value": _cache[0] || (_cache[0] = function ($event) {
|
|
3869
3874
|
return vue.isRef(inputV) ? inputV.value = $event : null;
|
|
3870
3875
|
}),
|
|
3871
|
-
style:
|
|
3876
|
+
style: __props.inputStyle,
|
|
3872
3877
|
placeholder: __props.placeholder,
|
|
3873
3878
|
options: dataV.value,
|
|
3874
3879
|
mode: __props.multiple ? 'multiple' : '',
|
|
@@ -3879,8 +3884,8 @@ var script$a = /*#__PURE__*/vue.defineComponent({
|
|
|
3879
3884
|
return _ctx.$emit('change', $event);
|
|
3880
3885
|
}),
|
|
3881
3886
|
"filter-option": vue.unref(filterOptionHeadle)
|
|
3882
|
-
}, null,
|
|
3883
|
-
/*
|
|
3887
|
+
}), null, 16
|
|
3888
|
+
/* FULL_PROPS */
|
|
3884
3889
|
, ["getPopupContainer", "value", "style", "placeholder", "options", "mode", "fieldNames", "allowClear", "filter-option"])];
|
|
3885
3890
|
}),
|
|
3886
3891
|
_: 1
|
|
@@ -4079,7 +4084,7 @@ var script$9 = /*#__PURE__*/vue.defineComponent({
|
|
|
4079
4084
|
)) : vue.createCommentVNode("v-if", true)];
|
|
4080
4085
|
}),
|
|
4081
4086
|
"default": vue.withCtx(function () {
|
|
4082
|
-
return [vue.createVNode(_component_a_select, {
|
|
4087
|
+
return [vue.createVNode(_component_a_select, vue.mergeProps(_ctx.$attrs, {
|
|
4083
4088
|
getPopupContainer: function getPopupContainer(triggerNode) {
|
|
4084
4089
|
return triggerNode.parentNode;
|
|
4085
4090
|
},
|
|
@@ -4087,7 +4092,7 @@ var script$9 = /*#__PURE__*/vue.defineComponent({
|
|
|
4087
4092
|
"onUpdate:value": _cache[0] || (_cache[0] = function ($event) {
|
|
4088
4093
|
return vue.isRef(inputV) ? inputV.value = $event : null;
|
|
4089
4094
|
}),
|
|
4090
|
-
style:
|
|
4095
|
+
style: __props.inputStyle,
|
|
4091
4096
|
placeholder: __props.placeholder,
|
|
4092
4097
|
options: dataV.value,
|
|
4093
4098
|
mode: __props.multiple ? 'multiple' : '',
|
|
@@ -4098,8 +4103,8 @@ var script$9 = /*#__PURE__*/vue.defineComponent({
|
|
|
4098
4103
|
return _ctx.$emit('change', $event);
|
|
4099
4104
|
}),
|
|
4100
4105
|
"filter-option": vue.unref(filterOptionHeadle)
|
|
4101
|
-
}, null,
|
|
4102
|
-
/*
|
|
4106
|
+
}), null, 16
|
|
4107
|
+
/* FULL_PROPS */
|
|
4103
4108
|
, ["getPopupContainer", "value", "style", "placeholder", "options", "mode", "fieldNames", "allowClear", "filter-option"])];
|
|
4104
4109
|
}),
|
|
4105
4110
|
_: 1
|