app-studio 0.5.39 → 0.5.41
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.
|
@@ -6,19 +6,19 @@ export interface ElementProps extends CssProps {
|
|
|
6
6
|
media?: Record<string, CssProps> | undefined;
|
|
7
7
|
only?: string[] | undefined;
|
|
8
8
|
css?: CSSProperties | undefined;
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
onPress?: any;
|
|
10
|
+
onClick?: any;
|
|
11
|
+
as?: keyof JSX.IntrinsicElements;
|
|
12
|
+
style?: CSSProperties;
|
|
13
|
+
shadow?: boolean | number | Shadow;
|
|
11
14
|
children?: React.ReactNode;
|
|
12
15
|
size?: number | string;
|
|
16
|
+
}
|
|
17
|
+
export interface CssProps extends CSSProperties {
|
|
13
18
|
paddingHorizontal?: number | string;
|
|
14
19
|
marginHorizontal?: number | string;
|
|
15
20
|
paddingVertical?: number | string;
|
|
16
21
|
marginVertical?: number | string;
|
|
17
|
-
shadow?: boolean | number | Shadow;
|
|
18
|
-
style?: CSSProperties;
|
|
19
22
|
animate?: AnimationProps[] | AnimationProps;
|
|
20
|
-
onPress?: any;
|
|
21
|
-
onClick?: any;
|
|
22
|
-
as?: keyof JSX.IntrinsicElements;
|
|
23
23
|
}
|
|
24
24
|
export declare const Element: React.MemoExoticComponent<React.ForwardRefExoticComponent<ElementProps & React.RefAttributes<HTMLElement>>>;
|
package/package.json
CHANGED