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