@evercam/ui 0.0.45-beta.6 → 0.0.46
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 +47 -47
- package/dist/attributes.json +6 -6
- package/dist/index.mjs +1294 -6876
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +2 -2
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/ETimeline.vue.d.ts +10 -3
- package/dist/src/components/EVideoEmbed.vue.d.ts +45 -0
- package/dist/src/components/EVideoPlayer.vue.d.ts +1 -4
- package/dist/src/index.d.ts +53 -6
- package/dist/style.css +1 -1
- package/dist/styles.css +3214 -3211
- package/dist/tags.json +2 -2
- package/dist/web-types.json +22 -12
- package/package.json +76 -76
package/dist/tags.json
CHANGED
|
@@ -70,7 +70,6 @@
|
|
|
70
70
|
},
|
|
71
71
|
"EVideoPlayer": {
|
|
72
72
|
"attributes": [
|
|
73
|
-
"type",
|
|
74
73
|
"sources",
|
|
75
74
|
"video-listeners",
|
|
76
75
|
"video-options"
|
|
@@ -92,7 +91,8 @@
|
|
|
92
91
|
"curtains",
|
|
93
92
|
"show-labels",
|
|
94
93
|
"rect-min-width",
|
|
95
|
-
"bar-
|
|
94
|
+
"bar-height",
|
|
95
|
+
"bar-ypadding",
|
|
96
96
|
"line-graph-min-height",
|
|
97
97
|
"min-zoom",
|
|
98
98
|
"max-zoom",
|
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.
|
|
5
|
+
"version": "0.0.46",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -482,15 +482,6 @@
|
|
|
482
482
|
"description": "",
|
|
483
483
|
"doc-url": "https://ui.evercam.io/",
|
|
484
484
|
"attributes": [
|
|
485
|
-
{
|
|
486
|
-
"name": "type",
|
|
487
|
-
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
488
|
-
"default": "video",
|
|
489
|
-
"value": {
|
|
490
|
-
"kind": "expression",
|
|
491
|
-
"type": "string"
|
|
492
|
-
}
|
|
493
|
-
},
|
|
494
485
|
{
|
|
495
486
|
"name": "sources",
|
|
496
487
|
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
@@ -544,7 +535,7 @@
|
|
|
544
535
|
{
|
|
545
536
|
"name": "x-axes-config",
|
|
546
537
|
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
547
|
-
"default": "() =>
|
|
538
|
+
"default": "() => It",
|
|
548
539
|
"value": {
|
|
549
540
|
"kind": "expression",
|
|
550
541
|
"type": "object"
|
|
@@ -650,7 +641,7 @@
|
|
|
650
641
|
}
|
|
651
642
|
},
|
|
652
643
|
{
|
|
653
|
-
"name": "bar-
|
|
644
|
+
"name": "bar-height",
|
|
654
645
|
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
655
646
|
"default": "18",
|
|
656
647
|
"value": {
|
|
@@ -658,6 +649,15 @@
|
|
|
658
649
|
"type": "number"
|
|
659
650
|
}
|
|
660
651
|
},
|
|
652
|
+
{
|
|
653
|
+
"name": "bar-ypadding",
|
|
654
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
655
|
+
"default": "0",
|
|
656
|
+
"value": {
|
|
657
|
+
"kind": "expression",
|
|
658
|
+
"type": "number"
|
|
659
|
+
}
|
|
660
|
+
},
|
|
661
661
|
{
|
|
662
662
|
"name": "line-graph-min-height",
|
|
663
663
|
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
@@ -698,6 +698,16 @@
|
|
|
698
698
|
}
|
|
699
699
|
}
|
|
700
700
|
]
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
"name": "EVideoEmbed",
|
|
704
|
+
"source": {
|
|
705
|
+
"module": "./src/components/EVideoEmbed.vue",
|
|
706
|
+
"symbol": "EVideoEmbed"
|
|
707
|
+
},
|
|
708
|
+
"description": "",
|
|
709
|
+
"doc-url": "https://ui.evercam.io/",
|
|
710
|
+
"attributes": null
|
|
701
711
|
}
|
|
702
712
|
],
|
|
703
713
|
"attributes": [
|
package/package.json
CHANGED
|
@@ -1,76 +1,76 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@evercam/ui",
|
|
3
|
-
"version": "0.0.
|
|
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
|
-
"typecheck": "vue-tsc --declaration --emitDeclarationOnly",
|
|
37
|
-
"generate-ide-docs": "node scripts/generate-vetur.mjs && node scripts/generate-web-types.mjs",
|
|
38
|
-
"ci": "(cd ../..; yarn ci)",
|
|
39
|
-
"publish-ci": "yarn build && yarn publish"
|
|
40
|
-
},
|
|
41
|
-
"devDependencies": {
|
|
42
|
-
"@fontsource-variable/inter": "^5.0.8",
|
|
43
|
-
"@fortawesome/fontawesome-free": "^5.15.3",
|
|
44
|
-
"@histoire/plugin-vue2": "^0.17.1",
|
|
45
|
-
"@histoire/vendors": "^0.17.0",
|
|
46
|
-
"@types/d3": "^7.4.2",
|
|
47
|
-
"@vitejs/plugin-vue2": "^2.2.0",
|
|
48
|
-
"autoprefixer": "^10.4.15",
|
|
49
|
-
"d3": "^7.8.5",
|
|
50
|
-
"histoire": "^0.17.0",
|
|
51
|
-
"moment-timezone": "^0.5.43",
|
|
52
|
-
"postcss": "^8.4.29",
|
|
53
|
-
"postcss-cli": "^10.1.0",
|
|
54
|
-
"tailwindcss": "^3.3.3",
|
|
55
|
-
"typescript": "^5.2.2",
|
|
56
|
-
"vite": "^4.4.9",
|
|
57
|
-
"vite-plugin-dts": "^3.6.0",
|
|
58
|
-
"vscode-oniguruma": "^1.6.1",
|
|
59
|
-
"vscode-textmate": "^6.0.0",
|
|
60
|
-
"vue": "^2.7.14",
|
|
61
|
-
"vue-template-compiler": "^2.7.14",
|
|
62
|
-
"vue-tsc": "^1.8.15"
|
|
63
|
-
},
|
|
64
|
-
"peerDependencies": {
|
|
65
|
-
"@fontsource-variable/inter": "^5.0.8",
|
|
66
|
-
"@fortawesome/fontawesome-free": "^5.15.3",
|
|
67
|
-
"d3": "^7.8.5",
|
|
68
|
-
"moment-timezone": "^0.5.43",
|
|
69
|
-
"vue": "^2.7.14"
|
|
70
|
-
},
|
|
71
|
-
"vetur": {
|
|
72
|
-
"tags": "dist/tags.json",
|
|
73
|
-
"attributes": "dist/attributes.json"
|
|
74
|
-
},
|
|
75
|
-
"web-types": "dist/web-types.json"
|
|
76
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@evercam/ui",
|
|
3
|
+
"version": "0.0.46",
|
|
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
|
+
"typecheck": "vue-tsc --declaration --emitDeclarationOnly",
|
|
37
|
+
"generate-ide-docs": "node scripts/generate-vetur.mjs && node scripts/generate-web-types.mjs",
|
|
38
|
+
"ci": "(cd ../..; yarn ci)",
|
|
39
|
+
"publish-ci": "yarn build && yarn publish"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@fontsource-variable/inter": "^5.0.8",
|
|
43
|
+
"@fortawesome/fontawesome-free": "^5.15.3",
|
|
44
|
+
"@histoire/plugin-vue2": "^0.17.1",
|
|
45
|
+
"@histoire/vendors": "^0.17.0",
|
|
46
|
+
"@types/d3": "^7.4.2",
|
|
47
|
+
"@vitejs/plugin-vue2": "^2.2.0",
|
|
48
|
+
"autoprefixer": "^10.4.15",
|
|
49
|
+
"d3": "^7.8.5",
|
|
50
|
+
"histoire": "^0.17.0",
|
|
51
|
+
"moment-timezone": "^0.5.43",
|
|
52
|
+
"postcss": "^8.4.29",
|
|
53
|
+
"postcss-cli": "^10.1.0",
|
|
54
|
+
"tailwindcss": "^3.3.3",
|
|
55
|
+
"typescript": "^5.2.2",
|
|
56
|
+
"vite": "^4.4.9",
|
|
57
|
+
"vite-plugin-dts": "^3.6.0",
|
|
58
|
+
"vscode-oniguruma": "^1.6.1",
|
|
59
|
+
"vscode-textmate": "^6.0.0",
|
|
60
|
+
"vue": "^2.7.14",
|
|
61
|
+
"vue-template-compiler": "^2.7.14",
|
|
62
|
+
"vue-tsc": "^1.8.15"
|
|
63
|
+
},
|
|
64
|
+
"peerDependencies": {
|
|
65
|
+
"@fontsource-variable/inter": "^5.0.8",
|
|
66
|
+
"@fortawesome/fontawesome-free": "^5.15.3",
|
|
67
|
+
"d3": "^7.8.5",
|
|
68
|
+
"moment-timezone": "^0.5.43",
|
|
69
|
+
"vue": "^2.7.14"
|
|
70
|
+
},
|
|
71
|
+
"vetur": {
|
|
72
|
+
"tags": "dist/tags.json",
|
|
73
|
+
"attributes": "dist/attributes.json"
|
|
74
|
+
},
|
|
75
|
+
"web-types": "dist/web-types.json"
|
|
76
|
+
}
|