@ni/nimble-components 34.8.6 → 34.9.1
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.
- package/dist/all-components-bundle.js +12 -0
- package/dist/all-components-bundle.js.map +1 -1
- package/dist/all-components-bundle.min.js +1 -1
- package/dist/all-components-bundle.min.js.map +1 -1
- package/dist/esm/mapping/base/index.d.ts +8 -0
- package/dist/esm/mapping/base/index.js +12 -0
- package/dist/esm/mapping/base/index.js.map +1 -1
- package/package.json +4 -3
|
@@ -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()
|