@six-group/ui-library-vue 0.0.0-insider.9277796 → 0.0.0-insider.93c8f70
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/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/plugin.d.ts +6 -1
- package/dist/plugin.js +14 -6
- package/dist/plugin.js.map +1 -1
- package/dist/stencil-generated/components.d.ts +59 -0
- package/dist/{components.js → stencil-generated/components.js} +210 -60
- package/dist/stencil-generated/components.js.map +1 -0
- package/dist/stencil-generated/vue-component-lib/utils.d.ts +16 -0
- package/dist/{vue-component-lib → stencil-generated/vue-component-lib}/utils.js +74 -38
- package/dist/stencil-generated/vue-component-lib/utils.js.map +1 -0
- package/package.json +29 -19
- package/LICENSE +0 -201
- package/dist/components.d.ts +0 -58
- package/dist/components.js.map +0 -1
- package/dist/vue-component-lib/utils.d.ts +0 -20
- package/dist/vue-component-lib/utils.js.map +0 -1
|
@@ -1,12 +1,7 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* auto-generated vue proxies */
|
|
4
|
-
import { defineContainer } from '
|
|
5
|
-
import { defineCustomElements } from '@six-group/ui-library/loader';
|
|
6
|
-
defineCustomElements();
|
|
7
|
-
export const SetAttributes = /*@__PURE__*/ defineContainer('set-attributes', undefined, [
|
|
8
|
-
'value'
|
|
9
|
-
]);
|
|
4
|
+
import { defineContainer } from '@stencil/vue-output-target/runtime';
|
|
10
5
|
export const SixAlert = /*@__PURE__*/ defineContainer('six-alert', undefined, [
|
|
11
6
|
'open',
|
|
12
7
|
'closable',
|
|
@@ -16,6 +11,11 @@ export const SixAlert = /*@__PURE__*/ defineContainer('six-alert', undefined, [
|
|
|
16
11
|
'six-alert-after-show',
|
|
17
12
|
'six-alert-hide',
|
|
18
13
|
'six-alert-after-hide'
|
|
14
|
+
], [
|
|
15
|
+
'six-alert-show',
|
|
16
|
+
'six-alert-after-show',
|
|
17
|
+
'six-alert-hide',
|
|
18
|
+
'six-alert-after-hide'
|
|
19
19
|
]);
|
|
20
20
|
export const SixAvatar = /*@__PURE__*/ defineContainer('six-avatar', undefined, [
|
|
21
21
|
'image',
|
|
@@ -45,6 +45,9 @@ export const SixButton = /*@__PURE__*/ defineContainer('six-button', undefined,
|
|
|
45
45
|
'download',
|
|
46
46
|
'six-button-blur',
|
|
47
47
|
'six-button-focus'
|
|
48
|
+
], [
|
|
49
|
+
'six-button-blur',
|
|
50
|
+
'six-button-focus'
|
|
48
51
|
]);
|
|
49
52
|
export const SixCard = /*@__PURE__*/ defineContainer('six-card', undefined);
|
|
50
53
|
export const SixCheckbox = /*@__PURE__*/ defineContainer('six-checkbox', undefined, [
|
|
@@ -54,14 +57,44 @@ export const SixCheckbox = /*@__PURE__*/ defineContainer('six-checkbox', undefin
|
|
|
54
57
|
'required',
|
|
55
58
|
'label',
|
|
56
59
|
'errorText',
|
|
60
|
+
'errorTextCount',
|
|
61
|
+
'invalid',
|
|
57
62
|
'checked',
|
|
58
63
|
'indeterminate',
|
|
59
|
-
'invalid',
|
|
60
|
-
'errorOnBlur',
|
|
61
64
|
'six-checkbox-blur',
|
|
62
65
|
'six-checkbox-change',
|
|
63
66
|
'six-checkbox-focus'
|
|
64
|
-
],
|
|
67
|
+
], [
|
|
68
|
+
'six-checkbox-blur',
|
|
69
|
+
'six-checkbox-change',
|
|
70
|
+
'six-checkbox-focus'
|
|
71
|
+
], 'checked', 'change');
|
|
72
|
+
export const SixDate = /*@__PURE__*/ defineContainer('six-date', undefined, [
|
|
73
|
+
'language',
|
|
74
|
+
'readonly',
|
|
75
|
+
'disabled',
|
|
76
|
+
'allowedDates',
|
|
77
|
+
'min',
|
|
78
|
+
'max',
|
|
79
|
+
'size',
|
|
80
|
+
'required',
|
|
81
|
+
'placeholder',
|
|
82
|
+
'value',
|
|
83
|
+
'dateFormat',
|
|
84
|
+
'label',
|
|
85
|
+
'helpText',
|
|
86
|
+
'errorText',
|
|
87
|
+
'errorTextCount',
|
|
88
|
+
'invalid',
|
|
89
|
+
'debounce',
|
|
90
|
+
'name',
|
|
91
|
+
'clearable',
|
|
92
|
+
'six-change',
|
|
93
|
+
'six-blur'
|
|
94
|
+
], [
|
|
95
|
+
'six-change',
|
|
96
|
+
'six-blur'
|
|
97
|
+
], 'value', 'change');
|
|
65
98
|
export const SixDatepicker = /*@__PURE__*/ defineContainer('six-datepicker', undefined, [
|
|
66
99
|
'type',
|
|
67
100
|
'locale',
|
|
@@ -79,12 +112,13 @@ export const SixDatepicker = /*@__PURE__*/ defineContainer('six-datepicker', und
|
|
|
79
112
|
'defaultDate',
|
|
80
113
|
'placeholder',
|
|
81
114
|
'value',
|
|
115
|
+
'label',
|
|
116
|
+
'errorText',
|
|
117
|
+
'errorTextCount',
|
|
118
|
+
'invalid',
|
|
82
119
|
'containingElement',
|
|
83
120
|
'dateFormat',
|
|
84
121
|
'debounce',
|
|
85
|
-
'errorOnBlur',
|
|
86
|
-
'errorText',
|
|
87
|
-
'label',
|
|
88
122
|
'name',
|
|
89
123
|
'clearable',
|
|
90
124
|
'iconPosition',
|
|
@@ -92,7 +126,11 @@ export const SixDatepicker = /*@__PURE__*/ defineContainer('six-datepicker', und
|
|
|
92
126
|
'six-datepicker-select',
|
|
93
127
|
'six-datepicker-clear',
|
|
94
128
|
'six-datepicker-blur'
|
|
95
|
-
],
|
|
129
|
+
], [
|
|
130
|
+
'six-datepicker-select',
|
|
131
|
+
'six-datepicker-clear',
|
|
132
|
+
'six-datepicker-blur'
|
|
133
|
+
], 'value', 'change');
|
|
96
134
|
export const SixDetails = /*@__PURE__*/ defineContainer('six-details', undefined, [
|
|
97
135
|
'open',
|
|
98
136
|
'summary',
|
|
@@ -106,6 +144,11 @@ export const SixDetails = /*@__PURE__*/ defineContainer('six-details', undefined
|
|
|
106
144
|
'six-details-after-show',
|
|
107
145
|
'six-details-hide',
|
|
108
146
|
'six-details-after-hide'
|
|
147
|
+
], [
|
|
148
|
+
'six-details-show',
|
|
149
|
+
'six-details-after-show',
|
|
150
|
+
'six-details-hide',
|
|
151
|
+
'six-details-after-hide'
|
|
109
152
|
]);
|
|
110
153
|
export const SixDialog = /*@__PURE__*/ defineContainer('six-dialog', undefined, [
|
|
111
154
|
'open',
|
|
@@ -117,6 +160,13 @@ export const SixDialog = /*@__PURE__*/ defineContainer('six-dialog', undefined,
|
|
|
117
160
|
'six-dialog-after-hide',
|
|
118
161
|
'six-dialog-initial-focus',
|
|
119
162
|
'six-dialog-overlay-dismiss'
|
|
163
|
+
], [
|
|
164
|
+
'six-dialog-show',
|
|
165
|
+
'six-dialog-after-show',
|
|
166
|
+
'six-dialog-hide',
|
|
167
|
+
'six-dialog-after-hide',
|
|
168
|
+
'six-dialog-initial-focus',
|
|
169
|
+
'six-dialog-overlay-dismiss'
|
|
120
170
|
]);
|
|
121
171
|
export const SixDrawer = /*@__PURE__*/ defineContainer('six-drawer', undefined, [
|
|
122
172
|
'open',
|
|
@@ -130,6 +180,13 @@ export const SixDrawer = /*@__PURE__*/ defineContainer('six-drawer', undefined,
|
|
|
130
180
|
'six-drawer-after-hide',
|
|
131
181
|
'six-drawer-initial-focus',
|
|
132
182
|
'six-drawer-overlay-dismiss'
|
|
183
|
+
], [
|
|
184
|
+
'six-drawer-show',
|
|
185
|
+
'six-drawer-after-show',
|
|
186
|
+
'six-drawer-hide',
|
|
187
|
+
'six-drawer-after-hide',
|
|
188
|
+
'six-drawer-initial-focus',
|
|
189
|
+
'six-drawer-overlay-dismiss'
|
|
133
190
|
]);
|
|
134
191
|
export const SixDropdown = /*@__PURE__*/ defineContainer('six-dropdown', undefined, [
|
|
135
192
|
'open',
|
|
@@ -147,6 +204,15 @@ export const SixDropdown = /*@__PURE__*/ defineContainer('six-dropdown', undefin
|
|
|
147
204
|
'disableHideOnEnterAndSpace',
|
|
148
205
|
'options',
|
|
149
206
|
'virtualScroll',
|
|
207
|
+
'matchTriggerWidth',
|
|
208
|
+
'six-dropdown-show',
|
|
209
|
+
'six-dropdown-after-show',
|
|
210
|
+
'six-dropdown-hide',
|
|
211
|
+
'six-dropdown-after-hide',
|
|
212
|
+
'six-dropdown-auto-filter-fired',
|
|
213
|
+
'six-async-filter-fired',
|
|
214
|
+
'six-dropdown-scroll'
|
|
215
|
+
], [
|
|
150
216
|
'six-dropdown-show',
|
|
151
217
|
'six-dropdown-after-show',
|
|
152
218
|
'six-dropdown-hide',
|
|
@@ -155,6 +221,7 @@ export const SixDropdown = /*@__PURE__*/ defineContainer('six-dropdown', undefin
|
|
|
155
221
|
'six-async-filter-fired',
|
|
156
222
|
'six-dropdown-scroll'
|
|
157
223
|
]);
|
|
224
|
+
export const SixError = /*@__PURE__*/ defineContainer('six-error', undefined);
|
|
158
225
|
export const SixErrorPage = /*@__PURE__*/ defineContainer('six-error-page', undefined, [
|
|
159
226
|
'errorCode',
|
|
160
227
|
'language',
|
|
@@ -172,6 +239,9 @@ export const SixFileListItem = /*@__PURE__*/ defineContainer('six-file-list-item
|
|
|
172
239
|
'nodelete',
|
|
173
240
|
'six-file-list-item-download',
|
|
174
241
|
'six-file-list-item-remove'
|
|
242
|
+
], [
|
|
243
|
+
'six-file-list-item-download',
|
|
244
|
+
'six-file-list-item-remove'
|
|
175
245
|
]);
|
|
176
246
|
export const SixFileUpload = /*@__PURE__*/ defineContainer('six-file-upload', undefined, [
|
|
177
247
|
'compact',
|
|
@@ -180,16 +250,16 @@ export const SixFileUpload = /*@__PURE__*/ defineContainer('six-file-upload', un
|
|
|
180
250
|
'accept',
|
|
181
251
|
'multiple',
|
|
182
252
|
'maxFileSize',
|
|
253
|
+
'uploading',
|
|
254
|
+
'errorText',
|
|
255
|
+
'invalid',
|
|
256
|
+
'six-file-upload-success',
|
|
257
|
+
'six-file-upload-failure'
|
|
258
|
+
], [
|
|
183
259
|
'six-file-upload-success',
|
|
184
260
|
'six-file-upload-failure'
|
|
185
261
|
]);
|
|
186
262
|
export const SixFooter = /*@__PURE__*/ defineContainer('six-footer', undefined);
|
|
187
|
-
export const SixForm = /*@__PURE__*/ defineContainer('six-form', undefined, [
|
|
188
|
-
'novalidate',
|
|
189
|
-
'six-form-submit',
|
|
190
|
-
'six-form-change',
|
|
191
|
-
'six-form-reset'
|
|
192
|
-
]);
|
|
193
263
|
export const SixGroupLabel = /*@__PURE__*/ defineContainer('six-group-label', undefined, [
|
|
194
264
|
'size',
|
|
195
265
|
'label',
|
|
@@ -199,15 +269,21 @@ export const SixGroupLabel = /*@__PURE__*/ defineContainer('six-group-label', un
|
|
|
199
269
|
]);
|
|
200
270
|
export const SixHeader = /*@__PURE__*/ defineContainer('six-header', undefined, [
|
|
201
271
|
'shiftContent',
|
|
202
|
-
'
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
'
|
|
206
|
-
'
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
'
|
|
210
|
-
|
|
272
|
+
'openSearch'
|
|
273
|
+
]);
|
|
274
|
+
export const SixHeaderDropdownItem = /*@__PURE__*/ defineContainer('six-header-dropdown-item', undefined, [
|
|
275
|
+
'filter',
|
|
276
|
+
'filterPlaceholder'
|
|
277
|
+
]);
|
|
278
|
+
export const SixHeaderItem = /*@__PURE__*/ defineContainer('six-header-item', undefined, [
|
|
279
|
+
'active'
|
|
280
|
+
]);
|
|
281
|
+
export const SixHeaderMenuButton = /*@__PURE__*/ defineContainer('six-header-menu-button', undefined, [
|
|
282
|
+
'caret',
|
|
283
|
+
'disabled',
|
|
284
|
+
'loading',
|
|
285
|
+
'submit',
|
|
286
|
+
'reset'
|
|
211
287
|
]);
|
|
212
288
|
export const SixIcon = /*@__PURE__*/ defineContainer('six-icon', undefined, [
|
|
213
289
|
'size',
|
|
@@ -218,7 +294,10 @@ export const SixIconButton = /*@__PURE__*/ defineContainer('six-icon-button', un
|
|
|
218
294
|
'size',
|
|
219
295
|
'label',
|
|
220
296
|
'disabled',
|
|
221
|
-
'html'
|
|
297
|
+
'html',
|
|
298
|
+
'href',
|
|
299
|
+
'target',
|
|
300
|
+
'download'
|
|
222
301
|
]);
|
|
223
302
|
export const SixInput = /*@__PURE__*/ defineContainer('six-input', undefined, [
|
|
224
303
|
'type',
|
|
@@ -226,9 +305,7 @@ export const SixInput = /*@__PURE__*/ defineContainer('six-input', undefined, [
|
|
|
226
305
|
'name',
|
|
227
306
|
'value',
|
|
228
307
|
'pill',
|
|
229
|
-
'label',
|
|
230
308
|
'helpText',
|
|
231
|
-
'errorText',
|
|
232
309
|
'placeholder',
|
|
233
310
|
'disabled',
|
|
234
311
|
'readonly',
|
|
@@ -238,25 +315,33 @@ export const SixInput = /*@__PURE__*/ defineContainer('six-input', undefined, [
|
|
|
238
315
|
'max',
|
|
239
316
|
'step',
|
|
240
317
|
'pattern',
|
|
318
|
+
'dropdownSearch',
|
|
241
319
|
'required',
|
|
242
320
|
'autocapitalize',
|
|
243
321
|
'autocorrect',
|
|
244
322
|
'autocomplete',
|
|
245
323
|
'autofocus',
|
|
246
324
|
'spellcheck',
|
|
325
|
+
'label',
|
|
326
|
+
'errorText',
|
|
327
|
+
'errorTextCount',
|
|
247
328
|
'invalid',
|
|
248
329
|
'clearable',
|
|
249
330
|
'togglePassword',
|
|
250
331
|
'inputmode',
|
|
251
332
|
'line',
|
|
252
|
-
'errorOnBlur',
|
|
253
333
|
'six-input-change',
|
|
254
334
|
'six-input-clear',
|
|
255
335
|
'six-input-input',
|
|
256
336
|
'six-input-focus',
|
|
257
|
-
'six-input-blur'
|
|
258
|
-
|
|
259
|
-
|
|
337
|
+
'six-input-blur'
|
|
338
|
+
], [
|
|
339
|
+
'six-input-change',
|
|
340
|
+
'six-input-clear',
|
|
341
|
+
'six-input-input',
|
|
342
|
+
'six-input-focus',
|
|
343
|
+
'six-input-blur'
|
|
344
|
+
], 'value', 'input');
|
|
260
345
|
export const SixItemPicker = /*@__PURE__*/ defineContainer('six-item-picker', undefined, [
|
|
261
346
|
'value',
|
|
262
347
|
'type',
|
|
@@ -274,15 +359,23 @@ export const SixItemPicker = /*@__PURE__*/ defineContainer('six-item-picker', un
|
|
|
274
359
|
'debounce',
|
|
275
360
|
'six-item-picker-change',
|
|
276
361
|
'six-item-picker-change-debounced'
|
|
362
|
+
], [
|
|
363
|
+
'six-item-picker-change',
|
|
364
|
+
'six-item-picker-change-debounced'
|
|
277
365
|
]);
|
|
278
366
|
export const SixLanguageSwitcher = /*@__PURE__*/ defineContainer('six-language-switcher', undefined, [
|
|
279
367
|
'selected',
|
|
280
368
|
'languages',
|
|
281
369
|
'six-language-switcher-change'
|
|
370
|
+
], [
|
|
371
|
+
'six-language-switcher-change'
|
|
282
372
|
]);
|
|
283
373
|
export const SixLayoutGrid = /*@__PURE__*/ defineContainer('six-layout-grid', undefined, [
|
|
284
374
|
'columns'
|
|
285
375
|
]);
|
|
376
|
+
export const SixLogo = /*@__PURE__*/ defineContainer('six-logo', undefined, [
|
|
377
|
+
'brand'
|
|
378
|
+
]);
|
|
286
379
|
export const SixMainContainer = /*@__PURE__*/ defineContainer('six-main-container', undefined, [
|
|
287
380
|
'padded'
|
|
288
381
|
]);
|
|
@@ -293,10 +386,14 @@ export const SixMenu = /*@__PURE__*/ defineContainer('six-menu', undefined, [
|
|
|
293
386
|
'virtualScroll',
|
|
294
387
|
'itemSize',
|
|
295
388
|
'scrollingDebounce',
|
|
389
|
+
'disableKeyboardHandling',
|
|
390
|
+
'six-menu-item-selected'
|
|
391
|
+
], [
|
|
296
392
|
'six-menu-item-selected'
|
|
297
393
|
]);
|
|
298
394
|
export const SixMenuDivider = /*@__PURE__*/ defineContainer('six-menu-divider', undefined);
|
|
299
395
|
export const SixMenuItem = /*@__PURE__*/ defineContainer('six-menu-item', undefined, [
|
|
396
|
+
'checkType',
|
|
300
397
|
'checked',
|
|
301
398
|
'value',
|
|
302
399
|
'disabled'
|
|
@@ -323,32 +420,38 @@ export const SixRadio = /*@__PURE__*/ defineContainer('six-radio', undefined, [
|
|
|
323
420
|
'six-radio-blur',
|
|
324
421
|
'six-radio-change',
|
|
325
422
|
'six-radio-focus'
|
|
326
|
-
],
|
|
423
|
+
], [
|
|
424
|
+
'six-radio-blur',
|
|
425
|
+
'six-radio-change',
|
|
426
|
+
'six-radio-focus'
|
|
427
|
+
]);
|
|
327
428
|
export const SixRange = /*@__PURE__*/ defineContainer('six-range', undefined, [
|
|
328
429
|
'name',
|
|
329
430
|
'value',
|
|
330
431
|
'required',
|
|
331
|
-
'label',
|
|
332
432
|
'helpText',
|
|
333
|
-
'errorText',
|
|
334
433
|
'disabled',
|
|
434
|
+
'label',
|
|
435
|
+
'errorText',
|
|
436
|
+
'errorTextCount',
|
|
335
437
|
'invalid',
|
|
336
438
|
'min',
|
|
337
439
|
'max',
|
|
338
440
|
'step',
|
|
339
441
|
'tooltip',
|
|
340
442
|
'tooltipFormatter',
|
|
341
|
-
'errorOnBlur',
|
|
342
443
|
'six-range-change',
|
|
343
444
|
'six-range-blur',
|
|
344
445
|
'six-range-focus'
|
|
345
|
-
],
|
|
446
|
+
], [
|
|
447
|
+
'six-range-change',
|
|
448
|
+
'six-range-blur',
|
|
449
|
+
'six-range-focus'
|
|
450
|
+
], 'value', 'input');
|
|
346
451
|
export const SixRoot = /*@__PURE__*/ defineContainer('six-root', undefined, [
|
|
347
|
-
'breakpoint',
|
|
348
452
|
'padded',
|
|
349
453
|
'stage',
|
|
350
|
-
'version'
|
|
351
|
-
'six-root-collapsed'
|
|
454
|
+
'version'
|
|
352
455
|
]);
|
|
353
456
|
export const SixSearchField = /*@__PURE__*/ defineContainer('six-search-field', undefined, [
|
|
354
457
|
'placeholder',
|
|
@@ -357,10 +460,13 @@ export const SixSearchField = /*@__PURE__*/ defineContainer('six-search-field',
|
|
|
357
460
|
'value',
|
|
358
461
|
'clearable',
|
|
359
462
|
'six-search-field-change'
|
|
360
|
-
],
|
|
463
|
+
], [
|
|
464
|
+
'six-search-field-change'
|
|
465
|
+
]);
|
|
361
466
|
export const SixSelect = /*@__PURE__*/ defineContainer('six-select', undefined, [
|
|
362
467
|
'multiple',
|
|
363
|
-
'
|
|
468
|
+
'selectAllButton',
|
|
469
|
+
'selectAllText',
|
|
364
470
|
'disabled',
|
|
365
471
|
'name',
|
|
366
472
|
'placeholder',
|
|
@@ -370,25 +476,28 @@ export const SixSelect = /*@__PURE__*/ defineContainer('six-select', undefined,
|
|
|
370
476
|
'hoist',
|
|
371
477
|
'value',
|
|
372
478
|
'pill',
|
|
373
|
-
'label',
|
|
374
479
|
'helpText',
|
|
375
|
-
'errorText',
|
|
376
480
|
'required',
|
|
377
481
|
'clearable',
|
|
482
|
+
'label',
|
|
483
|
+
'errorText',
|
|
484
|
+
'errorTextCount',
|
|
378
485
|
'invalid',
|
|
379
486
|
'line',
|
|
380
|
-
'errorOnBlur',
|
|
381
487
|
'filter',
|
|
382
488
|
'asyncFilter',
|
|
383
489
|
'autocomplete',
|
|
384
490
|
'inputDebounce',
|
|
385
491
|
'options',
|
|
386
492
|
'virtualScroll',
|
|
387
|
-
'defaultValue',
|
|
388
493
|
'six-select-change',
|
|
389
494
|
'six-select-focus',
|
|
390
495
|
'six-select-blur'
|
|
391
|
-
],
|
|
496
|
+
], [
|
|
497
|
+
'six-select-change',
|
|
498
|
+
'six-select-focus',
|
|
499
|
+
'six-select-blur'
|
|
500
|
+
], 'value', 'change');
|
|
392
501
|
export const SixSidebar = /*@__PURE__*/ defineContainer('six-sidebar', undefined, [
|
|
393
502
|
'position',
|
|
394
503
|
'open',
|
|
@@ -399,20 +508,30 @@ export const SixSidebar = /*@__PURE__*/ defineContainer('six-sidebar', undefined
|
|
|
399
508
|
'six-sidebar-hide',
|
|
400
509
|
'six-sidebar-after-hide',
|
|
401
510
|
'six-sidebar-initial-focus'
|
|
511
|
+
], [
|
|
512
|
+
'six-sidebar-show',
|
|
513
|
+
'six-sidebar-after-show',
|
|
514
|
+
'six-sidebar-hide',
|
|
515
|
+
'six-sidebar-after-hide',
|
|
516
|
+
'six-sidebar-initial-focus'
|
|
402
517
|
]);
|
|
403
518
|
export const SixSidebarItem = /*@__PURE__*/ defineContainer('six-sidebar-item', undefined, [
|
|
404
519
|
'value',
|
|
405
520
|
'selected',
|
|
406
|
-
'disabled'
|
|
521
|
+
'disabled',
|
|
522
|
+
'icon',
|
|
523
|
+
'href'
|
|
407
524
|
]);
|
|
408
525
|
export const SixSidebarItemGroup = /*@__PURE__*/ defineContainer('six-sidebar-item-group', undefined, [
|
|
409
526
|
'name',
|
|
410
527
|
'icon',
|
|
411
528
|
'value',
|
|
412
529
|
'open',
|
|
413
|
-
'summaryIcon'
|
|
530
|
+
'summaryIcon',
|
|
531
|
+
'href'
|
|
414
532
|
]);
|
|
415
533
|
export const SixSpinner = /*@__PURE__*/ defineContainer('six-spinner', undefined, [
|
|
534
|
+
'logo',
|
|
416
535
|
'six'
|
|
417
536
|
]);
|
|
418
537
|
export const SixStageIndicator = /*@__PURE__*/ defineContainer('six-stage-indicator', undefined, [
|
|
@@ -424,23 +543,35 @@ export const SixSwitch = /*@__PURE__*/ defineContainer('six-switch', undefined,
|
|
|
424
543
|
'disabled',
|
|
425
544
|
'required',
|
|
426
545
|
'checked',
|
|
546
|
+
'label',
|
|
547
|
+
'errorText',
|
|
548
|
+
'errorTextCount',
|
|
427
549
|
'invalid',
|
|
428
550
|
'six-switch-blur',
|
|
429
551
|
'six-switch-change',
|
|
430
552
|
'six-switch-focus'
|
|
431
|
-
],
|
|
553
|
+
], [
|
|
554
|
+
'six-switch-blur',
|
|
555
|
+
'six-switch-change',
|
|
556
|
+
'six-switch-focus'
|
|
557
|
+
], 'checked', 'change');
|
|
432
558
|
export const SixTab = /*@__PURE__*/ defineContainer('six-tab', undefined, [
|
|
433
559
|
'panel',
|
|
434
560
|
'active',
|
|
435
561
|
'closable',
|
|
436
562
|
'disabled',
|
|
437
563
|
'six-tab-close'
|
|
564
|
+
], [
|
|
565
|
+
'six-tab-close'
|
|
438
566
|
]);
|
|
439
567
|
export const SixTabGroup = /*@__PURE__*/ defineContainer('six-tab-group', undefined, [
|
|
440
568
|
'placement',
|
|
441
569
|
'noScrollControls',
|
|
442
570
|
'six-tab-show',
|
|
443
571
|
'six-tab-hide'
|
|
572
|
+
], [
|
|
573
|
+
'six-tab-show',
|
|
574
|
+
'six-tab-hide'
|
|
444
575
|
]);
|
|
445
576
|
export const SixTabPanel = /*@__PURE__*/ defineContainer('six-tab-panel', undefined, [
|
|
446
577
|
'name',
|
|
@@ -452,14 +583,14 @@ export const SixTag = /*@__PURE__*/ defineContainer('six-tag', undefined, [
|
|
|
452
583
|
'pill',
|
|
453
584
|
'clearable',
|
|
454
585
|
'six-tag-clear'
|
|
586
|
+
], [
|
|
587
|
+
'six-tag-clear'
|
|
455
588
|
]);
|
|
456
589
|
export const SixTextarea = /*@__PURE__*/ defineContainer('six-textarea', undefined, [
|
|
457
590
|
'size',
|
|
458
591
|
'name',
|
|
459
592
|
'value',
|
|
460
|
-
'label',
|
|
461
593
|
'helpText',
|
|
462
|
-
'errorText',
|
|
463
594
|
'placeholder',
|
|
464
595
|
'rows',
|
|
465
596
|
'resize',
|
|
@@ -468,6 +599,9 @@ export const SixTextarea = /*@__PURE__*/ defineContainer('six-textarea', undefin
|
|
|
468
599
|
'minlength',
|
|
469
600
|
'maxlength',
|
|
470
601
|
'required',
|
|
602
|
+
'label',
|
|
603
|
+
'errorText',
|
|
604
|
+
'errorTextCount',
|
|
471
605
|
'invalid',
|
|
472
606
|
'autocapitalize',
|
|
473
607
|
'autocorrect',
|
|
@@ -475,13 +609,16 @@ export const SixTextarea = /*@__PURE__*/ defineContainer('six-textarea', undefin
|
|
|
475
609
|
'autofocus',
|
|
476
610
|
'spellcheck',
|
|
477
611
|
'inputmode',
|
|
478
|
-
'errorOnBlur',
|
|
479
612
|
'six-textarea-change',
|
|
480
613
|
'six-textarea-input',
|
|
481
614
|
'six-textarea-focus',
|
|
482
|
-
'six-textarea-blur'
|
|
483
|
-
|
|
484
|
-
|
|
615
|
+
'six-textarea-blur'
|
|
616
|
+
], [
|
|
617
|
+
'six-textarea-change',
|
|
618
|
+
'six-textarea-input',
|
|
619
|
+
'six-textarea-focus',
|
|
620
|
+
'six-textarea-blur'
|
|
621
|
+
], 'value', 'input');
|
|
485
622
|
export const SixTile = /*@__PURE__*/ defineContainer('six-tile', undefined, [
|
|
486
623
|
'label',
|
|
487
624
|
'iconName',
|
|
@@ -492,6 +629,9 @@ export const SixTile = /*@__PURE__*/ defineContainer('six-tile', undefined, [
|
|
|
492
629
|
'size',
|
|
493
630
|
'six-tile-closed',
|
|
494
631
|
'six-tile-selected'
|
|
632
|
+
], [
|
|
633
|
+
'six-tile-closed',
|
|
634
|
+
'six-tile-selected'
|
|
495
635
|
]);
|
|
496
636
|
export const SixTimepicker = /*@__PURE__*/ defineContainer('six-timepicker', undefined, [
|
|
497
637
|
'format',
|
|
@@ -505,9 +645,10 @@ export const SixTimepicker = /*@__PURE__*/ defineContainer('six-timepicker', und
|
|
|
505
645
|
'size',
|
|
506
646
|
'required',
|
|
507
647
|
'placeholder',
|
|
508
|
-
'errorOnBlur',
|
|
509
648
|
'errorText',
|
|
649
|
+
'errorTextCount',
|
|
510
650
|
'label',
|
|
651
|
+
'invalid',
|
|
511
652
|
'name',
|
|
512
653
|
'clearable',
|
|
513
654
|
'iconPosition',
|
|
@@ -519,6 +660,10 @@ export const SixTimepicker = /*@__PURE__*/ defineContainer('six-timepicker', und
|
|
|
519
660
|
'six-timepicker-change',
|
|
520
661
|
'six-timepicker-change-debounced',
|
|
521
662
|
'six-timepicker-clear'
|
|
663
|
+
], [
|
|
664
|
+
'six-timepicker-change',
|
|
665
|
+
'six-timepicker-change-debounced',
|
|
666
|
+
'six-timepicker-clear'
|
|
522
667
|
]);
|
|
523
668
|
export const SixTooltip = /*@__PURE__*/ defineContainer('six-tooltip', undefined, [
|
|
524
669
|
'content',
|
|
@@ -532,5 +677,10 @@ export const SixTooltip = /*@__PURE__*/ defineContainer('six-tooltip', undefined
|
|
|
532
677
|
'six-tooltip-after-show',
|
|
533
678
|
'six-tooltip-hide',
|
|
534
679
|
'six-tooltip-after-hide'
|
|
680
|
+
], [
|
|
681
|
+
'six-tooltip-show',
|
|
682
|
+
'six-tooltip-after-show',
|
|
683
|
+
'six-tooltip-hide',
|
|
684
|
+
'six-tooltip-after-hide'
|
|
535
685
|
]);
|
|
536
686
|
//# sourceMappingURL=components.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"components.js","sourceRoot":"","sources":["../../src/lib/stencil-generated/components.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export interface InputProps<T> {
|
|
2
|
+
modelValue?: T;
|
|
3
|
+
}
|
|
4
|
+
/**
|
|
5
|
+
* Create a callback to define a Vue component wrapper around a Web Component.
|
|
6
|
+
*
|
|
7
|
+
* @prop name - The component tag name (i.e. `ion-button`)
|
|
8
|
+
* @prop componentProps - An array of properties on the
|
|
9
|
+
* component. These usually match up with the @Prop definitions
|
|
10
|
+
* in each component's TSX file.
|
|
11
|
+
* @prop customElement - An option custom element instance to pass
|
|
12
|
+
* to customElements.define. Only set if `includeImportCustomElements: true` in your config.
|
|
13
|
+
* @prop modelProp - The prop that v-model binds to (i.e. value)
|
|
14
|
+
* @prop modelUpdateEvent - The event that is fired from your Web Component when the value changes (i.e. ionChange)
|
|
15
|
+
*/
|
|
16
|
+
export declare const defineContainer: <Props, VModelType = string | number | boolean>(name: string, defineCustomElement: any, componentProps?: string[], modelProp?: string, modelUpdateEvent?: string) => import("vue").DefineSetupFnComponent<Props & InputProps<VModelType>, {}, {}, Props & InputProps<VModelType> & {}, import("vue").PublicProps>;
|