@six-group/ui-library-vue 0.0.0-insider.0a39e09 → 0.0.0-insider.0adfb4c
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.js +4 -5
- package/dist/plugin.js.map +1 -1
- package/dist/stencil-generated/components.d.ts +59 -53
- package/dist/stencil-generated/components.js +243 -74
- package/dist/stencil-generated/components.js.map +1 -1
- package/dist/stencil-generated/vue-component-lib/utils.d.ts +13 -1
- package/dist/stencil-generated/vue-component-lib/utils.js +95 -9
- package/dist/stencil-generated/vue-component-lib/utils.js.map +1 -1
- package/package.json +18 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './stencil-generated/components';
|
|
2
|
-
export * from './plugin';
|
|
1
|
+
export * from './stencil-generated/components.js';
|
|
2
|
+
export * from './plugin.js';
|
package/dist/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from './stencil-generated/components';
|
|
2
|
-
export * from './plugin';
|
|
1
|
+
export * from './stencil-generated/components.js';
|
|
2
|
+
export * from './plugin.js';
|
|
3
3
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/lib/index.ts"],"names":[],"mappings":"AAAA,cAAc,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/lib/index.ts"],"names":[],"mappings":"AAAA,cAAc,mCAAmC,CAAC;AAClD,cAAc,aAAa,CAAC"}
|
package/dist/plugin.js
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { defineCustomElements } from '@six-group/ui-library/loader';
|
|
2
2
|
export const UiLibraryVue = {
|
|
3
3
|
async install(app, options) {
|
|
4
|
-
if (options === null || options === void 0 ? void 0 : options.applyPolyfills) {
|
|
5
|
-
await applyPolyfills();
|
|
6
|
-
}
|
|
7
4
|
defineCustomElements();
|
|
8
|
-
if (options
|
|
5
|
+
if (options?.router) {
|
|
6
|
+
// The Stencil generated Vue components expect a navManager instance for router-link support.
|
|
7
|
+
// See: ./stencil-generated/vue-component-lib/utils.ts for the router-link handling.
|
|
9
8
|
const navManager = {
|
|
10
9
|
navigate: (payload) => {
|
|
11
10
|
options.router.push(payload.routerLink);
|
package/dist/plugin.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.js","sourceRoot":"","sources":["../src/lib/plugin.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"plugin.js","sourceRoot":"","sources":["../src/lib/plugin.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,8BAA8B,CAAC;AASpE,MAAM,CAAC,MAAM,YAAY,GAAW;IAClC,KAAK,CAAC,OAAO,CAAC,GAAQ,EAAE,OAA6B;QACnD,oBAAoB,EAAE,CAAC;QAEvB,IAAI,OAAO,EAAE,MAAM,EAAE;YACnB,6FAA6F;YAC7F,oFAAoF;YACpF,MAAM,UAAU,GAAG;gBACjB,QAAQ,EAAE,CAAC,OAA6C,EAAE,EAAE;oBAC1D,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC;gBAC1C,CAAC;aACF,CAAC;YACF,GAAG,CAAC,OAAO,CAAC,YAAY,EAAE,UAAU,CAAC,CAAC;SACvC;IACH,CAAC;CACF,CAAC"}
|
|
@@ -1,54 +1,60 @@
|
|
|
1
|
+
import { type StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
1
2
|
import type { JSX } from '@six-group/ui-library';
|
|
2
|
-
export declare const
|
|
3
|
-
export declare const
|
|
4
|
-
export declare const
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const
|
|
7
|
-
export declare const
|
|
8
|
-
export declare const
|
|
9
|
-
export declare const SixDatepicker:
|
|
10
|
-
export declare const SixDetails:
|
|
11
|
-
export declare const SixDialog:
|
|
12
|
-
export declare const SixDrawer:
|
|
13
|
-
export declare const SixDropdown:
|
|
14
|
-
export declare const SixError:
|
|
15
|
-
export declare const SixErrorPage:
|
|
16
|
-
export declare const SixFileList:
|
|
17
|
-
export declare const SixFileListItem:
|
|
18
|
-
export declare const SixFileUpload:
|
|
19
|
-
export declare const SixFooter:
|
|
20
|
-
export declare const SixGroupLabel:
|
|
21
|
-
export declare const SixHeader:
|
|
22
|
-
export declare const
|
|
23
|
-
export declare const
|
|
24
|
-
export declare const
|
|
25
|
-
export declare const
|
|
26
|
-
export declare const
|
|
27
|
-
export declare const
|
|
28
|
-
export declare const
|
|
29
|
-
export declare const
|
|
30
|
-
export declare const
|
|
31
|
-
export declare const
|
|
32
|
-
export declare const
|
|
33
|
-
export declare const
|
|
34
|
-
export declare const
|
|
35
|
-
export declare const
|
|
36
|
-
export declare const
|
|
37
|
-
export declare const
|
|
38
|
-
export declare const
|
|
39
|
-
export declare const
|
|
40
|
-
export declare const
|
|
41
|
-
export declare const
|
|
42
|
-
export declare const
|
|
43
|
-
export declare const
|
|
44
|
-
export declare const
|
|
45
|
-
export declare const
|
|
46
|
-
export declare const
|
|
47
|
-
export declare const
|
|
48
|
-
export declare const
|
|
49
|
-
export declare const
|
|
50
|
-
export declare const
|
|
51
|
-
export declare const
|
|
52
|
-
export declare const
|
|
53
|
-
export declare const
|
|
54
|
-
export declare const
|
|
3
|
+
export declare const SixAlert: StencilVueComponent<JSX.SixAlert>;
|
|
4
|
+
export declare const SixAvatar: StencilVueComponent<JSX.SixAvatar>;
|
|
5
|
+
export declare const SixBadge: StencilVueComponent<JSX.SixBadge>;
|
|
6
|
+
export declare const SixButton: StencilVueComponent<JSX.SixButton>;
|
|
7
|
+
export declare const SixCard: StencilVueComponent<JSX.SixCard>;
|
|
8
|
+
export declare const SixCheckbox: StencilVueComponent<JSX.SixCheckbox, JSX.SixCheckbox["checked"]>;
|
|
9
|
+
export declare const SixDate: StencilVueComponent<JSX.SixDate, JSX.SixDate["value"]>;
|
|
10
|
+
export declare const SixDatepicker: StencilVueComponent<JSX.SixDatepicker, JSX.SixDatepicker["value"]>;
|
|
11
|
+
export declare const SixDetails: StencilVueComponent<JSX.SixDetails>;
|
|
12
|
+
export declare const SixDialog: StencilVueComponent<JSX.SixDialog>;
|
|
13
|
+
export declare const SixDrawer: StencilVueComponent<JSX.SixDrawer>;
|
|
14
|
+
export declare const SixDropdown: StencilVueComponent<JSX.SixDropdown>;
|
|
15
|
+
export declare const SixError: StencilVueComponent<JSX.SixError>;
|
|
16
|
+
export declare const SixErrorPage: StencilVueComponent<JSX.SixErrorPage>;
|
|
17
|
+
export declare const SixFileList: StencilVueComponent<JSX.SixFileList>;
|
|
18
|
+
export declare const SixFileListItem: StencilVueComponent<JSX.SixFileListItem>;
|
|
19
|
+
export declare const SixFileUpload: StencilVueComponent<JSX.SixFileUpload>;
|
|
20
|
+
export declare const SixFooter: StencilVueComponent<JSX.SixFooter>;
|
|
21
|
+
export declare const SixGroupLabel: StencilVueComponent<JSX.SixGroupLabel>;
|
|
22
|
+
export declare const SixHeader: StencilVueComponent<JSX.SixHeader>;
|
|
23
|
+
export declare const SixHeaderDropdownItem: StencilVueComponent<JSX.SixHeaderDropdownItem>;
|
|
24
|
+
export declare const SixHeaderItem: StencilVueComponent<JSX.SixHeaderItem>;
|
|
25
|
+
export declare const SixHeaderMenuButton: StencilVueComponent<JSX.SixHeaderMenuButton>;
|
|
26
|
+
export declare const SixIcon: StencilVueComponent<JSX.SixIcon>;
|
|
27
|
+
export declare const SixIconButton: StencilVueComponent<JSX.SixIconButton>;
|
|
28
|
+
export declare const SixInput: StencilVueComponent<JSX.SixInput, JSX.SixInput["value"]>;
|
|
29
|
+
export declare const SixItemPicker: StencilVueComponent<JSX.SixItemPicker>;
|
|
30
|
+
export declare const SixLanguageSwitcher: StencilVueComponent<JSX.SixLanguageSwitcher>;
|
|
31
|
+
export declare const SixLayoutGrid: StencilVueComponent<JSX.SixLayoutGrid>;
|
|
32
|
+
export declare const SixLogo: StencilVueComponent<JSX.SixLogo>;
|
|
33
|
+
export declare const SixMainContainer: StencilVueComponent<JSX.SixMainContainer>;
|
|
34
|
+
export declare const SixMenu: StencilVueComponent<JSX.SixMenu>;
|
|
35
|
+
export declare const SixMenuDivider: StencilVueComponent<JSX.SixMenuDivider>;
|
|
36
|
+
export declare const SixMenuItem: StencilVueComponent<JSX.SixMenuItem>;
|
|
37
|
+
export declare const SixMenuLabel: StencilVueComponent<JSX.SixMenuLabel>;
|
|
38
|
+
export declare const SixPicto: StencilVueComponent<JSX.SixPicto>;
|
|
39
|
+
export declare const SixProgressBar: StencilVueComponent<JSX.SixProgressBar>;
|
|
40
|
+
export declare const SixProgressRing: StencilVueComponent<JSX.SixProgressRing>;
|
|
41
|
+
export declare const SixRadio: StencilVueComponent<JSX.SixRadio>;
|
|
42
|
+
export declare const SixRange: StencilVueComponent<JSX.SixRange, JSX.SixRange["value"]>;
|
|
43
|
+
export declare const SixRating: StencilVueComponent<JSX.SixRating>;
|
|
44
|
+
export declare const SixRoot: StencilVueComponent<JSX.SixRoot>;
|
|
45
|
+
export declare const SixSearchField: StencilVueComponent<JSX.SixSearchField>;
|
|
46
|
+
export declare const SixSelect: StencilVueComponent<JSX.SixSelect, JSX.SixSelect["value"]>;
|
|
47
|
+
export declare const SixSidebar: StencilVueComponent<JSX.SixSidebar>;
|
|
48
|
+
export declare const SixSidebarItem: StencilVueComponent<JSX.SixSidebarItem>;
|
|
49
|
+
export declare const SixSidebarItemGroup: StencilVueComponent<JSX.SixSidebarItemGroup>;
|
|
50
|
+
export declare const SixSpinner: StencilVueComponent<JSX.SixSpinner>;
|
|
51
|
+
export declare const SixStageIndicator: StencilVueComponent<JSX.SixStageIndicator>;
|
|
52
|
+
export declare const SixSwitch: StencilVueComponent<JSX.SixSwitch, JSX.SixSwitch["checked"]>;
|
|
53
|
+
export declare const SixTab: StencilVueComponent<JSX.SixTab>;
|
|
54
|
+
export declare const SixTabGroup: StencilVueComponent<JSX.SixTabGroup>;
|
|
55
|
+
export declare const SixTabPanel: StencilVueComponent<JSX.SixTabPanel>;
|
|
56
|
+
export declare const SixTag: StencilVueComponent<JSX.SixTag>;
|
|
57
|
+
export declare const SixTextarea: StencilVueComponent<JSX.SixTextarea, JSX.SixTextarea["value"]>;
|
|
58
|
+
export declare const SixTile: StencilVueComponent<JSX.SixTile>;
|
|
59
|
+
export declare const SixTimepicker: StencilVueComponent<JSX.SixTimepicker>;
|
|
60
|
+
export declare const SixTooltip: StencilVueComponent<JSX.SixTooltip>;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export const SixAlert = defineContainer('six-alert', undefined, [
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* auto-generated vue proxies */
|
|
4
|
+
import { defineContainer } from '@stencil/vue-output-target/runtime';
|
|
5
|
+
export const SixAlert = /*@__PURE__*/ defineContainer('six-alert', undefined, [
|
|
6
6
|
'open',
|
|
7
7
|
'closable',
|
|
8
8
|
'type',
|
|
@@ -11,19 +11,24 @@ export const SixAlert = defineContainer('six-alert', undefined, [
|
|
|
11
11
|
'six-alert-after-show',
|
|
12
12
|
'six-alert-hide',
|
|
13
13
|
'six-alert-after-hide'
|
|
14
|
+
], [
|
|
15
|
+
'six-alert-show',
|
|
16
|
+
'six-alert-after-show',
|
|
17
|
+
'six-alert-hide',
|
|
18
|
+
'six-alert-after-hide'
|
|
14
19
|
]);
|
|
15
|
-
export const SixAvatar = defineContainer('six-avatar', undefined, [
|
|
20
|
+
export const SixAvatar = /*@__PURE__*/ defineContainer('six-avatar', undefined, [
|
|
16
21
|
'image',
|
|
17
22
|
'alt',
|
|
18
23
|
'initials',
|
|
19
24
|
'shape'
|
|
20
25
|
]);
|
|
21
|
-
export const SixBadge = defineContainer('six-badge', undefined, [
|
|
26
|
+
export const SixBadge = /*@__PURE__*/ defineContainer('six-badge', undefined, [
|
|
22
27
|
'type',
|
|
23
28
|
'pill',
|
|
24
29
|
'pulse'
|
|
25
30
|
]);
|
|
26
|
-
export const SixButton = defineContainer('six-button', undefined, [
|
|
31
|
+
export const SixButton = /*@__PURE__*/ defineContainer('six-button', undefined, [
|
|
27
32
|
'type',
|
|
28
33
|
'size',
|
|
29
34
|
'caret',
|
|
@@ -40,9 +45,12 @@ export const SixButton = defineContainer('six-button', undefined, [
|
|
|
40
45
|
'download',
|
|
41
46
|
'six-button-blur',
|
|
42
47
|
'six-button-focus'
|
|
48
|
+
], [
|
|
49
|
+
'six-button-blur',
|
|
50
|
+
'six-button-focus'
|
|
43
51
|
]);
|
|
44
|
-
export const SixCard = defineContainer('six-card', undefined);
|
|
45
|
-
export const SixCheckbox = defineContainer('six-checkbox', undefined, [
|
|
52
|
+
export const SixCard = /*@__PURE__*/ defineContainer('six-card', undefined);
|
|
53
|
+
export const SixCheckbox = /*@__PURE__*/ defineContainer('six-checkbox', undefined, [
|
|
46
54
|
'name',
|
|
47
55
|
'value',
|
|
48
56
|
'disabled',
|
|
@@ -56,8 +64,37 @@ export const SixCheckbox = defineContainer('six-checkbox', undefined, [
|
|
|
56
64
|
'six-checkbox-blur',
|
|
57
65
|
'six-checkbox-change',
|
|
58
66
|
'six-checkbox-focus'
|
|
67
|
+
], [
|
|
68
|
+
'six-checkbox-blur',
|
|
69
|
+
'six-checkbox-change',
|
|
70
|
+
'six-checkbox-focus'
|
|
59
71
|
], 'checked', 'change');
|
|
60
|
-
export const
|
|
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
|
+
'name',
|
|
90
|
+
'clearable',
|
|
91
|
+
'six-change',
|
|
92
|
+
'six-blur'
|
|
93
|
+
], [
|
|
94
|
+
'six-change',
|
|
95
|
+
'six-blur'
|
|
96
|
+
], 'value', 'change');
|
|
97
|
+
export const SixDatepicker = /*@__PURE__*/ defineContainer('six-datepicker', undefined, [
|
|
61
98
|
'type',
|
|
62
99
|
'locale',
|
|
63
100
|
'open',
|
|
@@ -88,8 +125,12 @@ export const SixDatepicker = defineContainer('six-datepicker', undefined, [
|
|
|
88
125
|
'six-datepicker-select',
|
|
89
126
|
'six-datepicker-clear',
|
|
90
127
|
'six-datepicker-blur'
|
|
128
|
+
], [
|
|
129
|
+
'six-datepicker-select',
|
|
130
|
+
'six-datepicker-clear',
|
|
131
|
+
'six-datepicker-blur'
|
|
91
132
|
], 'value', 'change');
|
|
92
|
-
export const SixDetails = defineContainer('six-details', undefined, [
|
|
133
|
+
export const SixDetails = /*@__PURE__*/ defineContainer('six-details', undefined, [
|
|
93
134
|
'open',
|
|
94
135
|
'summary',
|
|
95
136
|
'summaryIcon',
|
|
@@ -102,8 +143,13 @@ export const SixDetails = defineContainer('six-details', undefined, [
|
|
|
102
143
|
'six-details-after-show',
|
|
103
144
|
'six-details-hide',
|
|
104
145
|
'six-details-after-hide'
|
|
146
|
+
], [
|
|
147
|
+
'six-details-show',
|
|
148
|
+
'six-details-after-show',
|
|
149
|
+
'six-details-hide',
|
|
150
|
+
'six-details-after-hide'
|
|
105
151
|
]);
|
|
106
|
-
export const SixDialog = defineContainer('six-dialog', undefined, [
|
|
152
|
+
export const SixDialog = /*@__PURE__*/ defineContainer('six-dialog', undefined, [
|
|
107
153
|
'open',
|
|
108
154
|
'label',
|
|
109
155
|
'noHeader',
|
|
@@ -112,9 +158,16 @@ export const SixDialog = defineContainer('six-dialog', undefined, [
|
|
|
112
158
|
'six-dialog-hide',
|
|
113
159
|
'six-dialog-after-hide',
|
|
114
160
|
'six-dialog-initial-focus',
|
|
115
|
-
'six-dialog-
|
|
161
|
+
'six-dialog-request-close'
|
|
162
|
+
], [
|
|
163
|
+
'six-dialog-show',
|
|
164
|
+
'six-dialog-after-show',
|
|
165
|
+
'six-dialog-hide',
|
|
166
|
+
'six-dialog-after-hide',
|
|
167
|
+
'six-dialog-initial-focus',
|
|
168
|
+
'six-dialog-request-close'
|
|
116
169
|
]);
|
|
117
|
-
export const SixDrawer = defineContainer('six-drawer', undefined, [
|
|
170
|
+
export const SixDrawer = /*@__PURE__*/ defineContainer('six-drawer', undefined, [
|
|
118
171
|
'open',
|
|
119
172
|
'label',
|
|
120
173
|
'placement',
|
|
@@ -125,9 +178,16 @@ export const SixDrawer = defineContainer('six-drawer', undefined, [
|
|
|
125
178
|
'six-drawer-hide',
|
|
126
179
|
'six-drawer-after-hide',
|
|
127
180
|
'six-drawer-initial-focus',
|
|
128
|
-
'six-drawer-
|
|
181
|
+
'six-drawer-request-close'
|
|
182
|
+
], [
|
|
183
|
+
'six-drawer-show',
|
|
184
|
+
'six-drawer-after-show',
|
|
185
|
+
'six-drawer-hide',
|
|
186
|
+
'six-drawer-after-hide',
|
|
187
|
+
'six-drawer-initial-focus',
|
|
188
|
+
'six-drawer-request-close'
|
|
129
189
|
]);
|
|
130
|
-
export const SixDropdown = defineContainer('six-dropdown', undefined, [
|
|
190
|
+
export const SixDropdown = /*@__PURE__*/ defineContainer('six-dropdown', undefined, [
|
|
131
191
|
'open',
|
|
132
192
|
'placement',
|
|
133
193
|
'closeOnSelect',
|
|
@@ -151,17 +211,25 @@ export const SixDropdown = defineContainer('six-dropdown', undefined, [
|
|
|
151
211
|
'six-dropdown-auto-filter-fired',
|
|
152
212
|
'six-async-filter-fired',
|
|
153
213
|
'six-dropdown-scroll'
|
|
214
|
+
], [
|
|
215
|
+
'six-dropdown-show',
|
|
216
|
+
'six-dropdown-after-show',
|
|
217
|
+
'six-dropdown-hide',
|
|
218
|
+
'six-dropdown-after-hide',
|
|
219
|
+
'six-dropdown-auto-filter-fired',
|
|
220
|
+
'six-async-filter-fired',
|
|
221
|
+
'six-dropdown-scroll'
|
|
154
222
|
]);
|
|
155
|
-
export const SixError = defineContainer('six-error', undefined);
|
|
156
|
-
export const SixErrorPage = defineContainer('six-error-page', undefined, [
|
|
223
|
+
export const SixError = /*@__PURE__*/ defineContainer('six-error', undefined);
|
|
224
|
+
export const SixErrorPage = /*@__PURE__*/ defineContainer('six-error-page', undefined, [
|
|
157
225
|
'errorCode',
|
|
158
226
|
'language',
|
|
159
227
|
'customTitle',
|
|
160
228
|
'customDescription',
|
|
161
229
|
'customIcon'
|
|
162
230
|
]);
|
|
163
|
-
export const SixFileList = defineContainer('six-file-list', undefined);
|
|
164
|
-
export const SixFileListItem = defineContainer('six-file-list-item', undefined, [
|
|
231
|
+
export const SixFileList = /*@__PURE__*/ defineContainer('six-file-list', undefined);
|
|
232
|
+
export const SixFileListItem = /*@__PURE__*/ defineContainer('six-file-list-item', undefined, [
|
|
165
233
|
'identifier',
|
|
166
234
|
'name',
|
|
167
235
|
'date',
|
|
@@ -170,50 +238,67 @@ export const SixFileListItem = defineContainer('six-file-list-item', undefined,
|
|
|
170
238
|
'nodelete',
|
|
171
239
|
'six-file-list-item-download',
|
|
172
240
|
'six-file-list-item-remove'
|
|
241
|
+
], [
|
|
242
|
+
'six-file-list-item-download',
|
|
243
|
+
'six-file-list-item-remove'
|
|
173
244
|
]);
|
|
174
|
-
export const SixFileUpload = defineContainer('six-file-upload', undefined, [
|
|
245
|
+
export const SixFileUpload = /*@__PURE__*/ defineContainer('six-file-upload', undefined, [
|
|
175
246
|
'compact',
|
|
176
247
|
'label',
|
|
177
248
|
'disabled',
|
|
178
249
|
'accept',
|
|
179
250
|
'multiple',
|
|
180
251
|
'maxFileSize',
|
|
252
|
+
'uploading',
|
|
253
|
+
'errorText',
|
|
254
|
+
'invalid',
|
|
255
|
+
'six-file-upload-success',
|
|
256
|
+
'six-file-upload-failure'
|
|
257
|
+
], [
|
|
181
258
|
'six-file-upload-success',
|
|
182
259
|
'six-file-upload-failure'
|
|
183
260
|
]);
|
|
184
|
-
export const SixFooter = defineContainer('six-footer', undefined);
|
|
185
|
-
export const SixGroupLabel = defineContainer('six-group-label', undefined, [
|
|
261
|
+
export const SixFooter = /*@__PURE__*/ defineContainer('six-footer', undefined);
|
|
262
|
+
export const SixGroupLabel = /*@__PURE__*/ defineContainer('six-group-label', undefined, [
|
|
186
263
|
'size',
|
|
187
264
|
'label',
|
|
188
265
|
'helpText',
|
|
189
266
|
'disabled',
|
|
190
267
|
'required'
|
|
191
268
|
]);
|
|
192
|
-
export const SixHeader = defineContainer('six-header', undefined, [
|
|
269
|
+
export const SixHeader = /*@__PURE__*/ defineContainer('six-header', undefined, [
|
|
193
270
|
'shiftContent',
|
|
194
|
-
'
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
'
|
|
198
|
-
'
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
'
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
271
|
+
'openSearch'
|
|
272
|
+
]);
|
|
273
|
+
export const SixHeaderDropdownItem = /*@__PURE__*/ defineContainer('six-header-dropdown-item', undefined, [
|
|
274
|
+
'filter',
|
|
275
|
+
'filterPlaceholder'
|
|
276
|
+
]);
|
|
277
|
+
export const SixHeaderItem = /*@__PURE__*/ defineContainer('six-header-item', undefined, [
|
|
278
|
+
'active'
|
|
279
|
+
]);
|
|
280
|
+
export const SixHeaderMenuButton = /*@__PURE__*/ defineContainer('six-header-menu-button', undefined, [
|
|
281
|
+
'caret',
|
|
282
|
+
'disabled',
|
|
283
|
+
'loading',
|
|
284
|
+
'submit',
|
|
285
|
+
'reset'
|
|
286
|
+
]);
|
|
287
|
+
export const SixIcon = /*@__PURE__*/ defineContainer('six-icon', undefined, [
|
|
206
288
|
'size',
|
|
207
289
|
'filled'
|
|
208
290
|
]);
|
|
209
|
-
export const SixIconButton = defineContainer('six-icon-button', undefined, [
|
|
291
|
+
export const SixIconButton = /*@__PURE__*/ defineContainer('six-icon-button', undefined, [
|
|
210
292
|
'name',
|
|
211
293
|
'size',
|
|
212
294
|
'label',
|
|
213
295
|
'disabled',
|
|
214
|
-
'html'
|
|
296
|
+
'html',
|
|
297
|
+
'href',
|
|
298
|
+
'target',
|
|
299
|
+
'download'
|
|
215
300
|
]);
|
|
216
|
-
export const SixInput = defineContainer('six-input', undefined, [
|
|
301
|
+
export const SixInput = /*@__PURE__*/ defineContainer('six-input', undefined, [
|
|
217
302
|
'type',
|
|
218
303
|
'size',
|
|
219
304
|
'name',
|
|
@@ -249,8 +334,14 @@ export const SixInput = defineContainer('six-input', undefined, [
|
|
|
249
334
|
'six-input-input',
|
|
250
335
|
'six-input-focus',
|
|
251
336
|
'six-input-blur'
|
|
337
|
+
], [
|
|
338
|
+
'six-input-change',
|
|
339
|
+
'six-input-clear',
|
|
340
|
+
'six-input-input',
|
|
341
|
+
'six-input-focus',
|
|
342
|
+
'six-input-blur'
|
|
252
343
|
], 'value', 'input');
|
|
253
|
-
export const SixItemPicker = defineContainer('six-item-picker', undefined, [
|
|
344
|
+
export const SixItemPicker = /*@__PURE__*/ defineContainer('six-item-picker', undefined, [
|
|
254
345
|
'value',
|
|
255
346
|
'type',
|
|
256
347
|
'min',
|
|
@@ -267,19 +358,27 @@ export const SixItemPicker = defineContainer('six-item-picker', undefined, [
|
|
|
267
358
|
'debounce',
|
|
268
359
|
'six-item-picker-change',
|
|
269
360
|
'six-item-picker-change-debounced'
|
|
361
|
+
], [
|
|
362
|
+
'six-item-picker-change',
|
|
363
|
+
'six-item-picker-change-debounced'
|
|
270
364
|
]);
|
|
271
|
-
export const SixLanguageSwitcher = defineContainer('six-language-switcher', undefined, [
|
|
365
|
+
export const SixLanguageSwitcher = /*@__PURE__*/ defineContainer('six-language-switcher', undefined, [
|
|
272
366
|
'selected',
|
|
273
367
|
'languages',
|
|
274
368
|
'six-language-switcher-change'
|
|
369
|
+
], [
|
|
370
|
+
'six-language-switcher-change'
|
|
275
371
|
]);
|
|
276
|
-
export const SixLayoutGrid = defineContainer('six-layout-grid', undefined, [
|
|
372
|
+
export const SixLayoutGrid = /*@__PURE__*/ defineContainer('six-layout-grid', undefined, [
|
|
277
373
|
'columns'
|
|
278
374
|
]);
|
|
279
|
-
export const
|
|
375
|
+
export const SixLogo = /*@__PURE__*/ defineContainer('six-logo', undefined, [
|
|
376
|
+
'brand'
|
|
377
|
+
]);
|
|
378
|
+
export const SixMainContainer = /*@__PURE__*/ defineContainer('six-main-container', undefined, [
|
|
280
379
|
'padded'
|
|
281
380
|
]);
|
|
282
|
-
export const SixMenu = defineContainer('six-menu', undefined, [
|
|
381
|
+
export const SixMenu = /*@__PURE__*/ defineContainer('six-menu', undefined, [
|
|
283
382
|
'removeBoxShadow',
|
|
284
383
|
'items',
|
|
285
384
|
'itemsShown',
|
|
@@ -288,28 +387,30 @@ export const SixMenu = defineContainer('six-menu', undefined, [
|
|
|
288
387
|
'scrollingDebounce',
|
|
289
388
|
'disableKeyboardHandling',
|
|
290
389
|
'six-menu-item-selected'
|
|
390
|
+
], [
|
|
391
|
+
'six-menu-item-selected'
|
|
291
392
|
]);
|
|
292
|
-
export const SixMenuDivider = defineContainer('six-menu-divider', undefined);
|
|
293
|
-
export const SixMenuItem = defineContainer('six-menu-item', undefined, [
|
|
393
|
+
export const SixMenuDivider = /*@__PURE__*/ defineContainer('six-menu-divider', undefined);
|
|
394
|
+
export const SixMenuItem = /*@__PURE__*/ defineContainer('six-menu-item', undefined, [
|
|
294
395
|
'checkType',
|
|
295
396
|
'checked',
|
|
296
397
|
'value',
|
|
297
398
|
'disabled'
|
|
298
399
|
]);
|
|
299
|
-
export const SixMenuLabel = defineContainer('six-menu-label', undefined);
|
|
300
|
-
export const SixPicto = defineContainer('six-picto', undefined, [
|
|
400
|
+
export const SixMenuLabel = /*@__PURE__*/ defineContainer('six-menu-label', undefined);
|
|
401
|
+
export const SixPicto = /*@__PURE__*/ defineContainer('six-picto', undefined, [
|
|
301
402
|
'size'
|
|
302
403
|
]);
|
|
303
|
-
export const SixProgressBar = defineContainer('six-progress-bar', undefined, [
|
|
404
|
+
export const SixProgressBar = /*@__PURE__*/ defineContainer('six-progress-bar', undefined, [
|
|
304
405
|
'percentage',
|
|
305
406
|
'indeterminate'
|
|
306
407
|
]);
|
|
307
|
-
export const SixProgressRing = defineContainer('six-progress-ring', undefined, [
|
|
408
|
+
export const SixProgressRing = /*@__PURE__*/ defineContainer('six-progress-ring', undefined, [
|
|
308
409
|
'size',
|
|
309
410
|
'strokeWidth',
|
|
310
411
|
'percentage'
|
|
311
412
|
]);
|
|
312
|
-
export const SixRadio = defineContainer('six-radio', undefined, [
|
|
413
|
+
export const SixRadio = /*@__PURE__*/ defineContainer('six-radio', undefined, [
|
|
313
414
|
'name',
|
|
314
415
|
'value',
|
|
315
416
|
'disabled',
|
|
@@ -318,8 +419,12 @@ export const SixRadio = defineContainer('six-radio', undefined, [
|
|
|
318
419
|
'six-radio-blur',
|
|
319
420
|
'six-radio-change',
|
|
320
421
|
'six-radio-focus'
|
|
422
|
+
], [
|
|
423
|
+
'six-radio-blur',
|
|
424
|
+
'six-radio-change',
|
|
425
|
+
'six-radio-focus'
|
|
321
426
|
]);
|
|
322
|
-
export const SixRange = defineContainer('six-range', undefined, [
|
|
427
|
+
export const SixRange = /*@__PURE__*/ defineContainer('six-range', undefined, [
|
|
323
428
|
'name',
|
|
324
429
|
'value',
|
|
325
430
|
'required',
|
|
@@ -337,27 +442,51 @@ export const SixRange = defineContainer('six-range', undefined, [
|
|
|
337
442
|
'six-range-change',
|
|
338
443
|
'six-range-blur',
|
|
339
444
|
'six-range-focus'
|
|
445
|
+
], [
|
|
446
|
+
'six-range-change',
|
|
447
|
+
'six-range-blur',
|
|
448
|
+
'six-range-focus'
|
|
340
449
|
], 'value', 'input');
|
|
341
|
-
export const
|
|
342
|
-
'
|
|
450
|
+
export const SixRating = /*@__PURE__*/ defineContainer('six-rating', undefined, [
|
|
451
|
+
'name',
|
|
452
|
+
'value',
|
|
453
|
+
'disabled',
|
|
454
|
+
'required',
|
|
455
|
+
'label',
|
|
456
|
+
'errorText',
|
|
457
|
+
'errorTextCount',
|
|
458
|
+
'invalid',
|
|
459
|
+
'max',
|
|
460
|
+
'size',
|
|
461
|
+
'readonly',
|
|
462
|
+
'helpText',
|
|
463
|
+
'six-rating-blur',
|
|
464
|
+
'six-rating-change',
|
|
465
|
+
'six-rating-focus'
|
|
466
|
+
], [
|
|
467
|
+
'six-rating-blur',
|
|
468
|
+
'six-rating-change',
|
|
469
|
+
'six-rating-focus'
|
|
470
|
+
]);
|
|
471
|
+
export const SixRoot = /*@__PURE__*/ defineContainer('six-root', undefined, [
|
|
343
472
|
'padded',
|
|
344
473
|
'stage',
|
|
345
|
-
'version'
|
|
346
|
-
'six-root-collapsed'
|
|
474
|
+
'version'
|
|
347
475
|
]);
|
|
348
|
-
export const SixSearchField = defineContainer('six-search-field', undefined, [
|
|
476
|
+
export const SixSearchField = /*@__PURE__*/ defineContainer('six-search-field', undefined, [
|
|
349
477
|
'placeholder',
|
|
350
478
|
'debounce',
|
|
351
479
|
'disabled',
|
|
352
480
|
'value',
|
|
353
481
|
'clearable',
|
|
354
482
|
'six-search-field-change'
|
|
483
|
+
], [
|
|
484
|
+
'six-search-field-change'
|
|
355
485
|
]);
|
|
356
|
-
export const SixSelect = defineContainer('six-select', undefined, [
|
|
486
|
+
export const SixSelect = /*@__PURE__*/ defineContainer('six-select', undefined, [
|
|
357
487
|
'multiple',
|
|
358
488
|
'selectAllButton',
|
|
359
489
|
'selectAllText',
|
|
360
|
-
'maxTagsVisible',
|
|
361
490
|
'disabled',
|
|
362
491
|
'name',
|
|
363
492
|
'placeholder',
|
|
@@ -384,8 +513,12 @@ export const SixSelect = defineContainer('six-select', undefined, [
|
|
|
384
513
|
'six-select-change',
|
|
385
514
|
'six-select-focus',
|
|
386
515
|
'six-select-blur'
|
|
516
|
+
], [
|
|
517
|
+
'six-select-change',
|
|
518
|
+
'six-select-focus',
|
|
519
|
+
'six-select-blur'
|
|
387
520
|
], 'value', 'change');
|
|
388
|
-
export const SixSidebar = defineContainer('six-sidebar', undefined, [
|
|
521
|
+
export const SixSidebar = /*@__PURE__*/ defineContainer('six-sidebar', undefined, [
|
|
389
522
|
'position',
|
|
390
523
|
'open',
|
|
391
524
|
'width',
|
|
@@ -395,14 +528,21 @@ export const SixSidebar = defineContainer('six-sidebar', undefined, [
|
|
|
395
528
|
'six-sidebar-hide',
|
|
396
529
|
'six-sidebar-after-hide',
|
|
397
530
|
'six-sidebar-initial-focus'
|
|
531
|
+
], [
|
|
532
|
+
'six-sidebar-show',
|
|
533
|
+
'six-sidebar-after-show',
|
|
534
|
+
'six-sidebar-hide',
|
|
535
|
+
'six-sidebar-after-hide',
|
|
536
|
+
'six-sidebar-initial-focus'
|
|
398
537
|
]);
|
|
399
|
-
export const SixSidebarItem = defineContainer('six-sidebar-item', undefined, [
|
|
538
|
+
export const SixSidebarItem = /*@__PURE__*/ defineContainer('six-sidebar-item', undefined, [
|
|
400
539
|
'value',
|
|
401
540
|
'selected',
|
|
402
541
|
'disabled',
|
|
542
|
+
'icon',
|
|
403
543
|
'href'
|
|
404
544
|
]);
|
|
405
|
-
export const SixSidebarItemGroup = defineContainer('six-sidebar-item-group', undefined, [
|
|
545
|
+
export const SixSidebarItemGroup = /*@__PURE__*/ defineContainer('six-sidebar-item-group', undefined, [
|
|
406
546
|
'name',
|
|
407
547
|
'icon',
|
|
408
548
|
'value',
|
|
@@ -410,13 +550,14 @@ export const SixSidebarItemGroup = defineContainer('six-sidebar-item-group', und
|
|
|
410
550
|
'summaryIcon',
|
|
411
551
|
'href'
|
|
412
552
|
]);
|
|
413
|
-
export const SixSpinner = defineContainer('six-spinner', undefined, [
|
|
553
|
+
export const SixSpinner = /*@__PURE__*/ defineContainer('six-spinner', undefined, [
|
|
554
|
+
'logo',
|
|
414
555
|
'six'
|
|
415
556
|
]);
|
|
416
|
-
export const SixStageIndicator = defineContainer('six-stage-indicator', undefined, [
|
|
557
|
+
export const SixStageIndicator = /*@__PURE__*/ defineContainer('six-stage-indicator', undefined, [
|
|
417
558
|
'stage'
|
|
418
559
|
]);
|
|
419
|
-
export const SixSwitch = defineContainer('six-switch', undefined, [
|
|
560
|
+
export const SixSwitch = /*@__PURE__*/ defineContainer('six-switch', undefined, [
|
|
420
561
|
'name',
|
|
421
562
|
'value',
|
|
422
563
|
'disabled',
|
|
@@ -429,32 +570,43 @@ export const SixSwitch = defineContainer('six-switch', undefined, [
|
|
|
429
570
|
'six-switch-blur',
|
|
430
571
|
'six-switch-change',
|
|
431
572
|
'six-switch-focus'
|
|
573
|
+
], [
|
|
574
|
+
'six-switch-blur',
|
|
575
|
+
'six-switch-change',
|
|
576
|
+
'six-switch-focus'
|
|
432
577
|
], 'checked', 'change');
|
|
433
|
-
export const SixTab = defineContainer('six-tab', undefined, [
|
|
578
|
+
export const SixTab = /*@__PURE__*/ defineContainer('six-tab', undefined, [
|
|
434
579
|
'panel',
|
|
435
580
|
'active',
|
|
436
581
|
'closable',
|
|
437
582
|
'disabled',
|
|
438
583
|
'six-tab-close'
|
|
584
|
+
], [
|
|
585
|
+
'six-tab-close'
|
|
439
586
|
]);
|
|
440
|
-
export const SixTabGroup = defineContainer('six-tab-group', undefined, [
|
|
587
|
+
export const SixTabGroup = /*@__PURE__*/ defineContainer('six-tab-group', undefined, [
|
|
441
588
|
'placement',
|
|
442
589
|
'noScrollControls',
|
|
443
590
|
'six-tab-show',
|
|
444
591
|
'six-tab-hide'
|
|
592
|
+
], [
|
|
593
|
+
'six-tab-show',
|
|
594
|
+
'six-tab-hide'
|
|
445
595
|
]);
|
|
446
|
-
export const SixTabPanel = defineContainer('six-tab-panel', undefined, [
|
|
596
|
+
export const SixTabPanel = /*@__PURE__*/ defineContainer('six-tab-panel', undefined, [
|
|
447
597
|
'name',
|
|
448
598
|
'active'
|
|
449
599
|
]);
|
|
450
|
-
export const SixTag = defineContainer('six-tag', undefined, [
|
|
600
|
+
export const SixTag = /*@__PURE__*/ defineContainer('six-tag', undefined, [
|
|
451
601
|
'type',
|
|
452
602
|
'size',
|
|
453
603
|
'pill',
|
|
454
604
|
'clearable',
|
|
455
605
|
'six-tag-clear'
|
|
606
|
+
], [
|
|
607
|
+
'six-tag-clear'
|
|
456
608
|
]);
|
|
457
|
-
export const SixTextarea = defineContainer('six-textarea', undefined, [
|
|
609
|
+
export const SixTextarea = /*@__PURE__*/ defineContainer('six-textarea', undefined, [
|
|
458
610
|
'size',
|
|
459
611
|
'name',
|
|
460
612
|
'value',
|
|
@@ -481,8 +633,13 @@ export const SixTextarea = defineContainer('six-textarea', undefined, [
|
|
|
481
633
|
'six-textarea-input',
|
|
482
634
|
'six-textarea-focus',
|
|
483
635
|
'six-textarea-blur'
|
|
636
|
+
], [
|
|
637
|
+
'six-textarea-change',
|
|
638
|
+
'six-textarea-input',
|
|
639
|
+
'six-textarea-focus',
|
|
640
|
+
'six-textarea-blur'
|
|
484
641
|
], 'value', 'input');
|
|
485
|
-
export const SixTile = defineContainer('six-tile', undefined, [
|
|
642
|
+
export const SixTile = /*@__PURE__*/ defineContainer('six-tile', undefined, [
|
|
486
643
|
'label',
|
|
487
644
|
'iconName',
|
|
488
645
|
'closeable',
|
|
@@ -492,8 +649,11 @@ export const SixTile = defineContainer('six-tile', undefined, [
|
|
|
492
649
|
'size',
|
|
493
650
|
'six-tile-closed',
|
|
494
651
|
'six-tile-selected'
|
|
652
|
+
], [
|
|
653
|
+
'six-tile-closed',
|
|
654
|
+
'six-tile-selected'
|
|
495
655
|
]);
|
|
496
|
-
export const SixTimepicker = defineContainer('six-timepicker', undefined, [
|
|
656
|
+
export const SixTimepicker = /*@__PURE__*/ defineContainer('six-timepicker', undefined, [
|
|
497
657
|
'format',
|
|
498
658
|
'separator',
|
|
499
659
|
'value',
|
|
@@ -520,8 +680,12 @@ export const SixTimepicker = defineContainer('six-timepicker', undefined, [
|
|
|
520
680
|
'six-timepicker-change',
|
|
521
681
|
'six-timepicker-change-debounced',
|
|
522
682
|
'six-timepicker-clear'
|
|
683
|
+
], [
|
|
684
|
+
'six-timepicker-change',
|
|
685
|
+
'six-timepicker-change-debounced',
|
|
686
|
+
'six-timepicker-clear'
|
|
523
687
|
]);
|
|
524
|
-
export const SixTooltip = defineContainer('six-tooltip', undefined, [
|
|
688
|
+
export const SixTooltip = /*@__PURE__*/ defineContainer('six-tooltip', undefined, [
|
|
525
689
|
'content',
|
|
526
690
|
'placement',
|
|
527
691
|
'disabled',
|
|
@@ -533,5 +697,10 @@ export const SixTooltip = defineContainer('six-tooltip', undefined, [
|
|
|
533
697
|
'six-tooltip-after-show',
|
|
534
698
|
'six-tooltip-hide',
|
|
535
699
|
'six-tooltip-after-hide'
|
|
700
|
+
], [
|
|
701
|
+
'six-tooltip-show',
|
|
702
|
+
'six-tooltip-after-show',
|
|
703
|
+
'six-tooltip-hide',
|
|
704
|
+
'six-tooltip-after-hide'
|
|
536
705
|
]);
|
|
537
706
|
//# sourceMappingURL=components.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"components.js","sourceRoot":"","sources":["../../src/lib/stencil-generated/components.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"components.js","sourceRoot":"","sources":["../../src/lib/stencil-generated/components.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,16 @@
|
|
|
1
1
|
export interface InputProps<T> {
|
|
2
2
|
modelValue?: T;
|
|
3
3
|
}
|
|
4
|
-
|
|
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>;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
// @ts-nocheck
|
|
2
|
+
// It's easier and safer for Volar to disable typechecking and let the return type inference do its job.
|
|
1
3
|
import { defineComponent, getCurrentInstance, h, inject, ref, withDirectives } from 'vue';
|
|
2
4
|
const UPDATE_VALUE_EVENT = 'update:modelValue';
|
|
3
5
|
const MODEL_VALUE = 'modelValue';
|
|
@@ -5,43 +7,95 @@ const ROUTER_LINK_VALUE = 'routerLink';
|
|
|
5
7
|
const NAV_MANAGER = 'navManager';
|
|
6
8
|
const ROUTER_PROP_PREFIX = 'router';
|
|
7
9
|
const ARIA_PROP_PREFIX = 'aria';
|
|
10
|
+
/**
|
|
11
|
+
* Starting in Vue 3.1.0, all properties are
|
|
12
|
+
* added as keys to the props object, even if
|
|
13
|
+
* they are not being used. In order to correctly
|
|
14
|
+
* account for both value props and v-model props,
|
|
15
|
+
* we need to check if the key exists for Vue <3.1.0
|
|
16
|
+
* and then check if it is not undefined for Vue >= 3.1.0.
|
|
17
|
+
* See https://github.com/vuejs/vue-next/issues/3889
|
|
18
|
+
*/
|
|
8
19
|
const EMPTY_PROP = Symbol();
|
|
9
20
|
const DEFAULT_EMPTY_PROP = { default: EMPTY_PROP };
|
|
10
21
|
const getComponentClasses = (classes) => {
|
|
11
|
-
return
|
|
22
|
+
return classes?.split(' ') || [];
|
|
12
23
|
};
|
|
13
24
|
const getElementClasses = (ref, componentClasses, defaultClasses = []) => {
|
|
14
|
-
|
|
15
|
-
return [...Array.from(((_a = ref.value) === null || _a === void 0 ? void 0 : _a.classList) || []), ...defaultClasses].filter((c, i, self) => !componentClasses.has(c) && self.indexOf(c) === i);
|
|
25
|
+
return [...Array.from(ref.value?.classList || []), ...defaultClasses].filter((c, i, self) => !componentClasses.has(c) && self.indexOf(c) === i);
|
|
16
26
|
};
|
|
27
|
+
/**
|
|
28
|
+
* Create a callback to define a Vue component wrapper around a Web Component.
|
|
29
|
+
*
|
|
30
|
+
* @prop name - The component tag name (i.e. `ion-button`)
|
|
31
|
+
* @prop componentProps - An array of properties on the
|
|
32
|
+
* component. These usually match up with the @Prop definitions
|
|
33
|
+
* in each component's TSX file.
|
|
34
|
+
* @prop customElement - An option custom element instance to pass
|
|
35
|
+
* to customElements.define. Only set if `includeImportCustomElements: true` in your config.
|
|
36
|
+
* @prop modelProp - The prop that v-model binds to (i.e. value)
|
|
37
|
+
* @prop modelUpdateEvent - The event that is fired from your Web Component when the value changes (i.e. ionChange)
|
|
38
|
+
*/
|
|
17
39
|
export const defineContainer = (name, defineCustomElement, componentProps = [], modelProp, modelUpdateEvent) => {
|
|
40
|
+
/**
|
|
41
|
+
* Create a Vue component wrapper around a Web Component.
|
|
42
|
+
* Note: The `props` here are not all properties on a component.
|
|
43
|
+
* They refer to whatever properties are set on an instance of a component.
|
|
44
|
+
*/
|
|
18
45
|
if (defineCustomElement !== undefined) {
|
|
19
46
|
defineCustomElement();
|
|
20
47
|
}
|
|
21
48
|
const Container = defineComponent((props, { attrs, slots, emit }) => {
|
|
22
|
-
var _a;
|
|
23
49
|
let modelPropValue = props[modelProp];
|
|
24
50
|
const containerRef = ref();
|
|
25
51
|
const classes = new Set(getComponentClasses(attrs.class));
|
|
52
|
+
/**
|
|
53
|
+
* This directive is responsible for updating any reactive
|
|
54
|
+
* reference associated with v-model on the component.
|
|
55
|
+
* This code must be run inside of the "created" callback.
|
|
56
|
+
* Since the following listener callbacks as well as any potential
|
|
57
|
+
* event callback defined in the developer's app are set on
|
|
58
|
+
* the same element, we need to make sure the following callbacks
|
|
59
|
+
* are set first so they fire first. If the developer's callback fires first
|
|
60
|
+
* then the reactive reference will not have been updated yet.
|
|
61
|
+
*/
|
|
26
62
|
const vModelDirective = {
|
|
27
63
|
created: (el) => {
|
|
28
64
|
const eventsNames = Array.isArray(modelUpdateEvent) ? modelUpdateEvent : [modelUpdateEvent];
|
|
29
65
|
eventsNames.forEach((eventName) => {
|
|
30
66
|
el.addEventListener(eventName.toLowerCase(), (e) => {
|
|
31
|
-
|
|
32
|
-
|
|
67
|
+
/**
|
|
68
|
+
* Only update the v-model binding if the event's target is the element we are
|
|
69
|
+
* listening on. For example, Component A could emit ionChange, but it could also
|
|
70
|
+
* have a descendant Component B that also emits ionChange. We only want to update
|
|
71
|
+
* the v-model for Component A when ionChange originates from that element and not
|
|
72
|
+
* when ionChange bubbles up from Component B.
|
|
73
|
+
*/
|
|
74
|
+
if (e.target.tagName === el.tagName) {
|
|
75
|
+
modelPropValue = (e?.target)[modelProp];
|
|
76
|
+
emit(UPDATE_VALUE_EVENT, modelPropValue);
|
|
77
|
+
}
|
|
33
78
|
});
|
|
34
79
|
});
|
|
35
80
|
},
|
|
36
81
|
};
|
|
37
82
|
const currentInstance = getCurrentInstance();
|
|
38
|
-
const hasRouter =
|
|
83
|
+
const hasRouter = currentInstance?.appContext?.provides[NAV_MANAGER];
|
|
39
84
|
const navManager = hasRouter ? inject(NAV_MANAGER) : undefined;
|
|
40
85
|
const handleRouterLink = (ev) => {
|
|
41
86
|
const { routerLink } = props;
|
|
42
87
|
if (routerLink === EMPTY_PROP)
|
|
43
88
|
return;
|
|
44
89
|
if (navManager !== undefined) {
|
|
90
|
+
/**
|
|
91
|
+
* This prevents the browser from
|
|
92
|
+
* performing a page reload when pressing
|
|
93
|
+
* an Ionic component with routerLink.
|
|
94
|
+
* The page reload interferes with routing
|
|
95
|
+
* and causes ion-back-button to disappear
|
|
96
|
+
* since the local history is wiped on reload.
|
|
97
|
+
*/
|
|
98
|
+
ev.preventDefault();
|
|
45
99
|
let navigationPayload = { event: ev };
|
|
46
100
|
for (const key in props) {
|
|
47
101
|
const value = props[key];
|
|
@@ -74,6 +128,12 @@ export const defineContainer = (name, defineCustomElement, componentProps = [],
|
|
|
74
128
|
class: getElementClasses(containerRef, classes),
|
|
75
129
|
onClick: handleClick,
|
|
76
130
|
};
|
|
131
|
+
/**
|
|
132
|
+
* We can use Object.entries here
|
|
133
|
+
* to avoid the hasOwnProperty check,
|
|
134
|
+
* but that would require 2 iterations
|
|
135
|
+
* where as this only requires 1.
|
|
136
|
+
*/
|
|
77
137
|
for (const key in props) {
|
|
78
138
|
const value = props[key];
|
|
79
139
|
if ((props.hasOwnProperty(key) && value !== EMPTY_PROP) || key.startsWith(ARIA_PROP_PREFIX)) {
|
|
@@ -81,13 +141,39 @@ export const defineContainer = (name, defineCustomElement, componentProps = [],
|
|
|
81
141
|
}
|
|
82
142
|
}
|
|
83
143
|
if (modelProp) {
|
|
144
|
+
/**
|
|
145
|
+
* If form value property was set using v-model
|
|
146
|
+
* then we should use that value.
|
|
147
|
+
* Otherwise, check to see if form value property
|
|
148
|
+
* was set as a static value (i.e. no v-model).
|
|
149
|
+
*/
|
|
84
150
|
if (props[MODEL_VALUE] !== EMPTY_PROP) {
|
|
85
|
-
propsToAdd =
|
|
151
|
+
propsToAdd = {
|
|
152
|
+
...propsToAdd,
|
|
153
|
+
[modelProp]: props[MODEL_VALUE],
|
|
154
|
+
};
|
|
86
155
|
}
|
|
87
156
|
else if (modelPropValue !== EMPTY_PROP) {
|
|
88
|
-
propsToAdd =
|
|
157
|
+
propsToAdd = {
|
|
158
|
+
...propsToAdd,
|
|
159
|
+
[modelProp]: modelPropValue,
|
|
160
|
+
};
|
|
89
161
|
}
|
|
90
162
|
}
|
|
163
|
+
// If router link is defined, add href to props
|
|
164
|
+
// in order to properly render an anchor tag inside
|
|
165
|
+
// of components that should become activatable and
|
|
166
|
+
// focusable with router link.
|
|
167
|
+
if (props[ROUTER_LINK_VALUE] !== EMPTY_PROP) {
|
|
168
|
+
propsToAdd = {
|
|
169
|
+
...propsToAdd,
|
|
170
|
+
href: props[ROUTER_LINK_VALUE],
|
|
171
|
+
};
|
|
172
|
+
}
|
|
173
|
+
/**
|
|
174
|
+
* vModelDirective is only needed on components that support v-model.
|
|
175
|
+
* As a result, we conditionally call withDirectives with v-model components.
|
|
176
|
+
*/
|
|
91
177
|
const node = h(name, propsToAdd, slots.default && slots.default());
|
|
92
178
|
return modelProp === undefined ? node : withDirectives(node, [[vModelDirective]]);
|
|
93
179
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../../src/lib/stencil-generated/vue-component-lib/utils.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../../src/lib/stencil-generated/vue-component-lib/utils.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,26 +1,41 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@six-group/ui-library-vue",
|
|
3
|
-
"version": "0.0.0-insider.
|
|
3
|
+
"version": "0.0.0-insider.0adfb4c",
|
|
4
4
|
"description": "Vue wrapper components for @six-group/ui-library",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
|
+
"type": "module",
|
|
6
7
|
"types": "dist/index.d.ts",
|
|
7
8
|
"files": [
|
|
8
9
|
"dist"
|
|
9
10
|
],
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"import": "./dist/index.js"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
10
17
|
"scripts": {
|
|
11
18
|
"test": "echo \"Error: run tests from root\" && exit 1",
|
|
12
19
|
"build": "npm run tsc",
|
|
13
|
-
"tsc": "tsc -p . --outDir ./dist"
|
|
20
|
+
"tsc": "tsc -p . --outDir ./dist",
|
|
21
|
+
"watch": "npm run build -- --watch"
|
|
14
22
|
},
|
|
15
23
|
"publishConfig": {
|
|
16
24
|
"access": "public"
|
|
17
25
|
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@stencil/vue-output-target": "0.10.8",
|
|
28
|
+
"@six-group/ui-library": "*"
|
|
29
|
+
},
|
|
18
30
|
"peerDependencies": {
|
|
19
31
|
"@six-group/ui-library": "*"
|
|
20
32
|
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"typescript": "~5.1.3"
|
|
35
|
+
},
|
|
21
36
|
"private": false,
|
|
22
37
|
"sideEffects": false,
|
|
23
38
|
"engines": {
|
|
24
|
-
"node": ">=
|
|
39
|
+
"node": ">=20"
|
|
25
40
|
}
|
|
26
41
|
}
|