@everymatrix/helper-modal 1.32.4 → 1.33.0
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/cjs/helper-modal.cjs.entry.js +76 -0
- package/dist/cjs/helper-modal.cjs.js +19 -0
- package/dist/cjs/index-c6e4ec44.js +1181 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +21 -0
- package/dist/collection/collection-manifest.json +12 -0
- package/dist/collection/components/helper-modal/helper-modal.css +68 -0
- package/dist/collection/components/helper-modal/helper-modal.js +156 -0
- package/dist/collection/index.js +1 -0
- package/dist/collection/utils/utils.js +30 -0
- package/dist/components/helper-modal.d.ts +11 -0
- package/dist/components/helper-modal.js +96 -0
- package/dist/components/index.d.ts +26 -0
- package/dist/components/index.js +1 -0
- package/dist/esm/helper-modal.entry.js +72 -0
- package/dist/esm/helper-modal.js +17 -0
- package/dist/esm/index-4d594e7d.js +1155 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +17 -0
- package/dist/esm/polyfills/core-js.js +11 -0
- package/dist/esm/polyfills/css-shim.js +1 -0
- package/dist/esm/polyfills/dom.js +79 -0
- package/dist/esm/polyfills/es5-html-element.js +1 -0
- package/dist/esm/polyfills/index.js +34 -0
- package/dist/esm/polyfills/system.js +6 -0
- package/dist/helper-modal/helper-modal.esm.js +1 -0
- package/dist/helper-modal/index.esm.js +0 -0
- package/dist/helper-modal/p-1c2c3fd8.js +1 -0
- package/dist/helper-modal/p-66f1c138.entry.js +1 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/stencil.config.js +22 -0
- package/dist/types/Users/adrian.pripon/Documents/Work/widgets-stencil/packages/helper-modal/.stencil/packages/helper-modal/stencil.config.d.ts +2 -0
- package/dist/types/components/helper-modal/helper-modal.d.ts +30 -0
- package/dist/types/components.d.ts +73 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/stencil-public-runtime.d.ts +1565 -0
- package/dist/types/utils/utils.d.ts +14 -0
- package/loader/cdn.js +3 -0
- package/loader/index.cjs.js +3 -0
- package/loader/index.d.ts +12 -0
- package/loader/index.es2017.js +3 -0
- package/loader/index.js +4 -0
- package/loader/package.json +10 -0
- package/package.json +2 -3
- package/LICENSE +0 -21
|
@@ -0,0 +1,73 @@
|
|
|
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 HelperModal {
|
|
10
|
+
/**
|
|
11
|
+
* Client custom styling via string
|
|
12
|
+
*/
|
|
13
|
+
"clientStyling": string;
|
|
14
|
+
/**
|
|
15
|
+
* Client custom styling via url content
|
|
16
|
+
*/
|
|
17
|
+
"clientStylingUrlContent": string;
|
|
18
|
+
/**
|
|
19
|
+
* Modal title
|
|
20
|
+
*/
|
|
21
|
+
"titleModal": string;
|
|
22
|
+
/**
|
|
23
|
+
* Toggles if the helper is visible or not
|
|
24
|
+
*/
|
|
25
|
+
"visible": boolean;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
declare global {
|
|
29
|
+
interface HTMLHelperModalElement extends Components.HelperModal, HTMLStencilElement {
|
|
30
|
+
}
|
|
31
|
+
var HTMLHelperModalElement: {
|
|
32
|
+
prototype: HTMLHelperModalElement;
|
|
33
|
+
new (): HTMLHelperModalElement;
|
|
34
|
+
};
|
|
35
|
+
interface HTMLElementTagNameMap {
|
|
36
|
+
"helper-modal": HTMLHelperModalElement;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
declare namespace LocalJSX {
|
|
40
|
+
interface HelperModal {
|
|
41
|
+
/**
|
|
42
|
+
* Client custom styling via string
|
|
43
|
+
*/
|
|
44
|
+
"clientStyling"?: string;
|
|
45
|
+
/**
|
|
46
|
+
* Client custom styling via url content
|
|
47
|
+
*/
|
|
48
|
+
"clientStylingUrlContent"?: string;
|
|
49
|
+
/**
|
|
50
|
+
* The event triggered when the modal is closed
|
|
51
|
+
*/
|
|
52
|
+
"onModalCloseEvent"?: (event: CustomEvent<any>) => void;
|
|
53
|
+
/**
|
|
54
|
+
* Modal title
|
|
55
|
+
*/
|
|
56
|
+
"titleModal"?: string;
|
|
57
|
+
/**
|
|
58
|
+
* Toggles if the helper is visible or not
|
|
59
|
+
*/
|
|
60
|
+
"visible"?: boolean;
|
|
61
|
+
}
|
|
62
|
+
interface IntrinsicElements {
|
|
63
|
+
"helper-modal": HelperModal;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
export { LocalJSX as JSX };
|
|
67
|
+
declare module "@stencil/core" {
|
|
68
|
+
export namespace JSX {
|
|
69
|
+
interface IntrinsicElements {
|
|
70
|
+
"helper-modal": LocalJSX.HelperModal & JSXBase.HTMLAttributes<HTMLHelperModalElement>;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './components';
|