glib-web 2.6.8 → 2.6.9

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/LICENSE CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -10,8 +10,13 @@
10
10
  <script>
11
11
  export default {
12
12
  props: {
13
- spec: { type: Object, required: true }
14
- }
13
+ spec: { type: Object, required: true },
14
+ },
15
+ methods: {
16
+ $ready() {
17
+ this.fieldModel = this.spec.value;
18
+ },
19
+ },
15
20
  };
16
21
  </script>
17
22
 
File without changes
package/components/hr.vue CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/components/p.vue CHANGED
File without changes
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <!-- Use `display: contents` so this div doesn't intefere with the child's sizing behaviour. -->
3
- <div style="display: contents;">
3
+ <div style="display: contents">
4
4
  <!-- <common-responsive v-if="!hoverViewsSpec" :spec="spec" /> -->
5
5
  <v-menu
6
6
  v-if="hoverViewsSpec"
@@ -19,9 +19,12 @@
19
19
  <common-responsive :spec="hoverViewsSpec" />
20
20
  </v-card>
21
21
  </v-menu>
22
- <common-tooltip v-else :spec="spec">
22
+ <common-tooltip v-else :spec="Object.assign({}, spec, { id: undefined })">
23
23
  <template v-slot:activator="{ on }">
24
- <common-responsive :spec="spec" :event-handlers="on" />
24
+ <common-responsive
25
+ :spec="Object.assign({}, spec, { id: undefined })"
26
+ :event-handlers="on"
27
+ />
25
28
  </template>
26
29
  </common-tooltip>
27
30
  </div>
@@ -33,14 +36,14 @@ export default {
33
36
  spec: {
34
37
  type: Object,
35
38
  required: true,
36
- default: function() {
39
+ default: function () {
37
40
  return {};
38
- }
39
- }
41
+ },
42
+ },
40
43
  },
41
44
  data() {
42
45
  return {
43
- hoverViewsSpec: null
46
+ hoverViewsSpec: null,
44
47
  };
45
48
  },
46
49
  methods: {
@@ -48,11 +51,11 @@ export default {
48
51
  this.hoverViewsSpec = this.spec.hoverViews
49
52
  ? {
50
53
  childViews: this.spec.hoverViews,
51
- align: this.spec.align
54
+ align: this.spec.align,
52
55
  }
53
56
  : null;
54
- }
55
- }
57
+ },
58
+ },
56
59
  };
57
60
  </script>
58
61
 
package/keys.js CHANGED
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "glib-web",
3
- "version": "2.6.8",
3
+ "version": "2.6.9",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
File without changes
package/styles/test.sass CHANGED
File without changes
package/styles/test.scss CHANGED
File without changes
File without changes
package/utils/dom.js CHANGED
File without changes
package/utils/settings.js CHANGED
File without changes
package/utils/storage.js CHANGED
File without changes
package/utils/url.js CHANGED
File without changes