@legalplace/models-v3-types 3.4.3 → 3.4.41

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.
Files changed (3) hide show
  1. package/index.ts +8 -0
  2. package/package.json +1 -1
  3. package/schema.json +12 -0
package/index.ts CHANGED
@@ -34,6 +34,7 @@ export interface ModelV3<ConstumizationMeta = CustomizationMetaDefault> {
34
34
  */
35
35
  pdf?: {
36
36
  id: string
37
+ filename: string
37
38
  form: FDFFormV3
38
39
  thumbnails: string[]
39
40
  }
@@ -426,6 +427,13 @@ export interface VariableV3 {
426
427
  round?: 'ceil' | 'floor' | 'round';
427
428
  };
428
429
 
430
+ /**
431
+ * Number input
432
+ */
433
+ number?: {
434
+ intOnly?: boolean
435
+ }
436
+
429
437
  /**
430
438
  * Textarea styling
431
439
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@legalplace/models-v3-types",
3
- "version": "3.4.3",
3
+ "version": "3.4.41",
4
4
  "main": "",
5
5
  "types": "index",
6
6
  "author": "Moncef Hammou <moncef@legalplace.fr>",
package/schema.json CHANGED
@@ -1874,6 +1874,15 @@
1874
1874
  },
1875
1875
  "type": "object"
1876
1876
  },
1877
+ "number": {
1878
+ "description": "Number input",
1879
+ "properties": {
1880
+ "intOnly": {
1881
+ "type": "boolean"
1882
+ }
1883
+ },
1884
+ "type": "object"
1885
+ },
1877
1886
  "placeholder": {
1878
1887
  "description": "Input's placeholder",
1879
1888
  "type": "string"
@@ -2080,6 +2089,9 @@
2080
2089
  "pdf": {
2081
2090
  "description": "Document's PDF link",
2082
2091
  "properties": {
2092
+ "filename": {
2093
+ "type": "string"
2094
+ },
2083
2095
  "form": {
2084
2096
  "$ref": "#/definitions/FDFFormV3"
2085
2097
  },