glib-web 0.11.17 → 0.11.18
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/nav/drawer.vue +3 -3
- package/package.json +8 -8
- package/utils/format.js +1 -1
package/nav/drawer.vue
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
:mini-variant.sync="mini"
|
|
14
14
|
@input="updateState"
|
|
15
15
|
>
|
|
16
|
-
<template v-if="mini" v-slot:prepend>
|
|
16
|
+
<template v-if="mini != null" v-slot:prepend>
|
|
17
17
|
<v-list-item>
|
|
18
18
|
<v-list-item-icon>
|
|
19
19
|
<v-icon v-if="!mini">mdi-chevron-left</v-icon>
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
<v-list-item>
|
|
40
40
|
<!-- Display the first line when the drawer is shrunk. Display the second line when the drawer is expanded -->
|
|
41
41
|
<div style="display: none">Show if expand</div>
|
|
42
|
-
<panels-responsive :spec="spec.footer" />
|
|
42
|
+
<panels-responsive v-if="!mini" :spec="spec.footer" />
|
|
43
43
|
</v-list-item>
|
|
44
44
|
</template>
|
|
45
45
|
</v-navigation-drawer>
|
|
@@ -167,7 +167,7 @@ export default {
|
|
|
167
167
|
},
|
|
168
168
|
methods: {
|
|
169
169
|
$ready() {
|
|
170
|
-
this.mini = !this.cssClasses.includes("maxi");
|
|
170
|
+
// this.mini = !this.cssClasses.includes("maxi");
|
|
171
171
|
this.updateNavigationStyle(window.location);
|
|
172
172
|
|
|
173
173
|
// this.$el.addEventListener('drawers/clickButton', () => { this.updateState(false) }, false)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "glib-web",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.18",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -9,21 +9,21 @@
|
|
|
9
9
|
"author": "",
|
|
10
10
|
"license": "ISC",
|
|
11
11
|
"dependencies": {
|
|
12
|
+
"@fortawesome/fontawesome-free": "^5.0.0",
|
|
12
13
|
"@mdi/font": "^4.5.95",
|
|
13
14
|
"@rails/actioncable": "^6.0.0",
|
|
14
15
|
"@rails/activestorage": "^6.0.0-alpha",
|
|
15
16
|
"awesome-phonenumber": "2.15.0",
|
|
16
|
-
"@fortawesome/fontawesome-free": "^5.0.0",
|
|
17
17
|
"chart.js": "^2.8.0",
|
|
18
18
|
"chartjs-plugin-annotation": "^0.5.7",
|
|
19
19
|
"driver.js": "^0.9.8",
|
|
20
|
-
"json-logic-js": "^
|
|
21
|
-
"marked": "^0.
|
|
20
|
+
"json-logic-js": "^2.0.0",
|
|
21
|
+
"marked": "^4.0.0",
|
|
22
22
|
"phoenix": "^1.5.3",
|
|
23
23
|
"push.js": "^1.0.12",
|
|
24
|
-
"sass": "^1.
|
|
25
|
-
"sass-loader": "^
|
|
26
|
-
"vue": "2.6.
|
|
24
|
+
"sass": "^1.38.0",
|
|
25
|
+
"sass-loader": "^10.0.0",
|
|
26
|
+
"vue": "2.6.14",
|
|
27
27
|
"vue-chartkick": "^0.6.1",
|
|
28
28
|
"vue-gtag": "^1.1.2",
|
|
29
29
|
"vue-social-sharing": "^3.0.9",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"vue2-editor": "^2.9.1",
|
|
32
32
|
"vue2-google-maps": "^0.10.6",
|
|
33
33
|
"vuedraggable": "^2.24.1",
|
|
34
|
-
"vuetify": "2.
|
|
34
|
+
"vuetify": "2.6.7"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/chart.js": "^2.9.34",
|
package/utils/format.js
CHANGED