@ni/nimble-components 34.3.3 → 34.4.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.
@@ -18855,7 +18855,8 @@
18855
18855
  filterNoResultsLabel: 'No items found',
18856
18856
  loadingLabel: 'Loading…',
18857
18857
  scrollBackwardLabel: 'Scroll backward',
18858
- scrollForwardLabel: 'Scroll forward'
18858
+ scrollForwardLabel: 'Scroll forward',
18859
+ itemRemoveLabel: 'Remove'
18859
18860
  };
18860
18861
 
18861
18862
  const popupDismissLabel = DesignToken.create({
@@ -18902,6 +18903,10 @@
18902
18903
  name: 'scroll-forward-label',
18903
18904
  cssCustomPropertyName: null
18904
18905
  }).withDefault(coreLabelDefaults.scrollForwardLabel);
18906
+ const itemRemoveLabel = DesignToken.create({
18907
+ name: 'item-remove-label',
18908
+ cssCustomPropertyName: null
18909
+ }).withDefault(coreLabelDefaults.itemRemoveLabel);
18905
18910
 
18906
18911
  const template$H = (context, definition) => html `
18907
18912
  <div
@@ -25368,7 +25373,8 @@ so this becomes the fallback color for the slot */ ''}
25368
25373
  filterNoResults: filterNoResultsLabel,
25369
25374
  loading: loadingLabel,
25370
25375
  scrollBackward: scrollBackwardLabel,
25371
- scrollForward: scrollForwardLabel
25376
+ scrollForward: scrollForwardLabel,
25377
+ itemRemove: itemRemoveLabel
25372
25378
  };
25373
25379
  /**
25374
25380
  * Core label provider for Nimble
@@ -25412,6 +25418,9 @@ so this becomes the fallback color for the slot */ ''}
25412
25418
  __decorate([
25413
25419
  attr({ attribute: 'scroll-forward' })
25414
25420
  ], LabelProviderCore.prototype, "scrollForward", void 0);
25421
+ __decorate([
25422
+ attr({ attribute: 'item-remove' })
25423
+ ], LabelProviderCore.prototype, "itemRemove", void 0);
25415
25424
  const nimbleLabelProviderCore = LabelProviderCore.compose({
25416
25425
  baseName: 'label-provider-core',
25417
25426
  styles: styles$F