unika-components 1.0.96 → 1.0.98
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 +1 -2
- package/dist/unika-components.css +127 -126
- package/dist/unika-components.esm.js +48 -80
- package/dist/unika-components.umd.js +44 -77
- package/package.json +1 -1
package/dist/src/index.d.ts
CHANGED
|
@@ -4,7 +4,6 @@ import UniImage from './components/UniImage';
|
|
|
4
4
|
import UniShape from './components/UniShape';
|
|
5
5
|
import LongPage from './components/LongPage';
|
|
6
6
|
import SwiperPage from './components/SwiperPage';
|
|
7
|
-
import UniBackground from './components/UniBackground';
|
|
8
7
|
import UniMusic from './components/UniMusic';
|
|
9
8
|
import UniVideo from './components/UniVideo';
|
|
10
9
|
import UniCalendar from './components/UniCalendar';
|
|
@@ -20,7 +19,7 @@ import UniButton from './components/UniButton';
|
|
|
20
19
|
import UniTanmu from './components/UniTanmu';
|
|
21
20
|
import UniTest from './components/UniTest';
|
|
22
21
|
declare const install: (app: App) => void;
|
|
23
|
-
export { UniText, UniImage, UniShape, LongPage, SwiperPage,
|
|
22
|
+
export { UniText, UniImage, UniShape, LongPage, SwiperPage, UniMusic, UniVideo, UniCalendar, UniCountdown, UniMap, UniCall, UniLike, UniEffect, UniRegisterForm, UniLotties, UniSwiper, UniButton, UniTanmu, UniTest, install };
|
|
24
23
|
declare const _default: {
|
|
25
24
|
install: (app: App<any>) => void;
|
|
26
25
|
};
|
|
@@ -1,8 +1,4 @@
|
|
|
1
1
|
|
|
2
|
-
.uni-image-component {
|
|
3
|
-
max-width: 100%;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
2
|
h2.uni-text-component, p.uni-text-component {
|
|
7
3
|
margin-bottom: 0;
|
|
8
4
|
}
|
|
@@ -14,79 +10,6 @@ button.uni-text-component {
|
|
|
14
10
|
box-sizing: border-box;
|
|
15
11
|
white-space: pre-wrap;
|
|
16
12
|
}
|
|
17
|
-
|
|
18
|
-
.slide-guide {
|
|
19
|
-
position: absolute;
|
|
20
|
-
bottom: 90px;
|
|
21
|
-
left: 50%;
|
|
22
|
-
transform: translateX(-50%);
|
|
23
|
-
}
|
|
24
|
-
.slide-guide img {
|
|
25
|
-
animation: flowing 2s ease-in-out infinite;
|
|
26
|
-
width: 33px;
|
|
27
|
-
vertical-align: middle;
|
|
28
|
-
border-style: none;
|
|
29
|
-
}
|
|
30
|
-
body, html {
|
|
31
|
-
position: relative;
|
|
32
|
-
width: 100%;
|
|
33
|
-
height: 100%;
|
|
34
|
-
margin: 0px;
|
|
35
|
-
}
|
|
36
|
-
.swiper-container {
|
|
37
|
-
width: 100%;
|
|
38
|
-
height: 100%;
|
|
39
|
-
}
|
|
40
|
-
.swiper-slide {
|
|
41
|
-
width: 100%;
|
|
42
|
-
height: 100%;
|
|
43
|
-
overflow: hidden;
|
|
44
|
-
background-size: cover;
|
|
45
|
-
background-position: center;
|
|
46
|
-
background-repeat: no-repeat;
|
|
47
|
-
}
|
|
48
|
-
.up-arrow {
|
|
49
|
-
width: 2rem;
|
|
50
|
-
height: 2rem;
|
|
51
|
-
position: fixed;
|
|
52
|
-
bottom: 2rem;
|
|
53
|
-
left: 50%;
|
|
54
|
-
transform: translate3d(-50%, 0, 0);
|
|
55
|
-
z-index: 999;
|
|
56
|
-
background: none;
|
|
57
|
-
border: none;
|
|
58
|
-
padding: 0;
|
|
59
|
-
animation: upArrowAni 2s infinite linear;
|
|
60
|
-
}
|
|
61
|
-
.up-arrow img {
|
|
62
|
-
width: 2rem;
|
|
63
|
-
height: 2rem;
|
|
64
|
-
text-align: center;
|
|
65
|
-
line-height: 2rem;
|
|
66
|
-
color: #fff;
|
|
67
|
-
font-size: 1.5rem;
|
|
68
|
-
}
|
|
69
|
-
@keyframes upArrowAni {
|
|
70
|
-
0% {
|
|
71
|
-
opacity: 0;
|
|
72
|
-
transform: translate3d(-50%, 30%, 0);
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
30% {
|
|
76
|
-
opacity: 1;
|
|
77
|
-
transform: translate3d(-50%, -20%, 0);
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
60% {
|
|
81
|
-
opacity: 0;
|
|
82
|
-
transform: translate3d(-50%, -35%, 0);
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
100% {
|
|
86
|
-
opacity: 0;
|
|
87
|
-
transform: translate3d(-50%, -50%, 0);
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
13
|
|
|
91
14
|
#audio {
|
|
92
15
|
position: absolute;
|
|
@@ -169,6 +92,23 @@ body, html {
|
|
|
169
92
|
}
|
|
170
93
|
}
|
|
171
94
|
|
|
95
|
+
.slot-number {
|
|
96
|
+
position: absolute;
|
|
97
|
+
bottom: 2px;
|
|
98
|
+
left: 7px;
|
|
99
|
+
font-size: 12px;
|
|
100
|
+
color: #666
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.uni-image-component {
|
|
104
|
+
max-width: 100%;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.effect {
|
|
108
|
+
width: 100%;
|
|
109
|
+
height: 100%;
|
|
110
|
+
}
|
|
111
|
+
|
|
172
112
|
.uni-video-component {
|
|
173
113
|
position: relative;
|
|
174
114
|
text-align: center;
|
|
@@ -190,14 +130,6 @@ body, html {
|
|
|
190
130
|
background: rgba(0, 0, 0, 0.8);
|
|
191
131
|
}
|
|
192
132
|
|
|
193
|
-
.slot-number {
|
|
194
|
-
position: absolute;
|
|
195
|
-
bottom: 2px;
|
|
196
|
-
left: 7px;
|
|
197
|
-
font-size: 12px;
|
|
198
|
-
color: #666
|
|
199
|
-
}
|
|
200
|
-
|
|
201
133
|
.swiper-warp {
|
|
202
134
|
width: 100%;
|
|
203
135
|
height: 100%;
|
|
@@ -212,11 +144,101 @@ body, html {
|
|
|
212
144
|
max-height: 100%;
|
|
213
145
|
}
|
|
214
146
|
|
|
215
|
-
.
|
|
216
|
-
|
|
217
|
-
|
|
147
|
+
.like-button {
|
|
148
|
+
display: flex;
|
|
149
|
+
flex-direction: column;
|
|
150
|
+
align-items: center;
|
|
151
|
+
cursor: pointer;
|
|
218
152
|
}
|
|
219
153
|
|
|
154
|
+
.icon-heart {
|
|
155
|
+
font-size: 24px;
|
|
156
|
+
color: #e74c3c;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.liked {
|
|
160
|
+
color: #f00; /* 更改颜色以示已赞 */
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.like-count {
|
|
164
|
+
margin-top: 4px;
|
|
165
|
+
font-size: 16px;
|
|
166
|
+
color: #333;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.slide-guide {
|
|
170
|
+
position: absolute;
|
|
171
|
+
bottom: 90px;
|
|
172
|
+
left: 50%;
|
|
173
|
+
transform: translateX(-50%);
|
|
174
|
+
}
|
|
175
|
+
.slide-guide img {
|
|
176
|
+
animation: flowing 2s ease-in-out infinite;
|
|
177
|
+
width: 33px;
|
|
178
|
+
vertical-align: middle;
|
|
179
|
+
border-style: none;
|
|
180
|
+
}
|
|
181
|
+
body, html {
|
|
182
|
+
position: relative;
|
|
183
|
+
width: 100%;
|
|
184
|
+
height: 100%;
|
|
185
|
+
margin: 0px;
|
|
186
|
+
}
|
|
187
|
+
.swiper-container {
|
|
188
|
+
width: 100%;
|
|
189
|
+
height: 100%;
|
|
190
|
+
}
|
|
191
|
+
.swiper-slide {
|
|
192
|
+
width: 100%;
|
|
193
|
+
height: 100%;
|
|
194
|
+
overflow: hidden;
|
|
195
|
+
background-size: cover;
|
|
196
|
+
background-position: center;
|
|
197
|
+
background-repeat: no-repeat;
|
|
198
|
+
}
|
|
199
|
+
.up-arrow {
|
|
200
|
+
width: 2rem;
|
|
201
|
+
height: 2rem;
|
|
202
|
+
position: fixed;
|
|
203
|
+
bottom: 2rem;
|
|
204
|
+
left: 50%;
|
|
205
|
+
transform: translate3d(-50%, 0, 0);
|
|
206
|
+
z-index: 999;
|
|
207
|
+
background: none;
|
|
208
|
+
border: none;
|
|
209
|
+
padding: 0;
|
|
210
|
+
animation: upArrowAni 2s infinite linear;
|
|
211
|
+
}
|
|
212
|
+
.up-arrow img {
|
|
213
|
+
width: 2rem;
|
|
214
|
+
height: 2rem;
|
|
215
|
+
text-align: center;
|
|
216
|
+
line-height: 2rem;
|
|
217
|
+
color: #fff;
|
|
218
|
+
font-size: 1.5rem;
|
|
219
|
+
}
|
|
220
|
+
@keyframes upArrowAni {
|
|
221
|
+
0% {
|
|
222
|
+
opacity: 0;
|
|
223
|
+
transform: translate3d(-50%, 30%, 0);
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
30% {
|
|
227
|
+
opacity: 1;
|
|
228
|
+
transform: translate3d(-50%, -20%, 0);
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
60% {
|
|
232
|
+
opacity: 0;
|
|
233
|
+
transform: translate3d(-50%, -35%, 0);
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
100% {
|
|
237
|
+
opacity: 0;
|
|
238
|
+
transform: translate3d(-50%, -50%, 0);
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
|
|
220
242
|
.ant-input-number {
|
|
221
243
|
box-sizing: border-box;
|
|
222
244
|
margin: 0;
|
|
@@ -252,28 +274,6 @@ body, html {
|
|
|
252
274
|
vertical-align: top;
|
|
253
275
|
}
|
|
254
276
|
|
|
255
|
-
.like-button {
|
|
256
|
-
display: flex;
|
|
257
|
-
flex-direction: column;
|
|
258
|
-
align-items: center;
|
|
259
|
-
cursor: pointer;
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
.icon-heart {
|
|
263
|
-
font-size: 24px;
|
|
264
|
-
color: #e74c3c;
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
.liked {
|
|
268
|
-
color: #f00; /* 更改颜色以示已赞 */
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
.like-count {
|
|
272
|
-
margin-top: 4px;
|
|
273
|
-
font-size: 16px;
|
|
274
|
-
color: #333;
|
|
275
|
-
}
|
|
276
|
-
|
|
277
277
|
.barrage-container {
|
|
278
278
|
position: fixed;
|
|
279
279
|
bottom: 0;
|
|
@@ -1069,22 +1069,7 @@ button.swiper-pagination-bullet {
|
|
|
1069
1069
|
-webkit-backface-visibility: hidden;
|
|
1070
1070
|
backface-visibility: hidden;
|
|
1071
1071
|
}
|
|
1072
|
-
|
|
1073
|
-
.barrage-container {
|
|
1074
|
-
position: absolute;
|
|
1075
|
-
width: 100%;
|
|
1076
|
-
height: 100px;
|
|
1077
|
-
overflow: hidden;
|
|
1078
|
-
bottom: 55px;
|
|
1079
|
-
}
|
|
1080
|
-
.barrage {
|
|
1081
|
-
white-space: nowrap;
|
|
1082
|
-
padding: 10px 0;
|
|
1083
|
-
text-align: center;
|
|
1084
|
-
background-color: #ccc;
|
|
1085
|
-
margin: 1px 0;
|
|
1086
|
-
}
|
|
1087
|
-
|
|
1072
|
+
|
|
1088
1073
|
.unika-calendar-title {
|
|
1089
1074
|
font-size: 25px;
|
|
1090
1075
|
padding-bottom: 4px;
|
|
@@ -1523,3 +1508,19 @@ button.swiper-pagination-bullet {
|
|
|
1523
1508
|
z-index: 5;
|
|
1524
1509
|
}
|
|
1525
1510
|
}
|
|
1511
|
+
|
|
1512
|
+
.barrage-container {
|
|
1513
|
+
position: absolute;
|
|
1514
|
+
width: 100%;
|
|
1515
|
+
height: 100px;
|
|
1516
|
+
overflow: hidden;
|
|
1517
|
+
bottom: 55px;
|
|
1518
|
+
}
|
|
1519
|
+
.barrage {
|
|
1520
|
+
white-space: nowrap;
|
|
1521
|
+
padding: 10px 0;
|
|
1522
|
+
text-align: center;
|
|
1523
|
+
background-color: #ccc;
|
|
1524
|
+
margin: 1px 0;
|
|
1525
|
+
}
|
|
1526
|
+
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { computed, defineComponent, openBlock, createBlock, resolveDynamicComponent, withModifiers, normalizeStyle as normalizeStyle$1, withCtx, createTextVNode, toDisplayString, createElementBlock, Fragment, renderList, normalizeProps, guardReactiveProps, h as h$3, ref, onUpdated, watch, nextTick as nextTick$1, onMounted, onBeforeUnmount, onBeforeUpdate, resolveComponent, createVNode, normalizeClass, createElementVNode,
|
|
1
|
+
import { computed, defineComponent, openBlock, createBlock, resolveDynamicComponent, withModifiers, normalizeStyle as normalizeStyle$1, withCtx, createTextVNode, toDisplayString, createElementBlock, Fragment, renderList, normalizeProps, guardReactiveProps, h as h$3, ref, onUpdated, watch, nextTick as nextTick$1, onMounted, onBeforeUnmount, onBeforeUpdate, resolveComponent, createCommentVNode, createVNode, normalizeClass, createElementVNode, pushScopeId, popScopeId, renderSlot, toRefs, onBeforeMount, onUnmounted, withDirectives, vShow, isVNode, Comment, Text, reactive, getCurrentInstance, inject, provide, unref, shallowRef, watchEffect, triggerRef, Transition, resolveDirective, cloneVNode, render as render$n, toRef, Teleport, isRef, toRaw, TransitionGroup, mergeProps } from 'vue';
|
|
2
2
|
import crypto from 'crypto';
|
|
3
3
|
import util, { TextEncoder as TextEncoder$1 } from 'util';
|
|
4
4
|
import stream, { Readable } from 'stream';
|
|
@@ -5291,9 +5291,9 @@ const transformToComponentProps = (props, extraProps) => {
|
|
|
5291
5291
|
}
|
|
5292
5292
|
};
|
|
5293
5293
|
|
|
5294
|
-
const defaultStyles
|
|
5294
|
+
const defaultStyles = without$1(Object.keys(textDefaultProps), 'actionType', 'url', 'text');
|
|
5295
5295
|
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types, @typescript-eslint/no-explicit-any
|
|
5296
|
-
const useStylePick = (props, pickStyles = defaultStyles
|
|
5296
|
+
const useStylePick = (props, pickStyles = defaultStyles) => {
|
|
5297
5297
|
return computed(() => pick$1(props, pickStyles));
|
|
5298
5298
|
};
|
|
5299
5299
|
|
|
@@ -5314,12 +5314,12 @@ const extraProps = {
|
|
|
5314
5314
|
},
|
|
5315
5315
|
...isEditingProp
|
|
5316
5316
|
};
|
|
5317
|
-
const defaultProps$
|
|
5317
|
+
const defaultProps$b = transformToComponentProps(componentsDefaultProps['uni-text'].props, extraProps);
|
|
5318
5318
|
// array that contains style props
|
|
5319
|
-
var script$
|
|
5319
|
+
var script$l = defineComponent({
|
|
5320
5320
|
name: 'uni-text',
|
|
5321
5321
|
props: {
|
|
5322
|
-
...defaultProps$
|
|
5322
|
+
...defaultProps$b
|
|
5323
5323
|
},
|
|
5324
5324
|
setup(props) {
|
|
5325
5325
|
const styleProps = useStylePick(props);
|
|
@@ -5331,7 +5331,7 @@ var script$m = defineComponent({
|
|
|
5331
5331
|
}
|
|
5332
5332
|
});
|
|
5333
5333
|
|
|
5334
|
-
function render$
|
|
5334
|
+
function render$m(_ctx, _cache, $props, $setup, $data, $options) {
|
|
5335
5335
|
return (openBlock(), createBlock(resolveDynamicComponent(_ctx.tag), {
|
|
5336
5336
|
onClick: withModifiers(_ctx.handleClick, ["prevent"]),
|
|
5337
5337
|
style: normalizeStyle$1(_ctx.styleProps),
|
|
@@ -5344,16 +5344,16 @@ function render$n(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5344
5344
|
}, 8 /* PROPS */, ["onClick", "style"]))
|
|
5345
5345
|
}
|
|
5346
5346
|
|
|
5347
|
-
script$
|
|
5348
|
-
script$
|
|
5349
|
-
script$
|
|
5347
|
+
script$l.render = render$m;
|
|
5348
|
+
script$l.__scopeId = "data-v-55ed80cb";
|
|
5349
|
+
script$l.__file = "src/components/UniText/UniText.vue";
|
|
5350
5350
|
|
|
5351
|
-
script$
|
|
5352
|
-
app.component(script$
|
|
5351
|
+
script$l.install = (app) => {
|
|
5352
|
+
app.component(script$l.name, script$l);
|
|
5353
5353
|
};
|
|
5354
5354
|
|
|
5355
5355
|
// array that contains style props
|
|
5356
|
-
var script$
|
|
5356
|
+
var script$k = defineComponent({
|
|
5357
5357
|
name: 'uni-image',
|
|
5358
5358
|
props: transformToComponentProps(componentsDefaultProps['uni-image'].props, isEditingProp),
|
|
5359
5359
|
setup(props) {
|
|
@@ -5368,7 +5368,7 @@ var script$l = defineComponent({
|
|
|
5368
5368
|
|
|
5369
5369
|
const _hoisted_1$e = ["src"];
|
|
5370
5370
|
|
|
5371
|
-
function render$
|
|
5371
|
+
function render$l(_ctx, _cache, $props, $setup, $data, $options) {
|
|
5372
5372
|
return (openBlock(), createElementBlock("img", {
|
|
5373
5373
|
src: _ctx.imageSrc,
|
|
5374
5374
|
style: normalizeStyle$1(_ctx.styleProps),
|
|
@@ -5378,20 +5378,20 @@ function render$m(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5378
5378
|
}, null, 12 /* STYLE, PROPS */, _hoisted_1$e))
|
|
5379
5379
|
}
|
|
5380
5380
|
|
|
5381
|
-
script$
|
|
5382
|
-
script$
|
|
5383
|
-
script$
|
|
5381
|
+
script$k.render = render$l;
|
|
5382
|
+
script$k.__scopeId = "data-v-03caca2f";
|
|
5383
|
+
script$k.__file = "src/components/UniImage/UniImage.vue";
|
|
5384
5384
|
|
|
5385
|
-
script$
|
|
5386
|
-
app.component(script$
|
|
5385
|
+
script$k.install = (app) => {
|
|
5386
|
+
app.component(script$k.name, script$k);
|
|
5387
5387
|
};
|
|
5388
5388
|
|
|
5389
|
-
const defaultProps$
|
|
5389
|
+
const defaultProps$a = transformToComponentProps(componentsDefaultProps['uni-shape'].props, isEditingProp);
|
|
5390
5390
|
// array that contains style props
|
|
5391
|
-
var script$
|
|
5391
|
+
var script$j = defineComponent({
|
|
5392
5392
|
name: 'uni-shape',
|
|
5393
5393
|
props: {
|
|
5394
|
-
...defaultProps$
|
|
5394
|
+
...defaultProps$a
|
|
5395
5395
|
},
|
|
5396
5396
|
setup(props) {
|
|
5397
5397
|
const styleProps = useStylePick(props);
|
|
@@ -5403,7 +5403,7 @@ var script$k = defineComponent({
|
|
|
5403
5403
|
}
|
|
5404
5404
|
});
|
|
5405
5405
|
|
|
5406
|
-
function render$
|
|
5406
|
+
function render$k(_ctx, _cache, $props, $setup, $data, $options) {
|
|
5407
5407
|
return (openBlock(), createElementBlock("div", {
|
|
5408
5408
|
onClick: _cache[0] || (_cache[0] = withModifiers((...args) => (_ctx.handleClick && _ctx.handleClick(...args)), ["prevent"])),
|
|
5409
5409
|
style: normalizeStyle$1(_ctx.styleProps),
|
|
@@ -5412,14 +5412,14 @@ function render$l(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5412
5412
|
}, null, 4 /* STYLE */))
|
|
5413
5413
|
}
|
|
5414
5414
|
|
|
5415
|
-
script$
|
|
5416
|
-
script$
|
|
5415
|
+
script$j.render = render$k;
|
|
5416
|
+
script$j.__file = "src/components/UniShape/UniShape.vue";
|
|
5417
5417
|
|
|
5418
|
-
script$
|
|
5419
|
-
app.component(script$
|
|
5418
|
+
script$j.install = (app) => {
|
|
5419
|
+
app.component(script$j.name, script$j);
|
|
5420
5420
|
};
|
|
5421
5421
|
|
|
5422
|
-
var script$
|
|
5422
|
+
var script$i = defineComponent({
|
|
5423
5423
|
name: 'long-page',
|
|
5424
5424
|
props: {
|
|
5425
5425
|
work: {
|
|
@@ -5434,7 +5434,7 @@ var script$j = defineComponent({
|
|
|
5434
5434
|
|
|
5435
5435
|
const _hoisted_1$d = ["id"];
|
|
5436
5436
|
|
|
5437
|
-
function render$
|
|
5437
|
+
function render$j(_ctx, _cache, $props, $setup, $data, $options) {
|
|
5438
5438
|
return (openBlock(), createElementBlock("div", {
|
|
5439
5439
|
class: "final-page",
|
|
5440
5440
|
style: normalizeStyle$1(_ctx.work && {width: _ctx.work.width, height: _ctx.work.height} )
|
|
@@ -5450,12 +5450,12 @@ function render$k(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5450
5450
|
], 4 /* STYLE */))
|
|
5451
5451
|
}
|
|
5452
5452
|
|
|
5453
|
-
script$
|
|
5454
|
-
script$
|
|
5453
|
+
script$i.render = render$j;
|
|
5454
|
+
script$i.__file = "src/components/LongPage/LongPage.vue";
|
|
5455
5455
|
|
|
5456
5456
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
5457
|
-
script$
|
|
5458
|
-
app.component(script$
|
|
5457
|
+
script$i.install = (app) => {
|
|
5458
|
+
app.component(script$i.name, script$i);
|
|
5459
5459
|
};
|
|
5460
5460
|
|
|
5461
5461
|
/**
|
|
@@ -12966,7 +12966,7 @@ function getComputedCSSText(style) {
|
|
|
12966
12966
|
}
|
|
12967
12967
|
return cssText;
|
|
12968
12968
|
}
|
|
12969
|
-
var script$
|
|
12969
|
+
var script$h = defineComponent({
|
|
12970
12970
|
name: 'swiper-page',
|
|
12971
12971
|
props: {
|
|
12972
12972
|
work: {
|
|
@@ -13075,11 +13075,13 @@ const _hoisted_5$4 = [
|
|
|
13075
13075
|
_hoisted_4$4
|
|
13076
13076
|
];
|
|
13077
13077
|
|
|
13078
|
-
function render$
|
|
13078
|
+
function render$i(_ctx, _cache, $props, $setup, $data, $options) {
|
|
13079
13079
|
const _component_swiper_slide = resolveComponent("swiper-slide");
|
|
13080
13080
|
const _component_swiper = resolveComponent("swiper");
|
|
13081
13081
|
|
|
13082
13082
|
return (openBlock(), createElementBlock("div", _hoisted_1$c, [
|
|
13083
|
+
createCommentVNode(" <uni-tanmu v-if=\"work?.tanmu\" v-bind=\"{ publishContentID: work.uuid }\"/>"),
|
|
13084
|
+
createCommentVNode(" <uni-music v-if=\"work?.music?.musicSrc\" v-bind=\"{ musicSrc: work?.music?.musicSrc }\"/>"),
|
|
13083
13085
|
createVNode(_component_swiper, {
|
|
13084
13086
|
class: "swiper-container",
|
|
13085
13087
|
modules: _ctx.modules,
|
|
@@ -13124,44 +13126,10 @@ function render$j(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
13124
13126
|
]))
|
|
13125
13127
|
}
|
|
13126
13128
|
|
|
13127
|
-
script$i.render = render$j;
|
|
13128
|
-
script$i.__file = "src/components/SwiperPage/SwiperPage.vue";
|
|
13129
|
-
|
|
13130
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
13131
|
-
script$i.install = (app) => {
|
|
13132
|
-
app.component(script$i.name, script$i);
|
|
13133
|
-
};
|
|
13134
|
-
|
|
13135
|
-
const defaultProps$a = transformToComponentProps(componentsDefaultProps['uni-background'].props, isEditingProp);
|
|
13136
|
-
const defaultStyles = Object.keys(backgroundDefaultProps);
|
|
13137
|
-
// array that contains style props
|
|
13138
|
-
var script$h = defineComponent({
|
|
13139
|
-
name: 'uni-background',
|
|
13140
|
-
props: {
|
|
13141
|
-
...defaultProps$a
|
|
13142
|
-
},
|
|
13143
|
-
setup(props) {
|
|
13144
|
-
const styleProps = useStylePick(props, defaultStyles);
|
|
13145
|
-
const handleClick = useComponentClick(props);
|
|
13146
|
-
return {
|
|
13147
|
-
styleProps,
|
|
13148
|
-
handleClick
|
|
13149
|
-
};
|
|
13150
|
-
}
|
|
13151
|
-
});
|
|
13152
|
-
|
|
13153
|
-
function render$i(_ctx, _cache, $props, $setup, $data, $options) {
|
|
13154
|
-
return (openBlock(), createElementBlock("div", {
|
|
13155
|
-
onClick: _cache[0] || (_cache[0] = withModifiers((...args) => (_ctx.handleClick && _ctx.handleClick(...args)), ["prevent"])),
|
|
13156
|
-
style: normalizeStyle$1(_ctx.styleProps),
|
|
13157
|
-
class: "uni-background-component",
|
|
13158
|
-
draggable: false
|
|
13159
|
-
}, null, 4 /* STYLE */))
|
|
13160
|
-
}
|
|
13161
|
-
|
|
13162
13129
|
script$h.render = render$i;
|
|
13163
|
-
script$h.__file = "src/components/
|
|
13130
|
+
script$h.__file = "src/components/SwiperPage/SwiperPage.vue";
|
|
13164
13131
|
|
|
13132
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
13165
13133
|
script$h.install = (app) => {
|
|
13166
13134
|
app.component(script$h.name, script$h);
|
|
13167
13135
|
};
|
|
@@ -34271,7 +34239,7 @@ function cloneElement(vnode) {
|
|
|
34271
34239
|
return node;
|
|
34272
34240
|
}
|
|
34273
34241
|
function triggerVNodeUpdate(vm, attrs, dom) {
|
|
34274
|
-
render$
|
|
34242
|
+
render$n(cloneVNode(vm, _extends$1({}, attrs)), dom);
|
|
34275
34243
|
}
|
|
34276
34244
|
|
|
34277
34245
|
var isVisible = (element => {
|
|
@@ -44883,7 +44851,7 @@ const WaveEffect = defineComponent({
|
|
|
44883
44851
|
var _a;
|
|
44884
44852
|
const holder = (_a = divRef.value) === null || _a === void 0 ? void 0 : _a.parentElement;
|
|
44885
44853
|
if (holder) {
|
|
44886
|
-
render$
|
|
44854
|
+
render$n(null, holder);
|
|
44887
44855
|
if (holder.parentElement) {
|
|
44888
44856
|
holder.parentElement.removeChild(holder);
|
|
44889
44857
|
}
|
|
@@ -44956,7 +44924,7 @@ function showWaveEffect(node, className) {
|
|
|
44956
44924
|
holder.style.left = `0px`;
|
|
44957
44925
|
holder.style.top = `0px`;
|
|
44958
44926
|
node === null || node === void 0 ? void 0 : node.insertBefore(holder, node === null || node === void 0 ? void 0 : node.firstChild);
|
|
44959
|
-
render$
|
|
44927
|
+
render$n(createVNode(WaveEffect, {
|
|
44960
44928
|
"target": node,
|
|
44961
44929
|
"className": className
|
|
44962
44930
|
}, null), holder);
|
|
@@ -51108,7 +51076,7 @@ Notification$1.newInstance = function newNotificationInstance(properties, callba
|
|
|
51108
51076
|
(_a = notiRef.value) === null || _a === void 0 ? void 0 : _a.remove(key);
|
|
51109
51077
|
},
|
|
51110
51078
|
destroy() {
|
|
51111
|
-
render$
|
|
51079
|
+
render$n(null, div);
|
|
51112
51080
|
if (div.parentNode) {
|
|
51113
51081
|
div.parentNode.removeChild(div);
|
|
51114
51082
|
}
|
|
@@ -51136,7 +51104,7 @@ Notification$1.newInstance = function newNotificationInstance(properties, callba
|
|
|
51136
51104
|
});
|
|
51137
51105
|
const vm = createVNode(Wrapper, props);
|
|
51138
51106
|
vm.appContext = appContext || vm.appContext;
|
|
51139
|
-
render$
|
|
51107
|
+
render$n(vm, div);
|
|
51140
51108
|
};
|
|
51141
51109
|
var Notification$2 = Notification$1;
|
|
51142
51110
|
|
|
@@ -57875,7 +57843,7 @@ const confirm = config => {
|
|
|
57875
57843
|
function destroy() {
|
|
57876
57844
|
if (confirmDialogInstance) {
|
|
57877
57845
|
// destroy
|
|
57878
|
-
render$
|
|
57846
|
+
render$n(null, container);
|
|
57879
57847
|
confirmDialogInstance = null;
|
|
57880
57848
|
}
|
|
57881
57849
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
@@ -57943,7 +57911,7 @@ const confirm = config => {
|
|
|
57943
57911
|
function render(props) {
|
|
57944
57912
|
const vm = createVNode(Wrapper, _extends$1({}, props));
|
|
57945
57913
|
vm.appContext = config.parentContext || config.appContext || vm.appContext;
|
|
57946
|
-
render$
|
|
57914
|
+
render$n(vm, container);
|
|
57947
57915
|
return vm;
|
|
57948
57916
|
}
|
|
57949
57917
|
confirmDialogInstance = render(currentConfig);
|
|
@@ -99185,12 +99153,12 @@ script.install = (app) => {
|
|
|
99185
99153
|
|
|
99186
99154
|
// export { textDefaultProps , textStylePropNames, TextComponentProps,
|
|
99187
99155
|
const components = [
|
|
99188
|
-
script$m,
|
|
99189
99156
|
script$l,
|
|
99190
99157
|
script$k,
|
|
99191
99158
|
script$j,
|
|
99192
99159
|
script$i,
|
|
99193
99160
|
script$h,
|
|
99161
|
+
// UniBackground,
|
|
99194
99162
|
script$g,
|
|
99195
99163
|
script$f,
|
|
99196
99164
|
script$d,
|
|
@@ -99216,4 +99184,4 @@ var index = {
|
|
|
99216
99184
|
install
|
|
99217
99185
|
};
|
|
99218
99186
|
|
|
99219
|
-
export { script$
|
|
99187
|
+
export { script$i as LongPage, script$h as SwiperPage, script$3 as UniButton, script$d as UniCalendar, script$9 as UniCall, script$b as UniCountdown, script$7 as UniEffect, script$k as UniImage, script$8 as UniLike, script$5 as UniLotties, script$a as UniMap, script$g as UniMusic, script$6 as UniRegisterForm, script$j as UniShape, script$4 as UniSwiper, script$1 as UniTanmu, script as UniTest, script$l as UniText, script$f as UniVideo, index as default, install };
|
|
@@ -5297,9 +5297,9 @@
|
|
|
5297
5297
|
}
|
|
5298
5298
|
};
|
|
5299
5299
|
|
|
5300
|
-
const defaultStyles
|
|
5300
|
+
const defaultStyles = without$1(Object.keys(textDefaultProps), 'actionType', 'url', 'text');
|
|
5301
5301
|
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types, @typescript-eslint/no-explicit-any
|
|
5302
|
-
const useStylePick = (props, pickStyles = defaultStyles
|
|
5302
|
+
const useStylePick = (props, pickStyles = defaultStyles) => {
|
|
5303
5303
|
return vue.computed(() => pick$1(props, pickStyles));
|
|
5304
5304
|
};
|
|
5305
5305
|
|
|
@@ -5320,12 +5320,12 @@
|
|
|
5320
5320
|
},
|
|
5321
5321
|
...isEditingProp
|
|
5322
5322
|
};
|
|
5323
|
-
const defaultProps$
|
|
5323
|
+
const defaultProps$b = transformToComponentProps(componentsDefaultProps['uni-text'].props, extraProps);
|
|
5324
5324
|
// array that contains style props
|
|
5325
|
-
var script$
|
|
5325
|
+
var script$l = vue.defineComponent({
|
|
5326
5326
|
name: 'uni-text',
|
|
5327
5327
|
props: {
|
|
5328
|
-
...defaultProps$
|
|
5328
|
+
...defaultProps$b
|
|
5329
5329
|
},
|
|
5330
5330
|
setup(props) {
|
|
5331
5331
|
const styleProps = useStylePick(props);
|
|
@@ -5337,7 +5337,7 @@
|
|
|
5337
5337
|
}
|
|
5338
5338
|
});
|
|
5339
5339
|
|
|
5340
|
-
function render$
|
|
5340
|
+
function render$m(_ctx, _cache, $props, $setup, $data, $options) {
|
|
5341
5341
|
return (vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(_ctx.tag), {
|
|
5342
5342
|
onClick: vue.withModifiers(_ctx.handleClick, ["prevent"]),
|
|
5343
5343
|
style: vue.normalizeStyle(_ctx.styleProps),
|
|
@@ -5350,16 +5350,16 @@
|
|
|
5350
5350
|
}, 8 /* PROPS */, ["onClick", "style"]))
|
|
5351
5351
|
}
|
|
5352
5352
|
|
|
5353
|
-
script$
|
|
5354
|
-
script$
|
|
5355
|
-
script$
|
|
5353
|
+
script$l.render = render$m;
|
|
5354
|
+
script$l.__scopeId = "data-v-55ed80cb";
|
|
5355
|
+
script$l.__file = "src/components/UniText/UniText.vue";
|
|
5356
5356
|
|
|
5357
|
-
script$
|
|
5358
|
-
app.component(script$
|
|
5357
|
+
script$l.install = (app) => {
|
|
5358
|
+
app.component(script$l.name, script$l);
|
|
5359
5359
|
};
|
|
5360
5360
|
|
|
5361
5361
|
// array that contains style props
|
|
5362
|
-
var script$
|
|
5362
|
+
var script$k = vue.defineComponent({
|
|
5363
5363
|
name: 'uni-image',
|
|
5364
5364
|
props: transformToComponentProps(componentsDefaultProps['uni-image'].props, isEditingProp),
|
|
5365
5365
|
setup(props) {
|
|
@@ -5374,7 +5374,7 @@
|
|
|
5374
5374
|
|
|
5375
5375
|
const _hoisted_1$e = ["src"];
|
|
5376
5376
|
|
|
5377
|
-
function render$
|
|
5377
|
+
function render$l(_ctx, _cache, $props, $setup, $data, $options) {
|
|
5378
5378
|
return (vue.openBlock(), vue.createElementBlock("img", {
|
|
5379
5379
|
src: _ctx.imageSrc,
|
|
5380
5380
|
style: vue.normalizeStyle(_ctx.styleProps),
|
|
@@ -5384,20 +5384,20 @@
|
|
|
5384
5384
|
}, null, 12 /* STYLE, PROPS */, _hoisted_1$e))
|
|
5385
5385
|
}
|
|
5386
5386
|
|
|
5387
|
-
script$
|
|
5388
|
-
script$
|
|
5389
|
-
script$
|
|
5387
|
+
script$k.render = render$l;
|
|
5388
|
+
script$k.__scopeId = "data-v-03caca2f";
|
|
5389
|
+
script$k.__file = "src/components/UniImage/UniImage.vue";
|
|
5390
5390
|
|
|
5391
|
-
script$
|
|
5392
|
-
app.component(script$
|
|
5391
|
+
script$k.install = (app) => {
|
|
5392
|
+
app.component(script$k.name, script$k);
|
|
5393
5393
|
};
|
|
5394
5394
|
|
|
5395
|
-
const defaultProps$
|
|
5395
|
+
const defaultProps$a = transformToComponentProps(componentsDefaultProps['uni-shape'].props, isEditingProp);
|
|
5396
5396
|
// array that contains style props
|
|
5397
|
-
var script$
|
|
5397
|
+
var script$j = vue.defineComponent({
|
|
5398
5398
|
name: 'uni-shape',
|
|
5399
5399
|
props: {
|
|
5400
|
-
...defaultProps$
|
|
5400
|
+
...defaultProps$a
|
|
5401
5401
|
},
|
|
5402
5402
|
setup(props) {
|
|
5403
5403
|
const styleProps = useStylePick(props);
|
|
@@ -5409,7 +5409,7 @@
|
|
|
5409
5409
|
}
|
|
5410
5410
|
});
|
|
5411
5411
|
|
|
5412
|
-
function render$
|
|
5412
|
+
function render$k(_ctx, _cache, $props, $setup, $data, $options) {
|
|
5413
5413
|
return (vue.openBlock(), vue.createElementBlock("div", {
|
|
5414
5414
|
onClick: _cache[0] || (_cache[0] = vue.withModifiers((...args) => (_ctx.handleClick && _ctx.handleClick(...args)), ["prevent"])),
|
|
5415
5415
|
style: vue.normalizeStyle(_ctx.styleProps),
|
|
@@ -5418,14 +5418,14 @@
|
|
|
5418
5418
|
}, null, 4 /* STYLE */))
|
|
5419
5419
|
}
|
|
5420
5420
|
|
|
5421
|
-
script$
|
|
5422
|
-
script$
|
|
5421
|
+
script$j.render = render$k;
|
|
5422
|
+
script$j.__file = "src/components/UniShape/UniShape.vue";
|
|
5423
5423
|
|
|
5424
|
-
script$
|
|
5425
|
-
app.component(script$
|
|
5424
|
+
script$j.install = (app) => {
|
|
5425
|
+
app.component(script$j.name, script$j);
|
|
5426
5426
|
};
|
|
5427
5427
|
|
|
5428
|
-
var script$
|
|
5428
|
+
var script$i = vue.defineComponent({
|
|
5429
5429
|
name: 'long-page',
|
|
5430
5430
|
props: {
|
|
5431
5431
|
work: {
|
|
@@ -5440,7 +5440,7 @@
|
|
|
5440
5440
|
|
|
5441
5441
|
const _hoisted_1$d = ["id"];
|
|
5442
5442
|
|
|
5443
|
-
function render$
|
|
5443
|
+
function render$j(_ctx, _cache, $props, $setup, $data, $options) {
|
|
5444
5444
|
return (vue.openBlock(), vue.createElementBlock("div", {
|
|
5445
5445
|
class: "final-page",
|
|
5446
5446
|
style: vue.normalizeStyle(_ctx.work && {width: _ctx.work.width, height: _ctx.work.height} )
|
|
@@ -5456,12 +5456,12 @@
|
|
|
5456
5456
|
], 4 /* STYLE */))
|
|
5457
5457
|
}
|
|
5458
5458
|
|
|
5459
|
-
script$
|
|
5460
|
-
script$
|
|
5459
|
+
script$i.render = render$j;
|
|
5460
|
+
script$i.__file = "src/components/LongPage/LongPage.vue";
|
|
5461
5461
|
|
|
5462
5462
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
5463
|
-
script$
|
|
5464
|
-
app.component(script$
|
|
5463
|
+
script$i.install = (app) => {
|
|
5464
|
+
app.component(script$i.name, script$i);
|
|
5465
5465
|
};
|
|
5466
5466
|
|
|
5467
5467
|
/**
|
|
@@ -12972,7 +12972,7 @@
|
|
|
12972
12972
|
}
|
|
12973
12973
|
return cssText;
|
|
12974
12974
|
}
|
|
12975
|
-
var script$
|
|
12975
|
+
var script$h = vue.defineComponent({
|
|
12976
12976
|
name: 'swiper-page',
|
|
12977
12977
|
props: {
|
|
12978
12978
|
work: {
|
|
@@ -13081,11 +13081,13 @@
|
|
|
13081
13081
|
_hoisted_4$4
|
|
13082
13082
|
];
|
|
13083
13083
|
|
|
13084
|
-
function render$
|
|
13084
|
+
function render$i(_ctx, _cache, $props, $setup, $data, $options) {
|
|
13085
13085
|
const _component_swiper_slide = vue.resolveComponent("swiper-slide");
|
|
13086
13086
|
const _component_swiper = vue.resolveComponent("swiper");
|
|
13087
13087
|
|
|
13088
13088
|
return (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$c, [
|
|
13089
|
+
vue.createCommentVNode(" <uni-tanmu v-if=\"work?.tanmu\" v-bind=\"{ publishContentID: work.uuid }\"/>"),
|
|
13090
|
+
vue.createCommentVNode(" <uni-music v-if=\"work?.music?.musicSrc\" v-bind=\"{ musicSrc: work?.music?.musicSrc }\"/>"),
|
|
13089
13091
|
vue.createVNode(_component_swiper, {
|
|
13090
13092
|
class: "swiper-container",
|
|
13091
13093
|
modules: _ctx.modules,
|
|
@@ -13130,44 +13132,10 @@
|
|
|
13130
13132
|
]))
|
|
13131
13133
|
}
|
|
13132
13134
|
|
|
13133
|
-
script$i.render = render$j;
|
|
13134
|
-
script$i.__file = "src/components/SwiperPage/SwiperPage.vue";
|
|
13135
|
-
|
|
13136
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
13137
|
-
script$i.install = (app) => {
|
|
13138
|
-
app.component(script$i.name, script$i);
|
|
13139
|
-
};
|
|
13140
|
-
|
|
13141
|
-
const defaultProps$a = transformToComponentProps(componentsDefaultProps['uni-background'].props, isEditingProp);
|
|
13142
|
-
const defaultStyles = Object.keys(backgroundDefaultProps);
|
|
13143
|
-
// array that contains style props
|
|
13144
|
-
var script$h = vue.defineComponent({
|
|
13145
|
-
name: 'uni-background',
|
|
13146
|
-
props: {
|
|
13147
|
-
...defaultProps$a
|
|
13148
|
-
},
|
|
13149
|
-
setup(props) {
|
|
13150
|
-
const styleProps = useStylePick(props, defaultStyles);
|
|
13151
|
-
const handleClick = useComponentClick(props);
|
|
13152
|
-
return {
|
|
13153
|
-
styleProps,
|
|
13154
|
-
handleClick
|
|
13155
|
-
};
|
|
13156
|
-
}
|
|
13157
|
-
});
|
|
13158
|
-
|
|
13159
|
-
function render$i(_ctx, _cache, $props, $setup, $data, $options) {
|
|
13160
|
-
return (vue.openBlock(), vue.createElementBlock("div", {
|
|
13161
|
-
onClick: _cache[0] || (_cache[0] = vue.withModifiers((...args) => (_ctx.handleClick && _ctx.handleClick(...args)), ["prevent"])),
|
|
13162
|
-
style: vue.normalizeStyle(_ctx.styleProps),
|
|
13163
|
-
class: "uni-background-component",
|
|
13164
|
-
draggable: false
|
|
13165
|
-
}, null, 4 /* STYLE */))
|
|
13166
|
-
}
|
|
13167
|
-
|
|
13168
13135
|
script$h.render = render$i;
|
|
13169
|
-
script$h.__file = "src/components/
|
|
13136
|
+
script$h.__file = "src/components/SwiperPage/SwiperPage.vue";
|
|
13170
13137
|
|
|
13138
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
13171
13139
|
script$h.install = (app) => {
|
|
13172
13140
|
app.component(script$h.name, script$h);
|
|
13173
13141
|
};
|
|
@@ -99191,12 +99159,12 @@ summary tabindex target title type usemap value width wmode wrap`;
|
|
|
99191
99159
|
|
|
99192
99160
|
// export { textDefaultProps , textStylePropNames, TextComponentProps,
|
|
99193
99161
|
const components = [
|
|
99194
|
-
script$m,
|
|
99195
99162
|
script$l,
|
|
99196
99163
|
script$k,
|
|
99197
99164
|
script$j,
|
|
99198
99165
|
script$i,
|
|
99199
99166
|
script$h,
|
|
99167
|
+
// UniBackground,
|
|
99200
99168
|
script$g,
|
|
99201
99169
|
script$f,
|
|
99202
99170
|
script$d,
|
|
@@ -99222,25 +99190,24 @@ summary tabindex target title type usemap value width wmode wrap`;
|
|
|
99222
99190
|
install
|
|
99223
99191
|
};
|
|
99224
99192
|
|
|
99225
|
-
exports.LongPage = script$
|
|
99226
|
-
exports.SwiperPage = script$
|
|
99227
|
-
exports.UniBackground = script$h;
|
|
99193
|
+
exports.LongPage = script$i;
|
|
99194
|
+
exports.SwiperPage = script$h;
|
|
99228
99195
|
exports.UniButton = script$3;
|
|
99229
99196
|
exports.UniCalendar = script$d;
|
|
99230
99197
|
exports.UniCall = script$9;
|
|
99231
99198
|
exports.UniCountdown = script$b;
|
|
99232
99199
|
exports.UniEffect = script$7;
|
|
99233
|
-
exports.UniImage = script$
|
|
99200
|
+
exports.UniImage = script$k;
|
|
99234
99201
|
exports.UniLike = script$8;
|
|
99235
99202
|
exports.UniLotties = script$5;
|
|
99236
99203
|
exports.UniMap = script$a;
|
|
99237
99204
|
exports.UniMusic = script$g;
|
|
99238
99205
|
exports.UniRegisterForm = script$6;
|
|
99239
|
-
exports.UniShape = script$
|
|
99206
|
+
exports.UniShape = script$j;
|
|
99240
99207
|
exports.UniSwiper = script$4;
|
|
99241
99208
|
exports.UniTanmu = script$1;
|
|
99242
99209
|
exports.UniTest = script;
|
|
99243
|
-
exports.UniText = script$
|
|
99210
|
+
exports.UniText = script$l;
|
|
99244
99211
|
exports.UniVideo = script$f;
|
|
99245
99212
|
exports["default"] = index;
|
|
99246
99213
|
exports.install = install;
|