@everymatrix/casino-engagement-suite-modal 1.0.69

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 (44) hide show
  1. package/dist/casino-engagement-suite-modal/casino-engagement-suite-modal.esm.js +1 -0
  2. package/dist/casino-engagement-suite-modal/index.esm.js +0 -0
  3. package/dist/casino-engagement-suite-modal/p-7b038275.js +2 -0
  4. package/dist/casino-engagement-suite-modal/p-d9e64531.entry.js +1 -0
  5. package/dist/casino-engagement-suite-modal/p-e1255160.js +1 -0
  6. package/dist/cjs/app-globals-3a1e7e63.js +5 -0
  7. package/dist/cjs/casino-engagement-suite-modal.cjs.entry.js +66 -0
  8. package/dist/cjs/casino-engagement-suite-modal.cjs.js +25 -0
  9. package/dist/cjs/index-63e7fad0.js +1210 -0
  10. package/dist/cjs/index.cjs.js +2 -0
  11. package/dist/cjs/loader.cjs.js +15 -0
  12. package/dist/collection/collection-manifest.json +12 -0
  13. package/dist/collection/components/casino-engagement-suite-modal/casino-engagement-suite-modal.css +141 -0
  14. package/dist/collection/components/casino-engagement-suite-modal/casino-engagement-suite-modal.js +249 -0
  15. package/dist/collection/components/casino-engagement-suite-modal/index.js +1 -0
  16. package/dist/collection/index.js +1 -0
  17. package/dist/collection/utils/constants.js +4 -0
  18. package/dist/collection/utils/utils.js +3 -0
  19. package/dist/esm/app-globals-0f993ce5.js +3 -0
  20. package/dist/esm/casino-engagement-suite-modal.entry.js +62 -0
  21. package/dist/esm/casino-engagement-suite-modal.js +20 -0
  22. package/dist/esm/index-9157b8d6.js +1182 -0
  23. package/dist/esm/index.js +1 -0
  24. package/dist/esm/loader.js +11 -0
  25. package/dist/index.cjs.js +1 -0
  26. package/dist/index.js +1 -0
  27. package/dist/stencil.config.dev.js +17 -0
  28. package/dist/stencil.config.js +17 -0
  29. package/dist/types/Users/raul.vasile/workspace/everymatrix/widgets-monorepo/packages/stencil/casino-engagement-suite-modal/.stencil/packages/stencil/casino-engagement-suite-modal/stencil.config.d.ts +2 -0
  30. package/dist/types/Users/raul.vasile/workspace/everymatrix/widgets-monorepo/packages/stencil/casino-engagement-suite-modal/.stencil/packages/stencil/casino-engagement-suite-modal/stencil.config.dev.d.ts +2 -0
  31. package/dist/types/components/casino-engagement-suite-modal/casino-engagement-suite-modal.d.ts +29 -0
  32. package/dist/types/components/casino-engagement-suite-modal/index.d.ts +1 -0
  33. package/dist/types/components.d.ts +89 -0
  34. package/dist/types/index.d.ts +1 -0
  35. package/dist/types/stencil-public-runtime.d.ts +1674 -0
  36. package/dist/types/utils/constants.d.ts +4 -0
  37. package/dist/types/utils/utils.d.ts +1 -0
  38. package/loader/cdn.js +1 -0
  39. package/loader/index.cjs.js +1 -0
  40. package/loader/index.d.ts +24 -0
  41. package/loader/index.es2017.js +1 -0
  42. package/loader/index.js +2 -0
  43. package/loader/package.json +11 -0
  44. package/package.json +26 -0
@@ -0,0 +1 @@
1
+
@@ -0,0 +1,11 @@
1
+ import { b as bootstrapLazy } from './index-9157b8d6.js';
2
+ export { s as setNonce } from './index-9157b8d6.js';
3
+ import { g as globalScripts } from './app-globals-0f993ce5.js';
4
+
5
+ const defineCustomElements = async (win, options) => {
6
+ if (typeof window === 'undefined') return undefined;
7
+ await globalScripts();
8
+ return bootstrapLazy([["casino-engagement-suite-modal",[[1,"casino-engagement-suite-modal",{"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"isOpen":[4,"is-open"],"isLoading":[1028,"is-loading"],"header":[1],"contentIcon":[1,"content-icon"],"modalType":[1,"modal-type"],"device":[1],"showAnimation":[4,"show-animation"],"limitStylingAppends":[32]}]]]], options);
9
+ };
10
+
11
+ export { defineCustomElements };
@@ -0,0 +1 @@
1
+ module.exports = require('./cjs/index.cjs.js');
package/dist/index.js ADDED
@@ -0,0 +1 @@
1
+ export * from './esm/index.js';
@@ -0,0 +1,17 @@
1
+ import { sass } from "@stencil/sass";
2
+ export const config = {
3
+ namespace: 'casino-engagement-suite-modal',
4
+ taskQueue: 'async',
5
+ sourceMap: true,
6
+ minifyJs: false,
7
+ extras: {
8
+ experimentalImportInjection: true
9
+ },
10
+ plugins: [sass()],
11
+ outputTargets: [
12
+ {
13
+ type: 'www',
14
+ serviceWorker: null // disable service workers
15
+ }
16
+ ]
17
+ };
@@ -0,0 +1,17 @@
1
+ import { sass } from "@stencil/sass";
2
+ export const config = {
3
+ namespace: 'casino-engagement-suite-modal',
4
+ taskQueue: 'async',
5
+ sourceMap: false,
6
+ minifyJs: true,
7
+ extras: {
8
+ experimentalImportInjection: true
9
+ },
10
+ plugins: [sass()],
11
+ outputTargets: [
12
+ {
13
+ type: 'dist',
14
+ esmLoaderPath: '../loader'
15
+ }
16
+ ]
17
+ };
@@ -0,0 +1,2 @@
1
+ import { Config } from '../../../../../../../../../../../../stencil-public-runtime';
2
+ export declare const config: Config;
@@ -0,0 +1,2 @@
1
+ import { Config } from '../../../../../../../../../../../../stencil-public-runtime';
2
+ export declare const config: Config;
@@ -0,0 +1,29 @@
1
+ import { EventEmitter } from '../../stencil-public-runtime';
2
+ export declare class CasinoEngagementSuiteModal {
3
+ /**
4
+ * Client custom styling via string
5
+ */
6
+ clientStyling: string;
7
+ /**
8
+ * Client custom styling via url
9
+ */
10
+ clientStylingUrl: string;
11
+ isOpen: boolean;
12
+ isLoading: boolean;
13
+ header: string;
14
+ contentIcon: string;
15
+ modalType: string;
16
+ device: "Mobile" | "Tablet" | "Desktop";
17
+ /**
18
+ * Show win animation
19
+ */
20
+ showAnimation: boolean;
21
+ private limitStylingAppends;
22
+ host: HTMLElement;
23
+ closeModal: EventEmitter<any>;
24
+ handleCloseClick: () => void;
25
+ componentDidRender(): void;
26
+ setClientStyling: () => void;
27
+ setClientStylingURL: () => void;
28
+ render(): any;
29
+ }
@@ -0,0 +1 @@
1
+ export { CasinoEngagementSuiteModal } from './casino-engagement-suite-modal';
@@ -0,0 +1,89 @@
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 CasinoEngagementSuiteModal {
10
+ /**
11
+ * Client custom styling via string
12
+ */
13
+ "clientStyling": string;
14
+ /**
15
+ * Client custom styling via url
16
+ */
17
+ "clientStylingUrl": string;
18
+ "contentIcon": string;
19
+ "device": "Mobile" | "Tablet" | "Desktop";
20
+ "header": string;
21
+ "isLoading": boolean;
22
+ "isOpen": boolean;
23
+ "modalType": string;
24
+ /**
25
+ * Show win animation
26
+ */
27
+ "showAnimation": boolean;
28
+ }
29
+ }
30
+ export interface CasinoEngagementSuiteModalCustomEvent<T> extends CustomEvent<T> {
31
+ detail: T;
32
+ target: HTMLCasinoEngagementSuiteModalElement;
33
+ }
34
+ declare global {
35
+ interface HTMLCasinoEngagementSuiteModalElementEventMap {
36
+ "closeModal": any;
37
+ }
38
+ interface HTMLCasinoEngagementSuiteModalElement extends Components.CasinoEngagementSuiteModal, HTMLStencilElement {
39
+ addEventListener<K extends keyof HTMLCasinoEngagementSuiteModalElementEventMap>(type: K, listener: (this: HTMLCasinoEngagementSuiteModalElement, ev: CasinoEngagementSuiteModalCustomEvent<HTMLCasinoEngagementSuiteModalElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
40
+ addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
41
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
42
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
43
+ removeEventListener<K extends keyof HTMLCasinoEngagementSuiteModalElementEventMap>(type: K, listener: (this: HTMLCasinoEngagementSuiteModalElement, ev: CasinoEngagementSuiteModalCustomEvent<HTMLCasinoEngagementSuiteModalElementEventMap[K]>) => any, options?: boolean | EventListenerOptions): void;
44
+ removeEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
45
+ removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
46
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
47
+ }
48
+ var HTMLCasinoEngagementSuiteModalElement: {
49
+ prototype: HTMLCasinoEngagementSuiteModalElement;
50
+ new (): HTMLCasinoEngagementSuiteModalElement;
51
+ };
52
+ interface HTMLElementTagNameMap {
53
+ "casino-engagement-suite-modal": HTMLCasinoEngagementSuiteModalElement;
54
+ }
55
+ }
56
+ declare namespace LocalJSX {
57
+ interface CasinoEngagementSuiteModal {
58
+ /**
59
+ * Client custom styling via string
60
+ */
61
+ "clientStyling"?: string;
62
+ /**
63
+ * Client custom styling via url
64
+ */
65
+ "clientStylingUrl"?: string;
66
+ "contentIcon"?: string;
67
+ "device"?: "Mobile" | "Tablet" | "Desktop";
68
+ "header"?: string;
69
+ "isLoading"?: boolean;
70
+ "isOpen"?: boolean;
71
+ "modalType"?: string;
72
+ "onCloseModal"?: (event: CasinoEngagementSuiteModalCustomEvent<any>) => void;
73
+ /**
74
+ * Show win animation
75
+ */
76
+ "showAnimation"?: boolean;
77
+ }
78
+ interface IntrinsicElements {
79
+ "casino-engagement-suite-modal": CasinoEngagementSuiteModal;
80
+ }
81
+ }
82
+ export { LocalJSX as JSX };
83
+ declare module "@stencil/core" {
84
+ export namespace JSX {
85
+ interface IntrinsicElements {
86
+ "casino-engagement-suite-modal": LocalJSX.CasinoEngagementSuiteModal & JSXBase.HTMLAttributes<HTMLCasinoEngagementSuiteModalElement>;
87
+ }
88
+ }
89
+ }
@@ -0,0 +1 @@
1
+ export * from './components';