@everymatrix/lottery-ticket-controller 1.44.0 → 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.
Files changed (58) hide show
  1. package/dist/cjs/app-globals-3a1e7e63.js +5 -0
  2. package/dist/cjs/helper-accordion_5.cjs.entry.js +570 -697
  3. package/dist/cjs/index-2275f129.js +1304 -0
  4. package/dist/cjs/loader.cjs.js +7 -13
  5. package/dist/cjs/lottery-ticket-controller.cjs.js +17 -11
  6. package/dist/collection/collection-manifest.json +3 -3
  7. package/dist/collection/components/lottery-ticket-controller/index.js +1 -0
  8. package/dist/collection/components/lottery-ticket-controller/lottery-ticket-controller.css +1 -1
  9. package/dist/collection/components/lottery-ticket-controller/lottery-ticket-controller.js +371 -399
  10. package/dist/collection/utils/locale.utils.js +17 -17
  11. package/dist/collection/utils/utils.js +1 -1
  12. package/dist/esm/app-globals-0f993ce5.js +3 -0
  13. package/dist/esm/helper-accordion_5.entry.js +570 -697
  14. package/dist/esm/index-cf1a7f99.js +1277 -0
  15. package/dist/esm/loader.js +7 -13
  16. package/dist/esm/lottery-ticket-controller.js +14 -11
  17. package/dist/lottery-ticket-controller/lottery-ticket-controller.esm.js +1 -1
  18. package/dist/lottery-ticket-controller/p-5d5cd019.entry.js +1 -0
  19. package/dist/lottery-ticket-controller/p-e1255160.js +1 -0
  20. package/dist/lottery-ticket-controller/p-ee226061.js +2 -0
  21. package/dist/stencil.config.dev.js +17 -0
  22. package/dist/stencil.config.js +14 -19
  23. package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/lottery-ticket-controller/.stencil/packages/stencil/lottery-ticket-controller/stencil.config.d.ts +2 -0
  24. package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/lottery-ticket-controller/.stencil/packages/stencil/lottery-ticket-controller/stencil.config.dev.d.ts +2 -0
  25. package/dist/types/components/lottery-ticket-controller/index.d.ts +1 -0
  26. package/dist/types/components/lottery-ticket-controller/lottery-ticket-controller.d.ts +70 -70
  27. package/dist/types/components.d.ts +16 -1
  28. package/dist/types/stencil-public-runtime.d.ts +142 -33
  29. package/loader/cdn.js +1 -3
  30. package/loader/index.cjs.js +1 -3
  31. package/loader/index.d.ts +13 -1
  32. package/loader/index.es2017.js +1 -3
  33. package/loader/index.js +1 -3
  34. package/loader/package.json +1 -0
  35. package/package.json +10 -3
  36. package/dist/cjs/index-797fecd9.js +0 -1286
  37. package/dist/components/helper-accordion.js +0 -6
  38. package/dist/components/helper-accordion2.js +0 -158
  39. package/dist/components/index.d.ts +0 -26
  40. package/dist/components/index.js +0 -1
  41. package/dist/components/lottery-bullet.js +0 -6
  42. package/dist/components/lottery-bullet2.js +0 -91
  43. package/dist/components/lottery-grid.js +0 -6
  44. package/dist/components/lottery-grid2.js +0 -245
  45. package/dist/components/lottery-ticket-controller.d.ts +0 -11
  46. package/dist/components/lottery-ticket-controller.js +0 -185
  47. package/dist/components/lottery-ticket.js +0 -6
  48. package/dist/components/lottery-ticket2.js +0 -273
  49. package/dist/esm/index-c4bda097.js +0 -1260
  50. package/dist/esm/polyfills/core-js.js +0 -11
  51. package/dist/esm/polyfills/css-shim.js +0 -1
  52. package/dist/esm/polyfills/dom.js +0 -79
  53. package/dist/esm/polyfills/es5-html-element.js +0 -1
  54. package/dist/esm/polyfills/index.js +0 -34
  55. package/dist/esm/polyfills/system.js +0 -6
  56. package/dist/lottery-ticket-controller/p-1f81b6df.js +0 -1
  57. package/dist/lottery-ticket-controller/p-2577bcb1.entry.js +0 -1
  58. package/dist/types/Users/adrian.pripon/Documents/Work/widgets-stencil/packages/lottery-ticket-controller/.stencil/packages/lottery-ticket-controller/stencil.config.d.ts +0 -2
@@ -1,404 +1,376 @@
1
- import { Component, h, Listen, Prop, Event, State } from '@stencil/core';
2
- import '@everymatrix/helper-accordion';
3
- import '@everymatrix/lottery-ticket';
4
- import { translate } from '../../utils/locale.utils';
1
+ import { h } from "@stencil/core";
2
+ import "../../../../../helper-accordion/dist/types/index";
3
+ import "../../../../../lottery-ticket/dist/types/index";
4
+ import { translate } from "../../utils/locale.utils";
5
5
  export class LotteryTicketController {
6
- constructor() {
7
- /**
8
- * Endpoint URL for the source of data (NorWAy standard)
9
- */
10
- this.endpoint = '';
11
- /**
12
- * Ticket number
13
- */
14
- this.ticketId = 1;
15
- /**
16
- * Activates postMessages as events for actions from the widget
17
- */
18
- this.postMessage = false;
19
- /**
20
- * Name of the event emitter by the action button
21
- */
22
- this.eventName = 'deleteTicketAction';
23
- /**
24
- * Collapsed
25
- */
26
- this.collapsed = true;
27
- /**
28
- * Number of grids?
29
- */
30
- this.numberOfGrids = 1;
31
- /**
32
- * This toggles if the last ticket added should be expanded or not
33
- */
34
- this.last = false;
35
- /**
36
- * Language
37
- */
38
- this.language = 'en';
39
- /**
40
- * Shows the auto-pick button
41
- */
42
- this.autoPick = false;
43
- /**
44
- * Shows the reset button
45
- */
46
- this.resetButton = false;
47
- /**
48
- * Number of ticket controllers
49
- */
50
- this.totalControllers = 1;
51
- /**
52
- * Client custom styling via string
53
- */
54
- this.clientStyling = '';
55
- /**
56
- * Client custom styling via url content
57
- */
58
- this.clientStylingUrlContent = '';
59
- this.limitStylingAppends = false;
60
- this.setClientStyling = () => {
61
- let sheet = document.createElement('style');
62
- sheet.innerHTML = this.clientStyling;
63
- this.stylingContainer.prepend(sheet);
64
- };
65
- this.setClientStylingURL = () => {
66
- let cssFile = document.createElement('style');
67
- setTimeout(() => {
68
- cssFile.innerHTML = this.clientStylingUrlContent;
69
- this.stylingContainer.prepend(cssFile);
70
- }, 1);
71
- };
72
- }
73
- // @TODO fix the `any` type
74
- helperAccordionActionHandler() {
75
- if (this.postMessage) {
76
- window.postMessage({ type: this.eventName }, window.location.href);
6
+ constructor() {
7
+ this.setClientStyling = () => {
8
+ let sheet = document.createElement('style');
9
+ sheet.innerHTML = this.clientStyling;
10
+ this.stylingContainer.prepend(sheet);
11
+ };
12
+ this.setClientStylingURL = () => {
13
+ let cssFile = document.createElement('style');
14
+ setTimeout(() => {
15
+ cssFile.innerHTML = this.clientStylingUrlContent;
16
+ this.stylingContainer.prepend(cssFile);
17
+ }, 1);
18
+ };
19
+ this.endpoint = '';
20
+ this.ticketId = 1;
21
+ this.ticketDescription = undefined;
22
+ this.gameId = undefined;
23
+ this.postMessage = false;
24
+ this.eventName = 'deleteTicketAction';
25
+ this.collapsed = true;
26
+ this.numberOfGrids = 1;
27
+ this.last = false;
28
+ this.language = 'en';
29
+ this.autoPick = false;
30
+ this.resetButton = false;
31
+ this.totalControllers = 1;
32
+ this.clientStyling = '';
33
+ this.clientStylingUrlContent = '';
34
+ this.limitStylingAppends = false;
77
35
  }
78
- this.deleteTicketEvent.emit({
79
- ticketId: this.ticketId
80
- });
81
- }
82
- componentDidRender() {
83
- // start custom styling area
84
- if (!this.limitStylingAppends && this.stylingContainer) {
85
- if (this.clientStyling)
86
- this.setClientStyling();
87
- if (this.clientStylingUrlContent)
88
- this.setClientStylingURL();
89
- this.limitStylingAppends = true;
36
+ // @TODO fix the `any` type
37
+ helperAccordionActionHandler() {
38
+ if (this.postMessage) {
39
+ window.postMessage({ type: this.eventName }, window.location.href);
40
+ }
41
+ this.deleteTicketEvent.emit({
42
+ ticketId: this.ticketId
43
+ });
90
44
  }
91
- // end custom styling area
92
- }
93
- render() {
94
- console.log('ticket id:', this.ticketId);
95
- return (h("div", { class: "LotteryTicketControllerContainer", ref: el => this.stylingContainer = el },
96
- h("helper-accordion", { "header-title": `${translate('ticket', this.language)} ${this.ticketId}`, "header-subtitle": this.ticketDescription, footer: true, "delete-tab": this.totalControllers !== 1, collapsed: !this.last || this.collapsed, language: this.language, "client-styling": this.clientStyling, "client-styling-url-content": this.clientStylingUrlContent },
97
- h("div", { slot: "accordionContent" },
98
- h("lottery-ticket", { endpoint: this.endpoint, "game-id": this.gameId, "ticket-id": this.ticketId, "number-of-grids": this.numberOfGrids, language: this.language, "reset-button": this.resetButton, "auto-pick": this.autoPick, "client-styling": this.clientStyling, "client-styling-url-content": this.clientStylingUrlContent })))));
99
- }
100
- static get is() { return "lottery-ticket-controller"; }
101
- static get encapsulation() { return "shadow"; }
102
- static get originalStyleUrls() { return {
103
- "$": ["lottery-ticket-controller.scss"]
104
- }; }
105
- static get styleUrls() { return {
106
- "$": ["lottery-ticket-controller.css"]
107
- }; }
108
- static get properties() { return {
109
- "endpoint": {
110
- "type": "string",
111
- "mutable": false,
112
- "complexType": {
113
- "original": "string",
114
- "resolved": "string",
115
- "references": {}
116
- },
117
- "required": false,
118
- "optional": false,
119
- "docs": {
120
- "tags": [],
121
- "text": "Endpoint URL for the source of data (NorWAy standard)"
122
- },
123
- "attribute": "endpoint",
124
- "reflect": true,
125
- "defaultValue": "''"
126
- },
127
- "ticketId": {
128
- "type": "number",
129
- "mutable": false,
130
- "complexType": {
131
- "original": "number",
132
- "resolved": "number",
133
- "references": {}
134
- },
135
- "required": false,
136
- "optional": false,
137
- "docs": {
138
- "tags": [],
139
- "text": "Ticket number"
140
- },
141
- "attribute": "ticket-id",
142
- "reflect": true,
143
- "defaultValue": "1"
144
- },
145
- "ticketDescription": {
146
- "type": "string",
147
- "mutable": false,
148
- "complexType": {
149
- "original": "string",
150
- "resolved": "string",
151
- "references": {}
152
- },
153
- "required": false,
154
- "optional": false,
155
- "docs": {
156
- "tags": [],
157
- "text": "Ticket header description"
158
- },
159
- "attribute": "ticket-description",
160
- "reflect": true
161
- },
162
- "gameId": {
163
- "type": "string",
164
- "mutable": false,
165
- "complexType": {
166
- "original": "string",
167
- "resolved": "string",
168
- "references": {}
169
- },
170
- "required": false,
171
- "optional": false,
172
- "docs": {
173
- "tags": [],
174
- "text": "ID of the lottery game"
175
- },
176
- "attribute": "game-id",
177
- "reflect": true
178
- },
179
- "postMessage": {
180
- "type": "boolean",
181
- "mutable": false,
182
- "complexType": {
183
- "original": "boolean",
184
- "resolved": "boolean",
185
- "references": {}
186
- },
187
- "required": false,
188
- "optional": false,
189
- "docs": {
190
- "tags": [],
191
- "text": "Activates postMessages as events for actions from the widget"
192
- },
193
- "attribute": "post-message",
194
- "reflect": true,
195
- "defaultValue": "false"
196
- },
197
- "eventName": {
198
- "type": "string",
199
- "mutable": false,
200
- "complexType": {
201
- "original": "string",
202
- "resolved": "string",
203
- "references": {}
204
- },
205
- "required": false,
206
- "optional": false,
207
- "docs": {
208
- "tags": [],
209
- "text": "Name of the event emitter by the action button"
210
- },
211
- "attribute": "event-name",
212
- "reflect": true,
213
- "defaultValue": "'deleteTicketAction'"
214
- },
215
- "collapsed": {
216
- "type": "boolean",
217
- "mutable": false,
218
- "complexType": {
219
- "original": "boolean",
220
- "resolved": "boolean",
221
- "references": {}
222
- },
223
- "required": false,
224
- "optional": false,
225
- "docs": {
226
- "tags": [],
227
- "text": "Collapsed"
228
- },
229
- "attribute": "collapsed",
230
- "reflect": true,
231
- "defaultValue": "true"
232
- },
233
- "numberOfGrids": {
234
- "type": "number",
235
- "mutable": false,
236
- "complexType": {
237
- "original": "number",
238
- "resolved": "number",
239
- "references": {}
240
- },
241
- "required": false,
242
- "optional": false,
243
- "docs": {
244
- "tags": [],
245
- "text": "Number of grids?"
246
- },
247
- "attribute": "number-of-grids",
248
- "reflect": true,
249
- "defaultValue": "1"
250
- },
251
- "last": {
252
- "type": "boolean",
253
- "mutable": false,
254
- "complexType": {
255
- "original": "boolean",
256
- "resolved": "boolean",
257
- "references": {}
258
- },
259
- "required": false,
260
- "optional": false,
261
- "docs": {
262
- "tags": [],
263
- "text": "This toggles if the last ticket added should be expanded or not"
264
- },
265
- "attribute": "last",
266
- "reflect": true,
267
- "defaultValue": "false"
268
- },
269
- "language": {
270
- "type": "string",
271
- "mutable": false,
272
- "complexType": {
273
- "original": "string",
274
- "resolved": "string",
275
- "references": {}
276
- },
277
- "required": false,
278
- "optional": false,
279
- "docs": {
280
- "tags": [],
281
- "text": "Language"
282
- },
283
- "attribute": "language",
284
- "reflect": true,
285
- "defaultValue": "'en'"
286
- },
287
- "autoPick": {
288
- "type": "boolean",
289
- "mutable": false,
290
- "complexType": {
291
- "original": "boolean",
292
- "resolved": "boolean",
293
- "references": {}
294
- },
295
- "required": false,
296
- "optional": false,
297
- "docs": {
298
- "tags": [],
299
- "text": "Shows the auto-pick button"
300
- },
301
- "attribute": "auto-pick",
302
- "reflect": true,
303
- "defaultValue": "false"
304
- },
305
- "resetButton": {
306
- "type": "boolean",
307
- "mutable": false,
308
- "complexType": {
309
- "original": "boolean",
310
- "resolved": "boolean",
311
- "references": {}
312
- },
313
- "required": false,
314
- "optional": false,
315
- "docs": {
316
- "tags": [],
317
- "text": "Shows the reset button"
318
- },
319
- "attribute": "reset-button",
320
- "reflect": true,
321
- "defaultValue": "false"
322
- },
323
- "totalControllers": {
324
- "type": "number",
325
- "mutable": false,
326
- "complexType": {
327
- "original": "number",
328
- "resolved": "number",
329
- "references": {}
330
- },
331
- "required": false,
332
- "optional": false,
333
- "docs": {
334
- "tags": [],
335
- "text": "Number of ticket controllers"
336
- },
337
- "attribute": "total-controllers",
338
- "reflect": true,
339
- "defaultValue": "1"
340
- },
341
- "clientStyling": {
342
- "type": "string",
343
- "mutable": false,
344
- "complexType": {
345
- "original": "string",
346
- "resolved": "string",
347
- "references": {}
348
- },
349
- "required": false,
350
- "optional": false,
351
- "docs": {
352
- "tags": [],
353
- "text": "Client custom styling via string"
354
- },
355
- "attribute": "client-styling",
356
- "reflect": true,
357
- "defaultValue": "''"
358
- },
359
- "clientStylingUrlContent": {
360
- "type": "string",
361
- "mutable": false,
362
- "complexType": {
363
- "original": "string",
364
- "resolved": "string",
365
- "references": {}
366
- },
367
- "required": false,
368
- "optional": false,
369
- "docs": {
370
- "tags": [],
371
- "text": "Client custom styling via url content"
372
- },
373
- "attribute": "client-styling-url-content",
374
- "reflect": true,
375
- "defaultValue": "''"
45
+ componentDidRender() {
46
+ // start custom styling area
47
+ if (!this.limitStylingAppends && this.stylingContainer) {
48
+ if (this.clientStyling)
49
+ this.setClientStyling();
50
+ if (this.clientStylingUrlContent)
51
+ this.setClientStylingURL();
52
+ this.limitStylingAppends = true;
53
+ }
54
+ // end custom styling area
55
+ }
56
+ render() {
57
+ console.log('ticket id:', this.ticketId);
58
+ return (h("div", { key: '203c89c4b240cd7c99eb3d37fa3a4dbc17ed18e3', class: "LotteryTicketControllerContainer", ref: el => this.stylingContainer = el }, h("helper-accordion", { key: 'ad9801b15a1718ff7470ab3084c4b569ad23f6e3', "header-title": `${translate('ticket', this.language)} ${this.ticketId}`, "header-subtitle": this.ticketDescription, footer: true, "delete-tab": this.totalControllers !== 1, collapsed: !this.last || this.collapsed, language: this.language, "client-styling": this.clientStyling, "client-styling-url-content": this.clientStylingUrlContent }, h("div", { key: 'b9c618987e848d4b44fee6941f8b5c9696bd44e8', slot: "accordionContent" }, h("lottery-ticket", { key: '8acdc3d3cce5b654e7cddd71576c2e993881786f', endpoint: this.endpoint, "game-id": this.gameId, "ticket-id": this.ticketId, "number-of-grids": this.numberOfGrids, language: this.language, "reset-button": this.resetButton, "auto-pick": this.autoPick, "client-styling": this.clientStyling, "client-styling-url-content": this.clientStylingUrlContent })))));
59
+ }
60
+ static get is() { return "lottery-ticket-controller"; }
61
+ static get encapsulation() { return "shadow"; }
62
+ static get originalStyleUrls() {
63
+ return {
64
+ "$": ["lottery-ticket-controller.scss"]
65
+ };
66
+ }
67
+ static get styleUrls() {
68
+ return {
69
+ "$": ["lottery-ticket-controller.css"]
70
+ };
71
+ }
72
+ static get properties() {
73
+ return {
74
+ "endpoint": {
75
+ "type": "string",
76
+ "mutable": false,
77
+ "complexType": {
78
+ "original": "string",
79
+ "resolved": "string",
80
+ "references": {}
81
+ },
82
+ "required": false,
83
+ "optional": false,
84
+ "docs": {
85
+ "tags": [],
86
+ "text": "Endpoint URL for the source of data (NorWAy standard)"
87
+ },
88
+ "attribute": "endpoint",
89
+ "reflect": true,
90
+ "defaultValue": "''"
91
+ },
92
+ "ticketId": {
93
+ "type": "number",
94
+ "mutable": false,
95
+ "complexType": {
96
+ "original": "number",
97
+ "resolved": "number",
98
+ "references": {}
99
+ },
100
+ "required": false,
101
+ "optional": false,
102
+ "docs": {
103
+ "tags": [],
104
+ "text": "Ticket number"
105
+ },
106
+ "attribute": "ticket-id",
107
+ "reflect": true,
108
+ "defaultValue": "1"
109
+ },
110
+ "ticketDescription": {
111
+ "type": "string",
112
+ "mutable": false,
113
+ "complexType": {
114
+ "original": "string",
115
+ "resolved": "string",
116
+ "references": {}
117
+ },
118
+ "required": false,
119
+ "optional": false,
120
+ "docs": {
121
+ "tags": [],
122
+ "text": "Ticket header description"
123
+ },
124
+ "attribute": "ticket-description",
125
+ "reflect": true
126
+ },
127
+ "gameId": {
128
+ "type": "string",
129
+ "mutable": false,
130
+ "complexType": {
131
+ "original": "string",
132
+ "resolved": "string",
133
+ "references": {}
134
+ },
135
+ "required": false,
136
+ "optional": false,
137
+ "docs": {
138
+ "tags": [],
139
+ "text": "ID of the lottery game"
140
+ },
141
+ "attribute": "game-id",
142
+ "reflect": true
143
+ },
144
+ "postMessage": {
145
+ "type": "boolean",
146
+ "mutable": false,
147
+ "complexType": {
148
+ "original": "boolean",
149
+ "resolved": "boolean",
150
+ "references": {}
151
+ },
152
+ "required": false,
153
+ "optional": false,
154
+ "docs": {
155
+ "tags": [],
156
+ "text": "Activates postMessages as events for actions from the widget"
157
+ },
158
+ "attribute": "post-message",
159
+ "reflect": true,
160
+ "defaultValue": "false"
161
+ },
162
+ "eventName": {
163
+ "type": "string",
164
+ "mutable": false,
165
+ "complexType": {
166
+ "original": "string",
167
+ "resolved": "string",
168
+ "references": {}
169
+ },
170
+ "required": false,
171
+ "optional": false,
172
+ "docs": {
173
+ "tags": [],
174
+ "text": "Name of the event emitter by the action button"
175
+ },
176
+ "attribute": "event-name",
177
+ "reflect": true,
178
+ "defaultValue": "'deleteTicketAction'"
179
+ },
180
+ "collapsed": {
181
+ "type": "boolean",
182
+ "mutable": false,
183
+ "complexType": {
184
+ "original": "boolean",
185
+ "resolved": "boolean",
186
+ "references": {}
187
+ },
188
+ "required": false,
189
+ "optional": false,
190
+ "docs": {
191
+ "tags": [],
192
+ "text": "Collapsed"
193
+ },
194
+ "attribute": "collapsed",
195
+ "reflect": true,
196
+ "defaultValue": "true"
197
+ },
198
+ "numberOfGrids": {
199
+ "type": "number",
200
+ "mutable": false,
201
+ "complexType": {
202
+ "original": "number",
203
+ "resolved": "number",
204
+ "references": {}
205
+ },
206
+ "required": false,
207
+ "optional": false,
208
+ "docs": {
209
+ "tags": [],
210
+ "text": "Number of grids?"
211
+ },
212
+ "attribute": "number-of-grids",
213
+ "reflect": true,
214
+ "defaultValue": "1"
215
+ },
216
+ "last": {
217
+ "type": "boolean",
218
+ "mutable": false,
219
+ "complexType": {
220
+ "original": "boolean",
221
+ "resolved": "boolean",
222
+ "references": {}
223
+ },
224
+ "required": false,
225
+ "optional": false,
226
+ "docs": {
227
+ "tags": [],
228
+ "text": "This toggles if the last ticket added should be expanded or not"
229
+ },
230
+ "attribute": "last",
231
+ "reflect": true,
232
+ "defaultValue": "false"
233
+ },
234
+ "language": {
235
+ "type": "string",
236
+ "mutable": false,
237
+ "complexType": {
238
+ "original": "string",
239
+ "resolved": "string",
240
+ "references": {}
241
+ },
242
+ "required": false,
243
+ "optional": false,
244
+ "docs": {
245
+ "tags": [],
246
+ "text": "Language"
247
+ },
248
+ "attribute": "language",
249
+ "reflect": true,
250
+ "defaultValue": "'en'"
251
+ },
252
+ "autoPick": {
253
+ "type": "boolean",
254
+ "mutable": false,
255
+ "complexType": {
256
+ "original": "boolean",
257
+ "resolved": "boolean",
258
+ "references": {}
259
+ },
260
+ "required": false,
261
+ "optional": false,
262
+ "docs": {
263
+ "tags": [],
264
+ "text": "Shows the auto-pick button"
265
+ },
266
+ "attribute": "auto-pick",
267
+ "reflect": true,
268
+ "defaultValue": "false"
269
+ },
270
+ "resetButton": {
271
+ "type": "boolean",
272
+ "mutable": false,
273
+ "complexType": {
274
+ "original": "boolean",
275
+ "resolved": "boolean",
276
+ "references": {}
277
+ },
278
+ "required": false,
279
+ "optional": false,
280
+ "docs": {
281
+ "tags": [],
282
+ "text": "Shows the reset button"
283
+ },
284
+ "attribute": "reset-button",
285
+ "reflect": true,
286
+ "defaultValue": "false"
287
+ },
288
+ "totalControllers": {
289
+ "type": "number",
290
+ "mutable": false,
291
+ "complexType": {
292
+ "original": "number",
293
+ "resolved": "number",
294
+ "references": {}
295
+ },
296
+ "required": false,
297
+ "optional": false,
298
+ "docs": {
299
+ "tags": [],
300
+ "text": "Number of ticket controllers"
301
+ },
302
+ "attribute": "total-controllers",
303
+ "reflect": true,
304
+ "defaultValue": "1"
305
+ },
306
+ "clientStyling": {
307
+ "type": "string",
308
+ "mutable": false,
309
+ "complexType": {
310
+ "original": "string",
311
+ "resolved": "string",
312
+ "references": {}
313
+ },
314
+ "required": false,
315
+ "optional": false,
316
+ "docs": {
317
+ "tags": [],
318
+ "text": "Client custom styling via string"
319
+ },
320
+ "attribute": "client-styling",
321
+ "reflect": true,
322
+ "defaultValue": "''"
323
+ },
324
+ "clientStylingUrlContent": {
325
+ "type": "string",
326
+ "mutable": false,
327
+ "complexType": {
328
+ "original": "string",
329
+ "resolved": "string",
330
+ "references": {}
331
+ },
332
+ "required": false,
333
+ "optional": false,
334
+ "docs": {
335
+ "tags": [],
336
+ "text": "Client custom styling via url content"
337
+ },
338
+ "attribute": "client-styling-url-content",
339
+ "reflect": true,
340
+ "defaultValue": "''"
341
+ }
342
+ };
343
+ }
344
+ static get states() {
345
+ return {
346
+ "limitStylingAppends": {}
347
+ };
348
+ }
349
+ static get events() {
350
+ return [{
351
+ "method": "deleteTicketEvent",
352
+ "name": "deleteTicket",
353
+ "bubbles": true,
354
+ "cancelable": true,
355
+ "composed": true,
356
+ "docs": {
357
+ "tags": [],
358
+ "text": ""
359
+ },
360
+ "complexType": {
361
+ "original": "any",
362
+ "resolved": "any",
363
+ "references": {}
364
+ }
365
+ }];
366
+ }
367
+ static get listeners() {
368
+ return [{
369
+ "name": "helperAccordionAction",
370
+ "method": "helperAccordionActionHandler",
371
+ "target": undefined,
372
+ "capture": false,
373
+ "passive": false
374
+ }];
376
375
  }
377
- }; }
378
- static get states() { return {
379
- "limitStylingAppends": {}
380
- }; }
381
- static get events() { return [{
382
- "method": "deleteTicketEvent",
383
- "name": "deleteTicket",
384
- "bubbles": true,
385
- "cancelable": true,
386
- "composed": true,
387
- "docs": {
388
- "tags": [],
389
- "text": ""
390
- },
391
- "complexType": {
392
- "original": "any",
393
- "resolved": "any",
394
- "references": {}
395
- }
396
- }]; }
397
- static get listeners() { return [{
398
- "name": "helperAccordionAction",
399
- "method": "helperAccordionActionHandler",
400
- "target": undefined,
401
- "capture": false,
402
- "passive": false
403
- }]; }
404
376
  }