@everchron/ec-shards 0.8.21 → 0.8.22
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/dist/ec-shards.common.js +74 -38
- package/dist/ec-shards.common.js.map +1 -1
- package/dist/ec-shards.css +1 -1
- package/dist/ec-shards.umd.js +74 -38
- package/dist/ec-shards.umd.js.map +1 -1
- package/dist/ec-shards.umd.min.js +2 -2
- package/dist/ec-shards.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/party-entry/party-entry.vue +36 -12
package/package.json
CHANGED
|
@@ -88,38 +88,62 @@
|
|
|
88
88
|
return 'rgba(197, 148, 101, 0.5)'
|
|
89
89
|
case 9:
|
|
90
90
|
return 'rgba(133, 142, 159, 0.5)'
|
|
91
|
+
case 10:
|
|
92
|
+
return 'rgba(238, 84, 82, 0.5)'
|
|
93
|
+
case 11:
|
|
94
|
+
return 'rgba(34, 127, 211, 0.5)'
|
|
95
|
+
case 12:
|
|
96
|
+
return 'rgba(93, 175, 0, 0.5)'
|
|
97
|
+
case 13:
|
|
98
|
+
return 'rgba(164, 146, 122, 0.5)'
|
|
99
|
+
case 14:
|
|
100
|
+
return 'rgba(149, 152, 156, 0.5)'
|
|
101
|
+
case 15:
|
|
102
|
+
return 'rgba(215, 139, 33, 0.5)'
|
|
91
103
|
default:
|
|
92
|
-
return 'rgba(
|
|
104
|
+
return 'rgba(17, 17, 17, 0.5)'
|
|
93
105
|
}
|
|
94
106
|
},
|
|
95
107
|
|
|
96
108
|
annotationIconColor() {
|
|
97
109
|
switch (this.annotationColor){
|
|
98
110
|
case 1:
|
|
99
|
-
return '#
|
|
111
|
+
return '#F9DF00'
|
|
100
112
|
case 2:
|
|
101
|
-
return '#
|
|
113
|
+
return '#F3A100'
|
|
102
114
|
case 3:
|
|
103
|
-
return '#
|
|
115
|
+
return '#B7EA80'
|
|
104
116
|
case 4:
|
|
105
|
-
return '#
|
|
117
|
+
return '#48E4C2'
|
|
106
118
|
case 5:
|
|
107
|
-
return '#
|
|
119
|
+
return '#489DFF'
|
|
108
120
|
case 6:
|
|
109
|
-
return '#
|
|
121
|
+
return '#B877F0'
|
|
110
122
|
case 7:
|
|
111
|
-
return '#
|
|
123
|
+
return '#FD78FD'
|
|
112
124
|
case 8:
|
|
113
|
-
return '#
|
|
125
|
+
return '#C59465'
|
|
114
126
|
case 9:
|
|
115
|
-
return '#
|
|
127
|
+
return '#858E9F'
|
|
128
|
+
case 10:
|
|
129
|
+
return '#EE5452'
|
|
130
|
+
case 11:
|
|
131
|
+
return '#227FD3'
|
|
132
|
+
case 12:
|
|
133
|
+
return '#5DAF00'
|
|
134
|
+
case 13:
|
|
135
|
+
return '#A4927A'
|
|
136
|
+
case 14:
|
|
137
|
+
return '#95989C'
|
|
138
|
+
case 15:
|
|
139
|
+
return '#D78B21'
|
|
116
140
|
default:
|
|
117
|
-
return '#
|
|
141
|
+
return '#111111'
|
|
118
142
|
}
|
|
119
143
|
},
|
|
120
144
|
|
|
121
145
|
iconColor() {
|
|
122
|
-
if(
|
|
146
|
+
if (this.annotationColor){
|
|
123
147
|
return this.annotationIconColor
|
|
124
148
|
} else {
|
|
125
149
|
switch (this.party){
|