@milaboratories/milaboratories.ui-examples.model 1.3.21 → 1.4.0
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 +3 -3
- package/.turbo/turbo-lint.log +1 -1
- package/.turbo/turbo-type-check.log +1 -1
- package/CHANGELOG.md +18 -0
- package/dist/bundle.js +384 -28
- package/dist/bundle.js.map +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +16 -16
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/model.json +1 -1
- package/package.json +5 -5
- package/src/index.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@milaboratories/milaboratories.ui-examples.model",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"description": "Block model",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -8,16 +8,16 @@
|
|
|
8
8
|
"types": "dist/index.d.ts",
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"zod": "~3.23.8",
|
|
11
|
-
"@platforma-sdk/model": "1.
|
|
11
|
+
"@platforma-sdk/model": "1.52.0"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
14
|
"eslint": "^9.25.1",
|
|
15
15
|
"typescript": "~5.6.3",
|
|
16
|
-
"@
|
|
16
|
+
"@milaboratories/build-configs": "1.2.2",
|
|
17
|
+
"@platforma-sdk/block-tools": "2.6.30",
|
|
17
18
|
"@platforma-sdk/eslint-config": "1.2.0",
|
|
18
19
|
"@milaboratories/ts-configs": "1.2.0",
|
|
19
|
-
"@milaboratories/ts-builder": "1.2.2"
|
|
20
|
-
"@milaboratories/build-configs": "1.2.2"
|
|
20
|
+
"@milaboratories/ts-builder": "1.2.2"
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
23
|
"build": "ts-builder build --target block-model && block-tools build-model",
|
package/src/index.ts
CHANGED
|
@@ -372,7 +372,7 @@ export const platforma = BlockModel.create('Heavy')
|
|
|
372
372
|
];
|
|
373
373
|
})
|
|
374
374
|
|
|
375
|
-
.done(); // api version 2
|
|
375
|
+
.done(2); // api version 2
|
|
376
376
|
|
|
377
377
|
export type BlockOutputs = InferOutputsType<typeof platforma>;
|
|
378
378
|
export type Href = InferHrefType<typeof platforma>;
|