unika-components 1.0.371 → 1.0.373
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/dist/src/components/UniCountdown/UniCountdown.vue.d.ts +41 -2
- package/dist/src/components/UniMap/UniMap.vue.d.ts +11 -1
- package/dist/src/defaultProps.d.ts +8 -2
- package/dist/unika-components.css +882 -879
- package/dist/unika-components.esm.js +386 -222
- package/dist/unika-components.umd.js +386 -222
- package/package.json +1 -1
|
@@ -5,11 +5,19 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5
5
|
type: PropType<ElementData>;
|
|
6
6
|
required: true;
|
|
7
7
|
};
|
|
8
|
+
unit: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
8
12
|
}, {
|
|
9
13
|
days: import("vue").Ref<number>;
|
|
14
|
+
day: import("vue").ComputedRef<"Day" | "วัน" | "天">;
|
|
10
15
|
hours: import("vue").Ref<number>;
|
|
16
|
+
hour: import("vue").ComputedRef<"Hour" | "ชั่วโมง" | "小时">;
|
|
11
17
|
minutes: import("vue").Ref<number>;
|
|
18
|
+
minute: import("vue").ComputedRef<"Minute" | "นาที" | "分钟">;
|
|
12
19
|
seconds: import("vue").Ref<number>;
|
|
20
|
+
second: import("vue").ComputedRef<"Second" | "วินาที" | "秒">;
|
|
13
21
|
currentDaysLeft: import("vue").Ref<number>;
|
|
14
22
|
currentDaysRight: import("vue").Ref<number>;
|
|
15
23
|
nextDaysLeft: import("vue").Ref<number>;
|
|
@@ -26,17 +34,34 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
26
34
|
currentSecondsRight: import("vue").Ref<number>;
|
|
27
35
|
nextSecondsLeft: import("vue").Ref<number>;
|
|
28
36
|
nextSecondsRight: import("vue").Ref<number>;
|
|
37
|
+
formattedTime: import("vue").ComputedRef<string>;
|
|
29
38
|
containerStyle: import("vue").ComputedRef<{
|
|
30
39
|
left: string;
|
|
31
40
|
top: string;
|
|
32
41
|
width: string;
|
|
33
42
|
height: string;
|
|
34
43
|
transform: string;
|
|
35
|
-
|
|
44
|
+
opacity: number;
|
|
45
|
+
}>;
|
|
46
|
+
textContainerStyle: import("vue").ComputedRef<{
|
|
47
|
+
transform: string;
|
|
48
|
+
backgroundColor: string;
|
|
49
|
+
borderColor: string;
|
|
50
|
+
borderRadius: string;
|
|
51
|
+
borderStyle: string;
|
|
52
|
+
borderWidth: string;
|
|
53
|
+
}>;
|
|
54
|
+
textContentStyle: import("vue").ComputedRef<{
|
|
55
|
+
opacity: number;
|
|
56
|
+
fontSize: string;
|
|
57
|
+
color: string;
|
|
58
|
+
textAlign: string;
|
|
36
59
|
}>;
|
|
37
60
|
flipStyle: import("vue").ComputedRef<{
|
|
38
61
|
transform: string;
|
|
39
62
|
opacity: number;
|
|
63
|
+
flexDirection: string;
|
|
64
|
+
alignItems: string;
|
|
40
65
|
}>;
|
|
41
66
|
comStyle: import("vue").ComputedRef<{
|
|
42
67
|
borderColor: string;
|
|
@@ -44,18 +69,32 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
44
69
|
borderWidth: string;
|
|
45
70
|
borderRadius: string;
|
|
46
71
|
backgroundColor: string;
|
|
72
|
+
margin: string;
|
|
47
73
|
}>;
|
|
48
74
|
numStyle: import("vue").ComputedRef<{
|
|
49
75
|
color: string;
|
|
76
|
+
fontSize: string;
|
|
50
77
|
}>;
|
|
51
78
|
textStyle: import("vue").ComputedRef<{
|
|
52
79
|
color: string;
|
|
53
80
|
fontSize: string;
|
|
54
81
|
}>;
|
|
82
|
+
separatorStyle: import("vue").ComputedRef<{
|
|
83
|
+
color: string;
|
|
84
|
+
fontSize: string;
|
|
85
|
+
margin: string;
|
|
86
|
+
lineHeight: string;
|
|
87
|
+
}>;
|
|
55
88
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
56
89
|
element: {
|
|
57
90
|
type: PropType<ElementData>;
|
|
58
91
|
required: true;
|
|
59
92
|
};
|
|
60
|
-
|
|
93
|
+
unit: {
|
|
94
|
+
type: StringConstructor;
|
|
95
|
+
default: string;
|
|
96
|
+
};
|
|
97
|
+
}>>, {
|
|
98
|
+
unit: string;
|
|
99
|
+
}, {}>;
|
|
61
100
|
export default _default;
|
|
@@ -5,6 +5,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5
5
|
type: PropType<ElementData>;
|
|
6
6
|
required: true;
|
|
7
7
|
};
|
|
8
|
+
unit: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
8
12
|
}, {
|
|
9
13
|
handleNavigation: () => void;
|
|
10
14
|
iframeUrl: import("vue").ComputedRef<string>;
|
|
@@ -36,5 +40,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
36
40
|
type: PropType<ElementData>;
|
|
37
41
|
required: true;
|
|
38
42
|
};
|
|
39
|
-
|
|
43
|
+
unit: {
|
|
44
|
+
type: StringConstructor;
|
|
45
|
+
default: string;
|
|
46
|
+
};
|
|
47
|
+
}>>, {
|
|
48
|
+
unit: string;
|
|
49
|
+
}, {}>;
|
|
40
50
|
export default _default;
|
|
@@ -160,6 +160,14 @@ export interface ElementData {
|
|
|
160
160
|
succUrl?: string;
|
|
161
161
|
showSize?: string;
|
|
162
162
|
signType?: string;
|
|
163
|
+
mapStyle?: string;
|
|
164
|
+
iframeUrl?: string;
|
|
165
|
+
url?: string;
|
|
166
|
+
deadline?: string;
|
|
167
|
+
showType?: string;
|
|
168
|
+
direction?: string;
|
|
169
|
+
endText?: string;
|
|
170
|
+
endOption?: string;
|
|
163
171
|
css: {
|
|
164
172
|
fontFamily: string;
|
|
165
173
|
fontSize: number;
|
|
@@ -221,8 +229,6 @@ export interface ElementData {
|
|
|
221
229
|
src?: string;
|
|
222
230
|
realW?: number;
|
|
223
231
|
realH?: number;
|
|
224
|
-
iframeUrl?: string;
|
|
225
|
-
url?: string;
|
|
226
232
|
endTime?: string;
|
|
227
233
|
count?: string;
|
|
228
234
|
speed?: string;
|