@six-group/ui-library-vue 0.0.0-insider.d16ec8e → 0.0.0-insider.d9aec2b
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 +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/plugin.d.ts +6 -1
- package/dist/plugin.js +14 -5
- package/dist/plugin.js.map +1 -1
- package/dist/stencil-generated/components.d.ts +53 -0
- package/dist/{components.js → stencil-generated/components.js} +99 -98
- package/dist/stencil-generated/components.js.map +1 -0
- package/dist/stencil-generated/vue-component-lib/utils.d.ts +4 -0
- package/dist/{vue-component-lib → stencil-generated/vue-component-lib}/utils.js +20 -70
- package/dist/stencil-generated/vue-component-lib/utils.js.map +1 -0
- package/package.json +18 -19
- 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,13 +1,5 @@
|
|
|
1
|
-
/* eslint-disable */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* auto-generated vue proxies */
|
|
4
1
|
import { defineContainer } from './vue-component-lib/utils';
|
|
5
|
-
|
|
6
|
-
defineCustomElements();
|
|
7
|
-
export const SetAttributes = /*@__PURE__*/ defineContainer('set-attributes', undefined, [
|
|
8
|
-
'value'
|
|
9
|
-
]);
|
|
10
|
-
export const SixAlert = /*@__PURE__*/ defineContainer('six-alert', undefined, [
|
|
2
|
+
export const SixAlert = defineContainer('six-alert', undefined, [
|
|
11
3
|
'open',
|
|
12
4
|
'closable',
|
|
13
5
|
'type',
|
|
@@ -17,18 +9,18 @@ export const SixAlert = /*@__PURE__*/ defineContainer('six-alert', undefined, [
|
|
|
17
9
|
'six-alert-hide',
|
|
18
10
|
'six-alert-after-hide'
|
|
19
11
|
]);
|
|
20
|
-
export const SixAvatar =
|
|
12
|
+
export const SixAvatar = defineContainer('six-avatar', undefined, [
|
|
21
13
|
'image',
|
|
22
14
|
'alt',
|
|
23
15
|
'initials',
|
|
24
16
|
'shape'
|
|
25
17
|
]);
|
|
26
|
-
export const SixBadge =
|
|
18
|
+
export const SixBadge = defineContainer('six-badge', undefined, [
|
|
27
19
|
'type',
|
|
28
20
|
'pill',
|
|
29
21
|
'pulse'
|
|
30
22
|
]);
|
|
31
|
-
export const SixButton =
|
|
23
|
+
export const SixButton = defineContainer('six-button', undefined, [
|
|
32
24
|
'type',
|
|
33
25
|
'size',
|
|
34
26
|
'caret',
|
|
@@ -46,23 +38,23 @@ export const SixButton = /*@__PURE__*/ defineContainer('six-button', undefined,
|
|
|
46
38
|
'six-button-blur',
|
|
47
39
|
'six-button-focus'
|
|
48
40
|
]);
|
|
49
|
-
export const SixCard =
|
|
50
|
-
export const SixCheckbox =
|
|
41
|
+
export const SixCard = defineContainer('six-card', undefined);
|
|
42
|
+
export const SixCheckbox = defineContainer('six-checkbox', undefined, [
|
|
51
43
|
'name',
|
|
52
44
|
'value',
|
|
53
45
|
'disabled',
|
|
54
46
|
'required',
|
|
55
47
|
'label',
|
|
56
48
|
'errorText',
|
|
49
|
+
'errorTextCount',
|
|
50
|
+
'invalid',
|
|
57
51
|
'checked',
|
|
58
52
|
'indeterminate',
|
|
59
|
-
'invalid',
|
|
60
|
-
'errorOnBlur',
|
|
61
53
|
'six-checkbox-blur',
|
|
62
54
|
'six-checkbox-change',
|
|
63
55
|
'six-checkbox-focus'
|
|
64
|
-
], 'checked', '
|
|
65
|
-
export const SixDatepicker =
|
|
56
|
+
], 'checked', 'change');
|
|
57
|
+
export const SixDatepicker = defineContainer('six-datepicker', undefined, [
|
|
66
58
|
'type',
|
|
67
59
|
'locale',
|
|
68
60
|
'open',
|
|
@@ -79,12 +71,13 @@ export const SixDatepicker = /*@__PURE__*/ defineContainer('six-datepicker', und
|
|
|
79
71
|
'defaultDate',
|
|
80
72
|
'placeholder',
|
|
81
73
|
'value',
|
|
74
|
+
'label',
|
|
75
|
+
'errorText',
|
|
76
|
+
'errorTextCount',
|
|
77
|
+
'invalid',
|
|
82
78
|
'containingElement',
|
|
83
79
|
'dateFormat',
|
|
84
80
|
'debounce',
|
|
85
|
-
'errorOnBlur',
|
|
86
|
-
'errorText',
|
|
87
|
-
'label',
|
|
88
81
|
'name',
|
|
89
82
|
'clearable',
|
|
90
83
|
'iconPosition',
|
|
@@ -92,8 +85,8 @@ export const SixDatepicker = /*@__PURE__*/ defineContainer('six-datepicker', und
|
|
|
92
85
|
'six-datepicker-select',
|
|
93
86
|
'six-datepicker-clear',
|
|
94
87
|
'six-datepicker-blur'
|
|
95
|
-
], 'value', '
|
|
96
|
-
export const SixDetails =
|
|
88
|
+
], 'value', 'change');
|
|
89
|
+
export const SixDetails = defineContainer('six-details', undefined, [
|
|
97
90
|
'open',
|
|
98
91
|
'summary',
|
|
99
92
|
'summaryIcon',
|
|
@@ -107,7 +100,7 @@ export const SixDetails = /*@__PURE__*/ defineContainer('six-details', undefined
|
|
|
107
100
|
'six-details-hide',
|
|
108
101
|
'six-details-after-hide'
|
|
109
102
|
]);
|
|
110
|
-
export const SixDialog =
|
|
103
|
+
export const SixDialog = defineContainer('six-dialog', undefined, [
|
|
111
104
|
'open',
|
|
112
105
|
'label',
|
|
113
106
|
'noHeader',
|
|
@@ -118,7 +111,7 @@ export const SixDialog = /*@__PURE__*/ defineContainer('six-dialog', undefined,
|
|
|
118
111
|
'six-dialog-initial-focus',
|
|
119
112
|
'six-dialog-overlay-dismiss'
|
|
120
113
|
]);
|
|
121
|
-
export const SixDrawer =
|
|
114
|
+
export const SixDrawer = defineContainer('six-drawer', undefined, [
|
|
122
115
|
'open',
|
|
123
116
|
'label',
|
|
124
117
|
'placement',
|
|
@@ -131,7 +124,7 @@ export const SixDrawer = /*@__PURE__*/ defineContainer('six-drawer', undefined,
|
|
|
131
124
|
'six-drawer-initial-focus',
|
|
132
125
|
'six-drawer-overlay-dismiss'
|
|
133
126
|
]);
|
|
134
|
-
export const SixDropdown =
|
|
127
|
+
export const SixDropdown = defineContainer('six-dropdown', undefined, [
|
|
135
128
|
'open',
|
|
136
129
|
'placement',
|
|
137
130
|
'closeOnSelect',
|
|
@@ -147,6 +140,7 @@ export const SixDropdown = /*@__PURE__*/ defineContainer('six-dropdown', undefin
|
|
|
147
140
|
'disableHideOnEnterAndSpace',
|
|
148
141
|
'options',
|
|
149
142
|
'virtualScroll',
|
|
143
|
+
'matchTriggerWidth',
|
|
150
144
|
'six-dropdown-show',
|
|
151
145
|
'six-dropdown-after-show',
|
|
152
146
|
'six-dropdown-hide',
|
|
@@ -155,15 +149,16 @@ export const SixDropdown = /*@__PURE__*/ defineContainer('six-dropdown', undefin
|
|
|
155
149
|
'six-async-filter-fired',
|
|
156
150
|
'six-dropdown-scroll'
|
|
157
151
|
]);
|
|
158
|
-
export const
|
|
152
|
+
export const SixError = defineContainer('six-error', undefined);
|
|
153
|
+
export const SixErrorPage = defineContainer('six-error-page', undefined, [
|
|
159
154
|
'errorCode',
|
|
160
155
|
'language',
|
|
161
156
|
'customTitle',
|
|
162
157
|
'customDescription',
|
|
163
158
|
'customIcon'
|
|
164
159
|
]);
|
|
165
|
-
export const SixFileList =
|
|
166
|
-
export const SixFileListItem =
|
|
160
|
+
export const SixFileList = defineContainer('six-file-list', undefined);
|
|
161
|
+
export const SixFileListItem = defineContainer('six-file-list-item', undefined, [
|
|
167
162
|
'identifier',
|
|
168
163
|
'name',
|
|
169
164
|
'date',
|
|
@@ -173,32 +168,30 @@ export const SixFileListItem = /*@__PURE__*/ defineContainer('six-file-list-item
|
|
|
173
168
|
'six-file-list-item-download',
|
|
174
169
|
'six-file-list-item-remove'
|
|
175
170
|
]);
|
|
176
|
-
export const SixFileUpload =
|
|
171
|
+
export const SixFileUpload = defineContainer('six-file-upload', undefined, [
|
|
177
172
|
'compact',
|
|
178
173
|
'label',
|
|
179
174
|
'disabled',
|
|
180
175
|
'accept',
|
|
181
176
|
'multiple',
|
|
182
177
|
'maxFileSize',
|
|
178
|
+
'uploading',
|
|
179
|
+
'errorText',
|
|
180
|
+
'invalid',
|
|
183
181
|
'six-file-upload-success',
|
|
184
182
|
'six-file-upload-failure'
|
|
185
183
|
]);
|
|
186
|
-
export const SixFooter =
|
|
187
|
-
export const
|
|
188
|
-
'novalidate',
|
|
189
|
-
'six-form-submit',
|
|
190
|
-
'six-form-change',
|
|
191
|
-
'six-form-reset'
|
|
192
|
-
]);
|
|
193
|
-
export const SixGroupLabel = /*@__PURE__*/ defineContainer('six-group-label', undefined, [
|
|
184
|
+
export const SixFooter = defineContainer('six-footer', undefined);
|
|
185
|
+
export const SixGroupLabel = defineContainer('six-group-label', undefined, [
|
|
194
186
|
'size',
|
|
195
187
|
'label',
|
|
196
188
|
'helpText',
|
|
197
189
|
'disabled',
|
|
198
190
|
'required'
|
|
199
191
|
]);
|
|
200
|
-
export const SixHeader =
|
|
192
|
+
export const SixHeader = defineContainer('six-header', undefined, [
|
|
201
193
|
'shiftContent',
|
|
194
|
+
'hideHamburgerMenu',
|
|
202
195
|
'openHamburgerMenu',
|
|
203
196
|
'openSearch',
|
|
204
197
|
'clickableLogo',
|
|
@@ -209,26 +202,24 @@ export const SixHeader = /*@__PURE__*/ defineContainer('six-header', undefined,
|
|
|
209
202
|
'six-header-logo-clicked',
|
|
210
203
|
'six-header-search-field-toggle'
|
|
211
204
|
]);
|
|
212
|
-
export const SixIcon =
|
|
205
|
+
export const SixIcon = defineContainer('six-icon', undefined, [
|
|
213
206
|
'size',
|
|
214
207
|
'filled'
|
|
215
208
|
]);
|
|
216
|
-
export const SixIconButton =
|
|
209
|
+
export const SixIconButton = defineContainer('six-icon-button', undefined, [
|
|
217
210
|
'name',
|
|
218
211
|
'size',
|
|
219
212
|
'label',
|
|
220
213
|
'disabled',
|
|
221
214
|
'html'
|
|
222
215
|
]);
|
|
223
|
-
export const SixInput =
|
|
216
|
+
export const SixInput = defineContainer('six-input', undefined, [
|
|
224
217
|
'type',
|
|
225
218
|
'size',
|
|
226
219
|
'name',
|
|
227
220
|
'value',
|
|
228
221
|
'pill',
|
|
229
|
-
'label',
|
|
230
222
|
'helpText',
|
|
231
|
-
'errorText',
|
|
232
223
|
'placeholder',
|
|
233
224
|
'disabled',
|
|
234
225
|
'readonly',
|
|
@@ -238,25 +229,28 @@ export const SixInput = /*@__PURE__*/ defineContainer('six-input', undefined, [
|
|
|
238
229
|
'max',
|
|
239
230
|
'step',
|
|
240
231
|
'pattern',
|
|
232
|
+
'dropdownSearch',
|
|
241
233
|
'required',
|
|
242
234
|
'autocapitalize',
|
|
243
235
|
'autocorrect',
|
|
244
236
|
'autocomplete',
|
|
245
237
|
'autofocus',
|
|
246
238
|
'spellcheck',
|
|
239
|
+
'label',
|
|
240
|
+
'errorText',
|
|
241
|
+
'errorTextCount',
|
|
247
242
|
'invalid',
|
|
248
243
|
'clearable',
|
|
249
244
|
'togglePassword',
|
|
250
245
|
'inputmode',
|
|
251
246
|
'line',
|
|
252
|
-
'errorOnBlur',
|
|
253
247
|
'six-input-change',
|
|
254
248
|
'six-input-clear',
|
|
255
249
|
'six-input-input',
|
|
256
250
|
'six-input-focus',
|
|
257
251
|
'six-input-blur'
|
|
258
|
-
], 'value', '
|
|
259
|
-
export const SixItemPicker =
|
|
252
|
+
], 'value', 'input');
|
|
253
|
+
export const SixItemPicker = defineContainer('six-item-picker', undefined, [
|
|
260
254
|
'value',
|
|
261
255
|
'type',
|
|
262
256
|
'min',
|
|
@@ -274,46 +268,48 @@ export const SixItemPicker = /*@__PURE__*/ defineContainer('six-item-picker', un
|
|
|
274
268
|
'six-item-picker-change',
|
|
275
269
|
'six-item-picker-change-debounced'
|
|
276
270
|
]);
|
|
277
|
-
export const SixLanguageSwitcher =
|
|
271
|
+
export const SixLanguageSwitcher = defineContainer('six-language-switcher', undefined, [
|
|
278
272
|
'selected',
|
|
279
273
|
'languages',
|
|
280
274
|
'six-language-switcher-change'
|
|
281
275
|
]);
|
|
282
|
-
export const SixLayoutGrid =
|
|
276
|
+
export const SixLayoutGrid = defineContainer('six-layout-grid', undefined, [
|
|
283
277
|
'columns'
|
|
284
278
|
]);
|
|
285
|
-
export const SixMainContainer =
|
|
279
|
+
export const SixMainContainer = defineContainer('six-main-container', undefined, [
|
|
286
280
|
'padded'
|
|
287
281
|
]);
|
|
288
|
-
export const SixMenu =
|
|
282
|
+
export const SixMenu = defineContainer('six-menu', undefined, [
|
|
289
283
|
'removeBoxShadow',
|
|
290
284
|
'items',
|
|
291
285
|
'itemsShown',
|
|
292
286
|
'virtualScroll',
|
|
293
287
|
'itemSize',
|
|
294
288
|
'scrollingDebounce',
|
|
289
|
+
'disableKeyboardHandling',
|
|
295
290
|
'six-menu-item-selected'
|
|
296
291
|
]);
|
|
297
|
-
export const SixMenuDivider =
|
|
298
|
-
export const SixMenuItem =
|
|
292
|
+
export const SixMenuDivider = defineContainer('six-menu-divider', undefined);
|
|
293
|
+
export const SixMenuItem = defineContainer('six-menu-item', undefined, [
|
|
294
|
+
'checkType',
|
|
299
295
|
'checked',
|
|
300
296
|
'value',
|
|
301
297
|
'disabled'
|
|
302
298
|
]);
|
|
303
|
-
export const SixMenuLabel =
|
|
304
|
-
export const SixPicto =
|
|
299
|
+
export const SixMenuLabel = defineContainer('six-menu-label', undefined);
|
|
300
|
+
export const SixPicto = defineContainer('six-picto', undefined, [
|
|
305
301
|
'size'
|
|
306
302
|
]);
|
|
307
|
-
export const SixProgressBar =
|
|
303
|
+
export const SixProgressBar = defineContainer('six-progress-bar', undefined, [
|
|
308
304
|
'percentage',
|
|
309
305
|
'indeterminate'
|
|
310
306
|
]);
|
|
311
|
-
export const SixProgressRing =
|
|
307
|
+
export const SixProgressRing = defineContainer('six-progress-ring', undefined, [
|
|
312
308
|
'size',
|
|
313
309
|
'strokeWidth',
|
|
314
310
|
'percentage'
|
|
315
311
|
]);
|
|
316
|
-
export const SixRadio =
|
|
312
|
+
export const SixRadio = defineContainer('six-radio', undefined, [
|
|
317
313
|
'name',
|
|
318
314
|
'value',
|
|
319
315
|
'disabled',
|
|
@@ -322,43 +318,43 @@ export const SixRadio = /*@__PURE__*/ defineContainer('six-radio', undefined, [
|
|
|
322
318
|
'six-radio-blur',
|
|
323
319
|
'six-radio-change',
|
|
324
320
|
'six-radio-focus'
|
|
325
|
-
]
|
|
326
|
-
export const SixRange =
|
|
321
|
+
]);
|
|
322
|
+
export const SixRange = defineContainer('six-range', undefined, [
|
|
327
323
|
'name',
|
|
328
324
|
'value',
|
|
329
325
|
'required',
|
|
330
|
-
'label',
|
|
331
326
|
'helpText',
|
|
332
|
-
'errorText',
|
|
333
327
|
'disabled',
|
|
328
|
+
'label',
|
|
329
|
+
'errorText',
|
|
330
|
+
'errorTextCount',
|
|
334
331
|
'invalid',
|
|
335
332
|
'min',
|
|
336
333
|
'max',
|
|
337
334
|
'step',
|
|
338
335
|
'tooltip',
|
|
339
336
|
'tooltipFormatter',
|
|
340
|
-
'errorOnBlur',
|
|
341
337
|
'six-range-change',
|
|
342
338
|
'six-range-blur',
|
|
343
339
|
'six-range-focus'
|
|
344
|
-
], 'value', '
|
|
345
|
-
export const SixRoot =
|
|
346
|
-
'breakpoint',
|
|
340
|
+
], 'value', 'input');
|
|
341
|
+
export const SixRoot = defineContainer('six-root', undefined, [
|
|
347
342
|
'padded',
|
|
348
343
|
'stage',
|
|
349
|
-
'version'
|
|
350
|
-
'six-root-collapsed'
|
|
344
|
+
'version'
|
|
351
345
|
]);
|
|
352
|
-
export const SixSearchField =
|
|
346
|
+
export const SixSearchField = defineContainer('six-search-field', undefined, [
|
|
353
347
|
'placeholder',
|
|
354
348
|
'debounce',
|
|
355
349
|
'disabled',
|
|
356
350
|
'value',
|
|
357
351
|
'clearable',
|
|
358
352
|
'six-search-field-change'
|
|
359
|
-
]
|
|
360
|
-
export const SixSelect =
|
|
353
|
+
]);
|
|
354
|
+
export const SixSelect = defineContainer('six-select', undefined, [
|
|
361
355
|
'multiple',
|
|
356
|
+
'selectAllButton',
|
|
357
|
+
'selectAllText',
|
|
362
358
|
'maxTagsVisible',
|
|
363
359
|
'disabled',
|
|
364
360
|
'name',
|
|
@@ -369,26 +365,25 @@ export const SixSelect = /*@__PURE__*/ defineContainer('six-select', undefined,
|
|
|
369
365
|
'hoist',
|
|
370
366
|
'value',
|
|
371
367
|
'pill',
|
|
372
|
-
'label',
|
|
373
368
|
'helpText',
|
|
374
|
-
'errorText',
|
|
375
369
|
'required',
|
|
376
370
|
'clearable',
|
|
371
|
+
'label',
|
|
372
|
+
'errorText',
|
|
373
|
+
'errorTextCount',
|
|
377
374
|
'invalid',
|
|
378
375
|
'line',
|
|
379
|
-
'errorOnBlur',
|
|
380
376
|
'filter',
|
|
381
377
|
'asyncFilter',
|
|
382
378
|
'autocomplete',
|
|
383
379
|
'inputDebounce',
|
|
384
380
|
'options',
|
|
385
381
|
'virtualScroll',
|
|
386
|
-
'defaultValue',
|
|
387
382
|
'six-select-change',
|
|
388
383
|
'six-select-focus',
|
|
389
384
|
'six-select-blur'
|
|
390
|
-
], 'value', '
|
|
391
|
-
export const SixSidebar =
|
|
385
|
+
], 'value', 'change');
|
|
386
|
+
export const SixSidebar = defineContainer('six-sidebar', undefined, [
|
|
392
387
|
'position',
|
|
393
388
|
'open',
|
|
394
389
|
'width',
|
|
@@ -399,66 +394,69 @@ export const SixSidebar = /*@__PURE__*/ defineContainer('six-sidebar', undefined
|
|
|
399
394
|
'six-sidebar-after-hide',
|
|
400
395
|
'six-sidebar-initial-focus'
|
|
401
396
|
]);
|
|
402
|
-
export const SixSidebarItem =
|
|
397
|
+
export const SixSidebarItem = defineContainer('six-sidebar-item', undefined, [
|
|
403
398
|
'value',
|
|
404
399
|
'selected',
|
|
405
|
-
'disabled'
|
|
400
|
+
'disabled',
|
|
401
|
+
'href'
|
|
406
402
|
]);
|
|
407
|
-
export const SixSidebarItemGroup =
|
|
403
|
+
export const SixSidebarItemGroup = defineContainer('six-sidebar-item-group', undefined, [
|
|
408
404
|
'name',
|
|
409
405
|
'icon',
|
|
410
406
|
'value',
|
|
411
407
|
'open',
|
|
412
|
-
'summaryIcon'
|
|
408
|
+
'summaryIcon',
|
|
409
|
+
'href'
|
|
413
410
|
]);
|
|
414
|
-
export const SixSpinner =
|
|
411
|
+
export const SixSpinner = defineContainer('six-spinner', undefined, [
|
|
415
412
|
'six'
|
|
416
413
|
]);
|
|
417
|
-
export const SixStageIndicator =
|
|
414
|
+
export const SixStageIndicator = defineContainer('six-stage-indicator', undefined, [
|
|
418
415
|
'stage'
|
|
419
416
|
]);
|
|
420
|
-
export const SixSwitch =
|
|
417
|
+
export const SixSwitch = defineContainer('six-switch', undefined, [
|
|
421
418
|
'name',
|
|
422
419
|
'value',
|
|
423
420
|
'disabled',
|
|
424
421
|
'required',
|
|
425
422
|
'checked',
|
|
423
|
+
'label',
|
|
424
|
+
'errorText',
|
|
425
|
+
'errorTextCount',
|
|
426
426
|
'invalid',
|
|
427
427
|
'six-switch-blur',
|
|
428
428
|
'six-switch-change',
|
|
429
429
|
'six-switch-focus'
|
|
430
|
-
], 'checked', '
|
|
431
|
-
export const SixTab =
|
|
430
|
+
], 'checked', 'change');
|
|
431
|
+
export const SixTab = defineContainer('six-tab', undefined, [
|
|
432
432
|
'panel',
|
|
433
433
|
'active',
|
|
434
434
|
'closable',
|
|
435
435
|
'disabled',
|
|
436
436
|
'six-tab-close'
|
|
437
437
|
]);
|
|
438
|
-
export const SixTabGroup =
|
|
438
|
+
export const SixTabGroup = defineContainer('six-tab-group', undefined, [
|
|
439
439
|
'placement',
|
|
440
440
|
'noScrollControls',
|
|
441
441
|
'six-tab-show',
|
|
442
442
|
'six-tab-hide'
|
|
443
443
|
]);
|
|
444
|
-
export const SixTabPanel =
|
|
444
|
+
export const SixTabPanel = defineContainer('six-tab-panel', undefined, [
|
|
445
445
|
'name',
|
|
446
446
|
'active'
|
|
447
447
|
]);
|
|
448
|
-
export const SixTag =
|
|
448
|
+
export const SixTag = defineContainer('six-tag', undefined, [
|
|
449
449
|
'type',
|
|
450
450
|
'size',
|
|
451
451
|
'pill',
|
|
452
452
|
'clearable',
|
|
453
453
|
'six-tag-clear'
|
|
454
454
|
]);
|
|
455
|
-
export const SixTextarea =
|
|
455
|
+
export const SixTextarea = defineContainer('six-textarea', undefined, [
|
|
456
456
|
'size',
|
|
457
457
|
'name',
|
|
458
458
|
'value',
|
|
459
|
-
'label',
|
|
460
459
|
'helpText',
|
|
461
|
-
'errorText',
|
|
462
460
|
'placeholder',
|
|
463
461
|
'rows',
|
|
464
462
|
'resize',
|
|
@@ -467,6 +465,9 @@ export const SixTextarea = /*@__PURE__*/ defineContainer('six-textarea', undefin
|
|
|
467
465
|
'minlength',
|
|
468
466
|
'maxlength',
|
|
469
467
|
'required',
|
|
468
|
+
'label',
|
|
469
|
+
'errorText',
|
|
470
|
+
'errorTextCount',
|
|
470
471
|
'invalid',
|
|
471
472
|
'autocapitalize',
|
|
472
473
|
'autocorrect',
|
|
@@ -474,13 +475,12 @@ export const SixTextarea = /*@__PURE__*/ defineContainer('six-textarea', undefin
|
|
|
474
475
|
'autofocus',
|
|
475
476
|
'spellcheck',
|
|
476
477
|
'inputmode',
|
|
477
|
-
'errorOnBlur',
|
|
478
478
|
'six-textarea-change',
|
|
479
479
|
'six-textarea-input',
|
|
480
480
|
'six-textarea-focus',
|
|
481
481
|
'six-textarea-blur'
|
|
482
|
-
], 'value', '
|
|
483
|
-
export const SixTile =
|
|
482
|
+
], 'value', 'input');
|
|
483
|
+
export const SixTile = defineContainer('six-tile', undefined, [
|
|
484
484
|
'label',
|
|
485
485
|
'iconName',
|
|
486
486
|
'closeable',
|
|
@@ -491,7 +491,7 @@ export const SixTile = /*@__PURE__*/ defineContainer('six-tile', undefined, [
|
|
|
491
491
|
'six-tile-closed',
|
|
492
492
|
'six-tile-selected'
|
|
493
493
|
]);
|
|
494
|
-
export const SixTimepicker =
|
|
494
|
+
export const SixTimepicker = defineContainer('six-timepicker', undefined, [
|
|
495
495
|
'format',
|
|
496
496
|
'separator',
|
|
497
497
|
'value',
|
|
@@ -503,9 +503,10 @@ export const SixTimepicker = /*@__PURE__*/ defineContainer('six-timepicker', und
|
|
|
503
503
|
'size',
|
|
504
504
|
'required',
|
|
505
505
|
'placeholder',
|
|
506
|
-
'errorOnBlur',
|
|
507
506
|
'errorText',
|
|
507
|
+
'errorTextCount',
|
|
508
508
|
'label',
|
|
509
|
+
'invalid',
|
|
509
510
|
'name',
|
|
510
511
|
'clearable',
|
|
511
512
|
'iconPosition',
|
|
@@ -518,7 +519,7 @@ export const SixTimepicker = /*@__PURE__*/ defineContainer('six-timepicker', und
|
|
|
518
519
|
'six-timepicker-change-debounced',
|
|
519
520
|
'six-timepicker-clear'
|
|
520
521
|
]);
|
|
521
|
-
export const SixTooltip =
|
|
522
|
+
export const SixTooltip = defineContainer('six-tooltip', undefined, [
|
|
522
523
|
'content',
|
|
523
524
|
'placement',
|
|
524
525
|
'disabled',
|
|
@@ -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,4 @@
|
|
|
1
|
+
export interface InputProps<T> {
|
|
2
|
+
modelValue?: T;
|
|
3
|
+
}
|
|
4
|
+
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>;
|