@msbci/form-server 1.3.4 → 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/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +26 -0
- package/dist/index.d.ts +26 -0
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/prisma/schema.prisma +2 -0
package/package.json
CHANGED
package/src/prisma/schema.prisma
CHANGED
|
@@ -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?
|