@everymatrix/helper-modal 0.0.3
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 +44 -0
- package/dist/cjs/helper-modal.cjs.js +19 -0
- package/dist/cjs/index-c35b2646.js +1155 -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 +85 -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 +61 -0
- package/dist/components/index.d.ts +22 -0
- package/dist/components/index.js +2 -0
- package/dist/esm/helper-modal.entry.js +40 -0
- package/dist/esm/helper-modal.js +17 -0
- package/dist/esm/index-3e9d116d.js +1129 -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-179fe522.js +2 -0
- package/dist/helper-modal/p-a3a00dfb.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/user/workspace/everymatrix/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 +17 -0
- package/dist/types/components.d.ts +61 -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 +19 -0
|
@@ -0,0 +1,61 @@
|
|
|
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
|
+
* Modal title
|
|
12
|
+
*/
|
|
13
|
+
"titleModal": string;
|
|
14
|
+
/**
|
|
15
|
+
* Toggles if the helper is visible or not
|
|
16
|
+
*/
|
|
17
|
+
"visible": boolean;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
export interface HelperModalCustomEvent<T> extends CustomEvent<T> {
|
|
21
|
+
detail: T;
|
|
22
|
+
target: HTMLHelperModalElement;
|
|
23
|
+
}
|
|
24
|
+
declare global {
|
|
25
|
+
interface HTMLHelperModalElement extends Components.HelperModal, HTMLStencilElement {
|
|
26
|
+
}
|
|
27
|
+
var HTMLHelperModalElement: {
|
|
28
|
+
prototype: HTMLHelperModalElement;
|
|
29
|
+
new (): HTMLHelperModalElement;
|
|
30
|
+
};
|
|
31
|
+
interface HTMLElementTagNameMap {
|
|
32
|
+
"helper-modal": HTMLHelperModalElement;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
declare namespace LocalJSX {
|
|
36
|
+
interface HelperModal {
|
|
37
|
+
/**
|
|
38
|
+
* The event triggered when the modal is closed
|
|
39
|
+
*/
|
|
40
|
+
"onModalCloseEvent"?: (event: HelperModalCustomEvent<any>) => void;
|
|
41
|
+
/**
|
|
42
|
+
* Modal title
|
|
43
|
+
*/
|
|
44
|
+
"titleModal"?: string;
|
|
45
|
+
/**
|
|
46
|
+
* Toggles if the helper is visible or not
|
|
47
|
+
*/
|
|
48
|
+
"visible"?: boolean;
|
|
49
|
+
}
|
|
50
|
+
interface IntrinsicElements {
|
|
51
|
+
"helper-modal": HelperModal;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
export { LocalJSX as JSX };
|
|
55
|
+
declare module "@stencil/core" {
|
|
56
|
+
export namespace JSX {
|
|
57
|
+
interface IntrinsicElements {
|
|
58
|
+
"helper-modal": LocalJSX.HelperModal & JSXBase.HTMLAttributes<HTMLHelperModalElement>;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './components';
|