pangea-lib 2.11.556 → 2.11.558
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 +27 -27
- package/dist/main.es.js +1188 -1168
- package/dist/types/components/_i18n/{button/pgaDeleteButton.i18n.d.ts → pgaButton.i18n.d.ts} +4 -1
- package/dist/types/components/button/PgaBackButton.vue.d.ts +2 -0
- package/dist/types/components/button/PgaRemoveButton.vue.d.ts +2 -0
- package/dist/types/components/index.d.ts +2 -0
- package/dist/types/i18n/all-messages.d.ts +9 -16
- package/dist/types/i18n/i18n.d.ts +28 -49
- package/package.json +1 -1
- package/dist/types/components/_i18n/button/pgaEditButton.i18n.d.ts +0 -6
- package/dist/types/components/_i18n/button/pgaLogoutButton.i18n.d.ts +0 -6
|
@@ -8,12 +8,14 @@ export { default as PgaModal } from './PgaModal.vue';
|
|
|
8
8
|
export { default as PgaSeparator } from './PgaSeparator.vue';
|
|
9
9
|
export { default as PgaSpinner } from './PgaSpinner.vue';
|
|
10
10
|
export { default as PgaUserMenu } from './PgaUserMenu.vue';
|
|
11
|
+
export { default as PgaBackButton } from './button/PgaBackButton.vue';
|
|
11
12
|
export { default as PgaButton } from './button/PgaButton.vue';
|
|
12
13
|
export { default as PgaButtonLink } from './button/PgaButtonLink.vue';
|
|
13
14
|
export { default as PgaDeleteButton } from './button/PgaDeleteButton.vue';
|
|
14
15
|
export { default as PgaEditButton } from './button/PgaEditButton.vue';
|
|
15
16
|
export { default as PgaLink } from './button/PgaLink.vue';
|
|
16
17
|
export { default as PgaLogoutButton } from './button/PgaLogoutButton.vue';
|
|
18
|
+
export { default as PgaRemoveButton } from './button/PgaRemoveButton.vue';
|
|
17
19
|
export { default as PgaChartBar } from './chart/PgaChartBar.vue';
|
|
18
20
|
export { default as PgaDisplayBarcodes } from './display/PgaDisplayBarcodes.vue';
|
|
19
21
|
export { default as PgaDisplayDatetime } from './display/PgaDisplayDatetime.vue';
|
|
@@ -6,22 +6,6 @@ declare const _default: {
|
|
|
6
6
|
acceptBtn: string;
|
|
7
7
|
};
|
|
8
8
|
};
|
|
9
|
-
pgaDeleteButton: {
|
|
10
|
-
es: {
|
|
11
|
-
text: string;
|
|
12
|
-
confirmDeleteText: string;
|
|
13
|
-
};
|
|
14
|
-
};
|
|
15
|
-
pgaEditButton: {
|
|
16
|
-
es: {
|
|
17
|
-
text: string;
|
|
18
|
-
};
|
|
19
|
-
};
|
|
20
|
-
pgaLogoutButton: {
|
|
21
|
-
es: {
|
|
22
|
-
logoutBtn: string;
|
|
23
|
-
};
|
|
24
|
-
};
|
|
25
9
|
pgaDisplayNoItems: {
|
|
26
10
|
es: {
|
|
27
11
|
noItemsText: string;
|
|
@@ -71,6 +55,15 @@ declare const _default: {
|
|
|
71
55
|
withTheSelectedItemsText: string;
|
|
72
56
|
};
|
|
73
57
|
};
|
|
58
|
+
pgaButton: {
|
|
59
|
+
es: {
|
|
60
|
+
backBtn: string;
|
|
61
|
+
deleteBtn: string;
|
|
62
|
+
confirmDeleteText: string;
|
|
63
|
+
editBtn: string;
|
|
64
|
+
logoutBtn: string;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
74
67
|
pgaModal: {
|
|
75
68
|
es: {
|
|
76
69
|
cancelBtn: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const getLanguage: () => "es", setLanguage: (language: "es") => void, useI18n: <FN extends "alert" | "
|
|
1
|
+
export declare const getLanguage: () => "es", setLanguage: (language: "es") => void, useI18n: <FN extends "alert" | "pgaDisplayNoItems" | "pgaDatePicker" | "pgaInputFile" | "pgaInputGroup" | "pgaLoginForm" | "pgaSelect" | "pgaImage" | "pgaTable" | "pgaButton" | "pgaModal" | "notifications" | "validations", MP extends void | import('pangea-helpers').ExtractPrefixes<{
|
|
2
2
|
alert: {
|
|
3
3
|
es: {
|
|
4
4
|
alertTitle: string;
|
|
@@ -6,22 +6,6 @@ export declare const getLanguage: () => "es", setLanguage: (language: "es") => v
|
|
|
6
6
|
acceptBtn: string;
|
|
7
7
|
};
|
|
8
8
|
};
|
|
9
|
-
pgaDeleteButton: {
|
|
10
|
-
es: {
|
|
11
|
-
text: string;
|
|
12
|
-
confirmDeleteText: string;
|
|
13
|
-
};
|
|
14
|
-
};
|
|
15
|
-
pgaEditButton: {
|
|
16
|
-
es: {
|
|
17
|
-
text: string;
|
|
18
|
-
};
|
|
19
|
-
};
|
|
20
|
-
pgaLogoutButton: {
|
|
21
|
-
es: {
|
|
22
|
-
logoutBtn: string;
|
|
23
|
-
};
|
|
24
|
-
};
|
|
25
9
|
pgaDisplayNoItems: {
|
|
26
10
|
es: {
|
|
27
11
|
noItemsText: string;
|
|
@@ -71,6 +55,15 @@ export declare const getLanguage: () => "es", setLanguage: (language: "es") => v
|
|
|
71
55
|
withTheSelectedItemsText: string;
|
|
72
56
|
};
|
|
73
57
|
};
|
|
58
|
+
pgaButton: {
|
|
59
|
+
es: {
|
|
60
|
+
backBtn: string;
|
|
61
|
+
deleteBtn: string;
|
|
62
|
+
confirmDeleteText: string;
|
|
63
|
+
editBtn: string;
|
|
64
|
+
logoutBtn: string;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
74
67
|
pgaModal: {
|
|
75
68
|
es: {
|
|
76
69
|
cancelBtn: string;
|
|
@@ -102,22 +95,6 @@ export declare const getLanguage: () => "es", setLanguage: (language: "es") => v
|
|
|
102
95
|
acceptBtn: string;
|
|
103
96
|
};
|
|
104
97
|
};
|
|
105
|
-
pgaDeleteButton: {
|
|
106
|
-
es: {
|
|
107
|
-
text: string;
|
|
108
|
-
confirmDeleteText: string;
|
|
109
|
-
};
|
|
110
|
-
};
|
|
111
|
-
pgaEditButton: {
|
|
112
|
-
es: {
|
|
113
|
-
text: string;
|
|
114
|
-
};
|
|
115
|
-
};
|
|
116
|
-
pgaLogoutButton: {
|
|
117
|
-
es: {
|
|
118
|
-
logoutBtn: string;
|
|
119
|
-
};
|
|
120
|
-
};
|
|
121
98
|
pgaDisplayNoItems: {
|
|
122
99
|
es: {
|
|
123
100
|
noItemsText: string;
|
|
@@ -167,6 +144,15 @@ export declare const getLanguage: () => "es", setLanguage: (language: "es") => v
|
|
|
167
144
|
withTheSelectedItemsText: string;
|
|
168
145
|
};
|
|
169
146
|
};
|
|
147
|
+
pgaButton: {
|
|
148
|
+
es: {
|
|
149
|
+
backBtn: string;
|
|
150
|
+
deleteBtn: string;
|
|
151
|
+
confirmDeleteText: string;
|
|
152
|
+
editBtn: string;
|
|
153
|
+
logoutBtn: string;
|
|
154
|
+
};
|
|
155
|
+
};
|
|
170
156
|
pgaModal: {
|
|
171
157
|
es: {
|
|
172
158
|
cancelBtn: string;
|
|
@@ -198,22 +184,6 @@ export declare const getLanguage: () => "es", setLanguage: (language: "es") => v
|
|
|
198
184
|
acceptBtn: string;
|
|
199
185
|
};
|
|
200
186
|
};
|
|
201
|
-
pgaDeleteButton: {
|
|
202
|
-
es: {
|
|
203
|
-
text: string;
|
|
204
|
-
confirmDeleteText: string;
|
|
205
|
-
};
|
|
206
|
-
};
|
|
207
|
-
pgaEditButton: {
|
|
208
|
-
es: {
|
|
209
|
-
text: string;
|
|
210
|
-
};
|
|
211
|
-
};
|
|
212
|
-
pgaLogoutButton: {
|
|
213
|
-
es: {
|
|
214
|
-
logoutBtn: string;
|
|
215
|
-
};
|
|
216
|
-
};
|
|
217
187
|
pgaDisplayNoItems: {
|
|
218
188
|
es: {
|
|
219
189
|
noItemsText: string;
|
|
@@ -263,6 +233,15 @@ export declare const getLanguage: () => "es", setLanguage: (language: "es") => v
|
|
|
263
233
|
withTheSelectedItemsText: string;
|
|
264
234
|
};
|
|
265
235
|
};
|
|
236
|
+
pgaButton: {
|
|
237
|
+
es: {
|
|
238
|
+
backBtn: string;
|
|
239
|
+
deleteBtn: string;
|
|
240
|
+
confirmDeleteText: string;
|
|
241
|
+
editBtn: string;
|
|
242
|
+
logoutBtn: string;
|
|
243
|
+
};
|
|
244
|
+
};
|
|
266
245
|
pgaModal: {
|
|
267
246
|
es: {
|
|
268
247
|
cancelBtn: string;
|
package/package.json
CHANGED