unika-components 1.0.349 → 1.0.351
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/index.d.ts +2 -3
- package/dist/unika-components.css +88 -88
- package/dist/unika-components.esm.js +591 -594
- package/dist/unika-components.umd.js +605 -609
- package/package.json +1 -1
package/dist/src/index.d.ts
CHANGED
|
@@ -3,7 +3,6 @@ import UniText from './components/UniText';
|
|
|
3
3
|
import UniImage from './components/UniImage';
|
|
4
4
|
import UniShape from './components/UniShape';
|
|
5
5
|
import LongPage from './components/LongPage';
|
|
6
|
-
import SwiperPage from './components/WorkRender';
|
|
7
6
|
import UniBackground from './components/UniBackground';
|
|
8
7
|
import UniMusic from './components/UniMusic';
|
|
9
8
|
import UniVideo from './components/UniVideo';
|
|
@@ -19,9 +18,9 @@ import UniButton from './components/UniButton';
|
|
|
19
18
|
import UniBulidUp from './components/UniBulidUp';
|
|
20
19
|
import UniTest from './components/UniTest';
|
|
21
20
|
import UniSvg from './components/UniSvg';
|
|
22
|
-
import
|
|
21
|
+
import WorkRenderer from './components/WorkRender';
|
|
23
22
|
declare const install: (app: App) => void;
|
|
24
|
-
export { UniText, UniImage, UniShape, LongPage,
|
|
23
|
+
export { UniText, UniImage, UniShape, LongPage, UniBackground, UniMusic, UniVideo, UniCalendar, UniCountdown, UniMap, UniCall, UniLike, UniEffect, UniRegisterForm, UniLotties, UniButton, UniBulidUp, UniSvg, UniTest, WorkRenderer, install };
|
|
25
24
|
declare const _default: {
|
|
26
25
|
install: (app: App<any>) => void;
|
|
27
26
|
};
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
|
|
2
|
+
.uni-image-component {
|
|
3
|
+
max-width: 100%;
|
|
4
|
+
}
|
|
5
|
+
.uni-image-mask-wrapper {
|
|
6
|
+
display: inline-block;
|
|
7
|
+
}
|
|
1
8
|
|
|
2
9
|
#audio {
|
|
3
10
|
position: absolute;
|
|
@@ -140,6 +147,18 @@
|
|
|
140
147
|
}
|
|
141
148
|
}
|
|
142
149
|
|
|
150
|
+
|
|
151
|
+
.uni-calendar-component {
|
|
152
|
+
|
|
153
|
+
}
|
|
154
|
+
.slot-number {
|
|
155
|
+
position: absolute;
|
|
156
|
+
bottom: 2px;
|
|
157
|
+
left: 7px;
|
|
158
|
+
font-size: 12px;
|
|
159
|
+
color: #666
|
|
160
|
+
}
|
|
161
|
+
|
|
143
162
|
.uni-video-component {
|
|
144
163
|
position: relative;
|
|
145
164
|
text-align: center;
|
|
@@ -160,13 +179,73 @@
|
|
|
160
179
|
.play-pause-button:hover {
|
|
161
180
|
background: rgba(0, 0, 0, 0.8);
|
|
162
181
|
}
|
|
163
|
-
|
|
164
|
-
.
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
182
|
+
|
|
183
|
+
.ant-input-number {
|
|
184
|
+
box-sizing: border-box;
|
|
185
|
+
margin: 0;
|
|
186
|
+
padding: 0;
|
|
187
|
+
color: rgba(0, 0, 0, 0.88);
|
|
188
|
+
font-size: 14px;
|
|
189
|
+
line-height: 1.5714285714285714;
|
|
190
|
+
list-style: none;
|
|
191
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
192
|
+
position: relative;
|
|
193
|
+
display: inline-block;
|
|
194
|
+
width: 100%;
|
|
195
|
+
min-width: 0;
|
|
196
|
+
background-color: #ffffff;
|
|
197
|
+
background-image: none;
|
|
198
|
+
border-width: 1px;
|
|
199
|
+
border-style: solid;
|
|
200
|
+
border-color: #d9d9d9;
|
|
201
|
+
border-radius: 6px;
|
|
202
|
+
transition: all 0.2s;
|
|
203
|
+
border: 1px solid #d9d9d9;
|
|
204
|
+
}
|
|
205
|
+
.ant-form-item {
|
|
206
|
+
box-sizing: border-box;
|
|
207
|
+
margin: 0;
|
|
208
|
+
padding: 0;
|
|
209
|
+
color: rgba(0, 0, 0, 0.88);
|
|
210
|
+
font-size: 14px;
|
|
211
|
+
line-height: 1.5714285714285714;
|
|
212
|
+
list-style: none;
|
|
213
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
214
|
+
margin-bottom: 0px;
|
|
215
|
+
vertical-align: top;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.like-button {
|
|
219
|
+
display: flex;
|
|
220
|
+
flex-direction: column;
|
|
221
|
+
align-items: center;
|
|
222
|
+
cursor: pointer;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.icon-heart {
|
|
226
|
+
font-size: 24px;
|
|
227
|
+
color: #e74c3c;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.liked {
|
|
231
|
+
color: #f00; /* 更改颜色以示已赞 */
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.like-count {
|
|
235
|
+
margin-top: 4px;
|
|
236
|
+
font-size: 16px;
|
|
237
|
+
color: #333;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.effect {
|
|
241
|
+
width: 100%;
|
|
242
|
+
height: 100%;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.uni-lotties-component {
|
|
246
|
+
width: 100%;
|
|
247
|
+
height: 100%;
|
|
248
|
+
}
|
|
170
249
|
|
|
171
250
|
.work-container {
|
|
172
251
|
position: relative;
|
|
@@ -365,92 +444,13 @@
|
|
|
365
444
|
will-change: transform;
|
|
366
445
|
}
|
|
367
446
|
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
}
|
|
372
|
-
.slot-number {
|
|
373
|
-
position: absolute;
|
|
374
|
-
bottom: 2px;
|
|
375
|
-
left: 7px;
|
|
376
|
-
font-size: 12px;
|
|
377
|
-
color: #666
|
|
378
|
-
}
|
|
379
|
-
|
|
380
|
-
.effect {
|
|
381
|
-
width: 100%;
|
|
382
|
-
height: 100%;
|
|
383
|
-
}
|
|
447
|
+
.uni-build-up-component {
|
|
448
|
+
}
|
|
384
449
|
|
|
385
450
|
.uni-svg-component {
|
|
386
451
|
display: inline-block;
|
|
387
452
|
}
|
|
388
453
|
|
|
389
|
-
.uni-build-up-component {
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
.like-button {
|
|
393
|
-
display: flex;
|
|
394
|
-
flex-direction: column;
|
|
395
|
-
align-items: center;
|
|
396
|
-
cursor: pointer;
|
|
397
|
-
}
|
|
398
|
-
|
|
399
|
-
.icon-heart {
|
|
400
|
-
font-size: 24px;
|
|
401
|
-
color: #e74c3c;
|
|
402
|
-
}
|
|
403
|
-
|
|
404
|
-
.liked {
|
|
405
|
-
color: #f00; /* 更改颜色以示已赞 */
|
|
406
|
-
}
|
|
407
|
-
|
|
408
|
-
.like-count {
|
|
409
|
-
margin-top: 4px;
|
|
410
|
-
font-size: 16px;
|
|
411
|
-
color: #333;
|
|
412
|
-
}
|
|
413
|
-
|
|
414
|
-
.ant-input-number {
|
|
415
|
-
box-sizing: border-box;
|
|
416
|
-
margin: 0;
|
|
417
|
-
padding: 0;
|
|
418
|
-
color: rgba(0, 0, 0, 0.88);
|
|
419
|
-
font-size: 14px;
|
|
420
|
-
line-height: 1.5714285714285714;
|
|
421
|
-
list-style: none;
|
|
422
|
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
423
|
-
position: relative;
|
|
424
|
-
display: inline-block;
|
|
425
|
-
width: 100%;
|
|
426
|
-
min-width: 0;
|
|
427
|
-
background-color: #ffffff;
|
|
428
|
-
background-image: none;
|
|
429
|
-
border-width: 1px;
|
|
430
|
-
border-style: solid;
|
|
431
|
-
border-color: #d9d9d9;
|
|
432
|
-
border-radius: 6px;
|
|
433
|
-
transition: all 0.2s;
|
|
434
|
-
border: 1px solid #d9d9d9;
|
|
435
|
-
}
|
|
436
|
-
.ant-form-item {
|
|
437
|
-
box-sizing: border-box;
|
|
438
|
-
margin: 0;
|
|
439
|
-
padding: 0;
|
|
440
|
-
color: rgba(0, 0, 0, 0.88);
|
|
441
|
-
font-size: 14px;
|
|
442
|
-
line-height: 1.5714285714285714;
|
|
443
|
-
list-style: none;
|
|
444
|
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
445
|
-
margin-bottom: 0px;
|
|
446
|
-
vertical-align: top;
|
|
447
|
-
}
|
|
448
|
-
|
|
449
|
-
.uni-lotties-component {
|
|
450
|
-
width: 100%;
|
|
451
|
-
height: 100%;
|
|
452
|
-
}
|
|
453
|
-
|
|
454
454
|
|
|
455
455
|
.no-animation__card {
|
|
456
456
|
font-weight: 500;
|