@htmlbricks/hb-editor-video 0.71.36 → 0.72.0
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/README.md +2 -4
- package/main.iife.js +1 -1
- package/main.iife.js.map +1 -1
- package/manifest.json +10 -22
- package/package.json +1 -1
- package/types/webcomponent.type.d.ts +2 -1
- package/types/webcomponent_events.type.d.json +8 -20
package/manifest.json
CHANGED
|
@@ -24,14 +24,18 @@
|
|
|
24
24
|
"type": "object"
|
|
25
25
|
},
|
|
26
26
|
"dispatchTrack": {
|
|
27
|
-
"
|
|
27
|
+
"description": "Detail is the track object, or track merged with validated `hb-form` fields when `form` is set.",
|
|
28
28
|
"properties": {
|
|
29
|
-
"
|
|
30
|
-
"
|
|
29
|
+
"maxValue": {
|
|
30
|
+
"type": "number"
|
|
31
|
+
},
|
|
32
|
+
"minValue": {
|
|
33
|
+
"type": "number"
|
|
31
34
|
}
|
|
32
35
|
},
|
|
33
36
|
"required": [
|
|
34
|
-
"
|
|
37
|
+
"maxValue",
|
|
38
|
+
"minValue"
|
|
35
39
|
],
|
|
36
40
|
"type": "object"
|
|
37
41
|
}
|
|
@@ -41,22 +45,6 @@
|
|
|
41
45
|
"dispatchTrack"
|
|
42
46
|
],
|
|
43
47
|
"type": "object"
|
|
44
|
-
},
|
|
45
|
-
"ITrack": {
|
|
46
|
-
"additionalProperties": false,
|
|
47
|
-
"properties": {
|
|
48
|
-
"maxValue": {
|
|
49
|
-
"type": "number"
|
|
50
|
-
},
|
|
51
|
-
"minValue": {
|
|
52
|
-
"type": "number"
|
|
53
|
-
}
|
|
54
|
-
},
|
|
55
|
-
"required": [
|
|
56
|
-
"minValue",
|
|
57
|
-
"maxValue"
|
|
58
|
-
],
|
|
59
|
-
"type": "object"
|
|
60
48
|
}
|
|
61
49
|
}
|
|
62
50
|
},
|
|
@@ -212,7 +200,7 @@
|
|
|
212
200
|
}
|
|
213
201
|
}
|
|
214
202
|
],
|
|
215
|
-
"iifeIntegrity": "sha384-
|
|
203
|
+
"iifeIntegrity": "sha384-y68k+ErTOA37UTGRm5dYldGazezy2x7adwj2XTSQCiVz8tGkeR7B8QRQ8uhy/NL+",
|
|
216
204
|
"dependencies": [
|
|
217
205
|
{
|
|
218
206
|
"name": "hb-range-slider",
|
|
@@ -366,5 +354,5 @@
|
|
|
366
354
|
"size": {},
|
|
367
355
|
"iifePath": "main.iife.js",
|
|
368
356
|
"repoName": "@htmlbricks/hb-editor-video",
|
|
369
|
-
"version": "0.
|
|
357
|
+
"version": "0.72.0"
|
|
370
358
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@htmlbricks/hb-editor-video",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.72.0",
|
|
4
4
|
"contributors": [],
|
|
5
5
|
"description": "Video trimmer UI: plays `src` with an `hb-range-slider` synced to the playhead and in/out bounds (`track` min/max seconds). Numeric time fields, cue-to-current-time buttons, and optional `hb-form` gate final submission. Emits `changeTrackValues`, `dispatchTrack` when no form is used, and form-driven submit when metadata is valid. Bulma `card`, `image is-16by9`, `button`, and `input` for chrome (Bootstrap Icons for play/pause).",
|
|
6
6
|
"licenses": [
|
|
@@ -13,5 +13,6 @@ export type Component = {
|
|
|
13
13
|
|
|
14
14
|
export type Events = {
|
|
15
15
|
changeTrackValues: { minVaule: number; maxValue: number };
|
|
16
|
-
|
|
16
|
+
/** Detail is the track object, or track merged with validated `hb-form` fields when `form` is set. */
|
|
17
|
+
dispatchTrack: ITrack & Record<string, unknown>;
|
|
17
18
|
};
|
|
@@ -22,14 +22,18 @@
|
|
|
22
22
|
"type": "object"
|
|
23
23
|
},
|
|
24
24
|
"dispatchTrack": {
|
|
25
|
-
"
|
|
25
|
+
"description": "Detail is the track object, or track merged with validated `hb-form` fields when `form` is set.",
|
|
26
26
|
"properties": {
|
|
27
|
-
"
|
|
28
|
-
"
|
|
27
|
+
"maxValue": {
|
|
28
|
+
"type": "number"
|
|
29
|
+
},
|
|
30
|
+
"minValue": {
|
|
31
|
+
"type": "number"
|
|
29
32
|
}
|
|
30
33
|
},
|
|
31
34
|
"required": [
|
|
32
|
-
"
|
|
35
|
+
"maxValue",
|
|
36
|
+
"minValue"
|
|
33
37
|
],
|
|
34
38
|
"type": "object"
|
|
35
39
|
}
|
|
@@ -39,22 +43,6 @@
|
|
|
39
43
|
"dispatchTrack"
|
|
40
44
|
],
|
|
41
45
|
"type": "object"
|
|
42
|
-
},
|
|
43
|
-
"ITrack": {
|
|
44
|
-
"additionalProperties": false,
|
|
45
|
-
"properties": {
|
|
46
|
-
"maxValue": {
|
|
47
|
-
"type": "number"
|
|
48
|
-
},
|
|
49
|
-
"minValue": {
|
|
50
|
-
"type": "number"
|
|
51
|
-
}
|
|
52
|
-
},
|
|
53
|
-
"required": [
|
|
54
|
-
"minValue",
|
|
55
|
-
"maxValue"
|
|
56
|
-
],
|
|
57
|
-
"type": "object"
|
|
58
46
|
}
|
|
59
47
|
}
|
|
60
48
|
}
|