glib-web 3.4.5 → 3.4.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 CHANGED
@@ -20,7 +20,11 @@
20
20
  - `yarn link`
21
21
  - `cd PROJECT_DIR`
22
22
  - `yarn link glib-web`
23
- - `bin/webpack-dev-server`
23
+ - `bin/vite dev`
24
+
25
+ ## Clean up to fix strange errors when running vite dev
26
+
27
+ - `bin/vite clobber`
24
28
 
25
29
  ## Prepare for publishing
26
30
 
package/nav/drawer.vue CHANGED
@@ -13,7 +13,7 @@
13
13
 
14
14
  <glib-component v-if="spec.body" :spec="spec.body" />
15
15
 
16
- <v-list :dense="true" class="pt-0">
16
+ <v-list :dense="true">
17
17
  <div v-for="(item, index) in spec.rows" :key="index" class="nav-item">
18
18
  <div v-if="item.type == 'button'" class="indicator"></div>
19
19
  <v-divider v-if="item.type == 'divider'" />
package/nav/snackbar.vue CHANGED
@@ -31,7 +31,7 @@ export default {
31
31
  },
32
32
  methods: {
33
33
  $ready() {
34
- this.variant = determineVariant(this.spec.styleClasses, 'outlined');
34
+ this.variant = determineVariant(this.spec.styleClasses, 'elevated');
35
35
  this.color = determineColor(this.spec.styleClasses, 'primary');
36
36
  this.vertical = [this.spec.styleClasses].flat().includes('vertical');
37
37
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "glib-web",
3
- "version": "3.4.5",
3
+ "version": "3.4.7",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -12,7 +12,7 @@ export default {
12
12
  css: "text/css",
13
13
  csv: "text/csv",
14
14
  doc: "application/msword",
15
- docx: "application/msword",
15
+ docx: "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
16
16
  dll: "application/octet-stream",
17
17
  eot: "application/vnd.ms-fontobject",
18
18
  epub: "application/epub+zip",
@@ -44,7 +44,7 @@ export default {
44
44
  otf: "font/otf",
45
45
  png: "image/png",
46
46
  ppt: "application/vnd.ms-powerpoint",
47
- pptx: "application/vnd.ms-powerpoint",
47
+ pptx: "application/vnd.openxmlformats-officedocument.presentationml.presentation",
48
48
  rar: "application/x-rar-compressed",
49
49
  rtf: "application/rtf",
50
50
  sh: "application/x-sh",
@@ -65,7 +65,7 @@ export default {
65
65
  woff2: "font/woff2",
66
66
  xhtml: "application/xhtml+xml",
67
67
  xls: "application/vnd.ms-excel",
68
- xlsx: "application/vnd.ms-excel",
68
+ xlsx: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
69
69
  xlsx_OLD: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
70
70
  xml: "application/xml",
71
71
  xul: "application/vnd.mozilla.xul+xml",