@opentinyvue/vue-layout 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 +4 -4
- package/src/index.d.ts +1 -1
- package/src/pc.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 "@opentinyvue/vue-theme/layout/index.css";
|
|
13
13
|
var template = function template2(mode) {
|
|
@@ -43,7 +43,7 @@ var Layout = defineComponent({
|
|
|
43
43
|
});
|
|
44
44
|
}
|
|
45
45
|
});
|
|
46
|
-
var version = "3.
|
|
46
|
+
var version = "3.22.0";
|
|
47
47
|
Layout.install = function(Vue) {
|
|
48
48
|
Vue.component(Layout.name, Layout);
|
|
49
49
|
};
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-layout",
|
|
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-theme": "~3.
|
|
10
|
+
"@opentinyvue/vue-common": "~3.22.0",
|
|
11
|
+
"@opentinyvue/vue-renderless": "~3.22.0",
|
|
12
|
+
"@opentinyvue/vue-theme": "~3.22.0"
|
|
13
13
|
},
|
|
14
14
|
"license": "MIT",
|
|
15
15
|
"types": "index.d.ts",
|
package/src/index.d.ts
CHANGED
|
@@ -33,8 +33,8 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
33
33
|
tiny_theme: StringConstructor;
|
|
34
34
|
tiny_chart_theme: ObjectConstructor;
|
|
35
35
|
}>>, {
|
|
36
|
-
tiny_mode_root: boolean;
|
|
37
36
|
tag: string;
|
|
37
|
+
tiny_mode_root: boolean;
|
|
38
38
|
cols: number;
|
|
39
39
|
}, {}>;
|
|
40
40
|
export default _default;
|
package/src/pc.vue.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
2
|
+
tag?: any;
|
|
2
3
|
tiny_mode?: any;
|
|
3
4
|
tiny_mode_root?: any;
|
|
4
5
|
tiny_template?: any;
|
|
@@ -6,7 +7,6 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
6
7
|
_constants?: any;
|
|
7
8
|
tiny_theme?: any;
|
|
8
9
|
tiny_chart_theme?: any;
|
|
9
|
-
tag?: any;
|
|
10
10
|
}>, {
|
|
11
11
|
t: (this: any, path: any, options?: any) => any;
|
|
12
12
|
vm: any;
|
|
@@ -17,6 +17,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
17
17
|
gcls: (key: any) => any;
|
|
18
18
|
m: (...cssClasses: any[]) => string;
|
|
19
19
|
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<Readonly<{
|
|
20
|
+
tag?: any;
|
|
20
21
|
tiny_mode?: any;
|
|
21
22
|
tiny_mode_root?: any;
|
|
22
23
|
tiny_template?: any;
|
|
@@ -24,8 +25,8 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
24
25
|
_constants?: any;
|
|
25
26
|
tiny_theme?: any;
|
|
26
27
|
tiny_chart_theme?: any;
|
|
27
|
-
tag?: any;
|
|
28
28
|
}>>>, {
|
|
29
|
+
readonly tag?: any;
|
|
29
30
|
readonly tiny_mode?: any;
|
|
30
31
|
readonly tiny_mode_root?: any;
|
|
31
32
|
readonly tiny_template?: any;
|
|
@@ -33,6 +34,5 @@ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
|
33
34
|
readonly _constants?: any;
|
|
34
35
|
readonly tiny_theme?: any;
|
|
35
36
|
readonly tiny_chart_theme?: any;
|
|
36
|
-
readonly tag?: any;
|
|
37
37
|
}, {}>;
|
|
38
38
|
export default _default;
|