@htmlbricks/hb-player-live 0.17.0 → 0.17.4

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/extra/docs.ts CHANGED
@@ -2,13 +2,18 @@ import type { CssPart, CssVar, HtmlSlot, i18nLang, StyleSetup, ComponentSetup }
2
2
  import type { Component } from "../app/types/webcomponent.type";
3
3
 
4
4
  export const storybookArgs = {
5
- width: { control: { type: "range", min: 100, max: 2000, step: 25 } },
6
- height: { control: { type: "range", min: 100, max: 2000, step: 25 } },
7
- mediatype: { control: { type: "text" } },
5
+ // width: { control: { type: "text" } },
6
+ // height: { control: { type: "text" } },
7
+ media_type: {
8
+ options: ["", "webrtc", "hls", "auto"],
9
+ control: { type: "select" }, // Automatically inferred when 'options' is defined
10
+ },
11
+ no_controls: { control: { type: "boolean" } },
8
12
  mediauri: { control: { type: "text" } },
9
13
  forcecover: { control: { type: "text" } },
10
14
  replacewithtext: { control: { type: "object" } },
11
15
  liveStatus: { action: "liveStatusEvent" },
16
+ htmlVideoInit: { action: "htmlVideoInitEvent" },
12
17
  };
13
18
 
14
19
  const cssVars: CssVar[] = [];
@@ -25,6 +30,20 @@ export const styleSetup: StyleSetup = {
25
30
  parts: cssParts,
26
31
  };
27
32
 
33
+ const mediauri = "https://test-streams.mux.dev/x36xhzz/x36xhzz.m3u8";
34
+ const replacewithtext1 = {
35
+ title: "title",
36
+ };
37
+ const replacewithtext2 = {
38
+ title: "title",
39
+ subtitle: "subtitle",
40
+ };
41
+ const replacewithtext3 = {
42
+ title: "title",
43
+ subtitle: "subtitle",
44
+ text: "text",
45
+ };
46
+
28
47
  const examples: { name: string; description?: string; data: Component }[] = [
29
48
  {
30
49
  name: "default",
@@ -32,6 +51,48 @@ const examples: { name: string; description?: string; data: Component }[] = [
32
51
  mediauri: "https://test-streams.mux.dev/x36xhzz/x36xhzz.m3u8",
33
52
  },
34
53
  },
54
+ {
55
+ name: "LiveVideoPlayerWithWidth",
56
+ data: {
57
+ mediauri,
58
+ },
59
+ },
60
+ {
61
+ name: "LiveVideoPlayerWithHeight",
62
+ data: {
63
+ mediauri,
64
+ },
65
+ },
66
+ {
67
+ name: "LiveVideoPlayerWithoutUri",
68
+ data: {
69
+ mediauri: "",
70
+ },
71
+ },
72
+ {
73
+ name: "LiveVideoPlayerWithText3",
74
+ data: {
75
+ mediauri,
76
+ replacewithtext: replacewithtext3,
77
+ forcecover: "yes",
78
+ },
79
+ },
80
+ {
81
+ name: "LiveVideoPlayerWithText2",
82
+ data: {
83
+ mediauri,
84
+ replacewithtext: replacewithtext2,
85
+ forcecover: "yes",
86
+ },
87
+ },
88
+ {
89
+ name: "LiveVideoPlayerWithText1",
90
+ data: {
91
+ mediauri,
92
+ replacewithtext: replacewithtext1,
93
+ forcecover: "yes",
94
+ },
95
+ },
35
96
  ];
36
97
  export const componentSetup: ComponentSetup & { examples: { name: string; description?: string; data: Component }[] } = {
37
98
  definitions: null as any,
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@htmlbricks/hb-player-live",
3
3
  "displayName": "Svelte Boostrap Pagination WebComponent",
4
4
  "description": "Svelte Boostrap Pagination WebComponent",
5
- "version": "0.17.0",
5
+ "version": "0.17.4",
6
6
  "main": "release/release.js",
7
7
  "publishConfig": {
8
8
  "access": "public"
@@ -30,7 +30,7 @@
30
30
  "prepublish": "npm run build:release"
31
31
  },
32
32
  "devDependencies": {
33
- "@htmlbricks/hb-jsutils": "^0.17.0",
33
+ "@htmlbricks/hb-jsutils": "^0.17.4",
34
34
  "@htmlbricks/manifester": "^0.0.22",
35
35
  "@rollup/plugin-alias": "^3.1.2",
36
36
  "@rollup/plugin-commonjs": "^18.0.0",
@@ -76,8 +76,9 @@
76
76
  "html5-webcomponents"
77
77
  ],
78
78
  "contributors": [],
79
- "gitHead": "fc2ca7b1dd831146477e244772b6d04ec7c0b69c",
79
+ "gitHead": "11d281ddc569bf7ca342667c664c14ceb37c9a8a",
80
80
  "dependencies": {
81
- "hls.js": "^1.0.10"
81
+ "hls.js": "^1.0.10",
82
+ "simple-webrtc-element": "^0.0.1"
82
83
  }
83
84
  }
package/release/docs.js CHANGED
@@ -1,11 +1,16 @@
1
1
  export var storybookArgs = {
2
- width: { control: { type: "range", min: 100, max: 2000, step: 25 } },
3
- height: { control: { type: "range", min: 100, max: 2000, step: 25 } },
4
- mediatype: { control: { type: "text" } },
2
+ // width: { control: { type: "text" } },
3
+ // height: { control: { type: "text" } },
4
+ media_type: {
5
+ options: ["", "webrtc", "hls", "auto"],
6
+ control: { type: "select" }
7
+ },
8
+ no_controls: { control: { type: "boolean" } },
5
9
  mediauri: { control: { type: "text" } },
6
10
  forcecover: { control: { type: "text" } },
7
11
  replacewithtext: { control: { type: "object" } },
8
- liveStatus: { action: "liveStatusEvent" }
12
+ liveStatus: { action: "liveStatusEvent" },
13
+ htmlVideoInit: { action: "htmlVideoInitEvent" }
9
14
  };
10
15
  var cssVars = [];
11
16
  export var cssParts = [
@@ -19,6 +24,19 @@ export var styleSetup = {
19
24
  vars: cssVars,
20
25
  parts: cssParts
21
26
  };
27
+ var mediauri = "https://test-streams.mux.dev/x36xhzz/x36xhzz.m3u8";
28
+ var replacewithtext1 = {
29
+ title: "title"
30
+ };
31
+ var replacewithtext2 = {
32
+ title: "title",
33
+ subtitle: "subtitle"
34
+ };
35
+ var replacewithtext3 = {
36
+ title: "title",
37
+ subtitle: "subtitle",
38
+ text: "text"
39
+ };
22
40
  var examples = [
23
41
  {
24
42
  name: "default",
@@ -26,6 +44,48 @@ var examples = [
26
44
  mediauri: "https://test-streams.mux.dev/x36xhzz/x36xhzz.m3u8"
27
45
  }
28
46
  },
47
+ {
48
+ name: "LiveVideoPlayerWithWidth",
49
+ data: {
50
+ mediauri: mediauri
51
+ }
52
+ },
53
+ {
54
+ name: "LiveVideoPlayerWithHeight",
55
+ data: {
56
+ mediauri: mediauri
57
+ }
58
+ },
59
+ {
60
+ name: "LiveVideoPlayerWithoutUri",
61
+ data: {
62
+ mediauri: ""
63
+ }
64
+ },
65
+ {
66
+ name: "LiveVideoPlayerWithText3",
67
+ data: {
68
+ mediauri: mediauri,
69
+ replacewithtext: replacewithtext3,
70
+ forcecover: "yes"
71
+ }
72
+ },
73
+ {
74
+ name: "LiveVideoPlayerWithText2",
75
+ data: {
76
+ mediauri: mediauri,
77
+ replacewithtext: replacewithtext2,
78
+ forcecover: "yes"
79
+ }
80
+ },
81
+ {
82
+ name: "LiveVideoPlayerWithText1",
83
+ data: {
84
+ mediauri: mediauri,
85
+ replacewithtext: replacewithtext1,
86
+ forcecover: "yes"
87
+ }
88
+ },
29
89
  ];
30
90
  export var componentSetup = {
31
91
  definitions: null,
@@ -1 +1 @@
1
- {"version":3,"file":"docs.js","sourceRoot":"","sources":["../extra/docs.ts"],"names":[],"mappings":"AAGA,MAAM,CAAC,IAAM,aAAa,GAAG;IAC5B,KAAK,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE;IACpE,MAAM,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE;IACrE,SAAS,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE;IACxC,QAAQ,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE;IACvC,UAAU,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE;IACzC,eAAe,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE;IAChD,UAAU,EAAE,EAAE,MAAM,EAAE,iBAAiB,EAAE;CACzC,CAAC;AAEF,IAAM,OAAO,GAAa,EAAE,CAAC;AAC7B,MAAM,CAAC,IAAM,QAAQ,GAAc;IAClC,EAAE,IAAI,EAAE,WAAW,EAAE,WAAW,EAAE,EAAE,EAAE;IACtC,EAAE,IAAI,EAAE,iBAAiB,EAAE,WAAW,EAAE,EAAE,EAAE;IAC5C,EAAE,IAAI,EAAE,OAAO,EAAE,WAAW,EAAE,EAAE,EAAE;CAClC,CAAC;AACF,MAAM,CAAC,IAAM,SAAS,GAAe,EAAE,CAAC;AACxC,MAAM,CAAC,IAAM,aAAa,GAAe,EAAE,CAAC;AAE5C,MAAM,CAAC,IAAM,UAAU,GAAe;IACrC,IAAI,EAAE,OAAO;IACb,KAAK,EAAE,QAAQ;CACf,CAAC;AAEF,IAAM,QAAQ,GAA8D;IAC3E;QACC,IAAI,EAAE,SAAS;QACf,IAAI,EAAE;YACL,QAAQ,EAAE,mDAAmD;SAC7D;KACD;CACD,CAAC;AACF,MAAM,CAAC,IAAM,cAAc,GAA6F;IACvH,WAAW,EAAE,IAAW;IACxB,aAAa,eAAA;IACb,UAAU,YAAA;IACV,MAAM,EAAE,IAAW;IACnB,YAAY,EAAE,EAAE;IAChB,KAAK,EAAE,IAAW;IAClB,SAAS,WAAA;IACT,IAAI,EAAE,aAAa;IACnB,QAAQ,UAAA;IACR,WAAW,EAAE,EAAE;IACf,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAChF,UAAU,EAAE,WAAW;IACvB,IAAI,EAAE,gBAAgB;IACtB,QAAQ,EAAE,OAAO;IACjB,IAAI,EAAE,CAAC,OAAO,CAAC;IACf,IAAI,EAAE,EAAE;IACR,QAAQ,EAAE,oBAAoB;IAC9B,QAAQ,EAAE,4BAA4B;IACtC,OAAO,EAAE,IAAW;CACpB,CAAC"}
1
+ {"version":3,"file":"docs.js","sourceRoot":"","sources":["../extra/docs.ts"],"names":[],"mappings":"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"}
package/release/docs.ts CHANGED
@@ -2,13 +2,18 @@ import type { CssPart, CssVar, HtmlSlot, i18nLang, StyleSetup, ComponentSetup }
2
2
  import type { Component } from "../app/types/webcomponent.type";
3
3
 
4
4
  export const storybookArgs = {
5
- width: { control: { type: "range", min: 100, max: 2000, step: 25 } },
6
- height: { control: { type: "range", min: 100, max: 2000, step: 25 } },
7
- mediatype: { control: { type: "text" } },
5
+ // width: { control: { type: "text" } },
6
+ // height: { control: { type: "text" } },
7
+ media_type: {
8
+ options: ["", "webrtc", "hls", "auto"],
9
+ control: { type: "select" }, // Automatically inferred when 'options' is defined
10
+ },
11
+ no_controls: { control: { type: "boolean" } },
8
12
  mediauri: { control: { type: "text" } },
9
13
  forcecover: { control: { type: "text" } },
10
14
  replacewithtext: { control: { type: "object" } },
11
15
  liveStatus: { action: "liveStatusEvent" },
16
+ htmlVideoInit: { action: "htmlVideoInitEvent" },
12
17
  };
13
18
 
14
19
  const cssVars: CssVar[] = [];
@@ -25,6 +30,20 @@ export const styleSetup: StyleSetup = {
25
30
  parts: cssParts,
26
31
  };
27
32
 
33
+ const mediauri = "https://test-streams.mux.dev/x36xhzz/x36xhzz.m3u8";
34
+ const replacewithtext1 = {
35
+ title: "title",
36
+ };
37
+ const replacewithtext2 = {
38
+ title: "title",
39
+ subtitle: "subtitle",
40
+ };
41
+ const replacewithtext3 = {
42
+ title: "title",
43
+ subtitle: "subtitle",
44
+ text: "text",
45
+ };
46
+
28
47
  const examples: { name: string; description?: string; data: Component }[] = [
29
48
  {
30
49
  name: "default",
@@ -32,6 +51,48 @@ const examples: { name: string; description?: string; data: Component }[] = [
32
51
  mediauri: "https://test-streams.mux.dev/x36xhzz/x36xhzz.m3u8",
33
52
  },
34
53
  },
54
+ {
55
+ name: "LiveVideoPlayerWithWidth",
56
+ data: {
57
+ mediauri,
58
+ },
59
+ },
60
+ {
61
+ name: "LiveVideoPlayerWithHeight",
62
+ data: {
63
+ mediauri,
64
+ },
65
+ },
66
+ {
67
+ name: "LiveVideoPlayerWithoutUri",
68
+ data: {
69
+ mediauri: "",
70
+ },
71
+ },
72
+ {
73
+ name: "LiveVideoPlayerWithText3",
74
+ data: {
75
+ mediauri,
76
+ replacewithtext: replacewithtext3,
77
+ forcecover: "yes",
78
+ },
79
+ },
80
+ {
81
+ name: "LiveVideoPlayerWithText2",
82
+ data: {
83
+ mediauri,
84
+ replacewithtext: replacewithtext2,
85
+ forcecover: "yes",
86
+ },
87
+ },
88
+ {
89
+ name: "LiveVideoPlayerWithText1",
90
+ data: {
91
+ mediauri,
92
+ replacewithtext: replacewithtext1,
93
+ forcecover: "yes",
94
+ },
95
+ },
35
96
  ];
36
97
  export const componentSetup: ComponentSetup & { examples: { name: string; description?: string; data: Component }[] } = {
37
98
  definitions: null as any,
@@ -7,21 +7,40 @@
7
7
  "Events": {
8
8
  "additionalProperties": false,
9
9
  "properties": {
10
+ "htmlVideoInit": {
11
+ "additionalProperties": false,
12
+ "properties": {
13
+ "id": {
14
+ "type": "string"
15
+ },
16
+ "video": {}
17
+ },
18
+ "required": [
19
+ "video",
20
+ "id"
21
+ ],
22
+ "type": "object"
23
+ },
10
24
  "liveStatus": {
11
25
  "additionalProperties": false,
12
26
  "properties": {
27
+ "id": {
28
+ "type": "string"
29
+ },
13
30
  "live": {
14
31
  "type": "boolean"
15
32
  }
16
33
  },
17
34
  "required": [
18
- "live"
35
+ "live",
36
+ "id"
19
37
  ],
20
38
  "type": "object"
21
39
  }
22
40
  },
23
41
  "required": [
24
- "liveStatus"
42
+ "liveStatus",
43
+ "htmlVideoInit"
25
44
  ],
26
45
  "type": "object"
27
46
  }
@@ -40,9 +59,20 @@
40
59
  "id": {
41
60
  "type": "string"
42
61
  },
62
+ "media_type": {
63
+ "enum": [
64
+ "hls",
65
+ "webrtc",
66
+ "auto"
67
+ ],
68
+ "type": "string"
69
+ },
43
70
  "mediauri": {
44
71
  "type": "string"
45
72
  },
73
+ "no_controls": {
74
+ "type": "boolean"
75
+ },
46
76
  "replacewithtext": {
47
77
  "additionalProperties": false,
48
78
  "properties": {
@@ -57,9 +87,7 @@
57
87
  }
58
88
  },
59
89
  "required": [
60
- "title",
61
- "subtitle",
62
- "text"
90
+ "title"
63
91
  ],
64
92
  "type": "object"
65
93
  },
@@ -76,25 +104,20 @@
76
104
  }
77
105
  },
78
106
  "storybookArgs": {
79
- "width": {
107
+ "media_type": {
108
+ "options": [
109
+ "",
110
+ "webrtc",
111
+ "hls",
112
+ "auto"
113
+ ],
80
114
  "control": {
81
- "type": "range",
82
- "min": 100,
83
- "max": 2000,
84
- "step": 25
115
+ "type": "select"
85
116
  }
86
117
  },
87
- "height": {
118
+ "no_controls": {
88
119
  "control": {
89
- "type": "range",
90
- "min": 100,
91
- "max": 2000,
92
- "step": 25
93
- }
94
- },
95
- "mediatype": {
96
- "control": {
97
- "type": "text"
120
+ "type": "boolean"
98
121
  }
99
122
  },
100
123
  "mediauri": {
@@ -114,6 +137,9 @@
114
137
  },
115
138
  "liveStatus": {
116
139
  "action": "liveStatusEvent"
140
+ },
141
+ "htmlVideoInit": {
142
+ "action": "htmlVideoInitEvent"
117
143
  }
118
144
  },
119
145
  "styleSetup": {
@@ -144,6 +170,57 @@
144
170
  "data": {
145
171
  "mediauri": "https://test-streams.mux.dev/x36xhzz/x36xhzz.m3u8"
146
172
  }
173
+ },
174
+ {
175
+ "name": "LiveVideoPlayerWithWidth",
176
+ "data": {
177
+ "mediauri": "https://test-streams.mux.dev/x36xhzz/x36xhzz.m3u8"
178
+ }
179
+ },
180
+ {
181
+ "name": "LiveVideoPlayerWithHeight",
182
+ "data": {
183
+ "mediauri": "https://test-streams.mux.dev/x36xhzz/x36xhzz.m3u8"
184
+ }
185
+ },
186
+ {
187
+ "name": "LiveVideoPlayerWithoutUri",
188
+ "data": {
189
+ "mediauri": ""
190
+ }
191
+ },
192
+ {
193
+ "name": "LiveVideoPlayerWithText3",
194
+ "data": {
195
+ "mediauri": "https://test-streams.mux.dev/x36xhzz/x36xhzz.m3u8",
196
+ "replacewithtext": {
197
+ "title": "title",
198
+ "subtitle": "subtitle",
199
+ "text": "text"
200
+ },
201
+ "forcecover": "yes"
202
+ }
203
+ },
204
+ {
205
+ "name": "LiveVideoPlayerWithText2",
206
+ "data": {
207
+ "mediauri": "https://test-streams.mux.dev/x36xhzz/x36xhzz.m3u8",
208
+ "replacewithtext": {
209
+ "title": "title",
210
+ "subtitle": "subtitle"
211
+ },
212
+ "forcecover": "yes"
213
+ }
214
+ },
215
+ {
216
+ "name": "LiveVideoPlayerWithText1",
217
+ "data": {
218
+ "mediauri": "https://test-streams.mux.dev/x36xhzz/x36xhzz.m3u8",
219
+ "replacewithtext": {
220
+ "title": "title"
221
+ },
222
+ "forcecover": "yes"
223
+ }
147
224
  }
148
225
  ],
149
226
  "screenshots": [],
@@ -164,5 +241,5 @@
164
241
  "size": {},
165
242
  "iifePath": "release/release.js",
166
243
  "repoName": "@htmlbricks/hb-player-live",
167
- "version": "0.17.0"
244
+ "version": "0.17.4"
168
245
  }