unika-components 1.0.372 → 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.
@@ -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
- position: string;
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;
@@ -163,6 +163,11 @@ export interface ElementData {
163
163
  mapStyle?: string;
164
164
  iframeUrl?: string;
165
165
  url?: string;
166
+ deadline?: string;
167
+ showType?: string;
168
+ direction?: string;
169
+ endText?: string;
170
+ endOption?: string;
166
171
  css: {
167
172
  fontFamily: string;
168
173
  fontSize: number;