@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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
# 4.7.4 (2022-01-28)
|
|
2
|
+
|
|
3
|
+
- Added punctuation to the empty state text for the definition list and description list components. [#276](https://github.com/blackbaud/skyux-layout/pull/276)
|
|
4
|
+
|
|
1
5
|
# 4.7.3 (2021-08-25)
|
|
2
6
|
|
|
3
7
|
- Fixed the peer dependencies to include `@skyux/router` to support the `skyHref` directive. [#239](https://github.com/blackbaud/skyux-layout/pull/239)
|
|
@@ -556,7 +556,7 @@
|
|
|
556
556
|
|
|
557
557
|
var SkyLayoutResourcesProvider = /** @class */ (function () {
|
|
558
558
|
function SkyLayoutResourcesProvider() {
|
|
559
|
-
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" } };
|
|
559
|
+
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" } };
|
|
560
560
|
}
|
|
561
561
|
SkyLayoutResourcesProvider.prototype.getString = function (localeInfo, name) {
|
|
562
562
|
return i18n.getStringForLocale(this.resources, localeInfo.locale, name);
|