@evercam/ui 0.0.56 → 0.0.58-beta-3
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 +1 -0
- package/dist/attributes.json +256 -1
- package/dist/index.mjs +2879 -1925
- 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/ECompareSeparator.vue.d.ts +7 -0
- package/dist/src/components/EGlobalSearch.vue.d.ts +31 -0
- package/dist/src/components/EHeatmapBar.vue.d.ts +21 -0
- package/dist/src/components/EHoursHeatmap.vue.d.ts +16 -0
- package/dist/src/components/EReadMore.vue.d.ts +24 -0
- package/dist/src/components/ETimeline.vue.d.ts +1 -0
- package/dist/src/components/EToggleSwitch.vue.d.ts +34 -0
- package/dist/src/components/ETruncatedDiv.vue.d.ts +8 -0
- package/dist/src/components/EVideoEmbed.vue.d.ts +10 -44
- package/dist/src/components/EVideoPlayer.vue.d.ts +26 -4
- package/dist/src/components/EZoomable.vue.d.ts +46 -0
- package/dist/src/constants.d.ts +2 -0
- package/dist/src/index.d.ts +201 -42
- package/dist/src/mixins/event-listeners.d.ts +20 -0
- package/dist/src/mixins/inactivity-listener.d.ts +30 -0
- package/dist/src/mixins/index.d.ts +4 -0
- package/dist/src/mixins/timeouts.d.ts +14 -0
- package/dist/src/types.d.ts +38 -1
- package/dist/src/utils.d.ts +3 -2
- package/dist/style.css +1 -1
- package/dist/styles.css +226 -0
- package/dist/tags.json +101 -2
- package/dist/web-types.json +604 -4
- package/package.json +1 -1
package/dist/tags.json
CHANGED
|
@@ -70,12 +70,24 @@
|
|
|
70
70
|
},
|
|
71
71
|
"EVideoPlayer": {
|
|
72
72
|
"attributes": [
|
|
73
|
+
"target-timestamp",
|
|
73
74
|
"sources",
|
|
74
75
|
"video-listeners",
|
|
75
76
|
"video-options",
|
|
76
77
|
"is-hls",
|
|
77
78
|
"streaming-token",
|
|
78
|
-
"
|
|
79
|
+
"pause-on-click",
|
|
80
|
+
"is-hls-loading",
|
|
81
|
+
"is-playing",
|
|
82
|
+
"is-zoomable",
|
|
83
|
+
"zoomable-ignore-pointer-events",
|
|
84
|
+
"timezone",
|
|
85
|
+
"play-pause-animation",
|
|
86
|
+
"disable-play-pause-animation",
|
|
87
|
+
"is-web-rtc",
|
|
88
|
+
"with-colored-loader",
|
|
89
|
+
"loader-size",
|
|
90
|
+
"with-overlay-on-background"
|
|
79
91
|
],
|
|
80
92
|
"description": ""
|
|
81
93
|
},
|
|
@@ -119,7 +131,94 @@
|
|
|
119
131
|
"forbidden-intervals",
|
|
120
132
|
"forbidden-interval-color",
|
|
121
133
|
"focused-interval",
|
|
122
|
-
"locked"
|
|
134
|
+
"locked",
|
|
135
|
+
"timezone"
|
|
136
|
+
],
|
|
137
|
+
"description": ""
|
|
138
|
+
},
|
|
139
|
+
"EVideoEmbed": {
|
|
140
|
+
"attributes": [
|
|
141
|
+
"video-url",
|
|
142
|
+
"platform",
|
|
143
|
+
"iframe-listeners",
|
|
144
|
+
"iframe-options"
|
|
145
|
+
],
|
|
146
|
+
"description": ""
|
|
147
|
+
},
|
|
148
|
+
"EHeatmapBar": {
|
|
149
|
+
"attributes": [
|
|
150
|
+
"items",
|
|
151
|
+
"selected-value",
|
|
152
|
+
"show-counts",
|
|
153
|
+
"show-names",
|
|
154
|
+
"colors",
|
|
155
|
+
"label",
|
|
156
|
+
"dense"
|
|
157
|
+
],
|
|
158
|
+
"description": ""
|
|
159
|
+
},
|
|
160
|
+
"EHoursHeatmap": {
|
|
161
|
+
"attributes": [
|
|
162
|
+
"items",
|
|
163
|
+
"selected-hour",
|
|
164
|
+
"show-hours",
|
|
165
|
+
"colors",
|
|
166
|
+
"label",
|
|
167
|
+
"dense"
|
|
168
|
+
],
|
|
169
|
+
"description": ""
|
|
170
|
+
},
|
|
171
|
+
"EReadMore": {
|
|
172
|
+
"attributes": [
|
|
173
|
+
"content",
|
|
174
|
+
"max-length",
|
|
175
|
+
"show-all",
|
|
176
|
+
"expand-text",
|
|
177
|
+
"collapse-text",
|
|
178
|
+
"more-text-with-placeholder"
|
|
179
|
+
],
|
|
180
|
+
"description": ""
|
|
181
|
+
},
|
|
182
|
+
"ETruncatedDiv": {
|
|
183
|
+
"attributes": [
|
|
184
|
+
"width",
|
|
185
|
+
"fixed-width"
|
|
186
|
+
],
|
|
187
|
+
"description": ""
|
|
188
|
+
},
|
|
189
|
+
"ECompareSeparator": {
|
|
190
|
+
"attributes": [
|
|
191
|
+
"x-offset"
|
|
192
|
+
],
|
|
193
|
+
"description": ""
|
|
194
|
+
},
|
|
195
|
+
"EToggleSwitch": {
|
|
196
|
+
"attributes": [
|
|
197
|
+
"options",
|
|
198
|
+
"color",
|
|
199
|
+
"size",
|
|
200
|
+
"default-value"
|
|
201
|
+
],
|
|
202
|
+
"description": ""
|
|
203
|
+
},
|
|
204
|
+
"EZoomable": {
|
|
205
|
+
"attributes": [
|
|
206
|
+
"ignore-pointer-events",
|
|
207
|
+
"with-overlay",
|
|
208
|
+
"disabled"
|
|
209
|
+
],
|
|
210
|
+
"description": ""
|
|
211
|
+
},
|
|
212
|
+
"EGlobalSearch": {
|
|
213
|
+
"attributes": [
|
|
214
|
+
"dark",
|
|
215
|
+
"items",
|
|
216
|
+
"timezone",
|
|
217
|
+
"converted-date-format",
|
|
218
|
+
"current-date-format",
|
|
219
|
+
"is-fixed-position",
|
|
220
|
+
"is-hidden",
|
|
221
|
+
"deep"
|
|
123
222
|
],
|
|
124
223
|
"description": ""
|
|
125
224
|
}
|