verstak 0.24.133 → 0.24.134

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
+ widthOnlyMin: string;
13
+ widthOnlyGrowth: number;
13
14
  height: Range;
14
- heightFixed: string;
15
+ heightOnlyMin: string;
16
+ heightOnlyGrowth: 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 widthOnlyMin(): string;
91
+ set widthOnlyMin(value: string);
92
+ get widthOnlyGrowth(): number;
93
+ set widthOnlyGrowth(value: number);
90
94
  get height(): Range;
91
95
  set height(value: Range);
92
- get heightFixed(): string;
93
- set heightFixed(value: string);
96
+ get heightOnlyMin(): string;
97
+ set heightOnlyMin(value: string);
98
+ get heightOnlyGrowth(): number;
99
+ set heightOnlyGrowth(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 widthOnlyMin() { var _a; return (_a = this._width.min) !== null && _a !== void 0 ? _a : ""; }
108
+ set widthOnlyMin(value) { this.width = { min: value }; }
109
+ get widthOnlyGrowth() { var _a; return (_a = this._width.growth) !== null && _a !== void 0 ? _a : 0; }
110
+ set widthOnlyGrowth(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 heightOnlyMin() { var _a; return (_a = this._height.min) !== null && _a !== void 0 ? _a : ""; }
132
+ set heightOnlyMin(value) { this.height = { min: value }; }
133
+ get heightOnlyGrowth() { var _a; return (_a = this._height.growth) !== null && _a !== void 0 ? _a : 0; }
134
+ set heightOnlyGrowth(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.134",
4
4
  "description": "Verstak - Front-End Library",
5
5
  "publisher": "Nezaboodka Software",
6
6
  "license": "Apache-2.0",