test-bentoweb-ui 1.0.73 → 1.0.75
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/bentoweb-ui.css +2 -6
- package/dist/bentoweb-ui.es.js +21 -22411
- package/dist/bentoweb-ui.umd.js +639 -15
- package/dist/errors-DCJKAXTz.js +70 -0
- package/dist/index-CJNQa9oe.js +35674 -0
- package/dist/prod-DTLJXtPo.js +994 -0
- package/dist/srt-parser-CWqahKwO.js +27 -0
- package/dist/ssa-parser-BqjjKy4M.js +209 -0
- package/dist/vidstack-BTigPj2h-D_5mpAw4.js +55 -0
- package/dist/vidstack-Bq6c3Bam-ajJxDr7M.js +413 -0
- package/dist/vidstack-D2pY00kU-DWwZEB1N.js +138 -0
- package/dist/vidstack-DDXt6fpN-BeN5Ad9F.js +60 -0
- package/dist/vidstack-D_-9AA6_-BuzH0TZC.js +20 -0
- package/dist/vidstack-Dm1xEU9Q-qSXq3AI-.js +31 -0
- package/dist/vidstack-DqAw8m9J-C-yN2xmu.js +29 -0
- package/dist/vidstack-audio-yjQusryw.js +32 -0
- package/dist/vidstack-dash-C4POZ3R2.js +403 -0
- package/dist/vidstack-google-cast-D-pvs1aK.js +377 -0
- package/dist/vidstack-hls-B2397RGn.js +324 -0
- package/dist/vidstack-krOAtKMi-B4IZWKdc.js +29 -0
- package/dist/vidstack-video-YYohV9Kw.js +181 -0
- package/dist/vidstack-vimeo-CkoazTKm.js +434 -0
- package/dist/vidstack-youtube-Dx-0kw3S.js +236 -0
- package/package.json +1 -1
@@ -0,0 +1,70 @@
|
|
1
|
+
import { P as a, c as t } from "./prod-DTLJXtPo.js";
|
2
|
+
const i = {
|
3
|
+
r() {
|
4
|
+
return new a({
|
5
|
+
code: t.BadSignature,
|
6
|
+
reason: "missing WEBVTT file header",
|
7
|
+
line: 1
|
8
|
+
});
|
9
|
+
},
|
10
|
+
s(n, e) {
|
11
|
+
return new a({
|
12
|
+
code: t.BadTimestamp,
|
13
|
+
reason: `cue start timestamp \`${n}\` is invalid on line ${e}`,
|
14
|
+
line: e
|
15
|
+
});
|
16
|
+
},
|
17
|
+
t(n, e) {
|
18
|
+
return new a({
|
19
|
+
code: t.BadTimestamp,
|
20
|
+
reason: `cue end timestamp \`${n}\` is invalid on line ${e}`,
|
21
|
+
line: e
|
22
|
+
});
|
23
|
+
},
|
24
|
+
u(n, e, r) {
|
25
|
+
return new a({
|
26
|
+
code: t.BadTimestamp,
|
27
|
+
reason: `cue end timestamp \`${e}\` is greater than start \`${n}\` on line ${r}`,
|
28
|
+
line: r
|
29
|
+
});
|
30
|
+
},
|
31
|
+
y(n, e, r) {
|
32
|
+
return new a({
|
33
|
+
code: t.BadSettingValue,
|
34
|
+
reason: `invalid value for cue setting \`${n}\` on line ${r} (value: ${e})`,
|
35
|
+
line: r
|
36
|
+
});
|
37
|
+
},
|
38
|
+
x(n, e, r) {
|
39
|
+
return new a({
|
40
|
+
code: t.UnknownSetting,
|
41
|
+
reason: `unknown cue setting \`${n}\` on line ${r} (value: ${e})`,
|
42
|
+
line: r
|
43
|
+
});
|
44
|
+
},
|
45
|
+
w(n, e, r) {
|
46
|
+
return new a({
|
47
|
+
code: t.BadSettingValue,
|
48
|
+
reason: `invalid value for region setting \`${n}\` on line ${r} (value: ${e})`,
|
49
|
+
line: r
|
50
|
+
});
|
51
|
+
},
|
52
|
+
v(n, e, r) {
|
53
|
+
return new a({
|
54
|
+
code: t.UnknownSetting,
|
55
|
+
reason: `unknown region setting \`${n}\` on line ${r} (value: ${e})`,
|
56
|
+
line: r
|
57
|
+
});
|
58
|
+
},
|
59
|
+
// SSA-specific errors
|
60
|
+
T(n, e) {
|
61
|
+
return new a({
|
62
|
+
code: t.BadFormat,
|
63
|
+
reason: `format missing for \`${n}\` block on line ${e}`,
|
64
|
+
line: e
|
65
|
+
});
|
66
|
+
}
|
67
|
+
};
|
68
|
+
export {
|
69
|
+
i as ParseErrorBuilder
|
70
|
+
};
|