@everymatrix/helper-tabs 1.56.0 → 1.56.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-tab_2.cjs.entry.js +16 -37
- package/dist/cjs/helper-tabs.cjs.js +2 -2
- package/dist/cjs/{index-08bd9c7c.js → index-d010e014.js} +73 -208
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +2 -2
- package/dist/collection/components/helper-tab/helper-tab.js +7 -34
- package/dist/collection/components/helper-tabs/helper-tabs.js +8 -56
- package/dist/esm/helper-tab_2.entry.js +16 -37
- package/dist/esm/helper-tabs.js +3 -3
- package/dist/esm/{index-c5727b52.js → index-3174302b.js} +73 -208
- package/dist/esm/loader.js +2 -2
- package/dist/helper-tabs/helper-tabs.esm.js +1 -1
- package/dist/helper-tabs/p-88d4a539.entry.js +1 -0
- package/dist/helper-tabs/p-a0103339.js +2 -0
- package/dist/types/Users/maria.bumbar/Desktop/widgets-monorepo/packages/stencil/helper-tabs/.stencil/packages/stencil/helper-tabs/stencil.config.d.ts +2 -0
- package/dist/types/Users/maria.bumbar/Desktop/widgets-monorepo/packages/stencil/helper-tabs/.stencil/packages/stencil/helper-tabs/stencil.config.dev.d.ts +2 -0
- package/dist/types/stencil-public-runtime.d.ts +0 -6
- package/package.json +1 -1
- package/dist/helper-tabs/p-c6fec16e.entry.js +0 -1
- package/dist/helper-tabs/p-d8d96e22.js +0 -2
- package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/helper-tabs/.stencil/packages/stencil/helper-tabs/stencil.config.d.ts +0 -2
- package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/helper-tabs/.stencil/packages/stencil/helper-tabs/stencil.config.dev.d.ts +0 -2
- /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/helper-tabs/.stencil/tools/plugins/index.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/helper-tabs/.stencil/tools/plugins/stencil-clean-deps-plugin.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/helper-tabs/.stencil/tools/plugins/vite-chunk-plugin.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/helper-tabs/.stencil/tools/plugins/vite-clean-deps-plugin.d.ts +0 -0
|
@@ -3,22 +3,17 @@ import { translate, translateWithParams, getTranslations } from "../../utils/loc
|
|
|
3
3
|
import { setClientStyling, setClientStylingURL, setStreamStyling } from "../../../../../../../../libs/common/src/styling/index";
|
|
4
4
|
export class HelperTab {
|
|
5
5
|
constructor() {
|
|
6
|
-
/**
|
|
7
|
-
* Selected index
|
|
8
|
-
*/
|
|
9
6
|
this.selectedIndex = 0;
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
*/
|
|
7
|
+
this.cmsEndpoint = undefined;
|
|
8
|
+
this.mbSource = undefined;
|
|
13
9
|
this.clientStyling = '';
|
|
14
|
-
/**
|
|
15
|
-
* Client custom styling via url content
|
|
16
|
-
*/
|
|
17
10
|
this.clientStylingUrl = '';
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
11
|
+
this.lowNumber = undefined;
|
|
12
|
+
this.highNumber = undefined;
|
|
13
|
+
this.minimumAllowed = undefined;
|
|
14
|
+
this.maxinumAllowed = undefined;
|
|
21
15
|
this.language = 'en';
|
|
16
|
+
this.translationUrl = undefined;
|
|
22
17
|
this.tabContent = '';
|
|
23
18
|
}
|
|
24
19
|
handleClientStylingChange(newValue, oldValue) {
|
|
@@ -103,8 +98,6 @@ export class HelperTab {
|
|
|
103
98
|
"tags": [],
|
|
104
99
|
"text": "Selected index"
|
|
105
100
|
},
|
|
106
|
-
"getter": false,
|
|
107
|
-
"setter": false,
|
|
108
101
|
"attribute": "selected-index",
|
|
109
102
|
"reflect": true,
|
|
110
103
|
"defaultValue": "0"
|
|
@@ -123,8 +116,6 @@ export class HelperTab {
|
|
|
123
116
|
"tags": [],
|
|
124
117
|
"text": "Endpoing for CMS"
|
|
125
118
|
},
|
|
126
|
-
"getter": false,
|
|
127
|
-
"setter": false,
|
|
128
119
|
"attribute": "cms-endpoint",
|
|
129
120
|
"reflect": true
|
|
130
121
|
},
|
|
@@ -142,8 +133,6 @@ export class HelperTab {
|
|
|
142
133
|
"tags": [],
|
|
143
134
|
"text": "Client custom styling via streamStyling"
|
|
144
135
|
},
|
|
145
|
-
"getter": false,
|
|
146
|
-
"setter": false,
|
|
147
136
|
"attribute": "mb-source",
|
|
148
137
|
"reflect": false
|
|
149
138
|
},
|
|
@@ -161,8 +150,6 @@ export class HelperTab {
|
|
|
161
150
|
"tags": [],
|
|
162
151
|
"text": "Client custom styling via string"
|
|
163
152
|
},
|
|
164
|
-
"getter": false,
|
|
165
|
-
"setter": false,
|
|
166
153
|
"attribute": "client-styling",
|
|
167
154
|
"reflect": true,
|
|
168
155
|
"defaultValue": "''"
|
|
@@ -181,8 +168,6 @@ export class HelperTab {
|
|
|
181
168
|
"tags": [],
|
|
182
169
|
"text": "Client custom styling via url content"
|
|
183
170
|
},
|
|
184
|
-
"getter": false,
|
|
185
|
-
"setter": false,
|
|
186
171
|
"attribute": "client-styling-url",
|
|
187
172
|
"reflect": true,
|
|
188
173
|
"defaultValue": "''"
|
|
@@ -201,8 +186,6 @@ export class HelperTab {
|
|
|
201
186
|
"tags": [],
|
|
202
187
|
"text": "Minimum number displayed in the board"
|
|
203
188
|
},
|
|
204
|
-
"getter": false,
|
|
205
|
-
"setter": false,
|
|
206
189
|
"attribute": "low-number",
|
|
207
190
|
"reflect": true
|
|
208
191
|
},
|
|
@@ -220,8 +203,6 @@ export class HelperTab {
|
|
|
220
203
|
"tags": [],
|
|
221
204
|
"text": "Maximum number displayed in the board"
|
|
222
205
|
},
|
|
223
|
-
"getter": false,
|
|
224
|
-
"setter": false,
|
|
225
206
|
"attribute": "high-number",
|
|
226
207
|
"reflect": true
|
|
227
208
|
},
|
|
@@ -239,8 +220,6 @@ export class HelperTab {
|
|
|
239
220
|
"tags": [],
|
|
240
221
|
"text": "Minimum number of numbers that can be selected"
|
|
241
222
|
},
|
|
242
|
-
"getter": false,
|
|
243
|
-
"setter": false,
|
|
244
223
|
"attribute": "minimum-allowed",
|
|
245
224
|
"reflect": true
|
|
246
225
|
},
|
|
@@ -258,8 +237,6 @@ export class HelperTab {
|
|
|
258
237
|
"tags": [],
|
|
259
238
|
"text": "Maximum number of numbers that can be selected"
|
|
260
239
|
},
|
|
261
|
-
"getter": false,
|
|
262
|
-
"setter": false,
|
|
263
240
|
"attribute": "maxinum-allowed",
|
|
264
241
|
"reflect": true
|
|
265
242
|
},
|
|
@@ -277,8 +254,6 @@ export class HelperTab {
|
|
|
277
254
|
"tags": [],
|
|
278
255
|
"text": "Language of the widget"
|
|
279
256
|
},
|
|
280
|
-
"getter": false,
|
|
281
|
-
"setter": false,
|
|
282
257
|
"attribute": "language",
|
|
283
258
|
"reflect": true,
|
|
284
259
|
"defaultValue": "'en'"
|
|
@@ -297,8 +272,6 @@ export class HelperTab {
|
|
|
297
272
|
"tags": [],
|
|
298
273
|
"text": "Translations via parent component"
|
|
299
274
|
},
|
|
300
|
-
"getter": false,
|
|
301
|
-
"setter": false,
|
|
302
275
|
"attribute": "translation-url",
|
|
303
276
|
"reflect": true
|
|
304
277
|
}
|
|
@@ -2,38 +2,22 @@ import { h } from "@stencil/core";
|
|
|
2
2
|
import { setClientStyling, setClientStylingURL, setStreamStyling } from "../../../../../../../../libs/common/src/styling/index";
|
|
3
3
|
export class HelperTabs {
|
|
4
4
|
constructor() {
|
|
5
|
-
/**
|
|
6
|
-
* Tell me if it is disabled
|
|
7
|
-
*/
|
|
8
5
|
this.disabled = false;
|
|
9
|
-
|
|
10
|
-
* Tell me what tab is selected
|
|
11
|
-
*/
|
|
6
|
+
this.label = undefined;
|
|
12
7
|
this.selected = false;
|
|
13
|
-
|
|
14
|
-
* Default selected index
|
|
15
|
-
*/
|
|
8
|
+
this.cmsEndpoint = undefined;
|
|
16
9
|
this.selectedIndex = 0;
|
|
17
|
-
/**
|
|
18
|
-
* Tabs details
|
|
19
|
-
*/
|
|
20
10
|
this.tabs = [{ label: 'How to Play' }, { label: 'About' }, { label: 'FAQs' }];
|
|
21
|
-
/**
|
|
22
|
-
* Client custom styling via string
|
|
23
|
-
*/
|
|
24
11
|
this.clientStyling = '';
|
|
25
|
-
|
|
26
|
-
* Client custom styling via url
|
|
27
|
-
*/
|
|
12
|
+
this.mbSource = undefined;
|
|
28
13
|
this.clientStylingurl = '';
|
|
29
|
-
/**
|
|
30
|
-
* Client custom styling via url content
|
|
31
|
-
*/
|
|
32
14
|
this.clientStylingUrl = '';
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
15
|
+
this.lowNumber = undefined;
|
|
16
|
+
this.highNumber = undefined;
|
|
17
|
+
this.minimumAllowed = undefined;
|
|
18
|
+
this.maxinumAllowed = undefined;
|
|
36
19
|
this.language = 'en';
|
|
20
|
+
this.translationUrl = undefined;
|
|
37
21
|
}
|
|
38
22
|
connectedCallback() {
|
|
39
23
|
if (this.tabs.length == 0) {
|
|
@@ -98,8 +82,6 @@ export class HelperTabs {
|
|
|
98
82
|
"tags": [],
|
|
99
83
|
"text": "Tell me if it is disabled"
|
|
100
84
|
},
|
|
101
|
-
"getter": false,
|
|
102
|
-
"setter": false,
|
|
103
85
|
"attribute": "disabled",
|
|
104
86
|
"reflect": true,
|
|
105
87
|
"defaultValue": "false"
|
|
@@ -118,8 +100,6 @@ export class HelperTabs {
|
|
|
118
100
|
"tags": [],
|
|
119
101
|
"text": "Gimme names or you die"
|
|
120
102
|
},
|
|
121
|
-
"getter": false,
|
|
122
|
-
"setter": false,
|
|
123
103
|
"attribute": "label",
|
|
124
104
|
"reflect": true
|
|
125
105
|
},
|
|
@@ -137,8 +117,6 @@ export class HelperTabs {
|
|
|
137
117
|
"tags": [],
|
|
138
118
|
"text": "Tell me what tab is selected"
|
|
139
119
|
},
|
|
140
|
-
"getter": false,
|
|
141
|
-
"setter": false,
|
|
142
120
|
"attribute": "selected",
|
|
143
121
|
"reflect": true,
|
|
144
122
|
"defaultValue": "false"
|
|
@@ -157,8 +135,6 @@ export class HelperTabs {
|
|
|
157
135
|
"tags": [],
|
|
158
136
|
"text": "Endpoing for CMS"
|
|
159
137
|
},
|
|
160
|
-
"getter": false,
|
|
161
|
-
"setter": false,
|
|
162
138
|
"attribute": "cms-endpoint",
|
|
163
139
|
"reflect": true
|
|
164
140
|
},
|
|
@@ -176,8 +152,6 @@ export class HelperTabs {
|
|
|
176
152
|
"tags": [],
|
|
177
153
|
"text": "Default selected index"
|
|
178
154
|
},
|
|
179
|
-
"getter": false,
|
|
180
|
-
"setter": false,
|
|
181
155
|
"attribute": "selected-index",
|
|
182
156
|
"reflect": true,
|
|
183
157
|
"defaultValue": "0"
|
|
@@ -205,8 +179,6 @@ export class HelperTabs {
|
|
|
205
179
|
"tags": [],
|
|
206
180
|
"text": "Tabs details"
|
|
207
181
|
},
|
|
208
|
-
"getter": false,
|
|
209
|
-
"setter": false,
|
|
210
182
|
"defaultValue": "[{label: 'How to Play'}, {label: 'About'}, {label: 'FAQs'}]"
|
|
211
183
|
},
|
|
212
184
|
"clientStyling": {
|
|
@@ -223,8 +195,6 @@ export class HelperTabs {
|
|
|
223
195
|
"tags": [],
|
|
224
196
|
"text": "Client custom styling via string"
|
|
225
197
|
},
|
|
226
|
-
"getter": false,
|
|
227
|
-
"setter": false,
|
|
228
198
|
"attribute": "client-styling",
|
|
229
199
|
"reflect": true,
|
|
230
200
|
"defaultValue": "''"
|
|
@@ -243,8 +213,6 @@ export class HelperTabs {
|
|
|
243
213
|
"tags": [],
|
|
244
214
|
"text": "Client custom styling via streamStyling"
|
|
245
215
|
},
|
|
246
|
-
"getter": false,
|
|
247
|
-
"setter": false,
|
|
248
216
|
"attribute": "mb-source",
|
|
249
217
|
"reflect": false
|
|
250
218
|
},
|
|
@@ -262,8 +230,6 @@ export class HelperTabs {
|
|
|
262
230
|
"tags": [],
|
|
263
231
|
"text": "Client custom styling via url"
|
|
264
232
|
},
|
|
265
|
-
"getter": false,
|
|
266
|
-
"setter": false,
|
|
267
233
|
"attribute": "client-stylingurl",
|
|
268
234
|
"reflect": true,
|
|
269
235
|
"defaultValue": "''"
|
|
@@ -282,8 +248,6 @@ export class HelperTabs {
|
|
|
282
248
|
"tags": [],
|
|
283
249
|
"text": "Client custom styling via url content"
|
|
284
250
|
},
|
|
285
|
-
"getter": false,
|
|
286
|
-
"setter": false,
|
|
287
251
|
"attribute": "client-styling-url",
|
|
288
252
|
"reflect": true,
|
|
289
253
|
"defaultValue": "''"
|
|
@@ -302,8 +266,6 @@ export class HelperTabs {
|
|
|
302
266
|
"tags": [],
|
|
303
267
|
"text": "Minimum number displayed in the board"
|
|
304
268
|
},
|
|
305
|
-
"getter": false,
|
|
306
|
-
"setter": false,
|
|
307
269
|
"attribute": "low-number",
|
|
308
270
|
"reflect": true
|
|
309
271
|
},
|
|
@@ -321,8 +283,6 @@ export class HelperTabs {
|
|
|
321
283
|
"tags": [],
|
|
322
284
|
"text": "Maximum number displayed in the board"
|
|
323
285
|
},
|
|
324
|
-
"getter": false,
|
|
325
|
-
"setter": false,
|
|
326
286
|
"attribute": "high-number",
|
|
327
287
|
"reflect": true
|
|
328
288
|
},
|
|
@@ -340,8 +300,6 @@ export class HelperTabs {
|
|
|
340
300
|
"tags": [],
|
|
341
301
|
"text": "Minimum number of numbers that can be selected"
|
|
342
302
|
},
|
|
343
|
-
"getter": false,
|
|
344
|
-
"setter": false,
|
|
345
303
|
"attribute": "minimum-allowed",
|
|
346
304
|
"reflect": true
|
|
347
305
|
},
|
|
@@ -359,8 +317,6 @@ export class HelperTabs {
|
|
|
359
317
|
"tags": [],
|
|
360
318
|
"text": "Maximum number of numbers that can be selected"
|
|
361
319
|
},
|
|
362
|
-
"getter": false,
|
|
363
|
-
"setter": false,
|
|
364
320
|
"attribute": "maxinum-allowed",
|
|
365
321
|
"reflect": true
|
|
366
322
|
},
|
|
@@ -378,8 +334,6 @@ export class HelperTabs {
|
|
|
378
334
|
"tags": [],
|
|
379
335
|
"text": "Language"
|
|
380
336
|
},
|
|
381
|
-
"getter": false,
|
|
382
|
-
"setter": false,
|
|
383
337
|
"attribute": "language",
|
|
384
338
|
"reflect": true,
|
|
385
339
|
"defaultValue": "'en'"
|
|
@@ -398,8 +352,6 @@ export class HelperTabs {
|
|
|
398
352
|
"tags": [],
|
|
399
353
|
"text": "Translations via parent component"
|
|
400
354
|
},
|
|
401
|
-
"getter": false,
|
|
402
|
-
"setter": false,
|
|
403
355
|
"attribute": "translation-url",
|
|
404
356
|
"reflect": true
|
|
405
357
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { r as registerInstance, h, g as getElement } from './index-
|
|
1
|
+
import { r as registerInstance, h, g as getElement } from './index-3174302b.js';
|
|
2
2
|
|
|
3
3
|
const DEFAULT_LANGUAGE = 'en';
|
|
4
4
|
const SUPPORTED_LANGUAGES = ['en'];
|
|
@@ -135,22 +135,17 @@ const HelperTabStyle0 = helperTabCss;
|
|
|
135
135
|
const HelperTab = class {
|
|
136
136
|
constructor(hostRef) {
|
|
137
137
|
registerInstance(this, hostRef);
|
|
138
|
-
/**
|
|
139
|
-
* Selected index
|
|
140
|
-
*/
|
|
141
138
|
this.selectedIndex = 0;
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
*/
|
|
139
|
+
this.cmsEndpoint = undefined;
|
|
140
|
+
this.mbSource = undefined;
|
|
145
141
|
this.clientStyling = '';
|
|
146
|
-
/**
|
|
147
|
-
* Client custom styling via url content
|
|
148
|
-
*/
|
|
149
142
|
this.clientStylingUrl = '';
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
143
|
+
this.lowNumber = undefined;
|
|
144
|
+
this.highNumber = undefined;
|
|
145
|
+
this.minimumAllowed = undefined;
|
|
146
|
+
this.maxinumAllowed = undefined;
|
|
153
147
|
this.language = 'en';
|
|
148
|
+
this.translationUrl = undefined;
|
|
154
149
|
this.tabContent = '';
|
|
155
150
|
}
|
|
156
151
|
handleClientStylingChange(newValue, oldValue) {
|
|
@@ -220,38 +215,22 @@ const HelperTabsStyle0 = helperTabsCss;
|
|
|
220
215
|
const HelperTabs = class {
|
|
221
216
|
constructor(hostRef) {
|
|
222
217
|
registerInstance(this, hostRef);
|
|
223
|
-
/**
|
|
224
|
-
* Tell me if it is disabled
|
|
225
|
-
*/
|
|
226
218
|
this.disabled = false;
|
|
227
|
-
|
|
228
|
-
* Tell me what tab is selected
|
|
229
|
-
*/
|
|
219
|
+
this.label = undefined;
|
|
230
220
|
this.selected = false;
|
|
231
|
-
|
|
232
|
-
* Default selected index
|
|
233
|
-
*/
|
|
221
|
+
this.cmsEndpoint = undefined;
|
|
234
222
|
this.selectedIndex = 0;
|
|
235
|
-
/**
|
|
236
|
-
* Tabs details
|
|
237
|
-
*/
|
|
238
223
|
this.tabs = [{ label: 'How to Play' }, { label: 'About' }, { label: 'FAQs' }];
|
|
239
|
-
/**
|
|
240
|
-
* Client custom styling via string
|
|
241
|
-
*/
|
|
242
224
|
this.clientStyling = '';
|
|
243
|
-
|
|
244
|
-
* Client custom styling via url
|
|
245
|
-
*/
|
|
225
|
+
this.mbSource = undefined;
|
|
246
226
|
this.clientStylingurl = '';
|
|
247
|
-
/**
|
|
248
|
-
* Client custom styling via url content
|
|
249
|
-
*/
|
|
250
227
|
this.clientStylingUrl = '';
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
228
|
+
this.lowNumber = undefined;
|
|
229
|
+
this.highNumber = undefined;
|
|
230
|
+
this.minimumAllowed = undefined;
|
|
231
|
+
this.maxinumAllowed = undefined;
|
|
254
232
|
this.language = 'en';
|
|
233
|
+
this.translationUrl = undefined;
|
|
255
234
|
}
|
|
256
235
|
connectedCallback() {
|
|
257
236
|
}
|
package/dist/esm/helper-tabs.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { p as promiseResolve, b as bootstrapLazy } from './index-
|
|
2
|
-
export { s as setNonce } from './index-
|
|
1
|
+
import { p as promiseResolve, b as bootstrapLazy } from './index-3174302b.js';
|
|
2
|
+
export { s as setNonce } from './index-3174302b.js';
|
|
3
3
|
import { g as globalScripts } from './app-globals-0f993ce5.js';
|
|
4
4
|
|
|
5
5
|
/*
|
|
6
|
-
Stencil Client Patch Browser v4.
|
|
6
|
+
Stencil Client Patch Browser v4.19.2 | MIT Licensed | https://stenciljs.com
|
|
7
7
|
*/
|
|
8
8
|
var patchBrowser = () => {
|
|
9
9
|
const importMeta = import.meta.url;
|