@94ai/nf-audio 3.1.35

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,51 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ audioSrc: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ backSecond: {
7
+ type: NumberConstructor;
8
+ default: number;
9
+ };
10
+ forwardSecond: {
11
+ type: NumberConstructor;
12
+ default: number;
13
+ };
14
+ startTime: {
15
+ type: NumberConstructor;
16
+ default: number;
17
+ };
18
+ }, {}, {
19
+ duration: string;
20
+ currentDuration: string;
21
+ audio: string;
22
+ volume: number;
23
+ paused: boolean;
24
+ showVolumePanel: boolean;
25
+ volumeVisible: boolean;
26
+ volumeValue: number;
27
+ speed: number;
28
+ }, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
29
+ audioSrc: {
30
+ type: StringConstructor;
31
+ default: string;
32
+ };
33
+ backSecond: {
34
+ type: NumberConstructor;
35
+ default: number;
36
+ };
37
+ forwardSecond: {
38
+ type: NumberConstructor;
39
+ default: number;
40
+ };
41
+ startTime: {
42
+ type: NumberConstructor;
43
+ default: number;
44
+ };
45
+ }>>, {
46
+ audioSrc: string;
47
+ backSecond: number;
48
+ forwardSecond: number;
49
+ startTime: number;
50
+ }>;
51
+ export default _default;
@@ -0,0 +1 @@
1
+
@@ -0,0 +1 @@
1
+ import '@94ai/nf-theme-chalk/lib/css/nf-audio.css'
@@ -0,0 +1 @@
1
+
@@ -0,0 +1 @@
1
+ import '@94ai/nf-theme-chalk/lib/nf-audio.scss'
@@ -0,0 +1,14 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {
2
+ showPopper: typeof showPopper;
3
+ $props: {
4
+ readonly visible?: string | boolean | undefined;
5
+ };
6
+ $emit: (event: "update:visible", ...args: any[]) => void;
7
+ }, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{}>>, {}>, {
8
+ reference?(_: {}): any;
9
+ default?(_: {}): any;
10
+ }>;
11
+ export default _default;
12
+ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
13
+ $slots: S;
14
+ });
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "@94ai/nf-audio",
3
+ "version": "3.1.35",
4
+ "description": "> TODO: description",
5
+ "keywords": [],
6
+ "author": "liuxiangxiang <liuxiangxiang@94ai.com>",
7
+ "homepage": "https://oss.xccjh.top/common-ui/#/ai-index",
8
+ "license": "ISC",
9
+ "publishConfig": {
10
+ "access": "public"
11
+ },
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "http://94ai.gitlab.com/zoujiahe/common-ui.git"
15
+ },
16
+ "dependencies": {
17
+ "@94ai/nf-theme-chalk": "^3.1.35",
18
+ "vue-demi": "^0.14.5"
19
+ },
20
+ "peerDependenciesMeta": {
21
+ "@vue/composition-api": {
22
+ "optional": true
23
+ }
24
+ },
25
+ "peerDependencies": {
26
+ "@vue/composition-api": "^1.0.0-rc.1",
27
+ "element-ui": ">=2.13.2",
28
+ "vue": "^2.0.0 || >=3.0.0"
29
+ },
30
+ "types": "lib/index.d.ts",
31
+ "main": "lib/nf-audio.cjs.js",
32
+ "module": "lib/nf-audio.esm-bundler.js",
33
+ "gitHead": "5e4e042c5260d792a167207a3c88c76aa264821d"
34
+ }
@@ -0,0 +1,8 @@
1
+ export default {
2
+ plugins: {
3
+ // 这个工具可以实现自动添加CSS3前缀
4
+ autoprefixer: {
5
+ overrideBrowserslist: ['last 5 version', '>1%', 'ie >=8']
6
+ },
7
+ },
8
+ }