@evercam/ui 0.0.55-beta.23 → 0.0.55-beta.24
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 +0 -1
- package/dist/attributes.json +45 -9
- package/dist/index.mjs +1200 -1503
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +12 -12
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/EReadMore.vue.d.ts +24 -0
- package/dist/src/components/EVideoPlayer.vue.d.ts +15 -170
- package/dist/src/constants.d.ts +0 -1
- package/dist/src/index.d.ts +35 -248
- package/dist/src/types.d.ts +1 -9
- package/dist/style.css +1 -1
- package/dist/styles.css +8 -108
- package/dist/tags.json +18 -5
- package/dist/web-types.json +98 -23
- package/package.json +1 -1
- package/dist/src/components/EToggleSwitch.vue.d.ts +0 -34
- package/dist/src/components/EZoomable.vue.d.ts +0 -64
package/README.md
CHANGED
package/dist/attributes.json
CHANGED
|
@@ -174,6 +174,33 @@
|
|
|
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
|
+
},
|
|
177
204
|
"ETimeline/events-groups": {
|
|
178
205
|
"type": "object",
|
|
179
206
|
"description": ""
|
|
@@ -417,23 +444,32 @@
|
|
|
417
444
|
"description": "",
|
|
418
445
|
"default": false
|
|
419
446
|
},
|
|
420
|
-
"
|
|
421
|
-
"type": "array",
|
|
447
|
+
"EReadMore/content": {
|
|
448
|
+
"type": "array|string",
|
|
422
449
|
"description": ""
|
|
423
450
|
},
|
|
424
|
-
"
|
|
451
|
+
"EReadMore/max-length": {
|
|
452
|
+
"type": "number",
|
|
453
|
+
"description": ""
|
|
454
|
+
},
|
|
455
|
+
"EReadMore/show-all": {
|
|
456
|
+
"type": "boolean",
|
|
457
|
+
"description": "",
|
|
458
|
+
"default": false
|
|
459
|
+
},
|
|
460
|
+
"EReadMore/expand-text": {
|
|
425
461
|
"type": "string",
|
|
426
462
|
"description": "",
|
|
427
|
-
"default": "
|
|
463
|
+
"default": "see more..."
|
|
428
464
|
},
|
|
429
|
-
"
|
|
465
|
+
"EReadMore/collapse-text": {
|
|
430
466
|
"type": "string",
|
|
431
467
|
"description": "",
|
|
432
|
-
"default": "
|
|
468
|
+
"default": "less"
|
|
433
469
|
},
|
|
434
|
-
"
|
|
435
|
-
"type": "string
|
|
470
|
+
"EReadMore/more-text-with-placeholder": {
|
|
471
|
+
"type": "string",
|
|
436
472
|
"description": "",
|
|
437
|
-
"default":
|
|
473
|
+
"default": "and {count} more..."
|
|
438
474
|
}
|
|
439
475
|
}
|