@six-group/ui-library-vue 0.0.0-insider.faf050a → 0.0.0-insider.fbc1348

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/plugin.d.ts CHANGED
@@ -1,2 +1,7 @@
1
1
  import { Plugin } from 'vue';
2
- export declare const ComponentLibrary: Plugin;
2
+ import { Router } from 'vue-router';
3
+ export type UiLibraryVueOptions = {
4
+ router?: Router;
5
+ applyPolyfills?: boolean;
6
+ };
7
+ export declare const UiLibraryVue: Plugin;
package/dist/plugin.js CHANGED
@@ -1,9 +1,18 @@
1
1
  import { applyPolyfills, defineCustomElements } from '@six-group/ui-library/loader';
2
- export const ComponentLibrary = {
3
- async install() {
4
- applyPolyfills().then(() => {
5
- defineCustomElements();
6
- });
2
+ export const UiLibraryVue = {
3
+ async install(app, options) {
4
+ if (options === null || options === void 0 ? void 0 : options.applyPolyfills) {
5
+ await applyPolyfills();
6
+ }
7
+ defineCustomElements();
8
+ if (options === null || options === void 0 ? void 0 : 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
@@ -1 +1 @@
1
- {"version":3,"file":"plugin.js","sourceRoot":"","sources":["../src/lib/plugin.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,oBAAoB,EAAE,MAAM,8BAA8B,CAAC;AAEpF,MAAM,CAAC,MAAM,gBAAgB,GAAW;IACtC,KAAK,CAAC,OAAO;QACX,cAAc,EAAE,CAAC,IAAI,CAAC,GAAG,EAAE;YACzB,oBAAoB,EAAE,CAAC;QACzB,CAAC,CAAC,CAAC;IACL,CAAC;CACF,CAAC"}
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,54 +1,53 @@
1
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<string | number | boolean> & {}) => any;
9
- export declare const SixDatepicker: (props: JSX.SixDatepicker & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}) => 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 | number | boolean> & {}) => 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<string | number | boolean> & {}) => 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 | number | boolean> & {}) => 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<string | number | 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 | number | boolean> & {}) => 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;
2
+ export declare const SixAlert: import("vue").DefineSetupFnComponent<JSX.SixAlert & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixAlert & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
3
+ export declare const SixAvatar: import("vue").DefineSetupFnComponent<JSX.SixAvatar & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixAvatar & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
4
+ export declare const SixBadge: import("vue").DefineSetupFnComponent<JSX.SixBadge & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixBadge & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
5
+ export declare const SixButton: import("vue").DefineSetupFnComponent<JSX.SixButton & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixButton & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
6
+ export declare const SixCard: import("vue").DefineSetupFnComponent<JSX.SixCard & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixCard & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
7
+ export declare const SixCheckbox: import("vue").DefineSetupFnComponent<JSX.SixCheckbox & import("./vue-component-lib/utils").InputProps<boolean>, {}, {}, JSX.SixCheckbox & import("./vue-component-lib/utils").InputProps<boolean> & {}, import("vue").PublicProps>;
8
+ export declare const SixDatepicker: import("vue").DefineSetupFnComponent<JSX.SixDatepicker & import("./vue-component-lib/utils").InputProps<Date>, {}, {}, JSX.SixDatepicker & import("./vue-component-lib/utils").InputProps<Date> & {}, import("vue").PublicProps>;
9
+ export declare const SixDetails: import("vue").DefineSetupFnComponent<JSX.SixDetails & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixDetails & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
10
+ export declare const SixDialog: import("vue").DefineSetupFnComponent<JSX.SixDialog & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixDialog & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
11
+ export declare const SixDrawer: import("vue").DefineSetupFnComponent<JSX.SixDrawer & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixDrawer & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
12
+ export declare const SixDropdown: import("vue").DefineSetupFnComponent<JSX.SixDropdown & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixDropdown & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
13
+ export declare const SixError: import("vue").DefineSetupFnComponent<JSX.SixError & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixError & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
14
+ export declare const SixErrorPage: import("vue").DefineSetupFnComponent<JSX.SixErrorPage & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixErrorPage & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
15
+ export declare const SixFileList: import("vue").DefineSetupFnComponent<JSX.SixFileList & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixFileList & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
16
+ export declare const SixFileListItem: import("vue").DefineSetupFnComponent<JSX.SixFileListItem & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixFileListItem & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
17
+ export declare const SixFileUpload: import("vue").DefineSetupFnComponent<JSX.SixFileUpload & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixFileUpload & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
18
+ export declare const SixFooter: import("vue").DefineSetupFnComponent<JSX.SixFooter & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixFooter & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
19
+ export declare const SixGroupLabel: import("vue").DefineSetupFnComponent<JSX.SixGroupLabel & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixGroupLabel & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
20
+ export declare const SixHeader: import("vue").DefineSetupFnComponent<JSX.SixHeader & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixHeader & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
21
+ export declare const SixIcon: import("vue").DefineSetupFnComponent<JSX.SixIcon & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixIcon & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
22
+ export declare const SixIconButton: import("vue").DefineSetupFnComponent<JSX.SixIconButton & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixIconButton & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
23
+ export declare const SixInput: import("vue").DefineSetupFnComponent<JSX.SixInput & import("./vue-component-lib/utils").InputProps<string>, {}, {}, JSX.SixInput & import("./vue-component-lib/utils").InputProps<string> & {}, import("vue").PublicProps>;
24
+ export declare const SixItemPicker: import("vue").DefineSetupFnComponent<JSX.SixItemPicker & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixItemPicker & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
25
+ export declare const SixLanguageSwitcher: import("vue").DefineSetupFnComponent<JSX.SixLanguageSwitcher & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixLanguageSwitcher & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
26
+ export declare const SixLayoutGrid: import("vue").DefineSetupFnComponent<JSX.SixLayoutGrid & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixLayoutGrid & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
27
+ export declare const SixMainContainer: import("vue").DefineSetupFnComponent<JSX.SixMainContainer & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixMainContainer & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
28
+ export declare const SixMenu: import("vue").DefineSetupFnComponent<JSX.SixMenu & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixMenu & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
29
+ export declare const SixMenuDivider: import("vue").DefineSetupFnComponent<JSX.SixMenuDivider & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixMenuDivider & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
30
+ export declare const SixMenuItem: import("vue").DefineSetupFnComponent<JSX.SixMenuItem & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixMenuItem & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
31
+ export declare const SixMenuLabel: import("vue").DefineSetupFnComponent<JSX.SixMenuLabel & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixMenuLabel & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
32
+ export declare const SixPicto: import("vue").DefineSetupFnComponent<JSX.SixPicto & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixPicto & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
33
+ export declare const SixProgressBar: import("vue").DefineSetupFnComponent<JSX.SixProgressBar & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixProgressBar & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
34
+ export declare const SixProgressRing: import("vue").DefineSetupFnComponent<JSX.SixProgressRing & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixProgressRing & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
35
+ export declare const SixRadio: import("vue").DefineSetupFnComponent<JSX.SixRadio & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixRadio & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
36
+ export declare const SixRange: import("vue").DefineSetupFnComponent<JSX.SixRange & import("./vue-component-lib/utils").InputProps<number>, {}, {}, JSX.SixRange & import("./vue-component-lib/utils").InputProps<number> & {}, import("vue").PublicProps>;
37
+ export declare const SixRoot: import("vue").DefineSetupFnComponent<JSX.SixRoot & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixRoot & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
38
+ export declare const SixSearchField: import("vue").DefineSetupFnComponent<JSX.SixSearchField & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixSearchField & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
39
+ export declare const SixSelect: import("vue").DefineSetupFnComponent<JSX.SixSelect & import("./vue-component-lib/utils").InputProps<string | string[]>, {}, {}, JSX.SixSelect & import("./vue-component-lib/utils").InputProps<string | string[]> & {}, import("vue").PublicProps>;
40
+ export declare const SixSidebar: import("vue").DefineSetupFnComponent<JSX.SixSidebar & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixSidebar & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
41
+ export declare const SixSidebarItem: import("vue").DefineSetupFnComponent<JSX.SixSidebarItem & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixSidebarItem & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
42
+ export declare const SixSidebarItemGroup: import("vue").DefineSetupFnComponent<JSX.SixSidebarItemGroup & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixSidebarItemGroup & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
43
+ export declare const SixSpinner: import("vue").DefineSetupFnComponent<JSX.SixSpinner & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixSpinner & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
44
+ export declare const SixStageIndicator: import("vue").DefineSetupFnComponent<JSX.SixStageIndicator & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixStageIndicator & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
45
+ export declare const SixSwitch: import("vue").DefineSetupFnComponent<JSX.SixSwitch & import("./vue-component-lib/utils").InputProps<boolean>, {}, {}, JSX.SixSwitch & import("./vue-component-lib/utils").InputProps<boolean> & {}, import("vue").PublicProps>;
46
+ export declare const SixTab: import("vue").DefineSetupFnComponent<JSX.SixTab & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixTab & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
47
+ export declare const SixTabGroup: import("vue").DefineSetupFnComponent<JSX.SixTabGroup & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixTabGroup & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
48
+ export declare const SixTabPanel: import("vue").DefineSetupFnComponent<JSX.SixTabPanel & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixTabPanel & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
49
+ export declare const SixTag: import("vue").DefineSetupFnComponent<JSX.SixTag & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixTag & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
50
+ export declare const SixTextarea: import("vue").DefineSetupFnComponent<JSX.SixTextarea & import("./vue-component-lib/utils").InputProps<string>, {}, {}, JSX.SixTextarea & import("./vue-component-lib/utils").InputProps<string> & {}, import("vue").PublicProps>;
51
+ export declare const SixTile: import("vue").DefineSetupFnComponent<JSX.SixTile & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixTile & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
52
+ export declare const SixTimepicker: import("vue").DefineSetupFnComponent<JSX.SixTimepicker & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixTimepicker & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
53
+ export declare const SixTooltip: import("vue").DefineSetupFnComponent<JSX.SixTooltip & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.SixTooltip & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
@@ -1,7 +1,4 @@
1
1
  import { defineContainer } from './vue-component-lib/utils';
2
- export const SetAttributes = defineContainer('set-attributes', undefined, [
3
- 'value'
4
- ]);
5
2
  export const SixAlert = defineContainer('six-alert', undefined, [
6
3
  'open',
7
4
  'closable',
@@ -56,7 +53,7 @@ export const SixCheckbox = defineContainer('six-checkbox', undefined, [
56
53
  'six-checkbox-blur',
57
54
  'six-checkbox-change',
58
55
  'six-checkbox-focus'
59
- ]);
56
+ ], 'checked', 'change');
60
57
  export const SixDatepicker = defineContainer('six-datepicker', undefined, [
61
58
  'type',
62
59
  'locale',
@@ -88,7 +85,7 @@ export const SixDatepicker = defineContainer('six-datepicker', undefined, [
88
85
  'six-datepicker-select',
89
86
  'six-datepicker-clear',
90
87
  'six-datepicker-blur'
91
- ]);
88
+ ], 'value', 'change');
92
89
  export const SixDetails = defineContainer('six-details', undefined, [
93
90
  'open',
94
91
  'summary',
@@ -143,6 +140,7 @@ export const SixDropdown = defineContainer('six-dropdown', undefined, [
143
140
  'disableHideOnEnterAndSpace',
144
141
  'options',
145
142
  'virtualScroll',
143
+ 'matchTriggerWidth',
146
144
  'six-dropdown-show',
147
145
  'six-dropdown-after-show',
148
146
  'six-dropdown-hide',
@@ -177,6 +175,9 @@ export const SixFileUpload = defineContainer('six-file-upload', undefined, [
177
175
  'accept',
178
176
  'multiple',
179
177
  'maxFileSize',
178
+ 'uploading',
179
+ 'errorText',
180
+ 'invalid',
180
181
  'six-file-upload-success',
181
182
  'six-file-upload-failure'
182
183
  ]);
@@ -190,9 +191,11 @@ export const SixGroupLabel = defineContainer('six-group-label', undefined, [
190
191
  ]);
191
192
  export const SixHeader = defineContainer('six-header', undefined, [
192
193
  'shiftContent',
194
+ 'hideHamburgerMenu',
193
195
  'openHamburgerMenu',
194
196
  'openSearch',
195
197
  'clickableLogo',
198
+ 'logo',
196
199
  'six-header-app-name-clicked',
197
200
  'six-header-app-switcher-select',
198
201
  'six-header-profile-select',
@@ -227,6 +230,7 @@ export const SixInput = defineContainer('six-input', undefined, [
227
230
  'max',
228
231
  'step',
229
232
  'pattern',
233
+ 'dropdownSearch',
230
234
  'required',
231
235
  'autocapitalize',
232
236
  'autocorrect',
@@ -246,7 +250,7 @@ export const SixInput = defineContainer('six-input', undefined, [
246
250
  'six-input-input',
247
251
  'six-input-focus',
248
252
  'six-input-blur'
249
- ]);
253
+ ], 'value', 'input');
250
254
  export const SixItemPicker = defineContainer('six-item-picker', undefined, [
251
255
  'value',
252
256
  'type',
@@ -283,10 +287,12 @@ export const SixMenu = defineContainer('six-menu', undefined, [
283
287
  'virtualScroll',
284
288
  'itemSize',
285
289
  'scrollingDebounce',
290
+ 'disableKeyboardHandling',
286
291
  'six-menu-item-selected'
287
292
  ]);
288
293
  export const SixMenuDivider = defineContainer('six-menu-divider', undefined);
289
294
  export const SixMenuItem = defineContainer('six-menu-item', undefined, [
295
+ 'checkType',
290
296
  'checked',
291
297
  'value',
292
298
  'disabled'
@@ -332,13 +338,11 @@ export const SixRange = defineContainer('six-range', undefined, [
332
338
  'six-range-change',
333
339
  'six-range-blur',
334
340
  'six-range-focus'
335
- ]);
341
+ ], 'value', 'input');
336
342
  export const SixRoot = defineContainer('six-root', undefined, [
337
- 'breakpoint',
338
343
  'padded',
339
344
  'stage',
340
- 'version',
341
- 'six-root-collapsed'
345
+ 'version'
342
346
  ]);
343
347
  export const SixSearchField = defineContainer('six-search-field', undefined, [
344
348
  'placeholder',
@@ -350,6 +354,8 @@ export const SixSearchField = defineContainer('six-search-field', undefined, [
350
354
  ]);
351
355
  export const SixSelect = defineContainer('six-select', undefined, [
352
356
  'multiple',
357
+ 'selectAllButton',
358
+ 'selectAllText',
353
359
  'maxTagsVisible',
354
360
  'disabled',
355
361
  'name',
@@ -377,7 +383,7 @@ export const SixSelect = defineContainer('six-select', undefined, [
377
383
  'six-select-change',
378
384
  'six-select-focus',
379
385
  'six-select-blur'
380
- ]);
386
+ ], 'value', 'change');
381
387
  export const SixSidebar = defineContainer('six-sidebar', undefined, [
382
388
  'position',
383
389
  'open',
@@ -422,7 +428,7 @@ export const SixSwitch = defineContainer('six-switch', undefined, [
422
428
  'six-switch-blur',
423
429
  'six-switch-change',
424
430
  'six-switch-focus'
425
- ]);
431
+ ], 'checked', 'change');
426
432
  export const SixTab = defineContainer('six-tab', undefined, [
427
433
  'panel',
428
434
  'active',
@@ -474,7 +480,7 @@ export const SixTextarea = defineContainer('six-textarea', undefined, [
474
480
  'six-textarea-input',
475
481
  'six-textarea-focus',
476
482
  'six-textarea-blur'
477
- ]);
483
+ ], 'value', 'input');
478
484
  export const SixTile = defineContainer('six-tile', undefined, [
479
485
  'label',
480
486
  'iconName',
@@ -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,4 @@
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
+ 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>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@six-group/ui-library-vue",
3
- "version": "0.0.0-insider.faf050a",
3
+ "version": "0.0.0-insider.fbc1348",
4
4
  "description": "Vue wrapper components for @six-group/ui-library",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -21,6 +21,6 @@
21
21
  "private": false,
22
22
  "sideEffects": false,
23
23
  "engines": {
24
- "node": ">=16.0.0"
24
+ "node": ">=16"
25
25
  }
26
26
  }