@everymatrix/lottery-draw-results 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,106 +0,0 @@
|
|
|
1
|
-
import { html } from "lit";
|
|
2
|
-
import "@everymatrix/lottery-draw-results";
|
|
3
|
-
const meta = {
|
|
4
|
-
title: 'Lottery/Components/lottery-draw-results',
|
|
5
|
-
component: 'lottery-draw-results',
|
|
6
|
-
args: {
|
|
7
|
-
endpoint: "",
|
|
8
|
-
gameId: "",
|
|
9
|
-
language: "en",
|
|
10
|
-
playerId: "",
|
|
11
|
-
drawMode: "false",
|
|
12
|
-
drawId: "",
|
|
13
|
-
gameName: "",
|
|
14
|
-
ticketDate: "",
|
|
15
|
-
ticketStatus: "",
|
|
16
|
-
ticketId: "",
|
|
17
|
-
ticketAmount: "",
|
|
18
|
-
ticketCurrency: "",
|
|
19
|
-
ticketMultiplier: "false",
|
|
20
|
-
ticketMultiplierNum: "",
|
|
21
|
-
ticketDrawCount: "0",
|
|
22
|
-
ticketNumbers: "",
|
|
23
|
-
sessionId: "",
|
|
24
|
-
clientStyling: "",
|
|
25
|
-
clientStylingUrlContent: "",
|
|
26
|
-
ticketDrawData: "",
|
|
27
|
-
tabValue: "",
|
|
28
|
-
translationUrl: "",
|
|
29
|
-
},
|
|
30
|
-
argTypes: {
|
|
31
|
-
endpoint: { control: 'text', description: '' },
|
|
32
|
-
gameId: { control: 'text', description: '' },
|
|
33
|
-
language: { control: 'text', description: '' },
|
|
34
|
-
playerId: { control: 'text', description: '' },
|
|
35
|
-
drawMode: { control: 'text', description: '' },
|
|
36
|
-
drawId: { control: 'text', description: '' },
|
|
37
|
-
gameName: { control: 'text', description: '' },
|
|
38
|
-
ticketDate: { control: 'text', description: '' },
|
|
39
|
-
ticketStatus: { control: 'text', description: '' },
|
|
40
|
-
ticketId: { control: 'text', description: '' },
|
|
41
|
-
ticketAmount: { control: 'text', description: '' },
|
|
42
|
-
ticketCurrency: { control: 'text', description: '' },
|
|
43
|
-
ticketMultiplier: { control: 'text', description: '' },
|
|
44
|
-
ticketMultiplierNum: { control: 'text', description: '' },
|
|
45
|
-
ticketDrawCount: { control: 'text', description: '' },
|
|
46
|
-
ticketNumbers: { control: 'text', description: '' },
|
|
47
|
-
sessionId: { control: 'text', description: '' },
|
|
48
|
-
clientStyling: { control: 'text', description: '' },
|
|
49
|
-
clientStylingUrlContent: { control: 'text', description: '' },
|
|
50
|
-
ticketDrawData: { control: 'text', description: '' },
|
|
51
|
-
tabValue: { control: 'text', description: '' },
|
|
52
|
-
translationUrl: { control: 'text', description: '' },
|
|
53
|
-
},
|
|
54
|
-
};
|
|
55
|
-
export default meta;
|
|
56
|
-
const Template = (args) => {
|
|
57
|
-
return html `<lottery-draw-results
|
|
58
|
-
endpoint="${args.endpoint}"
|
|
59
|
-
gameId="${args.gameId}"
|
|
60
|
-
language="${args.language}"
|
|
61
|
-
playerId="${args.playerId}"
|
|
62
|
-
drawMode="${args.drawMode}"
|
|
63
|
-
drawId="${args.drawId}"
|
|
64
|
-
gameName="${args.gameName}"
|
|
65
|
-
ticketDate="${args.ticketDate}"
|
|
66
|
-
ticketStatus="${args.ticketStatus}"
|
|
67
|
-
ticketId="${args.ticketId}"
|
|
68
|
-
ticketAmount="${args.ticketAmount}"
|
|
69
|
-
ticketCurrency="${args.ticketCurrency}"
|
|
70
|
-
ticketMultiplier="${args.ticketMultiplier}"
|
|
71
|
-
ticketMultiplierNum="${args.ticketMultiplierNum}"
|
|
72
|
-
ticketDrawCount="${args.ticketDrawCount}"
|
|
73
|
-
ticketNumbers="${args.ticketNumbers}"
|
|
74
|
-
sessionId="${args.sessionId}"
|
|
75
|
-
clientStyling="${args.clientStyling}"
|
|
76
|
-
clientStylingUrlContent="${args.clientStylingUrlContent}"
|
|
77
|
-
ticketDrawData="${args.ticketDrawData}"
|
|
78
|
-
tabValue="${args.tabValue}"
|
|
79
|
-
translationUrl="${args.translationUrl}"
|
|
80
|
-
></lottery-draw-results>`;
|
|
81
|
-
};
|
|
82
|
-
export const Default = Template.bind({});
|
|
83
|
-
Default.args = {
|
|
84
|
-
endpoint: "",
|
|
85
|
-
gameId: "",
|
|
86
|
-
language: "en",
|
|
87
|
-
playerId: "",
|
|
88
|
-
drawMode: "false",
|
|
89
|
-
drawId: "",
|
|
90
|
-
gameName: "",
|
|
91
|
-
ticketDate: "",
|
|
92
|
-
ticketStatus: "",
|
|
93
|
-
ticketId: "",
|
|
94
|
-
ticketAmount: "",
|
|
95
|
-
ticketCurrency: "",
|
|
96
|
-
ticketMultiplier: "false",
|
|
97
|
-
ticketMultiplierNum: "",
|
|
98
|
-
ticketDrawCount: "0",
|
|
99
|
-
ticketNumbers: "",
|
|
100
|
-
sessionId: "",
|
|
101
|
-
clientStyling: "",
|
|
102
|
-
clientStylingUrlContent: "",
|
|
103
|
-
ticketDrawData: "",
|
|
104
|
-
tabValue: "",
|
|
105
|
-
translationUrl: "",
|
|
106
|
-
};
|