verstak 0.24.133 → 0.24.135

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.
@@ -9,9 +9,11 @@ export type El<T = any, M = any> = {
9
9
  kind: ElKind;
10
10
  area: ElArea;
11
11
  width: Range;
12
- widthFixed: string;
12
+ widthMerelyMin: string;
13
+ widthMerelyGrowth: number;
13
14
  height: Range;
14
- heightFixed: string;
15
+ heightMerelyMin: string;
16
+ heightMerelyGrowth: number;
15
17
  contentAlignment: Align;
16
18
  elementAlignment: Align;
17
19
  contentWrapping: boolean;
@@ -85,12 +87,16 @@ export declare class ElImpl<T extends Element = any, M = any> implements El<T, M
85
87
  set area(value: ElArea);
86
88
  get width(): Range;
87
89
  set width(value: Range);
88
- get widthFixed(): string;
89
- set widthFixed(value: string);
90
+ get widthMerelyMin(): string;
91
+ set widthMerelyMin(value: string);
92
+ get widthMerelyGrowth(): number;
93
+ set widthMerelyGrowth(value: number);
90
94
  get height(): Range;
91
95
  set height(value: Range);
92
- get heightFixed(): string;
93
- set heightFixed(value: string);
96
+ get heightMerelyMin(): string;
97
+ set heightMerelyMin(value: string);
98
+ get heightMerelyGrowth(): number;
99
+ set heightMerelyGrowth(value: number);
94
100
  get contentAlignment(): Align;
95
101
  set contentAlignment(value: Align);
96
102
  get elementAlignment(): Align;
@@ -104,8 +104,10 @@ export class ElImpl {
104
104
  if (updated)
105
105
  this._width = value;
106
106
  }
107
- get widthFixed() { var _a; return (_a = this._width.min) !== null && _a !== void 0 ? _a : ""; }
108
- set widthFixed(value) { this.width = { min: value }; }
107
+ get widthMerelyMin() { var _a; return (_a = this._width.min) !== null && _a !== void 0 ? _a : ""; }
108
+ set widthMerelyMin(value) { this.width = { min: value }; }
109
+ get widthMerelyGrowth() { var _a; return (_a = this._width.growth) !== null && _a !== void 0 ? _a : 0; }
110
+ set widthMerelyGrowth(value) { this.width = { growth: value }; }
109
111
  get height() { return this._height; }
110
112
  set height(value) {
111
113
  var _a, _b, _c;
@@ -126,8 +128,10 @@ export class ElImpl {
126
128
  if (updated)
127
129
  this._height = value;
128
130
  }
129
- get heightFixed() { var _a; return (_a = this._height.min) !== null && _a !== void 0 ? _a : ""; }
130
- set heightFixed(value) { this.height = { min: value }; }
131
+ get heightMerelyMin() { var _a; return (_a = this._height.min) !== null && _a !== void 0 ? _a : ""; }
132
+ set heightMerelyMin(value) { this.height = { min: value }; }
133
+ get heightMerelyGrowth() { var _a; return (_a = this._height.growth) !== null && _a !== void 0 ? _a : 0; }
134
+ set heightMerelyGrowth(value) { this.height = { growth: value }; }
131
135
  get contentAlignment() { return this._contentAlignment; }
132
136
  set contentAlignment(value) {
133
137
  if (value !== this._contentAlignment) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "verstak",
3
- "version": "0.24.133",
3
+ "version": "0.24.135",
4
4
  "description": "Verstak - Front-End Library",
5
5
  "publisher": "Nezaboodka Software",
6
6
  "license": "Apache-2.0",