@stokelp/ui 2.25.0 → 2.27.0

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.
@@ -0,0 +1,2 @@
1
+ export * as Avatar from './styled';
2
+ export type { AvatarProps, AvatarImageProps, AvatarFallbackProps } from './styled';
@@ -0,0 +1,15 @@
1
+ import { Avatar } from '@ark-ui/react';
2
+ import { ComponentProps, ForwardRefExoticComponent, RefAttributes } from 'react';
3
+ import { ComponentVariants } from '../../utils/slots';
4
+ import { StyledComponent } from '@stokelp/styled-system/types';
5
+ import { AvatarRecipe } from '@stokelp/styled-system/recipes';
6
+
7
+ export declare const Root: ComponentVariants<StyledComponent<ForwardRefExoticComponent<Avatar.RootProps & RefAttributes<HTMLDivElement>>, {}>, AvatarRecipe>;
8
+ export declare const Image: StyledComponent<ForwardRefExoticComponent<Avatar.ImageProps & RefAttributes<HTMLImageElement>>, {}>;
9
+ export declare const Fallback: StyledComponent<ForwardRefExoticComponent<Avatar.FallbackProps & RefAttributes<HTMLSpanElement>>, {}>;
10
+ export interface AvatarProps extends ComponentProps<typeof Root> {
11
+ }
12
+ export interface AvatarImageProps extends ComponentProps<typeof Image> {
13
+ }
14
+ export interface AvatarFallbackProps extends ComponentProps<typeof Fallback> {
15
+ }
@@ -9,6 +9,7 @@ export * from './text';
9
9
  export * from './textarea';
10
10
  export * from './tabs';
11
11
  export * from './select';
12
+ export * from './select-language';
12
13
  export * from './input';
13
14
  export * from './box';
14
15
  export * from './date-picker';
@@ -34,4 +35,5 @@ export * from './combobox';
34
35
  export * from './icon';
35
36
  export * from './collapsible';
36
37
  export * from './dialog';
38
+ export * from './avatar';
37
39
  export * from './app';
@@ -0,0 +1 @@
1
+ export * from './SelectLanguage';