@everymatrix/player-lugas-limit 1.10.6

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.
Files changed (47) hide show
  1. package/dist/cjs/index-034179c3.js +1193 -0
  2. package/dist/cjs/index.cjs.js +2 -0
  3. package/dist/cjs/loader.cjs.js +21 -0
  4. package/dist/cjs/player-lugas-limit.cjs.entry.js +342 -0
  5. package/dist/cjs/player-lugas-limit.cjs.js +19 -0
  6. package/dist/collection/collection-manifest.json +12 -0
  7. package/dist/collection/components/player-lugas-limit/player-lugas-limit.css +174 -0
  8. package/dist/collection/components/player-lugas-limit/player-lugas-limit.js +529 -0
  9. package/dist/collection/index.js +1 -0
  10. package/dist/collection/utils/locale.utils.js +111 -0
  11. package/dist/collection/utils/utils.js +0 -0
  12. package/dist/components/index.d.ts +26 -0
  13. package/dist/components/index.js +1 -0
  14. package/dist/components/player-lugas-limit.d.ts +11 -0
  15. package/dist/components/player-lugas-limit.js +381 -0
  16. package/dist/esm/index-9b67d402.js +1167 -0
  17. package/dist/esm/index.js +1 -0
  18. package/dist/esm/loader.js +17 -0
  19. package/dist/esm/player-lugas-limit.entry.js +338 -0
  20. package/dist/esm/player-lugas-limit.js +17 -0
  21. package/dist/esm/polyfills/core-js.js +11 -0
  22. package/dist/esm/polyfills/css-shim.js +1 -0
  23. package/dist/esm/polyfills/dom.js +79 -0
  24. package/dist/esm/polyfills/es5-html-element.js +1 -0
  25. package/dist/esm/polyfills/index.js +34 -0
  26. package/dist/esm/polyfills/system.js +6 -0
  27. package/dist/index.cjs.js +1 -0
  28. package/dist/index.js +1 -0
  29. package/dist/player-lugas-limit/index.esm.js +0 -0
  30. package/dist/player-lugas-limit/p-76c6c11d.js +1 -0
  31. package/dist/player-lugas-limit/p-9b67af1c.entry.js +1 -0
  32. package/dist/player-lugas-limit/player-lugas-limit.esm.js +1 -0
  33. package/dist/stencil.config.js +22 -0
  34. package/dist/types/Users/adrian.pripon/Documents/Work/stencil/widgets-stencil/packages/player-lugas-limit/.stencil/packages/player-lugas-limit/stencil.config.d.ts +2 -0
  35. package/dist/types/components/player-lugas-limit/player-lugas-limit.d.ts +73 -0
  36. package/dist/types/components.d.ts +126 -0
  37. package/dist/types/index.d.ts +1 -0
  38. package/dist/types/stencil-public-runtime.d.ts +1565 -0
  39. package/dist/types/utils/locale.utils.d.ts +1 -0
  40. package/dist/types/utils/utils.d.ts +0 -0
  41. package/loader/cdn.js +3 -0
  42. package/loader/index.cjs.js +3 -0
  43. package/loader/index.d.ts +12 -0
  44. package/loader/index.es2017.js +3 -0
  45. package/loader/index.js +4 -0
  46. package/loader/package.json +10 -0
  47. package/package.json +23 -0
@@ -0,0 +1,73 @@
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 endpoint
13
+ */
14
+ endpoint: string;
15
+ /**
16
+ * The currency
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 content
41
+ */
42
+ clientStylingUrlContent: 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
+ private stylingAppends;
57
+ isVisible: boolean;
58
+ userAmount: string;
59
+ operatorDepositLimitAmount: string;
60
+ uploadDocuments: EventEmitter<any>;
61
+ private stylingContainer;
62
+ componentDidRender(): void;
63
+ setClientStyling: () => void;
64
+ setClientStylingURL: () => void;
65
+ setPlayerSituation: () => void;
66
+ postPlayerSituation: () => void;
67
+ handleClick: (input: any) => void;
68
+ setLimit: () => void;
69
+ handleInputChange(event: Event): void;
70
+ renderKYC(step: any): any;
71
+ renderValidator(input: any): any;
72
+ render(): any;
73
+ }
@@ -0,0 +1,126 @@
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 content
24
+ */
25
+ "clientStylingUrlContent": string;
26
+ /**
27
+ * The currency
28
+ */
29
+ "currency": string;
30
+ /**
31
+ * The 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 content
83
+ */
84
+ "clientStylingUrlContent"?: string;
85
+ /**
86
+ * The currency
87
+ */
88
+ "currency"?: string;
89
+ /**
90
+ * The 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
+ "onUploadDocuments"?: (event: CustomEvent<any>) => void;
102
+ /**
103
+ * The session
104
+ */
105
+ "session"?: string;
106
+ /**
107
+ * The translationurl
108
+ */
109
+ "translationurl"?: string;
110
+ /**
111
+ * The userid
112
+ */
113
+ "userid"?: string;
114
+ }
115
+ interface IntrinsicElements {
116
+ "player-lugas-limit": PlayerLugasLimit;
117
+ }
118
+ }
119
+ export { LocalJSX as JSX };
120
+ declare module "@stencil/core" {
121
+ export namespace JSX {
122
+ interface IntrinsicElements {
123
+ "player-lugas-limit": LocalJSX.PlayerLugasLimit & JSXBase.HTMLAttributes<HTMLPlayerLugasLimitElement>;
124
+ }
125
+ }
126
+ }
@@ -0,0 +1 @@
1
+ export * from './components';