@solfacil/girassol 0.37.0 → 0.38.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.
@@ -1,18 +1,20 @@
1
- import type { NotificationsList, Partner, User } from './types';
1
+ import type { NotificationsList, Partner, Product, User } from './types';
2
2
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
3
- user: User;
4
- partner: Partner;
5
- product: 'sales' | 'financing' | 'monitoring' | 'shop' | 'portal';
6
3
  umPersonification?: boolean | undefined;
7
4
  inPersonification?: boolean | undefined;
8
5
  menuProducts?: boolean | undefined;
9
6
  showNotification?: boolean | undefined;
7
+ mobileWhite?: boolean | undefined;
8
+ user: User;
9
+ partner: Partner;
10
+ product: Product;
10
11
  notifications?: NotificationsList | undefined;
11
12
  }>, {
12
13
  umPersonification: boolean;
13
14
  inPersonification: boolean;
14
- showNotification: boolean;
15
15
  menuProducts: boolean;
16
+ showNotification: boolean;
17
+ mobileWhite: boolean;
16
18
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
17
19
  clickMenu: () => void;
18
20
  } & {
@@ -23,37 +25,37 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
23
25
  clickProduct: (product: string) => void;
24
26
  } & {
25
27
  clickSolfacilPlus: () => void;
26
- } & {
27
- homePortal: () => void;
28
28
  } & {
29
29
  clickNotification: (event: object) => void;
30
30
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
31
- user: User;
32
- partner: Partner;
33
- product: 'sales' | 'financing' | 'monitoring' | 'shop' | 'portal';
34
31
  umPersonification?: boolean | undefined;
35
32
  inPersonification?: boolean | undefined;
36
33
  menuProducts?: boolean | undefined;
37
34
  showNotification?: boolean | undefined;
35
+ mobileWhite?: boolean | undefined;
36
+ user: User;
37
+ partner: Partner;
38
+ product: Product;
38
39
  notifications?: NotificationsList | undefined;
39
40
  }>, {
40
41
  umPersonification: boolean;
41
42
  inPersonification: boolean;
42
- showNotification: boolean;
43
43
  menuProducts: boolean;
44
+ showNotification: boolean;
45
+ mobileWhite: boolean;
44
46
  }>>> & {
45
47
  onClickProduct?: ((product: string) => any) | undefined;
46
48
  onClickUser?: ((event: string) => any) | undefined;
47
49
  onClickSolfacilPlus?: (() => any) | undefined;
48
50
  onClickLogout?: (() => any) | undefined;
49
51
  onClickMenu?: (() => any) | undefined;
50
- onHomePortal?: (() => any) | undefined;
51
52
  onClickNotification?: ((event: object) => any) | undefined;
52
53
  }, {
53
54
  umPersonification: boolean;
54
55
  inPersonification: boolean;
55
56
  menuProducts: boolean;
56
57
  showNotification: boolean;
58
+ mobileWhite: boolean;
57
59
  }>, {
58
60
  icon: (_: {}) => any;
59
61
  }>;
@@ -1,7 +1,7 @@
1
1
  import type { Notification, NotificationsList } from '../types';
2
2
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
3
3
  notifications?: NotificationsList | undefined;
4
- product: string;
4
+ white: boolean;
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
  notifications?: NotificationsList | undefined;
13
- product: string;
13
+ white: boolean;
14
14
  }>>> & {
15
15
  onMoreNotification?: ((cursor: string) => any) | undefined;
16
16
  onGoToNotification?: ((notification: Notification) => any) | undefined;
@@ -1,9 +1,10 @@
1
+ import type { Product } from '../types';
1
2
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
2
- product: string;
3
+ product: Product;
3
4
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
4
5
  clickProduct: (product: string) => void;
5
6
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
6
- product: string;
7
+ product: Product;
7
8
  }>>> & {
8
9
  onClickProduct?: ((product: string) => any) | undefined;
9
10
  }, {}>;
@@ -1,9 +1,10 @@
1
+ import type { Product } from '../types';
1
2
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
2
- readonly product: string;
3
+ product: Product;
3
4
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
4
5
  clickProduct: (product: string) => void;
5
6
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
6
- readonly product: string;
7
+ product: Product;
7
8
  }>>> & {
8
9
  onClickProduct?: ((product: string) => any) | undefined;
9
10
  }, {}>;
@@ -1,3 +1,4 @@
1
+ import type { FunctionalComponent, SVGAttributes } from 'vue';
1
2
  export interface ProductOptions {
2
3
  id: string;
3
4
  text: string;
@@ -43,3 +44,9 @@ export interface NotificationsList {
43
44
  nextCursor: string;
44
45
  data: Notification[];
45
46
  }
47
+ export interface Product {
48
+ id: 'portal' | 'shop' | 'financing' | 'ampera';
49
+ icon?: FunctionalComponent<SVGAttributes, {}>;
50
+ title: string;
51
+ action?: Function;
52
+ }
@@ -0,0 +1,35 @@
1
+ import type { Items } from './types';
2
+ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
3
+ isCollapsedMenu?: boolean | undefined;
4
+ items: Items[];
5
+ white: boolean;
6
+ }>, {
7
+ isCollapsedMenu: boolean;
8
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
+ clickMenuItem: () => void;
10
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
11
+ isCollapsedMenu?: boolean | undefined;
12
+ items: Items[];
13
+ white: boolean;
14
+ }>, {
15
+ isCollapsedMenu: boolean;
16
+ }>>> & {
17
+ onClickMenuItem?: (() => any) | undefined;
18
+ }, {
19
+ isCollapsedMenu: boolean;
20
+ }>;
21
+ export default _default;
22
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
23
+ type __VLS_TypePropsToRuntimeProps<T> = {
24
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
25
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
26
+ } : {
27
+ type: import('vue').PropType<T[K]>;
28
+ required: true;
29
+ };
30
+ };
31
+ type __VLS_WithDefaults<P, D> = {
32
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? P[K] & {
33
+ default: D[K];
34
+ } : P[K];
35
+ };
@@ -0,0 +1,27 @@
1
+ import type { Product } from './types';
2
+ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
3
+ isOpenedProductMenu: boolean;
4
+ product: Product;
5
+ white: boolean;
6
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
+ clickProduct: (product: string) => void;
8
+ } & {
9
+ clickOpenMenu: () => void;
10
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
11
+ isOpenedProductMenu: boolean;
12
+ product: Product;
13
+ white: boolean;
14
+ }>>> & {
15
+ onClickProduct?: ((product: string) => any) | undefined;
16
+ onClickOpenMenu?: (() => any) | undefined;
17
+ }, {}>;
18
+ export default _default;
19
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
20
+ type __VLS_TypePropsToRuntimeProps<T> = {
21
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
22
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
23
+ } : {
24
+ type: import('vue').PropType<T[K]>;
25
+ required: true;
26
+ };
27
+ };
@@ -0,0 +1,48 @@
1
+ import type { Items, Product } from './types';
2
+ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
3
+ isOpenMobileSidebar?: boolean | undefined;
4
+ onlyMobile?: boolean | undefined;
5
+ white?: boolean | undefined;
6
+ items: Items[];
7
+ product: Product;
8
+ }>, {
9
+ onlyMobile: boolean;
10
+ white: boolean;
11
+ isOpenMobileSidebar: boolean;
12
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13
+ clickProduct: (product: string) => void;
14
+ } & {
15
+ clickMenu: () => void;
16
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
17
+ isOpenMobileSidebar?: boolean | undefined;
18
+ onlyMobile?: boolean | undefined;
19
+ white?: boolean | undefined;
20
+ items: Items[];
21
+ product: Product;
22
+ }>, {
23
+ onlyMobile: boolean;
24
+ white: boolean;
25
+ isOpenMobileSidebar: boolean;
26
+ }>>> & {
27
+ onClickProduct?: ((product: string) => any) | undefined;
28
+ onClickMenu?: (() => any) | undefined;
29
+ }, {
30
+ white: boolean;
31
+ isOpenMobileSidebar: boolean;
32
+ onlyMobile: boolean;
33
+ }>;
34
+ export default _default;
35
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
36
+ type __VLS_TypePropsToRuntimeProps<T> = {
37
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
38
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
39
+ } : {
40
+ type: import('vue').PropType<T[K]>;
41
+ required: true;
42
+ };
43
+ };
44
+ type __VLS_WithDefaults<P, D> = {
45
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? P[K] & {
46
+ default: D[K];
47
+ } : P[K];
48
+ };
@@ -0,0 +1,2 @@
1
+ import SolSidebar from './Sidebar.vue';
2
+ export { SolSidebar, };
@@ -0,0 +1,13 @@
1
+ import type { FunctionalComponent, SVGAttributes } from "vue";
2
+ export interface Items {
3
+ icon?: FunctionalComponent<SVGAttributes, {}>;
4
+ name: string;
5
+ isActive: boolean;
6
+ action: Function;
7
+ }
8
+ export interface Product {
9
+ id: 'portal' | 'shop' | 'financing' | 'ampera';
10
+ icon?: FunctionalComponent<SVGAttributes, {}>;
11
+ title: string;
12
+ action?: Function;
13
+ }
@@ -0,0 +1,9 @@
1
+ import type { Component } from 'vue';
2
+ export declare function useProductList(): {
3
+ productsList: {
4
+ id: string;
5
+ to: string;
6
+ icon: Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
7
+ title: string;
8
+ }[];
9
+ };
@@ -31,6 +31,7 @@ import { SolBreadcrumb } from './components/breadcrumb';
31
31
  import { SolDivider } from './components/divider';
32
32
  import { SolLink } from './components/link/';
33
33
  import { SolHeader } from './components/header/';
34
+ import { SolSidebar } from './components/sidebar/';
34
35
  import 'virtual:windi-base.css';
35
36
  import 'virtual:windi-components.css';
36
37
  import 'virtual:windi-utilities.css';
@@ -41,6 +42,7 @@ export { useMask, vMask } from './composables/use-mask';
41
42
  export { useNavigate, useNavigateProvider } from './composables/use-navigate';
42
43
  export { useSelectableChip } from './composables/use-filters';
43
44
  export { default as useDownload } from './composables/use-download';
45
+ export { useProductList } from './composables/use-products';
44
46
  export declare const components: {
45
47
  SolButton: {
46
48
  new (...args: any[]): {
@@ -6052,9 +6054,10 @@ export declare const components: {
6052
6054
  inPersonification: boolean;
6053
6055
  menuProducts: boolean;
6054
6056
  showNotification: boolean;
6057
+ mobileWhite: boolean;
6055
6058
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
6056
6059
  product: {
6057
- type: import("vue").PropType<"portal" | "shop" | "financing" | "monitoring" | "sales">;
6060
+ type: import("vue").PropType<import("./components/header/types").Product>;
6058
6061
  required: true;
6059
6062
  };
6060
6063
  user: {
@@ -6088,15 +6091,19 @@ export declare const components: {
6088
6091
  } & {
6089
6092
  default: boolean;
6090
6093
  };
6094
+ mobileWhite: {
6095
+ type: import("vue").PropType<boolean>;
6096
+ } & {
6097
+ default: boolean;
6098
+ };
6091
6099
  }>> & {
6092
6100
  onClickProduct?: ((product: string) => any) | undefined;
6093
6101
  onClickUser?: ((event: string) => any) | undefined;
6094
6102
  onClickSolfacilPlus?: (() => any) | undefined;
6095
6103
  onClickLogout?: (() => any) | undefined;
6096
6104
  onClickMenu?: (() => any) | undefined;
6097
- onHomePortal?: (() => any) | undefined;
6098
6105
  onClickNotification?: ((event: object) => any) | undefined;
6099
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "umPersonification" | "inPersonification" | "menuProducts" | "showNotification">;
6106
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "umPersonification" | "inPersonification" | "menuProducts" | "showNotification" | "mobileWhite">;
6100
6107
  $attrs: {
6101
6108
  [x: string]: unknown;
6102
6109
  };
@@ -6108,11 +6115,11 @@ export declare const components: {
6108
6115
  }>;
6109
6116
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
6110
6117
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
6111
- $emit: ((event: "clickProduct", product: string) => void) & ((event: "clickUser", event: string) => void) & ((event: "clickSolfacilPlus") => void) & ((event: "clickLogout") => void) & ((event: "clickMenu") => void) & ((event: "homePortal") => void) & ((event: "clickNotification", event: object) => void);
6118
+ $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);
6112
6119
  $el: any;
6113
6120
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
6114
6121
  product: {
6115
- type: import("vue").PropType<"portal" | "shop" | "financing" | "monitoring" | "sales">;
6122
+ type: import("vue").PropType<import("./components/header/types").Product>;
6116
6123
  required: true;
6117
6124
  };
6118
6125
  user: {
@@ -6146,13 +6153,17 @@ export declare const components: {
6146
6153
  } & {
6147
6154
  default: boolean;
6148
6155
  };
6156
+ mobileWhite: {
6157
+ type: import("vue").PropType<boolean>;
6158
+ } & {
6159
+ default: boolean;
6160
+ };
6149
6161
  }>> & {
6150
6162
  onClickProduct?: ((product: string) => any) | undefined;
6151
6163
  onClickUser?: ((event: string) => any) | undefined;
6152
6164
  onClickSolfacilPlus?: (() => any) | undefined;
6153
6165
  onClickLogout?: (() => any) | undefined;
6154
6166
  onClickMenu?: (() => any) | undefined;
6155
- onHomePortal?: (() => any) | undefined;
6156
6167
  onClickNotification?: ((event: object) => any) | undefined;
6157
6168
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6158
6169
  clickMenu: () => void;
@@ -6164,8 +6175,6 @@ export declare const components: {
6164
6175
  clickProduct: (product: string) => void;
6165
6176
  } & {
6166
6177
  clickSolfacilPlus: () => void;
6167
- } & {
6168
- homePortal: () => void;
6169
6178
  } & {
6170
6179
  clickNotification: (event: object) => void;
6171
6180
  }, string, {
@@ -6173,6 +6182,7 @@ export declare const components: {
6173
6182
  inPersonification: boolean;
6174
6183
  menuProducts: boolean;
6175
6184
  showNotification: boolean;
6185
+ mobileWhite: boolean;
6176
6186
  }, {}, string> & {
6177
6187
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
6178
6188
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -6195,7 +6205,7 @@ export declare const components: {
6195
6205
  $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;
6196
6206
  } & Readonly<import("vue").ExtractPropTypes<{
6197
6207
  product: {
6198
- type: import("vue").PropType<"portal" | "shop" | "financing" | "monitoring" | "sales">;
6208
+ type: import("vue").PropType<import("./components/header/types").Product>;
6199
6209
  required: true;
6200
6210
  };
6201
6211
  user: {
@@ -6229,13 +6239,17 @@ export declare const components: {
6229
6239
  } & {
6230
6240
  default: boolean;
6231
6241
  };
6242
+ mobileWhite: {
6243
+ type: import("vue").PropType<boolean>;
6244
+ } & {
6245
+ default: boolean;
6246
+ };
6232
6247
  }>> & {
6233
6248
  onClickProduct?: ((product: string) => any) | undefined;
6234
6249
  onClickUser?: ((event: string) => any) | undefined;
6235
6250
  onClickSolfacilPlus?: (() => any) | undefined;
6236
6251
  onClickLogout?: (() => any) | undefined;
6237
6252
  onClickMenu?: (() => any) | undefined;
6238
- onHomePortal?: (() => any) | undefined;
6239
6253
  onClickNotification?: ((event: object) => any) | undefined;
6240
6254
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
6241
6255
  __isFragment?: undefined;
@@ -6243,7 +6257,7 @@ export declare const components: {
6243
6257
  __isSuspense?: undefined;
6244
6258
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
6245
6259
  product: {
6246
- type: import("vue").PropType<"portal" | "shop" | "financing" | "monitoring" | "sales">;
6260
+ type: import("vue").PropType<import("./components/header/types").Product>;
6247
6261
  required: true;
6248
6262
  };
6249
6263
  user: {
@@ -6277,13 +6291,17 @@ export declare const components: {
6277
6291
  } & {
6278
6292
  default: boolean;
6279
6293
  };
6294
+ mobileWhite: {
6295
+ type: import("vue").PropType<boolean>;
6296
+ } & {
6297
+ default: boolean;
6298
+ };
6280
6299
  }>> & {
6281
6300
  onClickProduct?: ((product: string) => any) | undefined;
6282
6301
  onClickUser?: ((event: string) => any) | undefined;
6283
6302
  onClickSolfacilPlus?: (() => any) | undefined;
6284
6303
  onClickLogout?: (() => any) | undefined;
6285
6304
  onClickMenu?: (() => any) | undefined;
6286
- onHomePortal?: (() => any) | undefined;
6287
6305
  onClickNotification?: ((event: object) => any) | undefined;
6288
6306
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6289
6307
  clickMenu: () => void;
@@ -6295,8 +6313,6 @@ export declare const components: {
6295
6313
  clickProduct: (product: string) => void;
6296
6314
  } & {
6297
6315
  clickSolfacilPlus: () => void;
6298
- } & {
6299
- homePortal: () => void;
6300
6316
  } & {
6301
6317
  clickNotification: (event: object) => void;
6302
6318
  }, string, {
@@ -6304,11 +6320,72 @@ export declare const components: {
6304
6320
  inPersonification: boolean;
6305
6321
  menuProducts: boolean;
6306
6322
  showNotification: boolean;
6323
+ mobileWhite: boolean;
6307
6324
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
6308
6325
  $slots: {
6309
6326
  icon: (_: {}) => any;
6310
6327
  };
6311
6328
  });
6329
+ SolSidebar: import("vue").DefineComponent<{
6330
+ items: {
6331
+ type: import("vue").PropType<import("./components/sidebar/types").Items[]>;
6332
+ required: true;
6333
+ };
6334
+ product: {
6335
+ type: import("vue").PropType<import("./components/sidebar/types").Product>;
6336
+ required: true;
6337
+ };
6338
+ white: {
6339
+ type: import("vue").PropType<boolean>;
6340
+ } & {
6341
+ default: boolean;
6342
+ };
6343
+ isOpenMobileSidebar: {
6344
+ type: import("vue").PropType<boolean>;
6345
+ } & {
6346
+ default: boolean;
6347
+ };
6348
+ onlyMobile: {
6349
+ type: import("vue").PropType<boolean>;
6350
+ } & {
6351
+ default: boolean;
6352
+ };
6353
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6354
+ clickProduct: (product: string) => void;
6355
+ } & {
6356
+ clickMenu: () => void;
6357
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
6358
+ items: {
6359
+ type: import("vue").PropType<import("./components/sidebar/types").Items[]>;
6360
+ required: true;
6361
+ };
6362
+ product: {
6363
+ type: import("vue").PropType<import("./components/sidebar/types").Product>;
6364
+ required: true;
6365
+ };
6366
+ white: {
6367
+ type: import("vue").PropType<boolean>;
6368
+ } & {
6369
+ default: boolean;
6370
+ };
6371
+ isOpenMobileSidebar: {
6372
+ type: import("vue").PropType<boolean>;
6373
+ } & {
6374
+ default: boolean;
6375
+ };
6376
+ onlyMobile: {
6377
+ type: import("vue").PropType<boolean>;
6378
+ } & {
6379
+ default: boolean;
6380
+ };
6381
+ }>> & {
6382
+ onClickProduct?: ((product: string) => any) | undefined;
6383
+ onClickMenu?: (() => any) | undefined;
6384
+ }, {
6385
+ white: boolean;
6386
+ isOpenMobileSidebar: boolean;
6387
+ onlyMobile: boolean;
6388
+ }>;
6312
6389
  };
6313
6390
  export declare function install(App: App): void;
6314
- 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, };
6391
+ 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, };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@solfacil/girassol",
3
3
  "description": "Girassol design system",
4
- "version": "0.37.0",
4
+ "version": "0.38.0",
5
5
  "license": "MIT",
6
6
  "authors": [
7
7
  {
@@ -1,19 +0,0 @@
1
- import { openBlock as c, createElementBlock as l, createElementVNode as e } from "vue";
2
- const s = {
3
- viewBox: "0 0 1024 1024",
4
- width: "1em",
5
- height: "1em"
6
- }, t = /* @__PURE__ */ e("path", {
7
- fill: "currentColor",
8
- d: "M162.129 836.267c-7.111-7.113-10.667-15.104-10.667-23.979 0-8.905 3.556-16.909 10.667-24.021l254.933-253.867c3.556-4.267 7.637-7.296 12.245-9.088 4.638-1.762 9.442-2.645 14.421-2.645s9.783 0.883 14.421 2.645c4.608 1.792 8.691 4.821 12.245 9.088l144 142.933 278.4-315.733c5.687-7.111 13.154-10.667 22.4-10.667s17.067 3.2 23.467 9.6c5.687 5.689 8.717 12.629 9.088 20.821 0.341 8.163-2.334 15.445-8.021 21.845l-297.6 339.2c-3.554 4.267-7.821 7.65-12.8 10.155-4.979 2.475-9.954 3.712-14.933 3.712s-9.954-0.883-14.933-2.645c-4.979-1.792-9.246-4.821-12.8-9.088l-142.933-141.867-233.6 233.6c-7.111 6.4-15.118 9.771-24.021 10.112-8.875 0.371-16.867-2.999-23.979-10.112zM166.396 544c-3.555 0-6.926-0.883-10.112-2.645-3.214-1.792-5.888-4.467-8.021-8.021l-13.867-32-32-13.867c-3.555-2.133-6.229-4.791-8.021-7.979-1.763-3.213-2.645-6.601-2.645-10.155s0.882-6.942 2.645-10.155c1.792-3.187 4.466-5.845 8.021-7.979l32-13.867 13.867-32c2.133-3.555 4.807-6.229 8.021-8.021 3.186-1.763 6.557-2.645 10.112-2.645s6.941 0.882 10.155 2.645c3.186 1.792 5.845 4.466 7.979 8.021l13.867 32 32 13.867c7.111 3.554 10.667 9.6 10.667 18.133s-3.555 14.579-10.667 18.133l-32 13.867-13.867 32c-2.133 3.554-4.793 6.229-7.979 8.021-3.214 1.762-6.599 2.645-10.155 2.645zM635.729 458.667c-3.554 0-6.925-0.883-10.112-2.645-3.213-1.792-5.888-4.467-8.021-8.021l-13.867-32-32-13.867c-3.554-2.133-6.217-4.793-7.979-7.979-1.792-3.214-2.688-6.599-2.688-10.155s0.896-6.941 2.688-10.155c1.762-3.186 4.425-5.845 7.979-7.979l32-13.867 13.867-32c2.133-3.555 4.809-6.229 8.021-8.021 3.187-1.763 6.558-2.645 10.112-2.645s6.925 0.882 10.112 2.645c3.213 1.792 5.888 4.466 8.021 8.021l13.867 32 32 13.867c4.267 2.133 7.113 4.793 8.533 7.979 1.421 3.214 2.133 6.599 2.133 10.155s-0.713 6.941-2.133 10.155c-1.421 3.186-4.267 5.845-8.533 7.979l-32 13.867-13.867 32c-2.133 3.554-4.809 6.229-8.021 8.021-3.187 1.762-6.558 2.645-10.112 2.645zM358.396 330.667c-3.555 0-6.926-1.067-10.112-3.2-3.214-2.133-5.888-4.978-8.021-8.533l-20.267-45.867-45.867-20.267c-3.555-2.133-6.4-4.807-8.533-8.021-2.133-3.186-3.2-6.557-3.2-10.112s1.067-6.941 3.2-10.155c2.133-3.186 4.978-5.845 8.533-7.979l45.867-20.267 20.267-45.867c2.133-3.555 4.807-6.4 8.021-8.533 3.186-2.133 6.557-3.2 10.112-3.2s6.927 1.067 10.112 3.2c3.215 2.133 5.888 4.978 8.021 8.533l20.267 45.867 45.867 20.267c4.267 2.133 7.296 4.793 9.088 7.979 1.762 3.214 2.645 6.599 2.645 10.155s-0.883 6.926-2.645 10.112c-1.792 3.214-4.821 5.888-9.088 8.021l-45.867 20.267-20.267 45.867c-2.133 3.555-4.807 6.4-8.021 8.533-3.185 2.133-6.556 3.2-10.112 3.2z",
9
- style: {}
10
- }, null, -1), o = [
11
- t
12
- ];
13
- function r(n, a) {
14
- return c(), l("svg", s, o);
15
- }
16
- const i = { name: "girassol-auto-graph", render: r };
17
- export {
18
- i as default
19
- };
@@ -1,16 +0,0 @@
1
- import type { ProductOptions } from '../types';
2
- declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
3
- products?: ProductOptions[] | undefined;
4
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
5
- products?: ProductOptions[] | undefined;
6
- }>>>, {}>;
7
- export default _default;
8
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
9
- type __VLS_TypePropsToRuntimeProps<T> = {
10
- [K in keyof T]-?: {} extends Pick<T, K> ? {
11
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
12
- } : {
13
- type: import('vue').PropType<T[K]>;
14
- required: true;
15
- };
16
- };