@magicgol/polyjuice 0.45.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
@@ -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
|
|