@htmlbricks/hb-editor-video 0.8.35 → 0.8.42

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.
@@ -1,4 +1,5 @@
1
1
  {
2
+ "$ref": "#/definitions/Component",
2
3
  "$schema": "http://json-schema.org/draft-07/schema#",
3
4
  "definitions": {
4
5
  "Component": {
@@ -25,68 +26,6 @@
25
26
  ],
26
27
  "type": "object"
27
28
  },
28
- "Events": {
29
- "additionalProperties": false,
30
- "properties": {
31
- "changeTrackValues": {
32
- "additionalProperties": false,
33
- "properties": {
34
- "maxValue": {
35
- "type": "number"
36
- },
37
- "minVaule": {
38
- "type": "number"
39
- }
40
- },
41
- "required": [
42
- "minVaule",
43
- "maxValue"
44
- ],
45
- "type": "object"
46
- },
47
- "dispatchTrack": {
48
- "additionalProperties": false,
49
- "properties": {
50
- "track": {
51
- "$ref": "#/definitions/ITrack"
52
- }
53
- },
54
- "required": [
55
- "track"
56
- ],
57
- "type": "object"
58
- }
59
- },
60
- "required": [
61
- "changeTrackValues",
62
- "dispatchTrack"
63
- ],
64
- "type": "object"
65
- },
66
- "IDispatchValsEvent": {
67
- "additionalProperties": false,
68
- "properties": {
69
- "maxPercent": {
70
- "type": "number"
71
- },
72
- "maxValue": {
73
- "type": "number"
74
- },
75
- "minPercent": {
76
- "type": "number"
77
- },
78
- "minValue": {
79
- "type": "number"
80
- }
81
- },
82
- "required": [
83
- "minValue",
84
- "maxValue",
85
- "minPercent",
86
- "maxPercent"
87
- ],
88
- "type": "object"
89
- },
90
29
  "ITrack": {
91
30
  "additionalProperties": false,
92
31
  "properties": {
@@ -0,0 +1,60 @@
1
+ {
2
+ "$ref": "#/definitions/Events",
3
+ "$schema": "http://json-schema.org/draft-07/schema#",
4
+ "definitions": {
5
+ "Events": {
6
+ "additionalProperties": false,
7
+ "properties": {
8
+ "changeTrackValues": {
9
+ "additionalProperties": false,
10
+ "properties": {
11
+ "maxValue": {
12
+ "type": "number"
13
+ },
14
+ "minVaule": {
15
+ "type": "number"
16
+ }
17
+ },
18
+ "required": [
19
+ "minVaule",
20
+ "maxValue"
21
+ ],
22
+ "type": "object"
23
+ },
24
+ "dispatchTrack": {
25
+ "additionalProperties": false,
26
+ "properties": {
27
+ "track": {
28
+ "$ref": "#/definitions/ITrack"
29
+ }
30
+ },
31
+ "required": [
32
+ "track"
33
+ ],
34
+ "type": "object"
35
+ }
36
+ },
37
+ "required": [
38
+ "changeTrackValues",
39
+ "dispatchTrack"
40
+ ],
41
+ "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
+ }
59
+ }
60
+ }
@@ -1,69 +0,0 @@
1
- {
2
- "storybookArgs": {
3
- "src": {
4
- "control": {
5
- "type": "text"
6
- }
7
- },
8
- "form": {
9
- "control": {
10
- "type": "array"
11
- }
12
- },
13
- "track": {
14
- "control": {
15
- "type": "object"
16
- }
17
- },
18
- "changeTrackValues": {
19
- "action": "changeTrackValuesEvent"
20
- },
21
- "dispatchTrack": {
22
- "action": "dispatchTrackEvent"
23
- }
24
- },
25
- "styleSetup": {
26
- "vars": [
27
- {
28
- "name": "--bs-primary",
29
- "valueType": "color",
30
- "theme": "bootstrap",
31
- "defaultValue": "#07689f"
32
- },
33
- {
34
- "name": "--bs-secondary",
35
- "valueType": "color",
36
- "theme": "bootstrap",
37
- "defaultValue": "#c9d6df"
38
- },
39
- {
40
- "name": "--bs-success",
41
- "valueType": "color",
42
- "theme": "bootstrap",
43
- "defaultValue": "#11d3bc"
44
- },
45
- {
46
- "name": "--bs-info",
47
- "valueType": "color",
48
- "theme": "bootstrap",
49
- "defaultValue": "#a2d5f2"
50
- },
51
- {
52
- "name": "--bs-warning",
53
- "valueType": "color",
54
- "theme": "bootstrap",
55
- "defaultValue": "#ffc107"
56
- },
57
- {
58
- "name": "--bs-danger",
59
- "valueType": "color",
60
- "theme": "bootstrap",
61
- "defaultValue": "#f67280"
62
- }
63
- ],
64
- "parts": []
65
- },
66
- "htmlSlots": [],
67
- "i18n": [],
68
- "examples": []
69
- }