@opentiny/vue-divider 3.11.0 → 3.13.0-alpha.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 +3 -1
- package/package.json +3 -3
- package/__test__/divider.test.d.ts +0 -1
- package/index.d.ts +0 -2
- package/src/index.d.ts +0 -87
- package/src/pc.vue.d.ts +0 -53
package/lib/index.js
CHANGED
|
@@ -16,6 +16,8 @@ import { defineComponent, $prefix, $props, $setup } from "@opentiny/vue-common";
|
|
|
16
16
|
import PcTemplate from "./pc.js";
|
|
17
17
|
import "@opentiny/vue-theme/divider/index.css";
|
|
18
18
|
var template = function template2(mode) {
|
|
19
|
+
var _process$env;
|
|
20
|
+
typeof process === "object" ? (_process$env = process.env) == null ? void 0 : _process$env.TINY_MODE : null;
|
|
19
21
|
return PcTemplate;
|
|
20
22
|
};
|
|
21
23
|
var $constants = {};
|
|
@@ -61,7 +63,7 @@ var Divider = defineComponent({
|
|
|
61
63
|
});
|
|
62
64
|
}
|
|
63
65
|
});
|
|
64
|
-
var version = "3.
|
|
66
|
+
var version = "3.13.0-alpha.0";
|
|
65
67
|
Divider.install = function(Vue) {
|
|
66
68
|
Vue.component(Divider.name, Divider);
|
|
67
69
|
};
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentiny/vue-divider",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.13.0-alpha.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
|
-
"@opentiny/vue-common": "~3.
|
|
11
|
-
"@opentiny/vue-renderless": "~3.
|
|
10
|
+
"@opentiny/vue-common": "~3.13.0-alpha.0",
|
|
11
|
+
"@opentiny/vue-renderless": "~3.13.0-alpha.0"
|
|
12
12
|
},
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"types": "index.d.ts"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/index.d.ts
DELETED
package/src/index.d.ts
DELETED
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
import type { PropType } from '@opentiny/vue-common';
|
|
2
|
-
export type DirectionType = 'horizontal' | 'vertical';
|
|
3
|
-
export type BorderStyleType = 'dashed' | 'solid';
|
|
4
|
-
export type ContentPositionType = 'left' | 'right' | 'center';
|
|
5
|
-
declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
6
|
-
_constants: {
|
|
7
|
-
type: ObjectConstructor;
|
|
8
|
-
default: () => {};
|
|
9
|
-
};
|
|
10
|
-
direction: {
|
|
11
|
-
type: PropType<DirectionType>;
|
|
12
|
-
default: string;
|
|
13
|
-
};
|
|
14
|
-
color: {
|
|
15
|
-
type: StringConstructor;
|
|
16
|
-
default: string;
|
|
17
|
-
};
|
|
18
|
-
borderStyle: {
|
|
19
|
-
type: PropType<BorderStyleType>;
|
|
20
|
-
default: string;
|
|
21
|
-
};
|
|
22
|
-
contentPosition: {
|
|
23
|
-
type: PropType<ContentPositionType>;
|
|
24
|
-
default: string;
|
|
25
|
-
};
|
|
26
|
-
contentColor: {
|
|
27
|
-
type: StringConstructor;
|
|
28
|
-
default: string;
|
|
29
|
-
};
|
|
30
|
-
contentBackgroundColor: {
|
|
31
|
-
type: StringConstructor;
|
|
32
|
-
default: string;
|
|
33
|
-
};
|
|
34
|
-
tiny_mode: StringConstructor;
|
|
35
|
-
tiny_mode_root: BooleanConstructor;
|
|
36
|
-
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
37
|
-
tiny_renderless: FunctionConstructor;
|
|
38
|
-
tiny_theme: StringConstructor;
|
|
39
|
-
tiny_chart_theme: ObjectConstructor;
|
|
40
|
-
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
41
|
-
[key: string]: any;
|
|
42
|
-
}>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
43
|
-
_constants: {
|
|
44
|
-
type: ObjectConstructor;
|
|
45
|
-
default: () => {};
|
|
46
|
-
};
|
|
47
|
-
direction: {
|
|
48
|
-
type: PropType<DirectionType>;
|
|
49
|
-
default: string;
|
|
50
|
-
};
|
|
51
|
-
color: {
|
|
52
|
-
type: StringConstructor;
|
|
53
|
-
default: string;
|
|
54
|
-
};
|
|
55
|
-
borderStyle: {
|
|
56
|
-
type: PropType<BorderStyleType>;
|
|
57
|
-
default: string;
|
|
58
|
-
};
|
|
59
|
-
contentPosition: {
|
|
60
|
-
type: PropType<ContentPositionType>;
|
|
61
|
-
default: string;
|
|
62
|
-
};
|
|
63
|
-
contentColor: {
|
|
64
|
-
type: StringConstructor;
|
|
65
|
-
default: string;
|
|
66
|
-
};
|
|
67
|
-
contentBackgroundColor: {
|
|
68
|
-
type: StringConstructor;
|
|
69
|
-
default: string;
|
|
70
|
-
};
|
|
71
|
-
tiny_mode: StringConstructor;
|
|
72
|
-
tiny_mode_root: BooleanConstructor;
|
|
73
|
-
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
74
|
-
tiny_renderless: FunctionConstructor;
|
|
75
|
-
tiny_theme: StringConstructor;
|
|
76
|
-
tiny_chart_theme: ObjectConstructor;
|
|
77
|
-
}>>, {
|
|
78
|
-
color: string;
|
|
79
|
-
tiny_mode_root: boolean;
|
|
80
|
-
_constants: Record<string, any>;
|
|
81
|
-
direction: DirectionType;
|
|
82
|
-
contentPosition: ContentPositionType;
|
|
83
|
-
borderStyle: BorderStyleType;
|
|
84
|
-
contentColor: string;
|
|
85
|
-
contentBackgroundColor: string;
|
|
86
|
-
}, {}>;
|
|
87
|
-
export default _default;
|
package/src/pc.vue.d.ts
DELETED
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
2
|
-
color?: any;
|
|
3
|
-
tiny_mode?: any;
|
|
4
|
-
tiny_mode_root?: any;
|
|
5
|
-
tiny_template?: any;
|
|
6
|
-
tiny_renderless?: any;
|
|
7
|
-
_constants?: any;
|
|
8
|
-
tiny_theme?: any;
|
|
9
|
-
tiny_chart_theme?: any;
|
|
10
|
-
direction?: any;
|
|
11
|
-
contentPosition?: any;
|
|
12
|
-
borderStyle?: any;
|
|
13
|
-
contentColor?: any;
|
|
14
|
-
contentBackgroundColor?: any;
|
|
15
|
-
}>, {
|
|
16
|
-
t: (this: any, path: any, options?: any) => any;
|
|
17
|
-
vm: any;
|
|
18
|
-
f: (props: any, attrs?: {}) => {};
|
|
19
|
-
a: (attrs: any, filters: any, include: any) => {};
|
|
20
|
-
d: (props: any) => void;
|
|
21
|
-
dp: (props: any) => void;
|
|
22
|
-
gcls: (key: any) => any;
|
|
23
|
-
m: (...cssClasses: any[]) => string;
|
|
24
|
-
}, any, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<Readonly<{
|
|
25
|
-
color?: any;
|
|
26
|
-
tiny_mode?: any;
|
|
27
|
-
tiny_mode_root?: any;
|
|
28
|
-
tiny_template?: any;
|
|
29
|
-
tiny_renderless?: any;
|
|
30
|
-
_constants?: any;
|
|
31
|
-
tiny_theme?: any;
|
|
32
|
-
tiny_chart_theme?: any;
|
|
33
|
-
direction?: any;
|
|
34
|
-
contentPosition?: any;
|
|
35
|
-
borderStyle?: any;
|
|
36
|
-
contentColor?: any;
|
|
37
|
-
contentBackgroundColor?: any;
|
|
38
|
-
}>>>, {
|
|
39
|
-
readonly color?: any;
|
|
40
|
-
readonly tiny_mode?: any;
|
|
41
|
-
readonly tiny_mode_root?: any;
|
|
42
|
-
readonly tiny_template?: any;
|
|
43
|
-
readonly tiny_renderless?: any;
|
|
44
|
-
readonly _constants?: any;
|
|
45
|
-
readonly tiny_theme?: any;
|
|
46
|
-
readonly tiny_chart_theme?: any;
|
|
47
|
-
readonly direction?: any;
|
|
48
|
-
readonly contentPosition?: any;
|
|
49
|
-
readonly borderStyle?: any;
|
|
50
|
-
readonly contentColor?: any;
|
|
51
|
-
readonly contentBackgroundColor?: any;
|
|
52
|
-
}, {}>;
|
|
53
|
-
export default _default;
|