@everymatrix/casino-tournament-banner 1.73.1 → 1.74.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everymatrix/casino-tournament-banner",
3
- "version": "1.73.1",
3
+ "version": "1.74.0",
4
4
  "main": "./dist/index.cjs.js",
5
5
  "module": "./dist/index.js",
6
6
  "es2015": "./dist/esm/index.mjs",
@@ -1,134 +0,0 @@
1
- import { html } from "lit";
2
- import "@everymatrix/casino-tournament-banner";
3
- const meta = {
4
- title: 'Casino/Components/casino-tournament-banner',
5
- component: 'casino-tournament-banner',
6
- args: {
7
- useEvent: "",
8
- endpoint: "",
9
- state: "",
10
- enrolled: "",
11
- startTime: "",
12
- endTime: "",
13
- thumbnail: "",
14
- language: "",
15
- showCalendar: "",
16
- shortStart: "",
17
- shortstartformat: "DD MMM YYYY",
18
- showDate: "true",
19
- showRunningDate: "false",
20
- showCheck: "false",
21
- cardMode: "false",
22
- nameOrTitle: "",
23
- description: "",
24
- tournamentId: "",
25
- session: "",
26
- loginEvent: "",
27
- loginUrl: "",
28
- registerEvent: "",
29
- registerUrl: "",
30
- currency: "",
31
- bonusCode: "",
32
- showReadMore: "false",
33
- clientStyling: "",
34
- clientStylingUrl: "",
35
- translationData: "",
36
- },
37
- argTypes: {
38
- useEvent: { control: 'text', description: '' },
39
- endpoint: { control: 'text', description: '' },
40
- state: { control: 'text', description: '' },
41
- enrolled: { control: 'text', description: '' },
42
- startTime: { control: 'text', description: '' },
43
- endTime: { control: 'text', description: '' },
44
- thumbnail: { control: 'text', description: '' },
45
- language: { control: 'text', description: '' },
46
- showCalendar: { control: 'text', description: '' },
47
- shortStart: { control: 'text', description: '' },
48
- shortstartformat: { control: 'text', description: '' },
49
- showDate: { control: 'text', description: '' },
50
- showRunningDate: { control: 'text', description: '' },
51
- showCheck: { control: 'text', description: '' },
52
- cardMode: { control: 'text', description: '' },
53
- nameOrTitle: { control: 'text', description: '' },
54
- description: { control: 'text', description: '' },
55
- tournamentId: { control: 'text', description: '' },
56
- session: { control: 'text', description: '' },
57
- loginEvent: { control: 'text', description: '' },
58
- loginUrl: { control: 'text', description: '' },
59
- registerEvent: { control: 'text', description: '' },
60
- registerUrl: { control: 'text', description: '' },
61
- currency: { control: 'text', description: '' },
62
- bonusCode: { control: 'text', description: '' },
63
- showReadMore: { control: 'text', description: '' },
64
- clientStyling: { control: 'text', description: '' },
65
- clientStylingUrl: { control: 'text', description: '' },
66
- translationData: { control: 'text', description: '' },
67
- },
68
- };
69
- export default meta;
70
- const Template = (args) => {
71
- return html `<casino-tournament-banner
72
- useEvent="${args.useEvent}"
73
- endpoint="${args.endpoint}"
74
- state="${args.state}"
75
- enrolled="${args.enrolled}"
76
- startTime="${args.startTime}"
77
- endTime="${args.endTime}"
78
- thumbnail="${args.thumbnail}"
79
- language="${args.language}"
80
- showCalendar="${args.showCalendar}"
81
- shortStart="${args.shortStart}"
82
- shortstartformat="${args.shortstartformat}"
83
- showDate="${args.showDate}"
84
- showRunningDate="${args.showRunningDate}"
85
- showCheck="${args.showCheck}"
86
- cardMode="${args.cardMode}"
87
- nameOrTitle="${args.nameOrTitle}"
88
- description="${args.description}"
89
- tournamentId="${args.tournamentId}"
90
- session="${args.session}"
91
- loginEvent="${args.loginEvent}"
92
- loginUrl="${args.loginUrl}"
93
- registerEvent="${args.registerEvent}"
94
- registerUrl="${args.registerUrl}"
95
- currency="${args.currency}"
96
- bonusCode="${args.bonusCode}"
97
- showReadMore="${args.showReadMore}"
98
- clientStyling="${args.clientStyling}"
99
- clientStylingUrl="${args.clientStylingUrl}"
100
- translationData="${args.translationData}"
101
- ></casino-tournament-banner>`;
102
- };
103
- export const Default = Template.bind({});
104
- Default.args = {
105
- useEvent: "",
106
- endpoint: "",
107
- state: "",
108
- enrolled: "",
109
- startTime: "",
110
- endTime: "",
111
- thumbnail: "",
112
- language: "",
113
- showCalendar: "",
114
- shortStart: "",
115
- shortstartformat: "DD MMM YYYY",
116
- showDate: "true",
117
- showRunningDate: "false",
118
- showCheck: "false",
119
- cardMode: "false",
120
- nameOrTitle: "",
121
- description: "",
122
- tournamentId: "",
123
- session: "",
124
- loginEvent: "",
125
- loginUrl: "",
126
- registerEvent: "",
127
- registerUrl: "",
128
- currency: "",
129
- bonusCode: "",
130
- showReadMore: "false",
131
- clientStyling: "",
132
- clientStylingUrl: "",
133
- translationData: "",
134
- };
@@ -1,5 +0,0 @@
1
- import type { Meta } from '@storybook/web-components';
2
- import '@everymatrix/casino-tournament-banner';
3
- declare const meta: Meta;
4
- export default meta;
5
- export declare const Default: any;