pangea-lib 2.12.1 → 2.12.2
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.
- package/dist/types/components/PgaSpinner.vue.d.ts +1 -1
- package/dist/types/components/button/PgaButton.vue.d.ts +1 -1
- package/dist/types/components/button/PgaButtonLink.vue.d.ts +1 -1
- package/dist/types/components/display/PgaDisplayPrice.vue.d.ts +1 -1
- package/dist/types/components/image/PgaImage.vue.d.ts +6 -6
- package/dist/types/helpers/auth.helpers.d.ts +1 -1
- package/dist/types/types/auth-store.types.d.ts +2 -2
- package/package.json +1 -1
|
@@ -13,8 +13,8 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
13
13
|
size: string;
|
|
14
14
|
color: string;
|
|
15
15
|
}>>>, {
|
|
16
|
-
color: string;
|
|
17
16
|
size: 's' | 'm' | 'l';
|
|
17
|
+
color: string;
|
|
18
18
|
}, {}>;
|
|
19
19
|
export default _default;
|
|
20
20
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -39,9 +39,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
39
39
|
align: string;
|
|
40
40
|
color: string;
|
|
41
41
|
}>>>, {
|
|
42
|
+
size: ButtonSize;
|
|
42
43
|
type: ButtonType;
|
|
43
44
|
color: string;
|
|
44
|
-
size: ButtonSize;
|
|
45
45
|
align: Align;
|
|
46
46
|
}, {}>, {
|
|
47
47
|
default?(_: {}): any;
|
|
@@ -25,8 +25,8 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
25
25
|
color: string;
|
|
26
26
|
isPositive: any;
|
|
27
27
|
}>>>, {
|
|
28
|
-
color: 'first' | 'second';
|
|
29
28
|
size: 's' | 'm' | 'l';
|
|
29
|
+
color: 'first' | 'second';
|
|
30
30
|
isPositive: boolean;
|
|
31
31
|
}, {}>;
|
|
32
32
|
export default _default;
|
|
@@ -2,6 +2,9 @@ import { Image, ImageSource, Size } from '../../types';
|
|
|
2
2
|
|
|
3
3
|
declare const _default: import('vue').DefineComponent<{
|
|
4
4
|
modelValue: import('vue').PropType<string>;
|
|
5
|
+
size: {
|
|
6
|
+
type: import('vue').PropType<Size>;
|
|
7
|
+
};
|
|
5
8
|
source: {
|
|
6
9
|
type: import('vue').PropType<ImageSource>;
|
|
7
10
|
default: string;
|
|
@@ -9,9 +12,6 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
9
12
|
image: {
|
|
10
13
|
type: import('vue').PropType<string>;
|
|
11
14
|
};
|
|
12
|
-
size: {
|
|
13
|
-
type: import('vue').PropType<Size>;
|
|
14
|
-
};
|
|
15
15
|
borderRadius: {
|
|
16
16
|
type: import('vue').PropType<Size>;
|
|
17
17
|
};
|
|
@@ -39,6 +39,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
39
39
|
};
|
|
40
40
|
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
41
41
|
modelValue: import('vue').PropType<string>;
|
|
42
|
+
size: {
|
|
43
|
+
type: import('vue').PropType<Size>;
|
|
44
|
+
};
|
|
42
45
|
source: {
|
|
43
46
|
type: import('vue').PropType<ImageSource>;
|
|
44
47
|
default: string;
|
|
@@ -46,9 +49,6 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
46
49
|
image: {
|
|
47
50
|
type: import('vue').PropType<string>;
|
|
48
51
|
};
|
|
49
|
-
size: {
|
|
50
|
-
type: import('vue').PropType<Size>;
|
|
51
|
-
};
|
|
52
52
|
borderRadius: {
|
|
53
53
|
type: import('vue').PropType<Size>;
|
|
54
54
|
};
|
|
@@ -2,7 +2,7 @@ import { Ref } from 'vue';
|
|
|
2
2
|
import { RouteType, RouteName } from '../types';
|
|
3
3
|
|
|
4
4
|
export declare function getIsUserAuth(): boolean;
|
|
5
|
-
export declare function getAccessToken():
|
|
5
|
+
export declare function getAccessToken(): any;
|
|
6
6
|
type LoginParams = {
|
|
7
7
|
username: string;
|
|
8
8
|
password: string;
|
|
@@ -2,8 +2,8 @@ import { AuthUser } from '../models';
|
|
|
2
2
|
import { StoreDefinition } from 'pinia';
|
|
3
3
|
import { RouteType } from './router.types';
|
|
4
4
|
|
|
5
|
-
export type AuthStoreState =
|
|
6
|
-
export type AuthStoreGetteres =
|
|
5
|
+
export type AuthStoreState = any;
|
|
6
|
+
export type AuthStoreGetteres = any;
|
|
7
7
|
export type AuthStoreActions = {
|
|
8
8
|
setAuthUser: (type: RouteType, authUser?: AuthUser) => void;
|
|
9
9
|
};
|