@htmlbricks/hb-editor-video 0.8.39 → 0.8.45
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 +16 -5
- package/package.json +6 -6
- package/release/docs.js +14 -4
- package/release/docs.js.map +1 -1
- package/release/docs.ts +16 -5
- package/release/manifest.json +15 -4
- package/release/release.js +1 -1
- package/release/release.js.map +1 -1
- package/release/docs.mjs +0 -35
- package/release/webcomponent.type.d.json +0 -46
- package/release/webcomponent_events.type.d.json +0 -60
package/release/docs.mjs
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
export var storybookArgs = {
|
|
2
|
-
src: { control: { type: "text" } },
|
|
3
|
-
form: { control: { type: "array" } },
|
|
4
|
-
track: { control: { type: "object" } },
|
|
5
|
-
changeTrackValues: { action: "changeTrackValuesEvent" },
|
|
6
|
-
dispatchTrack: { action: "dispatchTrackEvent" }
|
|
7
|
-
};
|
|
8
|
-
var cssVars = [
|
|
9
|
-
{ name: "--bs-primary", valueType: "color", theme: "bootstrap", defaultValue: "#07689f" },
|
|
10
|
-
{ name: "--bs-secondary", valueType: "color", theme: "bootstrap", defaultValue: "#c9d6df" },
|
|
11
|
-
{ name: "--bs-success", valueType: "color", theme: "bootstrap", defaultValue: "#11d3bc" },
|
|
12
|
-
{ name: "--bs-info", valueType: "color", theme: "bootstrap", defaultValue: "#a2d5f2" },
|
|
13
|
-
{ name: "--bs-warning", valueType: "color", theme: "bootstrap", defaultValue: "#ffc107" },
|
|
14
|
-
{ name: "--bs-danger", valueType: "color", theme: "bootstrap", defaultValue: "#f67280" },
|
|
15
|
-
];
|
|
16
|
-
export var cssParts = [];
|
|
17
|
-
export var htmlSlots = [];
|
|
18
|
-
export var i18nLanguages = [];
|
|
19
|
-
export var styleSetup = {
|
|
20
|
-
vars: cssVars,
|
|
21
|
-
parts: cssParts
|
|
22
|
-
};
|
|
23
|
-
export var componentSetup = {
|
|
24
|
-
definitions: null,
|
|
25
|
-
storybookArgs: storybookArgs,
|
|
26
|
-
styleSetup: styleSetup,
|
|
27
|
-
htmlSlots: htmlSlots,
|
|
28
|
-
i18n: i18nLanguages,
|
|
29
|
-
examples: [],
|
|
30
|
-
name: "",
|
|
31
|
-
category: "",
|
|
32
|
-
tags: [],
|
|
33
|
-
size: {}
|
|
34
|
-
};
|
|
35
|
-
//# sourceMappingURL=docs.js.map
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$ref": "#/definitions/Component",
|
|
3
|
-
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
|
-
"definitions": {
|
|
5
|
-
"Component": {
|
|
6
|
-
"additionalProperties": false,
|
|
7
|
-
"properties": {
|
|
8
|
-
"form": {
|
|
9
|
-
"type": "string"
|
|
10
|
-
},
|
|
11
|
-
"id": {
|
|
12
|
-
"type": "string"
|
|
13
|
-
},
|
|
14
|
-
"src": {
|
|
15
|
-
"type": "string"
|
|
16
|
-
},
|
|
17
|
-
"style": {
|
|
18
|
-
"type": "string"
|
|
19
|
-
},
|
|
20
|
-
"track": {
|
|
21
|
-
"$ref": "#/definitions/ITrack"
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
"required": [
|
|
25
|
-
"src"
|
|
26
|
-
],
|
|
27
|
-
"type": "object"
|
|
28
|
-
},
|
|
29
|
-
"ITrack": {
|
|
30
|
-
"additionalProperties": false,
|
|
31
|
-
"properties": {
|
|
32
|
-
"maxValue": {
|
|
33
|
-
"type": "number"
|
|
34
|
-
},
|
|
35
|
-
"minValue": {
|
|
36
|
-
"type": "number"
|
|
37
|
-
}
|
|
38
|
-
},
|
|
39
|
-
"required": [
|
|
40
|
-
"minValue",
|
|
41
|
-
"maxValue"
|
|
42
|
-
],
|
|
43
|
-
"type": "object"
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
}
|
|
@@ -1,60 +0,0 @@
|
|
|
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
|
-
}
|