@evercam/ui 0.0.58-beta.11 → 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/dist/attributes.json +14 -0
- package/dist/index.mjs +193 -176
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +7 -7
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/ETimeline.vue.d.ts +1 -0
- package/dist/src/components/EVideoPlayer.vue.d.ts +3 -1
- package/dist/src/components/charts/classNames.d.ts +7 -0
- package/dist/src/components/charts/utils.d.ts +3 -0
- package/dist/src/index.d.ts +6 -3
- package/dist/style.css +1 -1
- package/dist/styles.css +4 -0
- package/dist/tags.json +5 -2
- package/dist/web-types.json +28 -1
- package/package.json +2 -2
- /package/dist/src/components/{svgIcons → svg-icons}/BaseIcon.vue.d.ts +0 -0
- /package/dist/src/components/{svgIcons → svg-icons}/Bim.vue.d.ts +0 -0
- /package/dist/src/components/{svgIcons → svg-icons}/Blur.vue.d.ts +0 -0
- /package/dist/src/components/{svgIcons → svg-icons}/Compare.vue.d.ts +0 -0
- /package/dist/src/components/{svgIcons → svg-icons}/ConcretePump.vue.d.ts +0 -0
- /package/dist/src/components/{svgIcons → svg-icons}/DroneView.vue.d.ts +0 -0
- /package/dist/src/components/{svgIcons → svg-icons}/Dumper.vue.d.ts +0 -0
- /package/dist/src/components/{svgIcons → svg-icons}/Evercam.vue.d.ts +0 -0
- /package/dist/src/components/{svgIcons → svg-icons}/EvercamLogo.vue.d.ts +0 -0
- /package/dist/src/components/{svgIcons → svg-icons}/Excavator.vue.d.ts +0 -0
- /package/dist/src/components/{svgIcons → svg-icons}/FlatbedSemiTrailer.vue.d.ts +0 -0
- /package/dist/src/components/{svgIcons → svg-icons}/FreeDrawing.vue.d.ts +0 -0
- /package/dist/src/components/{svgIcons → svg-icons}/IModel.vue.d.ts +0 -0
- /package/dist/src/components/{svgIcons → svg-icons}/Inspection.vue.d.ts +0 -0
- /package/dist/src/components/{svgIcons → svg-icons}/Loader.vue.d.ts +0 -0
- /package/dist/src/components/{svgIcons → svg-icons}/MiniModel.vue.d.ts +0 -0
- /package/dist/src/components/{svgIcons → svg-icons}/OtherTruck.vue.d.ts +0 -0
- /package/dist/src/components/{svgIcons → svg-icons}/RoadVehicle.vue.d.ts +0 -0
- /package/dist/src/components/{svgIcons → svg-icons}/Roller.vue.d.ts +0 -0
- /package/dist/src/components/{svgIcons → svg-icons}/SemiTrailer.vue.d.ts +0 -0
- /package/dist/src/components/{svgIcons → svg-icons}/SkidSteerLoader.vue.d.ts +0 -0
- /package/dist/src/components/{svgIcons → svg-icons}/SmallTruck.vue.d.ts +0 -0
- /package/dist/src/components/{svgIcons → svg-icons}/TankTruck.vue.d.ts +0 -0
- /package/dist/src/components/{svgIcons → svg-icons}/The360.vue.d.ts +0 -0
- /package/dist/src/components/{svgIcons → svg-icons}/TippingTruck.vue.d.ts +0 -0
- /package/dist/src/components/{svgIcons → svg-icons}/TruckHead.vue.d.ts +0 -0
- /package/dist/src/components/{svgIcons → svg-icons}/TruckMixer.vue.d.ts +0 -0
- /package/dist/src/components/{svgIcons → svg-icons}/Worker.vue.d.ts +0 -0
- /package/dist/src/components/{svgIcons → svg-icons}/ZohoCrm.vue.d.ts +0 -0
- /package/dist/src/components/{svgIcons → svg-icons}/index.d.ts +0 -0
|
@@ -321,5 +321,6 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
321
321
|
focusedInterval: TimelineInterval | undefined;
|
|
322
322
|
locked: boolean;
|
|
323
323
|
timezone: string | undefined;
|
|
324
|
+
stopClickPropagation: boolean;
|
|
324
325
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
325
326
|
export default _default;
|
|
@@ -27,7 +27,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
27
27
|
end: string;
|
|
28
28
|
};
|
|
29
29
|
}, {
|
|
30
|
-
initHls(): void;
|
|
30
|
+
initHls(src?: string): void;
|
|
31
31
|
onContainerClick(): void;
|
|
32
32
|
handle404Error(): void;
|
|
33
33
|
handleHlsError(_: Events.ERROR, data: ErrorData): void;
|
|
@@ -83,5 +83,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
83
83
|
withColoredLoader: boolean;
|
|
84
84
|
loaderSize: string;
|
|
85
85
|
withOverlayOnBackground: boolean;
|
|
86
|
+
fallbackSrc: string;
|
|
87
|
+
hlsOptions: {};
|
|
86
88
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
87
89
|
export default _default;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -12,12 +12,12 @@ import EHoursHeatmap from './components/EHoursHeatmap.vue';
|
|
|
12
12
|
import EReadMore from './components/EReadMore.vue';
|
|
13
13
|
import ETruncatedDiv from './components/ETruncatedDiv.vue';
|
|
14
14
|
import ECompareSeparator from './components/ECompareSeparator.vue';
|
|
15
|
-
import EExpandableMenu from
|
|
15
|
+
import EExpandableMenu from "./components/EExpandableMenu.vue";
|
|
16
16
|
import ESvgIcon from './components/ESvgIcon.vue';
|
|
17
17
|
import EToggleSwitch from './components/EToggleSwitch.vue';
|
|
18
18
|
import EZoomable from './components/EZoomable.vue';
|
|
19
19
|
import { VueConstructor } from "vue";
|
|
20
|
-
import EGlobalSearch from
|
|
20
|
+
import EGlobalSearch from "./components/EGlobalSearch.vue";
|
|
21
21
|
export declare const components: {
|
|
22
22
|
EAvatar: import("vue/types/vue").ExtendedVue<import("vue").default<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => import("vue").default<Record<string, any>, Record<string, any>, never, never, any>>, {
|
|
23
23
|
sizes: {
|
|
@@ -150,7 +150,7 @@ export declare const components: {
|
|
|
150
150
|
end: string;
|
|
151
151
|
};
|
|
152
152
|
}, {
|
|
153
|
-
initHls(): void;
|
|
153
|
+
initHls(src?: string): void;
|
|
154
154
|
onContainerClick(): void;
|
|
155
155
|
handle404Error(): void;
|
|
156
156
|
handleHlsError(_: import("hls.js").Events.ERROR, data: import("hls.js").ErrorData): void;
|
|
@@ -206,6 +206,8 @@ export declare const components: {
|
|
|
206
206
|
withColoredLoader: boolean;
|
|
207
207
|
loaderSize: string;
|
|
208
208
|
withOverlayOnBackground: boolean;
|
|
209
|
+
fallbackSrc: string;
|
|
210
|
+
hlsOptions: {};
|
|
209
211
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
210
212
|
ETimeline: import("vue/types/vue").ExtendedVue<import("vue").default<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => import("vue").default<Record<string, any>, Record<string, any>, never, never, any>>, {
|
|
211
213
|
tooltip: HTMLElement;
|
|
@@ -526,6 +528,7 @@ export declare const components: {
|
|
|
526
528
|
focusedInterval: import('./types').TimelineInterval | undefined;
|
|
527
529
|
locked: boolean;
|
|
528
530
|
timezone: string | undefined;
|
|
531
|
+
stopClickPropagation: boolean;
|
|
529
532
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
530
533
|
EVideoEmbed: import("vue/types/vue").ExtendedVue<import("vue").default<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => import("vue").default<Record<string, any>, Record<string, any>, never, never, any>>, unknown, unknown, {
|
|
531
534
|
videoId: string | undefined;
|
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-270d2bfd]{transform-origin:0 0}.spinner-container[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
|
@@ -921,6 +921,10 @@
|
|
|
921
921
|
--tw-bg-opacity: 1;
|
|
922
922
|
background-color: rgb(243 244 246 / var(--tw-bg-opacity));
|
|
923
923
|
}
|
|
924
|
+
.e-bg-gray-200{
|
|
925
|
+
--tw-bg-opacity: 1;
|
|
926
|
+
background-color: rgb(229 231 235 / var(--tw-bg-opacity));
|
|
927
|
+
}
|
|
924
928
|
.e-bg-gray-50{
|
|
925
929
|
--tw-bg-opacity: 1;
|
|
926
930
|
background-color: rgb(249 250 251 / var(--tw-bg-opacity));
|
package/dist/tags.json
CHANGED
|
@@ -87,7 +87,9 @@
|
|
|
87
87
|
"is-web-rtc",
|
|
88
88
|
"with-colored-loader",
|
|
89
89
|
"loader-size",
|
|
90
|
-
"with-overlay-on-background"
|
|
90
|
+
"with-overlay-on-background",
|
|
91
|
+
"fallback-src",
|
|
92
|
+
"hls-options"
|
|
91
93
|
],
|
|
92
94
|
"description": ""
|
|
93
95
|
},
|
|
@@ -132,7 +134,8 @@
|
|
|
132
134
|
"forbidden-interval-color",
|
|
133
135
|
"focused-interval",
|
|
134
136
|
"locked",
|
|
135
|
-
"timezone"
|
|
137
|
+
"timezone",
|
|
138
|
+
"stop-click-propagation"
|
|
136
139
|
],
|
|
137
140
|
"description": ""
|
|
138
141
|
},
|
package/dist/web-types.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "http://json.schemastore.org/web-types",
|
|
3
3
|
"framework": "vue",
|
|
4
4
|
"name": "@evercam/ui",
|
|
5
|
-
"version": "0.0.58-beta.
|
|
5
|
+
"version": "0.0.58-beta.12",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -649,6 +649,24 @@
|
|
|
649
649
|
"kind": "expression",
|
|
650
650
|
"type": "boolean"
|
|
651
651
|
}
|
|
652
|
+
},
|
|
653
|
+
{
|
|
654
|
+
"name": "fallback-src",
|
|
655
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
656
|
+
"default": "",
|
|
657
|
+
"value": {
|
|
658
|
+
"kind": "expression",
|
|
659
|
+
"type": "string"
|
|
660
|
+
}
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"name": "hls-options",
|
|
664
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
665
|
+
"default": "() => ({})",
|
|
666
|
+
"value": {
|
|
667
|
+
"kind": "expression",
|
|
668
|
+
"type": "object"
|
|
669
|
+
}
|
|
652
670
|
}
|
|
653
671
|
]
|
|
654
672
|
},
|
|
@@ -1032,6 +1050,15 @@
|
|
|
1032
1050
|
"any"
|
|
1033
1051
|
]
|
|
1034
1052
|
}
|
|
1053
|
+
},
|
|
1054
|
+
{
|
|
1055
|
+
"name": "stop-click-propagation",
|
|
1056
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
1057
|
+
"default": "false",
|
|
1058
|
+
"value": {
|
|
1059
|
+
"kind": "expression",
|
|
1060
|
+
"type": "boolean"
|
|
1061
|
+
}
|
|
1035
1062
|
}
|
|
1036
1063
|
]
|
|
1037
1064
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evercam/ui",
|
|
3
|
-
"version": "0.0.58-beta.
|
|
3
|
+
"version": "0.0.58-beta.12",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": "Evercam - Constuction Cameras.",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"build:style": "postcss src/style/main.css --verbose -o dist/styles.css",
|
|
36
36
|
"build-and-copy": "yarn build && rsync -av --delete ./dist/ ../../node_modules/@evercam/ui/dist/",
|
|
37
37
|
"typecheck": "vue-tsc --declaration --emitDeclarationOnly",
|
|
38
|
-
"generate-ide-docs": "node scripts/
|
|
38
|
+
"generate-ide-docs": "node scripts/generate-vetur.mjs && node scripts/generate-web-types.mjs",
|
|
39
39
|
"ci": "(cd ../..; yarn ci)",
|
|
40
40
|
"publish-ci": "yarn build && yarn publish"
|
|
41
41
|
},
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|