@solfacil/girassol 0.34.3 → 0.34.4

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.
@@ -7,7 +7,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
7
7
  inPersonification?: boolean | undefined;
8
8
  menuProducts?: boolean | undefined;
9
9
  showNotification?: boolean | undefined;
10
- notifications: NotificationsList;
10
+ notifications?: NotificationsList | undefined;
11
11
  }>, {
12
12
  umPersonification: boolean;
13
13
  inPersonification: boolean;
@@ -35,7 +35,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
35
35
  inPersonification?: boolean | undefined;
36
36
  menuProducts?: boolean | undefined;
37
37
  showNotification?: boolean | undefined;
38
- notifications: NotificationsList;
38
+ notifications?: NotificationsList | undefined;
39
39
  }>, {
40
40
  umPersonification: boolean;
41
41
  inPersonification: boolean;
@@ -1,12 +1,12 @@
1
1
  import type { Notification, NotificationsList } from '../types';
2
2
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
3
- notifications: NotificationsList;
3
+ notifications?: NotificationsList | undefined;
4
4
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
5
5
  moreNotification: (cursor: string) => void;
6
6
  } & {
7
7
  goToNotification: (notification: Notification) => void;
8
8
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
9
- notifications: NotificationsList;
9
+ notifications?: NotificationsList | undefined;
10
10
  }>>> & {
11
11
  onMoreNotification?: ((cursor: string) => any) | undefined;
12
12
  onGoToNotification?: ((notification: Notification) => any) | undefined;
@@ -1,7 +1,7 @@
1
1
  import type { Notification, NotificationsList } from '../types';
2
2
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
3
3
  showNotificationList: boolean;
4
- notifications: NotificationsList;
4
+ notifications?: NotificationsList | undefined;
5
5
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
6
  moreNotification: (cursor: string) => void;
7
7
  } & {
@@ -10,7 +10,7 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
10
10
  closeNotifications: () => void;
11
11
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
12
12
  showNotificationList: boolean;
13
- notifications: NotificationsList;
13
+ notifications?: NotificationsList | undefined;
14
14
  }>>> & {
15
15
  onMoreNotification?: ((cursor: string) => any) | undefined;
16
16
  onGoToNotification?: ((notification: Notification) => any) | undefined;
@@ -1,7 +1,7 @@
1
1
  import type { Notification, NotificationsList } from '../types';
2
2
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
3
3
  showNotificationList: boolean;
4
- notifications: NotificationsList;
4
+ notifications?: NotificationsList | undefined;
5
5
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
6
  moreNotification: (cursor: string) => void;
7
7
  } & {
@@ -10,7 +10,7 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
10
10
  goToNotification: (notification: Notification) => void;
11
11
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
12
12
  showNotificationList: boolean;
13
- notifications: NotificationsList;
13
+ notifications?: NotificationsList | undefined;
14
14
  }>>> & {
15
15
  onMoreNotification?: ((cursor: string) => any) | undefined;
16
16
  onGoToNotification?: ((notification: Notification) => any) | undefined;
@@ -1,6 +1,6 @@
1
1
  import type { Notification, NotificationsList } from '../types';
2
2
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
3
- notifications: NotificationsList;
3
+ notifications?: NotificationsList | undefined;
4
4
  product: string;
5
5
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
6
  moreNotification: (cursor: string) => void;
@@ -9,7 +9,7 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
9
9
  } & {
10
10
  goToNotification: (notification: Notification) => void;
11
11
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
12
- notifications: NotificationsList;
12
+ notifications?: NotificationsList | undefined;
13
13
  product: string;
14
14
  }>>> & {
15
15
  onMoreNotification?: ((cursor: string) => any) | undefined;
@@ -6077,7 +6077,6 @@ export declare const components: {
6077
6077
  };
6078
6078
  notifications: {
6079
6079
  type: import("vue").PropType<import("./components/header/types").NotificationsList>;
6080
- required: true;
6081
6080
  };
6082
6081
  menuProducts: {
6083
6082
  type: import("vue").PropType<boolean>;
@@ -6136,7 +6135,6 @@ export declare const components: {
6136
6135
  };
6137
6136
  notifications: {
6138
6137
  type: import("vue").PropType<import("./components/header/types").NotificationsList>;
6139
- required: true;
6140
6138
  };
6141
6139
  menuProducts: {
6142
6140
  type: import("vue").PropType<boolean>;
@@ -6220,7 +6218,6 @@ export declare const components: {
6220
6218
  };
6221
6219
  notifications: {
6222
6220
  type: import("vue").PropType<import("./components/header/types").NotificationsList>;
6223
- required: true;
6224
6221
  };
6225
6222
  menuProducts: {
6226
6223
  type: import("vue").PropType<boolean>;
@@ -6269,7 +6266,6 @@ export declare const components: {
6269
6266
  };
6270
6267
  notifications: {
6271
6268
  type: import("vue").PropType<import("./components/header/types").NotificationsList>;
6272
- required: true;
6273
6269
  };
6274
6270
  menuProducts: {
6275
6271
  type: import("vue").PropType<boolean>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@solfacil/girassol",
3
3
  "description": "Girassol design system",
4
- "version": "0.34.3",
4
+ "version": "0.34.4",
5
5
  "license": "MIT",
6
6
  "authors": [
7
7
  {