app-studio 0.8.3 → 0.8.5
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/web/index.d.mts +1 -0
- package/dist/web/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/web/index.d.mts
CHANGED
|
@@ -147,6 +147,7 @@ interface ElementProps extends CssProps, Omit<ViewStyleProps, keyof HTMLAttribut
|
|
|
147
147
|
* (`color-red-500`, `theme-secondary`) or a raw color (`#ff0000`).
|
|
148
148
|
*/
|
|
149
149
|
theme?: Partial<Theme>;
|
|
150
|
+
themeMode?: 'light' | 'dark';
|
|
150
151
|
animateOn?: 'View' | 'Mount' | 'Both' | 'Scroll';
|
|
151
152
|
_hover?: CssProps | string;
|
|
152
153
|
_active?: CssProps | string;
|
package/dist/web/index.d.ts
CHANGED
|
@@ -147,6 +147,7 @@ interface ElementProps extends CssProps, Omit<ViewStyleProps, keyof HTMLAttribut
|
|
|
147
147
|
* (`color-red-500`, `theme-secondary`) or a raw color (`#ff0000`).
|
|
148
148
|
*/
|
|
149
149
|
theme?: Partial<Theme>;
|
|
150
|
+
themeMode?: 'light' | 'dark';
|
|
150
151
|
animateOn?: 'View' | 'Mount' | 'Both' | 'Scroll';
|
|
151
152
|
_hover?: CssProps | string;
|
|
152
153
|
_active?: CssProps | string;
|
package/package.json
CHANGED