@burh/nuxt-core 1.0.95 → 1.0.96

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.
@@ -5,7 +5,9 @@
5
5
  :on-cancel="onCancel"
6
6
  :is-full-page="fullPage"
7
7
  :color="'#1DA1F1'"
8
- :loader="'dots'"></loading>
8
+ :loader="'dots'"
9
+ :class="isBottomLoading ? 'bottom-loading' : ''"
10
+ ></loading>
9
11
 
10
12
  <!-- <label><input type="checkbox" v-model="fullPage">Full page?</label>
11
13
  <button @click.prevent="doAjax">fetch Data</button> -->
@@ -34,6 +36,10 @@ export default {
34
36
  fullPage: {
35
37
  type: Boolean,
36
38
  default: true
39
+ },
40
+ isBottomLoading: {
41
+ type: Boolean,
42
+ default: false
37
43
  }
38
44
  },
39
45
  components: {
@@ -53,3 +59,10 @@ export default {
53
59
  }
54
60
  };
55
61
  </script>
62
+ <style lang="scss" scoped>
63
+ .bottom-loading{
64
+ top: initial;
65
+ max-height: 4rem;
66
+ background-color: transparent;
67
+ }
68
+ </style>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@burh/nuxt-core",
3
- "version": "1.0.95",
3
+ "version": "1.0.96",
4
4
  "description": "Design System and Components.",
5
5
  "author": "Burh",
6
6
  "scripts": {