@everymatrix/casino-tournament-desc 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.
- package/dist/casino-tournament-desc/casino-tournament-desc.esm.js +1 -0
- package/dist/casino-tournament-desc/index.esm.js +0 -0
- package/dist/casino-tournament-desc/p-38c5cae6.entry.js +1 -0
- package/dist/casino-tournament-desc/p-dc30d5ac.js +2 -0
- package/dist/casino-tournament-desc/p-e1255160.js +1 -0
- package/dist/cjs/app-globals-3a1e7e63.js +5 -0
- package/dist/cjs/casino-tournament-desc.cjs.entry.js +83 -0
- package/dist/cjs/casino-tournament-desc.cjs.js +25 -0
- package/dist/cjs/index-fae16713.js +1254 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +15 -0
- package/dist/collection/collection-manifest.json +12 -0
- package/dist/collection/components/casino-tournament-desc/casino-tournament-desc.css +46 -0
- package/dist/collection/components/casino-tournament-desc/casino-tournament-desc.js +192 -0
- package/dist/collection/components/casino-tournament-desc/index.js +1 -0
- package/dist/collection/index.js +1 -0
- package/dist/collection/utils/utils.js +3 -0
- package/dist/esm/app-globals-0f993ce5.js +3 -0
- package/dist/esm/casino-tournament-desc.entry.js +79 -0
- package/dist/esm/casino-tournament-desc.js +20 -0
- package/dist/esm/index-5479ab85.js +1227 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +11 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/stencil.config.dev.js +17 -0
- package/dist/stencil.config.js +17 -0
- package/dist/types/Users/raul.vasile/workspace/everymatrix/widgets-monorepo/packages/stencil/casino-tournament-desc/.stencil/packages/stencil/casino-tournament-desc/stencil.config.d.ts +2 -0
- package/dist/types/Users/raul.vasile/workspace/everymatrix/widgets-monorepo/packages/stencil/casino-tournament-desc/.stencil/packages/stencil/casino-tournament-desc/stencil.config.dev.d.ts +2 -0
- package/dist/types/components/casino-tournament-desc/casino-tournament-desc.d.ts +34 -0
- package/dist/types/components/casino-tournament-desc/index.d.ts +1 -0
- package/dist/types/components.d.ts +77 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/stencil-public-runtime.d.ts +1674 -0
- package/dist/types/utils/utils.d.ts +1 -0
- package/loader/cdn.js +1 -0
- package/loader/index.cjs.js +1 -0
- package/loader/index.d.ts +24 -0
- package/loader/index.es2017.js +1 -0
- package/loader/index.js +2 -0
- package/loader/package.json +11 -0
- package/package.json +26 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { b as bootstrapLazy } from './index-5479ab85.js';
|
|
2
|
+
export { s as setNonce } from './index-5479ab85.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-desc",[[1,"casino-tournament-desc",{"desc":[1],"descTitle":[1,"desc-title"],"useEvent":[4,"use-event"],"clientStyling":[1,"client-styling"],"clientStylingUrl":[1,"client-styling-url"],"limitStylingAppends":[32],"stylingContainer":[32],"collapsed":[32],"tournamentDescriptions":[32]},[[8,"getTournamentDescriptionCompleted","descCompletedHandler"]]]]]], 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-desc',
|
|
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-desc',
|
|
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,34 @@
|
|
|
1
|
+
export declare class CasinoTournamentDesc {
|
|
2
|
+
/**
|
|
3
|
+
* Description content as HTML
|
|
4
|
+
*/
|
|
5
|
+
desc: string;
|
|
6
|
+
/**
|
|
7
|
+
* Description title
|
|
8
|
+
*/
|
|
9
|
+
descTitle: string;
|
|
10
|
+
/**
|
|
11
|
+
* Use event to get data
|
|
12
|
+
*/
|
|
13
|
+
useEvent?: boolean;
|
|
14
|
+
/**
|
|
15
|
+
* Client custom styling via inline styles
|
|
16
|
+
*/
|
|
17
|
+
clientStyling?: string;
|
|
18
|
+
/**
|
|
19
|
+
* Client custom styling via url
|
|
20
|
+
*/
|
|
21
|
+
clientStylingUrl?: string;
|
|
22
|
+
limitStylingAppends: boolean;
|
|
23
|
+
stylingContainer: HTMLElement;
|
|
24
|
+
collapsed: any[];
|
|
25
|
+
tournamentDescriptions: any[];
|
|
26
|
+
host: HTMLElement;
|
|
27
|
+
descCompletedHandler(event: CustomEvent<any>): void;
|
|
28
|
+
collapseText(index: any): void;
|
|
29
|
+
componentWillLoad(): void;
|
|
30
|
+
componentDidRender(): void;
|
|
31
|
+
setClientStyling(): void;
|
|
32
|
+
setClientStylingURL(): void;
|
|
33
|
+
render(): any;
|
|
34
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CasinoTournamentDesc } from './casino-tournament-desc';
|
|
@@ -0,0 +1,77 @@
|
|
|
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 CasinoTournamentDesc {
|
|
10
|
+
/**
|
|
11
|
+
* Client custom styling via inline styles
|
|
12
|
+
*/
|
|
13
|
+
"clientStyling"?: string;
|
|
14
|
+
/**
|
|
15
|
+
* Client custom styling via url
|
|
16
|
+
*/
|
|
17
|
+
"clientStylingUrl"?: string;
|
|
18
|
+
/**
|
|
19
|
+
* Description content as HTML
|
|
20
|
+
*/
|
|
21
|
+
"desc": string;
|
|
22
|
+
/**
|
|
23
|
+
* Description title
|
|
24
|
+
*/
|
|
25
|
+
"descTitle": string;
|
|
26
|
+
/**
|
|
27
|
+
* Use event to get data
|
|
28
|
+
*/
|
|
29
|
+
"useEvent"?: boolean;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
declare global {
|
|
33
|
+
interface HTMLCasinoTournamentDescElement extends Components.CasinoTournamentDesc, HTMLStencilElement {
|
|
34
|
+
}
|
|
35
|
+
var HTMLCasinoTournamentDescElement: {
|
|
36
|
+
prototype: HTMLCasinoTournamentDescElement;
|
|
37
|
+
new (): HTMLCasinoTournamentDescElement;
|
|
38
|
+
};
|
|
39
|
+
interface HTMLElementTagNameMap {
|
|
40
|
+
"casino-tournament-desc": HTMLCasinoTournamentDescElement;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
declare namespace LocalJSX {
|
|
44
|
+
interface CasinoTournamentDesc {
|
|
45
|
+
/**
|
|
46
|
+
* Client custom styling via inline styles
|
|
47
|
+
*/
|
|
48
|
+
"clientStyling"?: string;
|
|
49
|
+
/**
|
|
50
|
+
* Client custom styling via url
|
|
51
|
+
*/
|
|
52
|
+
"clientStylingUrl"?: string;
|
|
53
|
+
/**
|
|
54
|
+
* Description content as HTML
|
|
55
|
+
*/
|
|
56
|
+
"desc": string;
|
|
57
|
+
/**
|
|
58
|
+
* Description title
|
|
59
|
+
*/
|
|
60
|
+
"descTitle": string;
|
|
61
|
+
/**
|
|
62
|
+
* Use event to get data
|
|
63
|
+
*/
|
|
64
|
+
"useEvent"?: boolean;
|
|
65
|
+
}
|
|
66
|
+
interface IntrinsicElements {
|
|
67
|
+
"casino-tournament-desc": CasinoTournamentDesc;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
export { LocalJSX as JSX };
|
|
71
|
+
declare module "@stencil/core" {
|
|
72
|
+
export namespace JSX {
|
|
73
|
+
interface IntrinsicElements {
|
|
74
|
+
"casino-tournament-desc": LocalJSX.CasinoTournamentDesc & JSXBase.HTMLAttributes<HTMLCasinoTournamentDescElement>;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './components';
|