@evercam/ui 0.0.36 → 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 +20 -9
- package/dist/index.mjs +5653 -1318
- 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 -3
- package/dist/src/types.d.ts +14 -0
- package/dist/style.css +1 -1
- package/dist/styles.css +3208 -3146
- package/dist/tags.json +9 -6
- package/dist/web-types.json +42 -15
- package/package.json +76 -71
package/README.md
CHANGED
|
@@ -1,47 +1,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
|
-
..........
|
|
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
|
@@ -186,28 +186,39 @@
|
|
|
186
186
|
"type": "any",
|
|
187
187
|
"description": ""
|
|
188
188
|
},
|
|
189
|
-
"
|
|
189
|
+
"ETimeline/events-groups": {
|
|
190
190
|
"type": "any",
|
|
191
191
|
"description": ""
|
|
192
192
|
},
|
|
193
|
-
"
|
|
193
|
+
"ETimeline/x-axes-config": {
|
|
194
194
|
"type": "any",
|
|
195
|
-
"description": ""
|
|
196
|
-
"default": false
|
|
195
|
+
"description": ""
|
|
197
196
|
},
|
|
198
|
-
"
|
|
197
|
+
"ETimeline/dark": {
|
|
199
198
|
"type": "any",
|
|
200
199
|
"description": "",
|
|
201
200
|
"default": false
|
|
202
201
|
},
|
|
203
|
-
"
|
|
202
|
+
"ETimeline/start-date": {
|
|
203
|
+
"type": "any",
|
|
204
|
+
"description": ""
|
|
205
|
+
},
|
|
206
|
+
"ETimeline/end-date": {
|
|
207
|
+
"type": "any",
|
|
208
|
+
"description": ""
|
|
209
|
+
},
|
|
210
|
+
"ETimeline/selected-timestamp": {
|
|
211
|
+
"type": "any",
|
|
212
|
+
"description": ""
|
|
213
|
+
},
|
|
214
|
+
"ETimeline/show-event-tooltip": {
|
|
204
215
|
"type": "any",
|
|
205
216
|
"description": "",
|
|
206
|
-
"default":
|
|
217
|
+
"default": true
|
|
207
218
|
},
|
|
208
|
-
"
|
|
219
|
+
"ETimeline/disable-zoom": {
|
|
209
220
|
"type": "any",
|
|
210
221
|
"description": "",
|
|
211
|
-
"default":
|
|
222
|
+
"default": false
|
|
212
223
|
}
|
|
213
224
|
}
|