@everymatrix/lottery-ticket-controller 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/dist/cjs/helper-accordion_5.cjs.entry.js +388 -394
- package/dist/esm/helper-accordion_5.entry.js +388 -394
- package/dist/lottery-ticket-controller/helper-accordion_5.entry.js +107 -112
- package/package.json +1 -1
- package/dist/collection/components/lottery-ticket-controller/lottery-ticket-controller.stories.js +0 -82
- package/dist/types/components/lottery-ticket-controller/lottery-ticket-controller.stories.d.ts +0 -5
package/package.json
CHANGED
package/dist/collection/components/lottery-ticket-controller/lottery-ticket-controller.stories.js
DELETED
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
import { html } from "lit";
|
|
2
|
-
import "@everymatrix/lottery-ticket-controller";
|
|
3
|
-
const meta = {
|
|
4
|
-
title: 'Lottery/Components/lottery-ticket-controller',
|
|
5
|
-
component: 'lottery-ticket-controller',
|
|
6
|
-
args: {
|
|
7
|
-
endpoint: "",
|
|
8
|
-
ticketId: "1",
|
|
9
|
-
ticketDescription: "",
|
|
10
|
-
gameId: "",
|
|
11
|
-
postMessage: "false",
|
|
12
|
-
eventName: "deleteTicketAction",
|
|
13
|
-
collapsed: "true",
|
|
14
|
-
numberOfGrids: "1",
|
|
15
|
-
last: "false",
|
|
16
|
-
language: "en",
|
|
17
|
-
autoPick: "false",
|
|
18
|
-
resetButton: "false",
|
|
19
|
-
totalControllers: "1",
|
|
20
|
-
clientStyling: "",
|
|
21
|
-
clientStylingUrlContent: "",
|
|
22
|
-
translationUrl: "",
|
|
23
|
-
},
|
|
24
|
-
argTypes: {
|
|
25
|
-
endpoint: { control: 'text', description: '' },
|
|
26
|
-
ticketId: { control: 'text', description: '' },
|
|
27
|
-
ticketDescription: { control: 'text', description: '' },
|
|
28
|
-
gameId: { control: 'text', description: '' },
|
|
29
|
-
postMessage: { control: 'text', description: '' },
|
|
30
|
-
eventName: { control: 'text', description: '' },
|
|
31
|
-
collapsed: { control: 'text', description: '' },
|
|
32
|
-
numberOfGrids: { control: 'text', description: '' },
|
|
33
|
-
last: { control: 'text', description: '' },
|
|
34
|
-
language: { control: 'text', description: '' },
|
|
35
|
-
autoPick: { control: 'text', description: '' },
|
|
36
|
-
resetButton: { control: 'text', description: '' },
|
|
37
|
-
totalControllers: { control: 'text', description: '' },
|
|
38
|
-
clientStyling: { control: 'text', description: '' },
|
|
39
|
-
clientStylingUrlContent: { control: 'text', description: '' },
|
|
40
|
-
translationUrl: { control: 'text', description: '' },
|
|
41
|
-
},
|
|
42
|
-
};
|
|
43
|
-
export default meta;
|
|
44
|
-
const Template = (args) => {
|
|
45
|
-
return html `<lottery-ticket-controller
|
|
46
|
-
endpoint="${args.endpoint}"
|
|
47
|
-
ticketId="${args.ticketId}"
|
|
48
|
-
ticketDescription="${args.ticketDescription}"
|
|
49
|
-
gameId="${args.gameId}"
|
|
50
|
-
postMessage="${args.postMessage}"
|
|
51
|
-
eventName="${args.eventName}"
|
|
52
|
-
collapsed="${args.collapsed}"
|
|
53
|
-
numberOfGrids="${args.numberOfGrids}"
|
|
54
|
-
last="${args.last}"
|
|
55
|
-
language="${args.language}"
|
|
56
|
-
autoPick="${args.autoPick}"
|
|
57
|
-
resetButton="${args.resetButton}"
|
|
58
|
-
totalControllers="${args.totalControllers}"
|
|
59
|
-
clientStyling="${args.clientStyling}"
|
|
60
|
-
clientStylingUrlContent="${args.clientStylingUrlContent}"
|
|
61
|
-
translationUrl="${args.translationUrl}"
|
|
62
|
-
></lottery-ticket-controller>`;
|
|
63
|
-
};
|
|
64
|
-
export const Default = Template.bind({});
|
|
65
|
-
Default.args = {
|
|
66
|
-
endpoint: "",
|
|
67
|
-
ticketId: "1",
|
|
68
|
-
ticketDescription: "",
|
|
69
|
-
gameId: "",
|
|
70
|
-
postMessage: "false",
|
|
71
|
-
eventName: "deleteTicketAction",
|
|
72
|
-
collapsed: "true",
|
|
73
|
-
numberOfGrids: "1",
|
|
74
|
-
last: "false",
|
|
75
|
-
language: "en",
|
|
76
|
-
autoPick: "false",
|
|
77
|
-
resetButton: "false",
|
|
78
|
-
totalControllers: "1",
|
|
79
|
-
clientStyling: "",
|
|
80
|
-
clientStylingUrlContent: "",
|
|
81
|
-
translationUrl: "",
|
|
82
|
-
};
|