@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.
@@ -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/Center.props';
3
- export declare const Center: React.FC<CenterProps>;
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,3 @@
1
- import { ViewProps } from '../../View/View';
1
+ import { ViewProps } from '../View/View';
2
2
  export interface CenterProps extends ViewProps {
3
3
  }
@@ -1,3 +1,4 @@
1
1
  import React from 'react';
2
- import { HorizontalProps } from './Horizontal/Horizontal.props';
3
- export declare const Horizontal: React.FC<HorizontalProps>;
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/Vertical.props';
3
- export declare const Vertical: React.FC<VerticalProps>;
2
+ import { VerticalProps } from './Vertical.props';
3
+ declare const Vertical: React.ForwardRefExoticComponent<Pick<VerticalProps, string | number> & React.RefAttributes<HTMLElement>>;
4
+ export { Vertical };