@evercam/ui 0.0.58-beta.4 → 0.0.58-beta.5
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 -2
- package/dist/attributes.json +148 -7
- package/dist/index.mjs +2735 -19550
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +2 -27
- package/dist/index.umd.js.map +1 -1
- 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/EVideoEmbed.vue.d.ts +10 -44
- package/dist/src/components/EVideoPlayer.vue.d.ts +15 -159
- package/dist/src/components/EZoomable.vue.d.ts +20 -47
- package/dist/src/constants.d.ts +1 -0
- package/dist/src/index.d.ts +94 -268
- package/dist/src/mixins/event-listeners.d.ts +3 -3
- package/dist/src/mixins/inactivity-listener.d.ts +11 -5
- package/dist/src/types.d.ts +28 -1
- package/dist/src/utils.d.ts +3 -2
- package/dist/style.css +1 -1
- package/dist/styles.css +89 -7
- package/dist/tags.json +49 -4
- package/dist/web-types.json +294 -15
- package/package.json +77 -78
- package/dist/src/components/EExpandableMenu.vue.d.ts +0 -27
package/package.json
CHANGED
|
@@ -1,80 +1,79 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
}
|
|
2
|
+
"name": "@evercam/ui",
|
|
3
|
+
"version": "0.0.58-beta.5",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"private": false,
|
|
6
|
+
"author": "Evercam - Constuction Cameras.",
|
|
7
|
+
"description": "Evercam UI components library",
|
|
8
|
+
"readme": "README.md",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/evercam/evercam-frontend.git"
|
|
12
|
+
},
|
|
13
|
+
"main": "dist/index.umd.js",
|
|
14
|
+
"module": "dist/index.mjs",
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"import": "./dist/index.mjs",
|
|
19
|
+
"require": "./dist/index.umd.js"
|
|
20
|
+
},
|
|
21
|
+
"./style.css": "./dist/style.css",
|
|
22
|
+
"./styles.css": "./dist/styles.css",
|
|
23
|
+
"./types": "./dist/src/types.ts",
|
|
24
|
+
"./constants": "./dist/src/constants.ts"
|
|
25
|
+
},
|
|
26
|
+
"files": [
|
|
27
|
+
"dist"
|
|
28
|
+
],
|
|
29
|
+
"scripts": {
|
|
30
|
+
"story:dev": "histoire dev",
|
|
31
|
+
"story:build": "histoire build",
|
|
32
|
+
"story:preview": "histoire preview",
|
|
33
|
+
"build": "yarn build:lib && yarn build:style && yarn generate-ide-docs",
|
|
34
|
+
"build:lib": "vite build",
|
|
35
|
+
"build:style": "postcss src/style/main.css --verbose -o dist/styles.css",
|
|
36
|
+
"build-and-copy": "yarn build && rsync -av --delete ./dist/ ../../node_modules/@evercam/ui/dist/",
|
|
37
|
+
"typecheck": "vue-tsc --declaration --emitDeclarationOnly",
|
|
38
|
+
"generate-ide-docs": "node scripts/generate-vetur.mjs && node scripts/generate-web-types.mjs",
|
|
39
|
+
"ci": "(cd ../..; yarn ci)",
|
|
40
|
+
"publish-ci": "yarn build && yarn publish"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@fontsource-variable/inter": "^5.0.8",
|
|
44
|
+
"@fortawesome/fontawesome-free": "^5.15.3",
|
|
45
|
+
"@histoire/plugin-vue2": "^0.17.1",
|
|
46
|
+
"@histoire/vendors": "^0.17.0",
|
|
47
|
+
"@types/d3": "^7.4.2",
|
|
48
|
+
"@vitejs/plugin-vue2": "^2.2.0",
|
|
49
|
+
"autoprefixer": "^10.4.15",
|
|
50
|
+
"d3": "^7.8.5",
|
|
51
|
+
"histoire": "^0.17.0",
|
|
52
|
+
"hls.js": "^1.5.6",
|
|
53
|
+
"moment-timezone": "^0.5.43",
|
|
54
|
+
"postcss": "^8.4.29",
|
|
55
|
+
"postcss-cli": "^10.1.0",
|
|
56
|
+
"tailwindcss": "^3.3.3",
|
|
57
|
+
"typescript": "^5.2.2",
|
|
58
|
+
"vite": "^4.4.9",
|
|
59
|
+
"vite-plugin-dts": "^3.6.0",
|
|
60
|
+
"vscode-oniguruma": "^1.6.1",
|
|
61
|
+
"vscode-textmate": "^6.0.0",
|
|
62
|
+
"vue": "^2.7.16",
|
|
63
|
+
"vue-template-compiler": "^2.7.16",
|
|
64
|
+
"vue-tsc": "^1.8.15"
|
|
65
|
+
},
|
|
66
|
+
"peerDependencies": {
|
|
67
|
+
"@fontsource-variable/inter": "^5.0.8",
|
|
68
|
+
"@fortawesome/fontawesome-free": "^5.15.3",
|
|
69
|
+
"d3": "^7.8.5",
|
|
70
|
+
"hls.js": "^1.5.6",
|
|
71
|
+
"moment-timezone": "^0.5.43",
|
|
72
|
+
"vue": "^2.7.16"
|
|
73
|
+
},
|
|
74
|
+
"vetur": {
|
|
75
|
+
"tags": "dist/tags.json",
|
|
76
|
+
"attributes": "dist/attributes.json"
|
|
77
|
+
},
|
|
78
|
+
"web-types": "dist/web-types.json"
|
|
80
79
|
}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import Vue from "vue";
|
|
2
|
-
declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => Vue<Record<string, any>, Record<string, any>, never, never, any>>, {
|
|
3
|
-
menu: boolean;
|
|
4
|
-
touched: boolean;
|
|
5
|
-
baseSize: {};
|
|
6
|
-
}, {
|
|
7
|
-
toggleMenu(): void;
|
|
8
|
-
setButtonsPositions(open?: boolean): void;
|
|
9
|
-
}, {
|
|
10
|
-
row: boolean;
|
|
11
|
-
reverse: boolean;
|
|
12
|
-
}, {
|
|
13
|
-
padding: number;
|
|
14
|
-
direction: string;
|
|
15
|
-
isMobile: boolean;
|
|
16
|
-
}, {}, import("vue/types/vue").ExtendedVue<Vue<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => Vue<Record<string, any>, Record<string, any>, never, never, any>>, {
|
|
17
|
-
timeouts: number[];
|
|
18
|
-
}, {
|
|
19
|
-
$setTimeout(cb: Function, timeout?: number): number;
|
|
20
|
-
$clearTimeouts(): void;
|
|
21
|
-
}, unknown, Record<never, any>, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin> | import("vue/types/vue").ExtendedVue<Vue<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => Vue<Record<string, any>, Record<string, any>, never, never, any>>, {
|
|
22
|
-
eventListeners: import('../mixins/event-listeners').IEventListener[];
|
|
23
|
-
}, {
|
|
24
|
-
$addEventListener(event: string, cb: () => void, element?: Window & typeof globalThis): void;
|
|
25
|
-
$removeEventListeners(): void;
|
|
26
|
-
}, unknown, Record<never, any>, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>, import("vue").ComponentOptionsMixin>;
|
|
27
|
-
export default _default;
|