@everymatrix/user-deposit-withdrawal 1.13.11
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/index-3568d1cc.js +1111 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +21 -0
- package/dist/cjs/user-deposit-withdrawal.cjs.entry.js +107 -0
- package/dist/cjs/user-deposit-withdrawal.cjs.js +19 -0
- package/dist/collection/collection-manifest.json +12 -0
- package/dist/collection/components/user-deposit-withdrawal/user-deposit-withdrawal.css +5 -0
- package/dist/collection/components/user-deposit-withdrawal/user-deposit-withdrawal.js +368 -0
- package/dist/collection/index.js +1 -0
- package/dist/collection/utils/utils.js +3 -0
- package/dist/components/index.d.ts +26 -0
- package/dist/components/index.js +1 -0
- package/dist/components/user-deposit-withdrawal.d.ts +11 -0
- package/dist/components/user-deposit-withdrawal.js +137 -0
- package/dist/esm/index-363130bb.js +1085 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +17 -0
- package/dist/esm/polyfills/core-js.js +11 -0
- package/dist/esm/polyfills/css-shim.js +1 -0
- package/dist/esm/polyfills/dom.js +79 -0
- package/dist/esm/polyfills/es5-html-element.js +1 -0
- package/dist/esm/polyfills/index.js +34 -0
- package/dist/esm/polyfills/system.js +6 -0
- package/dist/esm/user-deposit-withdrawal.entry.js +103 -0
- package/dist/esm/user-deposit-withdrawal.js +17 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/stencil.config.js +22 -0
- package/dist/types/Users/adrian.pripon/Documents/Work/stencil/widgets-stencil/packages/user-deposit-withdrawal/.stencil/packages/user-deposit-withdrawal/stencil.config.d.ts +2 -0
- package/dist/types/components/user-deposit-withdrawal/user-deposit-withdrawal.d.ts +50 -0
- package/dist/types/components.d.ts +68 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/stencil-public-runtime.d.ts +1565 -0
- package/dist/types/utils/utils.d.ts +1 -0
- package/dist/user-deposit-withdrawal/index.esm.js +0 -0
- package/dist/user-deposit-withdrawal/p-05851c56.entry.js +1 -0
- package/dist/user-deposit-withdrawal/p-ed11cb75.js +1 -0
- package/dist/user-deposit-withdrawal/user-deposit-withdrawal.esm.js +1 -0
- package/loader/cdn.js +3 -0
- package/loader/index.cjs.js +3 -0
- package/loader/index.d.ts +12 -0
- package/loader/index.es2017.js +3 -0
- package/loader/index.js +4 -0
- package/loader/package.json +10 -0
- package/package.json +19 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { sass } from '@stencil/sass';
|
|
2
|
+
export const config = {
|
|
3
|
+
namespace: 'user-deposit-withdrawal',
|
|
4
|
+
taskQueue: 'async',
|
|
5
|
+
plugins: [sass()],
|
|
6
|
+
outputTargets: [
|
|
7
|
+
{
|
|
8
|
+
type: 'dist',
|
|
9
|
+
esmLoaderPath: '../loader',
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
type: 'dist-custom-elements',
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
type: 'docs-readme',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
type: 'www',
|
|
19
|
+
serviceWorker: null, // disable service workers
|
|
20
|
+
},
|
|
21
|
+
],
|
|
22
|
+
};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
export interface Request {
|
|
2
|
+
Channel: string;
|
|
3
|
+
Type: string;
|
|
4
|
+
SuccessUrl: string;
|
|
5
|
+
CancelUrl: string;
|
|
6
|
+
FailUrl: string;
|
|
7
|
+
Language: string;
|
|
8
|
+
productType: string;
|
|
9
|
+
}
|
|
10
|
+
export interface CashierInfo {
|
|
11
|
+
Url: string;
|
|
12
|
+
}
|
|
13
|
+
export interface Response {
|
|
14
|
+
CashierInfo: CashierInfo;
|
|
15
|
+
ResponseCode: string;
|
|
16
|
+
RequestId: string;
|
|
17
|
+
}
|
|
18
|
+
export interface RedirectCallbackArgs {
|
|
19
|
+
cancel: boolean;
|
|
20
|
+
reason: string;
|
|
21
|
+
url: string;
|
|
22
|
+
}
|
|
23
|
+
export declare class UserDepositWithdrawal {
|
|
24
|
+
endpoint: string;
|
|
25
|
+
type: 'deposit' | 'withdraw';
|
|
26
|
+
channel: string;
|
|
27
|
+
language: string;
|
|
28
|
+
productType: string;
|
|
29
|
+
userId: string;
|
|
30
|
+
session: string;
|
|
31
|
+
successUrl: string;
|
|
32
|
+
cancelUrl: string;
|
|
33
|
+
failUrl: string;
|
|
34
|
+
sportsUrl: string;
|
|
35
|
+
casinoUrl: string;
|
|
36
|
+
contactUrl: string;
|
|
37
|
+
homeUrl: string;
|
|
38
|
+
beforeRedirect: (params: RedirectCallbackArgs) => void;
|
|
39
|
+
get typeParameter(): "Deposit" | "Withdraw";
|
|
40
|
+
private cashierInfoUrl;
|
|
41
|
+
private bindedHandler;
|
|
42
|
+
watchLoadWidget(): void;
|
|
43
|
+
componentWillLoad(): Promise<void>;
|
|
44
|
+
componentDidLoad(): void;
|
|
45
|
+
disconnectedCallback(): void;
|
|
46
|
+
render(): any;
|
|
47
|
+
private loadWidget;
|
|
48
|
+
private handleMessage;
|
|
49
|
+
private doRedirect;
|
|
50
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/**
|
|
4
|
+
* This is an autogenerated file created by the Stencil compiler.
|
|
5
|
+
* It contains typing information for all components that exist in this project.
|
|
6
|
+
*/
|
|
7
|
+
import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
|
|
8
|
+
import { RedirectCallbackArgs } from "./components/user-deposit-withdrawal/user-deposit-withdrawal";
|
|
9
|
+
export namespace Components {
|
|
10
|
+
interface UserDepositWithdrawal {
|
|
11
|
+
"beforeRedirect": (params: RedirectCallbackArgs) => void;
|
|
12
|
+
"cancelUrl": string;
|
|
13
|
+
"casinoUrl": string;
|
|
14
|
+
"channel": string;
|
|
15
|
+
"contactUrl": string;
|
|
16
|
+
"endpoint": string;
|
|
17
|
+
"failUrl": string;
|
|
18
|
+
"homeUrl": string;
|
|
19
|
+
"language": string;
|
|
20
|
+
"productType": string;
|
|
21
|
+
"session": string;
|
|
22
|
+
"sportsUrl": string;
|
|
23
|
+
"successUrl": string;
|
|
24
|
+
"type": 'deposit' | 'withdraw';
|
|
25
|
+
"userId": string;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
declare global {
|
|
29
|
+
interface HTMLUserDepositWithdrawalElement extends Components.UserDepositWithdrawal, HTMLStencilElement {
|
|
30
|
+
}
|
|
31
|
+
var HTMLUserDepositWithdrawalElement: {
|
|
32
|
+
prototype: HTMLUserDepositWithdrawalElement;
|
|
33
|
+
new (): HTMLUserDepositWithdrawalElement;
|
|
34
|
+
};
|
|
35
|
+
interface HTMLElementTagNameMap {
|
|
36
|
+
"user-deposit-withdrawal": HTMLUserDepositWithdrawalElement;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
declare namespace LocalJSX {
|
|
40
|
+
interface UserDepositWithdrawal {
|
|
41
|
+
"beforeRedirect"?: (params: RedirectCallbackArgs) => void;
|
|
42
|
+
"cancelUrl"?: string;
|
|
43
|
+
"casinoUrl"?: string;
|
|
44
|
+
"channel": string;
|
|
45
|
+
"contactUrl"?: string;
|
|
46
|
+
"endpoint": string;
|
|
47
|
+
"failUrl"?: string;
|
|
48
|
+
"homeUrl"?: string;
|
|
49
|
+
"language"?: string;
|
|
50
|
+
"productType"?: string;
|
|
51
|
+
"session"?: string;
|
|
52
|
+
"sportsUrl"?: string;
|
|
53
|
+
"successUrl"?: string;
|
|
54
|
+
"type": 'deposit' | 'withdraw';
|
|
55
|
+
"userId"?: string;
|
|
56
|
+
}
|
|
57
|
+
interface IntrinsicElements {
|
|
58
|
+
"user-deposit-withdrawal": UserDepositWithdrawal;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
export { LocalJSX as JSX };
|
|
62
|
+
declare module "@stencil/core" {
|
|
63
|
+
export namespace JSX {
|
|
64
|
+
interface IntrinsicElements {
|
|
65
|
+
"user-deposit-withdrawal": LocalJSX.UserDepositWithdrawal & JSXBase.HTMLAttributes<HTMLUserDepositWithdrawalElement>;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './components';
|