@1urso/generic-editor 0.1.19 → 0.1.21

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/README.md CHANGED
@@ -95,6 +95,7 @@ The editor offers an experience similar to design tools like Canva or Figma:
95
95
  - **Conditional Formatting**:
96
96
  - Define rules to change the element's style based on data values.
97
97
  - _Example_: If `price` is greater than `100`, set text color to `red`.
98
+ - _Action_: Choose between applying styles (Color, Bold, Background, etc.) or **Hiding the Element** completely.
98
99
  - Supports multiple rules with operators like Equals, Not Equals, Contains, Greater Than, Less Than, Truthy, and Falsy.
99
100
 
100
101
  ### Settings and Test Data
@@ -29,6 +29,7 @@ export interface IElement {
29
29
  dataBinding?: string;
30
30
  formatting?: IElementFormatting;
31
31
  conditions?: IElementCondition[];
32
+ autoGrow?: boolean;
32
33
  }
33
34
  export interface IListSettings {
34
35
  sortProp?: string;