@ni/ok-components 0.0.5 → 0.0.6
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$M = (context, definition) => html `
|
|
18907
18912
|
<div
|
|
@@ -25369,7 +25374,8 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
25369
25374
|
filterNoResults: filterNoResultsLabel,
|
|
25370
25375
|
loading: loadingLabel,
|
|
25371
25376
|
scrollBackward: scrollBackwardLabel,
|
|
25372
|
-
scrollForward: scrollForwardLabel
|
|
25377
|
+
scrollForward: scrollForwardLabel,
|
|
25378
|
+
itemRemove: itemRemoveLabel
|
|
25373
25379
|
};
|
|
25374
25380
|
/**
|
|
25375
25381
|
* Core label provider for Nimble
|
|
@@ -25413,6 +25419,9 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
25413
25419
|
__decorate([
|
|
25414
25420
|
attr({ attribute: 'scroll-forward' })
|
|
25415
25421
|
], LabelProviderCore.prototype, "scrollForward", void 0);
|
|
25422
|
+
__decorate([
|
|
25423
|
+
attr({ attribute: 'item-remove' })
|
|
25424
|
+
], LabelProviderCore.prototype, "itemRemove", void 0);
|
|
25416
25425
|
const nimbleLabelProviderCore = LabelProviderCore.compose({
|
|
25417
25426
|
baseName: 'label-provider-core',
|
|
25418
25427
|
styles: styles$K
|