@effindomv2/fui-as 0.1.22 → 0.1.23

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@effindomv2/fui-as",
3
- "version": "0.1.22",
3
+ "version": "0.1.23",
4
4
  "private": false,
5
5
  "license": "AGPL-3.0-only OR LicenseRef-EffinDom-Commercial",
6
6
  "description": "EffinDom v2 AssemblyScript frontend framework SDK and browser harness",
@@ -1,6 +1,5 @@
1
1
  import * as ui from "../bindings/ui";
2
2
  import {
3
- AlignSelf,
4
3
  AlignItems,
5
4
  BorderStyle,
6
5
  CursorStyle,
@@ -152,7 +151,6 @@ export class Button extends FlexBox {
152
151
  this.flexDirection(FlexDirection.Row);
153
152
  this.justifyContent(JustifyContent.Center);
154
153
  this.alignItems(AlignItems.Center);
155
- this.alignSelf(AlignSelf.Start);
156
154
  this.syncThemeState(activeTheme.value);
157
155
  this.applyBackground();
158
156
  }