@solfacil/girassol 0.66.0 → 0.69.0
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/components.d.ts +2 -2
- package/dist/components.json +1 -1
- package/dist/girassol.es.js +10094 -8397
- package/dist/girassol.umd.js +11 -11
- package/dist/style.css +1 -1
- package/dist/types/index.d.ts +470 -47
- package/dist/types/templates/header/Header.vue.d.ts +141 -0
- package/dist/types/templates/header/HeaderTabMenu.types.d.ts +6 -0
- package/dist/types/templates/header/HeaderTabMenu.vue.d.ts +38 -0
- package/dist/types/templates/header/actions/ActionsSection.vue.d.ts +79 -0
- package/dist/types/templates/header/logo/LogoSection.vue.d.ts +16 -0
- package/dist/types/templates/header/menu/Mobile.vue.d.ts +39 -0
- package/dist/types/templates/header/notification/Item.vue.d.ts +23 -0
- package/dist/types/templates/header/notification/ListDesktop.vue.d.ts +30 -0
- package/dist/types/templates/header/notification/ListMobile.vue.d.ts +30 -0
- package/dist/types/templates/header/notification/Notification.vue.d.ts +28 -0
- package/dist/types/templates/header/products/Desktop.vue.d.ts +18 -0
- package/dist/types/templates/header/products/MainItems.vue.d.ts +18 -0
- package/dist/types/templates/header/products/Mobile.vue.d.ts +22 -0
- package/dist/types/templates/header/search/SearchInput.vue.d.ts +48 -0
- package/dist/types/templates/header/support/Mobile.vue.d.ts +22 -0
- package/dist/types/templates/header/support/SupportMenu.vue.d.ts +16 -0
- package/dist/types/templates/header/tabmenu/TabMenu.vue.d.ts +19 -0
- package/dist/types/templates/header/types.d.ts +46 -0
- package/dist/types/templates/header/user/Desktop.vue.d.ts +44 -0
- package/dist/types/templates/header/user/MenuItems.vue.d.ts +29 -0
- package/dist/types/templates/header/user/Mobile.vue.d.ts +49 -0
- package/dist/types/templates/header/user/UserMenu.vue.d.ts +49 -0
- package/dist/types/templates/index.d.ts +4 -0
- package/package.json +2 -1
- package/dist/visibility-off.f25ea2aa.mjs +0 -19
- package/dist/visibility.8b105a47.mjs +0 -19
package/dist/types/index.d.ts
CHANGED
|
@@ -32,8 +32,7 @@ import { SolDivider } from './components/divider';
|
|
|
32
32
|
import { SolLink } from './components/link/';
|
|
33
33
|
import { SolHeader } from './components/headers/header';
|
|
34
34
|
import { SolSidebar } from './components/sidebars/sidebar';
|
|
35
|
-
import {
|
|
36
|
-
import { SolPageBackoffice } from './components/templates/backoffice/page';
|
|
35
|
+
import { SolTemplateHeader, SolTemplateHeaderTabMenu } from './templates';
|
|
37
36
|
import { SolUserInfoBackoffice } from './components/headers/header-backoffice/user-info';
|
|
38
37
|
import { SolHeaderBackoffice } from './components/headers/header-backoffice';
|
|
39
38
|
import { SolSidebarBackoffice } from './components/sidebars/sidebar-backoffice';
|
|
@@ -6678,26 +6677,111 @@ export declare const components: {
|
|
|
6678
6677
|
isOpenMobileSidebar: boolean;
|
|
6679
6678
|
onlyMobile: boolean;
|
|
6680
6679
|
}>;
|
|
6681
|
-
|
|
6680
|
+
SolTemplateHeader: {
|
|
6682
6681
|
new (...args: any[]): {
|
|
6683
6682
|
$: import("vue").ComponentInternalInstance;
|
|
6684
6683
|
$data: {};
|
|
6685
6684
|
$props: Partial<{
|
|
6686
|
-
|
|
6685
|
+
center: boolean;
|
|
6686
|
+
searchPlaceholder: string;
|
|
6687
|
+
viewAo: boolean;
|
|
6688
|
+
umPersonification: boolean;
|
|
6689
|
+
inPersonification: boolean;
|
|
6690
|
+
notificationError: boolean;
|
|
6691
|
+
menuProducts: boolean;
|
|
6692
|
+
showNotification: boolean;
|
|
6693
|
+
showTabMenu: boolean;
|
|
6694
|
+
tabMenuItems: import("./templates").HeaderTabMenuItem[];
|
|
6695
|
+
searchLoading: boolean;
|
|
6696
|
+
showSearch: boolean;
|
|
6687
6697
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
6688
|
-
|
|
6698
|
+
center: {
|
|
6699
|
+
type: import("vue").PropType<boolean>;
|
|
6700
|
+
} & {
|
|
6701
|
+
default: boolean;
|
|
6702
|
+
};
|
|
6703
|
+
searchPlaceholder: {
|
|
6689
6704
|
type: import("vue").PropType<string>;
|
|
6690
|
-
required: true;
|
|
6691
6705
|
} & {
|
|
6692
6706
|
default: string;
|
|
6693
6707
|
};
|
|
6694
|
-
|
|
6695
|
-
type: import("vue").PropType<
|
|
6708
|
+
product: {
|
|
6709
|
+
type: import("vue").PropType<import("./templates/header/types").Product>;
|
|
6710
|
+
required: true;
|
|
6696
6711
|
};
|
|
6697
|
-
|
|
6698
|
-
type: import("vue").PropType<
|
|
6712
|
+
viewAo: {
|
|
6713
|
+
type: import("vue").PropType<boolean>;
|
|
6714
|
+
} & {
|
|
6715
|
+
default: boolean;
|
|
6699
6716
|
};
|
|
6700
|
-
|
|
6717
|
+
user: {
|
|
6718
|
+
type: import("vue").PropType<import("./templates/header/types").User>;
|
|
6719
|
+
required: true;
|
|
6720
|
+
};
|
|
6721
|
+
partner: {
|
|
6722
|
+
type: import("vue").PropType<import("./templates/header/types").Partner>;
|
|
6723
|
+
required: true;
|
|
6724
|
+
};
|
|
6725
|
+
umPersonification: {
|
|
6726
|
+
type: import("vue").PropType<boolean>;
|
|
6727
|
+
} & {
|
|
6728
|
+
default: boolean;
|
|
6729
|
+
};
|
|
6730
|
+
inPersonification: {
|
|
6731
|
+
type: import("vue").PropType<boolean>;
|
|
6732
|
+
} & {
|
|
6733
|
+
default: boolean;
|
|
6734
|
+
};
|
|
6735
|
+
notifications: {
|
|
6736
|
+
type: import("vue").PropType<import("./templates/header/types").NotificationsList>;
|
|
6737
|
+
};
|
|
6738
|
+
notificationError: {
|
|
6739
|
+
type: import("vue").PropType<boolean>;
|
|
6740
|
+
} & {
|
|
6741
|
+
default: boolean;
|
|
6742
|
+
};
|
|
6743
|
+
menuProducts: {
|
|
6744
|
+
type: import("vue").PropType<boolean>;
|
|
6745
|
+
} & {
|
|
6746
|
+
default: boolean;
|
|
6747
|
+
};
|
|
6748
|
+
showNotification: {
|
|
6749
|
+
type: import("vue").PropType<boolean>;
|
|
6750
|
+
} & {
|
|
6751
|
+
default: boolean;
|
|
6752
|
+
};
|
|
6753
|
+
showTabMenu: {
|
|
6754
|
+
type: import("vue").PropType<boolean>;
|
|
6755
|
+
} & {
|
|
6756
|
+
default: boolean;
|
|
6757
|
+
};
|
|
6758
|
+
tabMenuItems: {
|
|
6759
|
+
type: import("vue").PropType<import("./templates").HeaderTabMenuItem[]>;
|
|
6760
|
+
} & {
|
|
6761
|
+
default: () => never[];
|
|
6762
|
+
};
|
|
6763
|
+
searchLoading: {
|
|
6764
|
+
type: import("vue").PropType<boolean>;
|
|
6765
|
+
} & {
|
|
6766
|
+
default: boolean;
|
|
6767
|
+
};
|
|
6768
|
+
showSearch: {
|
|
6769
|
+
type: import("vue").PropType<boolean>;
|
|
6770
|
+
} & {
|
|
6771
|
+
default: boolean;
|
|
6772
|
+
};
|
|
6773
|
+
}>> & {
|
|
6774
|
+
onSearch?: ((value: string) => any) | undefined;
|
|
6775
|
+
onClickUser?: ((event: string) => any) | undefined;
|
|
6776
|
+
onClickSolfacilPlus?: (() => any) | undefined;
|
|
6777
|
+
onClickLogout?: (() => any) | undefined;
|
|
6778
|
+
onClickMenu?: (() => any) | undefined;
|
|
6779
|
+
onClickNotification?: ((payload: {
|
|
6780
|
+
event: string;
|
|
6781
|
+
notification: string | boolean | import("./templates/header/types").Notification;
|
|
6782
|
+
}) => any) | undefined;
|
|
6783
|
+
onSearchChange?: ((value: string) => any) | undefined;
|
|
6784
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "center" | "searchPlaceholder" | "viewAo" | "umPersonification" | "inPersonification" | "notificationError" | "menuProducts" | "showNotification" | "showTabMenu" | "tabMenuItems" | "searchLoading" | "showSearch">;
|
|
6701
6785
|
$attrs: {
|
|
6702
6786
|
[x: string]: unknown;
|
|
6703
6787
|
};
|
|
@@ -6709,23 +6793,128 @@ export declare const components: {
|
|
|
6709
6793
|
}>;
|
|
6710
6794
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
6711
6795
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
6712
|
-
$emit: (event: string,
|
|
6796
|
+
$emit: ((event: "search", value: string) => void) & ((event: "clickUser", event: string) => void) & ((event: "clickSolfacilPlus") => void) & ((event: "clickLogout") => void) & ((event: "clickMenu") => void) & ((event: "clickNotification", payload: {
|
|
6797
|
+
event: string;
|
|
6798
|
+
notification: string | boolean | import("./templates/header/types").Notification;
|
|
6799
|
+
}) => void) & ((event: "searchChange", value: string) => void);
|
|
6713
6800
|
$el: any;
|
|
6714
6801
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
6715
|
-
|
|
6802
|
+
center: {
|
|
6803
|
+
type: import("vue").PropType<boolean>;
|
|
6804
|
+
} & {
|
|
6805
|
+
default: boolean;
|
|
6806
|
+
};
|
|
6807
|
+
searchPlaceholder: {
|
|
6716
6808
|
type: import("vue").PropType<string>;
|
|
6717
|
-
required: true;
|
|
6718
6809
|
} & {
|
|
6719
6810
|
default: string;
|
|
6720
6811
|
};
|
|
6721
|
-
|
|
6722
|
-
type: import("vue").PropType<
|
|
6812
|
+
product: {
|
|
6813
|
+
type: import("vue").PropType<import("./templates/header/types").Product>;
|
|
6814
|
+
required: true;
|
|
6723
6815
|
};
|
|
6724
|
-
|
|
6725
|
-
type: import("vue").PropType<
|
|
6816
|
+
viewAo: {
|
|
6817
|
+
type: import("vue").PropType<boolean>;
|
|
6818
|
+
} & {
|
|
6819
|
+
default: boolean;
|
|
6726
6820
|
};
|
|
6727
|
-
|
|
6728
|
-
|
|
6821
|
+
user: {
|
|
6822
|
+
type: import("vue").PropType<import("./templates/header/types").User>;
|
|
6823
|
+
required: true;
|
|
6824
|
+
};
|
|
6825
|
+
partner: {
|
|
6826
|
+
type: import("vue").PropType<import("./templates/header/types").Partner>;
|
|
6827
|
+
required: true;
|
|
6828
|
+
};
|
|
6829
|
+
umPersonification: {
|
|
6830
|
+
type: import("vue").PropType<boolean>;
|
|
6831
|
+
} & {
|
|
6832
|
+
default: boolean;
|
|
6833
|
+
};
|
|
6834
|
+
inPersonification: {
|
|
6835
|
+
type: import("vue").PropType<boolean>;
|
|
6836
|
+
} & {
|
|
6837
|
+
default: boolean;
|
|
6838
|
+
};
|
|
6839
|
+
notifications: {
|
|
6840
|
+
type: import("vue").PropType<import("./templates/header/types").NotificationsList>;
|
|
6841
|
+
};
|
|
6842
|
+
notificationError: {
|
|
6843
|
+
type: import("vue").PropType<boolean>;
|
|
6844
|
+
} & {
|
|
6845
|
+
default: boolean;
|
|
6846
|
+
};
|
|
6847
|
+
menuProducts: {
|
|
6848
|
+
type: import("vue").PropType<boolean>;
|
|
6849
|
+
} & {
|
|
6850
|
+
default: boolean;
|
|
6851
|
+
};
|
|
6852
|
+
showNotification: {
|
|
6853
|
+
type: import("vue").PropType<boolean>;
|
|
6854
|
+
} & {
|
|
6855
|
+
default: boolean;
|
|
6856
|
+
};
|
|
6857
|
+
showTabMenu: {
|
|
6858
|
+
type: import("vue").PropType<boolean>;
|
|
6859
|
+
} & {
|
|
6860
|
+
default: boolean;
|
|
6861
|
+
};
|
|
6862
|
+
tabMenuItems: {
|
|
6863
|
+
type: import("vue").PropType<import("./templates").HeaderTabMenuItem[]>;
|
|
6864
|
+
} & {
|
|
6865
|
+
default: () => never[];
|
|
6866
|
+
};
|
|
6867
|
+
searchLoading: {
|
|
6868
|
+
type: import("vue").PropType<boolean>;
|
|
6869
|
+
} & {
|
|
6870
|
+
default: boolean;
|
|
6871
|
+
};
|
|
6872
|
+
showSearch: {
|
|
6873
|
+
type: import("vue").PropType<boolean>;
|
|
6874
|
+
} & {
|
|
6875
|
+
default: boolean;
|
|
6876
|
+
};
|
|
6877
|
+
}>> & {
|
|
6878
|
+
onSearch?: ((value: string) => any) | undefined;
|
|
6879
|
+
onClickUser?: ((event: string) => any) | undefined;
|
|
6880
|
+
onClickSolfacilPlus?: (() => any) | undefined;
|
|
6881
|
+
onClickLogout?: (() => any) | undefined;
|
|
6882
|
+
onClickMenu?: (() => any) | undefined;
|
|
6883
|
+
onClickNotification?: ((payload: {
|
|
6884
|
+
event: string;
|
|
6885
|
+
notification: string | boolean | import("./templates/header/types").Notification;
|
|
6886
|
+
}) => any) | undefined;
|
|
6887
|
+
onSearchChange?: ((value: string) => any) | undefined;
|
|
6888
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6889
|
+
clickMenu: () => void;
|
|
6890
|
+
} & {
|
|
6891
|
+
clickLogout: () => void;
|
|
6892
|
+
} & {
|
|
6893
|
+
clickUser: (event: string) => void;
|
|
6894
|
+
} & {
|
|
6895
|
+
clickSolfacilPlus: () => void;
|
|
6896
|
+
} & {
|
|
6897
|
+
clickNotification: (payload: {
|
|
6898
|
+
event: string;
|
|
6899
|
+
notification: string | boolean | import("./templates/header/types").Notification;
|
|
6900
|
+
}) => void;
|
|
6901
|
+
} & {
|
|
6902
|
+
search: (value: string) => void;
|
|
6903
|
+
} & {
|
|
6904
|
+
searchChange: (value: string) => void;
|
|
6905
|
+
}, string, {
|
|
6906
|
+
center: boolean;
|
|
6907
|
+
searchPlaceholder: string;
|
|
6908
|
+
viewAo: boolean;
|
|
6909
|
+
umPersonification: boolean;
|
|
6910
|
+
inPersonification: boolean;
|
|
6911
|
+
notificationError: boolean;
|
|
6912
|
+
menuProducts: boolean;
|
|
6913
|
+
showNotification: boolean;
|
|
6914
|
+
showTabMenu: boolean;
|
|
6915
|
+
tabMenuItems: import("./templates").HeaderTabMenuItem[];
|
|
6916
|
+
searchLoading: boolean;
|
|
6917
|
+
showSearch: boolean;
|
|
6729
6918
|
}, {}, string> & {
|
|
6730
6919
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
6731
6920
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -6747,48 +6936,249 @@ export declare const components: {
|
|
|
6747
6936
|
$nextTick: typeof import("vue").nextTick;
|
|
6748
6937
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
6749
6938
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
6750
|
-
|
|
6939
|
+
center: {
|
|
6940
|
+
type: import("vue").PropType<boolean>;
|
|
6941
|
+
} & {
|
|
6942
|
+
default: boolean;
|
|
6943
|
+
};
|
|
6944
|
+
searchPlaceholder: {
|
|
6751
6945
|
type: import("vue").PropType<string>;
|
|
6752
|
-
required: true;
|
|
6753
6946
|
} & {
|
|
6754
6947
|
default: string;
|
|
6755
6948
|
};
|
|
6756
|
-
|
|
6757
|
-
type: import("vue").PropType<
|
|
6949
|
+
product: {
|
|
6950
|
+
type: import("vue").PropType<import("./templates/header/types").Product>;
|
|
6951
|
+
required: true;
|
|
6758
6952
|
};
|
|
6759
|
-
|
|
6760
|
-
type: import("vue").PropType<
|
|
6953
|
+
viewAo: {
|
|
6954
|
+
type: import("vue").PropType<boolean>;
|
|
6955
|
+
} & {
|
|
6956
|
+
default: boolean;
|
|
6761
6957
|
};
|
|
6762
|
-
|
|
6958
|
+
user: {
|
|
6959
|
+
type: import("vue").PropType<import("./templates/header/types").User>;
|
|
6960
|
+
required: true;
|
|
6961
|
+
};
|
|
6962
|
+
partner: {
|
|
6963
|
+
type: import("vue").PropType<import("./templates/header/types").Partner>;
|
|
6964
|
+
required: true;
|
|
6965
|
+
};
|
|
6966
|
+
umPersonification: {
|
|
6967
|
+
type: import("vue").PropType<boolean>;
|
|
6968
|
+
} & {
|
|
6969
|
+
default: boolean;
|
|
6970
|
+
};
|
|
6971
|
+
inPersonification: {
|
|
6972
|
+
type: import("vue").PropType<boolean>;
|
|
6973
|
+
} & {
|
|
6974
|
+
default: boolean;
|
|
6975
|
+
};
|
|
6976
|
+
notifications: {
|
|
6977
|
+
type: import("vue").PropType<import("./templates/header/types").NotificationsList>;
|
|
6978
|
+
};
|
|
6979
|
+
notificationError: {
|
|
6980
|
+
type: import("vue").PropType<boolean>;
|
|
6981
|
+
} & {
|
|
6982
|
+
default: boolean;
|
|
6983
|
+
};
|
|
6984
|
+
menuProducts: {
|
|
6985
|
+
type: import("vue").PropType<boolean>;
|
|
6986
|
+
} & {
|
|
6987
|
+
default: boolean;
|
|
6988
|
+
};
|
|
6989
|
+
showNotification: {
|
|
6990
|
+
type: import("vue").PropType<boolean>;
|
|
6991
|
+
} & {
|
|
6992
|
+
default: boolean;
|
|
6993
|
+
};
|
|
6994
|
+
showTabMenu: {
|
|
6995
|
+
type: import("vue").PropType<boolean>;
|
|
6996
|
+
} & {
|
|
6997
|
+
default: boolean;
|
|
6998
|
+
};
|
|
6999
|
+
tabMenuItems: {
|
|
7000
|
+
type: import("vue").PropType<import("./templates").HeaderTabMenuItem[]>;
|
|
7001
|
+
} & {
|
|
7002
|
+
default: () => never[];
|
|
7003
|
+
};
|
|
7004
|
+
searchLoading: {
|
|
7005
|
+
type: import("vue").PropType<boolean>;
|
|
7006
|
+
} & {
|
|
7007
|
+
default: boolean;
|
|
7008
|
+
};
|
|
7009
|
+
showSearch: {
|
|
7010
|
+
type: import("vue").PropType<boolean>;
|
|
7011
|
+
} & {
|
|
7012
|
+
default: boolean;
|
|
7013
|
+
};
|
|
7014
|
+
}>> & {
|
|
7015
|
+
onSearch?: ((value: string) => any) | undefined;
|
|
7016
|
+
onClickUser?: ((event: string) => any) | undefined;
|
|
7017
|
+
onClickSolfacilPlus?: (() => any) | undefined;
|
|
7018
|
+
onClickLogout?: (() => any) | undefined;
|
|
7019
|
+
onClickMenu?: (() => any) | undefined;
|
|
7020
|
+
onClickNotification?: ((payload: {
|
|
7021
|
+
event: string;
|
|
7022
|
+
notification: string | boolean | import("./templates/header/types").Notification;
|
|
7023
|
+
}) => any) | undefined;
|
|
7024
|
+
onSearchChange?: ((value: string) => any) | undefined;
|
|
7025
|
+
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
6763
7026
|
__isFragment?: undefined;
|
|
6764
7027
|
__isTeleport?: undefined;
|
|
6765
7028
|
__isSuspense?: undefined;
|
|
6766
7029
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
6767
|
-
|
|
7030
|
+
center: {
|
|
7031
|
+
type: import("vue").PropType<boolean>;
|
|
7032
|
+
} & {
|
|
7033
|
+
default: boolean;
|
|
7034
|
+
};
|
|
7035
|
+
searchPlaceholder: {
|
|
6768
7036
|
type: import("vue").PropType<string>;
|
|
6769
|
-
required: true;
|
|
6770
7037
|
} & {
|
|
6771
7038
|
default: string;
|
|
6772
7039
|
};
|
|
6773
|
-
|
|
6774
|
-
type: import("vue").PropType<
|
|
7040
|
+
product: {
|
|
7041
|
+
type: import("vue").PropType<import("./templates/header/types").Product>;
|
|
7042
|
+
required: true;
|
|
6775
7043
|
};
|
|
6776
|
-
|
|
6777
|
-
type: import("vue").PropType<
|
|
7044
|
+
viewAo: {
|
|
7045
|
+
type: import("vue").PropType<boolean>;
|
|
7046
|
+
} & {
|
|
7047
|
+
default: boolean;
|
|
6778
7048
|
};
|
|
6779
|
-
|
|
6780
|
-
|
|
7049
|
+
user: {
|
|
7050
|
+
type: import("vue").PropType<import("./templates/header/types").User>;
|
|
7051
|
+
required: true;
|
|
7052
|
+
};
|
|
7053
|
+
partner: {
|
|
7054
|
+
type: import("vue").PropType<import("./templates/header/types").Partner>;
|
|
7055
|
+
required: true;
|
|
7056
|
+
};
|
|
7057
|
+
umPersonification: {
|
|
7058
|
+
type: import("vue").PropType<boolean>;
|
|
7059
|
+
} & {
|
|
7060
|
+
default: boolean;
|
|
7061
|
+
};
|
|
7062
|
+
inPersonification: {
|
|
7063
|
+
type: import("vue").PropType<boolean>;
|
|
7064
|
+
} & {
|
|
7065
|
+
default: boolean;
|
|
7066
|
+
};
|
|
7067
|
+
notifications: {
|
|
7068
|
+
type: import("vue").PropType<import("./templates/header/types").NotificationsList>;
|
|
7069
|
+
};
|
|
7070
|
+
notificationError: {
|
|
7071
|
+
type: import("vue").PropType<boolean>;
|
|
7072
|
+
} & {
|
|
7073
|
+
default: boolean;
|
|
7074
|
+
};
|
|
7075
|
+
menuProducts: {
|
|
7076
|
+
type: import("vue").PropType<boolean>;
|
|
7077
|
+
} & {
|
|
7078
|
+
default: boolean;
|
|
7079
|
+
};
|
|
7080
|
+
showNotification: {
|
|
7081
|
+
type: import("vue").PropType<boolean>;
|
|
7082
|
+
} & {
|
|
7083
|
+
default: boolean;
|
|
7084
|
+
};
|
|
7085
|
+
showTabMenu: {
|
|
7086
|
+
type: import("vue").PropType<boolean>;
|
|
7087
|
+
} & {
|
|
7088
|
+
default: boolean;
|
|
7089
|
+
};
|
|
7090
|
+
tabMenuItems: {
|
|
7091
|
+
type: import("vue").PropType<import("./templates").HeaderTabMenuItem[]>;
|
|
7092
|
+
} & {
|
|
7093
|
+
default: () => never[];
|
|
7094
|
+
};
|
|
7095
|
+
searchLoading: {
|
|
7096
|
+
type: import("vue").PropType<boolean>;
|
|
7097
|
+
} & {
|
|
7098
|
+
default: boolean;
|
|
7099
|
+
};
|
|
7100
|
+
showSearch: {
|
|
7101
|
+
type: import("vue").PropType<boolean>;
|
|
7102
|
+
} & {
|
|
7103
|
+
default: boolean;
|
|
7104
|
+
};
|
|
7105
|
+
}>> & {
|
|
7106
|
+
onSearch?: ((value: string) => any) | undefined;
|
|
7107
|
+
onClickUser?: ((event: string) => any) | undefined;
|
|
7108
|
+
onClickSolfacilPlus?: (() => any) | undefined;
|
|
7109
|
+
onClickLogout?: (() => any) | undefined;
|
|
7110
|
+
onClickMenu?: (() => any) | undefined;
|
|
7111
|
+
onClickNotification?: ((payload: {
|
|
7112
|
+
event: string;
|
|
7113
|
+
notification: string | boolean | import("./templates/header/types").Notification;
|
|
7114
|
+
}) => any) | undefined;
|
|
7115
|
+
onSearchChange?: ((value: string) => any) | undefined;
|
|
7116
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7117
|
+
clickMenu: () => void;
|
|
7118
|
+
} & {
|
|
7119
|
+
clickLogout: () => void;
|
|
7120
|
+
} & {
|
|
7121
|
+
clickUser: (event: string) => void;
|
|
7122
|
+
} & {
|
|
7123
|
+
clickSolfacilPlus: () => void;
|
|
7124
|
+
} & {
|
|
7125
|
+
clickNotification: (payload: {
|
|
7126
|
+
event: string;
|
|
7127
|
+
notification: string | boolean | import("./templates/header/types").Notification;
|
|
7128
|
+
}) => void;
|
|
7129
|
+
} & {
|
|
7130
|
+
search: (value: string) => void;
|
|
7131
|
+
} & {
|
|
7132
|
+
searchChange: (value: string) => void;
|
|
7133
|
+
}, string, {
|
|
7134
|
+
center: boolean;
|
|
7135
|
+
searchPlaceholder: string;
|
|
7136
|
+
viewAo: boolean;
|
|
7137
|
+
umPersonification: boolean;
|
|
7138
|
+
inPersonification: boolean;
|
|
7139
|
+
notificationError: boolean;
|
|
7140
|
+
menuProducts: boolean;
|
|
7141
|
+
showNotification: boolean;
|
|
7142
|
+
showTabMenu: boolean;
|
|
7143
|
+
tabMenuItems: import("./templates").HeaderTabMenuItem[];
|
|
7144
|
+
searchLoading: boolean;
|
|
7145
|
+
showSearch: boolean;
|
|
6781
7146
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
6782
|
-
$slots:
|
|
7147
|
+
$slots: {
|
|
7148
|
+
'search-results': (_: {
|
|
7149
|
+
searchValue: string;
|
|
7150
|
+
loading: boolean;
|
|
7151
|
+
}) => any;
|
|
7152
|
+
'user-info': (_: {
|
|
7153
|
+
user: import("./templates/header/types").User;
|
|
7154
|
+
}) => any;
|
|
7155
|
+
'user-info-mobile': (_: {
|
|
7156
|
+
user: import("./templates/header/types").User;
|
|
7157
|
+
openMenu: () => void;
|
|
7158
|
+
}) => any;
|
|
7159
|
+
'header-mobile': (_: {
|
|
7160
|
+
user: import("./templates/header/types").User;
|
|
7161
|
+
closeMenu: () => void;
|
|
7162
|
+
}) => any;
|
|
6783
7163
|
actions: (_: {}) => any;
|
|
6784
|
-
default: (_: {}) => any;
|
|
6785
7164
|
};
|
|
6786
7165
|
});
|
|
6787
|
-
|
|
7166
|
+
SolTemplateHeaderTabMenu: {
|
|
6788
7167
|
new (...args: any[]): {
|
|
6789
7168
|
$: import("vue").ComponentInternalInstance;
|
|
6790
7169
|
$data: {};
|
|
6791
|
-
$props: Partial<{
|
|
7170
|
+
$props: Partial<{
|
|
7171
|
+
items: import("./templates").HeaderTabMenuItem[];
|
|
7172
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
7173
|
+
items: {
|
|
7174
|
+
type: import("vue").PropType<import("./templates").HeaderTabMenuItem[]>;
|
|
7175
|
+
required: true;
|
|
7176
|
+
} & {
|
|
7177
|
+
default: () => never[];
|
|
7178
|
+
};
|
|
7179
|
+
}>> & {
|
|
7180
|
+
onClickSupport?: (() => any) | undefined;
|
|
7181
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "items">;
|
|
6792
7182
|
$attrs: {
|
|
6793
7183
|
[x: string]: unknown;
|
|
6794
7184
|
};
|
|
@@ -6800,9 +7190,22 @@ export declare const components: {
|
|
|
6800
7190
|
}>;
|
|
6801
7191
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
6802
7192
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
6803
|
-
$emit: (event:
|
|
7193
|
+
$emit: (event: "clickSupport") => void;
|
|
6804
7194
|
$el: any;
|
|
6805
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
7195
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
7196
|
+
items: {
|
|
7197
|
+
type: import("vue").PropType<import("./templates").HeaderTabMenuItem[]>;
|
|
7198
|
+
required: true;
|
|
7199
|
+
} & {
|
|
7200
|
+
default: () => never[];
|
|
7201
|
+
};
|
|
7202
|
+
}>> & {
|
|
7203
|
+
onClickSupport?: (() => any) | undefined;
|
|
7204
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7205
|
+
clickSupport: () => void;
|
|
7206
|
+
}, string, {
|
|
7207
|
+
items: import("./templates").HeaderTabMenuItem[];
|
|
7208
|
+
}, {}, string> & {
|
|
6806
7209
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
6807
7210
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
6808
7211
|
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -6822,15 +7225,35 @@ export declare const components: {
|
|
|
6822
7225
|
$forceUpdate: () => void;
|
|
6823
7226
|
$nextTick: typeof import("vue").nextTick;
|
|
6824
7227
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
6825
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
7228
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
7229
|
+
items: {
|
|
7230
|
+
type: import("vue").PropType<import("./templates").HeaderTabMenuItem[]>;
|
|
7231
|
+
required: true;
|
|
7232
|
+
} & {
|
|
7233
|
+
default: () => never[];
|
|
7234
|
+
};
|
|
7235
|
+
}>> & {
|
|
7236
|
+
onClickSupport?: (() => any) | undefined;
|
|
7237
|
+
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
6826
7238
|
__isFragment?: undefined;
|
|
6827
7239
|
__isTeleport?: undefined;
|
|
6828
7240
|
__isSuspense?: undefined;
|
|
6829
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
7241
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
7242
|
+
items: {
|
|
7243
|
+
type: import("vue").PropType<import("./templates").HeaderTabMenuItem[]>;
|
|
7244
|
+
required: true;
|
|
7245
|
+
} & {
|
|
7246
|
+
default: () => never[];
|
|
7247
|
+
};
|
|
7248
|
+
}>> & {
|
|
7249
|
+
onClickSupport?: (() => any) | undefined;
|
|
7250
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7251
|
+
clickSupport: () => void;
|
|
7252
|
+
}, string, {
|
|
7253
|
+
items: import("./templates").HeaderTabMenuItem[];
|
|
7254
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
6830
7255
|
$slots: {
|
|
6831
|
-
|
|
6832
|
-
header: (_: {}) => any;
|
|
6833
|
-
page: (_: {}) => any;
|
|
7256
|
+
'support-menu': (_: {}) => any;
|
|
6834
7257
|
};
|
|
6835
7258
|
});
|
|
6836
7259
|
SolHeaderBackoffice: {
|
|
@@ -7547,4 +7970,4 @@ export declare const components: {
|
|
|
7547
7970
|
});
|
|
7548
7971
|
};
|
|
7549
7972
|
export declare function install(App: App): void;
|
|
7550
|
-
export { SolButton, SolButtonDestructive, SolInputTextarea, SolInputCurrency, SolInputText, SolInputTextPassword, SolRadio, SolRadioGroup, SolCheckbox, SolCheckboxGroup, SolSwitch, SolSelect, SolRemovableChip, SolSelectableChip, SolTag, SolAlert, SolAccordion, SolList, SolTabs, SolMenu, SolMenuItem, SolMenuItemLink, SolMenuNavigationLinks, SolModal, SolOnboarding, SolPagination, SolEmptyState, SolSearch, SolDatePicker, SolCollapsible, SolSteps, SolTextValue, SolFileUpload, SolMenuItemSeparator, SolBreadcrumb, SolDivider, SolLink, SolHeader, SolSidebar,
|
|
7973
|
+
export { SolButton, SolButtonDestructive, SolInputTextarea, SolInputCurrency, SolInputText, SolInputTextPassword, SolRadio, SolRadioGroup, SolCheckbox, SolCheckboxGroup, SolSwitch, SolSelect, SolRemovableChip, SolSelectableChip, SolTag, SolAlert, SolAccordion, SolList, SolTabs, SolMenu, SolMenuItem, SolMenuItemLink, SolMenuNavigationLinks, SolModal, SolOnboarding, SolPagination, SolEmptyState, SolSearch, SolDatePicker, SolCollapsible, SolSteps, SolTextValue, SolFileUpload, SolMenuItemSeparator, SolBreadcrumb, SolDivider, SolLink, SolHeader, SolSidebar, SolTemplateHeader, SolTemplateHeaderTabMenu, SolHeaderBackoffice, SolSidebarBackoffice, SolUserInfoBackoffice, SolApplicationsBackoffice, SolSideover, SolTooltip, };
|