@solfacil/girassol 0.65.0 → 0.66.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.
@@ -12,6 +12,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
12
12
  center?: boolean | undefined;
13
13
  perfilPersonification?: string[] | undefined;
14
14
  viewAo?: boolean | undefined;
15
+ notificationError?: boolean | undefined;
15
16
  }>, {
16
17
  umPersonification: boolean;
17
18
  inPersonification: boolean;
@@ -21,6 +22,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
21
22
  center: boolean;
22
23
  perfilPersonification: () => string[];
23
24
  viewAo: boolean;
25
+ notificationError: boolean;
24
26
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
25
27
  clickMenu: () => void;
26
28
  } & {
@@ -46,6 +48,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
46
48
  center?: boolean | undefined;
47
49
  perfilPersonification?: string[] | undefined;
48
50
  viewAo?: boolean | undefined;
51
+ notificationError?: boolean | undefined;
49
52
  }>, {
50
53
  umPersonification: boolean;
51
54
  inPersonification: boolean;
@@ -55,6 +58,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
55
58
  center: boolean;
56
59
  perfilPersonification: () => string[];
57
60
  viewAo: boolean;
61
+ notificationError: boolean;
58
62
  }>>> & {
59
63
  onClickProduct?: ((product: string) => any) | undefined;
60
64
  onClickUser?: ((event: string) => any) | undefined;
@@ -68,6 +72,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
68
72
  perfilPersonification: string[];
69
73
  umPersonification: boolean;
70
74
  inPersonification: boolean;
75
+ notificationError: boolean;
71
76
  menuProducts: boolean;
72
77
  showNotification: boolean;
73
78
  mobileWhite: boolean;
@@ -2,6 +2,7 @@ import type { Notification, NotificationsList } from '@/components/headers/types
2
2
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
3
3
  showNotificationList: boolean;
4
4
  notifications?: NotificationsList | undefined;
5
+ notificationError?: boolean | undefined;
5
6
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
7
  moreNotification: (cursor: string) => void;
7
8
  } & {
@@ -11,6 +12,7 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
11
12
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
12
13
  showNotificationList: boolean;
13
14
  notifications?: NotificationsList | undefined;
15
+ notificationError?: boolean | undefined;
14
16
  }>>> & {
15
17
  onMoreNotification?: ((cursor: string) => any) | undefined;
16
18
  onGoToNotification?: ((notification: Notification) => any) | undefined;
@@ -2,6 +2,7 @@ import type { Notification, NotificationsList } from '@/components/headers/types
2
2
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
3
3
  showNotificationList: boolean;
4
4
  notifications?: NotificationsList | undefined;
5
+ notificationError?: boolean | undefined;
5
6
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
7
  moreNotification: (cursor: string) => void;
7
8
  } & {
@@ -11,6 +12,7 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
11
12
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
12
13
  showNotificationList: boolean;
13
14
  notifications?: NotificationsList | undefined;
15
+ notificationError?: boolean | undefined;
14
16
  }>>> & {
15
17
  onMoreNotification?: ((cursor: string) => any) | undefined;
16
18
  onGoToNotification?: ((notification: Notification) => any) | undefined;
@@ -2,6 +2,7 @@ import type { Notification, NotificationsList } from '@/components/headers/types
2
2
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
3
3
  notifications?: NotificationsList | undefined;
4
4
  white: boolean;
5
+ notificationError: boolean;
5
6
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
7
  moreNotification: (cursor: string) => void;
7
8
  } & {
@@ -11,6 +12,7 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
11
12
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
12
13
  notifications?: NotificationsList | undefined;
13
14
  white: boolean;
15
+ notificationError: boolean;
14
16
  }>>> & {
15
17
  onMoreNotification?: ((cursor: string) => any) | undefined;
16
18
  onGoToNotification?: ((notification: Notification) => any) | undefined;
@@ -6224,6 +6224,7 @@ export declare const components: {
6224
6224
  perfilPersonification: string[];
6225
6225
  umPersonification: boolean;
6226
6226
  inPersonification: boolean;
6227
+ notificationError: boolean;
6227
6228
  menuProducts: boolean;
6228
6229
  showNotification: boolean;
6229
6230
  mobileWhite: boolean;
@@ -6268,6 +6269,11 @@ export declare const components: {
6268
6269
  notifications: {
6269
6270
  type: import("vue").PropType<import("./components/headers/types").NotificationsList>;
6270
6271
  };
6272
+ notificationError: {
6273
+ type: import("vue").PropType<boolean>;
6274
+ } & {
6275
+ default: boolean;
6276
+ };
6271
6277
  menuProducts: {
6272
6278
  type: import("vue").PropType<boolean>;
6273
6279
  } & {
@@ -6290,7 +6296,7 @@ export declare const components: {
6290
6296
  onClickLogout?: (() => any) | undefined;
6291
6297
  onClickMenu?: (() => any) | undefined;
6292
6298
  onClickNotification?: ((event: object) => any) | undefined;
6293
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "center" | "viewAo" | "perfilPersonification" | "umPersonification" | "inPersonification" | "menuProducts" | "showNotification" | "mobileWhite">;
6299
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "center" | "viewAo" | "perfilPersonification" | "umPersonification" | "inPersonification" | "notificationError" | "menuProducts" | "showNotification" | "mobileWhite">;
6294
6300
  $attrs: {
6295
6301
  [x: string]: unknown;
6296
6302
  };
@@ -6345,6 +6351,11 @@ export declare const components: {
6345
6351
  notifications: {
6346
6352
  type: import("vue").PropType<import("./components/headers/types").NotificationsList>;
6347
6353
  };
6354
+ notificationError: {
6355
+ type: import("vue").PropType<boolean>;
6356
+ } & {
6357
+ default: boolean;
6358
+ };
6348
6359
  menuProducts: {
6349
6360
  type: import("vue").PropType<boolean>;
6350
6361
  } & {
@@ -6385,6 +6396,7 @@ export declare const components: {
6385
6396
  perfilPersonification: string[];
6386
6397
  umPersonification: boolean;
6387
6398
  inPersonification: boolean;
6399
+ notificationError: boolean;
6388
6400
  menuProducts: boolean;
6389
6401
  showNotification: boolean;
6390
6402
  mobileWhite: boolean;
@@ -6449,6 +6461,11 @@ export declare const components: {
6449
6461
  notifications: {
6450
6462
  type: import("vue").PropType<import("./components/headers/types").NotificationsList>;
6451
6463
  };
6464
+ notificationError: {
6465
+ type: import("vue").PropType<boolean>;
6466
+ } & {
6467
+ default: boolean;
6468
+ };
6452
6469
  menuProducts: {
6453
6470
  type: import("vue").PropType<boolean>;
6454
6471
  } & {
@@ -6516,6 +6533,11 @@ export declare const components: {
6516
6533
  notifications: {
6517
6534
  type: import("vue").PropType<import("./components/headers/types").NotificationsList>;
6518
6535
  };
6536
+ notificationError: {
6537
+ type: import("vue").PropType<boolean>;
6538
+ } & {
6539
+ default: boolean;
6540
+ };
6519
6541
  menuProducts: {
6520
6542
  type: import("vue").PropType<boolean>;
6521
6543
  } & {
@@ -6556,6 +6578,7 @@ export declare const components: {
6556
6578
  perfilPersonification: string[];
6557
6579
  umPersonification: boolean;
6558
6580
  inPersonification: boolean;
6581
+ notificationError: boolean;
6559
6582
  menuProducts: boolean;
6560
6583
  showNotification: boolean;
6561
6584
  mobileWhite: 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.65.0",
4
+ "version": "0.66.0",
5
5
  "license": "MIT",
6
6
  "authors": [
7
7
  {