pangea-lib 4.0.552 → 4.0.554
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/main.cjs.js +1769 -1769
- package/dist/main.css +2 -2
- package/dist/main.es.js +18026 -18011
- package/dist/types/{alert-danger → app/alert-danger}/alert-danger.helpers.d.ts +1 -1
- package/dist/types/{alert-danger → app/alert-danger}/alert-danger.state.d.ts +1 -1
- package/dist/types/{alert-info → app/alert-info}/alert-info.helpers.d.ts +1 -1
- package/dist/types/{alert-info → app/alert-info}/alert-info.state.d.ts +1 -1
- package/dist/types/app/development-banner/development-banner.i18n.d.ts +6 -0
- package/dist/types/app/index.d.ts +3 -0
- package/dist/types/app/notifications/Notifications.vue.d.ts +2 -0
- package/dist/types/{notifications → app/notifications}/notifications.helpers.d.ts +1 -1
- package/dist/types/{notifications → app/notifications}/notifications.store.d.ts +3 -3
- package/dist/types/{notifications → app/notifications}/notifications.types.d.ts +1 -1
- package/dist/types/components/calendar/PgaCalendar.vue.d.ts +1 -0
- package/dist/types/components/form/inputs/PgaInput.vue.d.ts +6 -6
- package/dist/types/components/form/inputs/PgaInputSelect.vue.d.ts +6 -6
- package/dist/types/components/form/inputs/PgaTextarea.vue.d.ts +6 -6
- package/dist/types/i18n/i18n.d.ts +1463 -1148
- package/dist/types/i18n/messages/index.d.ts +23 -18
- package/dist/types/main.d.ts +2 -4
- package/package.json +1 -1
- /package/dist/types/{App.vue.d.ts → app/App.vue.d.ts} +0 -0
- /package/dist/types/{alert-danger → app/alert-danger}/AlertDanger.vue.d.ts +0 -0
- /package/dist/types/{alert-danger → app/alert-danger}/alert-danger.i18n.d.ts +0 -0
- /package/dist/types/{alert-danger → app/alert-danger}/index.d.ts +0 -0
- /package/dist/types/{alert-info → app/alert-info}/AlertInfo.vue.d.ts +0 -0
- /package/dist/types/{alert-info → app/alert-info}/alert-info.i18n.d.ts +0 -0
- /package/dist/types/{alert-info → app/alert-info}/index.d.ts +0 -0
- /package/dist/types/{notifications/Notifications.vue.d.ts → app/development-banner/DevelopmentBanner.vue.d.ts} +0 -0
- /package/dist/types/{notifications → app/notifications}/index.d.ts +0 -0
- /package/dist/types/{notifications → app/notifications}/notifications.i18n.d.ts +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { NotificationId, NotificationType, Notification } from './notifications.types';
|
|
2
|
-
import { StrOrFn } from '
|
|
2
|
+
import { StrOrFn } from '../../types';
|
|
3
3
|
|
|
4
4
|
export declare abstract class Notifications {
|
|
5
5
|
static Add(type: NotificationType, message: StrOrFn): number;
|
|
@@ -4,7 +4,7 @@ export declare const useNotificationsStore: import('pinia').StoreDefinition<"pga
|
|
|
4
4
|
notifications: import('vue').Ref<{
|
|
5
5
|
id: number;
|
|
6
6
|
type: import('./notifications.types').NotificationType;
|
|
7
|
-
message: import('
|
|
7
|
+
message: import('../../types').StrOrFn;
|
|
8
8
|
duration: number;
|
|
9
9
|
remaining: number;
|
|
10
10
|
endAt: number;
|
|
@@ -23,7 +23,7 @@ export declare const useNotificationsStore: import('pinia').StoreDefinition<"pga
|
|
|
23
23
|
notifications: import('vue').Ref<{
|
|
24
24
|
id: number;
|
|
25
25
|
type: import('./notifications.types').NotificationType;
|
|
26
|
-
message: import('
|
|
26
|
+
message: import('../../types').StrOrFn;
|
|
27
27
|
duration: number;
|
|
28
28
|
remaining: number;
|
|
29
29
|
endAt: number;
|
|
@@ -42,7 +42,7 @@ export declare const useNotificationsStore: import('pinia').StoreDefinition<"pga
|
|
|
42
42
|
notifications: import('vue').Ref<{
|
|
43
43
|
id: number;
|
|
44
44
|
type: import('./notifications.types').NotificationType;
|
|
45
|
-
message: import('
|
|
45
|
+
message: import('../../types').StrOrFn;
|
|
46
46
|
duration: number;
|
|
47
47
|
remaining: number;
|
|
48
48
|
endAt: number;
|
|
@@ -8,9 +8,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
8
8
|
required: true;
|
|
9
9
|
type: import('vue').PropType<ModelValue>;
|
|
10
10
|
};
|
|
11
|
-
info: {
|
|
12
|
-
type: import('vue').PropType<StrOrFn>;
|
|
13
|
-
};
|
|
14
11
|
id: {
|
|
15
12
|
type: import('vue').PropType<string>;
|
|
16
13
|
};
|
|
@@ -20,6 +17,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
20
17
|
icon: {
|
|
21
18
|
type: import('vue').PropType<Icon>;
|
|
22
19
|
};
|
|
20
|
+
info: {
|
|
21
|
+
type: import('vue').PropType<StrOrFn>;
|
|
22
|
+
};
|
|
23
23
|
type: {
|
|
24
24
|
type: import('vue').PropType<PropsType>;
|
|
25
25
|
default: string;
|
|
@@ -68,9 +68,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
68
68
|
required: true;
|
|
69
69
|
type: import('vue').PropType<ModelValue>;
|
|
70
70
|
};
|
|
71
|
-
info: {
|
|
72
|
-
type: import('vue').PropType<StrOrFn>;
|
|
73
|
-
};
|
|
74
71
|
id: {
|
|
75
72
|
type: import('vue').PropType<string>;
|
|
76
73
|
};
|
|
@@ -80,6 +77,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
80
77
|
icon: {
|
|
81
78
|
type: import('vue').PropType<Icon>;
|
|
82
79
|
};
|
|
80
|
+
info: {
|
|
81
|
+
type: import('vue').PropType<StrOrFn>;
|
|
82
|
+
};
|
|
83
83
|
type: {
|
|
84
84
|
type: import('vue').PropType<PropsType>;
|
|
85
85
|
default: string;
|
|
@@ -8,9 +8,6 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
8
8
|
required: true;
|
|
9
9
|
type: import('vue').PropType<OptionId>;
|
|
10
10
|
};
|
|
11
|
-
info: {
|
|
12
|
-
type: import('vue').PropType<StrOrFn>;
|
|
13
|
-
};
|
|
14
11
|
id: {
|
|
15
12
|
type: import('vue').PropType<string>;
|
|
16
13
|
};
|
|
@@ -21,6 +18,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
21
18
|
description: {
|
|
22
19
|
type: import('vue').PropType<StrOrFn>;
|
|
23
20
|
};
|
|
21
|
+
info: {
|
|
22
|
+
type: import('vue').PropType<StrOrFn>;
|
|
23
|
+
};
|
|
24
24
|
label: {
|
|
25
25
|
type: import('vue').PropType<StrOrFn>;
|
|
26
26
|
};
|
|
@@ -73,9 +73,6 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
73
73
|
required: true;
|
|
74
74
|
type: import('vue').PropType<OptionId>;
|
|
75
75
|
};
|
|
76
|
-
info: {
|
|
77
|
-
type: import('vue').PropType<StrOrFn>;
|
|
78
|
-
};
|
|
79
76
|
id: {
|
|
80
77
|
type: import('vue').PropType<string>;
|
|
81
78
|
};
|
|
@@ -86,6 +83,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
86
83
|
description: {
|
|
87
84
|
type: import('vue').PropType<StrOrFn>;
|
|
88
85
|
};
|
|
86
|
+
info: {
|
|
87
|
+
type: import('vue').PropType<StrOrFn>;
|
|
88
|
+
};
|
|
89
89
|
label: {
|
|
90
90
|
type: import('vue').PropType<StrOrFn>;
|
|
91
91
|
};
|
|
@@ -6,15 +6,15 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
6
6
|
required: true;
|
|
7
7
|
type: import('vue').PropType<string>;
|
|
8
8
|
};
|
|
9
|
-
info: {
|
|
10
|
-
type: import('vue').PropType<StrOrFn>;
|
|
11
|
-
};
|
|
12
9
|
id: {
|
|
13
10
|
type: import('vue').PropType<string>;
|
|
14
11
|
};
|
|
15
12
|
description: {
|
|
16
13
|
type: import('vue').PropType<StrOrFn>;
|
|
17
14
|
};
|
|
15
|
+
info: {
|
|
16
|
+
type: import('vue').PropType<StrOrFn>;
|
|
17
|
+
};
|
|
18
18
|
size: {
|
|
19
19
|
type: import('vue').PropType<"l" | "s" | "m">;
|
|
20
20
|
default: string;
|
|
@@ -61,15 +61,15 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
61
61
|
required: true;
|
|
62
62
|
type: import('vue').PropType<string>;
|
|
63
63
|
};
|
|
64
|
-
info: {
|
|
65
|
-
type: import('vue').PropType<StrOrFn>;
|
|
66
|
-
};
|
|
67
64
|
id: {
|
|
68
65
|
type: import('vue').PropType<string>;
|
|
69
66
|
};
|
|
70
67
|
description: {
|
|
71
68
|
type: import('vue').PropType<StrOrFn>;
|
|
72
69
|
};
|
|
70
|
+
info: {
|
|
71
|
+
type: import('vue').PropType<StrOrFn>;
|
|
72
|
+
};
|
|
73
73
|
size: {
|
|
74
74
|
type: import('vue').PropType<"l" | "s" | "m">;
|
|
75
75
|
default: string;
|