@evercam/ui 0.0.58-beta.6 → 0.0.58-beta.7
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 +3 -2
- package/dist/attributes.json +15 -0
- package/dist/index.mjs +1197 -1080
- 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/EExpandableMenu.vue.d.ts +27 -0
- package/dist/src/index.d.ts +27 -1
- package/dist/src/mixins/event-listeners.d.ts +9 -3
- package/dist/src/mixins/inactivity-listener.d.ts +5 -5
- package/dist/style.css +1 -1
- package/dist/styles.css +8 -0
- package/dist/tags.json +8 -0
- package/dist/web-types.json +40 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -33,8 +33,8 @@ import { EBadge } from "@evercam/ui"
|
|
|
33
33
|
|
|
34
34
|
export default {
|
|
35
35
|
components: {
|
|
36
|
-
EBadge
|
|
37
|
-
}
|
|
36
|
+
EBadge,
|
|
37
|
+
},
|
|
38
38
|
}
|
|
39
39
|
</script>
|
|
40
40
|
```
|
|
@@ -46,3 +46,4 @@ You can preview the components and their stories by running the [Histoire](https
|
|
|
46
46
|
`yarn story:dev`
|
|
47
47
|
..........
|
|
48
48
|
//
|
|
49
|
+
.
|
package/dist/attributes.json
CHANGED
|
@@ -584,6 +584,21 @@
|
|
|
584
584
|
"description": "",
|
|
585
585
|
"default": null
|
|
586
586
|
},
|
|
587
|
+
"EExpandableMenu/padding": {
|
|
588
|
+
"type": "number",
|
|
589
|
+
"description": "",
|
|
590
|
+
"default": 4
|
|
591
|
+
},
|
|
592
|
+
"EExpandableMenu/direction": {
|
|
593
|
+
"type": "string",
|
|
594
|
+
"description": "",
|
|
595
|
+
"default": "top"
|
|
596
|
+
},
|
|
597
|
+
"EExpandableMenu/is-mobile": {
|
|
598
|
+
"type": "boolean",
|
|
599
|
+
"description": "",
|
|
600
|
+
"default": false
|
|
601
|
+
},
|
|
587
602
|
"EZoomable/ignore-pointer-events": {
|
|
588
603
|
"type": "boolean",
|
|
589
604
|
"description": "",
|