@legalplace/models-v3-types 3.4.3 → 3.4.4

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 +7 -0
  2. package/package.json +1 -1
  3. package/schema.json +9 -0
package/index.ts CHANGED
@@ -426,6 +426,13 @@ export interface VariableV3 {
426
426
  round?: 'ceil' | 'floor' | 'round';
427
427
  };
428
428
 
429
+ /**
430
+ * Number input
431
+ */
432
+ number?: {
433
+ intOnly?: boolean
434
+ }
435
+
429
436
  /**
430
437
  * Textarea styling
431
438
  */
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.4",
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"