@app-studio/web 0.8.67 → 0.8.69
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/components/Layout/View/View.d.ts +3 -2
- package/dist/components/Modal/Modal/Modal.props.d.ts +1 -1
- package/dist/web.cjs.development.js.map +1 -1
- package/dist/web.cjs.production.min.js.map +1 -1
- package/dist/web.esm.js.map +1 -1
- package/dist/web.umd.development.js.map +1 -1
- package/dist/web.umd.production.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type { ViewProps } from 'app-studio';
|
|
2
|
+
import type { ViewProps as $ViewProps } from 'app-studio';
|
|
3
|
+
export declare type ViewProps = $ViewProps;
|
|
3
4
|
export declare const Top: (props: ViewProps) => React.JSX.Element;
|
|
4
5
|
export declare const Bottom: (props: ViewProps) => React.JSX.Element;
|
|
5
6
|
export declare const Left: (props: ViewProps) => React.JSX.Element;
|
|
6
7
|
export declare const Right: (props: ViewProps) => React.JSX.Element;
|
|
7
8
|
export declare const Inline: (props: ViewProps) => React.JSX.Element;
|
|
8
|
-
export declare const View: React.ForwardRefExoticComponent<Pick<import("app-studio").ElementProps, string | number> & React.RefAttributes<HTMLElement> & ViewProps>;
|
|
9
|
+
export declare const View: React.ForwardRefExoticComponent<Pick<import("app-studio").ElementProps, string | number> & React.RefAttributes<HTMLElement> & $ViewProps>;
|