@msbci/form-server 1.3.3 → 1.3.5

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": "@msbci/form-server",
3
- "version": "1.3.3",
3
+ "version": "1.3.5",
4
4
  "description": "Form server — REST API with Prisma, multi-tenant, multi-database",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",
@@ -138,6 +138,8 @@ model FormVariable {
138
138
  isRequired Boolean @default(false)
139
139
  isReadonly Boolean @default(false)
140
140
  isHidden Boolean @default(false)
141
+ startWithNewLine Boolean? // Layout: place la variable sur une nouvelle ligne
142
+ colSpan Int? // Layout: largeur de colonne
141
143
  defaultValue String?
142
144
  placeholder String?
143
145
  description String?