@dcl/react-ecs 0.0.1-3244243254.commit-d5804ee → 0.0.1-3250968661.commit-2850bf7

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/dist/index.d.ts CHANGED
@@ -165,9 +165,15 @@ export declare function removeUi(index: number): void;
165
165
  export declare function renderUi(ui: UiComponent): number;
166
166
 
167
167
  export declare enum TextAlignMode {
168
- TAM_CENTER = 0,
169
- TAM_LEFT = 1,
170
- TAM_RIGHT = 2,
168
+ TAM_TOP_LEFT = 0,
169
+ TAM_TOP_CENTER = 1,
170
+ TAM_TOP_RIGHT = 2,
171
+ TAM_MIDDLE_LEFT = 3,
172
+ TAM_MIDDLE_CENTER = 4,
173
+ TAM_MIDDLE_RIGHT = 5,
174
+ TAM_BOTTOM_LEFT = 6,
175
+ TAM_BOTTOM_CENTER = 7,
176
+ TAM_BOTTOM_RIGHT = 8,
171
177
  UNRECOGNIZED = -1
172
178
  }
173
179