app-studio 0.5.53 → 0.5.55

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.
@@ -1,7 +1,8 @@
1
1
  import React, { CSSProperties } from 'react';
2
2
  import { AnimationProps } from '../utils/constants';
3
3
  import { Shadow } from '../utils/shadow';
4
- export interface ElementProps extends CssProps {
4
+ import { ViewStyleProps } from '../types/style';
5
+ export interface ElementProps extends CssProps, Omit<ViewStyleProps, 'children' | 'style' | 'pointerEvents' | 'onClick'> {
5
6
  on?: Record<string, CssProps> | undefined;
6
7
  media?: Record<string, CssProps> | undefined;
7
8
  only?: string[] | undefined;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.5.53",
2
+ "version": "0.5.55",
3
3
  "name": "app-studio",
4
4
  "description": "App Studio is a responsive and themeable framework to build cross platform applications",
5
5
  "repository": "git@github.com:rize-network/app-studio.git",