@six-group/ui-library-vue 0.0.0-insider.d16ec8e → 0.0.0-insider.d1e67f0
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 +62 -0
- package/dist/{components.js → stencil-generated/components.js} +243 -59
- 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 +37 -18
- package/LICENSE +0 -201
- package/dist/components.d.ts +0 -54
- 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',
|
|
@@ -28,6 +28,15 @@ export const SixBadge = /*@__PURE__*/ defineContainer('six-badge', undefined, [
|
|
|
28
28
|
'pill',
|
|
29
29
|
'pulse'
|
|
30
30
|
]);
|
|
31
|
+
export const SixBreadcrumbs = /*@__PURE__*/ defineContainer('six-breadcrumbs', undefined, [
|
|
32
|
+
'separatorIcon'
|
|
33
|
+
]);
|
|
34
|
+
export const SixBreadcrumbsItem = /*@__PURE__*/ defineContainer('six-breadcrumbs-item', undefined, [
|
|
35
|
+
'href',
|
|
36
|
+
'target',
|
|
37
|
+
'size',
|
|
38
|
+
'readonly'
|
|
39
|
+
]);
|
|
31
40
|
export const SixButton = /*@__PURE__*/ defineContainer('six-button', undefined, [
|
|
32
41
|
'type',
|
|
33
42
|
'size',
|
|
@@ -45,6 +54,9 @@ export const SixButton = /*@__PURE__*/ defineContainer('six-button', undefined,
|
|
|
45
54
|
'download',
|
|
46
55
|
'six-button-blur',
|
|
47
56
|
'six-button-focus'
|
|
57
|
+
], [
|
|
58
|
+
'six-button-blur',
|
|
59
|
+
'six-button-focus'
|
|
48
60
|
]);
|
|
49
61
|
export const SixCard = /*@__PURE__*/ defineContainer('six-card', undefined);
|
|
50
62
|
export const SixCheckbox = /*@__PURE__*/ defineContainer('six-checkbox', undefined, [
|
|
@@ -54,14 +66,43 @@ export const SixCheckbox = /*@__PURE__*/ defineContainer('six-checkbox', undefin
|
|
|
54
66
|
'required',
|
|
55
67
|
'label',
|
|
56
68
|
'errorText',
|
|
69
|
+
'errorTextCount',
|
|
70
|
+
'invalid',
|
|
57
71
|
'checked',
|
|
58
72
|
'indeterminate',
|
|
59
|
-
'invalid',
|
|
60
|
-
'errorOnBlur',
|
|
61
73
|
'six-checkbox-blur',
|
|
62
74
|
'six-checkbox-change',
|
|
63
75
|
'six-checkbox-focus'
|
|
64
|
-
],
|
|
76
|
+
], [
|
|
77
|
+
'six-checkbox-blur',
|
|
78
|
+
'six-checkbox-change',
|
|
79
|
+
'six-checkbox-focus'
|
|
80
|
+
], 'checked', 'change');
|
|
81
|
+
export const SixDate = /*@__PURE__*/ defineContainer('six-date', undefined, [
|
|
82
|
+
'language',
|
|
83
|
+
'readonly',
|
|
84
|
+
'disabled',
|
|
85
|
+
'allowedDates',
|
|
86
|
+
'min',
|
|
87
|
+
'max',
|
|
88
|
+
'size',
|
|
89
|
+
'required',
|
|
90
|
+
'placeholder',
|
|
91
|
+
'value',
|
|
92
|
+
'dateFormat',
|
|
93
|
+
'label',
|
|
94
|
+
'helpText',
|
|
95
|
+
'errorText',
|
|
96
|
+
'errorTextCount',
|
|
97
|
+
'invalid',
|
|
98
|
+
'name',
|
|
99
|
+
'clearable',
|
|
100
|
+
'six-change',
|
|
101
|
+
'six-blur'
|
|
102
|
+
], [
|
|
103
|
+
'six-change',
|
|
104
|
+
'six-blur'
|
|
105
|
+
], 'value', 'change');
|
|
65
106
|
export const SixDatepicker = /*@__PURE__*/ defineContainer('six-datepicker', undefined, [
|
|
66
107
|
'type',
|
|
67
108
|
'locale',
|
|
@@ -79,12 +120,13 @@ export const SixDatepicker = /*@__PURE__*/ defineContainer('six-datepicker', und
|
|
|
79
120
|
'defaultDate',
|
|
80
121
|
'placeholder',
|
|
81
122
|
'value',
|
|
123
|
+
'label',
|
|
124
|
+
'errorText',
|
|
125
|
+
'errorTextCount',
|
|
126
|
+
'invalid',
|
|
82
127
|
'containingElement',
|
|
83
128
|
'dateFormat',
|
|
84
129
|
'debounce',
|
|
85
|
-
'errorOnBlur',
|
|
86
|
-
'errorText',
|
|
87
|
-
'label',
|
|
88
130
|
'name',
|
|
89
131
|
'clearable',
|
|
90
132
|
'iconPosition',
|
|
@@ -92,7 +134,11 @@ export const SixDatepicker = /*@__PURE__*/ defineContainer('six-datepicker', und
|
|
|
92
134
|
'six-datepicker-select',
|
|
93
135
|
'six-datepicker-clear',
|
|
94
136
|
'six-datepicker-blur'
|
|
95
|
-
],
|
|
137
|
+
], [
|
|
138
|
+
'six-datepicker-select',
|
|
139
|
+
'six-datepicker-clear',
|
|
140
|
+
'six-datepicker-blur'
|
|
141
|
+
], 'value', 'change');
|
|
96
142
|
export const SixDetails = /*@__PURE__*/ defineContainer('six-details', undefined, [
|
|
97
143
|
'open',
|
|
98
144
|
'summary',
|
|
@@ -106,6 +152,11 @@ export const SixDetails = /*@__PURE__*/ defineContainer('six-details', undefined
|
|
|
106
152
|
'six-details-after-show',
|
|
107
153
|
'six-details-hide',
|
|
108
154
|
'six-details-after-hide'
|
|
155
|
+
], [
|
|
156
|
+
'six-details-show',
|
|
157
|
+
'six-details-after-show',
|
|
158
|
+
'six-details-hide',
|
|
159
|
+
'six-details-after-hide'
|
|
109
160
|
]);
|
|
110
161
|
export const SixDialog = /*@__PURE__*/ defineContainer('six-dialog', undefined, [
|
|
111
162
|
'open',
|
|
@@ -116,7 +167,14 @@ export const SixDialog = /*@__PURE__*/ defineContainer('six-dialog', undefined,
|
|
|
116
167
|
'six-dialog-hide',
|
|
117
168
|
'six-dialog-after-hide',
|
|
118
169
|
'six-dialog-initial-focus',
|
|
119
|
-
'six-dialog-
|
|
170
|
+
'six-dialog-request-close'
|
|
171
|
+
], [
|
|
172
|
+
'six-dialog-show',
|
|
173
|
+
'six-dialog-after-show',
|
|
174
|
+
'six-dialog-hide',
|
|
175
|
+
'six-dialog-after-hide',
|
|
176
|
+
'six-dialog-initial-focus',
|
|
177
|
+
'six-dialog-request-close'
|
|
120
178
|
]);
|
|
121
179
|
export const SixDrawer = /*@__PURE__*/ defineContainer('six-drawer', undefined, [
|
|
122
180
|
'open',
|
|
@@ -129,7 +187,14 @@ export const SixDrawer = /*@__PURE__*/ defineContainer('six-drawer', undefined,
|
|
|
129
187
|
'six-drawer-hide',
|
|
130
188
|
'six-drawer-after-hide',
|
|
131
189
|
'six-drawer-initial-focus',
|
|
132
|
-
'six-drawer-
|
|
190
|
+
'six-drawer-request-close'
|
|
191
|
+
], [
|
|
192
|
+
'six-drawer-show',
|
|
193
|
+
'six-drawer-after-show',
|
|
194
|
+
'six-drawer-hide',
|
|
195
|
+
'six-drawer-after-hide',
|
|
196
|
+
'six-drawer-initial-focus',
|
|
197
|
+
'six-drawer-request-close'
|
|
133
198
|
]);
|
|
134
199
|
export const SixDropdown = /*@__PURE__*/ defineContainer('six-dropdown', undefined, [
|
|
135
200
|
'open',
|
|
@@ -140,6 +205,7 @@ export const SixDropdown = /*@__PURE__*/ defineContainer('six-dropdown', undefin
|
|
|
140
205
|
'hoist',
|
|
141
206
|
'containingElement',
|
|
142
207
|
'filter',
|
|
208
|
+
'noScroll',
|
|
143
209
|
'asyncFilter',
|
|
144
210
|
'filterPlaceholder',
|
|
145
211
|
'autofocusFilter',
|
|
@@ -147,6 +213,15 @@ export const SixDropdown = /*@__PURE__*/ defineContainer('six-dropdown', undefin
|
|
|
147
213
|
'disableHideOnEnterAndSpace',
|
|
148
214
|
'options',
|
|
149
215
|
'virtualScroll',
|
|
216
|
+
'matchTriggerWidth',
|
|
217
|
+
'six-dropdown-show',
|
|
218
|
+
'six-dropdown-after-show',
|
|
219
|
+
'six-dropdown-hide',
|
|
220
|
+
'six-dropdown-after-hide',
|
|
221
|
+
'six-dropdown-auto-filter-fired',
|
|
222
|
+
'six-async-filter-fired',
|
|
223
|
+
'six-dropdown-scroll'
|
|
224
|
+
], [
|
|
150
225
|
'six-dropdown-show',
|
|
151
226
|
'six-dropdown-after-show',
|
|
152
227
|
'six-dropdown-hide',
|
|
@@ -155,6 +230,7 @@ export const SixDropdown = /*@__PURE__*/ defineContainer('six-dropdown', undefin
|
|
|
155
230
|
'six-async-filter-fired',
|
|
156
231
|
'six-dropdown-scroll'
|
|
157
232
|
]);
|
|
233
|
+
export const SixError = /*@__PURE__*/ defineContainer('six-error', undefined);
|
|
158
234
|
export const SixErrorPage = /*@__PURE__*/ defineContainer('six-error-page', undefined, [
|
|
159
235
|
'errorCode',
|
|
160
236
|
'language',
|
|
@@ -172,6 +248,9 @@ export const SixFileListItem = /*@__PURE__*/ defineContainer('six-file-list-item
|
|
|
172
248
|
'nodelete',
|
|
173
249
|
'six-file-list-item-download',
|
|
174
250
|
'six-file-list-item-remove'
|
|
251
|
+
], [
|
|
252
|
+
'six-file-list-item-download',
|
|
253
|
+
'six-file-list-item-remove'
|
|
175
254
|
]);
|
|
176
255
|
export const SixFileUpload = /*@__PURE__*/ defineContainer('six-file-upload', undefined, [
|
|
177
256
|
'compact',
|
|
@@ -180,16 +259,16 @@ export const SixFileUpload = /*@__PURE__*/ defineContainer('six-file-upload', un
|
|
|
180
259
|
'accept',
|
|
181
260
|
'multiple',
|
|
182
261
|
'maxFileSize',
|
|
262
|
+
'uploading',
|
|
263
|
+
'errorText',
|
|
264
|
+
'invalid',
|
|
265
|
+
'six-file-upload-success',
|
|
266
|
+
'six-file-upload-failure'
|
|
267
|
+
], [
|
|
183
268
|
'six-file-upload-success',
|
|
184
269
|
'six-file-upload-failure'
|
|
185
270
|
]);
|
|
186
271
|
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
272
|
export const SixGroupLabel = /*@__PURE__*/ defineContainer('six-group-label', undefined, [
|
|
194
273
|
'size',
|
|
195
274
|
'label',
|
|
@@ -199,26 +278,36 @@ export const SixGroupLabel = /*@__PURE__*/ defineContainer('six-group-label', un
|
|
|
199
278
|
]);
|
|
200
279
|
export const SixHeader = /*@__PURE__*/ defineContainer('six-header', undefined, [
|
|
201
280
|
'shiftContent',
|
|
202
|
-
'
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
'
|
|
206
|
-
'
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
'
|
|
210
|
-
|
|
281
|
+
'openSearch'
|
|
282
|
+
]);
|
|
283
|
+
export const SixHeaderDropdownItem = /*@__PURE__*/ defineContainer('six-header-dropdown-item', undefined, [
|
|
284
|
+
'filter',
|
|
285
|
+
'filterPlaceholder'
|
|
286
|
+
]);
|
|
287
|
+
export const SixHeaderItem = /*@__PURE__*/ defineContainer('six-header-item', undefined, [
|
|
288
|
+
'active'
|
|
289
|
+
]);
|
|
290
|
+
export const SixHeaderMenuButton = /*@__PURE__*/ defineContainer('six-header-menu-button', undefined, [
|
|
291
|
+
'caret',
|
|
292
|
+
'disabled',
|
|
293
|
+
'loading',
|
|
294
|
+
'submit',
|
|
295
|
+
'reset'
|
|
211
296
|
]);
|
|
212
297
|
export const SixIcon = /*@__PURE__*/ defineContainer('six-icon', undefined, [
|
|
213
298
|
'size',
|
|
214
|
-
'filled'
|
|
299
|
+
'filled',
|
|
300
|
+
'library'
|
|
215
301
|
]);
|
|
216
302
|
export const SixIconButton = /*@__PURE__*/ defineContainer('six-icon-button', undefined, [
|
|
217
303
|
'name',
|
|
218
304
|
'size',
|
|
219
305
|
'label',
|
|
220
306
|
'disabled',
|
|
221
|
-
'html'
|
|
307
|
+
'html',
|
|
308
|
+
'href',
|
|
309
|
+
'target',
|
|
310
|
+
'download'
|
|
222
311
|
]);
|
|
223
312
|
export const SixInput = /*@__PURE__*/ defineContainer('six-input', undefined, [
|
|
224
313
|
'type',
|
|
@@ -226,9 +315,7 @@ export const SixInput = /*@__PURE__*/ defineContainer('six-input', undefined, [
|
|
|
226
315
|
'name',
|
|
227
316
|
'value',
|
|
228
317
|
'pill',
|
|
229
|
-
'label',
|
|
230
318
|
'helpText',
|
|
231
|
-
'errorText',
|
|
232
319
|
'placeholder',
|
|
233
320
|
'disabled',
|
|
234
321
|
'readonly',
|
|
@@ -238,24 +325,33 @@ export const SixInput = /*@__PURE__*/ defineContainer('six-input', undefined, [
|
|
|
238
325
|
'max',
|
|
239
326
|
'step',
|
|
240
327
|
'pattern',
|
|
328
|
+
'dropdownSearch',
|
|
241
329
|
'required',
|
|
242
330
|
'autocapitalize',
|
|
243
331
|
'autocorrect',
|
|
244
332
|
'autocomplete',
|
|
245
333
|
'autofocus',
|
|
246
334
|
'spellcheck',
|
|
335
|
+
'label',
|
|
336
|
+
'errorText',
|
|
337
|
+
'errorTextCount',
|
|
247
338
|
'invalid',
|
|
248
339
|
'clearable',
|
|
249
340
|
'togglePassword',
|
|
250
341
|
'inputmode',
|
|
251
342
|
'line',
|
|
252
|
-
'errorOnBlur',
|
|
253
343
|
'six-input-change',
|
|
254
344
|
'six-input-clear',
|
|
255
345
|
'six-input-input',
|
|
256
346
|
'six-input-focus',
|
|
257
347
|
'six-input-blur'
|
|
258
|
-
],
|
|
348
|
+
], [
|
|
349
|
+
'six-input-change',
|
|
350
|
+
'six-input-clear',
|
|
351
|
+
'six-input-input',
|
|
352
|
+
'six-input-focus',
|
|
353
|
+
'six-input-blur'
|
|
354
|
+
], 'value', 'input');
|
|
259
355
|
export const SixItemPicker = /*@__PURE__*/ defineContainer('six-item-picker', undefined, [
|
|
260
356
|
'value',
|
|
261
357
|
'type',
|
|
@@ -273,15 +369,23 @@ export const SixItemPicker = /*@__PURE__*/ defineContainer('six-item-picker', un
|
|
|
273
369
|
'debounce',
|
|
274
370
|
'six-item-picker-change',
|
|
275
371
|
'six-item-picker-change-debounced'
|
|
372
|
+
], [
|
|
373
|
+
'six-item-picker-change',
|
|
374
|
+
'six-item-picker-change-debounced'
|
|
276
375
|
]);
|
|
277
376
|
export const SixLanguageSwitcher = /*@__PURE__*/ defineContainer('six-language-switcher', undefined, [
|
|
278
377
|
'selected',
|
|
279
378
|
'languages',
|
|
280
379
|
'six-language-switcher-change'
|
|
380
|
+
], [
|
|
381
|
+
'six-language-switcher-change'
|
|
281
382
|
]);
|
|
282
383
|
export const SixLayoutGrid = /*@__PURE__*/ defineContainer('six-layout-grid', undefined, [
|
|
283
384
|
'columns'
|
|
284
385
|
]);
|
|
386
|
+
export const SixLogo = /*@__PURE__*/ defineContainer('six-logo', undefined, [
|
|
387
|
+
'brand'
|
|
388
|
+
]);
|
|
285
389
|
export const SixMainContainer = /*@__PURE__*/ defineContainer('six-main-container', undefined, [
|
|
286
390
|
'padded'
|
|
287
391
|
]);
|
|
@@ -292,10 +396,14 @@ export const SixMenu = /*@__PURE__*/ defineContainer('six-menu', undefined, [
|
|
|
292
396
|
'virtualScroll',
|
|
293
397
|
'itemSize',
|
|
294
398
|
'scrollingDebounce',
|
|
399
|
+
'disableKeyboardHandling',
|
|
400
|
+
'six-menu-item-selected'
|
|
401
|
+
], [
|
|
295
402
|
'six-menu-item-selected'
|
|
296
403
|
]);
|
|
297
404
|
export const SixMenuDivider = /*@__PURE__*/ defineContainer('six-menu-divider', undefined);
|
|
298
405
|
export const SixMenuItem = /*@__PURE__*/ defineContainer('six-menu-item', undefined, [
|
|
406
|
+
'checkType',
|
|
299
407
|
'checked',
|
|
300
408
|
'value',
|
|
301
409
|
'disabled'
|
|
@@ -322,32 +430,59 @@ export const SixRadio = /*@__PURE__*/ defineContainer('six-radio', undefined, [
|
|
|
322
430
|
'six-radio-blur',
|
|
323
431
|
'six-radio-change',
|
|
324
432
|
'six-radio-focus'
|
|
325
|
-
],
|
|
433
|
+
], [
|
|
434
|
+
'six-radio-blur',
|
|
435
|
+
'six-radio-change',
|
|
436
|
+
'six-radio-focus'
|
|
437
|
+
]);
|
|
326
438
|
export const SixRange = /*@__PURE__*/ defineContainer('six-range', undefined, [
|
|
327
439
|
'name',
|
|
328
440
|
'value',
|
|
329
441
|
'required',
|
|
330
|
-
'label',
|
|
331
442
|
'helpText',
|
|
332
|
-
'errorText',
|
|
333
443
|
'disabled',
|
|
444
|
+
'label',
|
|
445
|
+
'errorText',
|
|
446
|
+
'errorTextCount',
|
|
334
447
|
'invalid',
|
|
335
448
|
'min',
|
|
336
449
|
'max',
|
|
337
450
|
'step',
|
|
338
451
|
'tooltip',
|
|
339
452
|
'tooltipFormatter',
|
|
340
|
-
'errorOnBlur',
|
|
341
453
|
'six-range-change',
|
|
342
454
|
'six-range-blur',
|
|
343
455
|
'six-range-focus'
|
|
344
|
-
],
|
|
456
|
+
], [
|
|
457
|
+
'six-range-change',
|
|
458
|
+
'six-range-blur',
|
|
459
|
+
'six-range-focus'
|
|
460
|
+
], 'value', 'input');
|
|
461
|
+
export const SixRating = /*@__PURE__*/ defineContainer('six-rating', undefined, [
|
|
462
|
+
'name',
|
|
463
|
+
'value',
|
|
464
|
+
'disabled',
|
|
465
|
+
'required',
|
|
466
|
+
'label',
|
|
467
|
+
'errorText',
|
|
468
|
+
'errorTextCount',
|
|
469
|
+
'invalid',
|
|
470
|
+
'max',
|
|
471
|
+
'size',
|
|
472
|
+
'readonly',
|
|
473
|
+
'helpText',
|
|
474
|
+
'six-rating-blur',
|
|
475
|
+
'six-rating-change',
|
|
476
|
+
'six-rating-focus'
|
|
477
|
+
], [
|
|
478
|
+
'six-rating-blur',
|
|
479
|
+
'six-rating-change',
|
|
480
|
+
'six-rating-focus'
|
|
481
|
+
]);
|
|
345
482
|
export const SixRoot = /*@__PURE__*/ defineContainer('six-root', undefined, [
|
|
346
|
-
'breakpoint',
|
|
347
483
|
'padded',
|
|
348
484
|
'stage',
|
|
349
|
-
'version'
|
|
350
|
-
'six-root-collapsed'
|
|
485
|
+
'version'
|
|
351
486
|
]);
|
|
352
487
|
export const SixSearchField = /*@__PURE__*/ defineContainer('six-search-field', undefined, [
|
|
353
488
|
'placeholder',
|
|
@@ -356,10 +491,13 @@ export const SixSearchField = /*@__PURE__*/ defineContainer('six-search-field',
|
|
|
356
491
|
'value',
|
|
357
492
|
'clearable',
|
|
358
493
|
'six-search-field-change'
|
|
359
|
-
],
|
|
494
|
+
], [
|
|
495
|
+
'six-search-field-change'
|
|
496
|
+
]);
|
|
360
497
|
export const SixSelect = /*@__PURE__*/ defineContainer('six-select', undefined, [
|
|
361
498
|
'multiple',
|
|
362
|
-
'
|
|
499
|
+
'selectAllButton',
|
|
500
|
+
'selectAllText',
|
|
363
501
|
'disabled',
|
|
364
502
|
'name',
|
|
365
503
|
'placeholder',
|
|
@@ -369,25 +507,28 @@ export const SixSelect = /*@__PURE__*/ defineContainer('six-select', undefined,
|
|
|
369
507
|
'hoist',
|
|
370
508
|
'value',
|
|
371
509
|
'pill',
|
|
372
|
-
'label',
|
|
373
510
|
'helpText',
|
|
374
|
-
'errorText',
|
|
375
511
|
'required',
|
|
376
512
|
'clearable',
|
|
513
|
+
'label',
|
|
514
|
+
'errorText',
|
|
515
|
+
'errorTextCount',
|
|
377
516
|
'invalid',
|
|
378
517
|
'line',
|
|
379
|
-
'errorOnBlur',
|
|
380
518
|
'filter',
|
|
381
519
|
'asyncFilter',
|
|
382
520
|
'autocomplete',
|
|
383
521
|
'inputDebounce',
|
|
384
522
|
'options',
|
|
385
523
|
'virtualScroll',
|
|
386
|
-
'defaultValue',
|
|
387
524
|
'six-select-change',
|
|
388
525
|
'six-select-focus',
|
|
389
526
|
'six-select-blur'
|
|
390
|
-
],
|
|
527
|
+
], [
|
|
528
|
+
'six-select-change',
|
|
529
|
+
'six-select-focus',
|
|
530
|
+
'six-select-blur'
|
|
531
|
+
], 'value', 'change');
|
|
391
532
|
export const SixSidebar = /*@__PURE__*/ defineContainer('six-sidebar', undefined, [
|
|
392
533
|
'position',
|
|
393
534
|
'open',
|
|
@@ -398,20 +539,30 @@ export const SixSidebar = /*@__PURE__*/ defineContainer('six-sidebar', undefined
|
|
|
398
539
|
'six-sidebar-hide',
|
|
399
540
|
'six-sidebar-after-hide',
|
|
400
541
|
'six-sidebar-initial-focus'
|
|
542
|
+
], [
|
|
543
|
+
'six-sidebar-show',
|
|
544
|
+
'six-sidebar-after-show',
|
|
545
|
+
'six-sidebar-hide',
|
|
546
|
+
'six-sidebar-after-hide',
|
|
547
|
+
'six-sidebar-initial-focus'
|
|
401
548
|
]);
|
|
402
549
|
export const SixSidebarItem = /*@__PURE__*/ defineContainer('six-sidebar-item', undefined, [
|
|
403
550
|
'value',
|
|
404
551
|
'selected',
|
|
405
|
-
'disabled'
|
|
552
|
+
'disabled',
|
|
553
|
+
'icon',
|
|
554
|
+
'href'
|
|
406
555
|
]);
|
|
407
556
|
export const SixSidebarItemGroup = /*@__PURE__*/ defineContainer('six-sidebar-item-group', undefined, [
|
|
408
557
|
'name',
|
|
409
558
|
'icon',
|
|
410
559
|
'value',
|
|
411
560
|
'open',
|
|
412
|
-
'summaryIcon'
|
|
561
|
+
'summaryIcon',
|
|
562
|
+
'href'
|
|
413
563
|
]);
|
|
414
564
|
export const SixSpinner = /*@__PURE__*/ defineContainer('six-spinner', undefined, [
|
|
565
|
+
'logo',
|
|
415
566
|
'six'
|
|
416
567
|
]);
|
|
417
568
|
export const SixStageIndicator = /*@__PURE__*/ defineContainer('six-stage-indicator', undefined, [
|
|
@@ -423,23 +574,36 @@ export const SixSwitch = /*@__PURE__*/ defineContainer('six-switch', undefined,
|
|
|
423
574
|
'disabled',
|
|
424
575
|
'required',
|
|
425
576
|
'checked',
|
|
577
|
+
'label',
|
|
578
|
+
'errorText',
|
|
579
|
+
'errorTextCount',
|
|
426
580
|
'invalid',
|
|
427
581
|
'six-switch-blur',
|
|
428
582
|
'six-switch-change',
|
|
429
583
|
'six-switch-focus'
|
|
430
|
-
],
|
|
584
|
+
], [
|
|
585
|
+
'six-switch-blur',
|
|
586
|
+
'six-switch-change',
|
|
587
|
+
'six-switch-focus'
|
|
588
|
+
], 'checked', 'change');
|
|
431
589
|
export const SixTab = /*@__PURE__*/ defineContainer('six-tab', undefined, [
|
|
432
590
|
'panel',
|
|
433
591
|
'active',
|
|
434
592
|
'closable',
|
|
593
|
+
'hoverContent',
|
|
435
594
|
'disabled',
|
|
436
595
|
'six-tab-close'
|
|
596
|
+
], [
|
|
597
|
+
'six-tab-close'
|
|
437
598
|
]);
|
|
438
599
|
export const SixTabGroup = /*@__PURE__*/ defineContainer('six-tab-group', undefined, [
|
|
439
600
|
'placement',
|
|
440
601
|
'noScrollControls',
|
|
441
602
|
'six-tab-show',
|
|
442
603
|
'six-tab-hide'
|
|
604
|
+
], [
|
|
605
|
+
'six-tab-show',
|
|
606
|
+
'six-tab-hide'
|
|
443
607
|
]);
|
|
444
608
|
export const SixTabPanel = /*@__PURE__*/ defineContainer('six-tab-panel', undefined, [
|
|
445
609
|
'name',
|
|
@@ -451,14 +615,14 @@ export const SixTag = /*@__PURE__*/ defineContainer('six-tag', undefined, [
|
|
|
451
615
|
'pill',
|
|
452
616
|
'clearable',
|
|
453
617
|
'six-tag-clear'
|
|
618
|
+
], [
|
|
619
|
+
'six-tag-clear'
|
|
454
620
|
]);
|
|
455
621
|
export const SixTextarea = /*@__PURE__*/ defineContainer('six-textarea', undefined, [
|
|
456
622
|
'size',
|
|
457
623
|
'name',
|
|
458
624
|
'value',
|
|
459
|
-
'label',
|
|
460
625
|
'helpText',
|
|
461
|
-
'errorText',
|
|
462
626
|
'placeholder',
|
|
463
627
|
'rows',
|
|
464
628
|
'resize',
|
|
@@ -467,6 +631,9 @@ export const SixTextarea = /*@__PURE__*/ defineContainer('six-textarea', undefin
|
|
|
467
631
|
'minlength',
|
|
468
632
|
'maxlength',
|
|
469
633
|
'required',
|
|
634
|
+
'label',
|
|
635
|
+
'errorText',
|
|
636
|
+
'errorTextCount',
|
|
470
637
|
'invalid',
|
|
471
638
|
'autocapitalize',
|
|
472
639
|
'autocorrect',
|
|
@@ -474,12 +641,16 @@ export const SixTextarea = /*@__PURE__*/ defineContainer('six-textarea', undefin
|
|
|
474
641
|
'autofocus',
|
|
475
642
|
'spellcheck',
|
|
476
643
|
'inputmode',
|
|
477
|
-
'errorOnBlur',
|
|
478
644
|
'six-textarea-change',
|
|
479
645
|
'six-textarea-input',
|
|
480
646
|
'six-textarea-focus',
|
|
481
647
|
'six-textarea-blur'
|
|
482
|
-
],
|
|
648
|
+
], [
|
|
649
|
+
'six-textarea-change',
|
|
650
|
+
'six-textarea-input',
|
|
651
|
+
'six-textarea-focus',
|
|
652
|
+
'six-textarea-blur'
|
|
653
|
+
], 'value', 'input');
|
|
483
654
|
export const SixTile = /*@__PURE__*/ defineContainer('six-tile', undefined, [
|
|
484
655
|
'label',
|
|
485
656
|
'iconName',
|
|
@@ -490,6 +661,9 @@ export const SixTile = /*@__PURE__*/ defineContainer('six-tile', undefined, [
|
|
|
490
661
|
'size',
|
|
491
662
|
'six-tile-closed',
|
|
492
663
|
'six-tile-selected'
|
|
664
|
+
], [
|
|
665
|
+
'six-tile-closed',
|
|
666
|
+
'six-tile-selected'
|
|
493
667
|
]);
|
|
494
668
|
export const SixTimepicker = /*@__PURE__*/ defineContainer('six-timepicker', undefined, [
|
|
495
669
|
'format',
|
|
@@ -503,9 +677,10 @@ export const SixTimepicker = /*@__PURE__*/ defineContainer('six-timepicker', und
|
|
|
503
677
|
'size',
|
|
504
678
|
'required',
|
|
505
679
|
'placeholder',
|
|
506
|
-
'errorOnBlur',
|
|
507
680
|
'errorText',
|
|
681
|
+
'errorTextCount',
|
|
508
682
|
'label',
|
|
683
|
+
'invalid',
|
|
509
684
|
'name',
|
|
510
685
|
'clearable',
|
|
511
686
|
'iconPosition',
|
|
@@ -517,6 +692,10 @@ export const SixTimepicker = /*@__PURE__*/ defineContainer('six-timepicker', und
|
|
|
517
692
|
'six-timepicker-change',
|
|
518
693
|
'six-timepicker-change-debounced',
|
|
519
694
|
'six-timepicker-clear'
|
|
695
|
+
], [
|
|
696
|
+
'six-timepicker-change',
|
|
697
|
+
'six-timepicker-change-debounced',
|
|
698
|
+
'six-timepicker-clear'
|
|
520
699
|
]);
|
|
521
700
|
export const SixTooltip = /*@__PURE__*/ defineContainer('six-tooltip', undefined, [
|
|
522
701
|
'content',
|
|
@@ -530,5 +709,10 @@ export const SixTooltip = /*@__PURE__*/ defineContainer('six-tooltip', undefined
|
|
|
530
709
|
'six-tooltip-after-show',
|
|
531
710
|
'six-tooltip-hide',
|
|
532
711
|
'six-tooltip-after-hide'
|
|
712
|
+
], [
|
|
713
|
+
'six-tooltip-show',
|
|
714
|
+
'six-tooltip-after-show',
|
|
715
|
+
'six-tooltip-hide',
|
|
716
|
+
'six-tooltip-after-hide'
|
|
533
717
|
]);
|
|
534
718
|
//# 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>;
|