@bluepic/embed 0.4.0-next.124 → 0.4.0-next.125
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/bluepic-embed.iife.js +73 -73
- package/dist/bluepic-embed.umd.js +64 -64
- package/dist/components/BxAudioPlayButton.vue.d.ts +24 -0
- package/dist/main.cjs +65 -65
- package/dist/main.d.ts +2 -1
- package/dist/main.mjs +6086 -6006
- package/dist/style.css +1 -1
- package/dist/util/audioPreview.d.ts +4 -2
- package/package.json +2 -2
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The round play/pause control that sits in the middle of an audio card, with
|
|
3
|
+
* its own progress ring.
|
|
4
|
+
*
|
|
5
|
+
* Lives in the embed so the studio library and the portal show the SAME control
|
|
6
|
+
* — the two surfaces render audio assets side by side in a user's mind, and a
|
|
7
|
+
* different affordance in each is how they drift apart.
|
|
8
|
+
*/
|
|
9
|
+
type __VLS_Props = {
|
|
10
|
+
playing?: boolean;
|
|
11
|
+
loading?: boolean;
|
|
12
|
+
/** 0–1. */
|
|
13
|
+
progress?: number;
|
|
14
|
+
};
|
|
15
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
16
|
+
toggle: () => any;
|
|
17
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
18
|
+
onToggle?: (() => any) | undefined;
|
|
19
|
+
}>, {
|
|
20
|
+
playing: boolean;
|
|
21
|
+
progress: number;
|
|
22
|
+
loading: boolean;
|
|
23
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
|
+
export default _default;
|