unika-components 1.0.188 → 1.0.190
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/components/UniMusic/UniMusic.vue.d.ts +4 -19
- package/dist/src/defaultProps.d.ts +4 -38
- package/dist/src/index.d.ts +2 -1
- package/dist/unika-components.css +448 -322
- package/dist/unika-components.esm.js +195 -59
- package/dist/unika-components.umd.js +198 -61
- package/package.json +1 -1
|
@@ -1,28 +1,13 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
|
|
3
|
-
type: BooleanConstructor;
|
|
4
|
-
default: boolean;
|
|
5
|
-
};
|
|
6
|
-
musicSrc: {
|
|
7
|
-
type: StringConstructor;
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
2
|
+
[x: string]: any;
|
|
10
3
|
}, {
|
|
11
4
|
styleProps: import("vue").ComputedRef<Pick<any, string>>;
|
|
12
5
|
handleClick: () => void;
|
|
13
|
-
isPlaying: import("vue").Ref<
|
|
6
|
+
isPlaying: import("vue").Ref<any>;
|
|
14
7
|
togglePlay: () => void;
|
|
15
8
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
16
|
-
|
|
17
|
-
type: BooleanConstructor;
|
|
18
|
-
default: boolean;
|
|
19
|
-
};
|
|
20
|
-
musicSrc: {
|
|
21
|
-
type: StringConstructor;
|
|
22
|
-
default: string;
|
|
23
|
-
};
|
|
9
|
+
[x: string]: any;
|
|
24
10
|
}>>, {
|
|
25
|
-
|
|
26
|
-
musicSrc: string;
|
|
11
|
+
[x: string]: any;
|
|
27
12
|
}, {}>;
|
|
28
13
|
export default _default;
|
|
@@ -202,28 +202,11 @@ export declare const backgroundDefaultProps: {
|
|
|
202
202
|
display: string;
|
|
203
203
|
};
|
|
204
204
|
export declare const musicDefaultProps: {
|
|
205
|
-
actionType: string;
|
|
206
|
-
url: string;
|
|
207
|
-
height: string;
|
|
208
|
-
width: string;
|
|
209
|
-
paddingLeft: string;
|
|
210
|
-
paddingRight: string;
|
|
211
|
-
paddingTop: string;
|
|
212
|
-
paddingBottom: string;
|
|
213
|
-
borderStyle: string;
|
|
214
|
-
borderColor: string;
|
|
215
|
-
borderWidth: string;
|
|
216
|
-
borderRadius: string;
|
|
217
|
-
boxShadow: string;
|
|
218
|
-
opacity: number;
|
|
219
|
-
position: string;
|
|
220
|
-
left: string;
|
|
221
|
-
top: string;
|
|
222
|
-
right: string;
|
|
223
|
-
transform: string;
|
|
224
205
|
musicSrc: string;
|
|
225
206
|
name: string;
|
|
226
207
|
isPlaying: boolean;
|
|
208
|
+
icon: string;
|
|
209
|
+
backgroundColor: string;
|
|
227
210
|
};
|
|
228
211
|
export declare const videoDefaultProps: {
|
|
229
212
|
left: string;
|
|
@@ -562,28 +545,11 @@ export declare const componentsDefaultProps: {
|
|
|
562
545
|
};
|
|
563
546
|
'uni-music': {
|
|
564
547
|
props: {
|
|
565
|
-
actionType: string;
|
|
566
|
-
url: string;
|
|
567
|
-
height: string;
|
|
568
|
-
width: string;
|
|
569
|
-
paddingLeft: string;
|
|
570
|
-
paddingRight: string;
|
|
571
|
-
paddingTop: string;
|
|
572
|
-
paddingBottom: string;
|
|
573
|
-
borderStyle: string;
|
|
574
|
-
borderColor: string;
|
|
575
|
-
borderWidth: string;
|
|
576
|
-
borderRadius: string;
|
|
577
|
-
boxShadow: string;
|
|
578
|
-
opacity: number;
|
|
579
|
-
position: string;
|
|
580
|
-
left: string;
|
|
581
|
-
top: string;
|
|
582
|
-
right: string;
|
|
583
|
-
transform: string;
|
|
584
548
|
musicSrc: string;
|
|
585
549
|
name: string;
|
|
586
550
|
isPlaying: boolean;
|
|
551
|
+
icon: string;
|
|
552
|
+
backgroundColor: string;
|
|
587
553
|
};
|
|
588
554
|
};
|
|
589
555
|
'uni-video': {
|
package/dist/src/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ import UniShape from './components/UniShape';
|
|
|
5
5
|
import LongPage from './components/LongPage';
|
|
6
6
|
import SwiperPage from './components/SwiperPage';
|
|
7
7
|
import UniBackground from './components/UniBackground';
|
|
8
|
+
import UniMusic from './components/UniMusic';
|
|
8
9
|
import UniVideo from './components/UniVideo';
|
|
9
10
|
import UniCalendar from './components/UniCalendar';
|
|
10
11
|
import UniCountdown from './components/UniCountdown';
|
|
@@ -20,7 +21,7 @@ import UniBulidUp from './components/UniBulidUp';
|
|
|
20
21
|
import UniTest from './components/UniTest';
|
|
21
22
|
import UniSvg from './components/UniSvg';
|
|
22
23
|
declare const install: (app: App) => void;
|
|
23
|
-
export { UniText, UniImage, UniShape, LongPage, SwiperPage, UniBackground, UniVideo, UniCalendar, UniCountdown, UniMap, UniCall, UniLike, UniEffect, UniRegisterForm, UniLotties, UniSwiper, UniButton, UniBulidUp, UniSvg, UniTest, install };
|
|
24
|
+
export { UniText, UniImage, UniShape, LongPage, SwiperPage, UniBackground, UniMusic, UniVideo, UniCalendar, UniCountdown, UniMap, UniCall, UniLike, UniEffect, UniRegisterForm, UniLotties, UniSwiper, UniButton, UniBulidUp, UniSvg, UniTest, install };
|
|
24
25
|
declare const _default: {
|
|
25
26
|
install: (app: App<any>) => void;
|
|
26
27
|
};
|