@milaboratories/milaboratories.ui-examples.model 1.2.29 → 1.2.31

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@milaboratories/milaboratories.ui-examples.model",
3
- "version": "1.2.29",
3
+ "version": "1.2.31",
4
4
  "description": "Block model",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -8,14 +8,14 @@
8
8
  "types": "dist/index.d.ts",
9
9
  "dependencies": {
10
10
  "zod": "~3.23.8",
11
- "@platforma-sdk/model": "1.42.25"
11
+ "@platforma-sdk/model": "1.42.36"
12
12
  },
13
13
  "devDependencies": {
14
14
  "typescript": "~5.6.3",
15
- "@milaboratories/build-configs": "1.0.8",
16
- "@milaboratories/ts-builder": "1.0.4",
15
+ "@milaboratories/ts-builder": "1.0.5",
17
16
  "@milaboratories/ts-configs": "1.0.6",
18
- "@platforma-sdk/block-tools": "2.5.83"
17
+ "@milaboratories/build-configs": "1.0.8",
18
+ "@platforma-sdk/block-tools": "2.5.87"
19
19
  },
20
20
  "scripts": {
21
21
  "build": "ts-builder build --target block-model && block-tools build-model",
package/src/index.ts CHANGED
@@ -133,6 +133,7 @@ export const platforma = BlockModel.create('Heavy')
133
133
  [Annotation.Label]: 'String column',
134
134
  [Annotation.DiscreteValues]: stringifyJson(['up', 'down']),
135
135
  [Annotation.Table.OrderPriority]: stringifyJson(101),
136
+ [Annotation.Description]: 'String column description',
136
137
  } satisfies Annotation,
137
138
  axesSpec: [
138
139
  {
@@ -170,6 +171,7 @@ export const platforma = BlockModel.create('Heavy')
170
171
  [Annotation.Label]: 'Float column',
171
172
  [Annotation.Table.Visibility]: 'optional',
172
173
  [Annotation.Table.OrderPriority]: stringifyJson(100),
174
+ [Annotation.Description]: 'Float column description',
173
175
  } satisfies Annotation,
174
176
  axesSpec: [
175
177
  {
@@ -356,7 +358,8 @@ export const platforma = BlockModel.create('Heavy')
356
358
  ? [
357
359
  { type: 'delimiter' },
358
360
  ...dynamicSections,
359
- { type: 'delimiter' }] as const
361
+ { type: 'delimiter' },
362
+ ] as const
360
363
  : []),
361
364
  {
362
365
  type: 'link',