@everymatrix/casino-tournament-prizes 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-tournament-prizes/casino-tournament-prizes.esm.js +1 -0
  2. package/dist/casino-tournament-prizes/index.esm.js +0 -0
  3. package/dist/casino-tournament-prizes/p-52494b9c.js +2 -0
  4. package/dist/casino-tournament-prizes/p-9274e610.entry.js +1 -0
  5. package/dist/casino-tournament-prizes/p-e1255160.js +1 -0
  6. package/dist/cjs/app-globals-3a1e7e63.js +5 -0
  7. package/dist/cjs/casino-tournament-prizes.cjs.entry.js +183 -0
  8. package/dist/cjs/casino-tournament-prizes.cjs.js +25 -0
  9. package/dist/cjs/index-c53c7832.js +1234 -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-tournament-prizes/casino-tournament-prizes.css +100 -0
  14. package/dist/collection/components/casino-tournament-prizes/casino-tournament-prizes.js +305 -0
  15. package/dist/collection/components/casino-tournament-prizes/index.js +1 -0
  16. package/dist/collection/index.js +1 -0
  17. package/dist/collection/utils/locale.utils.js +58 -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-tournament-prizes.entry.js +179 -0
  21. package/dist/esm/casino-tournament-prizes.js +20 -0
  22. package/dist/esm/index-7e63d638.js +1207 -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-tournament-prizes/.stencil/packages/stencil/casino-tournament-prizes/stencil.config.d.ts +2 -0
  30. package/dist/types/Users/raul.vasile/workspace/everymatrix/widgets-monorepo/packages/stencil/casino-tournament-prizes/.stencil/packages/stencil/casino-tournament-prizes/stencil.config.dev.d.ts +2 -0
  31. package/dist/types/components/casino-tournament-prizes/casino-tournament-prizes.d.ts +24 -0
  32. package/dist/types/components/casino-tournament-prizes/index.d.ts +1 -0
  33. package/dist/types/components.d.ts +55 -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/locale.utils.d.ts +1 -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-7e63d638.js';
2
+ export { s as setNonce } from './index-7e63d638.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-tournament-prizes",[[1,"casino-tournament-prizes",{"language":[1],"useGroup":[4,"use-group"],"useEvent":[4,"use-event"],"endpoint":[1],"session":[1],"rawPrizes":[1,"raw-prizes"],"tournamentId":[1,"tournament-id"],"clientStyling":[1,"client-styling"],"clientStylingUrl":[1,"client-styling-url"],"limitStylingAppends":[32],"prizes":[32],"prizeGroups":[32],"initialLoad":[32]},[[10,"getTournamentInfoCompleted","infoCompletedHandler"]]]]]], 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-tournament-prizes',
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-tournament-prizes',
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,24 @@
1
+ export declare class CasinoTournamentPrizes {
2
+ language: string;
3
+ useGroup: boolean;
4
+ useEvent: boolean;
5
+ endpoint: string;
6
+ session: string;
7
+ rawPrizes: string;
8
+ tournamentId: string;
9
+ clientStyling: string;
10
+ clientStylingUrl: string;
11
+ limitStylingAppends: boolean;
12
+ prizes: Array<any>;
13
+ prizeGroups: Array<any>;
14
+ initialLoad: boolean;
15
+ host: HTMLElement;
16
+ infoCompletedHandler(event: CustomEvent<any>): void;
17
+ formatGroup(): void;
18
+ getTournamentInfo(): void;
19
+ componentWillLoad(): void;
20
+ componentDidRender(): void;
21
+ setClientStyling(): void;
22
+ setClientStylingURL(): void;
23
+ render(): any;
24
+ }
@@ -0,0 +1 @@
1
+ export { CasinoTournamentPrizes } from './casino-tournament-prizes';
@@ -0,0 +1,55 @@
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 CasinoTournamentPrizes {
10
+ "clientStyling": string;
11
+ "clientStylingUrl": string;
12
+ "endpoint": string;
13
+ "language": string;
14
+ "rawPrizes": string;
15
+ "session": string;
16
+ "tournamentId": string;
17
+ "useEvent": boolean;
18
+ "useGroup": boolean;
19
+ }
20
+ }
21
+ declare global {
22
+ interface HTMLCasinoTournamentPrizesElement extends Components.CasinoTournamentPrizes, HTMLStencilElement {
23
+ }
24
+ var HTMLCasinoTournamentPrizesElement: {
25
+ prototype: HTMLCasinoTournamentPrizesElement;
26
+ new (): HTMLCasinoTournamentPrizesElement;
27
+ };
28
+ interface HTMLElementTagNameMap {
29
+ "casino-tournament-prizes": HTMLCasinoTournamentPrizesElement;
30
+ }
31
+ }
32
+ declare namespace LocalJSX {
33
+ interface CasinoTournamentPrizes {
34
+ "clientStyling"?: string;
35
+ "clientStylingUrl"?: string;
36
+ "endpoint"?: string;
37
+ "language"?: string;
38
+ "rawPrizes"?: string;
39
+ "session"?: string;
40
+ "tournamentId"?: string;
41
+ "useEvent"?: boolean;
42
+ "useGroup"?: boolean;
43
+ }
44
+ interface IntrinsicElements {
45
+ "casino-tournament-prizes": CasinoTournamentPrizes;
46
+ }
47
+ }
48
+ export { LocalJSX as JSX };
49
+ declare module "@stencil/core" {
50
+ export namespace JSX {
51
+ interface IntrinsicElements {
52
+ "casino-tournament-prizes": LocalJSX.CasinoTournamentPrizes & JSXBase.HTMLAttributes<HTMLCasinoTournamentPrizesElement>;
53
+ }
54
+ }
55
+ }
@@ -0,0 +1 @@
1
+ export * from './components';