@platforma-sdk/model 1.31.6 → 1.31.14
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/components/PlSelectionModel.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -4
- package/dist/index.mjs.map +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/components/PlSelectionModel.ts +2 -1
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const PlatformaSDKVersion = "1.31.
|
|
1
|
+
export declare const PlatformaSDKVersion = "1.31.14";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/version.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../src/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,mBAAmB,
|
|
1
|
+
{"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../src/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,mBAAmB,YAAY,CAAC"}
|
package/package.json
CHANGED
|
@@ -21,7 +21,8 @@ export type PlSelectionModel = {
|
|
|
21
21
|
|
|
22
22
|
export function mapPTableValueToAxisKey(value: PTableValue): AxisValue {
|
|
23
23
|
if (value === PTableNA) {
|
|
24
|
-
|
|
24
|
+
console.error('Axis value can never be N/A');
|
|
25
|
+
return ''; // @TODO: add proper handling
|
|
25
26
|
}
|
|
26
27
|
return value;
|
|
27
28
|
}
|