@brightspace-ui/core 2.42.3 → 2.42.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.
@@ -3,6 +3,11 @@ import { css } from 'lit';
3
3
  import { dedupeMixin } from '@open-wc/dedupe-mixin';
4
4
  import { RtlMixin } from '../../mixins/rtl-mixin.js';
5
5
 
6
+ // DE50056: starting in Safari 16, the pulsing animation causes FACE
7
+ // (and possibly elsewhere) to render a blank page
8
+ const isSafari = /^((?!chrome|android).)*safari/i.test(navigator.userAgent);
9
+ const animation = isSafari ? css`none` : css`loadingPulse 1.8s linear infinite`;
10
+
6
11
  export const skeletonStyles = css`
7
12
  @keyframes loadingPulse {
8
13
  0% { background-color: var(--d2l-color-sylvite); }
@@ -14,7 +19,7 @@ export const skeletonStyles = css`
14
19
  opacity: 0.999;
15
20
  }
16
21
  :host([skeleton]) .d2l-skeletize::before {
17
- animation: loadingPulse 1.8s linear infinite;
22
+ animation: ${animation};
18
23
  background-color: var(--d2l-color-sylvite);
19
24
  border-radius: 0.2rem;
20
25
  bottom: 0;
package/lang/ar.js CHANGED
@@ -92,7 +92,7 @@ export default {
92
92
  "components.more-less.more": "المزيد",
93
93
  "components.overflow-group.moreActions": "مزيد من الإجراءات",
94
94
  "components.pager-load-more.action": "تحميل {count} إضافي",
95
- "components.pager-load-more.info": "{totalCount, plural, one {{showingCount} of {totalCountFormatted} item} other {{showingCount} of {totalCountFormatted} items}}",
95
+ "components.pager-load-more.info": "{totalCount, plural, one {{showingCount} من أصل {totalCountFormatted} من العناصر} other {{showingCount} من أصل {totalCountFormatted} من العناصر}}",
96
96
  "components.pager-load-more.status-loading": "تحميل المزيد من المواد",
97
97
  "components.selection.action-hint": "حدد مادة لتنفيذ هذا الإجراء.",
98
98
  "components.selection.select-all": "تحديد الكل",
package/lang/da.js CHANGED
@@ -92,7 +92,7 @@ export default {
92
92
  "components.more-less.more": "flere",
93
93
  "components.overflow-group.moreActions": "Flere handlinger",
94
94
  "components.pager-load-more.action": "Indlæs {count} mere",
95
- "components.pager-load-more.info": "{totalCount, plural, one {{showingCount} of {totalCountFormatted} item} other {{showingCount} of {totalCountFormatted} items}}",
95
+ "components.pager-load-more.info": "{totalCount, plural, one {{showingCount} af {totalCountFormatted} element} other {{showingCount} af {totalCountFormatted} elementer}}",
96
96
  "components.pager-load-more.status-loading": "Indlæser flere elementer",
97
97
  "components.selection.action-hint": "Vælg et element for at udføre denne handling.",
98
98
  "components.selection.select-all": "Vælg alle",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "2.42.3",
3
+ "version": "2.42.4",
4
4
  "description": "A collection of accessible, free, open-source web components for building Brightspace applications",
5
5
  "type": "module",
6
6
  "repository": "https://github.com/BrightspaceUI/core.git",