@opentinyvue/vue-ip-address 3.21.0 → 3.22.1
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 +5 -5
- package/src/pc.vue.d.ts +5 -5
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 "@opentinyvue/vue-theme/ip-address/index.css";
|
|
13
13
|
var template = function template2(mode) {
|
|
@@ -58,7 +58,7 @@ var IpAddress = defineComponent({
|
|
|
58
58
|
});
|
|
59
59
|
}
|
|
60
60
|
});
|
|
61
|
-
var version = "3.
|
|
61
|
+
var version = "3.undefined";
|
|
62
62
|
IpAddress.model = {
|
|
63
63
|
prop: "modelValue",
|
|
64
64
|
event: "update:modelValue"
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-ip-address",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.22.1",
|
|
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-icon": "~3.
|
|
12
|
-
"@opentinyvue/vue-renderless": "~3.
|
|
13
|
-
"@opentinyvue/vue-theme": "~3.
|
|
10
|
+
"@opentinyvue/vue-common": "~3.22.0",
|
|
11
|
+
"@opentinyvue/vue-icon": "~3.22.0",
|
|
12
|
+
"@opentinyvue/vue-renderless": "~3.22.0",
|
|
13
|
+
"@opentinyvue/vue-theme": "~3.22.0"
|
|
14
14
|
},
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"types": "index.d.ts",
|
package/src/pc.vue.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
2
2
|
disabled?: any;
|
|
3
|
-
type?: any;
|
|
4
3
|
size?: any;
|
|
4
|
+
type?: any;
|
|
5
5
|
tiny_mode?: any;
|
|
6
6
|
tiny_mode_root?: any;
|
|
7
7
|
tiny_template?: any;
|
|
@@ -21,10 +21,10 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
21
21
|
dp: (props: any) => void;
|
|
22
22
|
gcls: (key: any) => any;
|
|
23
23
|
m: (...cssClasses: any[]) => string;
|
|
24
|
-
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("input" | "select" | "
|
|
24
|
+
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("input" | "select" | "change" | "blur" | "focus" | "update:modelValue")[], "input" | "select" | "change" | "blur" | "focus" | "update:modelValue", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<Readonly<{
|
|
25
25
|
disabled?: any;
|
|
26
|
-
type?: any;
|
|
27
26
|
size?: any;
|
|
27
|
+
type?: any;
|
|
28
28
|
tiny_mode?: any;
|
|
29
29
|
tiny_mode_root?: any;
|
|
30
30
|
tiny_template?: any;
|
|
@@ -38,14 +38,14 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
38
38
|
}>>> & {
|
|
39
39
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
40
40
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
41
|
-
onBlur?: ((...args: any[]) => any) | undefined;
|
|
42
41
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
42
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
43
43
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
44
44
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
45
45
|
}, {
|
|
46
46
|
readonly disabled?: any;
|
|
47
|
-
readonly type?: any;
|
|
48
47
|
readonly size?: any;
|
|
48
|
+
readonly type?: any;
|
|
49
49
|
readonly tiny_mode?: any;
|
|
50
50
|
readonly tiny_mode_root?: any;
|
|
51
51
|
readonly tiny_template?: any;
|