@magicgol/polyjuice 0.44.0 → 0.46.0

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.44.0",
3
+ "version": "0.46.0",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "build": "vue-cli-service build",
@@ -13,7 +13,7 @@ export default {
13
13
  },
14
14
  context: {
15
15
  control: { type: 'select' },
16
- options: ['normal', 'club', 'success', 'failure'],
16
+ options: ['normal', 'light', 'club', 'success', 'failure'],
17
17
  defaultValue: 'normal'
18
18
  },
19
19
  },
@@ -29,7 +29,7 @@ export default {
29
29
  type: String,
30
30
  default: 'normal',
31
31
  validator: function (value) {
32
- return ['normal', 'club', 'success', 'failure'].indexOf(value) !== -1;
32
+ return ['normal', 'light', 'club', 'success', 'failure'].indexOf(value) !== -1;
33
33
  },
34
34
  },
35
35
  active: {
@@ -46,6 +46,7 @@ export default {
46
46
  'mg-icon-badge--size-normal': this.size === 'normal',
47
47
  'mg-icon-badge--size-large': this.size === 'large',
48
48
  'mg-icon-badge--context-club': this.context === 'club',
49
+ 'mg-icon-badge--context-light': this.context === 'light',
49
50
  'mg-icon-badge--context-normal': this.context === 'normal',
50
51
  'mg-icon-badge--context-success': this.context === 'success',
51
52
  'mg-icon-badge--context-failure': this.context === 'failure',
@@ -102,6 +103,14 @@ export default {
102
103
  }
103
104
  }
104
105
 
106
+ &-light {
107
+ background-color: #fff;
108
+
109
+ svg {
110
+ fill: map-get($palette, 'brand');
111
+ }
112
+ }
113
+
105
114
  &-club {
106
115
  background: map-get($palette, 'club');
107
116
 
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <div
3
- class="rounded p-2"
3
+ class="rounded p-2 d-flex align-items-center"
4
4
  :class="classes"
5
5
  ><slot></slot></div>
6
6
  </template>
@@ -28,6 +28,7 @@ export default {
28
28
  </script>
29
29
 
30
30
  <style lang="scss">
31
+ // TODO Should import breakpoints and set different min height by device viewport
31
32
  @import '../../../assets/palette';
32
33
 
33
34
  .mg-highlighter {
@@ -35,6 +36,7 @@ export default {
35
36
  font-family: Ubuntu, sans-serif;
36
37
  font-size: 16px;
37
38
  font-weight: 700;
39
+ min-height: 4rem;
38
40
 
39
41
  &--disabled {
40
42
  opacity: 0.3 !important;
@@ -3,7 +3,7 @@
3
3
  @click="onClick"
4
4
  :class="classes"
5
5
  >
6
- <div class="d-flex">
6
+ <div class="d-flex align-items-center">
7
7
  <div class="position-relative">
8
8
  <svgicon :name="icon"></svgicon>
9
9
  <span
@@ -44,6 +44,7 @@ export default {
44
44
  font-family: 'Ubuntu', sans-serif;
45
45
  font-size: 0.75rem;
46
46
  font-weight: 500;
47
+ line-height: 1.3;
47
48
  outline: none;
48
49
 
49
50
  &--disabled {
@@ -75,7 +75,7 @@ export default {
75
75
  }
76
76
 
77
77
  &-shadow {
78
- height: 7.5rem;
78
+ height: 10rem;
79
79
  }
80
80
 
81
81
  &-title {