@evercam/ui 0.0.58-beta.1 → 0.0.58-beta.12
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 +2 -3
- package/dist/attributes.json +190 -0
- package/dist/index.mjs +3153 -19789
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +23 -48
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/EExpandableMenu.vue.d.ts +27 -0
- package/dist/src/components/EGlobalSearch.vue.d.ts +31 -0
- package/dist/src/components/EHeatmapBar.vue.d.ts +19 -1
- package/dist/src/components/EHoursHeatmap.vue.d.ts +14 -1
- package/dist/src/components/EReadMore.vue.d.ts +1 -1
- package/dist/src/components/ESvgIcon.vue.d.ts +7 -0
- package/dist/src/components/ETimeline.vue.d.ts +1 -0
- package/dist/src/components/EVideoEmbed.vue.d.ts +10 -44
- package/dist/src/components/EVideoPlayer.vue.d.ts +18 -160
- package/dist/src/components/EZoomable.vue.d.ts +20 -47
- package/dist/src/components/charts/classNames.d.ts +7 -0
- package/dist/src/components/charts/utils.d.ts +3 -0
- package/dist/src/components/svg-icons/BaseIcon.vue.d.ts +10 -0
- package/dist/src/components/svg-icons/Bim.vue.d.ts +5 -0
- package/dist/src/components/svg-icons/Blur.vue.d.ts +5 -0
- package/dist/src/components/svg-icons/Compare.vue.d.ts +5 -0
- package/dist/src/components/svg-icons/ConcretePump.vue.d.ts +3 -0
- package/dist/src/components/svg-icons/DroneView.vue.d.ts +3 -0
- package/dist/src/components/svg-icons/Dumper.vue.d.ts +3 -0
- package/dist/src/components/svg-icons/Evercam.vue.d.ts +5 -0
- package/dist/src/components/svg-icons/EvercamLogo.vue.d.ts +3 -0
- package/dist/src/components/svg-icons/Excavator.vue.d.ts +3 -0
- package/dist/src/components/svg-icons/FlatbedSemiTrailer.vue.d.ts +3 -0
- package/dist/src/components/svg-icons/FreeDrawing.vue.d.ts +5 -0
- package/dist/src/components/svg-icons/IModel.vue.d.ts +3 -0
- package/dist/src/components/svg-icons/Inspection.vue.d.ts +5 -0
- package/dist/src/components/svg-icons/Loader.vue.d.ts +3 -0
- package/dist/src/components/svg-icons/MiniModel.vue.d.ts +3 -0
- package/dist/src/components/svg-icons/OtherTruck.vue.d.ts +3 -0
- package/dist/src/components/svg-icons/RoadVehicle.vue.d.ts +3 -0
- package/dist/src/components/svg-icons/Roller.vue.d.ts +3 -0
- package/dist/src/components/svg-icons/SemiTrailer.vue.d.ts +3 -0
- package/dist/src/components/svg-icons/SkidSteerLoader.vue.d.ts +3 -0
- package/dist/src/components/svg-icons/SmallTruck.vue.d.ts +3 -0
- package/dist/src/components/svg-icons/TankTruck.vue.d.ts +3 -0
- package/dist/src/components/svg-icons/The360.vue.d.ts +3 -0
- package/dist/src/components/svg-icons/TippingTruck.vue.d.ts +3 -0
- package/dist/src/components/svg-icons/TruckHead.vue.d.ts +3 -0
- package/dist/src/components/svg-icons/TruckMixer.vue.d.ts +3 -0
- package/dist/src/components/svg-icons/Worker.vue.d.ts +3 -0
- package/dist/src/components/svg-icons/ZohoCrm.vue.d.ts +5 -0
- package/dist/src/components/svg-icons/index.d.ts +15 -1
- package/dist/src/index.d.ts +138 -253
- package/dist/src/mixins/event-listeners.d.ts +15 -2
- package/dist/src/mixins/inactivity-listener.d.ts +11 -6
- package/dist/src/mixins/timeouts.d.ts +7 -1
- package/dist/src/types.d.ts +26 -1
- package/dist/src/utils.d.ts +2 -2
- package/dist/style.css +1 -1
- package/dist/styles.css +105 -0
- package/dist/tags.json +71 -1
- package/dist/web-types.json +398 -6
- package/package.json +5 -5
package/dist/src/types.d.ts
CHANGED
|
@@ -129,12 +129,37 @@ export type TimelineInterval = {
|
|
|
129
129
|
};
|
|
130
130
|
export type HeatmapBarItem = {
|
|
131
131
|
name: string;
|
|
132
|
-
count:
|
|
132
|
+
count: number;
|
|
133
133
|
value: string | number;
|
|
134
134
|
};
|
|
135
135
|
export type HoursHeatmapChartItem = {
|
|
136
136
|
count: number;
|
|
137
137
|
timestamp: Timestamp;
|
|
138
138
|
};
|
|
139
|
+
export type GlobalSearchMatch = {
|
|
140
|
+
path: Array<string>;
|
|
141
|
+
value: string | number | boolean;
|
|
142
|
+
};
|
|
143
|
+
export type GlobalSearchResult = {
|
|
144
|
+
index: number;
|
|
145
|
+
matches: Array<GlobalSearchMatch>;
|
|
146
|
+
};
|
|
147
|
+
export type GlobalSearchResultInput = Array<Record<any, any> | Array<any>>;
|
|
148
|
+
export interface FullscreenHTMLElement extends HTMLElement {
|
|
149
|
+
mozRequestFullScreen?: () => Promise<void>;
|
|
150
|
+
webkitRequestFullScreen?: () => Promise<void>;
|
|
151
|
+
msRequestFullscreen?: () => Promise<void>;
|
|
152
|
+
}
|
|
153
|
+
export interface FullscreenDocument extends Document {
|
|
154
|
+
mozCancelFullScreen?: () => Promise<void>;
|
|
155
|
+
webkitCancelFullScreen?: () => Promise<void>;
|
|
156
|
+
msExitFullscreen?: () => Promise<void>;
|
|
157
|
+
mozFullScreenElement: Element | null;
|
|
158
|
+
webkitFullscreenElement: Element | null;
|
|
159
|
+
msFullscreenElement: Element | null;
|
|
160
|
+
webkitFullscreenEnabled: boolean;
|
|
161
|
+
msFullscreenEnabled: boolean;
|
|
162
|
+
mozFullScreenEnabled: boolean;
|
|
163
|
+
}
|
|
139
164
|
declare const _default: {};
|
|
140
165
|
export default _default;
|
package/dist/src/utils.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare function isFullScreen(): boolean;
|
|
2
|
-
export declare function makeFullScreen(element: HTMLElement): Promise<unknown
|
|
3
|
-
export declare function exitFullScreen(): Promise<
|
|
2
|
+
export declare function makeFullScreen(element: HTMLElement): Promise<unknown>;
|
|
3
|
+
export declare function exitFullScreen(): Promise<void | null>;
|
|
4
4
|
export declare function debounce<T extends (...args: any[]) => any>(func: T, wait?: number): (...args: Parameters<T>) => void;
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.e-spinner[data-v-29711f67]{vertical-align:center}.e-spinner__primary[data-v-29711f67],.e-spinner__secondary[data-v-29711f67]{stroke-width:0;animation:fade-29711f67;animation-iteration-count:infinite}@keyframes fade-29711f67{0%{fill-opacity:0}50%{fill-opacity:1}to{fill-opacity:0}}.e-row.e-row--no-gutters{margin:0}.e-row.e-row--no-gutters>.e-col{padding:0}.e-col{padding:.75rem}.e-transform-0[data-v-
|
|
1
|
+
.e-spinner[data-v-29711f67]{vertical-align:center}.e-spinner__primary[data-v-29711f67],.e-spinner__secondary[data-v-29711f67]{stroke-width:0;animation:fade-29711f67;animation-iteration-count:infinite}@keyframes fade-29711f67{0%{fill-opacity:0}50%{fill-opacity:1}to{fill-opacity:0}}.e-row.e-row--no-gutters{margin:0}.e-row.e-row--no-gutters>.e-col{padding:0}.e-col{padding:.75rem}.e-transform-0[data-v-270d2bfd]{transform-origin:0 0}.spinner-container[data-v-1f229658]{position:absolute;background:linear-gradient(to top,rgba(0,0,0,.65),transparent);inset:0;display:flex;justify-content:center;align-items:center;vertical-align:middle}.video-container[data-v-1f229658]{position:relative;width:100%;height:100%;display:flex;flex-direction:column;justify-content:center;margin:0 auto}.video-container.full-screen[data-v-1f229658]{max-width:initial;width:100%;max-height:100vh}video[data-v-1f229658]{width:100%;height:inherit}.video-controls-container[data-v-1f229658]{position:absolute;bottom:0;left:0;right:0;color:#fff;z-index:100;opacity:0;transition:opacity .15s ease-in-out}.hide[data-v-1f229658]{display:none}.video-controls-container[data-v-1f229658]:before{content:"";position:absolute;bottom:0;background:linear-gradient(to top,rgba(0,0,0,.75),transparent);width:100%;aspect-ratio:6 / 1;z-index:-1;pointer-events:none}.video-container:hover .video-controls-container[data-v-1f229658],.video-container:focus-within .video-controls-container[data-v-1f229658],.video-container.paused .video-controls-container[data-v-1f229658]{opacity:1}.video-controls-container .controls[data-v-1f229658]{display:flex;gap:.5rem;padding:.75rem 1rem;align-items:center;width:100%}.video-controls-container .controls button[data-v-1f229658]{background:none;border:none;color:inherit;padding:0;height:32px;width:32px;font-size:1.35rem;cursor:pointer;opacity:.85;transition:opacity .15s ease-in-out}.video-controls-container .controls button[data-v-1f229658]:hover{opacity:1}.duration-container[data-v-1f229658]{display:flex;align-items:center;gap:.25rem;flex-grow:1}.video-container.captions .captions-btn[data-v-1f229658]{border-bottom:3px solid #0090ff}.video-controls-container .controls button.wide-btn[data-v-1f229658]{width:50px}.timeline-container[data-v-1f229658]{width:100%;height:7px;margin-inline:.5rem;cursor:pointer;display:flex;align-items:center}.timeline[data-v-1f229658]{background-color:#64646480;height:3px;width:100%;position:relative}.timeline[data-v-1f229658]:before{content:"";position:absolute;left:0;top:0;bottom:0;right:calc(100% - var(--preview-position) * 100%);background-color:#969696;display:none}.timeline[data-v-1f229658]:after{content:"";position:absolute;left:0;top:0;bottom:0;right:calc(100% - var(--progress-position) * 100%);background-color:#0090ff}.timeline .thumb-indicator[data-v-1f229658]{--scale: 0;position:absolute;transform:translate(-50%) scale(var(--scale));height:200%;top:-50%;left:calc(var(--progress-position) * 100%);background-color:#0090ff;border-radius:50%;transition:transform .15s ease-in-out;aspect-ratio:1 / 1}.video-container.scrubbing .thumbnail-img[data-v-1f229658]{display:block}.video-container.scrubbing .timeline[data-v-1f229658]:before,.timeline-container:hover .timeline[data-v-1f229658]:before{display:block}.video-container.scrubbing .thumb-indicator[data-v-1f229658],.timeline-container:hover .thumb-indicator[data-v-1f229658]{--scale: 1}.video-container.scrubbing .timeline[data-v-1f229658],.timeline-container:hover .timeline[data-v-1f229658]{height:100%}.e-tl-milestone{position:absolute;border-radius:10em;box-sizing:border-box}.e-tl-milestone-content{cursor:pointer}.e-tl-milestone--bullet{transform:translate(-50%,-50%)}.e-tl-milestone--bullet .e-tl-milestone-content{opacity:0;width:0;height:0;white-space:nowrap;pointer-events:none;cursor:pointer}.e-tl-milestone--bullet.e-tl-milestone--hovered{cursor:pointer;min-height:26px;padding:0 8px;border-radius:.5em}.e-tl-milestone--bullet.e-tl-milestone--hovered .e-tl-milestone-content{opacity:1;font-size:small;font-weight:500;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.e-tl-milestone--bullet .e-tl-milestone-label{position:absolute;top:0;left:0;opacity:1;pointer-events:none;height:100%;width:100%}.e-tl-milestone--bullet.e-tl-milestone--hovered .e-tl-milestone-label{opacity:0}.e-tl-milestone--dot{transform:translateY(-50%)}.e-tl-milestone-dot--hovered .e-tl-milestone-dot-container{padding:0 3em;transform:translate(-50%);opacity:1}.e-tl-milestone-dot-line{position:absolute}.e-tl-milestone-dot-dot{position:absolute;border-radius:50%}.e-tl-milestone-dot-container{opacity:0;position:absolute;padding:0 .3em;transform:translate(-50%,-100%);cursor:pointer}.e-timeline svg{display:block}.e-timeline .x-axis-overview .domain,.e-timeline .x-axis-detailed .domain,.e-timeline .x-axis-overviewBackground .domain,.e-timeline .x-axis-detailedBackground .domain{display:none}.e-timeline .x-axis-detailedBackground .domain,.e-timeline .x-axis-detailedBackground text{display:none}.e-timeline .x-axis-overview>g.tick>line{opacity:.1;stroke-width:3;stroke-linecap:round}.e-timeline .x-axis-detailed>g.tick>line{opacity:.1;stroke-linecap:round}.e-timeline .x-axis-detailedBackground>g.tick>line{opacity:.075;stroke-linecap:round}.e-timeline--dark .tick line{stroke:#fff}.e-timeline--dark .tick text{fill:#fff}@keyframes moveGradient{0%{transform:translate(-50%)}to{transform:translate(100%)}}@keyframes pulse-rect{0%{filter:saturate(3.5) drop-shadow(0 0 1px #0008)}50%{filter:saturate(.5) drop-shadow(0 0 0 #0000)}to{filter:saturate(3.5) drop-shadow(0 0 1px #0008)}}@keyframes pulse-circle{0%{r:4px}50%{r:1px}to{r:4px}}.loading-indicator{animation:moveGradient 1.5s ease-in infinite}.line-graph-dot--active{animation:pulse-circle 1s ease-in-out infinite}.event-rect--hovered{animation:pulse-rect 1s ease-in-out infinite}@keyframes dash{0%{filter:saturate(1) drop-shadow(0 0 0 #0000)}50%{stroke-width:2px;filter:saturate(2.5) drop-shadow(0 0 0 #0006)}to{filter:saturate(1) drop-shadow(0 0 0 #0000)}}.line-graph-group--highlighted path{animation:dash 1s ease-in-out infinite}.e-timeline--dragging{cursor:ew-resize}.curtain{cursor:ew-resize;fill:#3332;stroke-width:1px;stroke:#3338;transition:stroke-width .2s}.e-timeline--dragging .curtain{stroke-width:3px}.e-timeline--dark .curtain{fill:#fff3;stroke:#fff7}.event-bar-hover-zone{cursor:pointer}.external-labels-container{position:absolute;top:-1.5em;left:0}.external-label{margin-right:.35em;border-width:.5px;border-radius:.2em}.external-label__content{cursor:pointer;font-size:.8em;font-weight:500;padding:0 .6em;line-height:1.4em}.marker-label{transition:transform .2s;transform:translateY(-32px);position:absolute;width:max-content}.marker-label-text{position:absolute;width:max-content;font-size:.8em;font-weight:500;padding:0 .75em;border-radius:.4em .4em .4em 0;box-shadow:0 0 5px -1px #000000f5}.marker-label-text:after{content:"";background:inherit;width:5px;height:5px;bottom:-5px;position:absolute;left:2px;clip-path:path("M 0,5 L 0,0 L 5,0 A 5,5 0 0 0 0,5")}.marker-label-text:before{content:"";background:inherit;height:20px;top:18px;position:absolute;width:2px;left:0}.marker{top:0;filter:saturate(.9)}.marker-line{position:absolute;width:2px;top:-24px;transition:top .2s,height .2s}.marker:hover{cursor:pointer;opacity:1;filter:saturate(1.1)}.marker:hover .marker-label{transform:translateY(-38px);height:61px;width:255px;padding-bottom:42px}.marker:hover .marker-label-text{box-shadow:2px 2px 11px -4px #000}.marker--hidden:hover .marker-label{transform:translateY(-54px)}.marker--draggable,.marker--draggable:hover{user-select:none;cursor:grab}.marker--dragged:hover{cursor:grabbing}.forbidden-interval{opacity:.2}.e-timeline-milestones{height:0}.video-embed[data-v-7e66cb69]{position:relative;width:100%!important;padding-bottom:56.25%}.video-embed iframe[data-v-7e66cb69]{position:absolute;top:0;left:0;width:100%;height:100%}.e-heatmap-bar__label{white-space:nowrap;width:6rem;min-width:6rem}.e-heatmap-bar__item{height:16px;margin:2px;position:relative;cursor:pointer;border-radius:2px;min-width:0}.e-heatmap-bar__item:hover{box-shadow:0 0 0 1.5px #5c6d97}.e-heatmap-bar__item--selected{box-shadow:0 0 0 2px #151e3a}.e-heatmap-bar__item__count{font-size:12px;color:#fff;font-weight:500}.e-heatmap-bar__item__count--light{color:#0a214bbd}.e-heatmap-bar__item__name{position:absolute;top:-25px}.e-heatmap-bar:not(.e-heatmap-bar--dense) .e-heatmap-bar__item{min-width:35px}.e-compare-separator__icon{position:absolute;width:40px;height:40px;top:50%;transform:translate(-50%,-50%);z-index:4;border-radius:50%;cursor:ew-resize;background:#1976d2;border:2px solid white;-webkit-box-shadow:0 0 8px 1px rgba(0,0,0,.3);-moz-box-shadow:0 0 8px 1px rgba(0,0,0,.3);box-shadow:0 0 8px 1px #0000004d}.e-compare-separator__line{position:absolute;top:0;width:3px;height:100%;background:white;transform:translate(-50%)}.expandable-menu{position:relative}.expandable-menu__container{position:absolute;top:0;left:0}.expandable-menu__activator{position:absolute;top:0;left:0;z-index:1}.expandable-menu__menu>*{top:0;left:0;position:absolute}.expandable-menu--closed .expandable-menu__menu{opacity:0;transition:transform .3s ease-in-out,opacity .6s}.expandable-menu--open .expandable-menu__menu{opacity:1;transition:transform .3s ease-in-out,opacity .15s}.company-logo path[data-v-f34588ff]{fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1}.global-search--fixed{position:fixed;top:0;right:0;z-index:999;border-radius:5px;box-shadow:#00000040 0 54px 55px,#0000001f 0 -12px 30px,#0000001f 0 4px 6px,#0000002b 0 12px 13px,#00000017 0 -3px 5px}.global-search--fixed__field{width:260px}
|
package/dist/styles.css
CHANGED
|
@@ -215,12 +215,19 @@
|
|
|
215
215
|
.e-inset-0{
|
|
216
216
|
inset: 0px;
|
|
217
217
|
}
|
|
218
|
+
.e-inset-y-0{
|
|
219
|
+
top: 0px;
|
|
220
|
+
bottom: 0px;
|
|
221
|
+
}
|
|
218
222
|
.-e-left-2\/4{
|
|
219
223
|
left: -50%;
|
|
220
224
|
}
|
|
221
225
|
.e-bottom-0{
|
|
222
226
|
bottom: 0px;
|
|
223
227
|
}
|
|
228
|
+
.e-end-0{
|
|
229
|
+
inset-inline-end: 0px;
|
|
230
|
+
}
|
|
224
231
|
.e-left-0{
|
|
225
232
|
left: 0px;
|
|
226
233
|
}
|
|
@@ -242,6 +249,9 @@
|
|
|
242
249
|
.e-m-2{
|
|
243
250
|
margin: 0.5rem;
|
|
244
251
|
}
|
|
252
|
+
.e-m-3{
|
|
253
|
+
margin: 0.75rem;
|
|
254
|
+
}
|
|
245
255
|
.e-m-auto{
|
|
246
256
|
margin: auto;
|
|
247
257
|
}
|
|
@@ -680,6 +690,9 @@
|
|
|
680
690
|
.e-resize{
|
|
681
691
|
resize: both;
|
|
682
692
|
}
|
|
693
|
+
.e-flex-row{
|
|
694
|
+
flex-direction: row;
|
|
695
|
+
}
|
|
683
696
|
.e-flex-col{
|
|
684
697
|
flex-direction: column;
|
|
685
698
|
}
|
|
@@ -800,6 +813,12 @@
|
|
|
800
813
|
.e-gap-6{
|
|
801
814
|
gap: 1.5rem;
|
|
802
815
|
}
|
|
816
|
+
.e-gap-x-1{
|
|
817
|
+
column-gap: 0.25rem;
|
|
818
|
+
}
|
|
819
|
+
.e-gap-x-1\.5{
|
|
820
|
+
column-gap: 0.375rem;
|
|
821
|
+
}
|
|
803
822
|
.e-space-x-2 > :not([hidden]) ~ :not([hidden]){
|
|
804
823
|
--tw-space-x-reverse: 0;
|
|
805
824
|
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
@@ -861,6 +880,9 @@
|
|
|
861
880
|
.e-border{
|
|
862
881
|
border-width: 1px;
|
|
863
882
|
}
|
|
883
|
+
.e-border-0{
|
|
884
|
+
border-width: 0px;
|
|
885
|
+
}
|
|
864
886
|
.e-border-2{
|
|
865
887
|
border-width: 2px;
|
|
866
888
|
}
|
|
@@ -899,6 +921,10 @@
|
|
|
899
921
|
--tw-bg-opacity: 1;
|
|
900
922
|
background-color: rgb(243 244 246 / var(--tw-bg-opacity));
|
|
901
923
|
}
|
|
924
|
+
.e-bg-gray-200{
|
|
925
|
+
--tw-bg-opacity: 1;
|
|
926
|
+
background-color: rgb(229 231 235 / var(--tw-bg-opacity));
|
|
927
|
+
}
|
|
902
928
|
.e-bg-gray-50{
|
|
903
929
|
--tw-bg-opacity: 1;
|
|
904
930
|
background-color: rgb(249 250 251 / var(--tw-bg-opacity));
|
|
@@ -954,6 +980,10 @@
|
|
|
954
980
|
--tw-bg-opacity: 1;
|
|
955
981
|
background-color: rgb(203 213 225 / var(--tw-bg-opacity));
|
|
956
982
|
}
|
|
983
|
+
.e-bg-white{
|
|
984
|
+
--tw-bg-opacity: 1;
|
|
985
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
986
|
+
}
|
|
957
987
|
.e-object-cover{
|
|
958
988
|
object-fit: cover;
|
|
959
989
|
}
|
|
@@ -983,10 +1013,26 @@
|
|
|
983
1013
|
padding-left: 0.5rem;
|
|
984
1014
|
padding-right: 0.5rem;
|
|
985
1015
|
}
|
|
1016
|
+
.e-px-2\.5{
|
|
1017
|
+
padding-left: 0.625rem;
|
|
1018
|
+
padding-right: 0.625rem;
|
|
1019
|
+
}
|
|
986
1020
|
.e-px-4{
|
|
987
1021
|
padding-left: 1rem;
|
|
988
1022
|
padding-right: 1rem;
|
|
989
1023
|
}
|
|
1024
|
+
.e-py-0{
|
|
1025
|
+
padding-top: 0px;
|
|
1026
|
+
padding-bottom: 0px;
|
|
1027
|
+
}
|
|
1028
|
+
.e-py-2{
|
|
1029
|
+
padding-top: 0.5rem;
|
|
1030
|
+
padding-bottom: 0.5rem;
|
|
1031
|
+
}
|
|
1032
|
+
.e-py-3{
|
|
1033
|
+
padding-top: 0.75rem;
|
|
1034
|
+
padding-bottom: 0.75rem;
|
|
1035
|
+
}
|
|
990
1036
|
.e-py-\[\.2rem\]{
|
|
991
1037
|
padding-top: .2rem;
|
|
992
1038
|
padding-bottom: .2rem;
|
|
@@ -997,6 +1043,9 @@
|
|
|
997
1043
|
.e-pb-4{
|
|
998
1044
|
padding-bottom: 1rem;
|
|
999
1045
|
}
|
|
1046
|
+
.e-pr-10{
|
|
1047
|
+
padding-right: 2.5rem;
|
|
1048
|
+
}
|
|
1000
1049
|
.e-align-middle{
|
|
1001
1050
|
vertical-align: middle;
|
|
1002
1051
|
}
|
|
@@ -1063,6 +1112,10 @@
|
|
|
1063
1112
|
.e-leading-6{
|
|
1064
1113
|
line-height: 1.5rem;
|
|
1065
1114
|
}
|
|
1115
|
+
.e-text-\[\#000057\]{
|
|
1116
|
+
--tw-text-opacity: 1;
|
|
1117
|
+
color: rgb(0 0 87 / var(--tw-text-opacity));
|
|
1118
|
+
}
|
|
1066
1119
|
.e-text-black{
|
|
1067
1120
|
--tw-text-opacity: 1;
|
|
1068
1121
|
color: rgb(0 0 0 / var(--tw-text-opacity));
|
|
@@ -1135,6 +1188,14 @@
|
|
|
1135
1188
|
.e-underline-offset-8{
|
|
1136
1189
|
text-underline-offset: 8px;
|
|
1137
1190
|
}
|
|
1191
|
+
.e-placeholder-gray-400::placeholder{
|
|
1192
|
+
--tw-placeholder-opacity: 1;
|
|
1193
|
+
color: rgb(156 163 175 / var(--tw-placeholder-opacity));
|
|
1194
|
+
}
|
|
1195
|
+
.e-placeholder-gray-500::placeholder{
|
|
1196
|
+
--tw-placeholder-opacity: 1;
|
|
1197
|
+
color: rgb(107 114 128 / var(--tw-placeholder-opacity));
|
|
1198
|
+
}
|
|
1138
1199
|
.e-shadow{
|
|
1139
1200
|
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
1140
1201
|
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
@@ -1145,6 +1206,11 @@
|
|
|
1145
1206
|
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
1146
1207
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1147
1208
|
}
|
|
1209
|
+
.e-shadow-sm{
|
|
1210
|
+
--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
1211
|
+
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
|
|
1212
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1213
|
+
}
|
|
1148
1214
|
.\!-e-outline-offset-1{
|
|
1149
1215
|
outline-offset: -1px !important;
|
|
1150
1216
|
}
|
|
@@ -1217,6 +1283,22 @@
|
|
|
1217
1283
|
.e-outline-offset-8{
|
|
1218
1284
|
outline-offset: 8px;
|
|
1219
1285
|
}
|
|
1286
|
+
.e-ring-1{
|
|
1287
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1288
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1289
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1290
|
+
}
|
|
1291
|
+
.e-ring-inset{
|
|
1292
|
+
--tw-ring-inset: inset;
|
|
1293
|
+
}
|
|
1294
|
+
.e-ring-gray-300{
|
|
1295
|
+
--tw-ring-opacity: 1;
|
|
1296
|
+
--tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity));
|
|
1297
|
+
}
|
|
1298
|
+
.e-ring-gray-700{
|
|
1299
|
+
--tw-ring-opacity: 1;
|
|
1300
|
+
--tw-ring-color: rgb(55 65 81 / var(--tw-ring-opacity));
|
|
1301
|
+
}
|
|
1220
1302
|
.e-blur-video-poster{
|
|
1221
1303
|
--tw-blur: blur(32px);
|
|
1222
1304
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
@@ -1237,6 +1319,29 @@
|
|
|
1237
1319
|
.e-ease-in-out{
|
|
1238
1320
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1239
1321
|
}
|
|
1322
|
+
.hover\:e-ring-gray-100:hover{
|
|
1323
|
+
--tw-ring-opacity: 1;
|
|
1324
|
+
--tw-ring-color: rgb(243 244 246 / var(--tw-ring-opacity));
|
|
1325
|
+
}
|
|
1326
|
+
.focus\:e-outline-none:focus{
|
|
1327
|
+
outline: 2px solid transparent;
|
|
1328
|
+
outline-offset: 2px;
|
|
1329
|
+
}
|
|
1330
|
+
.focus\:e-ring-2:focus{
|
|
1331
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1332
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1333
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1334
|
+
}
|
|
1335
|
+
.focus\:e-ring-blue-500:focus{
|
|
1336
|
+
--tw-ring-opacity: 1;
|
|
1337
|
+
--tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity));
|
|
1338
|
+
}
|
|
1339
|
+
.disabled\:e-cursor-not-allowed:disabled{
|
|
1340
|
+
cursor: not-allowed;
|
|
1341
|
+
}
|
|
1342
|
+
.disabled\:e-opacity-75:disabled{
|
|
1343
|
+
opacity: 0.75;
|
|
1344
|
+
}
|
|
1240
1345
|
@media (min-width: 640px){
|
|
1241
1346
|
|
|
1242
1347
|
.sm\:\!e-w-auto{
|
package/dist/tags.json
CHANGED
|
@@ -68,6 +68,31 @@
|
|
|
68
68
|
],
|
|
69
69
|
"description": ""
|
|
70
70
|
},
|
|
71
|
+
"EVideoPlayer": {
|
|
72
|
+
"attributes": [
|
|
73
|
+
"target-timestamp",
|
|
74
|
+
"sources",
|
|
75
|
+
"video-listeners",
|
|
76
|
+
"video-options",
|
|
77
|
+
"is-hls",
|
|
78
|
+
"streaming-token",
|
|
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",
|
|
91
|
+
"fallback-src",
|
|
92
|
+
"hls-options"
|
|
93
|
+
],
|
|
94
|
+
"description": ""
|
|
95
|
+
},
|
|
71
96
|
"ETimeline": {
|
|
72
97
|
"attributes": [
|
|
73
98
|
"events-groups",
|
|
@@ -109,7 +134,17 @@
|
|
|
109
134
|
"forbidden-interval-color",
|
|
110
135
|
"focused-interval",
|
|
111
136
|
"locked",
|
|
112
|
-
"timezone"
|
|
137
|
+
"timezone",
|
|
138
|
+
"stop-click-propagation"
|
|
139
|
+
],
|
|
140
|
+
"description": ""
|
|
141
|
+
},
|
|
142
|
+
"EVideoEmbed": {
|
|
143
|
+
"attributes": [
|
|
144
|
+
"video-url",
|
|
145
|
+
"platform",
|
|
146
|
+
"iframe-listeners",
|
|
147
|
+
"iframe-options"
|
|
113
148
|
],
|
|
114
149
|
"description": ""
|
|
115
150
|
},
|
|
@@ -168,5 +203,40 @@
|
|
|
168
203
|
"default-value"
|
|
169
204
|
],
|
|
170
205
|
"description": ""
|
|
206
|
+
},
|
|
207
|
+
"EExpandableMenu": {
|
|
208
|
+
"attributes": [
|
|
209
|
+
"padding",
|
|
210
|
+
"direction",
|
|
211
|
+
"is-mobile"
|
|
212
|
+
],
|
|
213
|
+
"description": ""
|
|
214
|
+
},
|
|
215
|
+
"EZoomable": {
|
|
216
|
+
"attributes": [
|
|
217
|
+
"ignore-pointer-events",
|
|
218
|
+
"with-overlay",
|
|
219
|
+
"disabled"
|
|
220
|
+
],
|
|
221
|
+
"description": ""
|
|
222
|
+
},
|
|
223
|
+
"EGlobalSearch": {
|
|
224
|
+
"attributes": [
|
|
225
|
+
"dark",
|
|
226
|
+
"items",
|
|
227
|
+
"timezone",
|
|
228
|
+
"converted-date-format",
|
|
229
|
+
"current-date-format",
|
|
230
|
+
"is-fixed-position",
|
|
231
|
+
"is-hidden",
|
|
232
|
+
"deep"
|
|
233
|
+
],
|
|
234
|
+
"description": ""
|
|
235
|
+
},
|
|
236
|
+
"ESvgIcon": {
|
|
237
|
+
"attributes": [
|
|
238
|
+
"icon"
|
|
239
|
+
],
|
|
240
|
+
"description": ""
|
|
171
241
|
}
|
|
172
242
|
}
|