@everymatrix/casino-tournament-list 1.20.5
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/casino-tournament-list/casino-tournament-list.esm.js +1 -0
- package/dist/casino-tournament-list/index.esm.js +0 -0
- package/dist/casino-tournament-list/p-1368789d.js +1 -0
- package/dist/casino-tournament-list/p-908908a6.entry.js +15 -0
- package/dist/cjs/casino-tournament-banner_6.cjs.entry.js +8911 -0
- package/dist/cjs/casino-tournament-list.cjs.js +19 -0
- package/dist/cjs/index-c1b4bd7d.js +1284 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +21 -0
- package/dist/collection/collection-manifest.json +43 -0
- package/dist/collection/components/casino-tournament-list/casino-tournament-list.css +97 -0
- package/dist/collection/components/casino-tournament-list/casino-tournament-list.js +578 -0
- package/dist/collection/index.js +1 -0
- package/dist/collection/utils/locale.utils.js +104 -0
- package/dist/collection/utils/utils.js +20 -0
- package/dist/components/casino-tournament-banner.js +6 -0
- package/dist/components/casino-tournament-banner2.js +598 -0
- package/dist/components/casino-tournament-buttons.js +6 -0
- package/dist/components/casino-tournament-buttons2.js +534 -0
- package/dist/components/casino-tournament-duration.js +6 -0
- package/dist/components/casino-tournament-duration2.js +220 -0
- package/dist/components/casino-tournament-info.js +6 -0
- package/dist/components/casino-tournament-info2.js +502 -0
- package/dist/components/casino-tournament-list.d.ts +11 -0
- package/dist/components/casino-tournament-list.js +1493 -0
- package/dist/components/casino-tournament-prizes.js +6 -0
- package/dist/components/casino-tournament-prizes2.js +190 -0
- package/dist/components/index.d.ts +26 -0
- package/dist/components/index.js +1 -0
- package/dist/components/moment.js +5677 -0
- package/dist/esm/casino-tournament-banner_6.entry.js +8902 -0
- package/dist/esm/casino-tournament-list.js +17 -0
- package/dist/esm/index-b57e0a6b.js +1258 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +17 -0
- package/dist/esm/polyfills/core-js.js +11 -0
- package/dist/esm/polyfills/css-shim.js +1 -0
- package/dist/esm/polyfills/dom.js +79 -0
- package/dist/esm/polyfills/es5-html-element.js +1 -0
- package/dist/esm/polyfills/index.js +34 -0
- package/dist/esm/polyfills/system.js +6 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/stencil.config.js +22 -0
- package/dist/types/Users/sebastian.strulea/Documents/work/widgets-stencil/packages/casino-tournament-list/.stencil/packages/casino-tournament-list/stencil.config.d.ts +2 -0
- package/dist/types/components/casino-tournament-list/casino-tournament-list.d.ts +101 -0
- package/dist/types/components.d.ts +181 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/stencil-public-runtime.d.ts +1565 -0
- package/dist/types/utils/locale.utils.d.ts +2 -0
- package/dist/types/utils/utils.d.ts +2 -0
- package/loader/cdn.js +3 -0
- package/loader/index.cjs.js +3 -0
- package/loader/index.d.ts +12 -0
- package/loader/index.es2017.js +3 -0
- package/loader/index.js +4 -0
- package/loader/package.json +10 -0
- package/package.json +19 -0
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import { EventSourcePolyfill } from 'event-source-polyfill';
|
|
2
|
+
import '@everymatrix/casino-tournament-banner';
|
|
3
|
+
import '@everymatrix/casino-tournament-info';
|
|
4
|
+
export declare class CasinoTournamentList {
|
|
5
|
+
/**
|
|
6
|
+
* The NWA endpoint
|
|
7
|
+
*/
|
|
8
|
+
endpoint: string;
|
|
9
|
+
/**
|
|
10
|
+
* Widget Language to show
|
|
11
|
+
*/
|
|
12
|
+
language: string;
|
|
13
|
+
/**
|
|
14
|
+
* The NWA session for the logged-in user
|
|
15
|
+
*/
|
|
16
|
+
session?: string;
|
|
17
|
+
/**
|
|
18
|
+
* NWA parameter for tournaments sort type
|
|
19
|
+
*/
|
|
20
|
+
sortType?: string;
|
|
21
|
+
/**
|
|
22
|
+
* NWA parameter for tournaments sort order
|
|
23
|
+
*/
|
|
24
|
+
sortOrder?: string;
|
|
25
|
+
/**
|
|
26
|
+
* NWA parameter tournaments offet
|
|
27
|
+
*/
|
|
28
|
+
offset?: number;
|
|
29
|
+
/**
|
|
30
|
+
* NWA parameter tournaments limit
|
|
31
|
+
*/
|
|
32
|
+
limit?: number;
|
|
33
|
+
/**
|
|
34
|
+
* NWA parameter show anonymous tournament
|
|
35
|
+
*/
|
|
36
|
+
showAnonymous?: boolean;
|
|
37
|
+
/**
|
|
38
|
+
* Tournament states
|
|
39
|
+
*/
|
|
40
|
+
state?: string;
|
|
41
|
+
/**
|
|
42
|
+
* Display tournaments from a specific time onward
|
|
43
|
+
*/
|
|
44
|
+
startTimeAfter?: string;
|
|
45
|
+
/**
|
|
46
|
+
* Real time update
|
|
47
|
+
*/
|
|
48
|
+
updateTournaments?: boolean;
|
|
49
|
+
/**
|
|
50
|
+
* Event for login button
|
|
51
|
+
*/
|
|
52
|
+
loginEvent?: string;
|
|
53
|
+
/**
|
|
54
|
+
* Event for register button
|
|
55
|
+
*/
|
|
56
|
+
registerEvent?: string;
|
|
57
|
+
/**
|
|
58
|
+
* Display as card
|
|
59
|
+
*/
|
|
60
|
+
cardMode?: boolean;
|
|
61
|
+
/**
|
|
62
|
+
* Show read more button
|
|
63
|
+
*/
|
|
64
|
+
showReadMore?: boolean;
|
|
65
|
+
/**
|
|
66
|
+
* Client custom styling via inline styles
|
|
67
|
+
*/
|
|
68
|
+
clientStyling?: string;
|
|
69
|
+
/**
|
|
70
|
+
* Client custom styling via url
|
|
71
|
+
*/
|
|
72
|
+
clientStylingUrl?: string;
|
|
73
|
+
/**
|
|
74
|
+
* Translations via URL
|
|
75
|
+
*/
|
|
76
|
+
translationUrl?: string;
|
|
77
|
+
limitStylingAppends: boolean;
|
|
78
|
+
tournaments: any;
|
|
79
|
+
states: any;
|
|
80
|
+
currentState: string;
|
|
81
|
+
isLoading: boolean;
|
|
82
|
+
tournamentsShown: number;
|
|
83
|
+
allTournamentsShown: boolean;
|
|
84
|
+
sseConnection: EventSourcePolyfill;
|
|
85
|
+
host: HTMLElement;
|
|
86
|
+
getTournamentInfo(offset: number, limit: number): void;
|
|
87
|
+
createImagePlaceHolder(width: number, height: number): string;
|
|
88
|
+
componentDidRender(): void;
|
|
89
|
+
componentWillLoad(): void;
|
|
90
|
+
setClientStyling(): void;
|
|
91
|
+
setClientStylingURL(): void;
|
|
92
|
+
getStartTimeAfter(): string;
|
|
93
|
+
onStateChange(state: string): void;
|
|
94
|
+
showMoreAction(): void;
|
|
95
|
+
matchStatus(status: string): string;
|
|
96
|
+
startUpdate(updateUrl: string, updateOptions: object): void;
|
|
97
|
+
updateHandler(message: any): void;
|
|
98
|
+
updateView(data: any): void;
|
|
99
|
+
connectedCallback(): void;
|
|
100
|
+
render(): any;
|
|
101
|
+
}
|
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/**
|
|
4
|
+
* This is an autogenerated file created by the Stencil compiler.
|
|
5
|
+
* It contains typing information for all components that exist in this project.
|
|
6
|
+
*/
|
|
7
|
+
import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
|
|
8
|
+
export namespace Components {
|
|
9
|
+
interface CasinoTournamentList {
|
|
10
|
+
/**
|
|
11
|
+
* Display as card
|
|
12
|
+
*/
|
|
13
|
+
"cardMode"?: boolean;
|
|
14
|
+
/**
|
|
15
|
+
* Client custom styling via inline styles
|
|
16
|
+
*/
|
|
17
|
+
"clientStyling"?: string;
|
|
18
|
+
/**
|
|
19
|
+
* Client custom styling via url
|
|
20
|
+
*/
|
|
21
|
+
"clientStylingUrl"?: string;
|
|
22
|
+
/**
|
|
23
|
+
* The NWA endpoint
|
|
24
|
+
*/
|
|
25
|
+
"endpoint": string;
|
|
26
|
+
/**
|
|
27
|
+
* Widget Language to show
|
|
28
|
+
*/
|
|
29
|
+
"language": string;
|
|
30
|
+
/**
|
|
31
|
+
* NWA parameter tournaments limit
|
|
32
|
+
*/
|
|
33
|
+
"limit"?: number;
|
|
34
|
+
/**
|
|
35
|
+
* Event for login button
|
|
36
|
+
*/
|
|
37
|
+
"loginEvent"?: string;
|
|
38
|
+
/**
|
|
39
|
+
* NWA parameter tournaments offet
|
|
40
|
+
*/
|
|
41
|
+
"offset"?: number;
|
|
42
|
+
/**
|
|
43
|
+
* Event for register button
|
|
44
|
+
*/
|
|
45
|
+
"registerEvent"?: string;
|
|
46
|
+
/**
|
|
47
|
+
* The NWA session for the logged-in user
|
|
48
|
+
*/
|
|
49
|
+
"session"?: string;
|
|
50
|
+
/**
|
|
51
|
+
* NWA parameter show anonymous tournament
|
|
52
|
+
*/
|
|
53
|
+
"showAnonymous"?: boolean;
|
|
54
|
+
/**
|
|
55
|
+
* Show read more button
|
|
56
|
+
*/
|
|
57
|
+
"showReadMore"?: boolean;
|
|
58
|
+
/**
|
|
59
|
+
* NWA parameter for tournaments sort order
|
|
60
|
+
*/
|
|
61
|
+
"sortOrder"?: string;
|
|
62
|
+
/**
|
|
63
|
+
* NWA parameter for tournaments sort type
|
|
64
|
+
*/
|
|
65
|
+
"sortType"?: string;
|
|
66
|
+
/**
|
|
67
|
+
* Display tournaments from a specific time onward
|
|
68
|
+
*/
|
|
69
|
+
"startTimeAfter"?: string;
|
|
70
|
+
/**
|
|
71
|
+
* Tournament states
|
|
72
|
+
*/
|
|
73
|
+
"state"?: string;
|
|
74
|
+
/**
|
|
75
|
+
* Translations via URL
|
|
76
|
+
*/
|
|
77
|
+
"translationUrl"?: string;
|
|
78
|
+
/**
|
|
79
|
+
* Real time update
|
|
80
|
+
*/
|
|
81
|
+
"updateTournaments"?: boolean;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
declare global {
|
|
85
|
+
interface HTMLCasinoTournamentListElement extends Components.CasinoTournamentList, HTMLStencilElement {
|
|
86
|
+
}
|
|
87
|
+
var HTMLCasinoTournamentListElement: {
|
|
88
|
+
prototype: HTMLCasinoTournamentListElement;
|
|
89
|
+
new (): HTMLCasinoTournamentListElement;
|
|
90
|
+
};
|
|
91
|
+
interface HTMLElementTagNameMap {
|
|
92
|
+
"casino-tournament-list": HTMLCasinoTournamentListElement;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
declare namespace LocalJSX {
|
|
96
|
+
interface CasinoTournamentList {
|
|
97
|
+
/**
|
|
98
|
+
* Display as card
|
|
99
|
+
*/
|
|
100
|
+
"cardMode"?: boolean;
|
|
101
|
+
/**
|
|
102
|
+
* Client custom styling via inline styles
|
|
103
|
+
*/
|
|
104
|
+
"clientStyling"?: string;
|
|
105
|
+
/**
|
|
106
|
+
* Client custom styling via url
|
|
107
|
+
*/
|
|
108
|
+
"clientStylingUrl"?: string;
|
|
109
|
+
/**
|
|
110
|
+
* The NWA endpoint
|
|
111
|
+
*/
|
|
112
|
+
"endpoint": string;
|
|
113
|
+
/**
|
|
114
|
+
* Widget Language to show
|
|
115
|
+
*/
|
|
116
|
+
"language": string;
|
|
117
|
+
/**
|
|
118
|
+
* NWA parameter tournaments limit
|
|
119
|
+
*/
|
|
120
|
+
"limit"?: number;
|
|
121
|
+
/**
|
|
122
|
+
* Event for login button
|
|
123
|
+
*/
|
|
124
|
+
"loginEvent"?: string;
|
|
125
|
+
/**
|
|
126
|
+
* NWA parameter tournaments offet
|
|
127
|
+
*/
|
|
128
|
+
"offset"?: number;
|
|
129
|
+
/**
|
|
130
|
+
* Event for register button
|
|
131
|
+
*/
|
|
132
|
+
"registerEvent"?: string;
|
|
133
|
+
/**
|
|
134
|
+
* The NWA session for the logged-in user
|
|
135
|
+
*/
|
|
136
|
+
"session"?: string;
|
|
137
|
+
/**
|
|
138
|
+
* NWA parameter show anonymous tournament
|
|
139
|
+
*/
|
|
140
|
+
"showAnonymous"?: boolean;
|
|
141
|
+
/**
|
|
142
|
+
* Show read more button
|
|
143
|
+
*/
|
|
144
|
+
"showReadMore"?: boolean;
|
|
145
|
+
/**
|
|
146
|
+
* NWA parameter for tournaments sort order
|
|
147
|
+
*/
|
|
148
|
+
"sortOrder"?: string;
|
|
149
|
+
/**
|
|
150
|
+
* NWA parameter for tournaments sort type
|
|
151
|
+
*/
|
|
152
|
+
"sortType"?: string;
|
|
153
|
+
/**
|
|
154
|
+
* Display tournaments from a specific time onward
|
|
155
|
+
*/
|
|
156
|
+
"startTimeAfter"?: string;
|
|
157
|
+
/**
|
|
158
|
+
* Tournament states
|
|
159
|
+
*/
|
|
160
|
+
"state"?: string;
|
|
161
|
+
/**
|
|
162
|
+
* Translations via URL
|
|
163
|
+
*/
|
|
164
|
+
"translationUrl"?: string;
|
|
165
|
+
/**
|
|
166
|
+
* Real time update
|
|
167
|
+
*/
|
|
168
|
+
"updateTournaments"?: boolean;
|
|
169
|
+
}
|
|
170
|
+
interface IntrinsicElements {
|
|
171
|
+
"casino-tournament-list": CasinoTournamentList;
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
export { LocalJSX as JSX };
|
|
175
|
+
declare module "@stencil/core" {
|
|
176
|
+
export namespace JSX {
|
|
177
|
+
interface IntrinsicElements {
|
|
178
|
+
"casino-tournament-list": LocalJSX.CasinoTournamentList & JSXBase.HTMLAttributes<HTMLCasinoTournamentListElement>;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './components';
|