@brightspace-ui/core 2.56.1 → 2.58.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.
@@ -56,6 +56,7 @@ For text searches use `<d2l-input-search>`, which wraps the native `<input type=
56
56
  | Property | Type | Description |
57
57
  |---|---|---|
58
58
  | `label` | String, required | Accessible label for the input |
59
+ | `description` | String | Additional information communicated in the `aria-describedby` on the input |
59
60
  | `disabled` | Boolean | Disables the input |
60
61
  | `maxlength` | Number | Imposes an upper character limit |
61
62
  | `no-clear` | Boolean | Prevents the "clear" button from appearing |
@@ -82,4 +83,5 @@ To make your usage of `d2l-input-search` accessible, use the following property
82
83
 
83
84
  | Attribute | Description |
84
85
  |---|---|
86
+ | `description` | Use when label on input does not provide enough context. |
85
87
  | label | **REQUIRED** [Acts as a primary label on the input](https://www.w3.org/WAI/tutorials/forms/labels/). Not visible. |
@@ -16,6 +16,11 @@ class InputSearch extends FocusMixin(LocalizeCoreElement(RtlMixin(LitElement)))
16
16
 
17
17
  static get properties() {
18
18
  return {
19
+ /**
20
+ * Additional information communicated in the aria-describedby on the input
21
+ * @type {string}
22
+ */
23
+ description: { type: String, reflect: true },
19
24
  /**
20
25
  * Disables the input
21
26
  * @type {boolean}
@@ -115,6 +120,7 @@ class InputSearch extends FocusMixin(LocalizeCoreElement(RtlMixin(LitElement)))
115
120
  <d2l-input-text
116
121
  label="${ifDefined(this.label)}"
117
122
  label-hidden
123
+ description="${this.description}"
118
124
  ?disabled="${this.disabled}"
119
125
  @input="${this._handleInput}"
120
126
  @keypress="${this._handleInputKeyPress}"
@@ -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
 
@@ -5797,6 +5797,11 @@
5797
5797
  "path": "./components/inputs/input-search.js",
5798
5798
  "description": "This component wraps the native \"<input type=\"search\">\"\" element and is for text searching.",
5799
5799
  "attributes": [
5800
+ {
5801
+ "name": "description",
5802
+ "description": "Additional information communicated in the aria-describedby on the input",
5803
+ "type": "string"
5804
+ },
5800
5805
  {
5801
5806
  "name": "label",
5802
5807
  "description": "REQUIRED: Accessible label for the input",
@@ -5832,6 +5837,12 @@
5832
5837
  }
5833
5838
  ],
5834
5839
  "properties": [
5840
+ {
5841
+ "name": "description",
5842
+ "attribute": "description",
5843
+ "description": "Additional information communicated in the aria-describedby on the input",
5844
+ "type": "string"
5845
+ },
5835
5846
  {
5836
5847
  "name": "label",
5837
5848
  "attribute": "label",
@@ -9007,6 +9018,12 @@
9007
9018
  "name": "text",
9008
9019
  "description": "REQUIRED: Text to display on the item",
9009
9020
  "type": "string"
9021
+ },
9022
+ {
9023
+ "name": "skeleton",
9024
+ "description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
9025
+ "type": "boolean",
9026
+ "default": "false"
9010
9027
  }
9011
9028
  ],
9012
9029
  "properties": [
@@ -9039,6 +9056,13 @@
9039
9056
  "attribute": "text",
9040
9057
  "description": "REQUIRED: Text to display on the item",
9041
9058
  "type": "string"
9059
+ },
9060
+ {
9061
+ "name": "skeleton",
9062
+ "attribute": "skeleton",
9063
+ "description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
9064
+ "type": "boolean",
9065
+ "default": "false"
9042
9066
  }
9043
9067
  ]
9044
9068
  },
@@ -9056,6 +9080,12 @@
9056
9080
  "name": "text",
9057
9081
  "description": "REQUIRED: Text to display on the item",
9058
9082
  "type": "string"
9083
+ },
9084
+ {
9085
+ "name": "skeleton",
9086
+ "description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
9087
+ "type": "boolean",
9088
+ "default": "false"
9059
9089
  }
9060
9090
  ],
9061
9091
  "properties": [
@@ -9070,6 +9100,13 @@
9070
9100
  "attribute": "text",
9071
9101
  "description": "REQUIRED: Text to display on the item",
9072
9102
  "type": "string"
9103
+ },
9104
+ {
9105
+ "name": "skeleton",
9106
+ "attribute": "skeleton",
9107
+ "description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
9108
+ "type": "boolean",
9109
+ "default": "false"
9073
9110
  }
9074
9111
  ]
9075
9112
  },
@@ -9077,6 +9114,38 @@
9077
9114
  "name": "d2l-object-property-list",
9078
9115
  "path": "./components/object-property-list/object-property-list.js",
9079
9116
  "description": "A dot-separated list of object properties.",
9117
+ "attributes": [
9118
+ {
9119
+ "name": "skeleton-count",
9120
+ "description": "Number of skeleton items to insert",
9121
+ "type": "number"
9122
+ },
9123
+ {
9124
+ "name": "skeleton",
9125
+ "description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
9126
+ "type": "boolean",
9127
+ "default": "false"
9128
+ }
9129
+ ],
9130
+ "properties": [
9131
+ {
9132
+ "name": "skeletonCount",
9133
+ "attribute": "skeleton-count",
9134
+ "description": "Number of skeleton items to insert",
9135
+ "type": "number"
9136
+ },
9137
+ {
9138
+ "name": "documentLocaleSettings",
9139
+ "default": "\"getDocumentLocaleSettings()\""
9140
+ },
9141
+ {
9142
+ "name": "skeleton",
9143
+ "attribute": "skeleton",
9144
+ "description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
9145
+ "type": "boolean",
9146
+ "default": "false"
9147
+ }
9148
+ ],
9080
9149
  "slots": [
9081
9150
  {
9082
9151
  "name": "",
@@ -10840,6 +10909,12 @@
10840
10909
  "description": "Allows this component to inherit certain font properties",
10841
10910
  "type": "boolean",
10842
10911
  "default": "false"
10912
+ },
10913
+ {
10914
+ "name": "skeleton",
10915
+ "description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
10916
+ "type": "boolean",
10917
+ "default": "false"
10843
10918
  }
10844
10919
  ],
10845
10920
  "properties": [
@@ -10866,6 +10941,13 @@
10866
10941
  "name": "showing",
10867
10942
  "type": "boolean",
10868
10943
  "default": "false"
10944
+ },
10945
+ {
10946
+ "name": "skeleton",
10947
+ "attribute": "skeleton",
10948
+ "description": "Renders the input as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton)",
10949
+ "type": "boolean",
10950
+ "default": "false"
10869
10951
  }
10870
10952
  ],
10871
10953
  "slots": [
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.1",
3
+ "version": "2.58.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",