@six-group/ui-library-vue 0.0.0-insider.9277796 → 0.0.0-insider.a9875a1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/plugin.d.ts +6 -1
- package/dist/plugin.js +14 -5
- package/dist/plugin.js.map +1 -1
- package/dist/stencil-generated/components.d.ts +54 -0
- package/dist/{components.js → stencil-generated/components.js} +91 -97
- package/dist/stencil-generated/components.js.map +1 -0
- package/dist/stencil-generated/vue-component-lib/utils.d.ts +4 -0
- package/dist/{vue-component-lib → stencil-generated/vue-component-lib}/utils.js +20 -70
- package/dist/stencil-generated/vue-component-lib/utils.js.map +1 -0
- package/package.json +18 -20
- package/LICENSE +0 -201
- package/dist/components.d.ts +0 -58
- package/dist/components.js.map +0 -1
- package/dist/vue-component-lib/utils.d.ts +0 -20
- package/dist/vue-component-lib/utils.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './components';
|
|
1
|
+
export * from './stencil-generated/components';
|
|
2
2
|
export * from './plugin';
|
package/dist/index.js
CHANGED
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/lib/index.ts"],"names":[],"mappings":"AAAA,cAAc,gCAAgC,CAAC;AAC/C,cAAc,UAAU,CAAC"}
|
package/dist/plugin.d.ts
CHANGED
package/dist/plugin.js
CHANGED
|
@@ -1,9 +1,18 @@
|
|
|
1
1
|
import { applyPolyfills, defineCustomElements } from '@six-group/ui-library/loader';
|
|
2
|
-
export const
|
|
3
|
-
async install() {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}
|
|
2
|
+
export const SixWebComponents = {
|
|
3
|
+
async install(app, options) {
|
|
4
|
+
if (options.applyPolyfills) {
|
|
5
|
+
await applyPolyfills();
|
|
6
|
+
}
|
|
7
|
+
defineCustomElements();
|
|
8
|
+
if (options.router) {
|
|
9
|
+
const navManager = {
|
|
10
|
+
navigate: (payload) => {
|
|
11
|
+
options.router.push(payload.routerLink);
|
|
12
|
+
},
|
|
13
|
+
};
|
|
14
|
+
app.provide('navManager', navManager);
|
|
15
|
+
}
|
|
7
16
|
},
|
|
8
17
|
};
|
|
9
18
|
//# sourceMappingURL=plugin.js.map
|
package/dist/plugin.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.js","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"
|
|
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,gBAAgB,GAAW;IACtC,KAAK,CAAC,OAAO,CAAC,GAAQ,EAAE,OAAgC;QACtD,IAAI,OAAO,CAAC,cAAc,EAAE;YAC1B,MAAM,cAAc,EAAE,CAAC;SACxB;QACD,oBAAoB,EAAE,CAAC;QAEvB,IAAI,OAAO,CAAC,MAAM,EAAE;YAGlB,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"}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
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;
|
|
@@ -1,13 +1,8 @@
|
|
|
1
|
-
/* eslint-disable */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* auto-generated vue proxies */
|
|
4
1
|
import { defineContainer } from './vue-component-lib/utils';
|
|
5
|
-
|
|
6
|
-
defineCustomElements();
|
|
7
|
-
export const SetAttributes = /*@__PURE__*/ defineContainer('set-attributes', undefined, [
|
|
2
|
+
export const SetAttributes = defineContainer('set-attributes', undefined, [
|
|
8
3
|
'value'
|
|
9
4
|
]);
|
|
10
|
-
export const SixAlert =
|
|
5
|
+
export const SixAlert = defineContainer('six-alert', undefined, [
|
|
11
6
|
'open',
|
|
12
7
|
'closable',
|
|
13
8
|
'type',
|
|
@@ -17,18 +12,18 @@ export const SixAlert = /*@__PURE__*/ defineContainer('six-alert', undefined, [
|
|
|
17
12
|
'six-alert-hide',
|
|
18
13
|
'six-alert-after-hide'
|
|
19
14
|
]);
|
|
20
|
-
export const SixAvatar =
|
|
15
|
+
export const SixAvatar = defineContainer('six-avatar', undefined, [
|
|
21
16
|
'image',
|
|
22
17
|
'alt',
|
|
23
18
|
'initials',
|
|
24
19
|
'shape'
|
|
25
20
|
]);
|
|
26
|
-
export const SixBadge =
|
|
21
|
+
export const SixBadge = defineContainer('six-badge', undefined, [
|
|
27
22
|
'type',
|
|
28
23
|
'pill',
|
|
29
24
|
'pulse'
|
|
30
25
|
]);
|
|
31
|
-
export const SixButton =
|
|
26
|
+
export const SixButton = defineContainer('six-button', undefined, [
|
|
32
27
|
'type',
|
|
33
28
|
'size',
|
|
34
29
|
'caret',
|
|
@@ -46,23 +41,23 @@ export const SixButton = /*@__PURE__*/ defineContainer('six-button', undefined,
|
|
|
46
41
|
'six-button-blur',
|
|
47
42
|
'six-button-focus'
|
|
48
43
|
]);
|
|
49
|
-
export const SixCard =
|
|
50
|
-
export const SixCheckbox =
|
|
44
|
+
export const SixCard = defineContainer('six-card', undefined);
|
|
45
|
+
export const SixCheckbox = defineContainer('six-checkbox', undefined, [
|
|
51
46
|
'name',
|
|
52
47
|
'value',
|
|
53
48
|
'disabled',
|
|
54
49
|
'required',
|
|
55
50
|
'label',
|
|
56
51
|
'errorText',
|
|
52
|
+
'errorTextCount',
|
|
53
|
+
'invalid',
|
|
57
54
|
'checked',
|
|
58
55
|
'indeterminate',
|
|
59
|
-
'invalid',
|
|
60
|
-
'errorOnBlur',
|
|
61
56
|
'six-checkbox-blur',
|
|
62
57
|
'six-checkbox-change',
|
|
63
58
|
'six-checkbox-focus'
|
|
64
|
-
], 'checked', '
|
|
65
|
-
export const SixDatepicker =
|
|
59
|
+
], 'checked', 'change');
|
|
60
|
+
export const SixDatepicker = defineContainer('six-datepicker', undefined, [
|
|
66
61
|
'type',
|
|
67
62
|
'locale',
|
|
68
63
|
'open',
|
|
@@ -79,12 +74,13 @@ export const SixDatepicker = /*@__PURE__*/ defineContainer('six-datepicker', und
|
|
|
79
74
|
'defaultDate',
|
|
80
75
|
'placeholder',
|
|
81
76
|
'value',
|
|
77
|
+
'label',
|
|
78
|
+
'errorText',
|
|
79
|
+
'errorTextCount',
|
|
80
|
+
'invalid',
|
|
82
81
|
'containingElement',
|
|
83
82
|
'dateFormat',
|
|
84
83
|
'debounce',
|
|
85
|
-
'errorOnBlur',
|
|
86
|
-
'errorText',
|
|
87
|
-
'label',
|
|
88
84
|
'name',
|
|
89
85
|
'clearable',
|
|
90
86
|
'iconPosition',
|
|
@@ -92,8 +88,8 @@ export const SixDatepicker = /*@__PURE__*/ defineContainer('six-datepicker', und
|
|
|
92
88
|
'six-datepicker-select',
|
|
93
89
|
'six-datepicker-clear',
|
|
94
90
|
'six-datepicker-blur'
|
|
95
|
-
], 'value', '
|
|
96
|
-
export const SixDetails =
|
|
91
|
+
], 'value', 'change');
|
|
92
|
+
export const SixDetails = defineContainer('six-details', undefined, [
|
|
97
93
|
'open',
|
|
98
94
|
'summary',
|
|
99
95
|
'summaryIcon',
|
|
@@ -107,7 +103,7 @@ export const SixDetails = /*@__PURE__*/ defineContainer('six-details', undefined
|
|
|
107
103
|
'six-details-hide',
|
|
108
104
|
'six-details-after-hide'
|
|
109
105
|
]);
|
|
110
|
-
export const SixDialog =
|
|
106
|
+
export const SixDialog = defineContainer('six-dialog', undefined, [
|
|
111
107
|
'open',
|
|
112
108
|
'label',
|
|
113
109
|
'noHeader',
|
|
@@ -118,7 +114,7 @@ export const SixDialog = /*@__PURE__*/ defineContainer('six-dialog', undefined,
|
|
|
118
114
|
'six-dialog-initial-focus',
|
|
119
115
|
'six-dialog-overlay-dismiss'
|
|
120
116
|
]);
|
|
121
|
-
export const SixDrawer =
|
|
117
|
+
export const SixDrawer = defineContainer('six-drawer', undefined, [
|
|
122
118
|
'open',
|
|
123
119
|
'label',
|
|
124
120
|
'placement',
|
|
@@ -131,7 +127,7 @@ export const SixDrawer = /*@__PURE__*/ defineContainer('six-drawer', undefined,
|
|
|
131
127
|
'six-drawer-initial-focus',
|
|
132
128
|
'six-drawer-overlay-dismiss'
|
|
133
129
|
]);
|
|
134
|
-
export const SixDropdown =
|
|
130
|
+
export const SixDropdown = defineContainer('six-dropdown', undefined, [
|
|
135
131
|
'open',
|
|
136
132
|
'placement',
|
|
137
133
|
'closeOnSelect',
|
|
@@ -155,15 +151,16 @@ export const SixDropdown = /*@__PURE__*/ defineContainer('six-dropdown', undefin
|
|
|
155
151
|
'six-async-filter-fired',
|
|
156
152
|
'six-dropdown-scroll'
|
|
157
153
|
]);
|
|
158
|
-
export const
|
|
154
|
+
export const SixError = defineContainer('six-error', undefined);
|
|
155
|
+
export const SixErrorPage = defineContainer('six-error-page', undefined, [
|
|
159
156
|
'errorCode',
|
|
160
157
|
'language',
|
|
161
158
|
'customTitle',
|
|
162
159
|
'customDescription',
|
|
163
160
|
'customIcon'
|
|
164
161
|
]);
|
|
165
|
-
export const SixFileList =
|
|
166
|
-
export const SixFileListItem =
|
|
162
|
+
export const SixFileList = defineContainer('six-file-list', undefined);
|
|
163
|
+
export const SixFileListItem = defineContainer('six-file-list-item', undefined, [
|
|
167
164
|
'identifier',
|
|
168
165
|
'name',
|
|
169
166
|
'date',
|
|
@@ -173,7 +170,7 @@ export const SixFileListItem = /*@__PURE__*/ defineContainer('six-file-list-item
|
|
|
173
170
|
'six-file-list-item-download',
|
|
174
171
|
'six-file-list-item-remove'
|
|
175
172
|
]);
|
|
176
|
-
export const SixFileUpload =
|
|
173
|
+
export const SixFileUpload = defineContainer('six-file-upload', undefined, [
|
|
177
174
|
'compact',
|
|
178
175
|
'label',
|
|
179
176
|
'disabled',
|
|
@@ -183,21 +180,15 @@ export const SixFileUpload = /*@__PURE__*/ defineContainer('six-file-upload', un
|
|
|
183
180
|
'six-file-upload-success',
|
|
184
181
|
'six-file-upload-failure'
|
|
185
182
|
]);
|
|
186
|
-
export const SixFooter =
|
|
187
|
-
export const
|
|
188
|
-
'novalidate',
|
|
189
|
-
'six-form-submit',
|
|
190
|
-
'six-form-change',
|
|
191
|
-
'six-form-reset'
|
|
192
|
-
]);
|
|
193
|
-
export const SixGroupLabel = /*@__PURE__*/ defineContainer('six-group-label', undefined, [
|
|
183
|
+
export const SixFooter = defineContainer('six-footer', undefined);
|
|
184
|
+
export const SixGroupLabel = defineContainer('six-group-label', undefined, [
|
|
194
185
|
'size',
|
|
195
186
|
'label',
|
|
196
187
|
'helpText',
|
|
197
188
|
'disabled',
|
|
198
189
|
'required'
|
|
199
190
|
]);
|
|
200
|
-
export const SixHeader =
|
|
191
|
+
export const SixHeader = defineContainer('six-header', undefined, [
|
|
201
192
|
'shiftContent',
|
|
202
193
|
'openHamburgerMenu',
|
|
203
194
|
'openSearch',
|
|
@@ -209,26 +200,24 @@ export const SixHeader = /*@__PURE__*/ defineContainer('six-header', undefined,
|
|
|
209
200
|
'six-header-logo-clicked',
|
|
210
201
|
'six-header-search-field-toggle'
|
|
211
202
|
]);
|
|
212
|
-
export const SixIcon =
|
|
203
|
+
export const SixIcon = defineContainer('six-icon', undefined, [
|
|
213
204
|
'size',
|
|
214
205
|
'filled'
|
|
215
206
|
]);
|
|
216
|
-
export const SixIconButton =
|
|
207
|
+
export const SixIconButton = defineContainer('six-icon-button', undefined, [
|
|
217
208
|
'name',
|
|
218
209
|
'size',
|
|
219
210
|
'label',
|
|
220
211
|
'disabled',
|
|
221
212
|
'html'
|
|
222
213
|
]);
|
|
223
|
-
export const SixInput =
|
|
214
|
+
export const SixInput = defineContainer('six-input', undefined, [
|
|
224
215
|
'type',
|
|
225
216
|
'size',
|
|
226
217
|
'name',
|
|
227
218
|
'value',
|
|
228
219
|
'pill',
|
|
229
|
-
'label',
|
|
230
220
|
'helpText',
|
|
231
|
-
'errorText',
|
|
232
221
|
'placeholder',
|
|
233
222
|
'disabled',
|
|
234
223
|
'readonly',
|
|
@@ -244,20 +233,21 @@ export const SixInput = /*@__PURE__*/ defineContainer('six-input', undefined, [
|
|
|
244
233
|
'autocomplete',
|
|
245
234
|
'autofocus',
|
|
246
235
|
'spellcheck',
|
|
236
|
+
'label',
|
|
237
|
+
'errorText',
|
|
238
|
+
'errorTextCount',
|
|
247
239
|
'invalid',
|
|
248
240
|
'clearable',
|
|
249
241
|
'togglePassword',
|
|
250
242
|
'inputmode',
|
|
251
243
|
'line',
|
|
252
|
-
'errorOnBlur',
|
|
253
244
|
'six-input-change',
|
|
254
245
|
'six-input-clear',
|
|
255
246
|
'six-input-input',
|
|
256
247
|
'six-input-focus',
|
|
257
|
-
'six-input-blur'
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
export const SixItemPicker = /*@__PURE__*/ defineContainer('six-item-picker', undefined, [
|
|
248
|
+
'six-input-blur'
|
|
249
|
+
], 'value', 'input');
|
|
250
|
+
export const SixItemPicker = defineContainer('six-item-picker', undefined, [
|
|
261
251
|
'value',
|
|
262
252
|
'type',
|
|
263
253
|
'min',
|
|
@@ -275,18 +265,18 @@ export const SixItemPicker = /*@__PURE__*/ defineContainer('six-item-picker', un
|
|
|
275
265
|
'six-item-picker-change',
|
|
276
266
|
'six-item-picker-change-debounced'
|
|
277
267
|
]);
|
|
278
|
-
export const SixLanguageSwitcher =
|
|
268
|
+
export const SixLanguageSwitcher = defineContainer('six-language-switcher', undefined, [
|
|
279
269
|
'selected',
|
|
280
270
|
'languages',
|
|
281
271
|
'six-language-switcher-change'
|
|
282
272
|
]);
|
|
283
|
-
export const SixLayoutGrid =
|
|
273
|
+
export const SixLayoutGrid = defineContainer('six-layout-grid', undefined, [
|
|
284
274
|
'columns'
|
|
285
275
|
]);
|
|
286
|
-
export const SixMainContainer =
|
|
276
|
+
export const SixMainContainer = defineContainer('six-main-container', undefined, [
|
|
287
277
|
'padded'
|
|
288
278
|
]);
|
|
289
|
-
export const SixMenu =
|
|
279
|
+
export const SixMenu = defineContainer('six-menu', undefined, [
|
|
290
280
|
'removeBoxShadow',
|
|
291
281
|
'items',
|
|
292
282
|
'itemsShown',
|
|
@@ -295,26 +285,26 @@ export const SixMenu = /*@__PURE__*/ defineContainer('six-menu', undefined, [
|
|
|
295
285
|
'scrollingDebounce',
|
|
296
286
|
'six-menu-item-selected'
|
|
297
287
|
]);
|
|
298
|
-
export const SixMenuDivider =
|
|
299
|
-
export const SixMenuItem =
|
|
288
|
+
export const SixMenuDivider = defineContainer('six-menu-divider', undefined);
|
|
289
|
+
export const SixMenuItem = defineContainer('six-menu-item', undefined, [
|
|
300
290
|
'checked',
|
|
301
291
|
'value',
|
|
302
292
|
'disabled'
|
|
303
293
|
]);
|
|
304
|
-
export const SixMenuLabel =
|
|
305
|
-
export const SixPicto =
|
|
294
|
+
export const SixMenuLabel = defineContainer('six-menu-label', undefined);
|
|
295
|
+
export const SixPicto = defineContainer('six-picto', undefined, [
|
|
306
296
|
'size'
|
|
307
297
|
]);
|
|
308
|
-
export const SixProgressBar =
|
|
298
|
+
export const SixProgressBar = defineContainer('six-progress-bar', undefined, [
|
|
309
299
|
'percentage',
|
|
310
300
|
'indeterminate'
|
|
311
301
|
]);
|
|
312
|
-
export const SixProgressRing =
|
|
302
|
+
export const SixProgressRing = defineContainer('six-progress-ring', undefined, [
|
|
313
303
|
'size',
|
|
314
304
|
'strokeWidth',
|
|
315
305
|
'percentage'
|
|
316
306
|
]);
|
|
317
|
-
export const SixRadio =
|
|
307
|
+
export const SixRadio = defineContainer('six-radio', undefined, [
|
|
318
308
|
'name',
|
|
319
309
|
'value',
|
|
320
310
|
'disabled',
|
|
@@ -323,42 +313,42 @@ export const SixRadio = /*@__PURE__*/ defineContainer('six-radio', undefined, [
|
|
|
323
313
|
'six-radio-blur',
|
|
324
314
|
'six-radio-change',
|
|
325
315
|
'six-radio-focus'
|
|
326
|
-
]
|
|
327
|
-
export const SixRange =
|
|
316
|
+
]);
|
|
317
|
+
export const SixRange = defineContainer('six-range', undefined, [
|
|
328
318
|
'name',
|
|
329
319
|
'value',
|
|
330
320
|
'required',
|
|
331
|
-
'label',
|
|
332
321
|
'helpText',
|
|
333
|
-
'errorText',
|
|
334
322
|
'disabled',
|
|
323
|
+
'label',
|
|
324
|
+
'errorText',
|
|
325
|
+
'errorTextCount',
|
|
335
326
|
'invalid',
|
|
336
327
|
'min',
|
|
337
328
|
'max',
|
|
338
329
|
'step',
|
|
339
330
|
'tooltip',
|
|
340
331
|
'tooltipFormatter',
|
|
341
|
-
'errorOnBlur',
|
|
342
332
|
'six-range-change',
|
|
343
333
|
'six-range-blur',
|
|
344
334
|
'six-range-focus'
|
|
345
|
-
], 'value', '
|
|
346
|
-
export const SixRoot =
|
|
335
|
+
], 'value', 'input');
|
|
336
|
+
export const SixRoot = defineContainer('six-root', undefined, [
|
|
347
337
|
'breakpoint',
|
|
348
338
|
'padded',
|
|
349
339
|
'stage',
|
|
350
340
|
'version',
|
|
351
341
|
'six-root-collapsed'
|
|
352
342
|
]);
|
|
353
|
-
export const SixSearchField =
|
|
343
|
+
export const SixSearchField = defineContainer('six-search-field', undefined, [
|
|
354
344
|
'placeholder',
|
|
355
345
|
'debounce',
|
|
356
346
|
'disabled',
|
|
357
347
|
'value',
|
|
358
348
|
'clearable',
|
|
359
349
|
'six-search-field-change'
|
|
360
|
-
]
|
|
361
|
-
export const SixSelect =
|
|
350
|
+
]);
|
|
351
|
+
export const SixSelect = defineContainer('six-select', undefined, [
|
|
362
352
|
'multiple',
|
|
363
353
|
'maxTagsVisible',
|
|
364
354
|
'disabled',
|
|
@@ -370,26 +360,25 @@ export const SixSelect = /*@__PURE__*/ defineContainer('six-select', undefined,
|
|
|
370
360
|
'hoist',
|
|
371
361
|
'value',
|
|
372
362
|
'pill',
|
|
373
|
-
'label',
|
|
374
363
|
'helpText',
|
|
375
|
-
'errorText',
|
|
376
364
|
'required',
|
|
377
365
|
'clearable',
|
|
366
|
+
'label',
|
|
367
|
+
'errorText',
|
|
368
|
+
'errorTextCount',
|
|
378
369
|
'invalid',
|
|
379
370
|
'line',
|
|
380
|
-
'errorOnBlur',
|
|
381
371
|
'filter',
|
|
382
372
|
'asyncFilter',
|
|
383
373
|
'autocomplete',
|
|
384
374
|
'inputDebounce',
|
|
385
375
|
'options',
|
|
386
376
|
'virtualScroll',
|
|
387
|
-
'defaultValue',
|
|
388
377
|
'six-select-change',
|
|
389
378
|
'six-select-focus',
|
|
390
379
|
'six-select-blur'
|
|
391
|
-
], 'value', '
|
|
392
|
-
export const SixSidebar =
|
|
380
|
+
], 'value', 'change');
|
|
381
|
+
export const SixSidebar = defineContainer('six-sidebar', undefined, [
|
|
393
382
|
'position',
|
|
394
383
|
'open',
|
|
395
384
|
'width',
|
|
@@ -400,66 +389,69 @@ export const SixSidebar = /*@__PURE__*/ defineContainer('six-sidebar', undefined
|
|
|
400
389
|
'six-sidebar-after-hide',
|
|
401
390
|
'six-sidebar-initial-focus'
|
|
402
391
|
]);
|
|
403
|
-
export const SixSidebarItem =
|
|
392
|
+
export const SixSidebarItem = defineContainer('six-sidebar-item', undefined, [
|
|
404
393
|
'value',
|
|
405
394
|
'selected',
|
|
406
|
-
'disabled'
|
|
395
|
+
'disabled',
|
|
396
|
+
'href'
|
|
407
397
|
]);
|
|
408
|
-
export const SixSidebarItemGroup =
|
|
398
|
+
export const SixSidebarItemGroup = defineContainer('six-sidebar-item-group', undefined, [
|
|
409
399
|
'name',
|
|
410
400
|
'icon',
|
|
411
401
|
'value',
|
|
412
402
|
'open',
|
|
413
|
-
'summaryIcon'
|
|
403
|
+
'summaryIcon',
|
|
404
|
+
'href'
|
|
414
405
|
]);
|
|
415
|
-
export const SixSpinner =
|
|
406
|
+
export const SixSpinner = defineContainer('six-spinner', undefined, [
|
|
416
407
|
'six'
|
|
417
408
|
]);
|
|
418
|
-
export const SixStageIndicator =
|
|
409
|
+
export const SixStageIndicator = defineContainer('six-stage-indicator', undefined, [
|
|
419
410
|
'stage'
|
|
420
411
|
]);
|
|
421
|
-
export const SixSwitch =
|
|
412
|
+
export const SixSwitch = defineContainer('six-switch', undefined, [
|
|
422
413
|
'name',
|
|
423
414
|
'value',
|
|
424
415
|
'disabled',
|
|
425
416
|
'required',
|
|
426
417
|
'checked',
|
|
418
|
+
'label',
|
|
419
|
+
'errorText',
|
|
420
|
+
'errorTextCount',
|
|
427
421
|
'invalid',
|
|
428
422
|
'six-switch-blur',
|
|
429
423
|
'six-switch-change',
|
|
430
424
|
'six-switch-focus'
|
|
431
|
-
], 'checked', '
|
|
432
|
-
export const SixTab =
|
|
425
|
+
], 'checked', 'change');
|
|
426
|
+
export const SixTab = defineContainer('six-tab', undefined, [
|
|
433
427
|
'panel',
|
|
434
428
|
'active',
|
|
435
429
|
'closable',
|
|
436
430
|
'disabled',
|
|
437
431
|
'six-tab-close'
|
|
438
432
|
]);
|
|
439
|
-
export const SixTabGroup =
|
|
433
|
+
export const SixTabGroup = defineContainer('six-tab-group', undefined, [
|
|
440
434
|
'placement',
|
|
441
435
|
'noScrollControls',
|
|
442
436
|
'six-tab-show',
|
|
443
437
|
'six-tab-hide'
|
|
444
438
|
]);
|
|
445
|
-
export const SixTabPanel =
|
|
439
|
+
export const SixTabPanel = defineContainer('six-tab-panel', undefined, [
|
|
446
440
|
'name',
|
|
447
441
|
'active'
|
|
448
442
|
]);
|
|
449
|
-
export const SixTag =
|
|
443
|
+
export const SixTag = defineContainer('six-tag', undefined, [
|
|
450
444
|
'type',
|
|
451
445
|
'size',
|
|
452
446
|
'pill',
|
|
453
447
|
'clearable',
|
|
454
448
|
'six-tag-clear'
|
|
455
449
|
]);
|
|
456
|
-
export const SixTextarea =
|
|
450
|
+
export const SixTextarea = defineContainer('six-textarea', undefined, [
|
|
457
451
|
'size',
|
|
458
452
|
'name',
|
|
459
453
|
'value',
|
|
460
|
-
'label',
|
|
461
454
|
'helpText',
|
|
462
|
-
'errorText',
|
|
463
455
|
'placeholder',
|
|
464
456
|
'rows',
|
|
465
457
|
'resize',
|
|
@@ -468,6 +460,9 @@ export const SixTextarea = /*@__PURE__*/ defineContainer('six-textarea', undefin
|
|
|
468
460
|
'minlength',
|
|
469
461
|
'maxlength',
|
|
470
462
|
'required',
|
|
463
|
+
'label',
|
|
464
|
+
'errorText',
|
|
465
|
+
'errorTextCount',
|
|
471
466
|
'invalid',
|
|
472
467
|
'autocapitalize',
|
|
473
468
|
'autocorrect',
|
|
@@ -475,14 +470,12 @@ export const SixTextarea = /*@__PURE__*/ defineContainer('six-textarea', undefin
|
|
|
475
470
|
'autofocus',
|
|
476
471
|
'spellcheck',
|
|
477
472
|
'inputmode',
|
|
478
|
-
'errorOnBlur',
|
|
479
473
|
'six-textarea-change',
|
|
480
474
|
'six-textarea-input',
|
|
481
475
|
'six-textarea-focus',
|
|
482
|
-
'six-textarea-blur'
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
export const SixTile = /*@__PURE__*/ defineContainer('six-tile', undefined, [
|
|
476
|
+
'six-textarea-blur'
|
|
477
|
+
], 'value', 'input');
|
|
478
|
+
export const SixTile = defineContainer('six-tile', undefined, [
|
|
486
479
|
'label',
|
|
487
480
|
'iconName',
|
|
488
481
|
'closeable',
|
|
@@ -493,7 +486,7 @@ export const SixTile = /*@__PURE__*/ defineContainer('six-tile', undefined, [
|
|
|
493
486
|
'six-tile-closed',
|
|
494
487
|
'six-tile-selected'
|
|
495
488
|
]);
|
|
496
|
-
export const SixTimepicker =
|
|
489
|
+
export const SixTimepicker = defineContainer('six-timepicker', undefined, [
|
|
497
490
|
'format',
|
|
498
491
|
'separator',
|
|
499
492
|
'value',
|
|
@@ -505,9 +498,10 @@ export const SixTimepicker = /*@__PURE__*/ defineContainer('six-timepicker', und
|
|
|
505
498
|
'size',
|
|
506
499
|
'required',
|
|
507
500
|
'placeholder',
|
|
508
|
-
'errorOnBlur',
|
|
509
501
|
'errorText',
|
|
502
|
+
'errorTextCount',
|
|
510
503
|
'label',
|
|
504
|
+
'invalid',
|
|
511
505
|
'name',
|
|
512
506
|
'clearable',
|
|
513
507
|
'iconPosition',
|
|
@@ -520,7 +514,7 @@ export const SixTimepicker = /*@__PURE__*/ defineContainer('six-timepicker', und
|
|
|
520
514
|
'six-timepicker-change-debounced',
|
|
521
515
|
'six-timepicker-clear'
|
|
522
516
|
]);
|
|
523
|
-
export const SixTooltip =
|
|
517
|
+
export const SixTooltip = defineContainer('six-tooltip', undefined, [
|
|
524
518
|
'content',
|
|
525
519
|
'placement',
|
|
526
520
|
'disabled',
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"components.js","sourceRoot":"","sources":["../../src/lib/stencil-generated/components.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export interface InputProps<T> {
|
|
2
|
+
modelValue?: T;
|
|
3
|
+
}
|
|
4
|
+
export declare const defineContainer: <Props, VModelType = string | number | boolean>(name: string, defineCustomElement: any, componentProps?: string[], modelProp?: string, modelUpdateEvent?: string) => (props: Props & InputProps<VModelType> & {}) => any;
|
|
@@ -1,19 +1,10 @@
|
|
|
1
|
-
import { defineComponent, getCurrentInstance, h, inject, ref } from 'vue';
|
|
1
|
+
import { defineComponent, getCurrentInstance, h, inject, ref, withDirectives } from 'vue';
|
|
2
2
|
const UPDATE_VALUE_EVENT = 'update:modelValue';
|
|
3
3
|
const MODEL_VALUE = 'modelValue';
|
|
4
4
|
const ROUTER_LINK_VALUE = 'routerLink';
|
|
5
5
|
const NAV_MANAGER = 'navManager';
|
|
6
6
|
const ROUTER_PROP_PREFIX = 'router';
|
|
7
7
|
const ARIA_PROP_PREFIX = 'aria';
|
|
8
|
-
/**
|
|
9
|
-
* Starting in Vue 3.1.0, all properties are
|
|
10
|
-
* added as keys to the props object, even if
|
|
11
|
-
* they are not being used. In order to correctly
|
|
12
|
-
* account for both value props and v-model props,
|
|
13
|
-
* we need to check if the key exists for Vue <3.1.0
|
|
14
|
-
* and then check if it is not undefined for Vue >= 3.1.0.
|
|
15
|
-
* See https://github.com/vuejs/vue-next/issues/3889
|
|
16
|
-
*/
|
|
17
8
|
const EMPTY_PROP = Symbol();
|
|
18
9
|
const DEFAULT_EMPTY_PROP = { default: EMPTY_PROP };
|
|
19
10
|
const getComponentClasses = (classes) => {
|
|
@@ -23,26 +14,7 @@ const getElementClasses = (ref, componentClasses, defaultClasses = []) => {
|
|
|
23
14
|
var _a;
|
|
24
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
16
|
};
|
|
26
|
-
|
|
27
|
-
* Create a callback to define a Vue component wrapper around a Web Component.
|
|
28
|
-
*
|
|
29
|
-
* @prop name - The component tag name (i.e. `ion-button`)
|
|
30
|
-
* @prop componentProps - An array of properties on the
|
|
31
|
-
* component. These usually match up with the @Prop definitions
|
|
32
|
-
* in each component's TSX file.
|
|
33
|
-
* @prop customElement - An option custom element instance to pass
|
|
34
|
-
* to customElements.define. Only set if `includeImportCustomElements: true` in your config.
|
|
35
|
-
* @prop modelProp - The prop that v-model binds to (i.e. value)
|
|
36
|
-
* @prop modelUpdateEvent - The event that is fired from your Web Component when the value changes (i.e. ionChange)
|
|
37
|
-
* @prop externalModelUpdateEvent - The external event to fire from your Vue component when modelUpdateEvent fires. This is used for ensuring that v-model references have been
|
|
38
|
-
* correctly updated when a user's event callback fires.
|
|
39
|
-
*/
|
|
40
|
-
export const defineContainer = (name, defineCustomElement, componentProps = [], modelProp, modelUpdateEvent, externalModelUpdateEvent) => {
|
|
41
|
-
/**
|
|
42
|
-
* Create a Vue component wrapper around a Web Component.
|
|
43
|
-
* Note: The `props` here are not all properties on a component.
|
|
44
|
-
* They refer to whatever properties are set on an instance of a component.
|
|
45
|
-
*/
|
|
17
|
+
export const defineContainer = (name, defineCustomElement, componentProps = [], modelProp, modelUpdateEvent) => {
|
|
46
18
|
if (defineCustomElement !== undefined) {
|
|
47
19
|
defineCustomElement();
|
|
48
20
|
}
|
|
@@ -51,28 +23,16 @@ export const defineContainer = (name, defineCustomElement, componentProps = [],
|
|
|
51
23
|
let modelPropValue = props[modelProp];
|
|
52
24
|
const containerRef = ref();
|
|
53
25
|
const classes = new Set(getComponentClasses(attrs.class));
|
|
54
|
-
const
|
|
55
|
-
|
|
56
|
-
if (vnode.el) {
|
|
26
|
+
const vModelDirective = {
|
|
27
|
+
created: (el) => {
|
|
57
28
|
const eventsNames = Array.isArray(modelUpdateEvent) ? modelUpdateEvent : [modelUpdateEvent];
|
|
58
29
|
eventsNames.forEach((eventName) => {
|
|
59
|
-
|
|
30
|
+
el.addEventListener(eventName.toLowerCase(), (e) => {
|
|
60
31
|
modelPropValue = (e === null || e === void 0 ? void 0 : e.target)[modelProp];
|
|
61
32
|
emit(UPDATE_VALUE_EVENT, modelPropValue);
|
|
62
|
-
/**
|
|
63
|
-
* We need to emit the change event here
|
|
64
|
-
* rather than on the web component to ensure
|
|
65
|
-
* that any v-model bindings have been updated.
|
|
66
|
-
* Otherwise, the developer will listen on the
|
|
67
|
-
* native web component, but the v-model will
|
|
68
|
-
* not have been updated yet.
|
|
69
|
-
*/
|
|
70
|
-
if (externalModelUpdateEvent) {
|
|
71
|
-
emit(externalModelUpdateEvent, e);
|
|
72
|
-
}
|
|
73
33
|
});
|
|
74
34
|
});
|
|
75
|
-
}
|
|
35
|
+
},
|
|
76
36
|
};
|
|
77
37
|
const currentInstance = getCurrentInstance();
|
|
78
38
|
const hasRouter = (_a = currentInstance === null || currentInstance === void 0 ? void 0 : currentInstance.appContext) === null || _a === void 0 ? void 0 : _a.provides[NAV_MANAGER];
|
|
@@ -113,14 +73,7 @@ export const defineContainer = (name, defineCustomElement, componentProps = [],
|
|
|
113
73
|
ref: containerRef,
|
|
114
74
|
class: getElementClasses(containerRef, classes),
|
|
115
75
|
onClick: handleClick,
|
|
116
|
-
onVnodeBeforeMount: modelUpdateEvent ? onVnodeBeforeMount : undefined,
|
|
117
76
|
};
|
|
118
|
-
/**
|
|
119
|
-
* We can use Object.entries here
|
|
120
|
-
* to avoid the hasOwnProperty check,
|
|
121
|
-
* but that would require 2 iterations
|
|
122
|
-
* where as this only requires 1.
|
|
123
|
-
*/
|
|
124
77
|
for (const key in props) {
|
|
125
78
|
const value = props[key];
|
|
126
79
|
if ((props.hasOwnProperty(key) && value !== EMPTY_PROP) || key.startsWith(ARIA_PROP_PREFIX)) {
|
|
@@ -128,12 +81,6 @@ export const defineContainer = (name, defineCustomElement, componentProps = [],
|
|
|
128
81
|
}
|
|
129
82
|
}
|
|
130
83
|
if (modelProp) {
|
|
131
|
-
/**
|
|
132
|
-
* If form value property was set using v-model
|
|
133
|
-
* then we should use that value.
|
|
134
|
-
* Otherwise, check to see if form value property
|
|
135
|
-
* was set as a static value (i.e. no v-model).
|
|
136
|
-
*/
|
|
137
84
|
if (props[MODEL_VALUE] !== EMPTY_PROP) {
|
|
138
85
|
propsToAdd = Object.assign(Object.assign({}, propsToAdd), { [modelProp]: props[MODEL_VALUE] });
|
|
139
86
|
}
|
|
@@ -141,19 +88,22 @@ export const defineContainer = (name, defineCustomElement, componentProps = [],
|
|
|
141
88
|
propsToAdd = Object.assign(Object.assign({}, propsToAdd), { [modelProp]: modelPropValue });
|
|
142
89
|
}
|
|
143
90
|
}
|
|
144
|
-
|
|
91
|
+
const node = h(name, propsToAdd, slots.default && slots.default());
|
|
92
|
+
return modelProp === undefined ? node : withDirectives(node, [[vModelDirective]]);
|
|
145
93
|
};
|
|
146
94
|
});
|
|
147
|
-
Container
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
95
|
+
if (typeof Container !== 'function') {
|
|
96
|
+
Container.name = name;
|
|
97
|
+
Container.props = {
|
|
98
|
+
[ROUTER_LINK_VALUE]: DEFAULT_EMPTY_PROP,
|
|
99
|
+
};
|
|
100
|
+
componentProps.forEach((componentProp) => {
|
|
101
|
+
Container.props[componentProp] = DEFAULT_EMPTY_PROP;
|
|
102
|
+
});
|
|
103
|
+
if (modelProp) {
|
|
104
|
+
Container.props[MODEL_VALUE] = DEFAULT_EMPTY_PROP;
|
|
105
|
+
Container.emits = [UPDATE_VALUE_EVENT];
|
|
106
|
+
}
|
|
157
107
|
}
|
|
158
108
|
return Container;
|
|
159
109
|
};
|
|
@@ -0,0 +1 @@
|
|
|
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,28 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@six-group/ui-library-vue",
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"scripts": {
|
|
8
|
-
"test": "jest",
|
|
9
|
-
"build": "npm run clean && npm run compile",
|
|
10
|
-
"clean": "rimraf dist",
|
|
11
|
-
"compile": "npm run tsc",
|
|
12
|
-
"tsc": "tsc -p ."
|
|
13
|
-
},
|
|
14
|
-
"main": "./dist/index.js",
|
|
15
|
-
"module": "./dist/index.js",
|
|
16
|
-
"types": "./dist/index.d.ts",
|
|
3
|
+
"version": "0.0.0-insider.a9875a1",
|
|
4
|
+
"description": "Vue wrapper components for @six-group/ui-library",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
17
7
|
"files": [
|
|
18
|
-
"dist
|
|
8
|
+
"dist"
|
|
19
9
|
],
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
10
|
+
"scripts": {
|
|
11
|
+
"test": "echo \"Error: run tests from root\" && exit 1",
|
|
12
|
+
"build": "npm run tsc",
|
|
13
|
+
"tsc": "tsc -p . --outDir ./dist"
|
|
24
14
|
},
|
|
25
|
-
"
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public"
|
|
17
|
+
},
|
|
18
|
+
"peerDependencies": {
|
|
26
19
|
"@six-group/ui-library": "*"
|
|
20
|
+
},
|
|
21
|
+
"private": false,
|
|
22
|
+
"sideEffects": false,
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=16.0.0"
|
|
27
25
|
}
|
|
28
26
|
}
|
package/LICENSE
DELETED
|
@@ -1,201 +0,0 @@
|
|
|
1
|
-
Apache License
|
|
2
|
-
Version 2.0, January 2004
|
|
3
|
-
http://www.apache.org/licenses/
|
|
4
|
-
|
|
5
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
-
|
|
7
|
-
1. Definitions.
|
|
8
|
-
|
|
9
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
-
|
|
12
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
-
the copyright owner that is granting the License.
|
|
14
|
-
|
|
15
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
-
other entities that control, are controlled by, or are under common
|
|
17
|
-
control with that entity. For the purposes of this definition,
|
|
18
|
-
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
-
direction or management of such entity, whether by contract or
|
|
20
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
-
|
|
23
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
-
exercising permissions granted by this License.
|
|
25
|
-
|
|
26
|
-
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
-
including but not limited to software source code, documentation
|
|
28
|
-
source, and configuration files.
|
|
29
|
-
|
|
30
|
-
"Object" form shall mean any form resulting from mechanical
|
|
31
|
-
transformation or translation of a Source form, including but
|
|
32
|
-
not limited to compiled object code, generated documentation,
|
|
33
|
-
and conversions to other media types.
|
|
34
|
-
|
|
35
|
-
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
-
Object form, made available under the License, as indicated by a
|
|
37
|
-
copyright notice that is included in or attached to the work
|
|
38
|
-
(an example is provided in the Appendix below).
|
|
39
|
-
|
|
40
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
-
form, that is based on (or derived from) the Work and for which the
|
|
42
|
-
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
-
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
-
of this License, Derivative Works shall not include works that remain
|
|
45
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
-
the Work and Derivative Works thereof.
|
|
47
|
-
|
|
48
|
-
"Contribution" shall mean any work of authorship, including
|
|
49
|
-
the original version of the Work and any modifications or additions
|
|
50
|
-
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
-
means any form of electronic, verbal, or written communication sent
|
|
55
|
-
to the Licensor or its representatives, including but not limited to
|
|
56
|
-
communication on electronic mailing lists, source code control systems,
|
|
57
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
-
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
-
excluding communication that is conspicuously marked or otherwise
|
|
60
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
-
|
|
62
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
-
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
-
subsequently incorporated within the Work.
|
|
65
|
-
|
|
66
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
-
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
-
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
-
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
-
Work and such Derivative Works in Source or Object form.
|
|
72
|
-
|
|
73
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
-
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
-
(except as stated in this section) patent license to make, have made,
|
|
77
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
-
where such license applies only to those patent claims licensable
|
|
79
|
-
by such Contributor that are necessarily infringed by their
|
|
80
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
-
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
-
institute patent litigation against any entity (including a
|
|
83
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
-
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
-
or contributory patent infringement, then any patent licenses
|
|
86
|
-
granted to You under this License for that Work shall terminate
|
|
87
|
-
as of the date such litigation is filed.
|
|
88
|
-
|
|
89
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
-
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
-
modifications, and in Source or Object form, provided that You
|
|
92
|
-
meet the following conditions:
|
|
93
|
-
|
|
94
|
-
(a) You must give any other recipients of the Work or
|
|
95
|
-
Derivative Works a copy of this License; and
|
|
96
|
-
|
|
97
|
-
(b) You must cause any modified files to carry prominent notices
|
|
98
|
-
stating that You changed the files; and
|
|
99
|
-
|
|
100
|
-
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
-
that You distribute, all copyright, patent, trademark, and
|
|
102
|
-
attribution notices from the Source form of the Work,
|
|
103
|
-
excluding those notices that do not pertain to any part of
|
|
104
|
-
the Derivative Works; and
|
|
105
|
-
|
|
106
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
-
distribution, then any Derivative Works that You distribute must
|
|
108
|
-
include a readable copy of the attribution notices contained
|
|
109
|
-
within such NOTICE file, excluding those notices that do not
|
|
110
|
-
pertain to any part of the Derivative Works, in at least one
|
|
111
|
-
of the following places: within a NOTICE text file distributed
|
|
112
|
-
as part of the Derivative Works; within the Source form or
|
|
113
|
-
documentation, if provided along with the Derivative Works; or,
|
|
114
|
-
within a display generated by the Derivative Works, if and
|
|
115
|
-
wherever such third-party notices normally appear. The contents
|
|
116
|
-
of the NOTICE file are for informational purposes only and
|
|
117
|
-
do not modify the License. You may add Your own attribution
|
|
118
|
-
notices within Derivative Works that You distribute, alongside
|
|
119
|
-
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
-
that such additional attribution notices cannot be construed
|
|
121
|
-
as modifying the License.
|
|
122
|
-
|
|
123
|
-
You may add Your own copyright statement to Your modifications and
|
|
124
|
-
may provide additional or different license terms and conditions
|
|
125
|
-
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
-
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
-
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
-
the conditions stated in this License.
|
|
129
|
-
|
|
130
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
-
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
-
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
-
this License, without any additional terms or conditions.
|
|
134
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
-
the terms of any separate license agreement you may have executed
|
|
136
|
-
with Licensor regarding such Contributions.
|
|
137
|
-
|
|
138
|
-
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
-
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
-
except as required for reasonable and customary use in describing the
|
|
141
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
-
|
|
143
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
-
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
-
implied, including, without limitation, any warranties or conditions
|
|
148
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
-
appropriateness of using or redistributing the Work and assume any
|
|
151
|
-
risks associated with Your exercise of permissions under this License.
|
|
152
|
-
|
|
153
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
-
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
-
unless required by applicable law (such as deliberate and grossly
|
|
156
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
-
liable to You for damages, including any direct, indirect, special,
|
|
158
|
-
incidental, or consequential damages of any character arising as a
|
|
159
|
-
result of this License or out of the use or inability to use the
|
|
160
|
-
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
-
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
-
other commercial damages or losses), even if such Contributor
|
|
163
|
-
has been advised of the possibility of such damages.
|
|
164
|
-
|
|
165
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
-
or other liability obligations and/or rights consistent with this
|
|
169
|
-
License. However, in accepting such obligations, You may act only
|
|
170
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
-
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
-
defend, and hold each Contributor harmless for any liability
|
|
173
|
-
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
-
of your accepting any such warranty or additional liability.
|
|
175
|
-
|
|
176
|
-
END OF TERMS AND CONDITIONS
|
|
177
|
-
|
|
178
|
-
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
-
|
|
180
|
-
To apply the Apache License to your work, attach the following
|
|
181
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
-
replaced with your own identifying information. (Don't include
|
|
183
|
-
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
-
comment syntax for the file format. We also recommend that a
|
|
185
|
-
file or class name and description of purpose be included on the
|
|
186
|
-
same "printed page" as the copyright notice for easier
|
|
187
|
-
identification within third-party archives.
|
|
188
|
-
|
|
189
|
-
Copyright 2022 SIX Group AG
|
|
190
|
-
|
|
191
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
-
you may not use this file except in compliance with the License.
|
|
193
|
-
You may obtain a copy of the License at
|
|
194
|
-
|
|
195
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
-
|
|
197
|
-
Unless required by applicable law or agreed to in writing, software
|
|
198
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
-
See the License for the specific language governing permissions and
|
|
201
|
-
limitations under the License.
|
package/dist/components.d.ts
DELETED
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
import type { JSX } from '@six-group/ui-library';
|
|
2
|
-
export declare const SetAttributes: import("vue").DefineComponent<JSX.SetAttributes & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SetAttributes & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
3
|
-
export declare const SixAlert: import("vue").DefineComponent<JSX.SixAlert & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixAlert & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
4
|
-
export declare const SixAvatar: import("vue").DefineComponent<JSX.SixAvatar & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixAvatar & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
5
|
-
export declare const SixBadge: import("vue").DefineComponent<JSX.SixBadge & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixBadge & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
6
|
-
export declare const SixButton: import("vue").DefineComponent<JSX.SixButton & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixButton & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
7
|
-
export declare const SixCard: import("vue").DefineComponent<JSX.SixCard & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixCard & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
8
|
-
export declare const SixCheckbox: import("vue").DefineComponent<JSX.SixCheckbox & import("./vue-component-lib/utils").InputProps<boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixCheckbox & import("./vue-component-lib/utils").InputProps<boolean>>, {}>;
|
|
9
|
-
export declare const SixDatepicker: import("vue").DefineComponent<JSX.SixDatepicker & import("./vue-component-lib/utils").InputProps<Date>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixDatepicker & import("./vue-component-lib/utils").InputProps<Date>>, {}>;
|
|
10
|
-
export declare const SixDetails: import("vue").DefineComponent<JSX.SixDetails & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixDetails & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
11
|
-
export declare const SixDialog: import("vue").DefineComponent<JSX.SixDialog & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixDialog & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
12
|
-
export declare const SixDrawer: import("vue").DefineComponent<JSX.SixDrawer & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixDrawer & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
13
|
-
export declare const SixDropdown: import("vue").DefineComponent<JSX.SixDropdown & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixDropdown & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
14
|
-
export declare const SixErrorPage: import("vue").DefineComponent<JSX.SixErrorPage & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixErrorPage & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
15
|
-
export declare const SixFileList: import("vue").DefineComponent<JSX.SixFileList & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixFileList & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
16
|
-
export declare const SixFileListItem: import("vue").DefineComponent<JSX.SixFileListItem & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixFileListItem & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
17
|
-
export declare const SixFileUpload: import("vue").DefineComponent<JSX.SixFileUpload & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixFileUpload & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
18
|
-
export declare const SixFooter: import("vue").DefineComponent<JSX.SixFooter & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixFooter & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
19
|
-
export declare const SixForm: import("vue").DefineComponent<JSX.SixForm & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixForm & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
20
|
-
export declare const SixGroupLabel: import("vue").DefineComponent<JSX.SixGroupLabel & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixGroupLabel & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
21
|
-
export declare const SixHeader: import("vue").DefineComponent<JSX.SixHeader & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixHeader & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
22
|
-
export declare const SixIcon: import("vue").DefineComponent<JSX.SixIcon & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixIcon & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
23
|
-
export declare const SixIconButton: import("vue").DefineComponent<JSX.SixIconButton & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixIconButton & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
24
|
-
export declare const SixInput: import("vue").DefineComponent<JSX.SixInput & import("./vue-component-lib/utils").InputProps<string>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixInput & import("./vue-component-lib/utils").InputProps<string>>, {}>;
|
|
25
|
-
export declare const SixItemPicker: import("vue").DefineComponent<JSX.SixItemPicker & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixItemPicker & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
26
|
-
export declare const SixLanguageSwitcher: import("vue").DefineComponent<JSX.SixLanguageSwitcher & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixLanguageSwitcher & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
27
|
-
export declare const SixLayoutGrid: import("vue").DefineComponent<JSX.SixLayoutGrid & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixLayoutGrid & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {
|
|
28
|
-
columns?: any;
|
|
29
|
-
}>;
|
|
30
|
-
export declare const SixMainContainer: import("vue").DefineComponent<JSX.SixMainContainer & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixMainContainer & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
31
|
-
export declare const SixMenu: import("vue").DefineComponent<JSX.SixMenu & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixMenu & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
32
|
-
export declare const SixMenuDivider: import("vue").DefineComponent<JSX.SixMenuDivider & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixMenuDivider & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
33
|
-
export declare const SixMenuItem: import("vue").DefineComponent<JSX.SixMenuItem & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixMenuItem & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
34
|
-
export declare const SixMenuLabel: import("vue").DefineComponent<JSX.SixMenuLabel & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixMenuLabel & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
35
|
-
export declare const SixPicto: import("vue").DefineComponent<JSX.SixPicto & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixPicto & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
36
|
-
export declare const SixProgressBar: import("vue").DefineComponent<JSX.SixProgressBar & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixProgressBar & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
37
|
-
export declare const SixProgressRing: import("vue").DefineComponent<JSX.SixProgressRing & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixProgressRing & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
38
|
-
export declare const SixRadio: import("vue").DefineComponent<JSX.SixRadio & import("./vue-component-lib/utils").InputProps<string>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixRadio & import("./vue-component-lib/utils").InputProps<string>>, {}>;
|
|
39
|
-
export declare const SixRange: import("vue").DefineComponent<JSX.SixRange & import("./vue-component-lib/utils").InputProps<number>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixRange & import("./vue-component-lib/utils").InputProps<number>>, {}>;
|
|
40
|
-
export declare const SixRoot: import("vue").DefineComponent<JSX.SixRoot & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixRoot & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
41
|
-
export declare const SixSearchField: import("vue").DefineComponent<JSX.SixSearchField & import("./vue-component-lib/utils").InputProps<string>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixSearchField & import("./vue-component-lib/utils").InputProps<string>>, {}>;
|
|
42
|
-
export declare const SixSelect: import("vue").DefineComponent<JSX.SixSelect & import("./vue-component-lib/utils").InputProps<string | string[]>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixSelect & import("./vue-component-lib/utils").InputProps<string | string[]>>, {}>;
|
|
43
|
-
export declare const SixSidebar: import("vue").DefineComponent<JSX.SixSidebar & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixSidebar & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
44
|
-
export declare const SixSidebarItem: import("vue").DefineComponent<JSX.SixSidebarItem & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixSidebarItem & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
45
|
-
export declare const SixSidebarItemGroup: import("vue").DefineComponent<JSX.SixSidebarItemGroup & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixSidebarItemGroup & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
46
|
-
export declare const SixSpinner: import("vue").DefineComponent<JSX.SixSpinner & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixSpinner & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
47
|
-
export declare const SixStageIndicator: import("vue").DefineComponent<JSX.SixStageIndicator & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixStageIndicator & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
48
|
-
export declare const SixSwitch: import("vue").DefineComponent<JSX.SixSwitch & import("./vue-component-lib/utils").InputProps<boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixSwitch & import("./vue-component-lib/utils").InputProps<boolean>>, {}>;
|
|
49
|
-
export declare const SixTab: import("vue").DefineComponent<JSX.SixTab & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixTab & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
50
|
-
export declare const SixTabGroup: import("vue").DefineComponent<JSX.SixTabGroup & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixTabGroup & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
51
|
-
export declare const SixTabPanel: import("vue").DefineComponent<JSX.SixTabPanel & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixTabPanel & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
52
|
-
export declare const SixTag: import("vue").DefineComponent<JSX.SixTag & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixTag & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
53
|
-
export declare const SixTextarea: import("vue").DefineComponent<JSX.SixTextarea & import("./vue-component-lib/utils").InputProps<string>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixTextarea & import("./vue-component-lib/utils").InputProps<string>>, {}>;
|
|
54
|
-
export declare const SixTile: import("vue").DefineComponent<JSX.SixTile & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixTile & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {
|
|
55
|
-
iconName?: any;
|
|
56
|
-
}>;
|
|
57
|
-
export declare const SixTimepicker: import("vue").DefineComponent<JSX.SixTimepicker & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixTimepicker & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
58
|
-
export declare const SixTooltip: import("vue").DefineComponent<JSX.SixTooltip & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.SixTooltip & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
package/dist/components.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"components.js","sourceRoot":"","sources":["../src/components.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
export interface InputProps<T> {
|
|
2
|
-
modelValue?: T;
|
|
3
|
-
}
|
|
4
|
-
/**
|
|
5
|
-
* Create a callback to define a Vue component wrapper around a Web Component.
|
|
6
|
-
*
|
|
7
|
-
* @prop name - The component tag name (i.e. `ion-button`)
|
|
8
|
-
* @prop componentProps - An array of properties on the
|
|
9
|
-
* component. These usually match up with the @Prop definitions
|
|
10
|
-
* in each component's TSX file.
|
|
11
|
-
* @prop customElement - An option custom element instance to pass
|
|
12
|
-
* to customElements.define. Only set if `includeImportCustomElements: true` in your config.
|
|
13
|
-
* @prop modelProp - The prop that v-model binds to (i.e. value)
|
|
14
|
-
* @prop modelUpdateEvent - The event that is fired from your Web Component when the value changes (i.e. ionChange)
|
|
15
|
-
* @prop externalModelUpdateEvent - The external event to fire from your Vue component when modelUpdateEvent fires. This is used for ensuring that v-model references have been
|
|
16
|
-
* correctly updated when a user's event callback fires.
|
|
17
|
-
*/
|
|
18
|
-
export declare const defineContainer: <Props, VModelType = string | number | boolean>(name: string, defineCustomElement: any, componentProps?: string[], modelProp?: string, modelUpdateEvent?: string, externalModelUpdateEvent?: string) => import("vue").DefineComponent<Props & InputProps<VModelType>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<Props & InputProps<VModelType> extends infer T ? T extends Props & InputProps<VModelType> ? T extends import("vue").ComponentPropsOptions<{
|
|
19
|
-
[x: string]: unknown;
|
|
20
|
-
}> ? import("vue").ExtractPropTypes<T> : T : never : never>, import("vue").ExtractDefaultPropTypes<Props & InputProps<VModelType>>>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../src/vue-component-lib/utils.ts"],"names":[],"mappings":"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"}
|