@app-studio/web 0.8.21 → 0.8.23
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/Icon/Icon.d.ts +1 -0
- package/dist/components/Layout/Center/Center.d.ts +3 -2
- package/dist/components/Layout/Center/{Center/Center.props.d.ts → Center.props.d.ts} +1 -1
- package/dist/components/Layout/Horizontal/Horizontal.d.ts +3 -2
- package/dist/components/Layout/Vertical/Vertical.d.ts +3 -2
- package/dist/web.cjs.development.js +153 -115
- package/dist/web.cjs.development.js.map +1 -1
- package/dist/web.cjs.production.min.js +1 -1
- package/dist/web.cjs.production.min.js.map +1 -1
- package/dist/web.esm.js +153 -116
- package/dist/web.esm.js.map +1 -1
- package/dist/web.umd.development.js +153 -115
- package/dist/web.umd.development.js.map +1 -1
- package/dist/web.umd.production.min.js +1 -1
- package/dist/web.umd.production.min.js.map +1 -1
- package/package.json +1 -1
- package/dist/components/Layout/Center/Center/Center.view.d.ts +0 -4
- package/dist/components/Layout/Horizontal/Horizontal/Horizontal.view.d.ts +0 -4
- package/dist/components/Layout/Vertical/Vertical/Vertical.view.d.ts +0 -4
- /package/dist/components/Layout/Horizontal/{Horizontal/Horizontal.props.d.ts → Horizontal.props.d.ts} +0 -0
- /package/dist/components/Layout/Vertical/{Vertical/Vertical.props.d.ts → Vertical.props.d.ts} +0 -0
|
@@ -17,6 +17,7 @@ export declare const OpenEyeIcon: React.FC<IconProps>;
|
|
|
17
17
|
export declare const PlusIcon: React.FC<IconProps>;
|
|
18
18
|
export declare const SpinnerIcon: React.FC<IconProps>;
|
|
19
19
|
export declare const ProfileIcon: React.FC<IconProps>;
|
|
20
|
+
export declare const BoldArrowIcon: React.FC<IconProps>;
|
|
20
21
|
export declare const ArrowIcon: React.FC<IconProps>;
|
|
21
22
|
export declare const SearchIcon: React.FC<IconProps>;
|
|
22
23
|
export declare const SuccessIcon: React.FC<IconProps>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { CenterProps } from './Center
|
|
3
|
-
|
|
2
|
+
import { CenterProps } from './Center.props';
|
|
3
|
+
declare const Center: React.ForwardRefExoticComponent<Pick<CenterProps, string | number> & React.RefAttributes<HTMLElement>>;
|
|
4
|
+
export { Center };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { HorizontalProps } from './Horizontal
|
|
3
|
-
|
|
2
|
+
import { HorizontalProps } from './Horizontal.props';
|
|
3
|
+
declare const Horizontal: React.ForwardRefExoticComponent<Pick<HorizontalProps, string | number> & React.RefAttributes<HTMLElement>>;
|
|
4
|
+
export { Horizontal };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { VerticalProps } from './Vertical
|
|
3
|
-
|
|
2
|
+
import { VerticalProps } from './Vertical.props';
|
|
3
|
+
declare const Vertical: React.ForwardRefExoticComponent<Pick<VerticalProps, string | number> & React.RefAttributes<HTMLElement>>;
|
|
4
|
+
export { Vertical };
|