@skyux/layout 4.7.3 → 4.7.4
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/CHANGELOG.md +4 -0
- package/bundles/skyux-layout.umd.js +1 -1
- package/bundles/skyux-layout.umd.js.map +1 -1
- package/bundles/skyux-layout.umd.min.js +1 -1
- package/bundles/skyux-layout.umd.min.js.map +1 -1
- package/esm2015/plugin-resources/layout-resources-provider.js +2 -2
- package/esm5/plugin-resources/layout-resources-provider.js +2 -2
- package/fesm2015/skyux-layout.js +1 -1
- package/fesm2015/skyux-layout.js.map +1 -1
- package/fesm5/skyux-layout.js +1 -1
- package/fesm5/skyux-layout.js.map +1 -1
- package/package.json +1 -1
- package/src/assets/locales/resources_en_US.json +2 -2
package/fesm5/skyux-layout.js
CHANGED
|
@@ -348,7 +348,7 @@ var SkyActionButtonModule = /** @class */ (function () {
|
|
|
348
348
|
|
|
349
349
|
var SkyLayoutResourcesProvider = /** @class */ (function () {
|
|
350
350
|
function SkyLayoutResourcesProvider() {
|
|
351
|
-
this.resources = { "EN-US": { "skyux_back_to_top": "Back to top", "skyux_card_checkbox_label": "Select card", "skyux_definition_list_none_found": "None found", "skyux_description_list_none_found": "None found", "skyux_inline_delete_assistive_text": "Are you sure you want to delete this item?", "skyux_inline_delete_cancel": "Cancel", "skyux_inline_delete_confirm_deletion": "Confirm deletion", "skyux_inline_delete_delete": "Delete", "skyux_text_expand_close_text": "Close", "skyux_text_expand_modal_title": "Expanded view", "skyux_text_expand_see_less": "See less", "skyux_text_expand_see_more": "See more" } };
|
|
351
|
+
this.resources = { "EN-US": { "skyux_back_to_top": "Back to top", "skyux_card_checkbox_label": "Select card", "skyux_definition_list_none_found": "None found.", "skyux_description_list_none_found": "None found.", "skyux_inline_delete_assistive_text": "Are you sure you want to delete this item?", "skyux_inline_delete_cancel": "Cancel", "skyux_inline_delete_confirm_deletion": "Confirm deletion", "skyux_inline_delete_delete": "Delete", "skyux_text_expand_close_text": "Close", "skyux_text_expand_modal_title": "Expanded view", "skyux_text_expand_see_less": "See less", "skyux_text_expand_see_more": "See more" } };
|
|
352
352
|
}
|
|
353
353
|
SkyLayoutResourcesProvider.prototype.getString = function (localeInfo, name) {
|
|
354
354
|
return getStringForLocale(this.resources, localeInfo.locale, name);
|