@app-studio/web 0.8.57 → 0.8.59

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.
@@ -18,8 +18,8 @@ export declare const usePasswordState: (props: PasswordProps) => {
18
18
  helperText?: string | undefined;
19
19
  label?: string | undefined;
20
20
  colorScheme?: string | undefined;
21
- leftChild?: import("react").ReactNode;
22
- rightChild?: import("react").ReactNode;
21
+ left?: import("react").ReactNode;
22
+ right?: import("react").ReactNode;
23
23
  placeholder?: string | undefined;
24
24
  isReadOnly?: boolean | undefined;
25
25
  isClearable?: boolean | undefined;
@@ -8,10 +8,13 @@ export interface IconProps extends Omit<ViewProps, 'size'> {
8
8
  orientation?: 'left' | 'right' | 'up' | 'down';
9
9
  }
10
10
  export declare const ChevronIcon: React.FC<IconProps>;
11
+ export declare const TwitterIcon: React.FC<IconProps>;
12
+ export declare const XIcon: React.FC<IconProps>;
11
13
  export declare const TwitchIcon: React.FC<IconProps>;
12
14
  export declare const CloseIcon: React.FC<IconProps>;
13
15
  export declare const InstagramIcon: React.FC<IconProps>;
14
16
  export declare const YoutubeIcon: React.FC<IconProps>;
17
+ export declare const FacebookIcon: React.FC<IconProps>;
15
18
  export declare const LinkedinIcon: React.FC<IconProps>;
16
19
  export declare const ThreadsIcon: React.FC<IconProps>;
17
20
  export declare const MinusIcon: React.FC<IconProps>;
@@ -1,4 +1,4 @@
1
1
  import React from 'react';
2
2
  import { CenterProps } from './Center.props';
3
- export declare const CenterBase: React.ForwardRefExoticComponent<Pick<Pick<import("app-studio").ElementProps, string | number> & React.RefAttributes<HTMLElement> & import("app-studio").ViewProps & CenterProps, string | number> & React.RefAttributes<HTMLElement>>;
4
- export declare const Center: React.ForwardRefExoticComponent<Pick<import("app-studio").ElementProps, string | number> & React.RefAttributes<HTMLElement> & import("app-studio").ViewProps & CenterProps>;
3
+ export declare const CenterBase: React.ForwardRefExoticComponent<Pick<import("app-studio").ElementProps & React.RefAttributes<HTMLElement> & import("app-studio").ViewProps & CenterProps, string | number> & React.RefAttributes<HTMLElement>>;
4
+ export declare const Center: React.ForwardRefExoticComponent<import("app-studio").ElementProps & React.RefAttributes<HTMLElement> & import("app-studio").ViewProps & CenterProps>;
@@ -1,4 +1,4 @@
1
1
  import React from 'react';
2
2
  import { HorizontalProps } from './Horizontal.props';
3
- export declare const HorizontalBase: React.ForwardRefExoticComponent<Pick<Pick<import("app-studio").ElementProps, string | number> & React.RefAttributes<HTMLElement> & import("app-studio").ViewProps & HorizontalProps, string | number> & React.RefAttributes<HTMLElement>>;
4
- export declare const Horizontal: React.ForwardRefExoticComponent<Pick<import("app-studio").ElementProps, string | number> & React.RefAttributes<HTMLElement> & import("app-studio").ViewProps & HorizontalProps>;
3
+ export declare const HorizontalBase: React.ForwardRefExoticComponent<Pick<import("app-studio").ElementProps & React.RefAttributes<HTMLElement> & import("app-studio").ViewProps & HorizontalProps, string | number> & React.RefAttributes<HTMLElement>>;
4
+ export declare const Horizontal: React.ForwardRefExoticComponent<import("app-studio").ElementProps & React.RefAttributes<HTMLElement> & import("app-studio").ViewProps & HorizontalProps>;
@@ -1,4 +1,4 @@
1
1
  import React from 'react';
2
2
  import { VerticalProps } from './Vertical.props';
3
- export declare const VerticalBase: React.ForwardRefExoticComponent<Pick<Pick<import("app-studio").ElementProps, string | number> & React.RefAttributes<HTMLElement> & import("app-studio").ViewProps & VerticalProps, string | number> & React.RefAttributes<HTMLElement>>;
4
- export declare const Vertical: React.ForwardRefExoticComponent<Pick<import("app-studio").ElementProps, string | number> & React.RefAttributes<HTMLElement> & import("app-studio").ViewProps & VerticalProps>;
3
+ export declare const VerticalBase: React.ForwardRefExoticComponent<Pick<import("app-studio").ElementProps & React.RefAttributes<HTMLElement> & import("app-studio").ViewProps & VerticalProps, string | number> & React.RefAttributes<HTMLElement>>;
4
+ export declare const Vertical: React.ForwardRefExoticComponent<import("app-studio").ElementProps & React.RefAttributes<HTMLElement> & import("app-studio").ViewProps & VerticalProps>;
@@ -6,4 +6,4 @@ export declare const Left: (props: ViewProps) => React.JSX.Element;
6
6
  export declare const Right: (props: ViewProps) => React.JSX.Element;
7
7
  export declare const Inline: (props: ViewProps) => React.JSX.Element;
8
8
  export type { ViewProps };
9
- export declare const View: React.MemoExoticComponent<React.ForwardRefExoticComponent<Pick<ViewProps, string | number> & React.RefAttributes<HTMLElement>>>;
9
+ export declare const View: React.ForwardRefExoticComponent<import("app-studio").ElementProps & React.RefAttributes<HTMLElement> & ViewProps>;