lorgg-v2-components 0.0.167 → 0.0.169
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/library/CardLottery/CardLottery.vue.d.ts +44 -1
- package/dist/components/library/CardLottery/types.d.ts +23 -1
- package/dist/components/setup/i18n.d.ts +101 -0
- package/dist/components/setup/i18n.d.ts.map +1 -1
- package/dist/lorgg-components.cjs.js +35 -23
- package/dist/lorgg-components.css +1 -1
- package/dist/lorgg-components.es.js +1337 -1217
- package/dist/lorgg-components.umd.js +34 -22
- package/package.json +1 -1
|
@@ -1,2 +1,45 @@
|
|
|
1
|
-
|
|
1
|
+
import { CardFlip } from './types';
|
|
2
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
3
|
+
cardFlips: {
|
|
4
|
+
type: import("vue").PropType<CardFlip[]>;
|
|
5
|
+
required: boolean;
|
|
6
|
+
default: never[];
|
|
7
|
+
};
|
|
8
|
+
chosenCardCode: {
|
|
9
|
+
type: import("vue").PropType<string | null>;
|
|
10
|
+
required: boolean;
|
|
11
|
+
default: null;
|
|
12
|
+
};
|
|
13
|
+
opensAvailable: {
|
|
14
|
+
type: NumberConstructor;
|
|
15
|
+
required: boolean;
|
|
16
|
+
default: number;
|
|
17
|
+
};
|
|
18
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:cardFlips" | "update:chosenCardCode" | "click:setBanner" | "click:setIcon" | "click:openAnother")[], "update:cardFlips" | "update:chosenCardCode" | "click:setBanner" | "click:setIcon" | "click:openAnother", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
+
cardFlips: {
|
|
20
|
+
type: import("vue").PropType<CardFlip[]>;
|
|
21
|
+
required: boolean;
|
|
22
|
+
default: never[];
|
|
23
|
+
};
|
|
24
|
+
chosenCardCode: {
|
|
25
|
+
type: import("vue").PropType<string | null>;
|
|
26
|
+
required: boolean;
|
|
27
|
+
default: null;
|
|
28
|
+
};
|
|
29
|
+
opensAvailable: {
|
|
30
|
+
type: NumberConstructor;
|
|
31
|
+
required: boolean;
|
|
32
|
+
default: number;
|
|
33
|
+
};
|
|
34
|
+
}>> & {
|
|
35
|
+
"onUpdate:cardFlips"?: ((...args: any[]) => any) | undefined;
|
|
36
|
+
"onUpdate:chosenCardCode"?: ((...args: any[]) => any) | undefined;
|
|
37
|
+
"onClick:setBanner"?: ((...args: any[]) => any) | undefined;
|
|
38
|
+
"onClick:setIcon"?: ((...args: any[]) => any) | undefined;
|
|
39
|
+
"onClick:openAnother"?: ((...args: any[]) => any) | undefined;
|
|
40
|
+
}, {
|
|
41
|
+
cardFlips: CardFlip[];
|
|
42
|
+
chosenCardCode: string | null;
|
|
43
|
+
opensAvailable: number;
|
|
44
|
+
}, {}>;
|
|
2
45
|
export default _sfc_main;
|
|
@@ -1,6 +1,28 @@
|
|
|
1
|
-
import { Ref } from 'vue';
|
|
1
|
+
import { PropType, Ref } from 'vue';
|
|
2
2
|
export type CardFlip = {
|
|
3
3
|
flipped: Ref<boolean>;
|
|
4
4
|
display: Ref<boolean>;
|
|
5
5
|
cardCode: Ref<string>;
|
|
6
6
|
};
|
|
7
|
+
export type CardLotteryProps = {
|
|
8
|
+
cardFlips: CardFlip[];
|
|
9
|
+
chosenCardCode: string | null;
|
|
10
|
+
opensAvailable: number;
|
|
11
|
+
};
|
|
12
|
+
export declare const cardLotteryProps: {
|
|
13
|
+
cardFlips: {
|
|
14
|
+
type: PropType<CardFlip[]>;
|
|
15
|
+
required: boolean;
|
|
16
|
+
default: never[];
|
|
17
|
+
};
|
|
18
|
+
chosenCardCode: {
|
|
19
|
+
type: PropType<string | null>;
|
|
20
|
+
required: boolean;
|
|
21
|
+
default: null;
|
|
22
|
+
};
|
|
23
|
+
opensAvailable: {
|
|
24
|
+
type: NumberConstructor;
|
|
25
|
+
required: boolean;
|
|
26
|
+
default: number;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
@@ -52,6 +52,7 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
|
|
|
52
52
|
};
|
|
53
53
|
deckBuilder: {
|
|
54
54
|
confirmOverwrite: string;
|
|
55
|
+
deckCreated: string;
|
|
55
56
|
};
|
|
56
57
|
leaderboard: {
|
|
57
58
|
totalPlayers: string;
|
|
@@ -127,6 +128,8 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
|
|
|
127
128
|
type: string;
|
|
128
129
|
rarity: string;
|
|
129
130
|
archetypes: string;
|
|
131
|
+
archetype: string;
|
|
132
|
+
profile: string;
|
|
130
133
|
leaderboard: string;
|
|
131
134
|
victory: string;
|
|
132
135
|
defeat: string;
|
|
@@ -181,6 +184,8 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
|
|
|
181
184
|
rename: string;
|
|
182
185
|
view: string;
|
|
183
186
|
mustBeLoggedIn: string;
|
|
187
|
+
uploadFailed: string;
|
|
188
|
+
successfullyUploaded: string;
|
|
184
189
|
};
|
|
185
190
|
profile: {
|
|
186
191
|
winrateOverTime: string;
|
|
@@ -387,6 +392,14 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
|
|
|
387
392
|
deckStats: string;
|
|
388
393
|
cardStats: string;
|
|
389
394
|
cardGallery: string;
|
|
395
|
+
archetype: string;
|
|
396
|
+
profile: string;
|
|
397
|
+
uploadFailed: string;
|
|
398
|
+
successfullyUploaded: string;
|
|
399
|
+
};
|
|
400
|
+
deckBuilder: {
|
|
401
|
+
confirmOverwrite: string;
|
|
402
|
+
deckCreated: string;
|
|
390
403
|
};
|
|
391
404
|
profile: {
|
|
392
405
|
winrateOverTime: string;
|
|
@@ -593,6 +606,14 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
|
|
|
593
606
|
deckStats: string;
|
|
594
607
|
cardStats: string;
|
|
595
608
|
cardGallery: string;
|
|
609
|
+
archetype: string;
|
|
610
|
+
profile: string;
|
|
611
|
+
uploadFailed: string;
|
|
612
|
+
successfullyUploaded: string;
|
|
613
|
+
};
|
|
614
|
+
deckBuilder: {
|
|
615
|
+
confirmOverwrite: string;
|
|
616
|
+
deckCreated: string;
|
|
596
617
|
};
|
|
597
618
|
profile: {
|
|
598
619
|
winrateOverTime: string;
|
|
@@ -799,6 +820,14 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
|
|
|
799
820
|
deckStats: string;
|
|
800
821
|
cardStats: string;
|
|
801
822
|
cardGallery: string;
|
|
823
|
+
archetype: string;
|
|
824
|
+
profile: string;
|
|
825
|
+
uploadFailed: string;
|
|
826
|
+
successfullyUploaded: string;
|
|
827
|
+
};
|
|
828
|
+
deckBuilder: {
|
|
829
|
+
confirmOverwrite: string;
|
|
830
|
+
deckCreated: string;
|
|
802
831
|
};
|
|
803
832
|
profile: {
|
|
804
833
|
winrateOverTime: string;
|
|
@@ -1005,6 +1034,14 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
|
|
|
1005
1034
|
deckStats: string;
|
|
1006
1035
|
cardStats: string;
|
|
1007
1036
|
cardGallery: string;
|
|
1037
|
+
archetype: string;
|
|
1038
|
+
profile: string;
|
|
1039
|
+
uploadFailed: string;
|
|
1040
|
+
successfullyUploaded: string;
|
|
1041
|
+
};
|
|
1042
|
+
deckBuilder: {
|
|
1043
|
+
confirmOverwrite: string;
|
|
1044
|
+
deckCreated: string;
|
|
1008
1045
|
};
|
|
1009
1046
|
profile: {
|
|
1010
1047
|
winrateOverTime: string;
|
|
@@ -1211,6 +1248,14 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
|
|
|
1211
1248
|
deckStats: string;
|
|
1212
1249
|
cardStats: string;
|
|
1213
1250
|
cardGallery: string;
|
|
1251
|
+
archetype: string;
|
|
1252
|
+
profile: string;
|
|
1253
|
+
uploadFailed: string;
|
|
1254
|
+
successfullyUploaded: string;
|
|
1255
|
+
};
|
|
1256
|
+
deckBuilder: {
|
|
1257
|
+
confirmOverwrite: string;
|
|
1258
|
+
deckCreated: string;
|
|
1214
1259
|
};
|
|
1215
1260
|
profile: {
|
|
1216
1261
|
winrateOverTime: string;
|
|
@@ -1417,6 +1462,14 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
|
|
|
1417
1462
|
deckStats: string;
|
|
1418
1463
|
cardStats: string;
|
|
1419
1464
|
cardGallery: string;
|
|
1465
|
+
archetype: string;
|
|
1466
|
+
profile: string;
|
|
1467
|
+
uploadFailed: string;
|
|
1468
|
+
successfullyUploaded: string;
|
|
1469
|
+
};
|
|
1470
|
+
deckBuilder: {
|
|
1471
|
+
confirmOverwrite: string;
|
|
1472
|
+
deckCreated: string;
|
|
1420
1473
|
};
|
|
1421
1474
|
profile: {
|
|
1422
1475
|
winrateOverTime: string;
|
|
@@ -1623,6 +1676,14 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
|
|
|
1623
1676
|
deckStats: string;
|
|
1624
1677
|
cardStats: string;
|
|
1625
1678
|
cardGallery: string;
|
|
1679
|
+
archetype: string;
|
|
1680
|
+
profile: string;
|
|
1681
|
+
uploadFailed: string;
|
|
1682
|
+
successfullyUploaded: string;
|
|
1683
|
+
};
|
|
1684
|
+
deckBuilder: {
|
|
1685
|
+
confirmOverwrite: string;
|
|
1686
|
+
deckCreated: string;
|
|
1626
1687
|
};
|
|
1627
1688
|
profile: {
|
|
1628
1689
|
winrateOverTime: string;
|
|
@@ -1829,6 +1890,14 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
|
|
|
1829
1890
|
deckStats: string;
|
|
1830
1891
|
cardStats: string;
|
|
1831
1892
|
cardGallery: string;
|
|
1893
|
+
archetype: string;
|
|
1894
|
+
profile: string;
|
|
1895
|
+
uploadFailed: string;
|
|
1896
|
+
successfullyUploaded: string;
|
|
1897
|
+
};
|
|
1898
|
+
deckBuilder: {
|
|
1899
|
+
confirmOverwrite: string;
|
|
1900
|
+
deckCreated: string;
|
|
1832
1901
|
};
|
|
1833
1902
|
profile: {
|
|
1834
1903
|
winrateOverTime: string;
|
|
@@ -2035,6 +2104,14 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
|
|
|
2035
2104
|
deckStats: string;
|
|
2036
2105
|
cardStats: string;
|
|
2037
2106
|
cardGallery: string;
|
|
2107
|
+
archetype: string;
|
|
2108
|
+
profile: string;
|
|
2109
|
+
uploadFailed: string;
|
|
2110
|
+
successfullyUploaded: string;
|
|
2111
|
+
};
|
|
2112
|
+
deckBuilder: {
|
|
2113
|
+
confirmOverwrite: string;
|
|
2114
|
+
deckCreated: string;
|
|
2038
2115
|
};
|
|
2039
2116
|
profile: {
|
|
2040
2117
|
winrateOverTime: string;
|
|
@@ -2241,6 +2318,14 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
|
|
|
2241
2318
|
deckStats: string;
|
|
2242
2319
|
cardStats: string;
|
|
2243
2320
|
cardGallery: string;
|
|
2321
|
+
archetype: string;
|
|
2322
|
+
profile: string;
|
|
2323
|
+
uploadFailed: string;
|
|
2324
|
+
successfullyUploaded: string;
|
|
2325
|
+
};
|
|
2326
|
+
deckBuilder: {
|
|
2327
|
+
confirmOverwrite: string;
|
|
2328
|
+
deckCreated: string;
|
|
2244
2329
|
};
|
|
2245
2330
|
profile: {
|
|
2246
2331
|
winrateOverTime: string;
|
|
@@ -2447,6 +2532,14 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
|
|
|
2447
2532
|
deckStats: string;
|
|
2448
2533
|
cardStats: string;
|
|
2449
2534
|
cardGallery: string;
|
|
2535
|
+
archetype: string;
|
|
2536
|
+
profile: string;
|
|
2537
|
+
uploadFailed: string;
|
|
2538
|
+
successfullyUploaded: string;
|
|
2539
|
+
};
|
|
2540
|
+
deckBuilder: {
|
|
2541
|
+
confirmOverwrite: string;
|
|
2542
|
+
deckCreated: string;
|
|
2450
2543
|
};
|
|
2451
2544
|
profile: {
|
|
2452
2545
|
winrateOverTime: string;
|
|
@@ -2653,6 +2746,14 @@ export declare function setupi18n(locale?: string): import("vue-i18n").I18n<{
|
|
|
2653
2746
|
deckStats: string;
|
|
2654
2747
|
cardStats: string;
|
|
2655
2748
|
cardGallery: string;
|
|
2749
|
+
archetype: string;
|
|
2750
|
+
profile: string;
|
|
2751
|
+
uploadFailed: string;
|
|
2752
|
+
successfullyUploaded: string;
|
|
2753
|
+
};
|
|
2754
|
+
deckBuilder: {
|
|
2755
|
+
confirmOverwrite: string;
|
|
2756
|
+
deckCreated: string;
|
|
2656
2757
|
};
|
|
2657
2758
|
profile: {
|
|
2658
2759
|
winrateOverTime: 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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0BA0uFtC"}
|