@magicgol/polyjuice 0.33.2 → 0.33.3
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
|
@@ -52,6 +52,10 @@ export default {
|
|
|
52
52
|
type: Boolean,
|
|
53
53
|
default: false
|
|
54
54
|
},
|
|
55
|
+
unselectable: {
|
|
56
|
+
type: Boolean,
|
|
57
|
+
default: false
|
|
58
|
+
},
|
|
55
59
|
role: {
|
|
56
60
|
type: String,
|
|
57
61
|
default: null,
|
|
@@ -67,6 +71,7 @@ export default {
|
|
|
67
71
|
'mg-footballer-list-body': true,
|
|
68
72
|
'mg-footballer-list-body--disabled': this.disabled === true,
|
|
69
73
|
'mg-footballer-list-body--selected': this.selected === true,
|
|
74
|
+
'mg-footballer-list-body--unselectable': this.unselectable === true,
|
|
70
75
|
'mg-footballer-list-body--goalkeeper': this.role === 'P',
|
|
71
76
|
'mg-footballer-list-body--defender': this.role === 'D',
|
|
72
77
|
'mg-footballer-list-body--midfielder': this.role === 'C',
|
|
@@ -152,5 +157,13 @@ export default {
|
|
|
152
157
|
}
|
|
153
158
|
}
|
|
154
159
|
}
|
|
160
|
+
|
|
161
|
+
&--unselectable {
|
|
162
|
+
> div {
|
|
163
|
+
border: 0 !important;
|
|
164
|
+
box-shadow: none !important;
|
|
165
|
+
background: none !important;
|
|
166
|
+
}
|
|
167
|
+
}
|
|
155
168
|
}
|
|
156
169
|
</style>
|