@everymatrix/player-lugas-limit 1.31.2 → 1.32.4
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/LICENSE +21 -0
- package/package.json +4 -7
- package/dist/cjs/index-6a3e6de8.js +0 -1230
- package/dist/cjs/index.cjs.js +0 -2
- package/dist/cjs/loader.cjs.js +0 -21
- package/dist/cjs/player-lugas-limit.cjs.entry.js +0 -452
- package/dist/cjs/player-lugas-limit.cjs.js +0 -19
- package/dist/collection/collection-manifest.json +0 -12
- package/dist/collection/components/player-lugas-limit/player-lugas-limit.css +0 -181
- package/dist/collection/components/player-lugas-limit/player-lugas-limit.js +0 -571
- package/dist/collection/index.js +0 -1
- package/dist/collection/utils/locale.utils.js +0 -192
- package/dist/collection/utils/utils.js +0 -0
- package/dist/components/index.d.ts +0 -26
- package/dist/components/index.js +0 -1
- package/dist/components/player-lugas-limit.d.ts +0 -11
- package/dist/components/player-lugas-limit.js +0 -493
- package/dist/esm/index-4c4101b9.js +0 -1204
- package/dist/esm/index.js +0 -1
- package/dist/esm/loader.js +0 -17
- package/dist/esm/player-lugas-limit.entry.js +0 -448
- package/dist/esm/player-lugas-limit.js +0 -17
- package/dist/esm/polyfills/core-js.js +0 -11
- package/dist/esm/polyfills/css-shim.js +0 -1
- package/dist/esm/polyfills/dom.js +0 -79
- package/dist/esm/polyfills/es5-html-element.js +0 -1
- package/dist/esm/polyfills/index.js +0 -34
- package/dist/esm/polyfills/system.js +0 -6
- package/dist/index.cjs.js +0 -1
- package/dist/index.js +0 -1
- package/dist/player-lugas-limit/index.esm.js +0 -0
- package/dist/player-lugas-limit/p-b1c65b2e.entry.js +0 -1
- package/dist/player-lugas-limit/p-d4aa7282.js +0 -1
- package/dist/player-lugas-limit/player-lugas-limit.esm.js +0 -1
- package/dist/stencil.config.js +0 -22
- package/dist/types/Users/dragos.bodea/Documents/everymatrix-prjs/emfe-widgets/widgets-stencil/packages/player-lugas-limit/.stencil/packages/player-lugas-limit/stencil.config.d.ts +0 -2
- package/dist/types/components/player-lugas-limit/player-lugas-limit.d.ts +0 -83
- package/dist/types/components.d.ts +0 -130
- package/dist/types/index.d.ts +0 -1
- package/dist/types/stencil-public-runtime.d.ts +0 -1565
- package/dist/types/utils/locale.utils.d.ts +0 -2
- package/dist/types/utils/utils.d.ts +0 -0
- package/loader/cdn.js +0 -3
- package/loader/index.cjs.js +0 -3
- package/loader/index.d.ts +0 -12
- package/loader/index.es2017.js +0 -3
- package/loader/index.js +0 -4
- package/loader/package.json +0 -10
package/dist/stencil.config.js
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { sass } from '@stencil/sass';
|
|
2
|
-
export const config = {
|
|
3
|
-
namespace: 'player-lugas-limit',
|
|
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
|
-
};
|
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '../../stencil-public-runtime';
|
|
2
|
-
export declare class PlayerLugasLimit {
|
|
3
|
-
/**
|
|
4
|
-
* The userId
|
|
5
|
-
*/
|
|
6
|
-
userId: string;
|
|
7
|
-
/**
|
|
8
|
-
* The session
|
|
9
|
-
*/
|
|
10
|
-
session: string;
|
|
11
|
-
/**
|
|
12
|
-
* The NorWAy endpoint
|
|
13
|
-
*/
|
|
14
|
-
endpoint: string;
|
|
15
|
-
/**
|
|
16
|
-
* Currency of the player
|
|
17
|
-
*/
|
|
18
|
-
currency: string;
|
|
19
|
-
/**
|
|
20
|
-
* This chooses what type of flow the widget will have, “1” will be the Soft Migration Dialog and the “2” will be the New User
|
|
21
|
-
*/
|
|
22
|
-
flow: string;
|
|
23
|
-
/**
|
|
24
|
-
* This decides the minimum and maximum mandatory amount for setting a new limit, example: amountMinMax=“10,3000”
|
|
25
|
-
*/
|
|
26
|
-
amountMinMax: string;
|
|
27
|
-
/**
|
|
28
|
-
* The amount
|
|
29
|
-
*/
|
|
30
|
-
amount: string;
|
|
31
|
-
/**
|
|
32
|
-
* The lang
|
|
33
|
-
*/
|
|
34
|
-
lang: string;
|
|
35
|
-
/**
|
|
36
|
-
* Client custom styling via string
|
|
37
|
-
*/
|
|
38
|
-
clientStyling: string;
|
|
39
|
-
/**
|
|
40
|
-
* Client custom styling via url
|
|
41
|
-
*/
|
|
42
|
-
clientStylingUrl: string;
|
|
43
|
-
/**
|
|
44
|
-
* The translationurl
|
|
45
|
-
*/
|
|
46
|
-
translationUrl: string;
|
|
47
|
-
validation: boolean;
|
|
48
|
-
private kyc;
|
|
49
|
-
private dropDown;
|
|
50
|
-
private isLoading;
|
|
51
|
-
private hasErrors;
|
|
52
|
-
inputValue: string;
|
|
53
|
-
isButtonDisabled: boolean;
|
|
54
|
-
crossProviders: boolean;
|
|
55
|
-
invalidInput: boolean;
|
|
56
|
-
userAmount: string;
|
|
57
|
-
operatorDepositLimitAmount: string;
|
|
58
|
-
regularDepositLimitAmount: string;
|
|
59
|
-
private stylingAppends;
|
|
60
|
-
isWithinRange: boolean;
|
|
61
|
-
minimumRange: boolean;
|
|
62
|
-
isValidNumber: boolean;
|
|
63
|
-
hasValidDecimalSeparator: boolean;
|
|
64
|
-
private stylingContainer;
|
|
65
|
-
/**
|
|
66
|
-
* Upload documents event
|
|
67
|
-
*/
|
|
68
|
-
uploadDocuments: EventEmitter;
|
|
69
|
-
closePopup: EventEmitter;
|
|
70
|
-
componentDidRender(): void;
|
|
71
|
-
handleNewTranslations(): void;
|
|
72
|
-
componentWillLoad(): Promise<void>;
|
|
73
|
-
setClientStyling: () => void;
|
|
74
|
-
setClientStylingURL: () => void;
|
|
75
|
-
postPlayerSituation: (userAmount?: any, keepLimit?: boolean, initialNewLimit?: boolean) => void;
|
|
76
|
-
handleClick: (input: string) => void;
|
|
77
|
-
handleSubmit(event: Event): void;
|
|
78
|
-
containsOnlyDigits(input: any): boolean;
|
|
79
|
-
handleInputChange(event: Event): void;
|
|
80
|
-
renderKYC(step: any): any;
|
|
81
|
-
renderValidator(input: any): any;
|
|
82
|
-
render(): any;
|
|
83
|
-
}
|
|
@@ -1,130 +0,0 @@
|
|
|
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
|
-
export namespace Components {
|
|
9
|
-
interface PlayerLugasLimit {
|
|
10
|
-
/**
|
|
11
|
-
* The amount
|
|
12
|
-
*/
|
|
13
|
-
"amount": string;
|
|
14
|
-
/**
|
|
15
|
-
* This decides the minimum and maximum mandatory amount for setting a new limit, example: amountMinMax=“10,3000”
|
|
16
|
-
*/
|
|
17
|
-
"amountMinMax": string;
|
|
18
|
-
/**
|
|
19
|
-
* Client custom styling via string
|
|
20
|
-
*/
|
|
21
|
-
"clientStyling": string;
|
|
22
|
-
/**
|
|
23
|
-
* Client custom styling via url
|
|
24
|
-
*/
|
|
25
|
-
"clientStylingUrl": string;
|
|
26
|
-
/**
|
|
27
|
-
* Currency of the player
|
|
28
|
-
*/
|
|
29
|
-
"currency": string;
|
|
30
|
-
/**
|
|
31
|
-
* The NorWAy endpoint
|
|
32
|
-
*/
|
|
33
|
-
"endpoint": string;
|
|
34
|
-
/**
|
|
35
|
-
* This chooses what type of flow the widget will have, “1” will be the Soft Migration Dialog and the “2” will be the New User
|
|
36
|
-
*/
|
|
37
|
-
"flow": string;
|
|
38
|
-
/**
|
|
39
|
-
* The lang
|
|
40
|
-
*/
|
|
41
|
-
"lang": string;
|
|
42
|
-
/**
|
|
43
|
-
* The session
|
|
44
|
-
*/
|
|
45
|
-
"session": string;
|
|
46
|
-
/**
|
|
47
|
-
* The translationurl
|
|
48
|
-
*/
|
|
49
|
-
"translationUrl": string;
|
|
50
|
-
/**
|
|
51
|
-
* The userId
|
|
52
|
-
*/
|
|
53
|
-
"userId": string;
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
declare global {
|
|
57
|
-
interface HTMLPlayerLugasLimitElement extends Components.PlayerLugasLimit, HTMLStencilElement {
|
|
58
|
-
}
|
|
59
|
-
var HTMLPlayerLugasLimitElement: {
|
|
60
|
-
prototype: HTMLPlayerLugasLimitElement;
|
|
61
|
-
new (): HTMLPlayerLugasLimitElement;
|
|
62
|
-
};
|
|
63
|
-
interface HTMLElementTagNameMap {
|
|
64
|
-
"player-lugas-limit": HTMLPlayerLugasLimitElement;
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
declare namespace LocalJSX {
|
|
68
|
-
interface PlayerLugasLimit {
|
|
69
|
-
/**
|
|
70
|
-
* The amount
|
|
71
|
-
*/
|
|
72
|
-
"amount"?: string;
|
|
73
|
-
/**
|
|
74
|
-
* This decides the minimum and maximum mandatory amount for setting a new limit, example: amountMinMax=“10,3000”
|
|
75
|
-
*/
|
|
76
|
-
"amountMinMax"?: string;
|
|
77
|
-
/**
|
|
78
|
-
* Client custom styling via string
|
|
79
|
-
*/
|
|
80
|
-
"clientStyling"?: string;
|
|
81
|
-
/**
|
|
82
|
-
* Client custom styling via url
|
|
83
|
-
*/
|
|
84
|
-
"clientStylingUrl"?: string;
|
|
85
|
-
/**
|
|
86
|
-
* Currency of the player
|
|
87
|
-
*/
|
|
88
|
-
"currency"?: string;
|
|
89
|
-
/**
|
|
90
|
-
* The NorWAy endpoint
|
|
91
|
-
*/
|
|
92
|
-
"endpoint"?: string;
|
|
93
|
-
/**
|
|
94
|
-
* This chooses what type of flow the widget will have, “1” will be the Soft Migration Dialog and the “2” will be the New User
|
|
95
|
-
*/
|
|
96
|
-
"flow"?: string;
|
|
97
|
-
/**
|
|
98
|
-
* The lang
|
|
99
|
-
*/
|
|
100
|
-
"lang"?: string;
|
|
101
|
-
"onClosePopup"?: (event: CustomEvent<any>) => void;
|
|
102
|
-
/**
|
|
103
|
-
* Upload documents event
|
|
104
|
-
*/
|
|
105
|
-
"onUploadDocuments"?: (event: CustomEvent<any>) => void;
|
|
106
|
-
/**
|
|
107
|
-
* The session
|
|
108
|
-
*/
|
|
109
|
-
"session"?: string;
|
|
110
|
-
/**
|
|
111
|
-
* The translationurl
|
|
112
|
-
*/
|
|
113
|
-
"translationUrl"?: string;
|
|
114
|
-
/**
|
|
115
|
-
* The userId
|
|
116
|
-
*/
|
|
117
|
-
"userId"?: string;
|
|
118
|
-
}
|
|
119
|
-
interface IntrinsicElements {
|
|
120
|
-
"player-lugas-limit": PlayerLugasLimit;
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
export { LocalJSX as JSX };
|
|
124
|
-
declare module "@stencil/core" {
|
|
125
|
-
export namespace JSX {
|
|
126
|
-
interface IntrinsicElements {
|
|
127
|
-
"player-lugas-limit": LocalJSX.PlayerLugasLimit & JSXBase.HTMLAttributes<HTMLPlayerLugasLimitElement>;
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
}
|
package/dist/types/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './components';
|