@evercam/ui 0.0.37 → 0.0.38-alpha.0
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 +35 -0
- package/dist/index.mjs +5661 -1265
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +15 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/ETimeline.config.d.ts +5 -0
- package/dist/src/components/ETimeline.vue.d.ts +117 -0
- package/dist/src/directives/index.d.ts +1 -1
- package/dist/src/directives/resize-observer.d.ts +2 -2
- package/dist/src/index.d.ts +98 -1
- package/dist/src/types.d.ts +14 -0
- package/dist/style.css +1 -1
- package/dist/styles.css +3208 -3146
- package/dist/tags.json +13 -0
- package/dist/web-types.json +84 -1
- package/package.json +76 -71
package/dist/tags.json
CHANGED
|
@@ -75,5 +75,18 @@
|
|
|
75
75
|
"video-options"
|
|
76
76
|
],
|
|
77
77
|
"description": ""
|
|
78
|
+
},
|
|
79
|
+
"ETimeline": {
|
|
80
|
+
"attributes": [
|
|
81
|
+
"events-groups",
|
|
82
|
+
"x-axes-config",
|
|
83
|
+
"dark",
|
|
84
|
+
"start-date",
|
|
85
|
+
"end-date",
|
|
86
|
+
"selected-timestamp",
|
|
87
|
+
"show-event-tooltip",
|
|
88
|
+
"disable-zoom"
|
|
89
|
+
],
|
|
90
|
+
"description": ""
|
|
78
91
|
}
|
|
79
92
|
}
|
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.38-alpha.0",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -513,6 +513,89 @@
|
|
|
513
513
|
}
|
|
514
514
|
}
|
|
515
515
|
]
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
"name": "ETimeline",
|
|
519
|
+
"source": {
|
|
520
|
+
"module": "./src/components/ETimeline.vue",
|
|
521
|
+
"symbol": "ETimeline"
|
|
522
|
+
},
|
|
523
|
+
"description": "",
|
|
524
|
+
"doc-url": "https://ui.evercam.io/",
|
|
525
|
+
"attributes": [
|
|
526
|
+
{
|
|
527
|
+
"name": "events-groups",
|
|
528
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
529
|
+
"default": "() => ({})",
|
|
530
|
+
"value": {
|
|
531
|
+
"kind": "expression",
|
|
532
|
+
"type": "object"
|
|
533
|
+
}
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
"name": "x-axes-config",
|
|
537
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
538
|
+
"default": "() => lb",
|
|
539
|
+
"value": {
|
|
540
|
+
"kind": "expression",
|
|
541
|
+
"type": "object"
|
|
542
|
+
}
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
"name": "dark",
|
|
546
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
547
|
+
"default": "false",
|
|
548
|
+
"value": {
|
|
549
|
+
"kind": "expression",
|
|
550
|
+
"type": "boolean"
|
|
551
|
+
}
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
"name": "start-date",
|
|
555
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
556
|
+
"default": "undefined",
|
|
557
|
+
"value": {
|
|
558
|
+
"kind": "expression",
|
|
559
|
+
"type": "string"
|
|
560
|
+
}
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"name": "end-date",
|
|
564
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
565
|
+
"default": "undefined",
|
|
566
|
+
"value": {
|
|
567
|
+
"kind": "expression",
|
|
568
|
+
"type": "string"
|
|
569
|
+
}
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"name": "selected-timestamp",
|
|
573
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
574
|
+
"default": "undefined",
|
|
575
|
+
"value": {
|
|
576
|
+
"kind": "expression",
|
|
577
|
+
"type": "string"
|
|
578
|
+
}
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
"name": "show-event-tooltip",
|
|
582
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
583
|
+
"default": "true",
|
|
584
|
+
"value": {
|
|
585
|
+
"kind": "expression",
|
|
586
|
+
"type": "boolean"
|
|
587
|
+
}
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
"name": "disable-zoom",
|
|
591
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
592
|
+
"default": "false",
|
|
593
|
+
"value": {
|
|
594
|
+
"kind": "expression",
|
|
595
|
+
"type": "boolean"
|
|
596
|
+
}
|
|
597
|
+
}
|
|
598
|
+
]
|
|
516
599
|
}
|
|
517
600
|
],
|
|
518
601
|
"attributes": [
|
package/package.json
CHANGED
|
@@ -1,71 +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
|
-
"@
|
|
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
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@evercam/ui",
|
|
3
|
+
"version": "0.0.38-alpha.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
|
+
}
|