@platforma-sdk/model 1.41.1 → 1.41.3
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/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +166 -166
- 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 +4 -4
- package/src/components/PFrameForGraphs.ts +1 -1
- package/src/version.ts +2 -0
- package/src/.gitignore +0 -1
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const PlatformaSDKVersion
|
|
1
|
+
export declare const PlatformaSDKVersion: string;
|
|
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":"
|
|
1
|
+
{"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../src/version.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,mBAAmB,QAAU,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platforma-sdk/model",
|
|
3
|
-
"version": "1.41.
|
|
3
|
+
"version": "1.41.3",
|
|
4
4
|
"description": "Platforma.bio SDK / Block Model",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -38,11 +38,11 @@
|
|
|
38
38
|
"@milaboratories/helpers": "^1.6.18"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|
|
41
|
-
"type-check": "
|
|
42
|
-
"build": "
|
|
41
|
+
"type-check": "tsc --noEmit --composite false",
|
|
42
|
+
"build": "vite build",
|
|
43
43
|
"watch": "vite build --watch",
|
|
44
44
|
"lint": "eslint .",
|
|
45
|
-
"test": "
|
|
45
|
+
"test": "jest",
|
|
46
46
|
"do-pack": "rm -f *.tgz && pnpm pack && mv *.tgz package.tgz"
|
|
47
47
|
}
|
|
48
48
|
}
|
|
@@ -49,7 +49,7 @@ function getKeysCombinations(idsLists: AxisId[][]) {
|
|
|
49
49
|
|
|
50
50
|
/** Check if column is a linker column */
|
|
51
51
|
export function isLinkerColumn(column: PColumnSpec) {
|
|
52
|
-
return column.
|
|
52
|
+
return column.annotations?.[LINKER_COLUMN_ANNOTATION] === 'true';
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
export const IS_VIRTUAL_COLUMN = 'pl7.app/graph/isVirtual'; // annotation for column duplicates with extended domains
|
package/src/version.ts
ADDED
package/src/.gitignore
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
version.ts
|