lorgg-v2-components 0.2.12 → 0.3.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/components/index.d.ts +5 -0
- package/dist/components/library/Filters/FilterTournamentFormat/FilterTournamentFormat.vue.d.ts +18 -0
- package/dist/components/library/Filters/FilterTournamentFormat/FilterTournamentFormat.vue.d.ts.map +1 -0
- package/dist/components/library/Filters/FilterTournamentFormat/types.d.ts +11 -0
- package/dist/components/library/Filters/FilterTournamentServer/FilterTournamentServer.vue.d.ts +18 -0
- package/dist/components/library/Filters/FilterTournamentServer/FilterTournamentServer.vue.d.ts.map +1 -0
- package/dist/components/library/Filters/FilterTournamentServer/types.d.ts +11 -0
- package/dist/components/library/Filters/FilterTournamentStatus/FilterTournamentStatus.vue.d.ts +18 -0
- package/dist/components/library/Filters/FilterTournamentStatus/FilterTournamentStatus.vue.d.ts.map +1 -0
- package/dist/components/library/Filters/FilterTournamentStatus/types.d.ts +11 -0
- package/dist/components/library/Filters/FilterTournaments/FilterTournaments.vue.d.ts +39 -0
- package/dist/components/library/Filters/FilterTournaments/FilterTournaments.vue.d.ts.map +1 -0
- package/dist/components/library/Filters/FilterTournaments/types.d.ts +32 -0
- package/dist/components/library/TournamentBlock/TournamentBlock.vue.d.ts +121 -0
- package/dist/components/library/TournamentBlock/TournamentBlock.vue.d.ts.map +1 -0
- package/dist/components/library/TournamentBlock/types.d.ts +75 -0
- package/dist/components/library/TournamentBracket/TournamentBracket.vue.d.ts +6 -0
- package/dist/components/library/TournamentFeedEventWithdraw/TournamentFeedEventWithdraw.vue.d.ts +11 -0
- package/dist/components/library/TournamentFeedEventWithdraw/types.d.ts +6 -0
- package/dist/components/library/TournamentMatchup/TournamentMatchup.vue.d.ts +22 -0
- package/dist/components/library/TournamentMatchup/types.d.ts +10 -0
- package/dist/components/library/TournamentMatchupDetails/TournamentMatchupDetails.vue.d.ts +22 -0
- package/dist/components/library/TournamentMatchupDetails/types.d.ts +12 -0
- package/dist/components/library/TournamentMatchupEdit/TournamentMatchupEdit.vue.d.ts +22 -0
- package/dist/components/library/TournamentPlayer/TournamentPlayer.vue.d.ts +11 -0
- package/dist/components/library/TournamentPlayer/types.d.ts +6 -0
- package/dist/components/library/TournamentPlayerRow/TournamentPlayerRow.vue.d.ts +37 -2
- package/dist/components/library/TournamentPlayerRow/types.d.ts +18 -0
- package/dist/components/library/TournamentPlayerTable/TournamentPlayerTable.vue.d.ts +24 -1
- package/dist/components/library/TournamentPlayerTable/types.d.ts +12 -0
- package/dist/components/library/TournamentSidePanel/TournamentSidePanel.vue.d.ts.map +1 -1
- package/dist/components/library/TournamentSwissRound/TournamentSwissRound.vue.d.ts +17 -0
- package/dist/components/library/TournamentSwissRound/types.d.ts +6 -0
- package/dist/components/main.d.ts +1 -1
- package/dist/components/setup/i18n.d.ts +19 -0
- package/dist/components/setup/i18n.d.ts.map +1 -1
- package/dist/components/setup/icons.d.ts.map +1 -1
- package/dist/components/setup/locales/en.d.ts +19 -0
- package/dist/components/setup/locales/en.d.ts.map +1 -1
- package/dist/lorgg-components.cjs.js +55 -55
- package/dist/lorgg-components.css +1 -1
- package/dist/lorgg-components.es.js +12351 -11484
- package/dist/lorgg-components.umd.js +56 -56
- package/package.json +5 -2
|
@@ -6,6 +6,7 @@ export type TournamentPlayerProps = {
|
|
|
6
6
|
player: MatchupDetailsPlayer | null;
|
|
7
7
|
playerNumber: 1 | 2;
|
|
8
8
|
games: MatchupDetailsGame[];
|
|
9
|
+
scoreOverride?: number | null;
|
|
9
10
|
resultToShow: number | null;
|
|
10
11
|
showTippy?: boolean;
|
|
11
12
|
placement: TournamentPlayerTippyPlacement;
|
|
@@ -26,6 +27,11 @@ export declare const tournamentPlayerProps: {
|
|
|
26
27
|
required: boolean;
|
|
27
28
|
default: () => MatchupDetailsGame[];
|
|
28
29
|
};
|
|
30
|
+
scoreOverride: {
|
|
31
|
+
type: PropType<number | null>;
|
|
32
|
+
required: boolean;
|
|
33
|
+
default: null;
|
|
34
|
+
};
|
|
29
35
|
resultToShow: {
|
|
30
36
|
type: PropType<number | null>;
|
|
31
37
|
required: boolean;
|
|
@@ -21,6 +21,11 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
21
21
|
required: boolean;
|
|
22
22
|
default: string;
|
|
23
23
|
};
|
|
24
|
+
checkedIn: {
|
|
25
|
+
type: BooleanConstructor;
|
|
26
|
+
required: boolean;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
24
29
|
rank: {
|
|
25
30
|
type: NumberConstructor;
|
|
26
31
|
required: boolean;
|
|
@@ -81,7 +86,17 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
81
86
|
winrate: boolean;
|
|
82
87
|
};
|
|
83
88
|
};
|
|
84
|
-
|
|
89
|
+
showCheckedInBadge: {
|
|
90
|
+
type: BooleanConstructor;
|
|
91
|
+
required: boolean;
|
|
92
|
+
default: boolean;
|
|
93
|
+
};
|
|
94
|
+
showAdminActions: {
|
|
95
|
+
type: BooleanConstructor;
|
|
96
|
+
required: boolean;
|
|
97
|
+
default: boolean;
|
|
98
|
+
};
|
|
99
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "kick-player"[], "kick-player", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
85
100
|
routerLink: {
|
|
86
101
|
type: import("vue").PropType<string | import("vue-router/dist/router-CWoNjPRp.mjs").kt | import("vue-router/dist/router-CWoNjPRp.mjs").Tt>;
|
|
87
102
|
required: boolean;
|
|
@@ -104,6 +119,11 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
104
119
|
required: boolean;
|
|
105
120
|
default: string;
|
|
106
121
|
};
|
|
122
|
+
checkedIn: {
|
|
123
|
+
type: BooleanConstructor;
|
|
124
|
+
required: boolean;
|
|
125
|
+
default: boolean;
|
|
126
|
+
};
|
|
107
127
|
rank: {
|
|
108
128
|
type: NumberConstructor;
|
|
109
129
|
required: boolean;
|
|
@@ -164,7 +184,19 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
164
184
|
winrate: boolean;
|
|
165
185
|
};
|
|
166
186
|
};
|
|
167
|
-
|
|
187
|
+
showCheckedInBadge: {
|
|
188
|
+
type: BooleanConstructor;
|
|
189
|
+
required: boolean;
|
|
190
|
+
default: boolean;
|
|
191
|
+
};
|
|
192
|
+
showAdminActions: {
|
|
193
|
+
type: BooleanConstructor;
|
|
194
|
+
required: boolean;
|
|
195
|
+
default: boolean;
|
|
196
|
+
};
|
|
197
|
+
}>> & Readonly<{
|
|
198
|
+
"onKick-player"?: ((...args: any[]) => any) | undefined;
|
|
199
|
+
}>, {
|
|
168
200
|
name: string;
|
|
169
201
|
routerLink: string | import("vue-router/dist/router-CWoNjPRp.mjs").kt | import("vue-router/dist/router-CWoNjPRp.mjs").Tt;
|
|
170
202
|
index: number;
|
|
@@ -172,7 +204,10 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
172
204
|
rank: number;
|
|
173
205
|
shownColumns: import("./types").TournamentPlayerTableShownColumns;
|
|
174
206
|
selectedBannerCard: string | null;
|
|
207
|
+
showCheckedInBadge: boolean;
|
|
208
|
+
showAdminActions: boolean;
|
|
175
209
|
selectedBannerColor: string | null;
|
|
210
|
+
checkedIn: boolean;
|
|
176
211
|
gameWins: number;
|
|
177
212
|
gameLosses: number;
|
|
178
213
|
matchWins: number;
|
|
@@ -9,6 +9,7 @@ export type TournamentPlayerDeckData = {
|
|
|
9
9
|
export type TournamentPlayerRowData = {
|
|
10
10
|
id: number;
|
|
11
11
|
name: string;
|
|
12
|
+
checkedIn: boolean;
|
|
12
13
|
selectedBannerCard: string | null;
|
|
13
14
|
selectedBannerColor: string | null;
|
|
14
15
|
rank: number;
|
|
@@ -30,6 +31,8 @@ export type TournamentPlayerRowProps = TournamentPlayerRowData & {
|
|
|
30
31
|
index: number;
|
|
31
32
|
shownColumns: TournamentPlayerTableShownColumns;
|
|
32
33
|
routerLink: RouteLocationRaw;
|
|
34
|
+
showCheckedInBadge: boolean;
|
|
35
|
+
showAdminActions: boolean;
|
|
33
36
|
};
|
|
34
37
|
export declare const tournamentPlayerRowProps: {
|
|
35
38
|
routerLink: {
|
|
@@ -54,6 +57,11 @@ export declare const tournamentPlayerRowProps: {
|
|
|
54
57
|
required: boolean;
|
|
55
58
|
default: string;
|
|
56
59
|
};
|
|
60
|
+
checkedIn: {
|
|
61
|
+
type: BooleanConstructor;
|
|
62
|
+
required: boolean;
|
|
63
|
+
default: boolean;
|
|
64
|
+
};
|
|
57
65
|
rank: {
|
|
58
66
|
type: NumberConstructor;
|
|
59
67
|
required: boolean;
|
|
@@ -114,4 +122,14 @@ export declare const tournamentPlayerRowProps: {
|
|
|
114
122
|
winrate: boolean;
|
|
115
123
|
};
|
|
116
124
|
};
|
|
125
|
+
showCheckedInBadge: {
|
|
126
|
+
type: BooleanConstructor;
|
|
127
|
+
required: boolean;
|
|
128
|
+
default: boolean;
|
|
129
|
+
};
|
|
130
|
+
showAdminActions: {
|
|
131
|
+
type: BooleanConstructor;
|
|
132
|
+
required: boolean;
|
|
133
|
+
default: boolean;
|
|
134
|
+
};
|
|
117
135
|
};
|
|
@@ -19,7 +19,17 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
19
19
|
required: boolean;
|
|
20
20
|
default: boolean;
|
|
21
21
|
};
|
|
22
|
-
|
|
22
|
+
showCheckedInBadge: {
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
required: boolean;
|
|
25
|
+
default: boolean;
|
|
26
|
+
};
|
|
27
|
+
showAdminActions: {
|
|
28
|
+
type: BooleanConstructor;
|
|
29
|
+
required: boolean;
|
|
30
|
+
default: boolean;
|
|
31
|
+
};
|
|
32
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("sort-updated" | "kick-player")[], "sort-updated" | "kick-player", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
23
33
|
players: {
|
|
24
34
|
type: import("vue").PropType<import("../TournamentPlayerRow/types").TournamentPlayerRowData[]>;
|
|
25
35
|
required: boolean;
|
|
@@ -40,11 +50,24 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
40
50
|
required: boolean;
|
|
41
51
|
default: boolean;
|
|
42
52
|
};
|
|
53
|
+
showCheckedInBadge: {
|
|
54
|
+
type: BooleanConstructor;
|
|
55
|
+
required: boolean;
|
|
56
|
+
default: boolean;
|
|
57
|
+
};
|
|
58
|
+
showAdminActions: {
|
|
59
|
+
type: BooleanConstructor;
|
|
60
|
+
required: boolean;
|
|
61
|
+
default: boolean;
|
|
62
|
+
};
|
|
43
63
|
}>> & Readonly<{
|
|
44
64
|
"onSort-updated"?: ((...args: any[]) => any) | undefined;
|
|
65
|
+
"onKick-player"?: ((...args: any[]) => any) | undefined;
|
|
45
66
|
}>, {
|
|
46
67
|
loading: boolean;
|
|
47
68
|
players: import("../TournamentPlayerRow/types").TournamentPlayerRowData[];
|
|
48
69
|
shownColumns: import("../TournamentPlayerRow/types").TournamentPlayerTableShownColumns;
|
|
70
|
+
showCheckedInBadge: boolean;
|
|
71
|
+
showAdminActions: boolean;
|
|
49
72
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
50
73
|
export default _sfc_main;
|
|
@@ -4,6 +4,8 @@ export type TournamentPlayerTableProps = {
|
|
|
4
4
|
players: TournamentPlayerRowData[];
|
|
5
5
|
shownColumns: TournamentPlayerTableShownColumns;
|
|
6
6
|
loading: boolean;
|
|
7
|
+
showCheckedInBadge: boolean;
|
|
8
|
+
showAdminActions: boolean;
|
|
7
9
|
};
|
|
8
10
|
export declare const tournamentPlayerTableProps: {
|
|
9
11
|
players: {
|
|
@@ -26,4 +28,14 @@ export declare const tournamentPlayerTableProps: {
|
|
|
26
28
|
required: boolean;
|
|
27
29
|
default: boolean;
|
|
28
30
|
};
|
|
31
|
+
showCheckedInBadge: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
required: boolean;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
36
|
+
showAdminActions: {
|
|
37
|
+
type: BooleanConstructor;
|
|
38
|
+
required: boolean;
|
|
39
|
+
default: boolean;
|
|
40
|
+
};
|
|
29
41
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TournamentSidePanel.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/library/TournamentSidePanel/TournamentSidePanel.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"TournamentSidePanel.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/library/TournamentSidePanel/TournamentSidePanel.vue"],"names":[],"mappings":"AACA,cAAc,mKAAmK,CAAC;AAClL,OAAO,gLAAgL,CAAC;;AAExL,wBAA0F"}
|
|
@@ -5,6 +5,8 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
5
5
|
player1: import("../TournamentMatchupDetails/types").MatchupDetailsPlayer;
|
|
6
6
|
player2: import("../TournamentMatchupDetails/types").MatchupDetailsPlayer;
|
|
7
7
|
games: import("../TournamentMatchupDetails/types").MatchupDetailsGame[];
|
|
8
|
+
player1Score?: number | null | undefined;
|
|
9
|
+
player2Score?: number | null | undefined;
|
|
8
10
|
} | null)[]>;
|
|
9
11
|
required: boolean;
|
|
10
12
|
default: null;
|
|
@@ -14,6 +16,11 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
14
16
|
required: boolean;
|
|
15
17
|
default: boolean;
|
|
16
18
|
};
|
|
19
|
+
backgroundCardCode: {
|
|
20
|
+
type: import("vue").PropType<string | null>;
|
|
21
|
+
required: boolean;
|
|
22
|
+
default: null;
|
|
23
|
+
};
|
|
17
24
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "matchup-edit:submit"[], "matchup-edit:submit", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
18
25
|
matchups: {
|
|
19
26
|
type: import("vue").PropType<({
|
|
@@ -21,6 +28,8 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
21
28
|
player1: import("../TournamentMatchupDetails/types").MatchupDetailsPlayer;
|
|
22
29
|
player2: import("../TournamentMatchupDetails/types").MatchupDetailsPlayer;
|
|
23
30
|
games: import("../TournamentMatchupDetails/types").MatchupDetailsGame[];
|
|
31
|
+
player1Score?: number | null | undefined;
|
|
32
|
+
player2Score?: number | null | undefined;
|
|
24
33
|
} | null)[]>;
|
|
25
34
|
required: boolean;
|
|
26
35
|
default: null;
|
|
@@ -30,6 +39,11 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
30
39
|
required: boolean;
|
|
31
40
|
default: boolean;
|
|
32
41
|
};
|
|
42
|
+
backgroundCardCode: {
|
|
43
|
+
type: import("vue").PropType<string | null>;
|
|
44
|
+
required: boolean;
|
|
45
|
+
default: null;
|
|
46
|
+
};
|
|
33
47
|
}>> & Readonly<{
|
|
34
48
|
"onMatchup-edit:submit"?: ((...args: any[]) => any) | undefined;
|
|
35
49
|
}>, {
|
|
@@ -39,6 +53,9 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
39
53
|
player1: import("../TournamentMatchupDetails/types").MatchupDetailsPlayer;
|
|
40
54
|
player2: import("../TournamentMatchupDetails/types").MatchupDetailsPlayer;
|
|
41
55
|
games: import("../TournamentMatchupDetails/types").MatchupDetailsGame[];
|
|
56
|
+
player1Score?: number | null | undefined;
|
|
57
|
+
player2Score?: number | null | undefined;
|
|
42
58
|
} | null)[];
|
|
59
|
+
backgroundCardCode: string | null;
|
|
43
60
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
44
61
|
export default _sfc_main;
|
|
@@ -4,6 +4,7 @@ type TournamentSwissRoundMatchupProps = Omit<TournamentMatchupProps, "isHorizont
|
|
|
4
4
|
export type TournamentSwissRoundProps = {
|
|
5
5
|
matchups: (TournamentSwissRoundMatchupProps | null)[];
|
|
6
6
|
showAdminControls?: boolean;
|
|
7
|
+
backgroundCardCode?: string | null;
|
|
7
8
|
};
|
|
8
9
|
export declare const tournamentSwissRoundProps: {
|
|
9
10
|
matchups: {
|
|
@@ -16,5 +17,10 @@ export declare const tournamentSwissRoundProps: {
|
|
|
16
17
|
required: boolean;
|
|
17
18
|
default: boolean;
|
|
18
19
|
};
|
|
20
|
+
backgroundCardCode: {
|
|
21
|
+
type: PropType<string | null>;
|
|
22
|
+
required: boolean;
|
|
23
|
+
default: null;
|
|
24
|
+
};
|
|
19
25
|
};
|
|
20
26
|
export {};
|
|
@@ -3,4 +3,4 @@ declare const _default: {
|
|
|
3
3
|
install: (app: App) => Promise<void>;
|
|
4
4
|
};
|
|
5
5
|
export default _default;
|
|
6
|
-
export { AdvancedFilterItem, ArchetypeSidePanel, ArchetypeSidePanelHighlight, ArchetypesRow, ArchetypesTable, BuiltDecksTable, CardCarousel, CardItem, CardItem3d, CardItemLinkWrapper, CardLottery, CardMultiselect, CardOverview, CardQuantityBarChart, CardSimilarCards, CardSliceItem, CardTogglePage, CardsRow, CardsTable, ChampionIcon, CheckboxItem, CheckboxItemManaCost, CircleCardItem, ColorPicker, CopyDeckButton, DashboardCardRow, DashboardCardTable, DashboardLeaderboardRow, DashboardLeaderboardTable, DashboardNewCards, DashboardProfile, DashboardSignUp, DeckBlock, DeckBuilderSummary, DeckBuilderSummaryType, DeckButtons, DeckDifferenceItem, DeckDifferences, DeckHighlight, DeckHighlightCards, DeckHighlightEye, DeckHighlightRegions, DeckIcon, DeckPreview, DeckSidePanel, DeckSummary, DecksRow, DecksTable, DeleteDeckButton, EditDeckNameButton, EquipmentIcon, EternalIcon, FilterAdvanced, FilterCardCodes, FilterCards, FilterDecks, FilterProfile, FilterText, FilterKeywords, FilterManaCost, FilterRanks, FilterRarities, FilterRegions, FilterSampleSize, FilterServers, FilterSets, FilterTime, FilterTypes, FollowerIcon, GauntletIcon, GemsCost, InfoDoughnutChart, InfoIcon, LandmarkIcon, LanguageSelection, LargeTable, LeaderboardChart, LeaderboardDetailRow, LeaderboardDetailTable, LeaderboardOptions, LeaderboardTop, LeaderboardTop10Region, LineChart, LogoIcon, ManaCurveChart, ManaHexagonIcon, MatchItem, ModalItem, NavigationSide, NavigationTop, NavigationTopDesktop, NavigationTopMobile, OpenArchetypePageButton, OpenInDeckBuilderButton, ProfileArchetypeRow, ProfileArchetypeTable, ProfileDropdown, ProfileGameTypeWinrate, ProfileRegionRow, ProfileRegionTable, RelativeTimeSpan, RegionItem, RegionsLine, RevealCarousel, RevealDayOption, RevealDayOptions, RoundCardInfoBarChart, RuneterraIcon, SearchBar, ShardsIcon, ShareButton, SidePanelSectionPane, SimilarDecksTable, SimulateMulligan, SimulateMulliganButton, SmallTable, SocialLinks, SpellIcon, StandardIcon, StatisticsPaneContainer, TestComponent, TippyText, ToggleSwitch, ToastContainer, UpdateDeckPrivacyButton, UploadDeckToLorButton, WinrateDoughnutChart, WinsLossesBarChart, WinsLossesLine, ZoomSlider, SimpleDoughnutChart, RegionDistributionChart, Spinner, DeckButtonsDropdown, TournamentPlayerTable, TournamentTimeline, TournamentSwissRoundOptions, TournamentSwissRound, TournamentBracket, TournamentMatchup, TournamentSidePanel, setupi18n, useCardJsonObjectStore, useCardJsonStore, useDataJsonStore, useUserStore, useCallbacksStore, useToastsStore, useAcquiredCardsStore, useSearchBarOptionsStore, useFilterStore, importIcons, DeckBuilderSidePanel, getDeckObjectFromCode, getCardsFromDeck, getMostImportantCards, getDate, keyDayjs, regionOfCard, getRegionNameOfRegionRef, CardImageType, getRegions, } from '../components';
|
|
6
|
+
export { AdvancedFilterItem, ArchetypeSidePanel, ArchetypeSidePanelHighlight, ArchetypesRow, ArchetypesTable, BuiltDecksTable, CardCarousel, CardItem, CardItem3d, CardItemLinkWrapper, CardLottery, CardMultiselect, CardOverview, CardQuantityBarChart, CardSimilarCards, CardSliceItem, CardTogglePage, CardsRow, CardsTable, ChampionIcon, CheckboxItem, CheckboxItemManaCost, CircleCardItem, ColorPicker, CopyDeckButton, DashboardCardRow, DashboardCardTable, DashboardLeaderboardRow, DashboardLeaderboardTable, DashboardNewCards, DashboardProfile, DashboardSignUp, DeckBlock, DeckBuilderSummary, DeckBuilderSummaryType, DeckButtons, DeckDifferenceItem, DeckDifferences, DeckHighlight, DeckHighlightCards, DeckHighlightEye, DeckHighlightRegions, DeckIcon, DeckPreview, DeckSidePanel, DeckSummary, DecksRow, DecksTable, DeleteDeckButton, EditDeckNameButton, EquipmentIcon, EternalIcon, FilterAdvanced, FilterCardCodes, FilterCards, FilterDecks, FilterProfile, FilterText, FilterKeywords, FilterManaCost, FilterRanks, FilterRarities, FilterRegions, FilterSampleSize, FilterServers, FilterSets, FilterTime, FilterTypes, FollowerIcon, GauntletIcon, GemsCost, InfoDoughnutChart, InfoIcon, LandmarkIcon, LanguageSelection, LargeTable, LeaderboardChart, LeaderboardDetailRow, LeaderboardDetailTable, LeaderboardOptions, LeaderboardTop, LeaderboardTop10Region, LineChart, LogoIcon, ManaCurveChart, ManaHexagonIcon, MatchItem, ModalItem, NavigationSide, NavigationTop, NavigationTopDesktop, NavigationTopMobile, OpenArchetypePageButton, OpenInDeckBuilderButton, ProfileArchetypeRow, ProfileArchetypeTable, ProfileDropdown, ProfileGameTypeWinrate, ProfileRegionRow, ProfileRegionTable, RelativeTimeSpan, RegionItem, RegionsLine, RevealCarousel, RevealDayOption, RevealDayOptions, RoundCardInfoBarChart, RuneterraIcon, SearchBar, ShardsIcon, ShareButton, SidePanelSectionPane, SimilarDecksTable, SimulateMulligan, SimulateMulliganButton, SmallTable, SocialLinks, SpellIcon, StandardIcon, StatisticsPaneContainer, TestComponent, TippyText, ToggleSwitch, ToastContainer, UpdateDeckPrivacyButton, UploadDeckToLorButton, WinrateDoughnutChart, WinsLossesBarChart, WinsLossesLine, ZoomSlider, SimpleDoughnutChart, RegionDistributionChart, Spinner, DeckButtonsDropdown, TournamentPlayerTable, TournamentTimeline, TournamentSwissRoundOptions, TournamentSwissRound, TournamentBracket, TournamentMatchup, TournamentSidePanel, TournamentBlock, FilterTournaments, FilterTournamentStatus, FilterTournamentServer, FilterTournamentFormat, setupi18n, useCardJsonObjectStore, useCardJsonStore, useDataJsonStore, useUserStore, useCallbacksStore, useToastsStore, useAcquiredCardsStore, useSearchBarOptionsStore, useFilterStore, importIcons, DeckBuilderSidePanel, getDeckObjectFromCode, getCardsFromDeck, getMostImportantCards, getDate, keyDayjs, regionOfCard, getRegionNameOfRegionRef, CardImageType, getRegions, } from '../components';
|
|
@@ -158,6 +158,24 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
|
|
|
158
158
|
};
|
|
159
159
|
};
|
|
160
160
|
tournament: {
|
|
161
|
+
tournaments: string;
|
|
162
|
+
createTournament: string;
|
|
163
|
+
dateRange: string;
|
|
164
|
+
from: string;
|
|
165
|
+
to: string;
|
|
166
|
+
registrants: string;
|
|
167
|
+
capacity: string;
|
|
168
|
+
min: string;
|
|
169
|
+
max: string;
|
|
170
|
+
preview: string;
|
|
171
|
+
status: string;
|
|
172
|
+
setup: string;
|
|
173
|
+
signups: string;
|
|
174
|
+
checkin: string;
|
|
175
|
+
active: string;
|
|
176
|
+
completed: string;
|
|
177
|
+
awaitingReview: string;
|
|
178
|
+
registered: string;
|
|
161
179
|
standings: string;
|
|
162
180
|
oppWinrate: string;
|
|
163
181
|
oppGameWinrate: string;
|
|
@@ -178,6 +196,7 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
|
|
|
178
196
|
};
|
|
179
197
|
feed: {
|
|
180
198
|
withdrawal: string;
|
|
199
|
+
withdrawalMessageGeneric: string;
|
|
181
200
|
withdrawalMessage: string;
|
|
182
201
|
signUp: string;
|
|
183
202
|
matchUpdate: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"i18n.d.ts","sourceRoot":"","sources":["../../../src/components/setup/i18n.ts"],"names":[],"mappings":"AAcA,wBAAgB,SAAS,CAAC,MAAM,SAAO
|
|
1
|
+
{"version":3,"file":"i18n.d.ts","sourceRoot":"","sources":["../../../src/components/setup/i18n.ts"],"names":[],"mappings":"AAcA,wBAAgB,SAAS,CAAC,MAAM,SAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0BAyBtC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../../../src/components/setup/icons.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../../../src/components/setup/icons.ts"],"names":[],"mappings":"AAsEA,wBAAgB,WAAW,SAwI1B"}
|
|
@@ -157,6 +157,24 @@ declare const _default: {
|
|
|
157
157
|
};
|
|
158
158
|
};
|
|
159
159
|
tournament: {
|
|
160
|
+
tournaments: string;
|
|
161
|
+
createTournament: string;
|
|
162
|
+
dateRange: string;
|
|
163
|
+
from: string;
|
|
164
|
+
to: string;
|
|
165
|
+
registrants: string;
|
|
166
|
+
capacity: string;
|
|
167
|
+
min: string;
|
|
168
|
+
max: string;
|
|
169
|
+
preview: string;
|
|
170
|
+
status: string;
|
|
171
|
+
setup: string;
|
|
172
|
+
signups: string;
|
|
173
|
+
checkin: string;
|
|
174
|
+
active: string;
|
|
175
|
+
completed: string;
|
|
176
|
+
awaitingReview: string;
|
|
177
|
+
registered: string;
|
|
160
178
|
standings: string;
|
|
161
179
|
oppWinrate: string;
|
|
162
180
|
oppGameWinrate: string;
|
|
@@ -177,6 +195,7 @@ declare const _default: {
|
|
|
177
195
|
};
|
|
178
196
|
feed: {
|
|
179
197
|
withdrawal: string;
|
|
198
|
+
withdrawalMessageGeneric: string;
|
|
180
199
|
withdrawalMessage: string;
|
|
181
200
|
signUp: string;
|
|
182
201
|
matchUpdate: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../../src/components/setup/locales/en.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../../src/components/setup/locales/en.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA0fE"}
|