pangea-lib 4.0.520 → 4.0.522
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 +1818 -1818
- package/dist/main.css +2 -2
- package/dist/main.es.js +43010 -42801
- package/dist/styles/helpers.styl +1 -0
- package/dist/types/components/_i18n/pga-dropdown.i18n.d.ts +6 -0
- package/dist/types/components/_i18n/pga-file.i18n.d.ts +7 -0
- package/dist/types/components/_i18n/pga-form.i18n.d.ts +2 -0
- package/dist/types/components/_i18n/pga-layout.i18n.d.ts +2 -0
- package/dist/types/components/_i18n/pga-modal.i18n.d.ts +1 -0
- package/dist/types/components/_i18n/pga-table.i18n.d.ts +2 -0
- package/dist/types/components/form/inputs/components/PgaInputRightButton.vue.d.ts +2 -0
- package/dist/types/components/image/PgaImage.vue.d.ts +9 -0
- package/dist/types/composables/index.d.ts +2 -0
- package/dist/types/composables/use-backdrop-close.composable.d.ts +9 -0
- package/dist/types/composables/use-input-aria.composable.d.ts +6 -0
- package/dist/types/i18n/i18n.d.ts +1387 -1
- package/dist/types/i18n/messages/index.d.ts +22 -0
- package/dist/types/notifications/notifications.i18n.d.ts +3 -0
- package/package.json +1 -1
|
@@ -29,6 +29,9 @@ declare const _default: {
|
|
|
29
29
|
success: string;
|
|
30
30
|
warning: string;
|
|
31
31
|
danger: string;
|
|
32
|
+
closeAriaLabel: string;
|
|
33
|
+
pauseAriaLabel: string;
|
|
34
|
+
resumeAriaLabel: string;
|
|
32
35
|
};
|
|
33
36
|
};
|
|
34
37
|
apiError: {
|
|
@@ -90,6 +93,11 @@ declare const _default: {
|
|
|
90
93
|
hide: string;
|
|
91
94
|
};
|
|
92
95
|
};
|
|
96
|
+
pgaDropdown: {
|
|
97
|
+
es: {
|
|
98
|
+
triggerAriaLabel: string;
|
|
99
|
+
};
|
|
100
|
+
};
|
|
93
101
|
pgaEditor: {
|
|
94
102
|
es: {
|
|
95
103
|
saveBtn: string;
|
|
@@ -104,6 +112,13 @@ declare const _default: {
|
|
|
104
112
|
pgaFile: {
|
|
105
113
|
es: {
|
|
106
114
|
selectImages: string;
|
|
115
|
+
uploadImageAriaLabel: string;
|
|
116
|
+
deleteImageAriaLabel: string;
|
|
117
|
+
imageViewerAriaLabel: string;
|
|
118
|
+
imageNumberAlt: string;
|
|
119
|
+
closeViewerAriaLabel: string;
|
|
120
|
+
previousImageAriaLabel: string;
|
|
121
|
+
nextImageAriaLabel: string;
|
|
107
122
|
confirmDeleteImage: string;
|
|
108
123
|
maxImagesQuantityAlert: string;
|
|
109
124
|
selectVideos: string;
|
|
@@ -127,6 +142,8 @@ declare const _default: {
|
|
|
127
142
|
noResultsText: string;
|
|
128
143
|
clearSelectionAriaLabel: string;
|
|
129
144
|
openOptionsAriaLabel: string;
|
|
145
|
+
showPasswordAriaLabel: string;
|
|
146
|
+
clearValueAriaLabel: string;
|
|
130
147
|
selectPlaceholder: string;
|
|
131
148
|
};
|
|
132
149
|
};
|
|
@@ -135,6 +152,8 @@ declare const _default: {
|
|
|
135
152
|
header: {
|
|
136
153
|
switchToLightMode: string;
|
|
137
154
|
switchToDarkMode: string;
|
|
155
|
+
goBackAriaLabel: string;
|
|
156
|
+
menuAriaLabel: string;
|
|
138
157
|
};
|
|
139
158
|
footer: {
|
|
140
159
|
allRightsReserved: string;
|
|
@@ -151,15 +170,18 @@ declare const _default: {
|
|
|
151
170
|
es: {
|
|
152
171
|
cancelBtn: string;
|
|
153
172
|
acceptBtn: string;
|
|
173
|
+
closeAriaLabel: string;
|
|
154
174
|
};
|
|
155
175
|
};
|
|
156
176
|
pgaTable: {
|
|
157
177
|
es: {
|
|
158
178
|
columnTitleActions: string;
|
|
159
179
|
selectAllBtn: string;
|
|
180
|
+
selectRowAriaLabel: string;
|
|
160
181
|
withTheSelectedItemsText: string;
|
|
161
182
|
filtersBtn: string;
|
|
162
183
|
filtersSidebarTitle: string;
|
|
184
|
+
closeFiltersAriaLabel: string;
|
|
163
185
|
columnsBtn: string;
|
|
164
186
|
columnDefaultTitle: string;
|
|
165
187
|
searchBtn: string;
|