@six-group/ui-library-vue 0.0.0-insider.6705a47 → 0.0.0-insider.6c31a5f

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 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,gCAAgC,CAAC;AAC/C,cAAc,UAAU,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 { applyPolyfills, defineCustomElements } from '@six-group/ui-library/loader';
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 === null || options === void 0 ? void 0 : options.router) {
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);
@@ -1 +1 @@
1
- {"version":3,"file":"plugin.js","sourceRoot":"","sources":["../src/lib/plugin.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,oBAAoB,EAAE,MAAM,8BAA8B,CAAC;AASpF,MAAM,CAAC,MAAM,YAAY,GAAW;IAClC,KAAK,CAAC,OAAO,CAAC,GAAQ,EAAE,OAA6B;QACnD,IAAI,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,cAAc,EAAE;YAC3B,MAAM,cAAc,EAAE,CAAC;SACxB;QACD,oBAAoB,EAAE,CAAC;QAEvB,IAAI,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,MAAM,EAAE;YAGnB,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
+ {"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,62 @@
1
+ import { type StencilVueComponent } from '@stencil/vue-output-target/runtime';
1
2
  import type { JSX } from '@six-group/ui-library';
2
- export declare const SetAttributes: (props: JSX.SetAttributes & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
3
- export declare const SixAlert: (props: JSX.SixAlert & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
4
- export declare const SixAvatar: (props: JSX.SixAvatar & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
5
- export declare const SixBadge: (props: JSX.SixBadge & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
6
- export declare const SixButton: (props: JSX.SixButton & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
7
- export declare const SixCard: (props: JSX.SixCard & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
8
- export declare const SixCheckbox: (props: JSX.SixCheckbox & import("./vue-component-lib/utils").InputProps<boolean> & {}) => any;
9
- export declare const SixDatepicker: (props: JSX.SixDatepicker & import("./vue-component-lib/utils").InputProps<Date> & {}) => any;
10
- export declare const SixDetails: (props: JSX.SixDetails & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
11
- export declare const SixDialog: (props: JSX.SixDialog & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
12
- export declare const SixDrawer: (props: JSX.SixDrawer & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
13
- export declare const SixDropdown: (props: JSX.SixDropdown & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
14
- export declare const SixError: (props: JSX.SixError & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
15
- export declare const SixErrorPage: (props: JSX.SixErrorPage & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
16
- export declare const SixFileList: (props: JSX.SixFileList & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
17
- export declare const SixFileListItem: (props: JSX.SixFileListItem & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
18
- export declare const SixFileUpload: (props: JSX.SixFileUpload & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
19
- export declare const SixFooter: (props: JSX.SixFooter & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
20
- export declare const SixGroupLabel: (props: JSX.SixGroupLabel & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
21
- export declare const SixHeader: (props: JSX.SixHeader & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
22
- export declare const SixIcon: (props: JSX.SixIcon & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
23
- export declare const SixIconButton: (props: JSX.SixIconButton & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
24
- export declare const SixInput: (props: JSX.SixInput & import("./vue-component-lib/utils").InputProps<string> & {}) => any;
25
- export declare const SixItemPicker: (props: JSX.SixItemPicker & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
26
- export declare const SixLanguageSwitcher: (props: JSX.SixLanguageSwitcher & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
27
- export declare const SixLayoutGrid: (props: JSX.SixLayoutGrid & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
28
- export declare const SixMainContainer: (props: JSX.SixMainContainer & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
29
- export declare const SixMenu: (props: JSX.SixMenu & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
30
- export declare const SixMenuDivider: (props: JSX.SixMenuDivider & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
31
- export declare const SixMenuItem: (props: JSX.SixMenuItem & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
32
- export declare const SixMenuLabel: (props: JSX.SixMenuLabel & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
33
- export declare const SixPicto: (props: JSX.SixPicto & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
34
- export declare const SixProgressBar: (props: JSX.SixProgressBar & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
35
- export declare const SixProgressRing: (props: JSX.SixProgressRing & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
36
- export declare const SixRadio: (props: JSX.SixRadio & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
37
- export declare const SixRange: (props: JSX.SixRange & import("./vue-component-lib/utils").InputProps<number> & {}) => any;
38
- export declare const SixRoot: (props: JSX.SixRoot & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
39
- export declare const SixSearchField: (props: JSX.SixSearchField & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
40
- export declare const SixSelect: (props: JSX.SixSelect & import("./vue-component-lib/utils").InputProps<string | string[]> & {}) => any;
41
- export declare const SixSidebar: (props: JSX.SixSidebar & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
42
- export declare const SixSidebarItem: (props: JSX.SixSidebarItem & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
43
- export declare const SixSidebarItemGroup: (props: JSX.SixSidebarItemGroup & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
44
- export declare const SixSpinner: (props: JSX.SixSpinner & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
45
- export declare const SixStageIndicator: (props: JSX.SixStageIndicator & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
46
- export declare const SixSwitch: (props: JSX.SixSwitch & import("./vue-component-lib/utils").InputProps<boolean> & {}) => any;
47
- export declare const SixTab: (props: JSX.SixTab & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
48
- export declare const SixTabGroup: (props: JSX.SixTabGroup & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
49
- export declare const SixTabPanel: (props: JSX.SixTabPanel & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
50
- export declare const SixTag: (props: JSX.SixTag & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
51
- export declare const SixTextarea: (props: JSX.SixTextarea & import("./vue-component-lib/utils").InputProps<string> & {}) => any;
52
- export declare const SixTile: (props: JSX.SixTile & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
53
- export declare const SixTimepicker: (props: JSX.SixTimepicker & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
54
- export declare const SixTooltip: (props: JSX.SixTooltip & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => any;
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 SixBreadcrumbs: StencilVueComponent<JSX.SixBreadcrumbs>;
7
+ export declare const SixBreadcrumbsItem: StencilVueComponent<JSX.SixBreadcrumbsItem>;
8
+ export declare const SixButton: StencilVueComponent<JSX.SixButton>;
9
+ export declare const SixCard: StencilVueComponent<JSX.SixCard>;
10
+ export declare const SixCheckbox: StencilVueComponent<JSX.SixCheckbox, JSX.SixCheckbox["checked"]>;
11
+ export declare const SixDate: StencilVueComponent<JSX.SixDate, JSX.SixDate["value"]>;
12
+ export declare const SixDatepicker: StencilVueComponent<JSX.SixDatepicker, JSX.SixDatepicker["value"]>;
13
+ export declare const SixDetails: StencilVueComponent<JSX.SixDetails>;
14
+ export declare const SixDialog: StencilVueComponent<JSX.SixDialog>;
15
+ export declare const SixDrawer: StencilVueComponent<JSX.SixDrawer>;
16
+ export declare const SixDropdown: StencilVueComponent<JSX.SixDropdown>;
17
+ export declare const SixError: StencilVueComponent<JSX.SixError>;
18
+ export declare const SixErrorPage: StencilVueComponent<JSX.SixErrorPage>;
19
+ export declare const SixFileList: StencilVueComponent<JSX.SixFileList>;
20
+ export declare const SixFileListItem: StencilVueComponent<JSX.SixFileListItem>;
21
+ export declare const SixFileUpload: StencilVueComponent<JSX.SixFileUpload>;
22
+ export declare const SixFooter: StencilVueComponent<JSX.SixFooter>;
23
+ export declare const SixGroupLabel: StencilVueComponent<JSX.SixGroupLabel>;
24
+ export declare const SixHeader: StencilVueComponent<JSX.SixHeader>;
25
+ export declare const SixHeaderDropdownItem: StencilVueComponent<JSX.SixHeaderDropdownItem>;
26
+ export declare const SixHeaderItem: StencilVueComponent<JSX.SixHeaderItem>;
27
+ export declare const SixHeaderMenuButton: StencilVueComponent<JSX.SixHeaderMenuButton>;
28
+ export declare const SixIcon: StencilVueComponent<JSX.SixIcon>;
29
+ export declare const SixIconButton: StencilVueComponent<JSX.SixIconButton>;
30
+ export declare const SixInput: StencilVueComponent<JSX.SixInput, JSX.SixInput["value"]>;
31
+ export declare const SixItemPicker: StencilVueComponent<JSX.SixItemPicker>;
32
+ export declare const SixLanguageSwitcher: StencilVueComponent<JSX.SixLanguageSwitcher>;
33
+ export declare const SixLayoutGrid: StencilVueComponent<JSX.SixLayoutGrid>;
34
+ export declare const SixLogo: StencilVueComponent<JSX.SixLogo>;
35
+ export declare const SixMainContainer: StencilVueComponent<JSX.SixMainContainer>;
36
+ export declare const SixMenu: StencilVueComponent<JSX.SixMenu>;
37
+ export declare const SixMenuDivider: StencilVueComponent<JSX.SixMenuDivider>;
38
+ export declare const SixMenuItem: StencilVueComponent<JSX.SixMenuItem>;
39
+ export declare const SixMenuLabel: StencilVueComponent<JSX.SixMenuLabel>;
40
+ export declare const SixPicto: StencilVueComponent<JSX.SixPicto>;
41
+ export declare const SixProgressBar: StencilVueComponent<JSX.SixProgressBar>;
42
+ export declare const SixProgressRing: StencilVueComponent<JSX.SixProgressRing>;
43
+ export declare const SixRadio: StencilVueComponent<JSX.SixRadio>;
44
+ export declare const SixRange: StencilVueComponent<JSX.SixRange, JSX.SixRange["value"]>;
45
+ export declare const SixRating: StencilVueComponent<JSX.SixRating>;
46
+ export declare const SixRoot: StencilVueComponent<JSX.SixRoot>;
47
+ export declare const SixSearchField: StencilVueComponent<JSX.SixSearchField>;
48
+ export declare const SixSelect: StencilVueComponent<JSX.SixSelect, JSX.SixSelect["value"]>;
49
+ export declare const SixSidebar: StencilVueComponent<JSX.SixSidebar>;
50
+ export declare const SixSidebarItem: StencilVueComponent<JSX.SixSidebarItem>;
51
+ export declare const SixSidebarItemGroup: StencilVueComponent<JSX.SixSidebarItemGroup>;
52
+ export declare const SixSpinner: StencilVueComponent<JSX.SixSpinner>;
53
+ export declare const SixStageIndicator: StencilVueComponent<JSX.SixStageIndicator>;
54
+ export declare const SixSwitch: StencilVueComponent<JSX.SixSwitch, JSX.SixSwitch["checked"]>;
55
+ export declare const SixTab: StencilVueComponent<JSX.SixTab>;
56
+ export declare const SixTabGroup: StencilVueComponent<JSX.SixTabGroup>;
57
+ export declare const SixTabPanel: StencilVueComponent<JSX.SixTabPanel>;
58
+ export declare const SixTag: StencilVueComponent<JSX.SixTag>;
59
+ export declare const SixTextarea: StencilVueComponent<JSX.SixTextarea, JSX.SixTextarea["value"]>;
60
+ export declare const SixTile: StencilVueComponent<JSX.SixTile>;
61
+ export declare const SixTimepicker: StencilVueComponent<JSX.SixTimepicker>;
62
+ export declare const SixTooltip: StencilVueComponent<JSX.SixTooltip>;
@@ -1,8 +1,8 @@
1
- import { defineContainer } from './vue-component-lib/utils';
2
- export const SetAttributes = defineContainer('set-attributes', undefined, [
3
- 'value'
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,33 @@ 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 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
+ ]);
40
+ export const SixButton = /*@__PURE__*/ defineContainer('six-button', undefined, [
27
41
  'type',
28
42
  'size',
29
43
  'caret',
@@ -40,9 +54,12 @@ export const SixButton = defineContainer('six-button', undefined, [
40
54
  'download',
41
55
  'six-button-blur',
42
56
  'six-button-focus'
57
+ ], [
58
+ 'six-button-blur',
59
+ 'six-button-focus'
43
60
  ]);
44
- export const SixCard = defineContainer('six-card', undefined);
45
- export const SixCheckbox = defineContainer('six-checkbox', undefined, [
61
+ export const SixCard = /*@__PURE__*/ defineContainer('six-card', undefined);
62
+ export const SixCheckbox = /*@__PURE__*/ defineContainer('six-checkbox', undefined, [
46
63
  'name',
47
64
  'value',
48
65
  'disabled',
@@ -56,8 +73,37 @@ export const SixCheckbox = defineContainer('six-checkbox', undefined, [
56
73
  'six-checkbox-blur',
57
74
  'six-checkbox-change',
58
75
  'six-checkbox-focus'
76
+ ], [
77
+ 'six-checkbox-blur',
78
+ 'six-checkbox-change',
79
+ 'six-checkbox-focus'
59
80
  ], 'checked', 'change');
60
- export const SixDatepicker = defineContainer('six-datepicker', undefined, [
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');
106
+ export const SixDatepicker = /*@__PURE__*/ defineContainer('six-datepicker', undefined, [
61
107
  'type',
62
108
  'locale',
63
109
  'open',
@@ -88,8 +134,12 @@ export const SixDatepicker = defineContainer('six-datepicker', undefined, [
88
134
  'six-datepicker-select',
89
135
  'six-datepicker-clear',
90
136
  'six-datepicker-blur'
137
+ ], [
138
+ 'six-datepicker-select',
139
+ 'six-datepicker-clear',
140
+ 'six-datepicker-blur'
91
141
  ], 'value', 'change');
92
- export const SixDetails = defineContainer('six-details', undefined, [
142
+ export const SixDetails = /*@__PURE__*/ defineContainer('six-details', undefined, [
93
143
  'open',
94
144
  'summary',
95
145
  'summaryIcon',
@@ -102,8 +152,13 @@ export const SixDetails = defineContainer('six-details', undefined, [
102
152
  'six-details-after-show',
103
153
  'six-details-hide',
104
154
  'six-details-after-hide'
155
+ ], [
156
+ 'six-details-show',
157
+ 'six-details-after-show',
158
+ 'six-details-hide',
159
+ 'six-details-after-hide'
105
160
  ]);
106
- export const SixDialog = defineContainer('six-dialog', undefined, [
161
+ export const SixDialog = /*@__PURE__*/ defineContainer('six-dialog', undefined, [
107
162
  'open',
108
163
  'label',
109
164
  'noHeader',
@@ -112,9 +167,16 @@ export const SixDialog = defineContainer('six-dialog', undefined, [
112
167
  'six-dialog-hide',
113
168
  'six-dialog-after-hide',
114
169
  'six-dialog-initial-focus',
115
- 'six-dialog-overlay-dismiss'
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'
116
178
  ]);
117
- export const SixDrawer = defineContainer('six-drawer', undefined, [
179
+ export const SixDrawer = /*@__PURE__*/ defineContainer('six-drawer', undefined, [
118
180
  'open',
119
181
  'label',
120
182
  'placement',
@@ -125,9 +187,16 @@ export const SixDrawer = defineContainer('six-drawer', undefined, [
125
187
  'six-drawer-hide',
126
188
  'six-drawer-after-hide',
127
189
  'six-drawer-initial-focus',
128
- 'six-drawer-overlay-dismiss'
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'
129
198
  ]);
130
- export const SixDropdown = defineContainer('six-dropdown', undefined, [
199
+ export const SixDropdown = /*@__PURE__*/ defineContainer('six-dropdown', undefined, [
131
200
  'open',
132
201
  'placement',
133
202
  'closeOnSelect',
@@ -136,6 +205,7 @@ export const SixDropdown = defineContainer('six-dropdown', undefined, [
136
205
  'hoist',
137
206
  'containingElement',
138
207
  'filter',
208
+ 'noScroll',
139
209
  'asyncFilter',
140
210
  'filterPlaceholder',
141
211
  'autofocusFilter',
@@ -143,6 +213,15 @@ export const SixDropdown = defineContainer('six-dropdown', undefined, [
143
213
  'disableHideOnEnterAndSpace',
144
214
  'options',
145
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
+ ], [
146
225
  'six-dropdown-show',
147
226
  'six-dropdown-after-show',
148
227
  'six-dropdown-hide',
@@ -151,16 +230,16 @@ export const SixDropdown = defineContainer('six-dropdown', undefined, [
151
230
  'six-async-filter-fired',
152
231
  'six-dropdown-scroll'
153
232
  ]);
154
- export const SixError = defineContainer('six-error', undefined);
155
- export const SixErrorPage = defineContainer('six-error-page', undefined, [
233
+ export const SixError = /*@__PURE__*/ defineContainer('six-error', undefined);
234
+ export const SixErrorPage = /*@__PURE__*/ defineContainer('six-error-page', undefined, [
156
235
  'errorCode',
157
236
  'language',
158
237
  'customTitle',
159
238
  'customDescription',
160
239
  'customIcon'
161
240
  ]);
162
- export const SixFileList = defineContainer('six-file-list', undefined);
163
- export const SixFileListItem = defineContainer('six-file-list-item', undefined, [
241
+ export const SixFileList = /*@__PURE__*/ defineContainer('six-file-list', undefined);
242
+ export const SixFileListItem = /*@__PURE__*/ defineContainer('six-file-list-item', undefined, [
164
243
  'identifier',
165
244
  'name',
166
245
  'date',
@@ -169,50 +248,68 @@ export const SixFileListItem = defineContainer('six-file-list-item', undefined,
169
248
  'nodelete',
170
249
  'six-file-list-item-download',
171
250
  'six-file-list-item-remove'
251
+ ], [
252
+ 'six-file-list-item-download',
253
+ 'six-file-list-item-remove'
172
254
  ]);
173
- export const SixFileUpload = defineContainer('six-file-upload', undefined, [
255
+ export const SixFileUpload = /*@__PURE__*/ defineContainer('six-file-upload', undefined, [
174
256
  'compact',
175
257
  'label',
176
258
  'disabled',
177
259
  'accept',
178
260
  'multiple',
179
261
  'maxFileSize',
262
+ 'uploading',
263
+ 'errorText',
264
+ 'invalid',
265
+ 'six-file-upload-success',
266
+ 'six-file-upload-failure'
267
+ ], [
180
268
  'six-file-upload-success',
181
269
  'six-file-upload-failure'
182
270
  ]);
183
- export const SixFooter = defineContainer('six-footer', undefined);
184
- export const SixGroupLabel = defineContainer('six-group-label', undefined, [
271
+ export const SixFooter = /*@__PURE__*/ defineContainer('six-footer', undefined);
272
+ export const SixGroupLabel = /*@__PURE__*/ defineContainer('six-group-label', undefined, [
185
273
  'size',
186
274
  'label',
187
275
  'helpText',
188
276
  'disabled',
189
277
  'required'
190
278
  ]);
191
- export const SixHeader = defineContainer('six-header', undefined, [
279
+ export const SixHeader = /*@__PURE__*/ defineContainer('six-header', undefined, [
192
280
  'shiftContent',
193
- 'hideHamburgerMenu',
194
- 'openHamburgerMenu',
195
- 'openSearch',
196
- 'clickableLogo',
197
- 'six-header-app-name-clicked',
198
- 'six-header-app-switcher-select',
199
- 'six-header-profile-select',
200
- 'six-header-hamburger-menu-clicked',
201
- 'six-header-logo-clicked',
202
- 'six-header-search-field-toggle'
203
- ]);
204
- export const SixIcon = defineContainer('six-icon', undefined, [
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'
296
+ ]);
297
+ export const SixIcon = /*@__PURE__*/ defineContainer('six-icon', undefined, [
205
298
  'size',
206
- 'filled'
299
+ 'filled',
300
+ 'library'
207
301
  ]);
208
- export const SixIconButton = defineContainer('six-icon-button', undefined, [
302
+ export const SixIconButton = /*@__PURE__*/ defineContainer('six-icon-button', undefined, [
209
303
  'name',
210
304
  'size',
211
305
  'label',
212
306
  'disabled',
213
- 'html'
307
+ 'html',
308
+ 'href',
309
+ 'target',
310
+ 'download'
214
311
  ]);
215
- export const SixInput = defineContainer('six-input', undefined, [
312
+ export const SixInput = /*@__PURE__*/ defineContainer('six-input', undefined, [
216
313
  'type',
217
314
  'size',
218
315
  'name',
@@ -228,6 +325,7 @@ export const SixInput = defineContainer('six-input', undefined, [
228
325
  'max',
229
326
  'step',
230
327
  'pattern',
328
+ 'dropdownSearch',
231
329
  'required',
232
330
  'autocapitalize',
233
331
  'autocorrect',
@@ -247,8 +345,14 @@ export const SixInput = defineContainer('six-input', undefined, [
247
345
  'six-input-input',
248
346
  'six-input-focus',
249
347
  'six-input-blur'
348
+ ], [
349
+ 'six-input-change',
350
+ 'six-input-clear',
351
+ 'six-input-input',
352
+ 'six-input-focus',
353
+ 'six-input-blur'
250
354
  ], 'value', 'input');
251
- export const SixItemPicker = defineContainer('six-item-picker', undefined, [
355
+ export const SixItemPicker = /*@__PURE__*/ defineContainer('six-item-picker', undefined, [
252
356
  'value',
253
357
  'type',
254
358
  'min',
@@ -265,47 +369,59 @@ export const SixItemPicker = defineContainer('six-item-picker', undefined, [
265
369
  'debounce',
266
370
  'six-item-picker-change',
267
371
  'six-item-picker-change-debounced'
372
+ ], [
373
+ 'six-item-picker-change',
374
+ 'six-item-picker-change-debounced'
268
375
  ]);
269
- export const SixLanguageSwitcher = defineContainer('six-language-switcher', undefined, [
376
+ export const SixLanguageSwitcher = /*@__PURE__*/ defineContainer('six-language-switcher', undefined, [
270
377
  'selected',
271
378
  'languages',
272
379
  'six-language-switcher-change'
380
+ ], [
381
+ 'six-language-switcher-change'
273
382
  ]);
274
- export const SixLayoutGrid = defineContainer('six-layout-grid', undefined, [
383
+ export const SixLayoutGrid = /*@__PURE__*/ defineContainer('six-layout-grid', undefined, [
275
384
  'columns'
276
385
  ]);
277
- export const SixMainContainer = defineContainer('six-main-container', undefined, [
386
+ export const SixLogo = /*@__PURE__*/ defineContainer('six-logo', undefined, [
387
+ 'brand'
388
+ ]);
389
+ export const SixMainContainer = /*@__PURE__*/ defineContainer('six-main-container', undefined, [
278
390
  'padded'
279
391
  ]);
280
- export const SixMenu = defineContainer('six-menu', undefined, [
392
+ export const SixMenu = /*@__PURE__*/ defineContainer('six-menu', undefined, [
281
393
  'removeBoxShadow',
282
394
  'items',
283
395
  'itemsShown',
284
396
  'virtualScroll',
285
397
  'itemSize',
286
398
  'scrollingDebounce',
399
+ 'disableKeyboardHandling',
400
+ 'six-menu-item-selected'
401
+ ], [
287
402
  'six-menu-item-selected'
288
403
  ]);
289
- export const SixMenuDivider = defineContainer('six-menu-divider', undefined);
290
- export const SixMenuItem = defineContainer('six-menu-item', undefined, [
404
+ export const SixMenuDivider = /*@__PURE__*/ defineContainer('six-menu-divider', undefined);
405
+ export const SixMenuItem = /*@__PURE__*/ defineContainer('six-menu-item', undefined, [
406
+ 'checkType',
291
407
  'checked',
292
408
  'value',
293
409
  'disabled'
294
410
  ]);
295
- export const SixMenuLabel = defineContainer('six-menu-label', undefined);
296
- export const SixPicto = defineContainer('six-picto', undefined, [
411
+ export const SixMenuLabel = /*@__PURE__*/ defineContainer('six-menu-label', undefined);
412
+ export const SixPicto = /*@__PURE__*/ defineContainer('six-picto', undefined, [
297
413
  'size'
298
414
  ]);
299
- export const SixProgressBar = defineContainer('six-progress-bar', undefined, [
415
+ export const SixProgressBar = /*@__PURE__*/ defineContainer('six-progress-bar', undefined, [
300
416
  'percentage',
301
417
  'indeterminate'
302
418
  ]);
303
- export const SixProgressRing = defineContainer('six-progress-ring', undefined, [
419
+ export const SixProgressRing = /*@__PURE__*/ defineContainer('six-progress-ring', undefined, [
304
420
  'size',
305
421
  'strokeWidth',
306
422
  'percentage'
307
423
  ]);
308
- export const SixRadio = defineContainer('six-radio', undefined, [
424
+ export const SixRadio = /*@__PURE__*/ defineContainer('six-radio', undefined, [
309
425
  'name',
310
426
  'value',
311
427
  'disabled',
@@ -314,8 +430,12 @@ export const SixRadio = defineContainer('six-radio', undefined, [
314
430
  'six-radio-blur',
315
431
  'six-radio-change',
316
432
  'six-radio-focus'
433
+ ], [
434
+ 'six-radio-blur',
435
+ 'six-radio-change',
436
+ 'six-radio-focus'
317
437
  ]);
318
- export const SixRange = defineContainer('six-range', undefined, [
438
+ export const SixRange = /*@__PURE__*/ defineContainer('six-range', undefined, [
319
439
  'name',
320
440
  'value',
321
441
  'required',
@@ -333,25 +453,51 @@ export const SixRange = defineContainer('six-range', undefined, [
333
453
  'six-range-change',
334
454
  'six-range-blur',
335
455
  'six-range-focus'
456
+ ], [
457
+ 'six-range-change',
458
+ 'six-range-blur',
459
+ 'six-range-focus'
336
460
  ], 'value', 'input');
337
- export const SixRoot = defineContainer('six-root', undefined, [
338
- 'breakpoint',
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
+ ]);
482
+ export const SixRoot = /*@__PURE__*/ defineContainer('six-root', undefined, [
339
483
  'padded',
340
484
  'stage',
341
- 'version',
342
- 'six-root-collapsed'
485
+ 'version'
343
486
  ]);
344
- export const SixSearchField = defineContainer('six-search-field', undefined, [
487
+ export const SixSearchField = /*@__PURE__*/ defineContainer('six-search-field', undefined, [
345
488
  'placeholder',
346
489
  'debounce',
347
490
  'disabled',
348
491
  'value',
349
492
  'clearable',
350
493
  'six-search-field-change'
494
+ ], [
495
+ 'six-search-field-change'
351
496
  ]);
352
- export const SixSelect = defineContainer('six-select', undefined, [
497
+ export const SixSelect = /*@__PURE__*/ defineContainer('six-select', undefined, [
353
498
  'multiple',
354
- 'maxTagsVisible',
499
+ 'selectAllButton',
500
+ 'selectAllText',
355
501
  'disabled',
356
502
  'name',
357
503
  'placeholder',
@@ -378,8 +524,12 @@ export const SixSelect = defineContainer('six-select', undefined, [
378
524
  'six-select-change',
379
525
  'six-select-focus',
380
526
  'six-select-blur'
527
+ ], [
528
+ 'six-select-change',
529
+ 'six-select-focus',
530
+ 'six-select-blur'
381
531
  ], 'value', 'change');
382
- export const SixSidebar = defineContainer('six-sidebar', undefined, [
532
+ export const SixSidebar = /*@__PURE__*/ defineContainer('six-sidebar', undefined, [
383
533
  'position',
384
534
  'open',
385
535
  'width',
@@ -389,14 +539,21 @@ export const SixSidebar = defineContainer('six-sidebar', undefined, [
389
539
  'six-sidebar-hide',
390
540
  'six-sidebar-after-hide',
391
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'
392
548
  ]);
393
- export const SixSidebarItem = defineContainer('six-sidebar-item', undefined, [
549
+ export const SixSidebarItem = /*@__PURE__*/ defineContainer('six-sidebar-item', undefined, [
394
550
  'value',
395
551
  'selected',
396
552
  'disabled',
553
+ 'icon',
397
554
  'href'
398
555
  ]);
399
- export const SixSidebarItemGroup = defineContainer('six-sidebar-item-group', undefined, [
556
+ export const SixSidebarItemGroup = /*@__PURE__*/ defineContainer('six-sidebar-item-group', undefined, [
400
557
  'name',
401
558
  'icon',
402
559
  'value',
@@ -404,13 +561,14 @@ export const SixSidebarItemGroup = defineContainer('six-sidebar-item-group', und
404
561
  'summaryIcon',
405
562
  'href'
406
563
  ]);
407
- export const SixSpinner = defineContainer('six-spinner', undefined, [
564
+ export const SixSpinner = /*@__PURE__*/ defineContainer('six-spinner', undefined, [
565
+ 'logo',
408
566
  'six'
409
567
  ]);
410
- export const SixStageIndicator = defineContainer('six-stage-indicator', undefined, [
568
+ export const SixStageIndicator = /*@__PURE__*/ defineContainer('six-stage-indicator', undefined, [
411
569
  'stage'
412
570
  ]);
413
- export const SixSwitch = defineContainer('six-switch', undefined, [
571
+ export const SixSwitch = /*@__PURE__*/ defineContainer('six-switch', undefined, [
414
572
  'name',
415
573
  'value',
416
574
  'disabled',
@@ -423,32 +581,44 @@ export const SixSwitch = defineContainer('six-switch', undefined, [
423
581
  'six-switch-blur',
424
582
  'six-switch-change',
425
583
  'six-switch-focus'
584
+ ], [
585
+ 'six-switch-blur',
586
+ 'six-switch-change',
587
+ 'six-switch-focus'
426
588
  ], 'checked', 'change');
427
- export const SixTab = defineContainer('six-tab', undefined, [
589
+ export const SixTab = /*@__PURE__*/ defineContainer('six-tab', undefined, [
428
590
  'panel',
429
591
  'active',
430
592
  'closable',
593
+ 'hoverContent',
431
594
  'disabled',
432
595
  'six-tab-close'
596
+ ], [
597
+ 'six-tab-close'
433
598
  ]);
434
- export const SixTabGroup = defineContainer('six-tab-group', undefined, [
599
+ export const SixTabGroup = /*@__PURE__*/ defineContainer('six-tab-group', undefined, [
435
600
  'placement',
436
601
  'noScrollControls',
437
602
  'six-tab-show',
438
603
  'six-tab-hide'
604
+ ], [
605
+ 'six-tab-show',
606
+ 'six-tab-hide'
439
607
  ]);
440
- export const SixTabPanel = defineContainer('six-tab-panel', undefined, [
608
+ export const SixTabPanel = /*@__PURE__*/ defineContainer('six-tab-panel', undefined, [
441
609
  'name',
442
610
  'active'
443
611
  ]);
444
- export const SixTag = defineContainer('six-tag', undefined, [
612
+ export const SixTag = /*@__PURE__*/ defineContainer('six-tag', undefined, [
445
613
  'type',
446
614
  'size',
447
615
  'pill',
448
616
  'clearable',
449
617
  'six-tag-clear'
618
+ ], [
619
+ 'six-tag-clear'
450
620
  ]);
451
- export const SixTextarea = defineContainer('six-textarea', undefined, [
621
+ export const SixTextarea = /*@__PURE__*/ defineContainer('six-textarea', undefined, [
452
622
  'size',
453
623
  'name',
454
624
  'value',
@@ -475,8 +645,13 @@ export const SixTextarea = defineContainer('six-textarea', undefined, [
475
645
  'six-textarea-input',
476
646
  'six-textarea-focus',
477
647
  'six-textarea-blur'
648
+ ], [
649
+ 'six-textarea-change',
650
+ 'six-textarea-input',
651
+ 'six-textarea-focus',
652
+ 'six-textarea-blur'
478
653
  ], 'value', 'input');
479
- export const SixTile = defineContainer('six-tile', undefined, [
654
+ export const SixTile = /*@__PURE__*/ defineContainer('six-tile', undefined, [
480
655
  'label',
481
656
  'iconName',
482
657
  'closeable',
@@ -486,8 +661,11 @@ export const SixTile = defineContainer('six-tile', undefined, [
486
661
  'size',
487
662
  'six-tile-closed',
488
663
  'six-tile-selected'
664
+ ], [
665
+ 'six-tile-closed',
666
+ 'six-tile-selected'
489
667
  ]);
490
- export const SixTimepicker = defineContainer('six-timepicker', undefined, [
668
+ export const SixTimepicker = /*@__PURE__*/ defineContainer('six-timepicker', undefined, [
491
669
  'format',
492
670
  'separator',
493
671
  'value',
@@ -514,8 +692,12 @@ export const SixTimepicker = defineContainer('six-timepicker', undefined, [
514
692
  'six-timepicker-change',
515
693
  'six-timepicker-change-debounced',
516
694
  'six-timepicker-clear'
695
+ ], [
696
+ 'six-timepicker-change',
697
+ 'six-timepicker-change-debounced',
698
+ 'six-timepicker-clear'
517
699
  ]);
518
- export const SixTooltip = defineContainer('six-tooltip', undefined, [
700
+ export const SixTooltip = /*@__PURE__*/ defineContainer('six-tooltip', undefined, [
519
701
  'content',
520
702
  'placement',
521
703
  'disabled',
@@ -527,5 +709,10 @@ export const SixTooltip = defineContainer('six-tooltip', undefined, [
527
709
  'six-tooltip-after-show',
528
710
  'six-tooltip-hide',
529
711
  'six-tooltip-after-hide'
712
+ ], [
713
+ 'six-tooltip-show',
714
+ 'six-tooltip-after-show',
715
+ 'six-tooltip-hide',
716
+ 'six-tooltip-after-hide'
530
717
  ]);
531
718
  //# 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
- export declare const defineContainer: <Props, VModelType = string | number | boolean>(name: string, defineCustomElement: any, componentProps?: string[], modelProp?: string, modelUpdateEvent?: string) => (props: Props & InputProps<VModelType> & {}) => any;
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 (classes === null || classes === void 0 ? void 0 : classes.split(' ')) || [];
22
+ return classes?.split(' ') || [];
12
23
  };
13
24
  const getElementClasses = (ref, componentClasses, defaultClasses = []) => {
14
- var _a;
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
- modelPropValue = (e === null || e === void 0 ? void 0 : e.target)[modelProp];
32
- emit(UPDATE_VALUE_EVENT, modelPropValue);
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 = (_a = currentInstance === null || currentInstance === void 0 ? void 0 : currentInstance.appContext) === null || _a === void 0 ? void 0 : _a.provides[NAV_MANAGER];
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 = Object.assign(Object.assign({}, propsToAdd), { [modelProp]: props[MODEL_VALUE] });
151
+ propsToAdd = {
152
+ ...propsToAdd,
153
+ [modelProp]: props[MODEL_VALUE],
154
+ };
86
155
  }
87
156
  else if (modelPropValue !== EMPTY_PROP) {
88
- propsToAdd = Object.assign(Object.assign({}, propsToAdd), { [modelProp]: modelPropValue });
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":"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"}
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,46 @@
1
1
  {
2
2
  "name": "@six-group/ui-library-vue",
3
- "version": "0.0.0-insider.6705a47",
3
+ "version": "0.0.0-insider.6c31a5f",
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
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/six-group/six-webcomponents.git"
14
+ },
15
+ "exports": {
16
+ ".": {
17
+ "types": "./dist/index.d.ts",
18
+ "import": "./dist/index.js"
19
+ }
20
+ },
10
21
  "scripts": {
11
22
  "test": "echo \"Error: run tests from root\" && exit 1",
12
23
  "build": "npm run tsc",
13
- "tsc": "tsc -p . --outDir ./dist"
24
+ "tsc": "tsc -p . --outDir ./dist",
25
+ "watch": "npm run build -- --watch"
14
26
  },
15
27
  "publishConfig": {
16
- "access": "public"
28
+ "access": "public",
29
+ "provenance": true
30
+ },
31
+ "dependencies": {
32
+ "@stencil/vue-output-target": "0.10.8",
33
+ "@six-group/ui-library": "*"
17
34
  },
18
35
  "peerDependencies": {
19
36
  "@six-group/ui-library": "*"
20
37
  },
38
+ "devDependencies": {
39
+ "typescript": "~5.1.3"
40
+ },
21
41
  "private": false,
22
42
  "sideEffects": false,
23
43
  "engines": {
24
- "node": ">=16.0.0"
44
+ "node": ">=20"
25
45
  }
26
46
  }