@solfacil/girassol 0.43.0 → 0.44.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.
@@ -9,12 +9,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
9
9
  partner: Partner;
10
10
  product: Product;
11
11
  notifications?: NotificationsList | undefined;
12
+ center?: boolean | undefined;
12
13
  }>, {
13
14
  umPersonification: boolean;
14
15
  inPersonification: boolean;
15
16
  menuProducts: boolean;
16
17
  showNotification: boolean;
17
18
  mobileWhite: boolean;
19
+ center: boolean;
18
20
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
19
21
  clickMenu: () => void;
20
22
  } & {
@@ -37,12 +39,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
37
39
  partner: Partner;
38
40
  product: Product;
39
41
  notifications?: NotificationsList | undefined;
42
+ center?: boolean | undefined;
40
43
  }>, {
41
44
  umPersonification: boolean;
42
45
  inPersonification: boolean;
43
46
  menuProducts: boolean;
44
47
  showNotification: boolean;
45
48
  mobileWhite: boolean;
49
+ center: boolean;
46
50
  }>>> & {
47
51
  onClickProduct?: ((product: string) => any) | undefined;
48
52
  onClickUser?: ((event: string) => any) | undefined;
@@ -51,6 +55,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
51
55
  onClickMenu?: (() => any) | undefined;
52
56
  onClickNotification?: ((event: object) => any) | undefined;
53
57
  }, {
58
+ center: boolean;
54
59
  umPersonification: boolean;
55
60
  inPersonification: boolean;
56
61
  menuProducts: boolean;
@@ -58,7 +63,17 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
58
63
  mobileWhite: boolean;
59
64
  }>, {
60
65
  icon: (_: {}) => any;
61
- 'user-info': (_: {}) => any;
66
+ 'user-info': (_: {
67
+ user: User;
68
+ }) => any;
69
+ 'icon-mobile': (_: {
70
+ user: User;
71
+ openMenu: () => void;
72
+ }) => any;
73
+ 'header-mobile': (_: {
74
+ user: User;
75
+ closeMenu: () => void;
76
+ }) => any;
62
77
  actions: (_: {}) => any;
63
78
  }>;
64
79
  export default _default;
@@ -1,5 +1,5 @@
1
1
  import type { Partner, User } from '../types';
2
- declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
2
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
3
3
  user: User;
4
4
  partner: Partner;
5
5
  umPersonification: boolean;
@@ -19,7 +19,16 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
19
19
  onClickUser?: ((type: string) => any) | undefined;
20
20
  onClickSolfacilPlus?: (() => any) | undefined;
21
21
  onClickLogout?: (() => any) | undefined;
22
- }, {}>;
22
+ }, {}>, {
23
+ 'icon-mobile': (_: {
24
+ user: User;
25
+ openMenu: () => void;
26
+ }) => any;
27
+ 'header-mobile': (_: {
28
+ user: User;
29
+ closeMenu: () => void;
30
+ }) => any;
31
+ }>;
23
32
  export default _default;
24
33
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
25
34
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -30,3 +39,8 @@ type __VLS_TypePropsToRuntimeProps<T> = {
30
39
  required: true;
31
40
  };
32
41
  };
42
+ type __VLS_WithTemplateSlots<T, S> = T & {
43
+ new (): {
44
+ $slots: S;
45
+ };
46
+ };
@@ -6069,12 +6069,18 @@ export declare const components: {
6069
6069
  $: import("vue").ComponentInternalInstance;
6070
6070
  $data: {};
6071
6071
  $props: Partial<{
6072
+ center: boolean;
6072
6073
  umPersonification: boolean;
6073
6074
  inPersonification: boolean;
6074
6075
  menuProducts: boolean;
6075
6076
  showNotification: boolean;
6076
6077
  mobileWhite: boolean;
6077
6078
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
6079
+ center: {
6080
+ type: import("vue").PropType<boolean>;
6081
+ } & {
6082
+ default: boolean;
6083
+ };
6078
6084
  product: {
6079
6085
  type: import("vue").PropType<import("./components/header/types").Product>;
6080
6086
  required: true;
@@ -6122,7 +6128,7 @@ export declare const components: {
6122
6128
  onClickLogout?: (() => any) | undefined;
6123
6129
  onClickMenu?: (() => any) | undefined;
6124
6130
  onClickNotification?: ((event: object) => any) | undefined;
6125
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "umPersonification" | "inPersonification" | "menuProducts" | "showNotification" | "mobileWhite">;
6131
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "center" | "umPersonification" | "inPersonification" | "menuProducts" | "showNotification" | "mobileWhite">;
6126
6132
  $attrs: {
6127
6133
  [x: string]: unknown;
6128
6134
  };
@@ -6137,6 +6143,11 @@ export declare const components: {
6137
6143
  $emit: ((event: "clickProduct", product: string) => void) & ((event: "clickUser", event: string) => void) & ((event: "clickSolfacilPlus") => void) & ((event: "clickLogout") => void) & ((event: "clickMenu") => void) & ((event: "clickNotification", event: object) => void);
6138
6144
  $el: any;
6139
6145
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
6146
+ center: {
6147
+ type: import("vue").PropType<boolean>;
6148
+ } & {
6149
+ default: boolean;
6150
+ };
6140
6151
  product: {
6141
6152
  type: import("vue").PropType<import("./components/header/types").Product>;
6142
6153
  required: true;
@@ -6197,6 +6208,7 @@ export declare const components: {
6197
6208
  } & {
6198
6209
  clickNotification: (event: object) => void;
6199
6210
  }, string, {
6211
+ center: boolean;
6200
6212
  umPersonification: boolean;
6201
6213
  inPersonification: boolean;
6202
6214
  menuProducts: boolean;
@@ -6223,6 +6235,11 @@ export declare const components: {
6223
6235
  $nextTick: typeof import("vue").nextTick;
6224
6236
  $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;
6225
6237
  } & Readonly<import("vue").ExtractPropTypes<{
6238
+ center: {
6239
+ type: import("vue").PropType<boolean>;
6240
+ } & {
6241
+ default: boolean;
6242
+ };
6226
6243
  product: {
6227
6244
  type: import("vue").PropType<import("./components/header/types").Product>;
6228
6245
  required: true;
@@ -6275,6 +6292,11 @@ export declare const components: {
6275
6292
  __isTeleport?: undefined;
6276
6293
  __isSuspense?: undefined;
6277
6294
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
6295
+ center: {
6296
+ type: import("vue").PropType<boolean>;
6297
+ } & {
6298
+ default: boolean;
6299
+ };
6278
6300
  product: {
6279
6301
  type: import("vue").PropType<import("./components/header/types").Product>;
6280
6302
  required: true;
@@ -6335,6 +6357,7 @@ export declare const components: {
6335
6357
  } & {
6336
6358
  clickNotification: (event: object) => void;
6337
6359
  }, string, {
6360
+ center: boolean;
6338
6361
  umPersonification: boolean;
6339
6362
  inPersonification: boolean;
6340
6363
  menuProducts: boolean;
@@ -6343,7 +6366,17 @@ export declare const components: {
6343
6366
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
6344
6367
  $slots: {
6345
6368
  icon: (_: {}) => any;
6346
- 'user-info': (_: {}) => any;
6369
+ 'user-info': (_: {
6370
+ user: import("./components/header/types").User;
6371
+ }) => any;
6372
+ 'icon-mobile': (_: {
6373
+ user: import("./components/header/types").User;
6374
+ openMenu: () => void;
6375
+ }) => any;
6376
+ 'header-mobile': (_: {
6377
+ user: import("./components/header/types").User;
6378
+ closeMenu: () => void;
6379
+ }) => any;
6347
6380
  actions: (_: {}) => any;
6348
6381
  };
6349
6382
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@solfacil/girassol",
3
3
  "description": "Girassol design system",
4
- "version": "0.43.0",
4
+ "version": "0.44.0",
5
5
  "license": "MIT",
6
6
  "authors": [
7
7
  {