@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.
Files changed (45) hide show
  1. package/dist/cjs/helper-modal.cjs.entry.js +44 -0
  2. package/dist/cjs/helper-modal.cjs.js +19 -0
  3. package/dist/cjs/index-c35b2646.js +1155 -0
  4. package/dist/cjs/index.cjs.js +2 -0
  5. package/dist/cjs/loader.cjs.js +21 -0
  6. package/dist/collection/collection-manifest.json +12 -0
  7. package/dist/collection/components/helper-modal/helper-modal.css +68 -0
  8. package/dist/collection/components/helper-modal/helper-modal.js +85 -0
  9. package/dist/collection/index.js +1 -0
  10. package/dist/collection/utils/utils.js +30 -0
  11. package/dist/components/helper-modal.d.ts +11 -0
  12. package/dist/components/helper-modal.js +61 -0
  13. package/dist/components/index.d.ts +22 -0
  14. package/dist/components/index.js +2 -0
  15. package/dist/esm/helper-modal.entry.js +40 -0
  16. package/dist/esm/helper-modal.js +17 -0
  17. package/dist/esm/index-3e9d116d.js +1129 -0
  18. package/dist/esm/index.js +1 -0
  19. package/dist/esm/loader.js +17 -0
  20. package/dist/esm/polyfills/core-js.js +11 -0
  21. package/dist/esm/polyfills/css-shim.js +1 -0
  22. package/dist/esm/polyfills/dom.js +79 -0
  23. package/dist/esm/polyfills/es5-html-element.js +1 -0
  24. package/dist/esm/polyfills/index.js +34 -0
  25. package/dist/esm/polyfills/system.js +6 -0
  26. package/dist/helper-modal/helper-modal.esm.js +1 -0
  27. package/dist/helper-modal/index.esm.js +0 -0
  28. package/dist/helper-modal/p-179fe522.js +2 -0
  29. package/dist/helper-modal/p-a3a00dfb.entry.js +1 -0
  30. package/dist/index.cjs.js +1 -0
  31. package/dist/index.js +1 -0
  32. package/dist/stencil.config.js +22 -0
  33. package/dist/types/Users/user/workspace/everymatrix/widgets-stencil/packages/helper-modal/.stencil/packages/helper-modal/stencil.config.d.ts +2 -0
  34. package/dist/types/components/helper-modal/helper-modal.d.ts +17 -0
  35. package/dist/types/components.d.ts +61 -0
  36. package/dist/types/index.d.ts +1 -0
  37. package/dist/types/stencil-public-runtime.d.ts +1565 -0
  38. package/dist/types/utils/utils.d.ts +14 -0
  39. package/loader/cdn.js +3 -0
  40. package/loader/index.cjs.js +3 -0
  41. package/loader/index.d.ts +12 -0
  42. package/loader/index.es2017.js +3 -0
  43. package/loader/index.js +4 -0
  44. package/loader/package.json +10 -0
  45. 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';