@everymatrix/helper-tabs 1.54.12 → 1.55.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-tab_2.cjs.entry.js +29 -52
- package/dist/cjs/helper-tabs.cjs.js +2 -2
- package/dist/cjs/{index-11d06848.js → index-d8f4ee8c.js} +70 -171
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +1 -1
- package/dist/collection/components/helper-tab/helper-tab.js +12 -38
- package/dist/collection/components/helper-tabs/helper-tabs.js +16 -63
- package/dist/esm/helper-tab_2.entry.js +29 -52
- package/dist/esm/helper-tabs.js +3 -3
- package/dist/esm/{index-a23eff9f.js → index-55376e55.js} +70 -171
- package/dist/esm/loader.js +2 -2
- package/dist/helper-tabs/helper-tabs.esm.js +1 -1
- package/dist/helper-tabs/p-47fcd693.js +2 -0
- package/dist/helper-tabs/p-7f43459b.entry.js +1 -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/package.json +1 -1
- package/dist/helper-tabs/p-c9bad8e6.js +0 -2
- package/dist/helper-tabs/p-e7d78538.entry.js +0 -1
- 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
|
@@ -2,24 +2,6 @@ import { h } from "@stencil/core";
|
|
|
2
2
|
import { translate, translateWithParams, getTranslations } from "../../utils/locale.utils";
|
|
3
3
|
export class HelperTab {
|
|
4
4
|
constructor() {
|
|
5
|
-
/**
|
|
6
|
-
* Selected index
|
|
7
|
-
*/
|
|
8
|
-
this.selectedIndex = 0;
|
|
9
|
-
/**
|
|
10
|
-
* Client custom styling via string
|
|
11
|
-
*/
|
|
12
|
-
this.clientStyling = '';
|
|
13
|
-
/**
|
|
14
|
-
* Client custom styling via url content
|
|
15
|
-
*/
|
|
16
|
-
this.clientStylingUrlContent = '';
|
|
17
|
-
/**
|
|
18
|
-
* Language of the widget
|
|
19
|
-
*/
|
|
20
|
-
this.language = 'en';
|
|
21
|
-
this.tabContent = '';
|
|
22
|
-
this.limitStylingAppends = false;
|
|
23
5
|
this.setClientStyling = () => {
|
|
24
6
|
let sheet = document.createElement('style');
|
|
25
7
|
sheet.innerHTML = this.clientStyling;
|
|
@@ -32,6 +14,18 @@ export class HelperTab {
|
|
|
32
14
|
this.stylingContainer.prepend(cssFile);
|
|
33
15
|
}, 1);
|
|
34
16
|
};
|
|
17
|
+
this.selectedIndex = 0;
|
|
18
|
+
this.cmsEndpoint = undefined;
|
|
19
|
+
this.clientStyling = '';
|
|
20
|
+
this.clientStylingUrlContent = '';
|
|
21
|
+
this.lowNumber = undefined;
|
|
22
|
+
this.highNumber = undefined;
|
|
23
|
+
this.minimumAllowed = undefined;
|
|
24
|
+
this.maxinumAllowed = undefined;
|
|
25
|
+
this.language = 'en';
|
|
26
|
+
this.translationUrl = undefined;
|
|
27
|
+
this.tabContent = '';
|
|
28
|
+
this.limitStylingAppends = false;
|
|
35
29
|
}
|
|
36
30
|
componentWillLoad() {
|
|
37
31
|
if (this.translationUrl) {
|
|
@@ -99,8 +93,6 @@ export class HelperTab {
|
|
|
99
93
|
"tags": [],
|
|
100
94
|
"text": "Selected index"
|
|
101
95
|
},
|
|
102
|
-
"getter": false,
|
|
103
|
-
"setter": false,
|
|
104
96
|
"attribute": "selected-index",
|
|
105
97
|
"reflect": true,
|
|
106
98
|
"defaultValue": "0"
|
|
@@ -119,8 +111,6 @@ export class HelperTab {
|
|
|
119
111
|
"tags": [],
|
|
120
112
|
"text": "Endpoing for CMS"
|
|
121
113
|
},
|
|
122
|
-
"getter": false,
|
|
123
|
-
"setter": false,
|
|
124
114
|
"attribute": "cms-endpoint",
|
|
125
115
|
"reflect": true
|
|
126
116
|
},
|
|
@@ -138,8 +128,6 @@ export class HelperTab {
|
|
|
138
128
|
"tags": [],
|
|
139
129
|
"text": "Client custom styling via string"
|
|
140
130
|
},
|
|
141
|
-
"getter": false,
|
|
142
|
-
"setter": false,
|
|
143
131
|
"attribute": "client-styling",
|
|
144
132
|
"reflect": true,
|
|
145
133
|
"defaultValue": "''"
|
|
@@ -158,8 +146,6 @@ export class HelperTab {
|
|
|
158
146
|
"tags": [],
|
|
159
147
|
"text": "Client custom styling via url content"
|
|
160
148
|
},
|
|
161
|
-
"getter": false,
|
|
162
|
-
"setter": false,
|
|
163
149
|
"attribute": "client-styling-url-content",
|
|
164
150
|
"reflect": true,
|
|
165
151
|
"defaultValue": "''"
|
|
@@ -178,8 +164,6 @@ export class HelperTab {
|
|
|
178
164
|
"tags": [],
|
|
179
165
|
"text": "Minimum number displayed in the board"
|
|
180
166
|
},
|
|
181
|
-
"getter": false,
|
|
182
|
-
"setter": false,
|
|
183
167
|
"attribute": "low-number",
|
|
184
168
|
"reflect": true
|
|
185
169
|
},
|
|
@@ -197,8 +181,6 @@ export class HelperTab {
|
|
|
197
181
|
"tags": [],
|
|
198
182
|
"text": "Maximum number displayed in the board"
|
|
199
183
|
},
|
|
200
|
-
"getter": false,
|
|
201
|
-
"setter": false,
|
|
202
184
|
"attribute": "high-number",
|
|
203
185
|
"reflect": true
|
|
204
186
|
},
|
|
@@ -216,8 +198,6 @@ export class HelperTab {
|
|
|
216
198
|
"tags": [],
|
|
217
199
|
"text": "Minimum number of numbers that can be selected"
|
|
218
200
|
},
|
|
219
|
-
"getter": false,
|
|
220
|
-
"setter": false,
|
|
221
201
|
"attribute": "minimum-allowed",
|
|
222
202
|
"reflect": true
|
|
223
203
|
},
|
|
@@ -235,8 +215,6 @@ export class HelperTab {
|
|
|
235
215
|
"tags": [],
|
|
236
216
|
"text": "Maximum number of numbers that can be selected"
|
|
237
217
|
},
|
|
238
|
-
"getter": false,
|
|
239
|
-
"setter": false,
|
|
240
218
|
"attribute": "maxinum-allowed",
|
|
241
219
|
"reflect": true
|
|
242
220
|
},
|
|
@@ -254,8 +232,6 @@ export class HelperTab {
|
|
|
254
232
|
"tags": [],
|
|
255
233
|
"text": "Language of the widget"
|
|
256
234
|
},
|
|
257
|
-
"getter": false,
|
|
258
|
-
"setter": false,
|
|
259
235
|
"attribute": "language",
|
|
260
236
|
"reflect": true,
|
|
261
237
|
"defaultValue": "'en'"
|
|
@@ -274,8 +250,6 @@ export class HelperTab {
|
|
|
274
250
|
"tags": [],
|
|
275
251
|
"text": "Translations via parent component"
|
|
276
252
|
},
|
|
277
|
-
"getter": false,
|
|
278
|
-
"setter": false,
|
|
279
253
|
"attribute": "translation-url",
|
|
280
254
|
"reflect": true
|
|
281
255
|
}
|
|
@@ -1,39 +1,6 @@
|
|
|
1
1
|
import { h } from "@stencil/core";
|
|
2
2
|
export class HelperTabs {
|
|
3
3
|
constructor() {
|
|
4
|
-
/**
|
|
5
|
-
* Tell me if it is disabled
|
|
6
|
-
*/
|
|
7
|
-
this.disabled = false;
|
|
8
|
-
/**
|
|
9
|
-
* Tell me what tab is selected
|
|
10
|
-
*/
|
|
11
|
-
this.selected = false;
|
|
12
|
-
/**
|
|
13
|
-
* Default selected index
|
|
14
|
-
*/
|
|
15
|
-
this.selectedIndex = 0;
|
|
16
|
-
/**
|
|
17
|
-
* Tabs details
|
|
18
|
-
*/
|
|
19
|
-
this.tabs = [{ label: 'How to Play' }, { label: 'About' }, { label: 'FAQs' }];
|
|
20
|
-
/**
|
|
21
|
-
* Client custom styling via string
|
|
22
|
-
*/
|
|
23
|
-
this.clientStyling = '';
|
|
24
|
-
/**
|
|
25
|
-
* Client custom styling via url
|
|
26
|
-
*/
|
|
27
|
-
this.clientStylingurl = '';
|
|
28
|
-
/**
|
|
29
|
-
* Client custom styling via url content
|
|
30
|
-
*/
|
|
31
|
-
this.clientStylingUrlContent = '';
|
|
32
|
-
/**
|
|
33
|
-
* Language
|
|
34
|
-
*/
|
|
35
|
-
this.language = 'en';
|
|
36
|
-
this.limitStylingAppends = false;
|
|
37
4
|
this.setClientStyling = () => {
|
|
38
5
|
let sheet = document.createElement('style');
|
|
39
6
|
sheet.innerHTML = this.clientStyling;
|
|
@@ -46,6 +13,22 @@ export class HelperTabs {
|
|
|
46
13
|
this.stylingContainer.prepend(cssFile);
|
|
47
14
|
}, 1);
|
|
48
15
|
};
|
|
16
|
+
this.disabled = false;
|
|
17
|
+
this.label = undefined;
|
|
18
|
+
this.selected = false;
|
|
19
|
+
this.cmsEndpoint = undefined;
|
|
20
|
+
this.selectedIndex = 0;
|
|
21
|
+
this.tabs = [{ label: 'How to Play' }, { label: 'About' }, { label: 'FAQs' }];
|
|
22
|
+
this.clientStyling = '';
|
|
23
|
+
this.clientStylingurl = '';
|
|
24
|
+
this.clientStylingUrlContent = '';
|
|
25
|
+
this.lowNumber = undefined;
|
|
26
|
+
this.highNumber = undefined;
|
|
27
|
+
this.minimumAllowed = undefined;
|
|
28
|
+
this.maxinumAllowed = undefined;
|
|
29
|
+
this.language = 'en';
|
|
30
|
+
this.translationUrl = undefined;
|
|
31
|
+
this.limitStylingAppends = false;
|
|
49
32
|
}
|
|
50
33
|
connectedCallback() {
|
|
51
34
|
if (this.tabs.length == 0) {
|
|
@@ -94,8 +77,6 @@ export class HelperTabs {
|
|
|
94
77
|
"tags": [],
|
|
95
78
|
"text": "Tell me if it is disabled"
|
|
96
79
|
},
|
|
97
|
-
"getter": false,
|
|
98
|
-
"setter": false,
|
|
99
80
|
"attribute": "disabled",
|
|
100
81
|
"reflect": true,
|
|
101
82
|
"defaultValue": "false"
|
|
@@ -114,8 +95,6 @@ export class HelperTabs {
|
|
|
114
95
|
"tags": [],
|
|
115
96
|
"text": "Gimme names or you die"
|
|
116
97
|
},
|
|
117
|
-
"getter": false,
|
|
118
|
-
"setter": false,
|
|
119
98
|
"attribute": "label",
|
|
120
99
|
"reflect": true
|
|
121
100
|
},
|
|
@@ -133,8 +112,6 @@ export class HelperTabs {
|
|
|
133
112
|
"tags": [],
|
|
134
113
|
"text": "Tell me what tab is selected"
|
|
135
114
|
},
|
|
136
|
-
"getter": false,
|
|
137
|
-
"setter": false,
|
|
138
115
|
"attribute": "selected",
|
|
139
116
|
"reflect": true,
|
|
140
117
|
"defaultValue": "false"
|
|
@@ -153,8 +130,6 @@ export class HelperTabs {
|
|
|
153
130
|
"tags": [],
|
|
154
131
|
"text": "Endpoing for CMS"
|
|
155
132
|
},
|
|
156
|
-
"getter": false,
|
|
157
|
-
"setter": false,
|
|
158
133
|
"attribute": "cms-endpoint",
|
|
159
134
|
"reflect": true
|
|
160
135
|
},
|
|
@@ -172,8 +147,6 @@ export class HelperTabs {
|
|
|
172
147
|
"tags": [],
|
|
173
148
|
"text": "Default selected index"
|
|
174
149
|
},
|
|
175
|
-
"getter": false,
|
|
176
|
-
"setter": false,
|
|
177
150
|
"attribute": "selected-index",
|
|
178
151
|
"reflect": true,
|
|
179
152
|
"defaultValue": "0"
|
|
@@ -201,8 +174,6 @@ export class HelperTabs {
|
|
|
201
174
|
"tags": [],
|
|
202
175
|
"text": "Tabs details"
|
|
203
176
|
},
|
|
204
|
-
"getter": false,
|
|
205
|
-
"setter": false,
|
|
206
177
|
"defaultValue": "[{label: 'How to Play'}, {label: 'About'}, {label: 'FAQs'}]"
|
|
207
178
|
},
|
|
208
179
|
"clientStyling": {
|
|
@@ -219,8 +190,6 @@ export class HelperTabs {
|
|
|
219
190
|
"tags": [],
|
|
220
191
|
"text": "Client custom styling via string"
|
|
221
192
|
},
|
|
222
|
-
"getter": false,
|
|
223
|
-
"setter": false,
|
|
224
193
|
"attribute": "client-styling",
|
|
225
194
|
"reflect": true,
|
|
226
195
|
"defaultValue": "''"
|
|
@@ -239,8 +208,6 @@ export class HelperTabs {
|
|
|
239
208
|
"tags": [],
|
|
240
209
|
"text": "Client custom styling via url"
|
|
241
210
|
},
|
|
242
|
-
"getter": false,
|
|
243
|
-
"setter": false,
|
|
244
211
|
"attribute": "client-stylingurl",
|
|
245
212
|
"reflect": true,
|
|
246
213
|
"defaultValue": "''"
|
|
@@ -259,8 +226,6 @@ export class HelperTabs {
|
|
|
259
226
|
"tags": [],
|
|
260
227
|
"text": "Client custom styling via url content"
|
|
261
228
|
},
|
|
262
|
-
"getter": false,
|
|
263
|
-
"setter": false,
|
|
264
229
|
"attribute": "client-styling-url-content",
|
|
265
230
|
"reflect": true,
|
|
266
231
|
"defaultValue": "''"
|
|
@@ -279,8 +244,6 @@ export class HelperTabs {
|
|
|
279
244
|
"tags": [],
|
|
280
245
|
"text": "Minimum number displayed in the board"
|
|
281
246
|
},
|
|
282
|
-
"getter": false,
|
|
283
|
-
"setter": false,
|
|
284
247
|
"attribute": "low-number",
|
|
285
248
|
"reflect": true
|
|
286
249
|
},
|
|
@@ -298,8 +261,6 @@ export class HelperTabs {
|
|
|
298
261
|
"tags": [],
|
|
299
262
|
"text": "Maximum number displayed in the board"
|
|
300
263
|
},
|
|
301
|
-
"getter": false,
|
|
302
|
-
"setter": false,
|
|
303
264
|
"attribute": "high-number",
|
|
304
265
|
"reflect": true
|
|
305
266
|
},
|
|
@@ -317,8 +278,6 @@ export class HelperTabs {
|
|
|
317
278
|
"tags": [],
|
|
318
279
|
"text": "Minimum number of numbers that can be selected"
|
|
319
280
|
},
|
|
320
|
-
"getter": false,
|
|
321
|
-
"setter": false,
|
|
322
281
|
"attribute": "minimum-allowed",
|
|
323
282
|
"reflect": true
|
|
324
283
|
},
|
|
@@ -336,8 +295,6 @@ export class HelperTabs {
|
|
|
336
295
|
"tags": [],
|
|
337
296
|
"text": "Maximum number of numbers that can be selected"
|
|
338
297
|
},
|
|
339
|
-
"getter": false,
|
|
340
|
-
"setter": false,
|
|
341
298
|
"attribute": "maxinum-allowed",
|
|
342
299
|
"reflect": true
|
|
343
300
|
},
|
|
@@ -355,8 +312,6 @@ export class HelperTabs {
|
|
|
355
312
|
"tags": [],
|
|
356
313
|
"text": "Language"
|
|
357
314
|
},
|
|
358
|
-
"getter": false,
|
|
359
|
-
"setter": false,
|
|
360
315
|
"attribute": "language",
|
|
361
316
|
"reflect": true,
|
|
362
317
|
"defaultValue": "'en'"
|
|
@@ -375,8 +330,6 @@ export class HelperTabs {
|
|
|
375
330
|
"tags": [],
|
|
376
331
|
"text": "Translations via parent component"
|
|
377
332
|
},
|
|
378
|
-
"getter": false,
|
|
379
|
-
"setter": false,
|
|
380
333
|
"attribute": "translation-url",
|
|
381
334
|
"reflect": true
|
|
382
335
|
}
|
|
@@ -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-55376e55.js';
|
|
2
2
|
|
|
3
3
|
const DEFAULT_LANGUAGE = 'en';
|
|
4
4
|
const SUPPORTED_LANGUAGES = ['en'];
|
|
@@ -78,24 +78,6 @@ const HelperTabStyle0 = helperTabCss;
|
|
|
78
78
|
const HelperTab = class {
|
|
79
79
|
constructor(hostRef) {
|
|
80
80
|
registerInstance(this, hostRef);
|
|
81
|
-
/**
|
|
82
|
-
* Selected index
|
|
83
|
-
*/
|
|
84
|
-
this.selectedIndex = 0;
|
|
85
|
-
/**
|
|
86
|
-
* Client custom styling via string
|
|
87
|
-
*/
|
|
88
|
-
this.clientStyling = '';
|
|
89
|
-
/**
|
|
90
|
-
* Client custom styling via url content
|
|
91
|
-
*/
|
|
92
|
-
this.clientStylingUrlContent = '';
|
|
93
|
-
/**
|
|
94
|
-
* Language of the widget
|
|
95
|
-
*/
|
|
96
|
-
this.language = 'en';
|
|
97
|
-
this.tabContent = '';
|
|
98
|
-
this.limitStylingAppends = false;
|
|
99
81
|
this.setClientStyling = () => {
|
|
100
82
|
let sheet = document.createElement('style');
|
|
101
83
|
sheet.innerHTML = this.clientStyling;
|
|
@@ -108,6 +90,18 @@ const HelperTab = class {
|
|
|
108
90
|
this.stylingContainer.prepend(cssFile);
|
|
109
91
|
}, 1);
|
|
110
92
|
};
|
|
93
|
+
this.selectedIndex = 0;
|
|
94
|
+
this.cmsEndpoint = undefined;
|
|
95
|
+
this.clientStyling = '';
|
|
96
|
+
this.clientStylingUrlContent = '';
|
|
97
|
+
this.lowNumber = undefined;
|
|
98
|
+
this.highNumber = undefined;
|
|
99
|
+
this.minimumAllowed = undefined;
|
|
100
|
+
this.maxinumAllowed = undefined;
|
|
101
|
+
this.language = 'en';
|
|
102
|
+
this.translationUrl = undefined;
|
|
103
|
+
this.tabContent = '';
|
|
104
|
+
this.limitStylingAppends = false;
|
|
111
105
|
}
|
|
112
106
|
componentWillLoad() {
|
|
113
107
|
if (this.translationUrl) {
|
|
@@ -156,39 +150,6 @@ const HelperTabsStyle0 = helperTabsCss;
|
|
|
156
150
|
const HelperTabs = class {
|
|
157
151
|
constructor(hostRef) {
|
|
158
152
|
registerInstance(this, hostRef);
|
|
159
|
-
/**
|
|
160
|
-
* Tell me if it is disabled
|
|
161
|
-
*/
|
|
162
|
-
this.disabled = false;
|
|
163
|
-
/**
|
|
164
|
-
* Tell me what tab is selected
|
|
165
|
-
*/
|
|
166
|
-
this.selected = false;
|
|
167
|
-
/**
|
|
168
|
-
* Default selected index
|
|
169
|
-
*/
|
|
170
|
-
this.selectedIndex = 0;
|
|
171
|
-
/**
|
|
172
|
-
* Tabs details
|
|
173
|
-
*/
|
|
174
|
-
this.tabs = [{ label: 'How to Play' }, { label: 'About' }, { label: 'FAQs' }];
|
|
175
|
-
/**
|
|
176
|
-
* Client custom styling via string
|
|
177
|
-
*/
|
|
178
|
-
this.clientStyling = '';
|
|
179
|
-
/**
|
|
180
|
-
* Client custom styling via url
|
|
181
|
-
*/
|
|
182
|
-
this.clientStylingurl = '';
|
|
183
|
-
/**
|
|
184
|
-
* Client custom styling via url content
|
|
185
|
-
*/
|
|
186
|
-
this.clientStylingUrlContent = '';
|
|
187
|
-
/**
|
|
188
|
-
* Language
|
|
189
|
-
*/
|
|
190
|
-
this.language = 'en';
|
|
191
|
-
this.limitStylingAppends = false;
|
|
192
153
|
this.setClientStyling = () => {
|
|
193
154
|
let sheet = document.createElement('style');
|
|
194
155
|
sheet.innerHTML = this.clientStyling;
|
|
@@ -201,6 +162,22 @@ const HelperTabs = class {
|
|
|
201
162
|
this.stylingContainer.prepend(cssFile);
|
|
202
163
|
}, 1);
|
|
203
164
|
};
|
|
165
|
+
this.disabled = false;
|
|
166
|
+
this.label = undefined;
|
|
167
|
+
this.selected = false;
|
|
168
|
+
this.cmsEndpoint = undefined;
|
|
169
|
+
this.selectedIndex = 0;
|
|
170
|
+
this.tabs = [{ label: 'How to Play' }, { label: 'About' }, { label: 'FAQs' }];
|
|
171
|
+
this.clientStyling = '';
|
|
172
|
+
this.clientStylingurl = '';
|
|
173
|
+
this.clientStylingUrlContent = '';
|
|
174
|
+
this.lowNumber = undefined;
|
|
175
|
+
this.highNumber = undefined;
|
|
176
|
+
this.minimumAllowed = undefined;
|
|
177
|
+
this.maxinumAllowed = undefined;
|
|
178
|
+
this.language = 'en';
|
|
179
|
+
this.translationUrl = undefined;
|
|
180
|
+
this.limitStylingAppends = false;
|
|
204
181
|
}
|
|
205
182
|
connectedCallback() {
|
|
206
183
|
}
|
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-55376e55.js';
|
|
2
|
+
export { s as setNonce } from './index-55376e55.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.22.3 | MIT Licensed | https://stenciljs.com
|
|
7
7
|
*/
|
|
8
8
|
var patchBrowser = () => {
|
|
9
9
|
const importMeta = import.meta.url;
|