@limetech/lime-elements 34.1.0-next.4 → 34.1.0-next.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.
@@ -22,6 +22,10 @@ export declare class Form {
22
22
  * Value of the form
23
23
  */
24
24
  value: object;
25
+ /**
26
+ * Set to `true` to disable the whole form.
27
+ */
28
+ disabled: boolean;
25
29
  /**
26
30
  * Factory for creating properties for custom form components
27
31
  *
@@ -370,6 +370,10 @@ export namespace Components {
370
370
  "reverse": boolean;
371
371
  }
372
372
  interface LimelForm {
373
+ /**
374
+ * Set to `true` to disable the whole form.
375
+ */
376
+ "disabled": boolean;
373
377
  /**
374
378
  * Factory for creating properties for custom form components When using custom components in the form some properties might have to be set dynamically. If this factory is set, it will be called with the current schema for the field for each custom component in the form. The factory must return an object where each key is the name of the property that should be set, along with its value.
375
379
  */
@@ -1657,6 +1661,10 @@ declare namespace LocalJSX {
1657
1661
  "reverse"?: boolean;
1658
1662
  }
1659
1663
  interface LimelForm {
1664
+ /**
1665
+ * Set to `true` to disable the whole form.
1666
+ */
1667
+ "disabled"?: boolean;
1660
1668
  /**
1661
1669
  * Emitted when a change is made within the form
1662
1670
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@limetech/lime-elements",
3
- "version": "34.1.0-next.4",
3
+ "version": "34.1.0-next.5",
4
4
  "description": "Lime Elements",
5
5
  "author": "Lime Technologies",
6
6
  "license": "Apache-2.0",