unika-components 1.0.286 → 1.0.287
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.
|
@@ -273,6 +273,7 @@ export declare const countdownDefaultProps: {
|
|
|
273
273
|
size: string;
|
|
274
274
|
flipAnimation: boolean;
|
|
275
275
|
deadline: string;
|
|
276
|
+
transform: string;
|
|
276
277
|
display: string;
|
|
277
278
|
alignItems: string;
|
|
278
279
|
justifyContent: string;
|
|
@@ -603,6 +604,7 @@ export declare const componentsDefaultProps: {
|
|
|
603
604
|
size: string;
|
|
604
605
|
flipAnimation: boolean;
|
|
605
606
|
deadline: string;
|
|
607
|
+
transform: string;
|
|
606
608
|
display: string;
|
|
607
609
|
alignItems: string;
|
|
608
610
|
justifyContent: string;
|
|
@@ -18,6 +18,27 @@ button.uni-text-component {
|
|
|
18
18
|
box-sizing: border-box;
|
|
19
19
|
white-space: pre-wrap;
|
|
20
20
|
}
|
|
21
|
+
|
|
22
|
+
.uni-video-component {
|
|
23
|
+
position: relative;
|
|
24
|
+
text-align: center;
|
|
25
|
+
}
|
|
26
|
+
.play-pause-button {
|
|
27
|
+
position: absolute;
|
|
28
|
+
top: 50%;
|
|
29
|
+
left: 50%;
|
|
30
|
+
transform: translate(-50%, -50%);
|
|
31
|
+
cursor: pointer;
|
|
32
|
+
font-size: 2rem;
|
|
33
|
+
color: #fff;
|
|
34
|
+
background: rgba(0, 0, 0, 0.6);
|
|
35
|
+
border-radius: 50%;
|
|
36
|
+
padding: 10px;
|
|
37
|
+
transition: background 0.3s;
|
|
38
|
+
}
|
|
39
|
+
.play-pause-button:hover {
|
|
40
|
+
background: rgba(0, 0, 0, 0.8);
|
|
41
|
+
}
|
|
21
42
|
|
|
22
43
|
.slide-guide {
|
|
23
44
|
position: absolute;
|
|
@@ -103,26 +124,10 @@ body, html {
|
|
|
103
124
|
position: static !important;
|
|
104
125
|
}
|
|
105
126
|
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
.play-pause-button {
|
|
111
|
-
position: absolute;
|
|
112
|
-
top: 50%;
|
|
113
|
-
left: 50%;
|
|
114
|
-
transform: translate(-50%, -50%);
|
|
115
|
-
cursor: pointer;
|
|
116
|
-
font-size: 2rem;
|
|
117
|
-
color: #fff;
|
|
118
|
-
background: rgba(0, 0, 0, 0.6);
|
|
119
|
-
border-radius: 50%;
|
|
120
|
-
padding: 10px;
|
|
121
|
-
transition: background 0.3s;
|
|
122
|
-
}
|
|
123
|
-
.play-pause-button:hover {
|
|
124
|
-
background: rgba(0, 0, 0, 0.8);
|
|
125
|
-
}
|
|
127
|
+
.uni-lotties-component {
|
|
128
|
+
width: 100%;
|
|
129
|
+
height: 100%;
|
|
130
|
+
}
|
|
126
131
|
|
|
127
132
|
.like-button {
|
|
128
133
|
display: flex;
|
|
@@ -146,6 +151,18 @@ body, html {
|
|
|
146
151
|
color: #333;
|
|
147
152
|
}
|
|
148
153
|
|
|
154
|
+
|
|
155
|
+
.uni-calendar-component {
|
|
156
|
+
|
|
157
|
+
}
|
|
158
|
+
.slot-number {
|
|
159
|
+
position: absolute;
|
|
160
|
+
bottom: 2px;
|
|
161
|
+
left: 7px;
|
|
162
|
+
font-size: 12px;
|
|
163
|
+
color: #666
|
|
164
|
+
}
|
|
165
|
+
|
|
149
166
|
.effect {
|
|
150
167
|
width: 100%;
|
|
151
168
|
height: 100%;
|
|
@@ -199,30 +216,13 @@ body, html {
|
|
|
199
216
|
margin-bottom: 0px;
|
|
200
217
|
vertical-align: top;
|
|
201
218
|
}
|
|
202
|
-
|
|
203
|
-
.uni-lotties-component {
|
|
204
|
-
width: 100%;
|
|
205
|
-
height: 100%;
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
.uni-build-up-component {
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
.uni-calendar-component {
|
|
213
|
-
|
|
214
|
-
}
|
|
215
|
-
.slot-number {
|
|
216
|
-
position: absolute;
|
|
217
|
-
bottom: 2px;
|
|
218
|
-
left: 7px;
|
|
219
|
-
font-size: 12px;
|
|
220
|
-
color: #666
|
|
221
|
-
}
|
|
222
219
|
|
|
223
220
|
.uni-svg-component {
|
|
224
221
|
display: inline-block;
|
|
225
222
|
}
|
|
223
|
+
|
|
224
|
+
.uni-build-up-component {
|
|
225
|
+
}
|
|
226
226
|
/**
|
|
227
227
|
* Swiper 6.8.4
|
|
228
228
|
* Most modern mobile touch slider and framework with hardware accelerated transitions
|