@everymatrix/user-deposit-withdrawal 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
package/dist/collection/components/user-deposit-withdrawal/user-deposit-withdrawal.stories.js
DELETED
|
@@ -1,110 +0,0 @@
|
|
|
1
|
-
import { html } from "lit";
|
|
2
|
-
import "@everymatrix/user-deposit-withdrawal";
|
|
3
|
-
const meta = {
|
|
4
|
-
title: 'User/Components/user-deposit-withdrawal',
|
|
5
|
-
component: 'user-deposit-withdrawal',
|
|
6
|
-
args: {
|
|
7
|
-
mbSource: "",
|
|
8
|
-
clientStyling: "",
|
|
9
|
-
clientStylingUrl: "",
|
|
10
|
-
translationUrl: "",
|
|
11
|
-
endpoint: "",
|
|
12
|
-
type: "",
|
|
13
|
-
channel: "",
|
|
14
|
-
language: "",
|
|
15
|
-
productType: "",
|
|
16
|
-
userId: "",
|
|
17
|
-
session: "",
|
|
18
|
-
successUrl: "",
|
|
19
|
-
cancelUrl: "",
|
|
20
|
-
failUrl: "",
|
|
21
|
-
sportsUrl: "",
|
|
22
|
-
casinoUrl: "",
|
|
23
|
-
contactUrl: "",
|
|
24
|
-
depositUrl: "",
|
|
25
|
-
currency: "",
|
|
26
|
-
showBonusSelectionInput: "true",
|
|
27
|
-
isShortCashier: "false",
|
|
28
|
-
homeUrl: "",
|
|
29
|
-
beforeRedirect: "emptyFunction",
|
|
30
|
-
},
|
|
31
|
-
argTypes: {
|
|
32
|
-
mbSource: { control: 'text', description: '' },
|
|
33
|
-
clientStyling: { control: 'text', description: '' },
|
|
34
|
-
clientStylingUrl: { control: 'text', description: '' },
|
|
35
|
-
translationUrl: { control: 'text', description: '' },
|
|
36
|
-
endpoint: { control: 'text', description: '' },
|
|
37
|
-
type: { control: 'text', description: '' },
|
|
38
|
-
channel: { control: 'text', description: '' },
|
|
39
|
-
language: { control: 'text', description: '' },
|
|
40
|
-
productType: { control: 'text', description: '' },
|
|
41
|
-
userId: { control: 'text', description: '' },
|
|
42
|
-
session: { control: 'text', description: '' },
|
|
43
|
-
successUrl: { control: 'text', description: '' },
|
|
44
|
-
cancelUrl: { control: 'text', description: '' },
|
|
45
|
-
failUrl: { control: 'text', description: '' },
|
|
46
|
-
sportsUrl: { control: 'text', description: '' },
|
|
47
|
-
casinoUrl: { control: 'text', description: '' },
|
|
48
|
-
contactUrl: { control: 'text', description: '' },
|
|
49
|
-
depositUrl: { control: 'text', description: '' },
|
|
50
|
-
currency: { control: 'text', description: '' },
|
|
51
|
-
showBonusSelectionInput: { control: 'text', description: '' },
|
|
52
|
-
isShortCashier: { control: 'text', description: '' },
|
|
53
|
-
homeUrl: { control: 'text', description: '' },
|
|
54
|
-
beforeRedirect: { control: 'text', description: '' },
|
|
55
|
-
},
|
|
56
|
-
};
|
|
57
|
-
export default meta;
|
|
58
|
-
const Template = (args) => {
|
|
59
|
-
return html `<user-deposit-withdrawal
|
|
60
|
-
mbSource="${args.mbSource}"
|
|
61
|
-
clientStyling="${args.clientStyling}"
|
|
62
|
-
clientStylingUrl="${args.clientStylingUrl}"
|
|
63
|
-
translationUrl="${args.translationUrl}"
|
|
64
|
-
endpoint="${args.endpoint}"
|
|
65
|
-
type="${args.type}"
|
|
66
|
-
channel="${args.channel}"
|
|
67
|
-
language="${args.language}"
|
|
68
|
-
productType="${args.productType}"
|
|
69
|
-
userId="${args.userId}"
|
|
70
|
-
session="${args.session}"
|
|
71
|
-
successUrl="${args.successUrl}"
|
|
72
|
-
cancelUrl="${args.cancelUrl}"
|
|
73
|
-
failUrl="${args.failUrl}"
|
|
74
|
-
sportsUrl="${args.sportsUrl}"
|
|
75
|
-
casinoUrl="${args.casinoUrl}"
|
|
76
|
-
contactUrl="${args.contactUrl}"
|
|
77
|
-
depositUrl="${args.depositUrl}"
|
|
78
|
-
currency="${args.currency}"
|
|
79
|
-
showBonusSelectionInput="${args.showBonusSelectionInput}"
|
|
80
|
-
isShortCashier="${args.isShortCashier}"
|
|
81
|
-
homeUrl="${args.homeUrl}"
|
|
82
|
-
beforeRedirect="${args.beforeRedirect}"
|
|
83
|
-
></user-deposit-withdrawal>`;
|
|
84
|
-
};
|
|
85
|
-
export const Default = Template.bind({});
|
|
86
|
-
Default.args = {
|
|
87
|
-
mbSource: "",
|
|
88
|
-
clientStyling: "",
|
|
89
|
-
clientStylingUrl: "",
|
|
90
|
-
translationUrl: "",
|
|
91
|
-
endpoint: "",
|
|
92
|
-
type: "",
|
|
93
|
-
channel: "",
|
|
94
|
-
language: "",
|
|
95
|
-
productType: "",
|
|
96
|
-
userId: "",
|
|
97
|
-
session: "",
|
|
98
|
-
successUrl: "",
|
|
99
|
-
cancelUrl: "",
|
|
100
|
-
failUrl: "",
|
|
101
|
-
sportsUrl: "",
|
|
102
|
-
casinoUrl: "",
|
|
103
|
-
contactUrl: "",
|
|
104
|
-
depositUrl: "",
|
|
105
|
-
currency: "",
|
|
106
|
-
showBonusSelectionInput: "true",
|
|
107
|
-
isShortCashier: "false",
|
|
108
|
-
homeUrl: "",
|
|
109
|
-
beforeRedirect: "emptyFunction",
|
|
110
|
-
};
|