@magicgol/polyjuice 0.33.4 → 0.33.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@magicgol/polyjuice",
3
- "version": "0.33.4",
3
+ "version": "0.33.5",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "build": "vue-cli-service build",
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div
3
3
  class="text-uppercase pb-2 px-2"
4
- :class="[classes, {'d-flex align-items-center': active, 'justify-content-center text-center': alignCenter}]"
4
+ :class="[classes, {'d-flex align-items-center': active, 'justify-content-center text-center': alignCenter, 'justify-content-start text-left': !alignCenter}]"
5
5
  >
6
6
  <div><slot></slot></div>
7
7
  <svgicon
@@ -6,7 +6,7 @@
6
6
  >
7
7
  <div class="d-flex align-items-center h-100 rounded">
8
8
  <div
9
- class="p-0 pl-3 py-2"
9
+ class="p-0 pl-2 py-2 text-left"
10
10
  :class="firstColClass"
11
11
  >
12
12
  <slot name="first-col"></slot>
@@ -26,7 +26,7 @@
26
26
  </div>
27
27
  <div
28
28
  v-if="actionsColVisibility"
29
- class="p-0 pr-3 text-center"
29
+ class="p-0 pr-2 text-center"
30
30
  :class="actionsColClass"
31
31
  >
32
32
  <slot name="actions"></slot>
@@ -94,7 +94,7 @@ export default {
94
94
  return 'col-' + ((this.secondColVisibility ? 8 : 10) - this.actionsCol);
95
95
  },
96
96
  thirdColClass () {
97
- return this.actionsColVisibility ? 'col-2' : 'col-3 pr-3'
97
+ return this.actionsColVisibility ? 'col-2' : 'col-3 pr-2'
98
98
  }
99
99
  },
100
100
 
@@ -23,13 +23,6 @@
23
23
  export default {
24
24
  name: 'mg-selection-box',
25
25
 
26
- props: {
27
- stretched: {
28
- type: Boolean,
29
- default: false
30
- }
31
- },
32
-
33
26
  computed: {
34
27
  classes() {
35
28
  return {
@@ -42,8 +35,6 @@ export default {
42
35
 
43
36
  <style lang="scss">
44
37
  .mg-selection-box {
45
- height: 7.5rem;
46
-
47
38
  &-shadow {
48
39
  height: 7.5rem;
49
40
  }