@everymatrix/helper-accordion 1.43.4 → 1.45.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/app-globals-3a1e7e63.js +5 -0
- package/dist/cjs/helper-accordion.cjs.entry.js +81 -115
- package/dist/cjs/helper-accordion.cjs.js +16 -10
- package/dist/cjs/index-a21d4625.js +1205 -0
- package/dist/cjs/loader.cjs.js +6 -12
- package/dist/collection/collection-manifest.json +3 -3
- package/dist/collection/components/helper-accordion/helper-accordion.js +315 -349
- package/dist/collection/components/helper-accordion/index.js +1 -0
- package/dist/collection/utils/locale.utils.js +17 -17
- package/dist/collection/utils/utils.js +1 -1
- package/dist/esm/app-globals-0f993ce5.js +3 -0
- package/dist/esm/helper-accordion.entry.js +81 -115
- package/dist/esm/helper-accordion.js +13 -10
- package/dist/esm/index-3a075c05.js +1178 -0
- package/dist/esm/loader.js +6 -12
- package/dist/helper-accordion/helper-accordion.esm.js +1 -1
- package/dist/helper-accordion/p-0ea524aa.js +2 -0
- package/dist/helper-accordion/p-9f0e8fda.entry.js +1 -0
- package/dist/helper-accordion/p-e1255160.js +1 -0
- package/dist/stencil.config.dev.js +17 -0
- package/dist/stencil.config.js +14 -19
- package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/helper-accordion/.stencil/packages/stencil/helper-accordion/stencil.config.d.ts +2 -0
- package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/helper-accordion/.stencil/packages/stencil/helper-accordion/stencil.config.dev.d.ts +2 -0
- package/dist/types/components/helper-accordion/helper-accordion.d.ts +62 -62
- package/dist/types/components/helper-accordion/index.d.ts +1 -0
- package/dist/types/components.d.ts +16 -1
- package/dist/types/stencil-public-runtime.d.ts +142 -33
- package/loader/cdn.js +1 -3
- package/loader/index.cjs.js +1 -3
- package/loader/index.d.ts +13 -1
- package/loader/index.es2017.js +1 -3
- package/loader/index.js +1 -3
- package/loader/package.json +1 -0
- package/package.json +8 -1
- package/dist/cjs/index-ed89de9c.js +0 -1191
- package/dist/components/helper-accordion.d.ts +0 -11
- package/dist/components/helper-accordion.js +0 -161
- package/dist/components/index.d.ts +0 -26
- package/dist/components/index.js +0 -1
- package/dist/esm/index-a87a3869.js +0 -1165
- package/dist/esm/polyfills/core-js.js +0 -11
- package/dist/esm/polyfills/css-shim.js +0 -1
- package/dist/esm/polyfills/dom.js +0 -79
- package/dist/esm/polyfills/es5-html-element.js +0 -1
- package/dist/esm/polyfills/index.js +0 -34
- package/dist/esm/polyfills/system.js +0 -6
- package/dist/helper-accordion/p-7391c647.entry.js +0 -1
- package/dist/helper-accordion/p-a8ce3eea.js +0 -1
- package/dist/types/Users/adrian.pripon/Documents/Work/widgets-stencil/packages/helper-accordion/.stencil/packages/helper-accordion/stencil.config.d.ts +0 -2
|
@@ -1,353 +1,319 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { translate } from
|
|
3
|
-
export class
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
*/
|
|
32
|
-
this.postMessage = false;
|
|
33
|
-
/**
|
|
34
|
-
* Name of the event emitter by the action button
|
|
35
|
-
*/
|
|
36
|
-
this.eventName = 'helperAccordionAction';
|
|
37
|
-
/**
|
|
38
|
-
* Collapsed
|
|
39
|
-
*/
|
|
40
|
-
this.collapsed = true;
|
|
41
|
-
/**
|
|
42
|
-
* Language
|
|
43
|
-
*/
|
|
44
|
-
this.language = 'en';
|
|
45
|
-
/**
|
|
46
|
-
* Client custom styling via string
|
|
47
|
-
*/
|
|
48
|
-
this.clientStyling = '';
|
|
49
|
-
/**
|
|
50
|
-
* Client custom styling via url content
|
|
51
|
-
*/
|
|
52
|
-
this.clientStylingUrlContent = '';
|
|
53
|
-
this.limitStylingAppends = false;
|
|
54
|
-
this.setClientStyling = () => {
|
|
55
|
-
let sheet = document.createElement('style');
|
|
56
|
-
sheet.innerHTML = this.clientStyling;
|
|
57
|
-
this.stylingContainer.prepend(sheet);
|
|
58
|
-
};
|
|
59
|
-
this.setClientStylingURL = () => {
|
|
60
|
-
let cssFile = document.createElement('style');
|
|
61
|
-
setTimeout(() => {
|
|
62
|
-
cssFile.innerHTML = this.clientStylingUrlContent;
|
|
63
|
-
this.stylingContainer.prepend(cssFile);
|
|
64
|
-
}, 1);
|
|
65
|
-
};
|
|
66
|
-
}
|
|
67
|
-
// @TODO fix the `any` type :)
|
|
68
|
-
connectedCallback() {
|
|
69
|
-
this.showContent = !this.collapsed;
|
|
70
|
-
}
|
|
71
|
-
componentDidRender() {
|
|
72
|
-
// start custom styling area
|
|
73
|
-
if (!this.limitStylingAppends && this.stylingContainer) {
|
|
74
|
-
if (this.clientStyling)
|
|
75
|
-
this.setClientStyling();
|
|
76
|
-
if (this.clientStylingUrlContent)
|
|
77
|
-
this.setClientStylingURL();
|
|
78
|
-
this.limitStylingAppends = true;
|
|
1
|
+
import { h } from "@stencil/core";
|
|
2
|
+
import { translate } from "../../utils/locale.utils";
|
|
3
|
+
export class HelperAccordion {
|
|
4
|
+
constructor() {
|
|
5
|
+
this.setClientStyling = () => {
|
|
6
|
+
let sheet = document.createElement('style');
|
|
7
|
+
sheet.innerHTML = this.clientStyling;
|
|
8
|
+
this.stylingContainer.prepend(sheet);
|
|
9
|
+
};
|
|
10
|
+
this.setClientStylingURL = () => {
|
|
11
|
+
let cssFile = document.createElement('style');
|
|
12
|
+
setTimeout(() => {
|
|
13
|
+
cssFile.innerHTML = this.clientStylingUrlContent;
|
|
14
|
+
this.stylingContainer.prepend(cssFile);
|
|
15
|
+
}, 1);
|
|
16
|
+
};
|
|
17
|
+
this.ticketHistoryFlag = false;
|
|
18
|
+
this.headerTitle = '';
|
|
19
|
+
this.headerSubtitle = '';
|
|
20
|
+
this.description = '';
|
|
21
|
+
this.footer = false;
|
|
22
|
+
this.deleteTab = false;
|
|
23
|
+
this.postMessage = false;
|
|
24
|
+
this.eventName = 'helperAccordionAction';
|
|
25
|
+
this.collapsed = true;
|
|
26
|
+
this.language = 'en';
|
|
27
|
+
this.clientStyling = '';
|
|
28
|
+
this.clientStylingUrlContent = '';
|
|
29
|
+
this.showContent = undefined;
|
|
30
|
+
this.limitStylingAppends = false;
|
|
79
31
|
}
|
|
80
|
-
//
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
this.showContent = !this.showContent;
|
|
84
|
-
}
|
|
85
|
-
deleteAction() {
|
|
86
|
-
if (this.postMessage) {
|
|
87
|
-
// @TODO maybe change the name type, this one sucks
|
|
88
|
-
window.postMessage({ type: this.eventName }, window.location.href);
|
|
32
|
+
// @TODO fix the `any` type :)
|
|
33
|
+
connectedCallback() {
|
|
34
|
+
this.showContent = !this.collapsed;
|
|
89
35
|
}
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
36
|
+
componentDidRender() {
|
|
37
|
+
// start custom styling area
|
|
38
|
+
if (!this.limitStylingAppends && this.stylingContainer) {
|
|
39
|
+
if (this.clientStyling)
|
|
40
|
+
this.setClientStyling();
|
|
41
|
+
if (this.clientStylingUrlContent)
|
|
42
|
+
this.setClientStylingURL();
|
|
43
|
+
this.limitStylingAppends = true;
|
|
44
|
+
}
|
|
45
|
+
// end custom styling area
|
|
46
|
+
}
|
|
47
|
+
toggleContent() {
|
|
48
|
+
this.showContent = !this.showContent;
|
|
49
|
+
}
|
|
50
|
+
deleteAction() {
|
|
51
|
+
if (this.postMessage) {
|
|
52
|
+
// @TODO maybe change the name type, this one sucks
|
|
53
|
+
window.postMessage({ type: this.eventName }, window.location.href);
|
|
54
|
+
}
|
|
55
|
+
this.accordionEvent.emit();
|
|
56
|
+
}
|
|
57
|
+
render() {
|
|
58
|
+
return (h("div", { key: 'ad26faefd6e3dd089171c7e2bff13faa5a26d972', class: "Wrapper", ref: el => this.stylingContainer = el }, h("div", { key: 'bb7045653ec12a2526029589744f7ef014ec6a6a', class: this.ticketHistoryFlag === true ? 'HeaderTicketHistory' : 'Header', onClick: () => this.toggleContent() }, h("p", { key: 'ae30943582063e368e942124d8d5acadc1732629', class: "Title" }, this.headerTitle), h("p", { key: '7c35076cb768de784177988900c61fe40a71594c', class: "Subtitle" }, this.headerSubtitle), h("p", { key: 'daff2b456a427f45b00efc32ba33a68cdc2228f0', class: "Subtitle Description" }, this.description), h("span", { key: '0c4f942642da6e8b1ac3d2aeac46034963965d8f', class: "Expand" }, this.showContent ? '<' : '>')), this.showContent &&
|
|
59
|
+
h("div", { key: 'c688ab7cc629a3974b905a2fdc43063e996a3b90' }, h("div", { key: 'aaa3ad7d9f1503b8e1baaa2c756376a580ffe261', class: "Content" }, h("slot", { key: '8c5c8ff70857da9414c7284b052a3fbc5f503f4a', name: 'accordionContent' }), this.footer && this.showContent &&
|
|
60
|
+
h("div", { key: '917191f55a45647d708a5e3ff5e188c7e565a0c0' }, this.deleteTab &&
|
|
61
|
+
h("span", { key: 'e7fdd5b4f18cacaceda206b36ce9576cc3fc1472', class: "ActionButton", onClick: () => this.deleteAction() }, translate('deleteTicket', this.language)))))));
|
|
62
|
+
}
|
|
63
|
+
static get is() { return "helper-accordion"; }
|
|
64
|
+
static get encapsulation() { return "shadow"; }
|
|
65
|
+
static get originalStyleUrls() {
|
|
66
|
+
return {
|
|
67
|
+
"$": ["helper-accordion.scss"]
|
|
68
|
+
};
|
|
69
|
+
}
|
|
70
|
+
static get styleUrls() {
|
|
71
|
+
return {
|
|
72
|
+
"$": ["helper-accordion.css"]
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
static get properties() {
|
|
76
|
+
return {
|
|
77
|
+
"ticketHistoryFlag": {
|
|
78
|
+
"type": "boolean",
|
|
79
|
+
"mutable": false,
|
|
80
|
+
"complexType": {
|
|
81
|
+
"original": "boolean",
|
|
82
|
+
"resolved": "boolean",
|
|
83
|
+
"references": {}
|
|
84
|
+
},
|
|
85
|
+
"required": false,
|
|
86
|
+
"optional": false,
|
|
87
|
+
"docs": {
|
|
88
|
+
"tags": [],
|
|
89
|
+
"text": "Flag for ticket history"
|
|
90
|
+
},
|
|
91
|
+
"attribute": "ticket-history-flag",
|
|
92
|
+
"reflect": true,
|
|
93
|
+
"defaultValue": "false"
|
|
94
|
+
},
|
|
95
|
+
"headerTitle": {
|
|
96
|
+
"type": "string",
|
|
97
|
+
"mutable": false,
|
|
98
|
+
"complexType": {
|
|
99
|
+
"original": "string",
|
|
100
|
+
"resolved": "string",
|
|
101
|
+
"references": {}
|
|
102
|
+
},
|
|
103
|
+
"required": false,
|
|
104
|
+
"optional": false,
|
|
105
|
+
"docs": {
|
|
106
|
+
"tags": [],
|
|
107
|
+
"text": "Title (top header)"
|
|
108
|
+
},
|
|
109
|
+
"attribute": "header-title",
|
|
110
|
+
"reflect": true,
|
|
111
|
+
"defaultValue": "''"
|
|
112
|
+
},
|
|
113
|
+
"headerSubtitle": {
|
|
114
|
+
"type": "string",
|
|
115
|
+
"mutable": false,
|
|
116
|
+
"complexType": {
|
|
117
|
+
"original": "string",
|
|
118
|
+
"resolved": "string",
|
|
119
|
+
"references": {}
|
|
120
|
+
},
|
|
121
|
+
"required": false,
|
|
122
|
+
"optional": false,
|
|
123
|
+
"docs": {
|
|
124
|
+
"tags": [],
|
|
125
|
+
"text": "SubTitle (top header)"
|
|
126
|
+
},
|
|
127
|
+
"attribute": "header-subtitle",
|
|
128
|
+
"reflect": true,
|
|
129
|
+
"defaultValue": "''"
|
|
130
|
+
},
|
|
131
|
+
"description": {
|
|
132
|
+
"type": "string",
|
|
133
|
+
"mutable": false,
|
|
134
|
+
"complexType": {
|
|
135
|
+
"original": "string",
|
|
136
|
+
"resolved": "string",
|
|
137
|
+
"references": {}
|
|
138
|
+
},
|
|
139
|
+
"required": false,
|
|
140
|
+
"optional": false,
|
|
141
|
+
"docs": {
|
|
142
|
+
"tags": [],
|
|
143
|
+
"text": "Description"
|
|
144
|
+
},
|
|
145
|
+
"attribute": "description",
|
|
146
|
+
"reflect": true,
|
|
147
|
+
"defaultValue": "''"
|
|
148
|
+
},
|
|
149
|
+
"footer": {
|
|
150
|
+
"type": "boolean",
|
|
151
|
+
"mutable": false,
|
|
152
|
+
"complexType": {
|
|
153
|
+
"original": "boolean",
|
|
154
|
+
"resolved": "boolean",
|
|
155
|
+
"references": {}
|
|
156
|
+
},
|
|
157
|
+
"required": false,
|
|
158
|
+
"optional": false,
|
|
159
|
+
"docs": {
|
|
160
|
+
"tags": [],
|
|
161
|
+
"text": "Enables footer content"
|
|
162
|
+
},
|
|
163
|
+
"attribute": "footer",
|
|
164
|
+
"reflect": true,
|
|
165
|
+
"defaultValue": "false"
|
|
166
|
+
},
|
|
167
|
+
"deleteTab": {
|
|
168
|
+
"type": "boolean",
|
|
169
|
+
"mutable": false,
|
|
170
|
+
"complexType": {
|
|
171
|
+
"original": "boolean",
|
|
172
|
+
"resolved": "boolean",
|
|
173
|
+
"references": {}
|
|
174
|
+
},
|
|
175
|
+
"required": false,
|
|
176
|
+
"optional": false,
|
|
177
|
+
"docs": {
|
|
178
|
+
"tags": [],
|
|
179
|
+
"text": "Enables footer button for tab deletion"
|
|
180
|
+
},
|
|
181
|
+
"attribute": "delete-tab",
|
|
182
|
+
"reflect": true,
|
|
183
|
+
"defaultValue": "false"
|
|
184
|
+
},
|
|
185
|
+
"postMessage": {
|
|
186
|
+
"type": "boolean",
|
|
187
|
+
"mutable": false,
|
|
188
|
+
"complexType": {
|
|
189
|
+
"original": "boolean",
|
|
190
|
+
"resolved": "boolean",
|
|
191
|
+
"references": {}
|
|
192
|
+
},
|
|
193
|
+
"required": false,
|
|
194
|
+
"optional": false,
|
|
195
|
+
"docs": {
|
|
196
|
+
"tags": [],
|
|
197
|
+
"text": "Activates postMessages as events for actions from the widget"
|
|
198
|
+
},
|
|
199
|
+
"attribute": "post-message",
|
|
200
|
+
"reflect": true,
|
|
201
|
+
"defaultValue": "false"
|
|
202
|
+
},
|
|
203
|
+
"eventName": {
|
|
204
|
+
"type": "string",
|
|
205
|
+
"mutable": false,
|
|
206
|
+
"complexType": {
|
|
207
|
+
"original": "string",
|
|
208
|
+
"resolved": "string",
|
|
209
|
+
"references": {}
|
|
210
|
+
},
|
|
211
|
+
"required": false,
|
|
212
|
+
"optional": false,
|
|
213
|
+
"docs": {
|
|
214
|
+
"tags": [],
|
|
215
|
+
"text": "Name of the event emitter by the action button"
|
|
216
|
+
},
|
|
217
|
+
"attribute": "event-name",
|
|
218
|
+
"reflect": true,
|
|
219
|
+
"defaultValue": "'helperAccordionAction'"
|
|
220
|
+
},
|
|
221
|
+
"collapsed": {
|
|
222
|
+
"type": "boolean",
|
|
223
|
+
"mutable": false,
|
|
224
|
+
"complexType": {
|
|
225
|
+
"original": "boolean",
|
|
226
|
+
"resolved": "boolean",
|
|
227
|
+
"references": {}
|
|
228
|
+
},
|
|
229
|
+
"required": false,
|
|
230
|
+
"optional": false,
|
|
231
|
+
"docs": {
|
|
232
|
+
"tags": [],
|
|
233
|
+
"text": "Collapsed"
|
|
234
|
+
},
|
|
235
|
+
"attribute": "collapsed",
|
|
236
|
+
"reflect": true,
|
|
237
|
+
"defaultValue": "true"
|
|
238
|
+
},
|
|
239
|
+
"language": {
|
|
240
|
+
"type": "string",
|
|
241
|
+
"mutable": false,
|
|
242
|
+
"complexType": {
|
|
243
|
+
"original": "string",
|
|
244
|
+
"resolved": "string",
|
|
245
|
+
"references": {}
|
|
246
|
+
},
|
|
247
|
+
"required": false,
|
|
248
|
+
"optional": false,
|
|
249
|
+
"docs": {
|
|
250
|
+
"tags": [],
|
|
251
|
+
"text": "Language"
|
|
252
|
+
},
|
|
253
|
+
"attribute": "language",
|
|
254
|
+
"reflect": true,
|
|
255
|
+
"defaultValue": "'en'"
|
|
256
|
+
},
|
|
257
|
+
"clientStyling": {
|
|
258
|
+
"type": "string",
|
|
259
|
+
"mutable": false,
|
|
260
|
+
"complexType": {
|
|
261
|
+
"original": "string",
|
|
262
|
+
"resolved": "string",
|
|
263
|
+
"references": {}
|
|
264
|
+
},
|
|
265
|
+
"required": false,
|
|
266
|
+
"optional": false,
|
|
267
|
+
"docs": {
|
|
268
|
+
"tags": [],
|
|
269
|
+
"text": "Client custom styling via string"
|
|
270
|
+
},
|
|
271
|
+
"attribute": "client-styling",
|
|
272
|
+
"reflect": true,
|
|
273
|
+
"defaultValue": "''"
|
|
274
|
+
},
|
|
275
|
+
"clientStylingUrlContent": {
|
|
276
|
+
"type": "string",
|
|
277
|
+
"mutable": false,
|
|
278
|
+
"complexType": {
|
|
279
|
+
"original": "string",
|
|
280
|
+
"resolved": "string",
|
|
281
|
+
"references": {}
|
|
282
|
+
},
|
|
283
|
+
"required": false,
|
|
284
|
+
"optional": false,
|
|
285
|
+
"docs": {
|
|
286
|
+
"tags": [],
|
|
287
|
+
"text": "Client custom styling via url content"
|
|
288
|
+
},
|
|
289
|
+
"attribute": "client-styling-url-content",
|
|
290
|
+
"reflect": true,
|
|
291
|
+
"defaultValue": "''"
|
|
292
|
+
}
|
|
293
|
+
};
|
|
294
|
+
}
|
|
295
|
+
static get states() {
|
|
296
|
+
return {
|
|
297
|
+
"showContent": {},
|
|
298
|
+
"limitStylingAppends": {}
|
|
299
|
+
};
|
|
300
|
+
}
|
|
301
|
+
static get events() {
|
|
302
|
+
return [{
|
|
303
|
+
"method": "accordionEvent",
|
|
304
|
+
"name": "helperAccordionAction",
|
|
305
|
+
"bubbles": true,
|
|
306
|
+
"cancelable": true,
|
|
307
|
+
"composed": true,
|
|
308
|
+
"docs": {
|
|
309
|
+
"tags": [],
|
|
310
|
+
"text": "Action event"
|
|
311
|
+
},
|
|
312
|
+
"complexType": {
|
|
313
|
+
"original": "any",
|
|
314
|
+
"resolved": "any",
|
|
315
|
+
"references": {}
|
|
316
|
+
}
|
|
317
|
+
}];
|
|
331
318
|
}
|
|
332
|
-
}; }
|
|
333
|
-
static get states() { return {
|
|
334
|
-
"showContent": {},
|
|
335
|
-
"limitStylingAppends": {}
|
|
336
|
-
}; }
|
|
337
|
-
static get events() { return [{
|
|
338
|
-
"method": "accordionEvent",
|
|
339
|
-
"name": "helperAccordionAction",
|
|
340
|
-
"bubbles": true,
|
|
341
|
-
"cancelable": true,
|
|
342
|
-
"composed": true,
|
|
343
|
-
"docs": {
|
|
344
|
-
"tags": [],
|
|
345
|
-
"text": "Action event"
|
|
346
|
-
},
|
|
347
|
-
"complexType": {
|
|
348
|
-
"original": "any",
|
|
349
|
-
"resolved": "any",
|
|
350
|
-
"references": {}
|
|
351
|
-
}
|
|
352
|
-
}]; }
|
|
353
319
|
}
|