@mjsz-vbr-elements/core 2.26.5 → 2.27.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/dist/{TimezoneSelector-CRy1AyTX.js → TimezoneSelector-DKtwSWAw.js} +222 -222
- package/dist/columns.js +110 -24
- package/dist/components.js +2 -2
- package/dist/composables.js +1 -1
- package/dist/constants.js +1 -1
- package/dist/datetime-D600LvsU.js +1 -1
- package/dist/errors-B6O6sS7H.js +1 -1
- package/dist/index.iife.js +4 -4
- package/dist/index.iife.js.br +0 -0
- package/dist/index.iife.js.gz +0 -0
- package/dist/index.js +106 -105
- package/dist/useSort-D-BBQTSZ.js +1 -1
- package/dist/utils.js +41 -41
- package/package.json +2 -2
package/dist/columns.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* name: @mjsz-vbr-elements/core
|
|
3
|
-
* version: v2.
|
|
3
|
+
* version: v2.27.0 - 10/09/2025, 12:00:49
|
|
4
4
|
* (c) 2025
|
|
5
5
|
* description: Data visualization for MJSZ VBR
|
|
6
6
|
* author: Ákos Stegner <akos.stegner@gmail.com>
|
|
@@ -141,6 +141,91 @@ const a = {
|
|
|
141
141
|
]
|
|
142
142
|
}
|
|
143
143
|
}, i = {
|
|
144
|
+
index: {
|
|
145
|
+
label: "table.blank",
|
|
146
|
+
class: "is-text-left"
|
|
147
|
+
},
|
|
148
|
+
teamLogo: {
|
|
149
|
+
label: "",
|
|
150
|
+
class: "is-has-image"
|
|
151
|
+
},
|
|
152
|
+
teamName: {
|
|
153
|
+
label: "table.team.short",
|
|
154
|
+
tooltip: "table.team.tooltip",
|
|
155
|
+
class: "is-text-left is-w-auto is-text-bold",
|
|
156
|
+
sortOrders: [{ target: "teamName", direction: e }]
|
|
157
|
+
},
|
|
158
|
+
gamesPlayed: {
|
|
159
|
+
label: "table.game.short",
|
|
160
|
+
tooltip: "table.game.tooltip",
|
|
161
|
+
sortOrders: [{ target: "gamesPlayed", direction: t }]
|
|
162
|
+
},
|
|
163
|
+
pper: {
|
|
164
|
+
label: "table.pper.short",
|
|
165
|
+
tooltip: "table.pper.tooltip",
|
|
166
|
+
sortOrders: [{ target: "pper", direction: t }]
|
|
167
|
+
},
|
|
168
|
+
w: {
|
|
169
|
+
label: "table.wins.short",
|
|
170
|
+
tooltip: "table.wins.tooltip",
|
|
171
|
+
sortOrders: [
|
|
172
|
+
{ target: "w", direction: t },
|
|
173
|
+
{ target: "otw", direction: t }
|
|
174
|
+
]
|
|
175
|
+
},
|
|
176
|
+
otw: {
|
|
177
|
+
label: "table.otw.short",
|
|
178
|
+
tooltip: "table.otw.tooltip",
|
|
179
|
+
sortOrders: [{ target: "otw", direction: t }]
|
|
180
|
+
},
|
|
181
|
+
sow: {
|
|
182
|
+
label: "table.sow.short",
|
|
183
|
+
tooltip: "table.sow.tooltip",
|
|
184
|
+
sortOrders: [{ target: "sow", direction: t }]
|
|
185
|
+
},
|
|
186
|
+
sol: {
|
|
187
|
+
label: "table.sol.short",
|
|
188
|
+
tooltip: "table.sol.tooltip",
|
|
189
|
+
sortOrders: [{ target: "sol", direction: t }]
|
|
190
|
+
},
|
|
191
|
+
otl: {
|
|
192
|
+
label: "table.otl.short",
|
|
193
|
+
tooltip: "table.otl.tooltip",
|
|
194
|
+
sortOrders: [{ target: "otl", direction: e }]
|
|
195
|
+
},
|
|
196
|
+
l: {
|
|
197
|
+
label: "table.losses.short",
|
|
198
|
+
tooltip: "table.losses.tooltip",
|
|
199
|
+
sortOrders: [{ target: "l", direction: e }]
|
|
200
|
+
},
|
|
201
|
+
gf: {
|
|
202
|
+
label: "table.goalFor.short",
|
|
203
|
+
tooltip: "table.goalFor.tooltip",
|
|
204
|
+
sortOrders: [{ target: "gf", direction: t }]
|
|
205
|
+
},
|
|
206
|
+
ga: {
|
|
207
|
+
label: "table.goalAgainst.short",
|
|
208
|
+
tooltip: "table.goalAgainst.tooltip",
|
|
209
|
+
sortOrders: [{ target: "ga", direction: e }]
|
|
210
|
+
},
|
|
211
|
+
gd: {
|
|
212
|
+
label: "table.goalDiff.short",
|
|
213
|
+
tooltip: "table.goalDiff.tooltip",
|
|
214
|
+
sortOrders: [{ target: "gd", direction: t }]
|
|
215
|
+
},
|
|
216
|
+
points: {
|
|
217
|
+
label: "table.points.short",
|
|
218
|
+
tooltip: "table.points.tooltip",
|
|
219
|
+
class: "is-text-bold",
|
|
220
|
+
sortOrders: [
|
|
221
|
+
{ target: "points", direction: t },
|
|
222
|
+
{ target: "gamesPlayed", direction: e },
|
|
223
|
+
{ target: "w", direction: t },
|
|
224
|
+
{ target: "gd", direction: t },
|
|
225
|
+
{ target: "gf", direction: t }
|
|
226
|
+
]
|
|
227
|
+
}
|
|
228
|
+
}, s = {
|
|
144
229
|
index: {
|
|
145
230
|
label: "#",
|
|
146
231
|
class: "is-text-left"
|
|
@@ -202,7 +287,7 @@ const a = {
|
|
|
202
287
|
class: "is-text-bold",
|
|
203
288
|
sortOrders: [{ target: "points", direction: t }]
|
|
204
289
|
}
|
|
205
|
-
},
|
|
290
|
+
}, r = {
|
|
206
291
|
index: {
|
|
207
292
|
label: "#",
|
|
208
293
|
class: "is-text-left is-text-italic is-text-light"
|
|
@@ -241,7 +326,7 @@ const a = {
|
|
|
241
326
|
tooltip: "table.points.tooltip",
|
|
242
327
|
class: "is-text-bold"
|
|
243
328
|
}
|
|
244
|
-
},
|
|
329
|
+
}, b = {
|
|
245
330
|
index: {
|
|
246
331
|
label: "#",
|
|
247
332
|
class: "is-text-left"
|
|
@@ -307,7 +392,7 @@ const a = {
|
|
|
307
392
|
tooltip: "table.sogPercent.tooltip",
|
|
308
393
|
sortOrders: [{ target: "shootPercent", direction: t }]
|
|
309
394
|
}
|
|
310
|
-
},
|
|
395
|
+
}, p = {
|
|
311
396
|
index: {
|
|
312
397
|
label: "table.blank",
|
|
313
398
|
class: "is-text-left"
|
|
@@ -382,7 +467,7 @@ const a = {
|
|
|
382
467
|
tooltip: "table.pim.tooltip",
|
|
383
468
|
sortOrders: [{ target: "pim", direction: t }]
|
|
384
469
|
}
|
|
385
|
-
},
|
|
470
|
+
}, d = {
|
|
386
471
|
index: {
|
|
387
472
|
label: "#",
|
|
388
473
|
class: "is-text-left"
|
|
@@ -482,7 +567,7 @@ const a = {
|
|
|
482
567
|
tooltip: "table.sh2AToi.tooltip",
|
|
483
568
|
sortOrders: [{ target: "sh2AToi", direction: t }]
|
|
484
569
|
}
|
|
485
|
-
},
|
|
570
|
+
}, g = {
|
|
486
571
|
index: {
|
|
487
572
|
label: "table.blank",
|
|
488
573
|
class: "is-text-left"
|
|
@@ -557,7 +642,7 @@ const a = {
|
|
|
557
642
|
tooltip: "table.svsPercent.tooltip",
|
|
558
643
|
sortOrders: [{ target: "svsPercent", direction: t }]
|
|
559
644
|
}
|
|
560
|
-
},
|
|
645
|
+
}, n = {
|
|
561
646
|
index: {
|
|
562
647
|
label: "#",
|
|
563
648
|
class: "is-text-left"
|
|
@@ -598,7 +683,7 @@ const a = {
|
|
|
598
683
|
tooltip: "table.points.tooltip",
|
|
599
684
|
sortOrders: [{ target: "points", direction: t }]
|
|
600
685
|
}
|
|
601
|
-
},
|
|
686
|
+
}, c = {
|
|
602
687
|
index: {
|
|
603
688
|
label: "table.blank",
|
|
604
689
|
class: "is-text-left"
|
|
@@ -667,7 +752,7 @@ const a = {
|
|
|
667
752
|
tooltip: "table.totalAttendanceAvg.tooltip",
|
|
668
753
|
sortOrders: [{ target: "totalAttendanceAvg", direction: t }]
|
|
669
754
|
}
|
|
670
|
-
},
|
|
755
|
+
}, m = {
|
|
671
756
|
index: {
|
|
672
757
|
label: "table.blank",
|
|
673
758
|
class: "is-text-left"
|
|
@@ -737,7 +822,7 @@ const a = {
|
|
|
737
822
|
tooltip: "table.pim.tooltip",
|
|
738
823
|
sortOrders: [{ target: "pim", direction: t }]
|
|
739
824
|
}
|
|
740
|
-
},
|
|
825
|
+
}, h = {
|
|
741
826
|
index: {
|
|
742
827
|
label: "table.blank",
|
|
743
828
|
class: "is-text-left"
|
|
@@ -792,7 +877,7 @@ const a = {
|
|
|
792
877
|
tooltip: "table.pkPercent.tooltip",
|
|
793
878
|
sortOrders: [{ target: "pkPercent", direction: t }]
|
|
794
879
|
}
|
|
795
|
-
},
|
|
880
|
+
}, O = {
|
|
796
881
|
index: {
|
|
797
882
|
label: "table.blank",
|
|
798
883
|
class: "is-text-left"
|
|
@@ -847,7 +932,7 @@ const a = {
|
|
|
847
932
|
tooltip: "table.ppPercent.tooltip",
|
|
848
933
|
sortOrders: [{ target: "ppPercent", direction: t }]
|
|
849
934
|
}
|
|
850
|
-
},
|
|
935
|
+
}, P = {
|
|
851
936
|
index: {
|
|
852
937
|
label: "table.blank",
|
|
853
938
|
class: "is-text-left"
|
|
@@ -919,18 +1004,19 @@ const a = {
|
|
|
919
1004
|
}
|
|
920
1005
|
};
|
|
921
1006
|
export {
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
1007
|
+
b as COLUMNS_FIELD_PLAYERS,
|
|
1008
|
+
p as COLUMNS_FIELD_PLAYERS_PENALTY,
|
|
1009
|
+
d as COLUMNS_FIELD_PLAYERS_TOI,
|
|
1010
|
+
g as COLUMNS_GOALIES,
|
|
1011
|
+
n as COLUMNS_PLAYERS_NATIONAL,
|
|
927
1012
|
a as COLUMNS_SCHEDULE,
|
|
928
|
-
|
|
929
|
-
|
|
1013
|
+
P as COLUMNS_SCORING_EFFICIENCY,
|
|
1014
|
+
s as COLUMNS_STANDINGS_P_2,
|
|
930
1015
|
l as COLUMNS_STANDINGS_P_3,
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
m as
|
|
934
|
-
h as
|
|
935
|
-
|
|
1016
|
+
i as COLUMNS_STANDINGS_P_PER,
|
|
1017
|
+
r as COLUMNS_STANDINGS_SHORT,
|
|
1018
|
+
m as COLUMNS_TEAMS_FAIRPLAY,
|
|
1019
|
+
h as COLUMNS_TEAMS_PENALTY_KILLING,
|
|
1020
|
+
O as COLUMNS_TEAMS_POWERPLAY,
|
|
1021
|
+
c as COLUMNS_TEAM_ATTENDANCE
|
|
936
1022
|
};
|
package/dist/components.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* name: @mjsz-vbr-elements/core
|
|
3
|
-
* version: v2.
|
|
3
|
+
* version: v2.27.0 - 10/09/2025, 12:00:49
|
|
4
4
|
* (c) 2025
|
|
5
5
|
* description: Data visualization for MJSZ VBR
|
|
6
6
|
* author: Ákos Stegner <akos.stegner@gmail.com>
|
|
7
7
|
*/
|
|
8
|
-
import { _ as s, a as r, b as o, c as t, d as i, e as l, f as n, I as c, g as d, h as S, i as b, j as g, k as T, l as m, m as v, n as I } from "./TimezoneSelector-
|
|
8
|
+
import { _ as s, a as r, b as o, c as t, d as i, e as l, f as n, I as c, g as d, h as S, i as b, j as g, k as T, l as m, m as v, n as I } from "./TimezoneSelector-DKtwSWAw.js";
|
|
9
9
|
export {
|
|
10
10
|
s as AdditionalStandingsText,
|
|
11
11
|
r as BaseSelect,
|
package/dist/composables.js
CHANGED
package/dist/constants.js
CHANGED
package/dist/errors-B6O6sS7H.js
CHANGED