@opentinyvue/vue-currency 3.21.0 → 3.22.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 +2 -2
- package/package.json +8 -8
- package/src/index.d.ts +1 -1
- package/src/mobile-first.vue.d.ts +3 -3
package/lib/index.js
CHANGED
|
@@ -7,7 +7,7 @@ function _extends() {
|
|
|
7
7
|
return n;
|
|
8
8
|
}, _extends.apply(null, arguments);
|
|
9
9
|
}
|
|
10
|
-
import { defineComponent, $
|
|
10
|
+
import { defineComponent, $props, $setup, $prefix } from "@opentinyvue/vue-common";
|
|
11
11
|
import PcTemplate from "./pc.js";
|
|
12
12
|
import MobileFirstTemplate from "./mobile-first.js";
|
|
13
13
|
import "@opentinyvue/vue-theme/currency/index.css";
|
|
@@ -88,7 +88,7 @@ var Currency = defineComponent({
|
|
|
88
88
|
});
|
|
89
89
|
}
|
|
90
90
|
});
|
|
91
|
-
var version = "3.
|
|
91
|
+
var version = "3.22.0";
|
|
92
92
|
Currency.model = {
|
|
93
93
|
prop: "modelValue",
|
|
94
94
|
event: "update:modelValue"
|
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-currency",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.22.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-common": "~3.
|
|
11
|
-
"@opentinyvue/vue-renderless": "~3.
|
|
12
|
-
"@opentinyvue/vue-select": "~3.
|
|
13
|
-
"@opentinyvue/vue-option": "~3.
|
|
14
|
-
"@opentinyvue/vue-theme": "~3.
|
|
15
|
-
"@opentinyvue/vue-select-mobile": "~3.
|
|
16
|
-
"@opentinyvue/vue-icon": "~3.
|
|
10
|
+
"@opentinyvue/vue-common": "~3.22.0",
|
|
11
|
+
"@opentinyvue/vue-renderless": "~3.22.0",
|
|
12
|
+
"@opentinyvue/vue-select": "~3.22.0",
|
|
13
|
+
"@opentinyvue/vue-option": "~3.22.0",
|
|
14
|
+
"@opentinyvue/vue-theme": "~3.22.0",
|
|
15
|
+
"@opentinyvue/vue-select-mobile": "~3.22.0",
|
|
16
|
+
"@opentinyvue/vue-icon": "~3.22.0"
|
|
17
17
|
},
|
|
18
18
|
"license": "MIT",
|
|
19
19
|
"types": "index.d.ts",
|
package/src/index.d.ts
CHANGED
|
@@ -121,9 +121,9 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
121
121
|
}>>, {
|
|
122
122
|
label: string;
|
|
123
123
|
disabled: boolean;
|
|
124
|
+
visible: boolean;
|
|
124
125
|
tiny_mode_root: boolean;
|
|
125
126
|
popperAppendToBody: boolean;
|
|
126
|
-
visible: boolean;
|
|
127
127
|
clearable: boolean;
|
|
128
128
|
currency: string;
|
|
129
129
|
placeholder: string;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
2
2
|
title?: any;
|
|
3
|
+
visible?: any;
|
|
3
4
|
mode?: any;
|
|
4
5
|
tiny_mode?: any;
|
|
5
6
|
tiny_mode_root?: any;
|
|
@@ -9,7 +10,6 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
9
10
|
tiny_theme?: any;
|
|
10
11
|
tiny_chart_theme?: any;
|
|
11
12
|
modelValue?: any;
|
|
12
|
-
visible?: any;
|
|
13
13
|
currency?: any;
|
|
14
14
|
fetchCurrency?: any;
|
|
15
15
|
fields?: any;
|
|
@@ -27,6 +27,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
27
27
|
m: (...cssClasses: any[]) => string;
|
|
28
28
|
}, any, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("visible-change" | "change" | "clear" | "update:modelValue" | "update:visible")[], "visible-change" | "change" | "clear" | "update:modelValue" | "update:visible", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<Readonly<{
|
|
29
29
|
title?: any;
|
|
30
|
+
visible?: any;
|
|
30
31
|
mode?: any;
|
|
31
32
|
tiny_mode?: any;
|
|
32
33
|
tiny_mode_root?: any;
|
|
@@ -36,7 +37,6 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
36
37
|
tiny_theme?: any;
|
|
37
38
|
tiny_chart_theme?: any;
|
|
38
39
|
modelValue?: any;
|
|
39
|
-
visible?: any;
|
|
40
40
|
currency?: any;
|
|
41
41
|
fetchCurrency?: any;
|
|
42
42
|
fields?: any;
|
|
@@ -51,6 +51,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
51
51
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
52
52
|
}, {
|
|
53
53
|
readonly title?: any;
|
|
54
|
+
readonly visible?: any;
|
|
54
55
|
readonly mode?: any;
|
|
55
56
|
readonly tiny_mode?: any;
|
|
56
57
|
readonly tiny_mode_root?: any;
|
|
@@ -60,7 +61,6 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
60
61
|
readonly tiny_theme?: any;
|
|
61
62
|
readonly tiny_chart_theme?: any;
|
|
62
63
|
readonly modelValue?: any;
|
|
63
|
-
readonly visible?: any;
|
|
64
64
|
readonly currency?: any;
|
|
65
65
|
readonly fetchCurrency?: any;
|
|
66
66
|
readonly fields?: any;
|