@solfacil/girassol 0.47.3 → 0.49.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/girassol.es.js +31 -18
- package/dist/girassol.umd.js +2 -2
- package/dist/style.css +1 -1
- package/dist/types/components/forms/checkbox/checkbox/Checkbox.vue.d.ts +11 -4
- package/dist/types/components/forms/checkbox/type.d.ts +1 -1
- package/dist/types/components/headers/header/Header.vue.d.ts +5 -0
- package/dist/types/components/headers/header/user/Desktop.vue.d.ts +2 -0
- package/dist/types/components/headers/header/user/MainItems.vue.d.ts +2 -0
- package/dist/types/components/headers/header/user/Mobile.vue.d.ts +2 -0
- package/dist/types/index.d.ts +174 -37
- package/package.json +1 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import type { Checkbox } from '@forms/checkbox/type';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
3
|
id: Checkbox['id'];
|
|
4
4
|
name: Checkbox['name'];
|
|
5
5
|
value: Checkbox['value'];
|
|
6
|
-
label
|
|
6
|
+
label?: Checkbox['label'];
|
|
7
7
|
hideLabel?: Checkbox['hideLabel'];
|
|
8
8
|
checked?: Checkbox['checked'];
|
|
9
9
|
class?: Checkbox['class'];
|
|
@@ -15,7 +15,7 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
15
15
|
id: Checkbox['id'];
|
|
16
16
|
name: Checkbox['name'];
|
|
17
17
|
value: Checkbox['value'];
|
|
18
|
-
label
|
|
18
|
+
label?: Checkbox['label'];
|
|
19
19
|
hideLabel?: Checkbox['hideLabel'];
|
|
20
20
|
checked?: Checkbox['checked'];
|
|
21
21
|
class?: Checkbox['class'];
|
|
@@ -23,7 +23,9 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
23
23
|
labelHtml?: boolean | undefined;
|
|
24
24
|
}>>> & {
|
|
25
25
|
onChange?: ((value: import("@forms/checkbox/type").CheckboxValue) => any) | undefined;
|
|
26
|
-
}, {}
|
|
26
|
+
}, {}>, {
|
|
27
|
+
default: (_: {}) => any;
|
|
28
|
+
}>;
|
|
27
29
|
export default _default;
|
|
28
30
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
29
31
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -34,3 +36,8 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
34
36
|
required: true;
|
|
35
37
|
};
|
|
36
38
|
};
|
|
39
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
40
|
+
new (): {
|
|
41
|
+
$slots: S;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
@@ -10,6 +10,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
10
10
|
product: Product;
|
|
11
11
|
notifications?: NotificationsList | undefined;
|
|
12
12
|
center?: boolean | undefined;
|
|
13
|
+
perfilPersonification?: string[] | undefined;
|
|
13
14
|
}>, {
|
|
14
15
|
umPersonification: boolean;
|
|
15
16
|
inPersonification: boolean;
|
|
@@ -17,6 +18,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
17
18
|
showNotification: boolean;
|
|
18
19
|
mobileWhite: boolean;
|
|
19
20
|
center: boolean;
|
|
21
|
+
perfilPersonification: () => string[];
|
|
20
22
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
21
23
|
clickMenu: () => void;
|
|
22
24
|
} & {
|
|
@@ -40,6 +42,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
40
42
|
product: Product;
|
|
41
43
|
notifications?: NotificationsList | undefined;
|
|
42
44
|
center?: boolean | undefined;
|
|
45
|
+
perfilPersonification?: string[] | undefined;
|
|
43
46
|
}>, {
|
|
44
47
|
umPersonification: boolean;
|
|
45
48
|
inPersonification: boolean;
|
|
@@ -47,6 +50,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
47
50
|
showNotification: boolean;
|
|
48
51
|
mobileWhite: boolean;
|
|
49
52
|
center: boolean;
|
|
53
|
+
perfilPersonification: () => string[];
|
|
50
54
|
}>>> & {
|
|
51
55
|
onClickProduct?: ((product: string) => any) | undefined;
|
|
52
56
|
onClickUser?: ((event: string) => any) | undefined;
|
|
@@ -56,6 +60,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
56
60
|
onClickNotification?: ((event: object) => any) | undefined;
|
|
57
61
|
}, {
|
|
58
62
|
center: boolean;
|
|
63
|
+
perfilPersonification: string[];
|
|
59
64
|
umPersonification: boolean;
|
|
60
65
|
inPersonification: boolean;
|
|
61
66
|
menuProducts: boolean;
|
|
@@ -2,6 +2,7 @@ import type { Partner, User } from '@/components/headers/types';
|
|
|
2
2
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
3
|
readonly user: User;
|
|
4
4
|
readonly partner: Partner;
|
|
5
|
+
readonly perfilPersonification: string[];
|
|
5
6
|
readonly umPersonification: boolean;
|
|
6
7
|
readonly inPersonification: boolean;
|
|
7
8
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -13,6 +14,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
13
14
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
14
15
|
readonly user: User;
|
|
15
16
|
readonly partner: Partner;
|
|
17
|
+
readonly perfilPersonification: string[];
|
|
16
18
|
readonly umPersonification: boolean;
|
|
17
19
|
readonly inPersonification: boolean;
|
|
18
20
|
}>>> & {
|
|
@@ -2,6 +2,7 @@ import type { Partner, User } from '@/components/headers/types';
|
|
|
2
2
|
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
3
|
readonly user: User;
|
|
4
4
|
readonly partner: Partner;
|
|
5
|
+
readonly perfilPersonification: string[];
|
|
5
6
|
readonly umPersonification: boolean;
|
|
6
7
|
readonly inPersonification: boolean;
|
|
7
8
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -9,6 +10,7 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
9
10
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
10
11
|
readonly user: User;
|
|
11
12
|
readonly partner: Partner;
|
|
13
|
+
readonly perfilPersonification: string[];
|
|
12
14
|
readonly umPersonification: boolean;
|
|
13
15
|
readonly inPersonification: boolean;
|
|
14
16
|
}>>> & {
|
|
@@ -2,6 +2,7 @@ import type { Partner, User } from '@/components/headers/types';
|
|
|
2
2
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
3
|
user: User;
|
|
4
4
|
partner: Partner;
|
|
5
|
+
perfilPersonification: string[];
|
|
5
6
|
umPersonification: boolean;
|
|
6
7
|
inPersonification: boolean;
|
|
7
8
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -13,6 +14,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
13
14
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
14
15
|
user: User;
|
|
15
16
|
partner: Partner;
|
|
17
|
+
perfilPersonification: string[];
|
|
16
18
|
umPersonification: boolean;
|
|
17
19
|
inPersonification: boolean;
|
|
18
20
|
}>>> & {
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1656,7 +1656,150 @@ export declare const components: {
|
|
|
1656
1656
|
}) => any;
|
|
1657
1657
|
};
|
|
1658
1658
|
});
|
|
1659
|
-
SolCheckbox:
|
|
1659
|
+
SolCheckbox: {
|
|
1660
|
+
new (...args: any[]): {
|
|
1661
|
+
$: import("vue").ComponentInternalInstance;
|
|
1662
|
+
$data: {};
|
|
1663
|
+
$props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
1664
|
+
id: {
|
|
1665
|
+
type: import("vue").PropType<string | undefined>;
|
|
1666
|
+
required: true;
|
|
1667
|
+
};
|
|
1668
|
+
name: {
|
|
1669
|
+
type: import("vue").PropType<string>;
|
|
1670
|
+
required: true;
|
|
1671
|
+
};
|
|
1672
|
+
value: {
|
|
1673
|
+
type: import("vue").PropType<import("./components/forms/checkbox/type").CheckboxValue>;
|
|
1674
|
+
required: true;
|
|
1675
|
+
};
|
|
1676
|
+
label: {
|
|
1677
|
+
type: import("vue").PropType<string>;
|
|
1678
|
+
};
|
|
1679
|
+
hideLabel: {
|
|
1680
|
+
type: import("vue").PropType<boolean>;
|
|
1681
|
+
};
|
|
1682
|
+
checked: {
|
|
1683
|
+
type: import("vue").PropType<boolean>;
|
|
1684
|
+
};
|
|
1685
|
+
class: {
|
|
1686
|
+
type: import("vue").PropType<string | Record<string, boolean>>;
|
|
1687
|
+
};
|
|
1688
|
+
indeterminate: {
|
|
1689
|
+
type: import("vue").PropType<boolean>;
|
|
1690
|
+
};
|
|
1691
|
+
labelHtml: {
|
|
1692
|
+
type: import("vue").PropType<boolean>;
|
|
1693
|
+
};
|
|
1694
|
+
}>> & {
|
|
1695
|
+
onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
|
|
1696
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
1697
|
+
$attrs: {
|
|
1698
|
+
[x: string]: unknown;
|
|
1699
|
+
};
|
|
1700
|
+
$refs: {
|
|
1701
|
+
[x: string]: unknown;
|
|
1702
|
+
};
|
|
1703
|
+
$slots: Readonly<{
|
|
1704
|
+
[name: string]: import("vue").Slot | undefined;
|
|
1705
|
+
}>;
|
|
1706
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
1707
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
1708
|
+
$emit: (event: "change", value: import("./components/forms/checkbox/type").CheckboxValue) => void;
|
|
1709
|
+
$el: any;
|
|
1710
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1711
|
+
id: {
|
|
1712
|
+
type: import("vue").PropType<string | undefined>;
|
|
1713
|
+
required: true;
|
|
1714
|
+
};
|
|
1715
|
+
name: {
|
|
1716
|
+
type: import("vue").PropType<string>;
|
|
1717
|
+
required: true;
|
|
1718
|
+
};
|
|
1719
|
+
value: {
|
|
1720
|
+
type: import("vue").PropType<import("./components/forms/checkbox/type").CheckboxValue>;
|
|
1721
|
+
required: true;
|
|
1722
|
+
};
|
|
1723
|
+
label: {
|
|
1724
|
+
type: import("vue").PropType<string>;
|
|
1725
|
+
};
|
|
1726
|
+
hideLabel: {
|
|
1727
|
+
type: import("vue").PropType<boolean>;
|
|
1728
|
+
};
|
|
1729
|
+
checked: {
|
|
1730
|
+
type: import("vue").PropType<boolean>;
|
|
1731
|
+
};
|
|
1732
|
+
class: {
|
|
1733
|
+
type: import("vue").PropType<string | Record<string, boolean>>;
|
|
1734
|
+
};
|
|
1735
|
+
indeterminate: {
|
|
1736
|
+
type: import("vue").PropType<boolean>;
|
|
1737
|
+
};
|
|
1738
|
+
labelHtml: {
|
|
1739
|
+
type: import("vue").PropType<boolean>;
|
|
1740
|
+
};
|
|
1741
|
+
}>> & {
|
|
1742
|
+
onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
|
|
1743
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1744
|
+
change: (value: import("./components/forms/checkbox/type").CheckboxValue) => void;
|
|
1745
|
+
}, string, {}, {}, string> & {
|
|
1746
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
1747
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
1748
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
1749
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
1750
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
1751
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
1752
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
1753
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
1754
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
1755
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
1756
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
1757
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
1758
|
+
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
1759
|
+
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
1760
|
+
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
1761
|
+
};
|
|
1762
|
+
$forceUpdate: () => void;
|
|
1763
|
+
$nextTick: typeof import("vue").nextTick;
|
|
1764
|
+
$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;
|
|
1765
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
1766
|
+
id: {
|
|
1767
|
+
type: import("vue").PropType<string | undefined>;
|
|
1768
|
+
required: true;
|
|
1769
|
+
};
|
|
1770
|
+
name: {
|
|
1771
|
+
type: import("vue").PropType<string>;
|
|
1772
|
+
required: true;
|
|
1773
|
+
};
|
|
1774
|
+
value: {
|
|
1775
|
+
type: import("vue").PropType<import("./components/forms/checkbox/type").CheckboxValue>;
|
|
1776
|
+
required: true;
|
|
1777
|
+
};
|
|
1778
|
+
label: {
|
|
1779
|
+
type: import("vue").PropType<string>;
|
|
1780
|
+
};
|
|
1781
|
+
hideLabel: {
|
|
1782
|
+
type: import("vue").PropType<boolean>;
|
|
1783
|
+
};
|
|
1784
|
+
checked: {
|
|
1785
|
+
type: import("vue").PropType<boolean>;
|
|
1786
|
+
};
|
|
1787
|
+
class: {
|
|
1788
|
+
type: import("vue").PropType<string | Record<string, boolean>>;
|
|
1789
|
+
};
|
|
1790
|
+
indeterminate: {
|
|
1791
|
+
type: import("vue").PropType<boolean>;
|
|
1792
|
+
};
|
|
1793
|
+
labelHtml: {
|
|
1794
|
+
type: import("vue").PropType<boolean>;
|
|
1795
|
+
};
|
|
1796
|
+
}>> & {
|
|
1797
|
+
onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
|
|
1798
|
+
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
1799
|
+
__isFragment?: undefined;
|
|
1800
|
+
__isTeleport?: undefined;
|
|
1801
|
+
__isSuspense?: undefined;
|
|
1802
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1660
1803
|
id: {
|
|
1661
1804
|
type: import("vue").PropType<string | undefined>;
|
|
1662
1805
|
required: true;
|
|
@@ -1671,7 +1814,6 @@ export declare const components: {
|
|
|
1671
1814
|
};
|
|
1672
1815
|
label: {
|
|
1673
1816
|
type: import("vue").PropType<string>;
|
|
1674
|
-
required: true;
|
|
1675
1817
|
};
|
|
1676
1818
|
hideLabel: {
|
|
1677
1819
|
type: import("vue").PropType<boolean>;
|
|
@@ -1688,43 +1830,15 @@ export declare const components: {
|
|
|
1688
1830
|
labelHtml: {
|
|
1689
1831
|
type: import("vue").PropType<boolean>;
|
|
1690
1832
|
};
|
|
1833
|
+
}>> & {
|
|
1834
|
+
onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
|
|
1691
1835
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1692
1836
|
change: (value: import("./components/forms/checkbox/type").CheckboxValue) => void;
|
|
1693
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
required: true;
|
|
1697
|
-
};
|
|
1698
|
-
name: {
|
|
1699
|
-
type: import("vue").PropType<string>;
|
|
1700
|
-
required: true;
|
|
1701
|
-
};
|
|
1702
|
-
value: {
|
|
1703
|
-
type: import("vue").PropType<import("./components/forms/checkbox/type").CheckboxValue>;
|
|
1704
|
-
required: true;
|
|
1705
|
-
};
|
|
1706
|
-
label: {
|
|
1707
|
-
type: import("vue").PropType<string>;
|
|
1708
|
-
required: true;
|
|
1709
|
-
};
|
|
1710
|
-
hideLabel: {
|
|
1711
|
-
type: import("vue").PropType<boolean>;
|
|
1712
|
-
};
|
|
1713
|
-
checked: {
|
|
1714
|
-
type: import("vue").PropType<boolean>;
|
|
1715
|
-
};
|
|
1716
|
-
class: {
|
|
1717
|
-
type: import("vue").PropType<string | Record<string, boolean>>;
|
|
1718
|
-
};
|
|
1719
|
-
indeterminate: {
|
|
1720
|
-
type: import("vue").PropType<boolean>;
|
|
1721
|
-
};
|
|
1722
|
-
labelHtml: {
|
|
1723
|
-
type: import("vue").PropType<boolean>;
|
|
1837
|
+
}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1838
|
+
$slots: {
|
|
1839
|
+
default: (_: {}) => any;
|
|
1724
1840
|
};
|
|
1725
|
-
}
|
|
1726
|
-
onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
|
|
1727
|
-
}, {}>;
|
|
1841
|
+
});
|
|
1728
1842
|
SolCheckboxGroup: {
|
|
1729
1843
|
new (...args: any[]): {
|
|
1730
1844
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -6090,6 +6204,7 @@ export declare const components: {
|
|
|
6090
6204
|
$data: {};
|
|
6091
6205
|
$props: Partial<{
|
|
6092
6206
|
center: boolean;
|
|
6207
|
+
perfilPersonification: string[];
|
|
6093
6208
|
umPersonification: boolean;
|
|
6094
6209
|
inPersonification: boolean;
|
|
6095
6210
|
menuProducts: boolean;
|
|
@@ -6113,6 +6228,11 @@ export declare const components: {
|
|
|
6113
6228
|
type: import("vue").PropType<import("./components/headers/types").Partner>;
|
|
6114
6229
|
required: true;
|
|
6115
6230
|
};
|
|
6231
|
+
perfilPersonification: {
|
|
6232
|
+
type: import("vue").PropType<string[]>;
|
|
6233
|
+
} & {
|
|
6234
|
+
default: () => string[];
|
|
6235
|
+
};
|
|
6116
6236
|
umPersonification: {
|
|
6117
6237
|
type: import("vue").PropType<boolean>;
|
|
6118
6238
|
} & {
|
|
@@ -6148,7 +6268,7 @@ export declare const components: {
|
|
|
6148
6268
|
onClickLogout?: (() => any) | undefined;
|
|
6149
6269
|
onClickMenu?: (() => any) | undefined;
|
|
6150
6270
|
onClickNotification?: ((event: object) => any) | undefined;
|
|
6151
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "center" | "umPersonification" | "inPersonification" | "menuProducts" | "showNotification" | "mobileWhite">;
|
|
6271
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "center" | "perfilPersonification" | "umPersonification" | "inPersonification" | "menuProducts" | "showNotification" | "mobileWhite">;
|
|
6152
6272
|
$attrs: {
|
|
6153
6273
|
[x: string]: unknown;
|
|
6154
6274
|
};
|
|
@@ -6180,6 +6300,11 @@ export declare const components: {
|
|
|
6180
6300
|
type: import("vue").PropType<import("./components/headers/types").Partner>;
|
|
6181
6301
|
required: true;
|
|
6182
6302
|
};
|
|
6303
|
+
perfilPersonification: {
|
|
6304
|
+
type: import("vue").PropType<string[]>;
|
|
6305
|
+
} & {
|
|
6306
|
+
default: () => string[];
|
|
6307
|
+
};
|
|
6183
6308
|
umPersonification: {
|
|
6184
6309
|
type: import("vue").PropType<boolean>;
|
|
6185
6310
|
} & {
|
|
@@ -6229,6 +6354,7 @@ export declare const components: {
|
|
|
6229
6354
|
clickNotification: (event: object) => void;
|
|
6230
6355
|
}, string, {
|
|
6231
6356
|
center: boolean;
|
|
6357
|
+
perfilPersonification: string[];
|
|
6232
6358
|
umPersonification: boolean;
|
|
6233
6359
|
inPersonification: boolean;
|
|
6234
6360
|
menuProducts: boolean;
|
|
@@ -6272,6 +6398,11 @@ export declare const components: {
|
|
|
6272
6398
|
type: import("vue").PropType<import("./components/headers/types").Partner>;
|
|
6273
6399
|
required: true;
|
|
6274
6400
|
};
|
|
6401
|
+
perfilPersonification: {
|
|
6402
|
+
type: import("vue").PropType<string[]>;
|
|
6403
|
+
} & {
|
|
6404
|
+
default: () => string[];
|
|
6405
|
+
};
|
|
6275
6406
|
umPersonification: {
|
|
6276
6407
|
type: import("vue").PropType<boolean>;
|
|
6277
6408
|
} & {
|
|
@@ -6329,6 +6460,11 @@ export declare const components: {
|
|
|
6329
6460
|
type: import("vue").PropType<import("./components/headers/types").Partner>;
|
|
6330
6461
|
required: true;
|
|
6331
6462
|
};
|
|
6463
|
+
perfilPersonification: {
|
|
6464
|
+
type: import("vue").PropType<string[]>;
|
|
6465
|
+
} & {
|
|
6466
|
+
default: () => string[];
|
|
6467
|
+
};
|
|
6332
6468
|
umPersonification: {
|
|
6333
6469
|
type: import("vue").PropType<boolean>;
|
|
6334
6470
|
} & {
|
|
@@ -6378,6 +6514,7 @@ export declare const components: {
|
|
|
6378
6514
|
clickNotification: (event: object) => void;
|
|
6379
6515
|
}, string, {
|
|
6380
6516
|
center: boolean;
|
|
6517
|
+
perfilPersonification: string[];
|
|
6381
6518
|
umPersonification: boolean;
|
|
6382
6519
|
inPersonification: boolean;
|
|
6383
6520
|
menuProducts: boolean;
|