@brightspace-ui/core 2.56.0 → 2.57.0

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.
@@ -407,14 +407,19 @@ export const DialogMixin = superclass => class extends RtlMixin(superclass) {
407
407
  if (!activeElement
408
408
  || !isComposedAncestor(dialog, activeElement)
409
409
  || !activeElement.classList.contains('focus-visible')) {
410
- this._focusInitial();
410
+ // wait till the dialog is visible for Safari
411
+ requestAnimationFrame(() => this._focusInitial());
411
412
  }
412
413
 
413
- if (!reduceMotion) await animPromise;
414
+ // if not animating, we need to wait a frame before dispatching due to focus rAF above
415
+ if (reduceMotion) await new Promise(resolve => requestAnimationFrame(resolve));
416
+ else await animPromise;
417
+
414
418
  /** Dispatched when the dialog is opened */
415
419
  this.dispatchEvent(new CustomEvent(
416
420
  'd2l-dialog-open', { bubbles: true, composed: true }
417
421
  ));
422
+
418
423
  }, 0);
419
424
 
420
425
  }
@@ -36,6 +36,12 @@ An object property list can be defined using `d2l-object-property-list` and a co
36
36
  </d2l-object-property-list>
37
37
  ```
38
38
 
39
+ ### Properties
40
+
41
+ | Property | Type | Description |
42
+ |--|--|--|
43
+ | `skeleton-count` | Number | Number of skeleton items to insert if in skeleton mode |
44
+
39
45
  ### Word wrap
40
46
 
41
47
  The object property list is designed to wrap in an inline manner if the items are wider than the container.
@@ -17,7 +17,7 @@
17
17
 
18
18
  <h2>Object Property List: Single item</h2>
19
19
 
20
- <d2l-demo-snippet>
20
+ <d2l-demo-snippet overflow-hidden>
21
21
  <template>
22
22
  <d2l-object-property-list>
23
23
  <d2l-object-property-list-item text="Example item"></d2l-object-property-list-item>
@@ -27,7 +27,7 @@
27
27
 
28
28
  <h2>Object Property List: All item variants</h2>
29
29
 
30
- <d2l-demo-snippet>
30
+ <d2l-demo-snippet overflow-hidden>
31
31
  <template>
32
32
  <d2l-object-property-list>
33
33
  <d2l-object-property-list-item text="Example item"></d2l-object-property-list-item>
@@ -40,7 +40,7 @@
40
40
 
41
41
  <h2>Object Property List: Long items to demonstrate word-wrap</h2>
42
42
 
43
- <d2l-demo-snippet>
43
+ <d2l-demo-snippet overflow-hidden>
44
44
  <template>
45
45
  <d2l-object-property-list>
46
46
  <d2l-object-property-list-item icon="tier1:grade" text="Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci repellat cum totam! Enim, sunt."></d2l-object-property-list-item>
@@ -49,6 +49,14 @@
49
49
  </template>
50
50
  </d2l-demo-snippet>
51
51
 
52
+ <h2>Object Property List: Skeleton item count set</h2>
53
+
54
+ <d2l-demo-snippet overflow-hidden>
55
+ <template>
56
+ <d2l-object-property-list skeleton-count=3></d2l-object-property-list>
57
+ </template>
58
+ </d2l-demo-snippet>
59
+
52
60
  </d2l-demo-page>
53
61
  </body>
54
62
  </html>
@@ -31,21 +31,23 @@ class ObjectPropertyListItemLink extends ObjectPropertyListItem {
31
31
  static get styles() {
32
32
  return [
33
33
  ...super.styles,
34
- linkStyles,
34
+ linkStyles
35
35
  ];
36
36
  }
37
37
 
38
38
  render() {
39
39
  return html`
40
40
  ${this._renderIcon()}
41
- <a
42
- ?download="${this.download}"
43
- class="d2l-link"
44
- href="${ifDefined(this.href)}"
45
- target="${ifDefined(this.target)}"
46
- >
47
- ${this.text}
48
- </a>
41
+ ${!this.skeleton ? html`
42
+ <a
43
+ ?download="${this.download}"
44
+ class="d2l-link"
45
+ href="${ifDefined(this.href)}"
46
+ target="${ifDefined(this.target)}"
47
+ >
48
+ ${this._renderText()}
49
+ </a>
50
+ ` : this._renderText()}
49
51
  ${this._renderSeparator()}
50
52
  `;
51
53
  }
@@ -4,12 +4,13 @@ import { css, html, LitElement, nothing } from 'lit';
4
4
  import { getSeparator } from '@brightspace-ui/intl/lib/list.js';
5
5
  import { offscreenStyles } from '../offscreen/offscreen.js';
6
6
  import { RtlMixin } from '../../mixins/rtl-mixin.js';
7
+ import { SkeletonMixin } from '../skeleton/skeleton-mixin.js';
7
8
 
8
9
  /**
9
10
  * A single object property, to be used within an object-property-list,
10
11
  * with an optional icon.
11
12
  */
12
- export class ObjectPropertyListItem extends RtlMixin(LitElement) {
13
+ export class ObjectPropertyListItem extends SkeletonMixin(RtlMixin(LitElement)) {
13
14
  static get properties() {
14
15
  return {
15
16
  /**
@@ -26,7 +27,7 @@ export class ObjectPropertyListItem extends RtlMixin(LitElement) {
26
27
  }
27
28
 
28
29
  static get styles() {
29
- return [offscreenStyles, css`
30
+ return [super.styles, offscreenStyles, css`
30
31
  d2l-icon {
31
32
  height: 0.9rem;
32
33
  width: 0.9rem;
@@ -44,19 +45,29 @@ export class ObjectPropertyListItem extends RtlMixin(LitElement) {
44
45
  :host([dir="rtl"]) .item-icon {
45
46
  margin: -0.1rem 0 0 0.3rem;
46
47
  }
48
+ :host([skeleton]) d2l-icon {
49
+ color: var(--d2l-color-sylvite);
50
+ }
51
+ :host([skeleton]) .d2l-skeletize {
52
+ display: inline-block;
53
+ max-width: 80%;
54
+ overflow: hidden;
55
+ vertical-align: middle;
56
+ white-space: nowrap;
57
+ }
47
58
  `];
48
59
  }
49
60
 
50
61
  render() {
51
62
  return html`
52
63
  ${this._renderIcon()}
53
- <span>${this.text}</span>
64
+ ${this._renderText()}
54
65
  ${this._renderSeparator()}
55
66
  `;
56
67
  }
57
68
 
58
69
  _renderIcon() {
59
- return this.icon ? html`<d2l-icon icon="${this.icon}" class="item-icon"></d2l-icon>` : nothing;
70
+ return this.icon && !this.skeleton ? html`<d2l-icon icon="${this.icon}" class="item-icon"></d2l-icon>` : nothing;
60
71
  }
61
72
 
62
73
  _renderSeparator() {
@@ -67,6 +78,10 @@ export class ObjectPropertyListItem extends RtlMixin(LitElement) {
67
78
  </span>
68
79
  `;
69
80
  }
81
+
82
+ _renderText() {
83
+ return html`<span class="d2l-skeletize" aria-hidden="${this.skeleton ? 'true' : 'false'}">${this.text}</span>`;
84
+ }
70
85
  }
71
86
 
72
87
  customElements.define('d2l-object-property-list-item', ObjectPropertyListItem);
@@ -1,27 +1,45 @@
1
- import { css, html, LitElement } from 'lit';
1
+ import './object-property-list-item.js';
2
+ import { css, html, LitElement, nothing } from 'lit';
2
3
  import { bodySmallStyles } from '../typography/styles.js';
4
+ import { LocalizeCoreElement } from '../../helpers/localize-core-element.js';
5
+ import { SkeletonMixin } from '../skeleton/skeleton-mixin.js';
3
6
 
4
7
  /**
5
8
  * A dot-separated list of object properties.
6
9
  * @slot - Items of the type d2l-object-property-list-item* to be added to the container
7
10
  */
8
- class ObjectPropertyList extends LitElement {
11
+ class ObjectPropertyList extends LocalizeCoreElement(SkeletonMixin(LitElement)) {
12
+ static get properties() {
13
+ return {
14
+ /**
15
+ * Number of skeleton items to insert
16
+ * @type {number}
17
+ */
18
+ skeletonCount: { type: Number, attribute: 'skeleton-count' },
19
+ };
20
+ }
21
+
9
22
  static get styles() {
10
- return [bodySmallStyles, css`
23
+ return [super.styles, bodySmallStyles, css`
11
24
  :host, slot {
12
25
  display: block;
13
26
  }
14
27
  :host([hidden]) {
15
28
  display: none;
16
29
  }
17
- ::slotted(:last-child) {
30
+ ::slotted(:last-child), slot :last-child {
18
31
  --d2l-object-property-list-item-separator-display: none;
19
32
  }
20
33
  `];
21
34
  }
22
35
 
23
36
  render() {
24
- return html`<slot class="d2l-body-small"></slot>`;
37
+
38
+ const slotContents = this.skeleton && this.skeletonCount > 0 ? [...Array(this.skeletonCount)].map(() => html`
39
+ <d2l-object-property-list-item text="${this.localize('components.object-property-list.item-placeholder-text')}" skeleton></d2l-object-property-list-item>
40
+ `) : nothing;
41
+
42
+ return html`<slot class="d2l-body-small">${slotContents}</slot>`;
25
43
  }
26
44
  }
27
45
 
@@ -1,17 +1,18 @@
1
1
  import '../colors/colors.js';
2
2
  import '../tooltip/tooltip.js';
3
- import { css, html, LitElement } from 'lit';
3
+ import { css, html, LitElement, nothing } from 'lit';
4
4
  import { bodySmallStyles } from '../typography/styles.js';
5
5
  import { classMap } from 'lit/directives/class-map.js';
6
6
  import { FocusMixin } from '../../mixins/focus-mixin.js';
7
7
  import { FocusVisiblePolyfillMixin } from '../../mixins/focus-visible-polyfill-mixin.js';
8
8
  import { ifDefined } from 'lit/directives/if-defined.js';
9
+ import { SkeletonMixin } from '../skeleton/skeleton-mixin.js';
9
10
 
10
11
  /**
11
12
  * A component used to display additional information when users focus or hover over some text.
12
13
  * @slot - Default content placed inside of the tooltip
13
14
  */
14
- class TooltipHelp extends FocusMixin(FocusVisiblePolyfillMixin(LitElement)) {
15
+ class TooltipHelp extends SkeletonMixin(FocusMixin(FocusVisiblePolyfillMixin(LitElement))) {
15
16
 
16
17
  static get properties() {
17
18
  return {
@@ -38,7 +39,7 @@ class TooltipHelp extends FocusMixin(FocusVisiblePolyfillMixin(LitElement)) {
38
39
  }
39
40
 
40
41
  static get styles() {
41
- return [bodySmallStyles, css`
42
+ return [super.styles, bodySmallStyles, css`
42
43
  :host {
43
44
  display: inline-block;
44
45
  }
@@ -76,6 +77,9 @@ class TooltipHelp extends FocusMixin(FocusVisiblePolyfillMixin(LitElement)) {
76
77
  d2l-tooltip {
77
78
  cursor: text;
78
79
  }
80
+ :host([skeleton]) #d2l-tooltip-help-text.d2l-skeletize {
81
+ text-decoration: none;
82
+ }
79
83
  `];
80
84
  }
81
85
 
@@ -100,15 +104,18 @@ class TooltipHelp extends FocusMixin(FocusVisiblePolyfillMixin(LitElement)) {
100
104
 
101
105
  render() {
102
106
  const classes = {
103
- 'd2l-body-small': !this.inheritFontStyle
107
+ 'd2l-body-small': !this.inheritFontStyle,
108
+ 'd2l-skeletize': true
104
109
  };
105
110
  return html`
106
111
  <button id="d2l-tooltip-help-text" class="${classMap(classes)}" type="button">
107
112
  ${this.text}
108
113
  </button>
109
- <d2l-tooltip for="d2l-tooltip-help-text" delay="0" offset="13" position="${ifDefined(this.position)}" ?showing="${this.showing}">
110
- <slot></slot>
111
- </d2l-tooltip>
114
+ ${!this.skeleton ? html`
115
+ <d2l-tooltip for="d2l-tooltip-help-text" delay="0" offset="13" position="${ifDefined(this.position)}" ?showing="${this.showing}">
116
+ <slot></slot>
117
+ </d2l-tooltip>
118
+ ` : nothing }
112
119
  `;
113
120
  }
114
121
 
@@ -9007,6 +9007,12 @@
9007
9007
  "name": "text",
9008
9008
  "description": "REQUIRED: Text to display on the item",
9009
9009
  "type": "string"
9010
+ },
9011
+ {
9012
+ "name": "skeleton",
9013
+ "description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
9014
+ "type": "boolean",
9015
+ "default": "false"
9010
9016
  }
9011
9017
  ],
9012
9018
  "properties": [
@@ -9039,6 +9045,13 @@
9039
9045
  "attribute": "text",
9040
9046
  "description": "REQUIRED: Text to display on the item",
9041
9047
  "type": "string"
9048
+ },
9049
+ {
9050
+ "name": "skeleton",
9051
+ "attribute": "skeleton",
9052
+ "description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
9053
+ "type": "boolean",
9054
+ "default": "false"
9042
9055
  }
9043
9056
  ]
9044
9057
  },
@@ -9056,6 +9069,12 @@
9056
9069
  "name": "text",
9057
9070
  "description": "REQUIRED: Text to display on the item",
9058
9071
  "type": "string"
9072
+ },
9073
+ {
9074
+ "name": "skeleton",
9075
+ "description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
9076
+ "type": "boolean",
9077
+ "default": "false"
9059
9078
  }
9060
9079
  ],
9061
9080
  "properties": [
@@ -9070,6 +9089,13 @@
9070
9089
  "attribute": "text",
9071
9090
  "description": "REQUIRED: Text to display on the item",
9072
9091
  "type": "string"
9092
+ },
9093
+ {
9094
+ "name": "skeleton",
9095
+ "attribute": "skeleton",
9096
+ "description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
9097
+ "type": "boolean",
9098
+ "default": "false"
9073
9099
  }
9074
9100
  ]
9075
9101
  },
@@ -9077,6 +9103,38 @@
9077
9103
  "name": "d2l-object-property-list",
9078
9104
  "path": "./components/object-property-list/object-property-list.js",
9079
9105
  "description": "A dot-separated list of object properties.",
9106
+ "attributes": [
9107
+ {
9108
+ "name": "skeleton-count",
9109
+ "description": "Number of skeleton items to insert",
9110
+ "type": "number"
9111
+ },
9112
+ {
9113
+ "name": "skeleton",
9114
+ "description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
9115
+ "type": "boolean",
9116
+ "default": "false"
9117
+ }
9118
+ ],
9119
+ "properties": [
9120
+ {
9121
+ "name": "skeletonCount",
9122
+ "attribute": "skeleton-count",
9123
+ "description": "Number of skeleton items to insert",
9124
+ "type": "number"
9125
+ },
9126
+ {
9127
+ "name": "documentLocaleSettings",
9128
+ "default": "\"getDocumentLocaleSettings()\""
9129
+ },
9130
+ {
9131
+ "name": "skeleton",
9132
+ "attribute": "skeleton",
9133
+ "description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
9134
+ "type": "boolean",
9135
+ "default": "false"
9136
+ }
9137
+ ],
9080
9138
  "slots": [
9081
9139
  {
9082
9140
  "name": "",
@@ -10840,6 +10898,12 @@
10840
10898
  "description": "Allows this component to inherit certain font properties",
10841
10899
  "type": "boolean",
10842
10900
  "default": "false"
10901
+ },
10902
+ {
10903
+ "name": "skeleton",
10904
+ "description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
10905
+ "type": "boolean",
10906
+ "default": "false"
10843
10907
  }
10844
10908
  ],
10845
10909
  "properties": [
@@ -10866,6 +10930,13 @@
10866
10930
  "name": "showing",
10867
10931
  "type": "boolean",
10868
10932
  "default": "false"
10933
+ },
10934
+ {
10935
+ "name": "skeleton",
10936
+ "attribute": "skeleton",
10937
+ "description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
10938
+ "type": "boolean",
10939
+ "default": "false"
10869
10940
  }
10870
10941
  ],
10871
10942
  "slots": [
package/helpers/focus.js CHANGED
@@ -1,4 +1,4 @@
1
- import { findComposedAncestor, getComposedChildren, getComposedParent, getNextAncestorSibling, getPreviousAncestorSibling } from './dom.js';
1
+ import { findComposedAncestor, getComposedChildren, getComposedParent, getNextAncestorSibling, getPreviousAncestorSibling, isVisible } from './dom.js';
2
2
 
3
3
  const focusableElements = {
4
4
  a: true,
@@ -175,7 +175,7 @@ export function isFocusable(node, includeHidden, includeTabbablesOnly, includeDi
175
175
 
176
176
  if (_isFocusable && !includeHidden) {
177
177
  // only perform visibility check if absolutely necessary
178
- if (nodeName !== 'body' && node.offsetParent === null) return false;
178
+ if (nodeName !== 'body' && !isVisible(node)) return false;
179
179
  }
180
180
 
181
181
  return _isFocusable;
package/lang/ar.js CHANGED
@@ -90,6 +90,7 @@ export default {
90
90
  "components.meter-mixin.progressIndicator": "مؤشر التقدم",
91
91
  "components.more-less.less": "أقل",
92
92
  "components.more-less.more": "المزيد",
93
+ "components.object-property-list.item-placeholder-text": "Placeholder Item",
93
94
  "components.overflow-group.moreActions": "مزيد من الإجراءات",
94
95
  "components.pager-load-more.action": "تحميل {count} إضافي",
95
96
  "components.pager-load-more.info": "{totalCount, plural, one {{showingCount} من أصل {totalCountFormatted} من العناصر} other {{showingCount} من أصل {totalCountFormatted} من العناصر}}",
package/lang/cy.js CHANGED
@@ -90,6 +90,7 @@ export default {
90
90
  "components.meter-mixin.progressIndicator": "Dangosydd Cynnydd",
91
91
  "components.more-less.less": "llai",
92
92
  "components.more-less.more": "mwy",
93
+ "components.object-property-list.item-placeholder-text": "Placeholder Item",
93
94
  "components.overflow-group.moreActions": "Rhagor o Gamau Gweithredu",
94
95
  "components.pager-load-more.action": "Lwytho {count} Arall",
95
96
  "components.pager-load-more.info": "{totalCount, plural, one {{showingCount} o {totalCountFormatted} eitem} other {{showingCount} o {totalCountFormatted} eitem}}",
package/lang/da.js CHANGED
@@ -90,6 +90,7 @@ export default {
90
90
  "components.meter-mixin.progressIndicator": "Statusindikator",
91
91
  "components.more-less.less": "færre",
92
92
  "components.more-less.more": "flere",
93
+ "components.object-property-list.item-placeholder-text": "Placeholder Item",
93
94
  "components.overflow-group.moreActions": "Flere handlinger",
94
95
  "components.pager-load-more.action": "Indlæs {count} mere",
95
96
  "components.pager-load-more.info": "{totalCount, plural, one {{showingCount} af {totalCountFormatted} element} other {{showingCount} af {totalCountFormatted} elementer}}",
package/lang/de.js CHANGED
@@ -90,6 +90,7 @@ export default {
90
90
  "components.meter-mixin.progressIndicator": "Fortschrittsanzeige",
91
91
  "components.more-less.less": "Weniger",
92
92
  "components.more-less.more": "mehr",
93
+ "components.object-property-list.item-placeholder-text": "Placeholder Item",
93
94
  "components.overflow-group.moreActions": "Weitere Aktionen",
94
95
  "components.pager-load-more.action": "{count} weitere laden",
95
96
  "components.pager-load-more.info": "{totalCount, plural, one {{showingCount} von {totalCountFormatted} Element} other {{showingCount} von {totalCountFormatted} Elementen}}",
package/lang/en.js CHANGED
@@ -90,6 +90,7 @@ export default {
90
90
  "components.meter-mixin.progressIndicator": "Progress Indicator",
91
91
  "components.more-less.less": "less",
92
92
  "components.more-less.more": "more",
93
+ "components.object-property-list.item-placeholder-text": "Placeholder Item",
93
94
  "components.overflow-group.moreActions": "More Actions",
94
95
  "components.pager-load-more.action": "Load {count} More",
95
96
  "components.pager-load-more.info": "{totalCount, plural, one {{showingCount} of {totalCountFormatted} item} other {{showingCount} of {totalCountFormatted} items}}",
package/lang/es-es.js CHANGED
@@ -90,6 +90,7 @@ export default {
90
90
  "components.meter-mixin.progressIndicator": "Indicador de progreso",
91
91
  "components.more-less.less": "menos",
92
92
  "components.more-less.more": "más",
93
+ "components.object-property-list.item-placeholder-text": "Placeholder Item",
93
94
  "components.overflow-group.moreActions": "Más acciones",
94
95
  "components.pager-load-more.action": "Cargar {count} más",
95
96
  "components.pager-load-more.info": "{totalCount, plural, one {{showingCount} de {totalCountFormatted} elemento} other {{showingCount} de {totalCountFormatted} elemento}}",
package/lang/es.js CHANGED
@@ -90,6 +90,7 @@ export default {
90
90
  "components.meter-mixin.progressIndicator": "Indicador de progreso",
91
91
  "components.more-less.less": "menos",
92
92
  "components.more-less.more": "más",
93
+ "components.object-property-list.item-placeholder-text": "Placeholder Item",
93
94
  "components.overflow-group.moreActions": "Más acciones",
94
95
  "components.pager-load-more.action": "Cargar {count} más",
95
96
  "components.pager-load-more.info": "{totalCount, plural, one {{showingCount} de {totalCountFormatted} elemento} other {{showingCount} de {totalCountFormatted} elemento}}",
package/lang/fr-fr.js CHANGED
@@ -90,6 +90,7 @@ export default {
90
90
  "components.meter-mixin.progressIndicator": "Indicateur de progrès",
91
91
  "components.more-less.less": "moins",
92
92
  "components.more-less.more": "plus",
93
+ "components.object-property-list.item-placeholder-text": "Placeholder Item",
93
94
  "components.overflow-group.moreActions": "Plus d'actions",
94
95
  "components.pager-load-more.action": "Charger {count} supplémentaire(s)",
95
96
  "components.pager-load-more.info": "{totalCount, plural, one {{showingCount} sur {totalCountFormatted} élément} other {{showingCount} sur {totalCountFormatted} éléments}}",
package/lang/fr.js CHANGED
@@ -90,6 +90,7 @@ export default {
90
90
  "components.meter-mixin.progressIndicator": "Indicateur de progrès",
91
91
  "components.more-less.less": "moins",
92
92
  "components.more-less.more": "plus",
93
+ "components.object-property-list.item-placeholder-text": "Placeholder Item",
93
94
  "components.overflow-group.moreActions": "Plus d'actions",
94
95
  "components.pager-load-more.action": "Charger {count} de plus",
95
96
  "components.pager-load-more.info": "{totalCount, plural, one {{showingCount} de {totalCountFormatted} élément} other {{showingCount} de {totalCountFormatted} éléments}}",
package/lang/hi.js CHANGED
@@ -90,6 +90,7 @@ export default {
90
90
  "components.meter-mixin.progressIndicator": "प्रगति संकेतक",
91
91
  "components.more-less.less": "कम",
92
92
  "components.more-less.more": "अधिक",
93
+ "components.object-property-list.item-placeholder-text": "Placeholder Item",
93
94
  "components.overflow-group.moreActions": "अधिक क्रियाएँ",
94
95
  "components.pager-load-more.action": "{count} और लोड करें",
95
96
  "components.pager-load-more.info": "{totalCount, plural, one {{totalCountFormatted} में से {showingCount} आइटम} other {{totalCountFormatted} में से {showingCount} आइटम}}",
package/lang/ja.js CHANGED
@@ -90,6 +90,7 @@ export default {
90
90
  "components.meter-mixin.progressIndicator": "進捗状況インジケータ",
91
91
  "components.more-less.less": "減らす",
92
92
  "components.more-less.more": "増やす",
93
+ "components.object-property-list.item-placeholder-text": "Placeholder Item",
93
94
  "components.overflow-group.moreActions": "その他のアクション",
94
95
  "components.pager-load-more.action": "さらに {count} 件を読み込む",
95
96
  "components.pager-load-more.info": "{totalCount, plural, other {{showingCount}/{totalCountFormatted} 個の項目}}",
package/lang/ko.js CHANGED
@@ -90,6 +90,7 @@ export default {
90
90
  "components.meter-mixin.progressIndicator": "진도 표시기",
91
91
  "components.more-less.less": "축소",
92
92
  "components.more-less.more": "더 보기",
93
+ "components.object-property-list.item-placeholder-text": "Placeholder Item",
93
94
  "components.overflow-group.moreActions": "추가 작업",
94
95
  "components.pager-load-more.action": "{count}개 더 로드",
95
96
  "components.pager-load-more.info": "{totalCount, plural, other {{totalCountFormatted}개 항목 중 {showingCount}개}}",
package/lang/nl.js CHANGED
@@ -90,6 +90,7 @@ export default {
90
90
  "components.meter-mixin.progressIndicator": "Voortgangsindicator",
91
91
  "components.more-less.less": "minder",
92
92
  "components.more-less.more": "meer",
93
+ "components.object-property-list.item-placeholder-text": "Placeholder Item",
93
94
  "components.overflow-group.moreActions": "Meer acties",
94
95
  "components.pager-load-more.action": "Laad nog {count} extra",
95
96
  "components.pager-load-more.info": "{totalCount, plural, one {{showingCount} van {totalCountFormatted} artikel} other {{showingCount} van {totalCountFormatted} artikelen}}",
package/lang/pt.js CHANGED
@@ -90,6 +90,7 @@ export default {
90
90
  "components.meter-mixin.progressIndicator": "Indicador de progresso",
91
91
  "components.more-less.less": "menos",
92
92
  "components.more-less.more": "mais",
93
+ "components.object-property-list.item-placeholder-text": "Placeholder Item",
93
94
  "components.overflow-group.moreActions": "Mais ações",
94
95
  "components.pager-load-more.action": "Carregar mais {count}",
95
96
  "components.pager-load-more.info": "{totalCount, plural, one {{showingCount} de {totalCountFormatted} item} other {{showingCount} de {totalCountFormatted} itens}}",
package/lang/sv.js CHANGED
@@ -90,6 +90,7 @@ export default {
90
90
  "components.meter-mixin.progressIndicator": "Förloppsindikator",
91
91
  "components.more-less.less": "mindre",
92
92
  "components.more-less.more": "mer",
93
+ "components.object-property-list.item-placeholder-text": "Placeholder Item",
93
94
  "components.overflow-group.moreActions": "Fler åtgärder",
94
95
  "components.pager-load-more.action": "Läs in {count} till",
95
96
  "components.pager-load-more.info": "{totalCount, plural, one {{showingCount} av {totalCountFormatted} objekt} other {{showingCount} av {totalCountFormatted} objekt}}",
package/lang/tr.js CHANGED
@@ -90,6 +90,7 @@ export default {
90
90
  "components.meter-mixin.progressIndicator": "Gelişim Göstergesi",
91
91
  "components.more-less.less": "daha az",
92
92
  "components.more-less.more": "daha fazla",
93
+ "components.object-property-list.item-placeholder-text": "Placeholder Item",
93
94
  "components.overflow-group.moreActions": "Daha Fazla Eylem",
94
95
  "components.pager-load-more.action": "{count} Tane Daha Yükle",
95
96
  "components.pager-load-more.info": "{totalCount, plural, one {{showingCount} / {totalCountFormatted} öğe} other {{showingCount} / {totalCountFormatted} öğe}}",
package/lang/zh-cn.js CHANGED
@@ -90,6 +90,7 @@ export default {
90
90
  "components.meter-mixin.progressIndicator": "进度指示符",
91
91
  "components.more-less.less": "更少",
92
92
  "components.more-less.more": "更多",
93
+ "components.object-property-list.item-placeholder-text": "Placeholder Item",
93
94
  "components.overflow-group.moreActions": "更多操作",
94
95
  "components.pager-load-more.action": "再加载 {count} 个",
95
96
  "components.pager-load-more.info": "{totalCount, plural, other {{showingCount}/{totalCountFormatted} 项}}",
package/lang/zh-tw.js CHANGED
@@ -90,6 +90,7 @@ export default {
90
90
  "components.meter-mixin.progressIndicator": "進度指示器",
91
91
  "components.more-less.less": "較少",
92
92
  "components.more-less.more": "較多",
93
+ "components.object-property-list.item-placeholder-text": "Placeholder Item",
93
94
  "components.overflow-group.moreActions": "其他動作",
94
95
  "components.pager-load-more.action": "再載入 {count} 個",
95
96
  "components.pager-load-more.info": "{totalCount, plural, other {{showingCount} 項,共 {totalCountFormatted} 項}}",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "2.56.0",
3
+ "version": "2.57.0",
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",