@evercam/ui 0.0.33 → 0.0.35
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 +25 -1
- package/dist/index.mjs +229 -154
- 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 +6 -4
- package/dist/src/index.d.ts +7 -3
- package/dist/style.css +1 -1
- package/dist/styles.css +3146 -3140
- package/dist/tags.json +10 -0
- package/dist/web-types.json +61 -2
- package/package.json +71 -71
package/README.md
CHANGED
|
@@ -1,47 +1,47 @@
|
|
|
1
|
-
## Evercam UI
|
|
2
|
-
|
|
3
|
-
### Description
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
2- Use the components in a Vue app by either:
|
|
14
|
-
|
|
15
|
-
- Installing the library globally as a Vue plugin:
|
|
16
|
-
|
|
17
|
-
```javascript
|
|
18
|
-
import Vue from "vue"
|
|
19
|
-
import EvercamUI from "@evercam/ui"
|
|
20
|
-
|
|
21
|
-
Vue.use(EvercamUI)
|
|
22
|
-
```
|
|
23
|
-
|
|
24
|
-
- Or importing components individually:
|
|
25
|
-
|
|
26
|
-
```vue
|
|
27
|
-
<template>
|
|
28
|
-
<EBadge text="Hello world" color="success" />
|
|
29
|
-
</template>
|
|
30
|
-
|
|
31
|
-
<script>
|
|
32
|
-
import { EBadge } from "@evercam/ui"
|
|
33
|
-
|
|
34
|
-
export default {
|
|
35
|
-
components: {
|
|
36
|
-
EBadge
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
</script>
|
|
40
|
-
```
|
|
41
|
-
|
|
42
|
-
### Dev mode
|
|
43
|
-
|
|
44
|
-
You can preview the components and their stories by running the [Histoire](https://histoire.dev) sever:
|
|
45
|
-
|
|
46
|
-
`yarn story:dev`
|
|
47
|
-
|
|
1
|
+
## Evercam UI
|
|
2
|
+
|
|
3
|
+
### Description
|
|
4
|
+
|
|
5
|
+
Components libray for the [Evercam](https://evercam.io) frontends.
|
|
6
|
+
|
|
7
|
+
### Installation
|
|
8
|
+
|
|
9
|
+
1- Install the package
|
|
10
|
+
|
|
11
|
+
`yarn add @evercam/ui`
|
|
12
|
+
|
|
13
|
+
2- Use the components in a Vue app by either:
|
|
14
|
+
|
|
15
|
+
- Installing the library globally as a Vue plugin:
|
|
16
|
+
|
|
17
|
+
```javascript
|
|
18
|
+
import Vue from "vue"
|
|
19
|
+
import EvercamUI from "@evercam/ui"
|
|
20
|
+
|
|
21
|
+
Vue.use(EvercamUI)
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
- Or importing components individually:
|
|
25
|
+
|
|
26
|
+
```vue
|
|
27
|
+
<template>
|
|
28
|
+
<EBadge text="Hello world" color="success" />
|
|
29
|
+
</template>
|
|
30
|
+
|
|
31
|
+
<script>
|
|
32
|
+
import { EBadge } from "@evercam/ui"
|
|
33
|
+
|
|
34
|
+
export default {
|
|
35
|
+
components: {
|
|
36
|
+
EBadge
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
</script>
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
### Dev mode
|
|
43
|
+
|
|
44
|
+
You can preview the components and their stories by running the [Histoire](https://histoire.dev) sever:
|
|
45
|
+
|
|
46
|
+
`yarn story:dev`
|
|
47
|
+
..........
|
package/dist/attributes.json
CHANGED
|
@@ -175,7 +175,7 @@
|
|
|
175
175
|
"description": ""
|
|
176
176
|
},
|
|
177
177
|
"EVideoPlayer/sources": {
|
|
178
|
-
"type": "
|
|
178
|
+
"type": "array|string",
|
|
179
179
|
"description": ""
|
|
180
180
|
},
|
|
181
181
|
"EVideoPlayer/video-listeners": {
|
|
@@ -185,5 +185,29 @@
|
|
|
185
185
|
"EVideoPlayer/video-options": {
|
|
186
186
|
"type": "any",
|
|
187
187
|
"description": ""
|
|
188
|
+
},
|
|
189
|
+
"ECountryFlag/country": {
|
|
190
|
+
"type": "any",
|
|
191
|
+
"description": ""
|
|
192
|
+
},
|
|
193
|
+
"ECountryFlag/rounded": {
|
|
194
|
+
"type": "any",
|
|
195
|
+
"description": "",
|
|
196
|
+
"default": false
|
|
197
|
+
},
|
|
198
|
+
"ECountryFlag/shadow": {
|
|
199
|
+
"type": "any",
|
|
200
|
+
"description": "",
|
|
201
|
+
"default": false
|
|
202
|
+
},
|
|
203
|
+
"ECountryFlag/size": {
|
|
204
|
+
"type": "any",
|
|
205
|
+
"description": "",
|
|
206
|
+
"default": "normal"
|
|
207
|
+
},
|
|
208
|
+
"ECountryFlag/background": {
|
|
209
|
+
"type": "any",
|
|
210
|
+
"description": "",
|
|
211
|
+
"default": ""
|
|
188
212
|
}
|
|
189
213
|
}
|