@platforma-sdk/model 1.31.14 → 1.31.15
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/PlDataTable.d.ts +3 -0
- package/dist/components/PlDataTable.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +3 -3
- package/src/components/PlDataTable.ts +3 -0
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const PlatformaSDKVersion = "1.31.
|
|
1
|
+
export declare const PlatformaSDKVersion = "1.31.15";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platforma-sdk/model",
|
|
3
|
-
"version": "1.31.
|
|
3
|
+
"version": "1.31.15",
|
|
4
4
|
"description": "Platforma.bio SDK / Block Model",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"jest": "^29.7.0",
|
|
32
32
|
"@jest/globals": "^29.7.0",
|
|
33
33
|
"ts-jest": "^29.2.6",
|
|
34
|
-
"@platforma-
|
|
35
|
-
"@
|
|
34
|
+
"@milaboratories/platforma-build-configs": "1.0.3",
|
|
35
|
+
"@platforma-sdk/eslint-config": "1.0.3"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"type-check": "node ./scripts/save-package-version.cjs && tsc --noEmit --composite false",
|
|
@@ -323,6 +323,9 @@ export type PlTableFiltersState = PlTableFiltersStateEntry[];
|
|
|
323
323
|
export type PlTableFiltersModel = {
|
|
324
324
|
/** Internal PlTableFilters component state, do not change! */
|
|
325
325
|
state?: PlTableFiltersState;
|
|
326
|
+
/** Internal PlTableFilters component state, do not change!
|
|
327
|
+
* Defaults filters applied to the table */
|
|
328
|
+
defaultsApplied?: boolean;
|
|
326
329
|
/** Resulting filters which should be used in Join */
|
|
327
330
|
filters?: PTableRecordFilter[];
|
|
328
331
|
};
|