glib-web 2.6.10 → 2.6.11

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
@@ -1,25 +1,10 @@
1
1
  <template>
2
- <component
3
- :is="componentName"
4
- :class="cssClasses"
5
- :style="$styles()"
6
- :href="$href()"
7
- @click="$onClick()"
8
- v-on="eventHandlers"
9
- >
10
- <v-row no-gutters class="full-height">
2
+ <component :is="componentName" :class="cssClasses" :style="$styles()" :href="$href()" @click="$onClick()"
3
+ v-on="eventHandlers">
4
+ <v-row no-gutters>
11
5
  <template v-for="(item, index) in spec.childViews">
12
- <glib-component
13
- v-if="isColumn(item)"
14
- :key="viewKey(item, index)"
15
- :spec="item"
16
- />
17
- <div
18
- v-else
19
- :key="viewKey(item, index)"
20
- class="full-width"
21
- :style="innerStyles"
22
- >
6
+ <glib-component v-if="isColumn(item)" :key="viewKey(item, index)" :spec="item" />
7
+ <div v-else :key="viewKey(item, index)" class="full-width" :style="innerStyles">
23
8
  <glib-component :spec="item" />
24
9
  </div>
25
10
  </template>
@@ -80,16 +65,19 @@ export default {
80
65
  margin-left: 0;
81
66
  margin-right: 0;
82
67
  }
68
+
83
69
  .full-width {
84
70
  width: 100%;
85
71
  flex: 0 0 100%;
86
72
  display: flex;
87
73
  flex-direction: column;
88
74
  }
75
+
89
76
  // Needed to ensure that split's sub panels have the same height
90
77
  .full-height {
91
78
  height: 100%;
92
79
  }
80
+
93
81
  a.panels-responsive {
94
82
  color: inherit;
95
83
  text-decoration: inherit;
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
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
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.10",
3
+ "version": "2.6.11",
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/storage.js CHANGED
File without changes
package/utils/url.js CHANGED
File without changes