lorgg-v2-components 0.0.190 → 0.0.192

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.
@@ -4,21 +4,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
4
4
  required: boolean;
5
5
  default: boolean;
6
6
  };
7
- links: {
8
- type: import("vue").PropType<import("./types").NavigationSideLinks>;
9
- required: boolean;
10
- default: {
11
- gift: {
12
- path: string;
13
- };
14
- settings: {
15
- path: string;
16
- };
17
- profile: {
18
- path: string;
19
- };
20
- };
21
- };
22
7
  items: {
23
8
  type: import("vue").PropType<import("../../types/navigation").SideNavigationItem[]>;
24
9
  required: boolean;
@@ -39,14 +24,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
39
24
  required: boolean;
40
25
  default: string;
41
26
  };
42
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click:sign-in" | "click:sync" | "click:language")[], "click:sign-in" | "click:sync" | "click:language", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
43
- expanded: {
44
- type: BooleanConstructor;
45
- required: boolean;
46
- default: boolean;
47
- };
48
27
  links: {
49
- type: import("vue").PropType<import("./types").NavigationSideLinks>;
28
+ type: import("vue").PropType<import("../../types/navigation").NavigationSideLinks>;
50
29
  required: boolean;
51
30
  default: {
52
31
  gift: {
@@ -60,6 +39,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
60
39
  };
61
40
  };
62
41
  };
42
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click:sign-in" | "click:sync" | "click:language")[], "click:sign-in" | "click:sync" | "click:language", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
43
+ expanded: {
44
+ type: BooleanConstructor;
45
+ required: boolean;
46
+ default: boolean;
47
+ };
63
48
  items: {
64
49
  type: import("vue").PropType<import("../../types/navigation").SideNavigationItem[]>;
65
50
  required: boolean;
@@ -80,6 +65,21 @@ declare const _sfc_main: import("vue").DefineComponent<{
80
65
  required: boolean;
81
66
  default: string;
82
67
  };
68
+ links: {
69
+ type: import("vue").PropType<import("../../types/navigation").NavigationSideLinks>;
70
+ required: boolean;
71
+ default: {
72
+ gift: {
73
+ path: string;
74
+ };
75
+ settings: {
76
+ path: string;
77
+ };
78
+ profile: {
79
+ path: string;
80
+ };
81
+ };
82
+ };
83
83
  }>> & {
84
84
  "onClick:sign-in"?: ((...args: any[]) => any) | undefined;
85
85
  "onClick:sync"?: ((...args: any[]) => any) | undefined;
@@ -89,7 +89,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
89
89
  items: import("../../types/navigation").SideNavigationItem[];
90
90
  loginLink: string;
91
91
  homeLink: import("vue-router").RouteLocationRaw;
92
+ links: import("../../types/navigation").NavigationSideLinks;
92
93
  expanded: boolean;
93
- links: import("./types").NavigationSideLinks;
94
94
  }, {}>;
95
95
  export default _sfc_main;
@@ -1,14 +1,6 @@
1
1
  import { NavigationProps } from '../../types/navigation';
2
- import { PropType } from 'vue';
3
- import { RouteLocationRaw } from 'vue-router';
4
- export type NavigationSideLinks = {
5
- gift: RouteLocationRaw;
6
- settings: RouteLocationRaw;
7
- profile: RouteLocationRaw;
8
- };
9
2
  export type NavigationSideProps = NavigationProps & {
10
3
  expanded: boolean;
11
- links: NavigationSideLinks;
12
4
  };
13
5
  export declare const navigationSideProps: {
14
6
  expanded: {
@@ -16,28 +8,13 @@ export declare const navigationSideProps: {
16
8
  required: boolean;
17
9
  default: boolean;
18
10
  };
19
- links: {
20
- type: PropType<NavigationSideLinks>;
21
- required: boolean;
22
- default: {
23
- gift: {
24
- path: string;
25
- };
26
- settings: {
27
- path: string;
28
- };
29
- profile: {
30
- path: string;
31
- };
32
- };
33
- };
34
11
  items: {
35
- type: PropType<import('../../types/navigation').SideNavigationItem[]>;
12
+ type: import("vue").PropType<import('../../types/navigation').SideNavigationItem[]>;
36
13
  required: boolean;
37
14
  default: never[];
38
15
  };
39
16
  fetchSeachResult: {
40
- type: PropType<import("../SearchBar/types").FetchSeachResult>;
17
+ type: import("vue").PropType<import("../SearchBar/types").FetchSeachResult>;
41
18
  required: boolean;
42
19
  default: () => never[];
43
20
  };
@@ -47,8 +24,23 @@ export declare const navigationSideProps: {
47
24
  default: string;
48
25
  };
49
26
  homeLink: {
50
- type: PropType<RouteLocationRaw>;
27
+ type: import("vue").PropType<import("vue-router").RouteLocationRaw>;
51
28
  required: boolean;
52
29
  default: string;
53
30
  };
31
+ links: {
32
+ type: import("vue").PropType<import('../../types/navigation').NavigationSideLinks>;
33
+ required: boolean;
34
+ default: {
35
+ gift: {
36
+ path: string;
37
+ };
38
+ settings: {
39
+ path: string;
40
+ };
41
+ profile: {
42
+ path: string;
43
+ };
44
+ };
45
+ };
54
46
  };
@@ -19,6 +19,21 @@ declare const _sfc_main: import("vue").DefineComponent<{
19
19
  required: boolean;
20
20
  default: string;
21
21
  };
22
+ links: {
23
+ type: import("vue").PropType<import('../../types/navigation').NavigationSideLinks>;
24
+ required: boolean;
25
+ default: {
26
+ gift: {
27
+ path: string;
28
+ };
29
+ settings: {
30
+ path: string;
31
+ };
32
+ profile: {
33
+ path: string;
34
+ };
35
+ };
36
+ };
22
37
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
23
38
  items: {
24
39
  type: import("vue").PropType<import('../../types/navigation').SideNavigationItem[]>;
@@ -40,10 +55,26 @@ declare const _sfc_main: import("vue").DefineComponent<{
40
55
  required: boolean;
41
56
  default: string;
42
57
  };
58
+ links: {
59
+ type: import("vue").PropType<import('../../types/navigation').NavigationSideLinks>;
60
+ required: boolean;
61
+ default: {
62
+ gift: {
63
+ path: string;
64
+ };
65
+ settings: {
66
+ path: string;
67
+ };
68
+ profile: {
69
+ path: string;
70
+ };
71
+ };
72
+ };
43
73
  }>>, {
44
74
  fetchSeachResult: import("../SearchBar/types").FetchSeachResult;
45
75
  items: import('../../types/navigation').SideNavigationItem[];
46
76
  loginLink: string;
47
77
  homeLink: import("vue-router").RouteLocationRaw;
78
+ links: import('../../types/navigation').NavigationSideLinks;
48
79
  }, {}>;
49
80
  export default _sfc_main;
@@ -19,6 +19,21 @@ declare const _sfc_main: import("vue").DefineComponent<{
19
19
  required: boolean;
20
20
  default: string;
21
21
  };
22
+ links: {
23
+ type: import("vue").PropType<import('../../types/navigation').NavigationSideLinks>;
24
+ required: boolean;
25
+ default: {
26
+ gift: {
27
+ path: string;
28
+ };
29
+ settings: {
30
+ path: string;
31
+ };
32
+ profile: {
33
+ path: string;
34
+ };
35
+ };
36
+ };
22
37
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click:sign-in"[], "click:sign-in", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
23
38
  items: {
24
39
  type: import("vue").PropType<import('../../types/navigation').SideNavigationItem[]>;
@@ -40,6 +55,21 @@ declare const _sfc_main: import("vue").DefineComponent<{
40
55
  required: boolean;
41
56
  default: string;
42
57
  };
58
+ links: {
59
+ type: import("vue").PropType<import('../../types/navigation').NavigationSideLinks>;
60
+ required: boolean;
61
+ default: {
62
+ gift: {
63
+ path: string;
64
+ };
65
+ settings: {
66
+ path: string;
67
+ };
68
+ profile: {
69
+ path: string;
70
+ };
71
+ };
72
+ };
43
73
  }>> & {
44
74
  "onClick:sign-in"?: ((...args: any[]) => any) | undefined;
45
75
  }, {
@@ -47,5 +77,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
47
77
  items: import('../../types/navigation').SideNavigationItem[];
48
78
  loginLink: string;
49
79
  homeLink: import("vue-router").RouteLocationRaw;
80
+ links: import('../../types/navigation').NavigationSideLinks;
50
81
  }, {}>;
51
82
  export default _sfc_main;
@@ -19,6 +19,21 @@ declare const _sfc_main: import("vue").DefineComponent<{
19
19
  required: boolean;
20
20
  default: string;
21
21
  };
22
+ links: {
23
+ type: import("vue").PropType<import('../../types/navigation').NavigationSideLinks>;
24
+ required: boolean;
25
+ default: {
26
+ gift: {
27
+ path: string;
28
+ };
29
+ settings: {
30
+ path: string;
31
+ };
32
+ profile: {
33
+ path: string;
34
+ };
35
+ };
36
+ };
22
37
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
23
38
  items: {
24
39
  type: import("vue").PropType<import('../../types/navigation').SideNavigationItem[]>;
@@ -40,10 +55,26 @@ declare const _sfc_main: import("vue").DefineComponent<{
40
55
  required: boolean;
41
56
  default: string;
42
57
  };
58
+ links: {
59
+ type: import("vue").PropType<import('../../types/navigation').NavigationSideLinks>;
60
+ required: boolean;
61
+ default: {
62
+ gift: {
63
+ path: string;
64
+ };
65
+ settings: {
66
+ path: string;
67
+ };
68
+ profile: {
69
+ path: string;
70
+ };
71
+ };
72
+ };
43
73
  }>>, {
44
74
  fetchSeachResult: import("../SearchBar/types").FetchSeachResult;
45
75
  items: import('../../types/navigation').SideNavigationItem[];
46
76
  loginLink: string;
47
77
  homeLink: import("vue-router").RouteLocationRaw;
78
+ links: import('../../types/navigation').NavigationSideLinks;
48
79
  }, {}>;
49
80
  export default _sfc_main;
@@ -1 +1 @@
1
- {"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../../../src/components/setup/icons.ts"],"names":[],"mappings":"AA0DA,wBAAgB,WAAW,SAoG1B"}
1
+ {"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../../../src/components/setup/icons.ts"],"names":[],"mappings":"AA2DA,wBAAgB,WAAW,SAqG1B"}
@@ -7,11 +7,17 @@ export type SideNavigationItem = {
7
7
  routerLocation: RouteLocationRaw;
8
8
  text: string;
9
9
  };
10
+ export type NavigationSideLinks = {
11
+ gift: RouteLocationRaw;
12
+ settings: RouteLocationRaw;
13
+ profile: RouteLocationRaw;
14
+ };
10
15
  export type NavigationProps = {
11
16
  items: SideNavigationItem[];
12
17
  loginLink: string;
13
18
  homeLink: RouteLocationRaw;
14
19
  fetchSeachResult: FetchSeachResult;
20
+ links: NavigationSideLinks;
15
21
  };
16
22
  export declare const navigationProps: {
17
23
  items: {
@@ -34,4 +40,19 @@ export declare const navigationProps: {
34
40
  required: boolean;
35
41
  default: string;
36
42
  };
43
+ links: {
44
+ type: PropType<NavigationSideLinks>;
45
+ required: boolean;
46
+ default: {
47
+ gift: {
48
+ path: string;
49
+ };
50
+ settings: {
51
+ path: string;
52
+ };
53
+ profile: {
54
+ path: string;
55
+ };
56
+ };
57
+ };
37
58
  };
@@ -1 +1 @@
1
- {"version":3,"file":"navigation.d.ts","sourceRoot":"","sources":["../../../src/components/types/navigation.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;CAuB3B,CAAC"}
1
+ {"version":3,"file":"navigation.d.ts","sourceRoot":"","sources":["../../../src/components/types/navigation.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgC3B,CAAC"}