@everymatrix/lottery-game-page 1.54.4 → 1.54.8
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/cjs/helper-accordion_14.cjs.entry.js +22993 -33262
- package/dist/cjs/{index-19471764.js → index-a5382cea.js} +15 -6
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/cjs/lottery-game-page.cjs.js +3 -3
- package/dist/collection/collection-manifest.json +1 -1
- package/dist/collection/components/lottery-game-page/lottery-game-page.js +55 -5
- package/dist/collection/utils/locale.utils.js +17 -56
- package/dist/esm/helper-accordion_14.entry.js +23000 -33269
- package/dist/esm/{index-00f6fefc.js → index-ee5e60df.js} +15 -6
- package/dist/esm/loader.js +3 -3
- package/dist/esm/lottery-game-page.js +4 -4
- package/dist/lottery-game-page/lottery-game-page.esm.js +1 -1
- package/dist/lottery-game-page/p-56c2619e.js +2 -0
- package/dist/lottery-game-page/p-d952436e.entry.js +3901 -0
- package/dist/types/components/lottery-game-page/lottery-game-page.d.ts +7 -0
- package/dist/types/components.d.ts +8 -0
- package/dist/types/utils/locale.utils.d.ts +1 -0
- package/package.json +1 -1
- package/dist/lottery-game-page/p-94e931fe.entry.js +0 -6211
- package/dist/lottery-game-page/p-ebaa337d.js +0 -2
|
@@ -41,6 +41,10 @@ export declare class LotteryGamePage {
|
|
|
41
41
|
* Client custom styling via url
|
|
42
42
|
*/
|
|
43
43
|
clientStylingurl: string;
|
|
44
|
+
/**
|
|
45
|
+
* Translation via url
|
|
46
|
+
*/
|
|
47
|
+
translationUrl: string;
|
|
44
48
|
clientStylingUrlContent: string;
|
|
45
49
|
tickets: Array<any>;
|
|
46
50
|
mainTickets: Array<any>;
|
|
@@ -62,6 +66,7 @@ export declare class LotteryGamePage {
|
|
|
62
66
|
private submitError;
|
|
63
67
|
private showApiError;
|
|
64
68
|
private apiError;
|
|
69
|
+
translationData: any;
|
|
65
70
|
element: HTMLElement;
|
|
66
71
|
goBackEvent: EventEmitter<string>;
|
|
67
72
|
goToLobbyEvent: EventEmitter<string>;
|
|
@@ -77,7 +82,9 @@ export declare class LotteryGamePage {
|
|
|
77
82
|
private interval;
|
|
78
83
|
private isMobile;
|
|
79
84
|
private secondarySelectionAllowed;
|
|
85
|
+
handleNewTranslations(): void;
|
|
80
86
|
connectedCallback(): void;
|
|
87
|
+
componentWillLoad(): Promise<any>;
|
|
81
88
|
componentDidRender(): void;
|
|
82
89
|
countdownLogic(date: any): void;
|
|
83
90
|
disconnectedCallback(): void;
|
|
@@ -43,6 +43,10 @@ export namespace Components {
|
|
|
43
43
|
* GIC Session
|
|
44
44
|
*/
|
|
45
45
|
"sessionId": string;
|
|
46
|
+
/**
|
|
47
|
+
* Translation via url
|
|
48
|
+
*/
|
|
49
|
+
"translationUrl": string;
|
|
46
50
|
}
|
|
47
51
|
}
|
|
48
52
|
export interface LotteryGamePageCustomEvent<T> extends CustomEvent<T> {
|
|
@@ -112,6 +116,10 @@ declare namespace LocalJSX {
|
|
|
112
116
|
* GIC Session
|
|
113
117
|
*/
|
|
114
118
|
"sessionId"?: string;
|
|
119
|
+
/**
|
|
120
|
+
* Translation via url
|
|
121
|
+
*/
|
|
122
|
+
"translationUrl"?: string;
|
|
115
123
|
}
|
|
116
124
|
interface IntrinsicElements {
|
|
117
125
|
"lottery-game-page": LotteryGamePage;
|