@everymatrix/casino-tournament-list 1.73.1 → 1.73.2
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/package.json
CHANGED
|
@@ -1,94 +0,0 @@
|
|
|
1
|
-
import { html } from "lit";
|
|
2
|
-
import "@everymatrix/casino-tournament-list";
|
|
3
|
-
const meta = {
|
|
4
|
-
title: 'Casino/Components/casino-tournament-list',
|
|
5
|
-
component: 'casino-tournament-list',
|
|
6
|
-
args: {
|
|
7
|
-
endpoint: "",
|
|
8
|
-
language: "",
|
|
9
|
-
session: "",
|
|
10
|
-
sortType: "",
|
|
11
|
-
sortOrder: "",
|
|
12
|
-
offset: "0",
|
|
13
|
-
limit: "6",
|
|
14
|
-
showAnonymous: "false",
|
|
15
|
-
state: "All,Ongoing,Upcoming,Expired",
|
|
16
|
-
startTimeAfter: "",
|
|
17
|
-
updateTournaments: "true",
|
|
18
|
-
loginEvent: "OpenLoginRegisterModal",
|
|
19
|
-
registerEvent: "OpenLoginRegisterModal",
|
|
20
|
-
cardMode: "false",
|
|
21
|
-
showReadMore: "false",
|
|
22
|
-
currency: "",
|
|
23
|
-
clientStyling: "",
|
|
24
|
-
clientStylingUrl: "",
|
|
25
|
-
translationUrl: "",
|
|
26
|
-
},
|
|
27
|
-
argTypes: {
|
|
28
|
-
endpoint: { control: 'text', description: '' },
|
|
29
|
-
language: { control: 'text', description: '' },
|
|
30
|
-
session: { control: 'text', description: '' },
|
|
31
|
-
sortType: { control: 'text', description: '' },
|
|
32
|
-
sortOrder: { control: 'text', description: '' },
|
|
33
|
-
offset: { control: 'text', description: '' },
|
|
34
|
-
limit: { control: 'text', description: '' },
|
|
35
|
-
showAnonymous: { control: 'text', description: '' },
|
|
36
|
-
state: { control: 'text', description: '' },
|
|
37
|
-
startTimeAfter: { control: 'text', description: '' },
|
|
38
|
-
updateTournaments: { control: 'text', description: '' },
|
|
39
|
-
loginEvent: { control: 'text', description: '' },
|
|
40
|
-
registerEvent: { control: 'text', description: '' },
|
|
41
|
-
cardMode: { control: 'text', description: '' },
|
|
42
|
-
showReadMore: { control: 'text', description: '' },
|
|
43
|
-
currency: { control: 'text', description: '' },
|
|
44
|
-
clientStyling: { control: 'text', description: '' },
|
|
45
|
-
clientStylingUrl: { control: 'text', description: '' },
|
|
46
|
-
translationUrl: { control: 'text', description: '' },
|
|
47
|
-
},
|
|
48
|
-
};
|
|
49
|
-
export default meta;
|
|
50
|
-
const Template = (args) => {
|
|
51
|
-
return html `<casino-tournament-list
|
|
52
|
-
endpoint="${args.endpoint}"
|
|
53
|
-
language="${args.language}"
|
|
54
|
-
session="${args.session}"
|
|
55
|
-
sortType="${args.sortType}"
|
|
56
|
-
sortOrder="${args.sortOrder}"
|
|
57
|
-
offset="${args.offset}"
|
|
58
|
-
limit="${args.limit}"
|
|
59
|
-
showAnonymous="${args.showAnonymous}"
|
|
60
|
-
state="${args.state}"
|
|
61
|
-
startTimeAfter="${args.startTimeAfter}"
|
|
62
|
-
updateTournaments="${args.updateTournaments}"
|
|
63
|
-
loginEvent="${args.loginEvent}"
|
|
64
|
-
registerEvent="${args.registerEvent}"
|
|
65
|
-
cardMode="${args.cardMode}"
|
|
66
|
-
showReadMore="${args.showReadMore}"
|
|
67
|
-
currency="${args.currency}"
|
|
68
|
-
clientStyling="${args.clientStyling}"
|
|
69
|
-
clientStylingUrl="${args.clientStylingUrl}"
|
|
70
|
-
translationUrl="${args.translationUrl}"
|
|
71
|
-
></casino-tournament-list>`;
|
|
72
|
-
};
|
|
73
|
-
export const Default = Template.bind({});
|
|
74
|
-
Default.args = {
|
|
75
|
-
endpoint: "",
|
|
76
|
-
language: "",
|
|
77
|
-
session: "",
|
|
78
|
-
sortType: "",
|
|
79
|
-
sortOrder: "",
|
|
80
|
-
offset: "0",
|
|
81
|
-
limit: "6",
|
|
82
|
-
showAnonymous: "false",
|
|
83
|
-
state: "All,Ongoing,Upcoming,Expired",
|
|
84
|
-
startTimeAfter: "",
|
|
85
|
-
updateTournaments: "true",
|
|
86
|
-
loginEvent: "OpenLoginRegisterModal",
|
|
87
|
-
registerEvent: "OpenLoginRegisterModal",
|
|
88
|
-
cardMode: "false",
|
|
89
|
-
showReadMore: "false",
|
|
90
|
-
currency: "",
|
|
91
|
-
clientStyling: "",
|
|
92
|
-
clientStylingUrl: "",
|
|
93
|
-
translationUrl: "",
|
|
94
|
-
};
|