pangea-lib 4.0.553 → 4.0.555

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.
Files changed (32) hide show
  1. package/dist/main.cjs.js +1775 -1775
  2. package/dist/main.css +2 -2
  3. package/dist/main.es.js +20486 -20464
  4. package/dist/types/{alert-danger → app/alert-danger}/alert-danger.helpers.d.ts +1 -1
  5. package/dist/types/{alert-danger → app/alert-danger}/alert-danger.state.d.ts +1 -1
  6. package/dist/types/{alert-info → app/alert-info}/alert-info.helpers.d.ts +1 -1
  7. package/dist/types/{alert-info → app/alert-info}/alert-info.state.d.ts +1 -1
  8. package/dist/types/app/development-banner/development-banner.i18n.d.ts +6 -0
  9. package/dist/types/app/index.d.ts +3 -0
  10. package/dist/types/app/notifications/Notifications.vue.d.ts +2 -0
  11. package/dist/types/{notifications → app/notifications}/notifications.helpers.d.ts +1 -1
  12. package/dist/types/{notifications → app/notifications}/notifications.store.d.ts +3 -3
  13. package/dist/types/{notifications → app/notifications}/notifications.types.d.ts +1 -1
  14. package/dist/types/components/form/inputs/PgaInput.vue.d.ts +6 -6
  15. package/dist/types/components/form/inputs/PgaInputSelect.vue.d.ts +6 -6
  16. package/dist/types/components/form/inputs/PgaTextarea.vue.d.ts +6 -6
  17. package/dist/types/i18n/i18n.d.ts +1526 -1148
  18. package/dist/types/i18n/messages/index.d.ts +24 -18
  19. package/dist/types/main.d.ts +2 -4
  20. package/dist/types/validations/validations.i18n.d.ts +1 -0
  21. package/dist/types/validations/validations.rules.d.ts +1 -0
  22. package/package.json +1 -1
  23. /package/dist/types/{App.vue.d.ts → app/App.vue.d.ts} +0 -0
  24. /package/dist/types/{alert-danger → app/alert-danger}/AlertDanger.vue.d.ts +0 -0
  25. /package/dist/types/{alert-danger → app/alert-danger}/alert-danger.i18n.d.ts +0 -0
  26. /package/dist/types/{alert-danger → app/alert-danger}/index.d.ts +0 -0
  27. /package/dist/types/{alert-info → app/alert-info}/AlertInfo.vue.d.ts +0 -0
  28. /package/dist/types/{alert-info → app/alert-info}/alert-info.i18n.d.ts +0 -0
  29. /package/dist/types/{alert-info → app/alert-info}/index.d.ts +0 -0
  30. /package/dist/types/{notifications/Notifications.vue.d.ts → app/development-banner/DevelopmentBanner.vue.d.ts} +0 -0
  31. /package/dist/types/{notifications → app/notifications}/index.d.ts +0 -0
  32. /package/dist/types/{notifications → app/notifications}/notifications.i18n.d.ts +0 -0
@@ -11,6 +11,24 @@ declare const _default: {
11
11
  yesterday: string;
12
12
  };
13
13
  };
14
+ apiError: {
15
+ es: {
16
+ INTERNAL_SERVER_ERROR: string;
17
+ DUPLICATE_KEY: string;
18
+ FOREIGN_KEY_INTEGRITY: string;
19
+ MODELS_ASSOCIATED: string;
20
+ INVALID_INPUT_DATA: string;
21
+ ENTITY_NOT_FOUND: string;
22
+ VOUCHER_CREATION_FAILED: string;
23
+ INVALID_CREDENTIALS: string;
24
+ UNAUTHORIZED: string;
25
+ };
26
+ };
27
+ apiSuccess: {
28
+ es: {
29
+ _LOGIN: string;
30
+ };
31
+ };
14
32
  alertDanger: {
15
33
  es: {
16
34
  title: string;
@@ -24,6 +42,11 @@ declare const _default: {
24
42
  gotItBtn: string;
25
43
  };
26
44
  };
45
+ developmentBanner: {
46
+ es: {
47
+ noEmails: string;
48
+ };
49
+ };
27
50
  notifications: {
28
51
  es: {
29
52
  success: string;
@@ -34,24 +57,6 @@ declare const _default: {
34
57
  resumeAriaLabel: string;
35
58
  };
36
59
  };
37
- apiError: {
38
- es: {
39
- INTERNAL_SERVER_ERROR: string;
40
- DUPLICATE_KEY: string;
41
- FOREIGN_KEY_INTEGRITY: string;
42
- MODELS_ASSOCIATED: string;
43
- INVALID_INPUT_DATA: string;
44
- ENTITY_NOT_FOUND: string;
45
- VOUCHER_CREATION_FAILED: string;
46
- INVALID_CREDENTIALS: string;
47
- UNAUTHORIZED: string;
48
- };
49
- };
50
- apiSuccess: {
51
- es: {
52
- _LOGIN: string;
53
- };
54
- };
55
60
  pgaButton: {
56
61
  es: {
57
62
  backBtn: string;
@@ -196,6 +201,7 @@ declare const _default: {
196
201
  minLengthRuleError: string;
197
202
  maxLengthRuleError: string;
198
203
  integerRuleError: string;
204
+ emailRuleError: string;
199
205
  lessEqualRuleError: string;
200
206
  greaterEqualRuleError: string;
201
207
  lessThanRuleError: string;
@@ -1,5 +1,5 @@
1
1
  import { App as AppType, Component } from 'vue';
2
- import { default as App } from './App.vue';
2
+ import { default as App } from './app/App.vue';
3
3
  import { PartialDeep } from 'pangea-helpers';
4
4
  import { AppConfig, AppOptions, AppOptionsStore } from './types';
5
5
 
@@ -11,14 +11,12 @@ type InstallConfig = {
11
11
  declare function install(app: AppType, appConfig: AppConfig, config?: InstallConfig): void;
12
12
  export default install;
13
13
  export { App };
14
- export * from './alert-danger';
15
- export * from './alert-info';
16
14
  export * from './api';
15
+ export * from './app';
17
16
  export * from './composables';
18
17
  export * from './helpers';
19
18
  export * from './i18n';
20
19
  export * from './models';
21
- export * from './notifications';
22
20
  export * from './resources';
23
21
  export * from './router';
24
22
  export * from './stores';
@@ -4,6 +4,7 @@ declare const _default: {
4
4
  minLengthRuleError: string;
5
5
  maxLengthRuleError: string;
6
6
  integerRuleError: string;
7
+ emailRuleError: string;
7
8
  lessEqualRuleError: string;
8
9
  greaterEqualRuleError: string;
9
10
  lessThanRuleError: string;
@@ -3,6 +3,7 @@ export declare const idRequiredRule: import('@vuelidate/core').ValidationRuleWit
3
3
  export declare const minLengthRule: (length: number) => import('@vuelidate/core').ValidationRuleWithParams<object, any>;
4
4
  export declare const maxLengthRule: (length: number) => import('@vuelidate/core').ValidationRuleWithParams<object, any>;
5
5
  export declare const integerRule: import('@vuelidate/core').ValidationRuleWithParams<object, any>;
6
+ export declare const emailRule: import('@vuelidate/core').ValidationRuleWithParams<object, any>;
6
7
  export declare const greaterEqualRule: (number: number) => import('@vuelidate/core').ValidationRuleWithParams<object, any>;
7
8
  export declare const greaterThanRule: (number: number) => import('@vuelidate/core').ValidationRuleWithParams<object, any>;
8
9
  export declare const lessEqualRule: (number: number) => import('@vuelidate/core').ValidationRuleWithParams<object, any>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pangea-lib",
3
3
  "description": "",
4
- "version": "4.0.553",
4
+ "version": "4.0.555",
5
5
  "author": "Gianfranco Raselli",
6
6
  "license": "ISC",
7
7
  "homepage": "https://github.com/GianfrancoRaselli/pangea-lib#readme",
File without changes