unika-components 1.0.26 → 1.0.29

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.
@@ -0,0 +1,11 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ [x: string]: any;
3
+ }, {
4
+ styleProps: import("vue").ComputedRef<Pick<any, string>>;
5
+ handleClick: () => void;
6
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
7
+ [x: string]: any;
8
+ }>>, {
9
+ [x: string]: any;
10
+ }, {}>;
11
+ export default _default;
@@ -0,0 +1,2 @@
1
+ import UniRegisterForm from './UniRegisterForm.vue';
2
+ export default UniRegisterForm;
@@ -354,6 +354,26 @@ export declare const effectDefaultProps: {
354
354
  top: string;
355
355
  right: string;
356
356
  };
357
+ export declare const registerFormefaultProps: {
358
+ actionType: string;
359
+ url: string;
360
+ height: string;
361
+ width: string;
362
+ paddingLeft: string;
363
+ paddingRight: string;
364
+ paddingTop: string;
365
+ paddingBottom: string;
366
+ borderStyle: string;
367
+ borderColor: string;
368
+ borderWidth: string;
369
+ borderRadius: string;
370
+ boxShadow: string;
371
+ opacity: number;
372
+ position: string;
373
+ left: string;
374
+ top: string;
375
+ right: string;
376
+ };
357
377
  export declare const componentsDefaultProps: {
358
378
  'uni-text': {
359
379
  props: {
@@ -627,6 +647,28 @@ export declare const componentsDefaultProps: {
627
647
  right: string;
628
648
  };
629
649
  };
650
+ 'uni-register-form': {
651
+ props: {
652
+ actionType: string;
653
+ url: string;
654
+ height: string;
655
+ width: string;
656
+ paddingLeft: string;
657
+ paddingRight: string;
658
+ paddingTop: string;
659
+ paddingBottom: string;
660
+ borderStyle: string;
661
+ borderColor: string;
662
+ borderWidth: string;
663
+ borderRadius: string;
664
+ boxShadow: string;
665
+ opacity: number;
666
+ position: string;
667
+ left: string;
668
+ top: string;
669
+ right: string;
670
+ };
671
+ };
630
672
  };
631
673
  export declare const isEditingProp: {
632
674
  isEditing: {
@@ -13,8 +13,9 @@ import UniMap from './components/UniMap';
13
13
  import UniCall from './components/UniCall';
14
14
  import UniLike from './components/UniLike';
15
15
  import UniEffect from './components/UniEffect';
16
+ import UniRegisterForm from './components/UniRegisterForm';
16
17
  declare const install: (app: App) => void;
17
- export { UniText, UniImage, UniShape, LongPage, SwiperPage, UniBackground, UniMusic, UniVideo, UniCalendar, UniCountdown, UniMap, UniCall, UniLike, UniEffect, install };
18
+ export { UniText, UniImage, UniShape, LongPage, SwiperPage, UniBackground, UniMusic, UniVideo, UniCalendar, UniCountdown, UniMap, UniCall, UniLike, UniEffect, UniRegisterForm, install };
18
19
  declare const _default: {
19
20
  install: (app: App<any>) => void;
20
21
  };
@@ -3,6 +3,54 @@
3
3
  max-width: 100%;
4
4
  }
5
5
 
6
+ h2.uni-text-component, p.uni-text-component {
7
+ margin-bottom: 0;
8
+ }
9
+ button.uni-text-component {
10
+ padding: 5px 10px;
11
+ cursor: pointer;
12
+ }
13
+ .uni-text-component {
14
+ box-sizing: border-box;
15
+ white-space: pre-wrap;
16
+ }
17
+
18
+ .uni-background-component {
19
+ width: 100%;
20
+ }
21
+ .bg-img {
22
+ width: 100%;
23
+ height: 100%;
24
+ object-fit: cover;
25
+ z-index:1;
26
+ }
27
+ .watermark {
28
+ height: 100%;
29
+ position: absolute;
30
+ top: 0;
31
+ left: 0;
32
+ right: 0;
33
+ bottom: 0;
34
+ }
35
+ .watermark-div {
36
+ height: 100%;
37
+ width:100%;
38
+ position:absolute;
39
+ z-index:99999999;
40
+ }
41
+ body:before{
42
+ content: '';
43
+ position: fixed;
44
+ top: 0;
45
+ bottom: 0;
46
+ left: 0;
47
+ right: 0;
48
+ z-index: -1;
49
+ /* background: url(https://unika-static-dev.unika.cc/logo.png) 0 0 repeat; */
50
+ background-position: center;
51
+ opacity: 0.1;
52
+ }
53
+
6
54
  .slide-guide {
7
55
  position: absolute;
8
56
  bottom: 90px;
@@ -76,6 +124,35 @@ body, html {
76
124
  }
77
125
  }
78
126
 
127
+ .slot-number {
128
+ position: absolute;
129
+ bottom: 2px;
130
+ left: 7px;
131
+ font-size: 12px;
132
+ color: #666
133
+ }
134
+
135
+ .uni-video-component {
136
+ position: relative;
137
+ text-align: center;
138
+ }
139
+ .play-pause-button {
140
+ position: absolute;
141
+ top: 50%;
142
+ left: 50%;
143
+ transform: translate(-50%, -50%);
144
+ cursor: pointer;
145
+ font-size: 2rem;
146
+ color: #fff;
147
+ background: rgba(0, 0, 0, 0.6);
148
+ border-radius: 50%;
149
+ padding: 10px;
150
+ transition: background 0.3s;
151
+ }
152
+ .play-pause-button:hover {
153
+ background: rgba(0, 0, 0, 0.8);
154
+ }
155
+
79
156
  #audio {
80
157
  position: absolute;
81
158
  right: 10px;
@@ -171,81 +248,26 @@ body, html {
171
248
  }
172
249
  }
173
250
 
174
- .uni-background-component {
175
- width: 100%;
176
- }
177
- .bg-img {
178
- width: 100%;
179
- height: 100%;
180
- object-fit: cover;
181
- z-index:1;
182
- }
183
- .watermark {
184
- height: 100%;
185
- position: absolute;
186
- top: 0;
187
- left: 0;
188
- right: 0;
189
- bottom: 0;
190
- }
191
- .watermark-div {
192
- height: 100%;
193
- width:100%;
194
- position:absolute;
195
- z-index:99999999;
196
- }
197
- body:before{
198
- content: '';
199
- position: fixed;
251
+ #app1 {
252
+ position: relative;
253
+ }
254
+ .snowflake {
255
+ position: absolute;
200
256
  top: 0;
201
- bottom: 0;
202
257
  left: 0;
203
- right: 0;
204
- z-index: -1;
205
- /* background: url(https://unika-static-dev.unika.cc/logo.png) 0 0 repeat; */
206
- background-position: center;
207
- opacity: 0.1;
258
+ width: 10px;
259
+ height: 10px;
260
+ background: red;
261
+ border-radius: 50%;
262
+ animation: falling 10s linear infinite;
208
263
  }
209
-
210
- .uni-video-component {
211
- position: relative;
212
- text-align: center;
213
- }
214
- .play-pause-button {
215
- position: absolute;
216
- top: 50%;
217
- left: 50%;
218
- transform: translate(-50%, -50%);
219
- cursor: pointer;
220
- font-size: 2rem;
221
- color: #fff;
222
- background: rgba(0, 0, 0, 0.6);
223
- border-radius: 50%;
224
- padding: 10px;
225
- transition: background 0.3s;
264
+ @keyframes falling {
265
+ from {
266
+ transform: translateY(0) rotate(0deg);
226
267
  }
227
- .play-pause-button:hover {
228
- background: rgba(0, 0, 0, 0.8);
268
+ to {
269
+ transform: translateY(100vh) rotate(360deg);
229
270
  }
230
-
231
- h2.uni-text-component, p.uni-text-component {
232
- margin-bottom: 0;
233
- }
234
- button.uni-text-component {
235
- padding: 5px 10px;
236
- cursor: pointer;
237
- }
238
- .uni-text-component {
239
- box-sizing: border-box;
240
- white-space: pre-wrap;
241
- }
242
-
243
- .slot-number {
244
- position: absolute;
245
- bottom: 2px;
246
- left: 7px;
247
- font-size: 12px;
248
- color: #666
249
271
  }
250
272
 
251
273
  .like-button {
@@ -270,27 +292,26 @@ button.uni-text-component {
270
292
  color: #333;
271
293
  }
272
294
 
273
- #app1 {
274
- position: relative;
275
- }
276
- .snowflake {
277
- position: absolute;
278
- top: 0;
279
- left: 0;
280
- width: 10px;
281
- height: 10px;
282
- background: red;
283
- border-radius: 50%;
284
- animation: falling 10s linear infinite;
285
- }
286
- @keyframes falling {
287
- from {
288
- transform: translateY(0) rotate(0deg);
295
+ .video-player {
296
+ position: relative;
297
+ text-align: center;
289
298
  }
290
- to {
291
- transform: translateY(100vh) rotate(360deg);
299
+ .play-pause-button {
300
+ position: absolute;
301
+ top: 50%;
302
+ left: 50%;
303
+ transform: translate(-50%, -50%);
304
+ cursor: pointer;
305
+ font-size: 2rem;
306
+ color: #fff;
307
+ background: rgba(0, 0, 0, 0.6);
308
+ border-radius: 50%;
309
+ padding: 10px;
310
+ transition: background 0.3s;
311
+ }
312
+ .play-pause-button:hover {
313
+ background: rgba(0, 0, 0, 0.8);
292
314
  }
293
- }
294
315
  /**
295
316
  * Swiper 6.8.4
296
317
  * Most modern mobile touch slider and framework with hardware accelerated transitions