@das-fed/ui 6.4.0-hot.55 → 6.4.0-hot.57
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/esm-map.json +3 -1
- package/package.json +5 -5
- package/packages/business-components/ai-panel/i18n/index.d.ts +8 -0
- package/packages/business-components/ai-panel/{index-BbtDXlR3.js → index-Bv4OyTc6.js} +1384 -1335
- package/packages/business-components/ai-panel/index-Bv4OyTc6.js.gz +0 -0
- package/packages/business-components/ai-panel/{index-DcsbACoj.js → index-tPlKi-vk.js} +1 -1
- package/packages/business-components/ai-panel/index-tPlKi-vk.js.gz +0 -0
- package/packages/business-components/ai-panel/index.js +1 -1
- package/packages/business-components/ai-panel/src/dasAI/apis.d.ts +1 -0
- package/packages/business-components/ai-panel/src/dasAI/store/index.d.ts +1 -0
- package/packages/business-components/ai-panel/style.css +1 -1
- package/packages/business-components/ai-panel/style.css.gz +0 -0
- package/packages/components/edit-table/index.d.ts +15 -15
- package/packages/components/edit-table/src/index.vue.d.ts +4 -4
- package/packages/components/hls-player/index.d.ts +158 -45
- package/packages/components/hls-player/index.js +2750 -2836
- package/packages/components/hls-player/index.js.gz +0 -0
- package/packages/components/hls-player/src/das-hls-player.vue.d.ts +37 -3
- package/packages/components/hls-player/src/type.d.ts +0 -3
- package/packages/components/hls-player/style.css +1 -1
- package/packages/components/hls-player/style.css.gz +0 -0
- package/packages/components/menu-header/index.d.ts +6 -0
- package/packages/components/menu-header/index.js +26 -31
- package/packages/components/menu-header/index.js.gz +0 -0
- package/packages/components/menu-header/src/Index.vue.d.ts +2 -0
- package/packages/components/menu-header/src/type.d.ts +6 -1
- package/packages/components/menu-header/style.css +1 -1
- package/packages/components/menu-header/style.css.gz +0 -0
- package/packages/components/select-list/index.d.ts +13 -13
- package/packages/components/select-list/index.js +390 -377
- package/packages/components/select-list/index.js.gz +0 -0
- package/packages/components/select-list/src/Index.vue.d.ts +12 -11
- package/packages/components/select-list/src/hooks/use-select-list.d.ts +1 -0
- package/packages/components/select-list/src/type.d.ts +1 -1
- package/packages/components/select-list/style.css +1 -1
- package/packages/components/select-list/style.css.gz +0 -0
- package/packages/icons/index.d.ts +2 -0
- package/packages/icons/index.js +2 -0
- package/packages/icons/tucao/index.d.ts +1 -0
- package/packages/icons/tucao/index.js +17 -0
- package/packages/icons/tucao/index.js.gz +0 -0
- package/packages/icons/tucao/index.vue.d.ts +19 -0
- package/packages/icons/tucao-2/index.d.ts +1 -0
- package/packages/icons/tucao-2/index.js +17 -0
- package/packages/icons/tucao-2/index.js.gz +0 -0
- package/packages/icons/tucao-2/index.vue.d.ts +19 -0
- package/packages/business-components/ai-panel/index-BbtDXlR3.js.gz +0 -0
- package/packages/business-components/ai-panel/index-DcsbACoj.js.gz +0 -0
- package/packages/components/hls-player/src/das-hls-player - /345/211/257/346/234/254.vue.d.ts" +0 -18
- package/packages/components/hls-player/src/das-hls-player-origin.vue.d.ts +0 -13
|
@@ -1,59 +1,172 @@
|
|
|
1
|
-
declare const DasHlsPlayer: import("@das-fed/utils").SFCWithInstall<
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
},
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
1
|
+
declare const DasHlsPlayer: import("@das-fed/utils").SFCWithInstall<{
|
|
2
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("./src/type.js").Props> & Readonly<{
|
|
3
|
+
onLoaded?: ((player: any) => any) | undefined;
|
|
4
|
+
onErrorClick?: (() => any) | undefined;
|
|
5
|
+
}>, {
|
|
6
|
+
video: import("vue").Ref<any, any>;
|
|
7
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
8
|
+
loaded: (player: any) => any;
|
|
9
|
+
errorClick: () => any;
|
|
10
|
+
}, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
11
|
+
P: {};
|
|
12
|
+
B: {};
|
|
13
|
+
D: {};
|
|
14
|
+
C: {};
|
|
15
|
+
M: {};
|
|
16
|
+
Defaults: {};
|
|
17
|
+
}, Readonly<import("./src/type.js").Props> & Readonly<{
|
|
18
|
+
onLoaded?: ((player: any) => any) | undefined;
|
|
19
|
+
onErrorClick?: (() => any) | undefined;
|
|
20
|
+
}>, {
|
|
21
|
+
video: import("vue").Ref<any, any>;
|
|
22
|
+
}, {}, {}, {}, {}>;
|
|
23
|
+
__isFragment?: never;
|
|
24
|
+
__isTeleport?: never;
|
|
25
|
+
__isSuspense?: never;
|
|
26
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("./src/type.js").Props> & Readonly<{
|
|
14
27
|
onLoaded?: ((player: any) => any) | undefined;
|
|
15
28
|
onErrorClick?: (() => any) | undefined;
|
|
16
29
|
}>, {
|
|
17
30
|
video: import("vue").Ref<any, any>;
|
|
18
31
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
19
|
-
error: (error: unknown) => any;
|
|
20
32
|
loaded: (player: any) => any;
|
|
21
33
|
errorClick: () => any;
|
|
22
|
-
},
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
34
|
+
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
35
|
+
$slots: {
|
|
36
|
+
error?: ((props: {}) => any) | undefined;
|
|
37
|
+
};
|
|
38
|
+
})>;
|
|
39
|
+
declare const getDasHlsPlayerRef: () => import("vue").Ref<({
|
|
40
|
+
$: import("vue").ComponentInternalInstance;
|
|
41
|
+
$data: {};
|
|
42
|
+
$props: {
|
|
43
|
+
readonly src?: string | undefined;
|
|
44
|
+
readonly config?: any;
|
|
45
|
+
readonly fit?: "contain" | "cover" | "fill" | "none" | "scale-down" | undefined;
|
|
46
|
+
readonly loading?: boolean | undefined;
|
|
47
|
+
readonly loadingText?: string | undefined;
|
|
48
|
+
readonly error?: boolean | undefined;
|
|
49
|
+
readonly errorText?: string | undefined;
|
|
50
|
+
readonly retryTime?: number | undefined;
|
|
51
|
+
readonly onLoaded?: ((player: any) => any) | undefined;
|
|
52
|
+
readonly onErrorClick?: (() => any) | undefined;
|
|
53
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
54
|
+
$attrs: {
|
|
55
|
+
[x: string]: unknown;
|
|
56
|
+
};
|
|
57
|
+
$refs: {
|
|
58
|
+
[x: string]: unknown;
|
|
59
|
+
};
|
|
60
|
+
$slots: Readonly<{
|
|
61
|
+
[name: string]: import("vue").Slot<any> | undefined;
|
|
62
|
+
}>;
|
|
63
|
+
$root: import("vue").ComponentPublicInstance | null;
|
|
64
|
+
$parent: import("vue").ComponentPublicInstance | null;
|
|
65
|
+
$host: Element | null;
|
|
66
|
+
$emit: ((event: "loaded", player: any) => void) & ((event: "errorClick") => void);
|
|
67
|
+
$el: any;
|
|
68
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("./src/type.js").Props> & Readonly<{
|
|
69
|
+
onLoaded?: ((player: any) => any) | undefined;
|
|
70
|
+
onErrorClick?: (() => any) | undefined;
|
|
71
|
+
}>, {
|
|
72
|
+
video: import("vue").Ref<any, any>;
|
|
73
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
74
|
+
loaded: (player: any) => any;
|
|
75
|
+
errorClick: () => any;
|
|
76
|
+
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
77
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
78
|
+
created?: (() => void) | (() => void)[];
|
|
79
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
80
|
+
mounted?: (() => void) | (() => void)[];
|
|
81
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
82
|
+
updated?: (() => void) | (() => void)[];
|
|
83
|
+
activated?: (() => void) | (() => void)[];
|
|
84
|
+
deactivated?: (() => void) | (() => void)[];
|
|
85
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
86
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
87
|
+
destroyed?: (() => void) | (() => void)[];
|
|
88
|
+
unmounted?: (() => void) | (() => void)[];
|
|
89
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
90
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
91
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
92
|
+
};
|
|
93
|
+
$forceUpdate: () => void;
|
|
94
|
+
$nextTick: typeof import("vue").nextTick;
|
|
95
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
96
|
+
} & Readonly<{}> & Omit<Readonly<import("./src/type.js").Props> & Readonly<{
|
|
31
97
|
onLoaded?: ((player: any) => any) | undefined;
|
|
32
98
|
onErrorClick?: (() => any) | undefined;
|
|
33
|
-
}>, {
|
|
99
|
+
}>, "video"> & import("vue").ShallowUnwrapRef<{
|
|
34
100
|
video: import("vue").Ref<any, any>;
|
|
35
|
-
}
|
|
36
|
-
|
|
101
|
+
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
102
|
+
$slots: {
|
|
103
|
+
error?: ((props: {}) => any) | undefined;
|
|
104
|
+
};
|
|
105
|
+
}) | null, ({
|
|
106
|
+
$: import("vue").ComponentInternalInstance;
|
|
107
|
+
$data: {};
|
|
108
|
+
$props: {
|
|
109
|
+
readonly src?: string | undefined;
|
|
110
|
+
readonly config?: any;
|
|
111
|
+
readonly fit?: "contain" | "cover" | "fill" | "none" | "scale-down" | undefined;
|
|
112
|
+
readonly loading?: boolean | undefined;
|
|
113
|
+
readonly loadingText?: string | undefined;
|
|
114
|
+
readonly error?: boolean | undefined;
|
|
115
|
+
readonly errorText?: string | undefined;
|
|
116
|
+
readonly retryTime?: number | undefined;
|
|
117
|
+
readonly onLoaded?: ((player: any) => any) | undefined;
|
|
118
|
+
readonly onErrorClick?: (() => any) | undefined;
|
|
119
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
120
|
+
$attrs: {
|
|
121
|
+
[x: string]: unknown;
|
|
122
|
+
};
|
|
123
|
+
$refs: {
|
|
124
|
+
[x: string]: unknown;
|
|
125
|
+
};
|
|
126
|
+
$slots: Readonly<{
|
|
127
|
+
[name: string]: import("vue").Slot<any> | undefined;
|
|
128
|
+
}>;
|
|
129
|
+
$root: import("vue").ComponentPublicInstance | null;
|
|
130
|
+
$parent: import("vue").ComponentPublicInstance | null;
|
|
131
|
+
$host: Element | null;
|
|
132
|
+
$emit: ((event: "loaded", player: any) => void) & ((event: "errorClick") => void);
|
|
133
|
+
$el: any;
|
|
134
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("./src/type.js").Props> & Readonly<{
|
|
135
|
+
onLoaded?: ((player: any) => any) | undefined;
|
|
136
|
+
onErrorClick?: (() => any) | undefined;
|
|
137
|
+
}>, {
|
|
138
|
+
video: import("vue").Ref<any, any>;
|
|
139
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
140
|
+
loaded: (player: any) => any;
|
|
141
|
+
errorClick: () => any;
|
|
142
|
+
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
143
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
144
|
+
created?: (() => void) | (() => void)[];
|
|
145
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
146
|
+
mounted?: (() => void) | (() => void)[];
|
|
147
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
148
|
+
updated?: (() => void) | (() => void)[];
|
|
149
|
+
activated?: (() => void) | (() => void)[];
|
|
150
|
+
deactivated?: (() => void) | (() => void)[];
|
|
151
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
152
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
153
|
+
destroyed?: (() => void) | (() => void)[];
|
|
154
|
+
unmounted?: (() => void) | (() => void)[];
|
|
155
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
156
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
157
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
158
|
+
};
|
|
159
|
+
$forceUpdate: () => void;
|
|
160
|
+
$nextTick: typeof import("vue").nextTick;
|
|
161
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
162
|
+
} & Readonly<{}> & Omit<Readonly<import("./src/type.js").Props> & Readonly<{
|
|
37
163
|
onLoaded?: ((player: any) => any) | undefined;
|
|
38
164
|
onErrorClick?: (() => any) | undefined;
|
|
39
|
-
}>, {
|
|
40
|
-
video: import("vue").Ref<any, any>;
|
|
41
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
42
|
-
error: (error: unknown) => any;
|
|
43
|
-
loaded: (player: any) => any;
|
|
44
|
-
errorClick: () => any;
|
|
45
|
-
}, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
46
|
-
P: {};
|
|
47
|
-
B: {};
|
|
48
|
-
D: {};
|
|
49
|
-
C: {};
|
|
50
|
-
M: {};
|
|
51
|
-
Defaults: {};
|
|
52
|
-
}, Readonly<import("./src/type.js").Props> & Readonly<{
|
|
53
|
-
onError?: ((error: unknown) => any) | undefined;
|
|
54
|
-
onLoaded?: ((player: any) => any) | undefined;
|
|
55
|
-
onErrorClick?: (() => any) | undefined;
|
|
56
|
-
}>, {
|
|
165
|
+
}>, "video"> & import("vue").ShallowUnwrapRef<{
|
|
57
166
|
video: import("vue").Ref<any, any>;
|
|
58
|
-
}
|
|
167
|
+
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
168
|
+
$slots: {
|
|
169
|
+
error?: ((props: {}) => any) | undefined;
|
|
170
|
+
};
|
|
171
|
+
}) | null>;
|
|
59
172
|
export { DasHlsPlayer, getDasHlsPlayerRef };
|