@everymatrix/helper-accordion 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-accordion.cjs.entry.js +133 -0
- package/dist/cjs/helper-accordion.cjs.js +19 -0
- package/dist/cjs/index-ed89de9c.js +1191 -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 +101 -0
- package/dist/collection/components/helper-accordion/helper-accordion.js +353 -0
- package/dist/collection/index.js +1 -0
- package/dist/collection/utils/locale.utils.js +23 -0
- package/dist/collection/utils/utils.js +3 -0
- package/dist/components/helper-accordion.d.ts +11 -0
- package/dist/components/helper-accordion.js +162 -0
- package/dist/components/index.d.ts +26 -0
- package/dist/components/index.js +1 -0
- package/dist/esm/helper-accordion.entry.js +129 -0
- package/dist/esm/helper-accordion.js +17 -0
- package/dist/esm/index-a87a3869.js +1165 -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-a199c923.entry.js +1 -0
- package/dist/helper-accordion/p-a8ce3eea.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-accordion/.stencil/packages/helper-accordion/stencil.config.d.ts +2 -0
- package/dist/types/components/helper-accordion/helper-accordion.d.ts +65 -0
- package/dist/types/components.d.ts +137 -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 +2 -3
- package/LICENSE +0 -21
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { EventEmitter } from '../../stencil-public-runtime';
|
|
2
|
+
export declare class Accordion {
|
|
3
|
+
/**
|
|
4
|
+
* Flag for ticket history
|
|
5
|
+
*/
|
|
6
|
+
ticketHistoryFlag: boolean;
|
|
7
|
+
/**
|
|
8
|
+
* Title (top header)
|
|
9
|
+
*/
|
|
10
|
+
headerTitle: string;
|
|
11
|
+
/**
|
|
12
|
+
* SubTitle (top header)
|
|
13
|
+
*/
|
|
14
|
+
headerSubtitle: string;
|
|
15
|
+
/**
|
|
16
|
+
* Description
|
|
17
|
+
*/
|
|
18
|
+
description: string;
|
|
19
|
+
/**
|
|
20
|
+
* Enables footer content
|
|
21
|
+
*/
|
|
22
|
+
footer: boolean;
|
|
23
|
+
/**
|
|
24
|
+
* Enables footer button for tab deletion
|
|
25
|
+
*/
|
|
26
|
+
deleteTab: boolean;
|
|
27
|
+
/**
|
|
28
|
+
* Activates postMessages as events for actions from the widget
|
|
29
|
+
*/
|
|
30
|
+
postMessage: boolean;
|
|
31
|
+
/**
|
|
32
|
+
* Name of the event emitter by the action button
|
|
33
|
+
*/
|
|
34
|
+
eventName: string;
|
|
35
|
+
/**
|
|
36
|
+
* Collapsed
|
|
37
|
+
*/
|
|
38
|
+
collapsed: boolean;
|
|
39
|
+
/**
|
|
40
|
+
* Language
|
|
41
|
+
*/
|
|
42
|
+
language: string;
|
|
43
|
+
/**
|
|
44
|
+
* Client custom styling via string
|
|
45
|
+
*/
|
|
46
|
+
clientStyling: string;
|
|
47
|
+
/**
|
|
48
|
+
* Client custom styling via url content
|
|
49
|
+
*/
|
|
50
|
+
clientStylingUrlContent: string;
|
|
51
|
+
showContent: boolean;
|
|
52
|
+
private limitStylingAppends;
|
|
53
|
+
private stylingContainer;
|
|
54
|
+
/**
|
|
55
|
+
* Action event
|
|
56
|
+
*/
|
|
57
|
+
accordionEvent: EventEmitter<any>;
|
|
58
|
+
connectedCallback(): void;
|
|
59
|
+
componentDidRender(): void;
|
|
60
|
+
toggleContent(): void;
|
|
61
|
+
deleteAction(): void;
|
|
62
|
+
setClientStyling: () => void;
|
|
63
|
+
setClientStylingURL: () => void;
|
|
64
|
+
render(): void;
|
|
65
|
+
}
|
|
@@ -0,0 +1,137 @@
|
|
|
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
|
+
* Client custom styling via string
|
|
12
|
+
*/
|
|
13
|
+
"clientStyling": string;
|
|
14
|
+
/**
|
|
15
|
+
* Client custom styling via url content
|
|
16
|
+
*/
|
|
17
|
+
"clientStylingUrlContent": string;
|
|
18
|
+
/**
|
|
19
|
+
* Collapsed
|
|
20
|
+
*/
|
|
21
|
+
"collapsed": boolean;
|
|
22
|
+
/**
|
|
23
|
+
* Enables footer button for tab deletion
|
|
24
|
+
*/
|
|
25
|
+
"deleteTab": boolean;
|
|
26
|
+
/**
|
|
27
|
+
* Description
|
|
28
|
+
*/
|
|
29
|
+
"description": string;
|
|
30
|
+
/**
|
|
31
|
+
* Name of the event emitter by the action button
|
|
32
|
+
*/
|
|
33
|
+
"eventName": string;
|
|
34
|
+
/**
|
|
35
|
+
* Enables footer content
|
|
36
|
+
*/
|
|
37
|
+
"footer": boolean;
|
|
38
|
+
/**
|
|
39
|
+
* SubTitle (top header)
|
|
40
|
+
*/
|
|
41
|
+
"headerSubtitle": string;
|
|
42
|
+
/**
|
|
43
|
+
* Title (top header)
|
|
44
|
+
*/
|
|
45
|
+
"headerTitle": string;
|
|
46
|
+
/**
|
|
47
|
+
* Language
|
|
48
|
+
*/
|
|
49
|
+
"language": string;
|
|
50
|
+
/**
|
|
51
|
+
* Activates postMessages as events for actions from the widget
|
|
52
|
+
*/
|
|
53
|
+
"postMessage": boolean;
|
|
54
|
+
/**
|
|
55
|
+
* Flag for ticket history
|
|
56
|
+
*/
|
|
57
|
+
"ticketHistoryFlag": boolean;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
declare global {
|
|
61
|
+
interface HTMLHelperAccordionElement extends Components.HelperAccordion, HTMLStencilElement {
|
|
62
|
+
}
|
|
63
|
+
var HTMLHelperAccordionElement: {
|
|
64
|
+
prototype: HTMLHelperAccordionElement;
|
|
65
|
+
new (): HTMLHelperAccordionElement;
|
|
66
|
+
};
|
|
67
|
+
interface HTMLElementTagNameMap {
|
|
68
|
+
"helper-accordion": HTMLHelperAccordionElement;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
declare namespace LocalJSX {
|
|
72
|
+
interface HelperAccordion {
|
|
73
|
+
/**
|
|
74
|
+
* Client custom styling via string
|
|
75
|
+
*/
|
|
76
|
+
"clientStyling"?: string;
|
|
77
|
+
/**
|
|
78
|
+
* Client custom styling via url content
|
|
79
|
+
*/
|
|
80
|
+
"clientStylingUrlContent"?: string;
|
|
81
|
+
/**
|
|
82
|
+
* Collapsed
|
|
83
|
+
*/
|
|
84
|
+
"collapsed"?: boolean;
|
|
85
|
+
/**
|
|
86
|
+
* Enables footer button for tab deletion
|
|
87
|
+
*/
|
|
88
|
+
"deleteTab"?: boolean;
|
|
89
|
+
/**
|
|
90
|
+
* Description
|
|
91
|
+
*/
|
|
92
|
+
"description"?: string;
|
|
93
|
+
/**
|
|
94
|
+
* Name of the event emitter by the action button
|
|
95
|
+
*/
|
|
96
|
+
"eventName"?: string;
|
|
97
|
+
/**
|
|
98
|
+
* Enables footer content
|
|
99
|
+
*/
|
|
100
|
+
"footer"?: boolean;
|
|
101
|
+
/**
|
|
102
|
+
* SubTitle (top header)
|
|
103
|
+
*/
|
|
104
|
+
"headerSubtitle"?: string;
|
|
105
|
+
/**
|
|
106
|
+
* Title (top header)
|
|
107
|
+
*/
|
|
108
|
+
"headerTitle"?: string;
|
|
109
|
+
/**
|
|
110
|
+
* Language
|
|
111
|
+
*/
|
|
112
|
+
"language"?: string;
|
|
113
|
+
/**
|
|
114
|
+
* Action event
|
|
115
|
+
*/
|
|
116
|
+
"onHelperAccordionAction"?: (event: CustomEvent<any>) => void;
|
|
117
|
+
/**
|
|
118
|
+
* Activates postMessages as events for actions from the widget
|
|
119
|
+
*/
|
|
120
|
+
"postMessage"?: boolean;
|
|
121
|
+
/**
|
|
122
|
+
* Flag for ticket history
|
|
123
|
+
*/
|
|
124
|
+
"ticketHistoryFlag"?: boolean;
|
|
125
|
+
}
|
|
126
|
+
interface IntrinsicElements {
|
|
127
|
+
"helper-accordion": HelperAccordion;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
export { LocalJSX as JSX };
|
|
131
|
+
declare module "@stencil/core" {
|
|
132
|
+
export namespace JSX {
|
|
133
|
+
interface IntrinsicElements {
|
|
134
|
+
"helper-accordion": LocalJSX.HelperAccordion & JSXBase.HTMLAttributes<HTMLHelperAccordionElement>;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './components';
|