@evercam/ui 0.0.57 → 0.0.58-beta.1
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 +3 -0
- package/dist/attributes.json +24 -27
- package/dist/index.mjs +7282 -5809
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +211 -17
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/ECompareSeparator.vue.d.ts +7 -0
- package/dist/src/components/EToggleSwitch.vue.d.ts +34 -0
- package/dist/src/components/EVideoPlayer.vue.d.ts +181 -15
- package/dist/src/components/EZoomable.vue.d.ts +73 -0
- package/dist/src/components/svg-icons/index.d.ts +5 -0
- package/dist/src/constants.d.ts +1 -0
- package/dist/src/index.d.ts +290 -14
- package/dist/src/mixins/event-listeners.d.ts +13 -0
- package/dist/src/mixins/inactivity-listener.d.ts +25 -0
- package/dist/src/mixins/index.d.ts +4 -0
- package/dist/src/mixins/timeouts.d.ts +8 -0
- package/dist/src/types.d.ts +2 -1
- package/dist/style.css +1 -1
- package/dist/styles.css +120 -0
- package/dist/tags.json +15 -11
- package/dist/web-types.json +97 -61
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/attributes.json
CHANGED
|
@@ -174,33 +174,6 @@
|
|
|
174
174
|
"type": "boolean|string|number",
|
|
175
175
|
"description": ""
|
|
176
176
|
},
|
|
177
|
-
"EVideoPlayer/sources": {
|
|
178
|
-
"type": "array|string",
|
|
179
|
-
"description": ""
|
|
180
|
-
},
|
|
181
|
-
"EVideoPlayer/video-listeners": {
|
|
182
|
-
"type": "object",
|
|
183
|
-
"description": ""
|
|
184
|
-
},
|
|
185
|
-
"EVideoPlayer/video-options": {
|
|
186
|
-
"type": "object",
|
|
187
|
-
"description": ""
|
|
188
|
-
},
|
|
189
|
-
"EVideoPlayer/is-hls": {
|
|
190
|
-
"type": "boolean",
|
|
191
|
-
"description": "",
|
|
192
|
-
"default": false
|
|
193
|
-
},
|
|
194
|
-
"EVideoPlayer/streaming-token": {
|
|
195
|
-
"type": "string",
|
|
196
|
-
"description": "",
|
|
197
|
-
"default": ""
|
|
198
|
-
},
|
|
199
|
-
"EVideoPlayer/is-live-view": {
|
|
200
|
-
"type": "boolean",
|
|
201
|
-
"description": "",
|
|
202
|
-
"default": false
|
|
203
|
-
},
|
|
204
177
|
"ETimeline/events-groups": {
|
|
205
178
|
"type": "object",
|
|
206
179
|
"description": ""
|
|
@@ -484,5 +457,29 @@
|
|
|
484
457
|
"type": "boolean",
|
|
485
458
|
"description": "",
|
|
486
459
|
"default": false
|
|
460
|
+
},
|
|
461
|
+
"ECompareSeparator/x-offset": {
|
|
462
|
+
"type": "number|string",
|
|
463
|
+
"description": "",
|
|
464
|
+
"default": 50
|
|
465
|
+
},
|
|
466
|
+
"EToggleSwitch/options": {
|
|
467
|
+
"type": "array",
|
|
468
|
+
"description": ""
|
|
469
|
+
},
|
|
470
|
+
"EToggleSwitch/color": {
|
|
471
|
+
"type": "string",
|
|
472
|
+
"description": "",
|
|
473
|
+
"default": "brand"
|
|
474
|
+
},
|
|
475
|
+
"EToggleSwitch/size": {
|
|
476
|
+
"type": "string",
|
|
477
|
+
"description": "",
|
|
478
|
+
"default": "sm"
|
|
479
|
+
},
|
|
480
|
+
"EToggleSwitch/default-value": {
|
|
481
|
+
"type": "string|number|boolean",
|
|
482
|
+
"description": "",
|
|
483
|
+
"default": null
|
|
487
484
|
}
|
|
488
485
|
}
|