@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 +9 -3
- package/dist/index.js +10 -4
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +2 -2
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
|
-
|
|
169
|
-
|
|
170
|
-
|
|
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
|
|