@everymatrix/helper-accordion 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-accordion.cjs.entry.js +88 -0
- package/dist/cjs/helper-accordion.cjs.js +19 -0
- package/dist/cjs/index-cfe84820.js +1165 -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-accordion/helper-accordion.css +66 -0
- package/dist/collection/components/helper-accordion/helper-accordion.js +262 -0
- package/dist/collection/index.js +1 -0
- package/dist/collection/utils/locale.utils.js +14 -0
- package/dist/collection/utils/utils.js +3 -0
- package/dist/components/helper-accordion.d.ts +11 -0
- package/dist/components/helper-accordion.js +113 -0
- package/dist/components/index.d.ts +22 -0
- package/dist/components/index.js +2 -0
- package/dist/esm/helper-accordion.entry.js +84 -0
- package/dist/esm/helper-accordion.js +17 -0
- package/dist/esm/index-3e7659e3.js +1139 -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-accordion/helper-accordion.esm.js +1 -0
- package/dist/helper-accordion/index.esm.js +0 -0
- package/dist/helper-accordion/p-1bc0026d.js +2 -0
- package/dist/helper-accordion/p-9e8e36f2.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-accordion/.stencil/packages/helper-accordion/stencil.config.d.ts +2 -0
- package/dist/types/components/helper-accordion/helper-accordion.d.ts +48 -0
- package/dist/types/components.d.ts +117 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/stencil-public-runtime.d.ts +1565 -0
- package/dist/types/utils/locale.utils.d.ts +1 -0
- package/dist/types/utils/utils.d.ts +1 -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,117 @@
|
|
|
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 HelperAccordion {
|
|
10
|
+
/**
|
|
11
|
+
* Collapsed
|
|
12
|
+
*/
|
|
13
|
+
"collapsed": boolean;
|
|
14
|
+
/**
|
|
15
|
+
* Enables footer button for tab deletion
|
|
16
|
+
*/
|
|
17
|
+
"deleteTab": boolean;
|
|
18
|
+
/**
|
|
19
|
+
* Description
|
|
20
|
+
*/
|
|
21
|
+
"description": string;
|
|
22
|
+
/**
|
|
23
|
+
* Name of the event emitter by the action button
|
|
24
|
+
*/
|
|
25
|
+
"eventName": string;
|
|
26
|
+
/**
|
|
27
|
+
* Enables footer content
|
|
28
|
+
*/
|
|
29
|
+
"footer": boolean;
|
|
30
|
+
/**
|
|
31
|
+
* SubTitle (top header)
|
|
32
|
+
*/
|
|
33
|
+
"headerSubtitle": string;
|
|
34
|
+
/**
|
|
35
|
+
* Title (top header)
|
|
36
|
+
*/
|
|
37
|
+
"headerTitle": string;
|
|
38
|
+
/**
|
|
39
|
+
* Language
|
|
40
|
+
*/
|
|
41
|
+
"language": string;
|
|
42
|
+
/**
|
|
43
|
+
* Activates postMessages as events for actions from the widget
|
|
44
|
+
*/
|
|
45
|
+
"postMessage": boolean;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
export interface HelperAccordionCustomEvent<T> extends CustomEvent<T> {
|
|
49
|
+
detail: T;
|
|
50
|
+
target: HTMLHelperAccordionElement;
|
|
51
|
+
}
|
|
52
|
+
declare global {
|
|
53
|
+
interface HTMLHelperAccordionElement extends Components.HelperAccordion, HTMLStencilElement {
|
|
54
|
+
}
|
|
55
|
+
var HTMLHelperAccordionElement: {
|
|
56
|
+
prototype: HTMLHelperAccordionElement;
|
|
57
|
+
new (): HTMLHelperAccordionElement;
|
|
58
|
+
};
|
|
59
|
+
interface HTMLElementTagNameMap {
|
|
60
|
+
"helper-accordion": HTMLHelperAccordionElement;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
declare namespace LocalJSX {
|
|
64
|
+
interface HelperAccordion {
|
|
65
|
+
/**
|
|
66
|
+
* Collapsed
|
|
67
|
+
*/
|
|
68
|
+
"collapsed"?: boolean;
|
|
69
|
+
/**
|
|
70
|
+
* Enables footer button for tab deletion
|
|
71
|
+
*/
|
|
72
|
+
"deleteTab"?: boolean;
|
|
73
|
+
/**
|
|
74
|
+
* Description
|
|
75
|
+
*/
|
|
76
|
+
"description"?: string;
|
|
77
|
+
/**
|
|
78
|
+
* Name of the event emitter by the action button
|
|
79
|
+
*/
|
|
80
|
+
"eventName"?: string;
|
|
81
|
+
/**
|
|
82
|
+
* Enables footer content
|
|
83
|
+
*/
|
|
84
|
+
"footer"?: boolean;
|
|
85
|
+
/**
|
|
86
|
+
* SubTitle (top header)
|
|
87
|
+
*/
|
|
88
|
+
"headerSubtitle"?: string;
|
|
89
|
+
/**
|
|
90
|
+
* Title (top header)
|
|
91
|
+
*/
|
|
92
|
+
"headerTitle"?: string;
|
|
93
|
+
/**
|
|
94
|
+
* Language
|
|
95
|
+
*/
|
|
96
|
+
"language"?: string;
|
|
97
|
+
/**
|
|
98
|
+
* Action event
|
|
99
|
+
*/
|
|
100
|
+
"onHelperAccordionAction"?: (event: HelperAccordionCustomEvent<any>) => void;
|
|
101
|
+
/**
|
|
102
|
+
* Activates postMessages as events for actions from the widget
|
|
103
|
+
*/
|
|
104
|
+
"postMessage"?: boolean;
|
|
105
|
+
}
|
|
106
|
+
interface IntrinsicElements {
|
|
107
|
+
"helper-accordion": HelperAccordion;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
export { LocalJSX as JSX };
|
|
111
|
+
declare module "@stencil/core" {
|
|
112
|
+
export namespace JSX {
|
|
113
|
+
interface IntrinsicElements {
|
|
114
|
+
"helper-accordion": LocalJSX.HelperAccordion & JSXBase.HTMLAttributes<HTMLHelperAccordionElement>;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './components';
|