@selfeesas/shared-components 0.4.19 → 0.4.20
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/assets/shared-components.css +1 -1
- package/dist/shared-components.cjs.js +3 -3
- package/dist/shared-components.cjs.js.map +1 -1
- package/dist/shared-components.d.ts +12 -1
- package/dist/shared-components.es.js +2994 -2927
- package/dist/shared-components.es.js.map +1 -1
- package/package.json +1 -1
|
@@ -10,7 +10,11 @@ import { RouteLocationRaw } from 'vue-router';
|
|
|
10
10
|
import { RouteParamsRaw } from 'vue-router';
|
|
11
11
|
import { Router } from 'vue-router';
|
|
12
12
|
|
|
13
|
-
declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_TypePropsToOption_5<SelfeeHeaderProps>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
13
|
+
declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_TypePropsToOption_5<SelfeeHeaderProps>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
14
|
+
"project-change": (...args: any[]) => void;
|
|
15
|
+
}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_TypePropsToOption_5<SelfeeHeaderProps>>> & Readonly<{
|
|
16
|
+
"onProject-change"?: ((...args: any[]) => any) | undefined;
|
|
17
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
14
18
|
|
|
15
19
|
declare const __VLS_component_2: DefineComponent<ExtractPropTypes<__VLS_TypePropsToOption_8<LayoutProps>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_TypePropsToOption_8<LayoutProps>>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
16
20
|
|
|
@@ -934,6 +938,13 @@ export declare interface SelfeeHeaderProps {
|
|
|
934
938
|
logoSrc: string;
|
|
935
939
|
logoAlt?: string;
|
|
936
940
|
logoTo?: string;
|
|
941
|
+
showProjectSwitch?: boolean;
|
|
942
|
+
currentProjectLabel?: string;
|
|
943
|
+
availableProjects?: Array<{
|
|
944
|
+
path: string;
|
|
945
|
+
label: string;
|
|
946
|
+
}>;
|
|
947
|
+
currentPath?: string;
|
|
937
948
|
}
|
|
938
949
|
|
|
939
950
|
export declare const SelfeeLoader: DefineComponent<ExtractPropTypes<__VLS_WithDefaults_9<__VLS_TypePropsToOption_14<SelfeeLoaderProps>, {
|