@opentinyvue/vue-filter-panel 3.28.0 → 3.29.0
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/lib/index.js +7 -2
- package/package.json +6 -6
- package/src/pc.vue.d.ts +9 -0
package/lib/index.js
CHANGED
|
@@ -81,6 +81,10 @@ var _sfc_main = defineComponent({
|
|
|
81
81
|
blank: {
|
|
82
82
|
type: Boolean,
|
|
83
83
|
default: false
|
|
84
|
+
},
|
|
85
|
+
size: {
|
|
86
|
+
type: String,
|
|
87
|
+
default: ""
|
|
84
88
|
}
|
|
85
89
|
}),
|
|
86
90
|
setup: function setup$1(props, context) {
|
|
@@ -124,8 +128,9 @@ function _sfc_render(_ctx, _cache, $props2, $setup, $data, $options) {
|
|
|
124
128
|
tip: _ctx.tip,
|
|
125
129
|
value: _ctx.value,
|
|
126
130
|
"drop-down-visible": _ctx.state.visible,
|
|
127
|
-
blank: _ctx.blank
|
|
128
|
-
|
|
131
|
+
blank: _ctx.blank,
|
|
132
|
+
size: _ctx.size
|
|
133
|
+
}, null, 8, ["onClick", "onHandleClear", "show-close", "disabled", "label", "tip", "value", "drop-down-visible", "blank", "size"])])];
|
|
129
134
|
}),
|
|
130
135
|
default: withCtx(function() {
|
|
131
136
|
return [createElementVNode("div", null, [renderSlot(_ctx.$slots, "default")])];
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-filter-panel",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.29.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"module": "./lib/index.js",
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"type": "module",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@opentinyvue/vue-renderless": "~3.
|
|
11
|
-
"@opentinyvue/vue-common": "~3.
|
|
12
|
-
"@opentinyvue/vue-filter-box": "~3.
|
|
13
|
-
"@opentinyvue/vue-popover": "~3.
|
|
14
|
-
"@opentinyvue/vue-theme": "~3.
|
|
10
|
+
"@opentinyvue/vue-renderless": "~3.29.0",
|
|
11
|
+
"@opentinyvue/vue-common": "~3.29.0",
|
|
12
|
+
"@opentinyvue/vue-filter-box": "~3.29.0",
|
|
13
|
+
"@opentinyvue/vue-popover": "~3.29.0",
|
|
14
|
+
"@opentinyvue/vue-theme": "~3.29.0"
|
|
15
15
|
},
|
|
16
16
|
"license": "MIT",
|
|
17
17
|
"types": "index.d.ts"
|
package/src/pc.vue.d.ts
CHANGED
|
@@ -26,6 +26,10 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
26
26
|
type: BooleanConstructor;
|
|
27
27
|
default: boolean;
|
|
28
28
|
};
|
|
29
|
+
size: {
|
|
30
|
+
type: StringConstructor;
|
|
31
|
+
default: string;
|
|
32
|
+
};
|
|
29
33
|
tiny_mode: StringConstructor;
|
|
30
34
|
tiny_mode_root: BooleanConstructor;
|
|
31
35
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
@@ -70,6 +74,10 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
70
74
|
type: BooleanConstructor;
|
|
71
75
|
default: boolean;
|
|
72
76
|
};
|
|
77
|
+
size: {
|
|
78
|
+
type: StringConstructor;
|
|
79
|
+
default: string;
|
|
80
|
+
};
|
|
73
81
|
tiny_mode: StringConstructor;
|
|
74
82
|
tiny_mode_root: BooleanConstructor;
|
|
75
83
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
@@ -82,6 +90,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
82
90
|
"onHandle-clear"?: ((...args: any[]) => any) | undefined;
|
|
83
91
|
}, {
|
|
84
92
|
disabled: boolean;
|
|
93
|
+
size: string;
|
|
85
94
|
placement: string;
|
|
86
95
|
tiny_mode_root: boolean;
|
|
87
96
|
popperClass: string;
|