@evercam/ui 0.0.19 → 0.0.21
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 +12 -0
- package/dist/index.mjs +1231 -856
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/EVideoPlayer.vue.d.ts +66 -0
- package/dist/src/constants.d.ts +1 -0
- package/dist/src/index.d.ts +61 -1
- package/dist/src/utils.d.ts +3 -0
- package/dist/style.css +1 -1
- package/dist/styles.css +2973 -2973
- package/dist/tags.json +8 -0
- package/dist/web-types.json +38 -0
- package/package.json +70 -70
package/dist/tags.json
CHANGED
package/dist/web-types.json
CHANGED
|
@@ -427,6 +427,44 @@
|
|
|
427
427
|
}
|
|
428
428
|
}
|
|
429
429
|
]
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"name": "EVideoPlayer",
|
|
433
|
+
"source": {
|
|
434
|
+
"module": "./src/components/EVideoPlayer.vue",
|
|
435
|
+
"symbol": "EVideoPlayer"
|
|
436
|
+
},
|
|
437
|
+
"description": "",
|
|
438
|
+
"doc-url": "https://ui.evercam.io/",
|
|
439
|
+
"attributes": [
|
|
440
|
+
{
|
|
441
|
+
"name": "sources",
|
|
442
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
443
|
+
"default": "undefined",
|
|
444
|
+
"value": {
|
|
445
|
+
"kind": "expression",
|
|
446
|
+
"type": "array"
|
|
447
|
+
}
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
"name": "video-listeners",
|
|
451
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
452
|
+
"default": "() => ({})",
|
|
453
|
+
"value": {
|
|
454
|
+
"kind": "expression",
|
|
455
|
+
"type": "object"
|
|
456
|
+
}
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
"name": "video-options",
|
|
460
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
461
|
+
"default": "() => ({})",
|
|
462
|
+
"value": {
|
|
463
|
+
"kind": "expression",
|
|
464
|
+
"type": "object"
|
|
465
|
+
}
|
|
466
|
+
}
|
|
467
|
+
]
|
|
430
468
|
}
|
|
431
469
|
]
|
|
432
470
|
}
|
package/package.json
CHANGED
|
@@ -1,70 +1,70 @@
|
|
|
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
|
-
},
|
|
40
|
-
"devDependencies": {
|
|
41
|
-
"@fontsource-variable/inter": "^5.0.8",
|
|
42
|
-
"@fortawesome/fontawesome-free": "^5.15.3",
|
|
43
|
-
"@histoire/plugin-vue2": "^0.17.1",
|
|
44
|
-
"@histoire/vendors": "^0.17.0",
|
|
45
|
-
"@vitejs/plugin-vue2": "^2.2.0",
|
|
46
|
-
"autoprefixer": "^10.4.15",
|
|
47
|
-
"histoire": "^0.17.0",
|
|
48
|
-
"postcss": "^8.4.29",
|
|
49
|
-
"postcss-cli": "^10.1.0",
|
|
50
|
-
"tailwindcss": "^3.3.3",
|
|
51
|
-
"typescript": "^5.2.2",
|
|
52
|
-
"vite": "^4.4.9",
|
|
53
|
-
"vite-plugin-dts": "^3.6.0",
|
|
54
|
-
"vscode-oniguruma": "^1.6.1",
|
|
55
|
-
"vscode-textmate": "^6.0.0",
|
|
56
|
-
"vue": "^2.7.14",
|
|
57
|
-
"vue-template-compiler": "^2.7.14",
|
|
58
|
-
"vue-tsc": "^1.8.15"
|
|
59
|
-
},
|
|
60
|
-
"peerDependencies": {
|
|
61
|
-
"@fontsource-variable/inter": "^5.0.8",
|
|
62
|
-
"@fortawesome/fontawesome-free": "^5.15.3",
|
|
63
|
-
"vue": "^2.7.14"
|
|
64
|
-
},
|
|
65
|
-
"vetur": {
|
|
66
|
-
"tags": "dist/tags.json",
|
|
67
|
-
"attributes": "dist/attributes.json"
|
|
68
|
-
},
|
|
69
|
-
"web-types": "dist/web-types.json"
|
|
70
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@evercam/ui",
|
|
3
|
+
"version": "0.0.21",
|
|
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
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@fontsource-variable/inter": "^5.0.8",
|
|
42
|
+
"@fortawesome/fontawesome-free": "^5.15.3",
|
|
43
|
+
"@histoire/plugin-vue2": "^0.17.1",
|
|
44
|
+
"@histoire/vendors": "^0.17.0",
|
|
45
|
+
"@vitejs/plugin-vue2": "^2.2.0",
|
|
46
|
+
"autoprefixer": "^10.4.15",
|
|
47
|
+
"histoire": "^0.17.0",
|
|
48
|
+
"postcss": "^8.4.29",
|
|
49
|
+
"postcss-cli": "^10.1.0",
|
|
50
|
+
"tailwindcss": "^3.3.3",
|
|
51
|
+
"typescript": "^5.2.2",
|
|
52
|
+
"vite": "^4.4.9",
|
|
53
|
+
"vite-plugin-dts": "^3.6.0",
|
|
54
|
+
"vscode-oniguruma": "^1.6.1",
|
|
55
|
+
"vscode-textmate": "^6.0.0",
|
|
56
|
+
"vue": "^2.7.14",
|
|
57
|
+
"vue-template-compiler": "^2.7.14",
|
|
58
|
+
"vue-tsc": "^1.8.15"
|
|
59
|
+
},
|
|
60
|
+
"peerDependencies": {
|
|
61
|
+
"@fontsource-variable/inter": "^5.0.8",
|
|
62
|
+
"@fortawesome/fontawesome-free": "^5.15.3",
|
|
63
|
+
"vue": "^2.7.14"
|
|
64
|
+
},
|
|
65
|
+
"vetur": {
|
|
66
|
+
"tags": "dist/tags.json",
|
|
67
|
+
"attributes": "dist/attributes.json"
|
|
68
|
+
},
|
|
69
|
+
"web-types": "dist/web-types.json"
|
|
70
|
+
}
|