@everymatrix/lottery-ticket-controller 0.1.24 → 1.0.69

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