@ni/nimble-components 34.8.5 → 34.9.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.
@@ -26094,6 +26094,18 @@ so this becomes the fallback color for the slot */ ''}
26094
26094
  * Base class for mapping configuration elements
26095
26095
  */
26096
26096
  let Mapping$1 = class Mapping extends FoundationElement {
26097
+ /**
26098
+ * Getter for the `key` property for environments that do not support properties named "key"
26099
+ */
26100
+ get keyValue() {
26101
+ return this.key;
26102
+ }
26103
+ /**
26104
+ * Setter for the `key` property for environments that do not support properties named "key"
26105
+ */
26106
+ set keyValue(value) {
26107
+ this.key = value;
26108
+ }
26097
26109
  };
26098
26110
  __decorate([
26099
26111
  attr()