pangea-lib 2.11.721 → 2.11.723
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 +47 -47
- package/dist/main.css +2 -2
- package/dist/main.es.js +25676 -25662
- package/dist/types/App.vue.d.ts +2 -0
- package/dist/types/components/_i18n/form/pga-login-form.i18n.d.ts +2 -4
- package/dist/types/components/display/PgaDisplayInfo.vue.d.ts +3 -3
- package/dist/types/components/form/PgaLoginForm.vue.d.ts +1 -22
- package/dist/types/components/form/inputs/PgaInput.vue.d.ts +6 -6
- package/dist/types/components/image/PgaImage.vue.d.ts +8 -8
- package/dist/types/font-awesome.d.ts +1 -0
- package/dist/types/i18n/i18n.d.ts +186 -372
- package/dist/types/i18n/messages/index.d.ts +2 -4
- package/dist/types/main.d.ts +5 -2
- package/dist/types/notifications/notifications.store.d.ts +1 -1
- package/dist/types/resources/refs.d.ts +7 -0
- package/dist/types/stores/pangea-options.store.d.ts +2 -2
- package/package.json +1 -1
- package/dist/types/notifications/notifications.plugin.d.ts +0 -1
|
@@ -54,10 +54,8 @@ declare const _default: {
|
|
|
54
54
|
};
|
|
55
55
|
pgaLoginForm: {
|
|
56
56
|
es: {
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
inputValidationErrorUsernameRequired: string;
|
|
60
|
-
inputValidationErrorPasswordRequired: string;
|
|
57
|
+
usernameLabel: string;
|
|
58
|
+
passwordLabel: string;
|
|
61
59
|
loginBtn: string;
|
|
62
60
|
};
|
|
63
61
|
};
|
package/dist/types/main.d.ts
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
|
-
import { App } from 'vue';
|
|
1
|
+
import { App as AppType, Component } from 'vue';
|
|
2
|
+
import { default as App } from './App.vue';
|
|
2
3
|
import { PartialDeep } from 'pangea-helpers';
|
|
3
4
|
import { PangeaOptions, Routes } from './types';
|
|
4
5
|
|
|
5
6
|
type InstallConfig = {
|
|
6
7
|
routes?: Routes;
|
|
8
|
+
components?: Record<string, Component>;
|
|
7
9
|
};
|
|
8
|
-
declare function install(app:
|
|
10
|
+
declare function install(app: AppType, userOptions?: PartialDeep<PangeaOptions>, config?: InstallConfig): void;
|
|
9
11
|
export default install;
|
|
12
|
+
export { App };
|
|
10
13
|
export * from './alert';
|
|
11
14
|
export * from './api-connections';
|
|
12
15
|
export * from './composables';
|
|
@@ -15,7 +15,7 @@ export declare const useNotificationsStore: import('pinia').StoreDefinition<"pga
|
|
|
15
15
|
[Symbol.dispose]: () => void;
|
|
16
16
|
};
|
|
17
17
|
}[]>;
|
|
18
|
-
}, "
|
|
18
|
+
}, "notifications" | "currentId">>, Pick<{
|
|
19
19
|
currentId: import('vue').Ref<number>;
|
|
20
20
|
notifications: import('vue').Ref<{
|
|
21
21
|
id: number;
|
|
@@ -150,7 +150,7 @@ export declare const useOptionsStore: import('pinia').StoreDefinition<"pga-optio
|
|
|
150
150
|
setLanguage: (newLanguage: Language) => void;
|
|
151
151
|
setTheme: (newTheme: Theme) => void;
|
|
152
152
|
changeTheme: () => void;
|
|
153
|
-
}, "
|
|
153
|
+
}, "options" | "language" | "theme">>, Pick<{
|
|
154
154
|
options: import('vue').Ref<{
|
|
155
155
|
app: {
|
|
156
156
|
name: string;
|
|
@@ -299,7 +299,7 @@ export declare const useOptionsStore: import('pinia').StoreDefinition<"pga-optio
|
|
|
299
299
|
setLanguage: (newLanguage: Language) => void;
|
|
300
300
|
setTheme: (newTheme: Theme) => void;
|
|
301
301
|
changeTheme: () => void;
|
|
302
|
-
}, "
|
|
302
|
+
}, "app" | "layout" | "ids" | "colors" | "button" | "form" | "image" | "notifications" | "stores" | "i18n">, Pick<{
|
|
303
303
|
options: import('vue').Ref<{
|
|
304
304
|
app: {
|
|
305
305
|
name: string;
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function installNotifications(): void;
|