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