@milaboratories/milaboratories.ui-examples.model 1.1.73 → 1.1.74
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/.turbo/turbo-build.log +13 -13
- package/CHANGELOG.md +6 -0
- package/dist/bundle.js +1 -0
- package/dist/bundle.js.map +1 -1
- package/dist/index.cjs +1 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/model.json +1 -1
- package/package.json +2 -2
- package/src/index.ts +5 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@milaboratories/milaboratories.ui-examples.model",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.74",
|
|
4
4
|
"description": "Block model",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"typescript": "~5.5.4",
|
|
15
15
|
"vite": "^6.3.5",
|
|
16
16
|
"tsup": "~8.3.5",
|
|
17
|
-
"@platforma-sdk/block-tools": "2.5.
|
|
17
|
+
"@platforma-sdk/block-tools": "2.5.57"
|
|
18
18
|
},
|
|
19
19
|
"tsup": {
|
|
20
20
|
"entry": [
|
package/src/index.ts
CHANGED
|
@@ -1,19 +1,14 @@
|
|
|
1
1
|
import type {
|
|
2
|
+
ImportFileHandle,
|
|
2
3
|
InferHrefType,
|
|
3
4
|
InferOutputsType,
|
|
4
|
-
PlDataTableState,
|
|
5
|
-
PlTableFiltersModel,
|
|
6
5
|
PColumn,
|
|
7
6
|
PColumnValues,
|
|
7
|
+
PlDataTableState,
|
|
8
|
+
PlTableFiltersModel,
|
|
8
9
|
PObjectId,
|
|
9
|
-
ImportFileHandle,
|
|
10
|
-
} from '@platforma-sdk/model';
|
|
11
|
-
import {
|
|
12
|
-
BlockModel,
|
|
13
|
-
createPlDataTable,
|
|
14
|
-
createPlDataTableV2,
|
|
15
|
-
selectorsToPredicate,
|
|
16
10
|
} from '@platforma-sdk/model';
|
|
11
|
+
import { BlockModel, createPlDataTable, createPlDataTableV2, selectorsToPredicate } from '@platforma-sdk/model';
|
|
17
12
|
import { z } from 'zod';
|
|
18
13
|
|
|
19
14
|
export const ImportFileHandleSchema = z
|
|
@@ -237,6 +232,7 @@ export const platforma = BlockModel.create('Heavy')
|
|
|
237
232
|
{ type: 'link', href: '/pl-splash-page', label: 'PlSplashPage' },
|
|
238
233
|
{ type: 'link', href: '/pl-file-input-page', label: 'PlFileInputPage' },
|
|
239
234
|
{ type: 'link', href: '/pl-error-boundary-page', label: 'PlErrorBoundaryPage' },
|
|
235
|
+
{ type: 'link', href: '/pl-element-list-page', label: 'PlElementList' },
|
|
240
236
|
{ type: 'link', href: '/errors', label: 'Errors' },
|
|
241
237
|
{ type: 'link', href: '/text-fields', label: 'PlTextField' },
|
|
242
238
|
{ type: 'link', href: '/tabs', label: 'PlTabs' },
|