-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(release): set
package.json
to 1.12.5 [skip ci]
## [1.12.5](v1.12.4...v1.12.5) (2024-1-14) ### Bug Fixes * fixed gh actions ([21c1435](21c1435))
- Loading branch information
1 parent
21c1435
commit 5786655
Showing
613 changed files
with
4,025 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import { FC, CSSProperties, MouseEventHandler, Component } from 'react'; | ||
export interface AvatarProps { | ||
component?: Component; | ||
fullname?: string; | ||
avatar?: string; | ||
size: 'small' | 'medium' | 'large'; | ||
className?: string; | ||
style?: CSSProperties; | ||
imageClassName?: string; | ||
imageStyle?: CSSProperties; | ||
isOnline?: boolean; | ||
} | ||
export interface AvatarComposition { | ||
Group: FC<GroupProps>; | ||
} | ||
export interface GroupProps { | ||
users: AvatarProps[]; | ||
add: boolean; | ||
onAdd: MouseEventHandler<HTMLDivElement>; | ||
} | ||
export interface AddButtonProps { | ||
users: AvatarProps[]; | ||
onAdd: MouseEventHandler<HTMLDivElement>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { FC } from 'react'; | ||
import { AvatarProps } from './Avatar.types'; | ||
declare const AvatarComponent: FC<AvatarProps>; | ||
export default AvatarComponent; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { FC } from 'react'; | ||
import { GroupProps } from './Avatar.types'; | ||
declare const Group: FC<GroupProps>; | ||
export default Group; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { FC } from 'react'; | ||
import { AvatarProps, AvatarComposition } from './Avatar.types'; | ||
declare const Avatar: FC<AvatarProps> & AvatarComposition; | ||
export default Avatar; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export declare const changeSizeContainer: (size: any) => any; | ||
export declare const changeSize: (size: any) => any; | ||
export declare const changeSizeSymbol: (size: any) => any; | ||
export declare const changeSizeOnline: (size: any) => any; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { ReactNode, CSSProperties } from 'react'; | ||
export interface ButtonProps { | ||
as?: string; | ||
children?: ReactNode; | ||
className?: string; | ||
danger?: boolean; | ||
disabled?: boolean; | ||
href?: string; | ||
loading?: boolean; | ||
size: 'small' | 'medium' | 'large'; | ||
styles?: CSSProperties; | ||
type: 'button' | 'reset' | 'submit'; | ||
variant: 'primary' | 'secondary' | 'text'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { FC } from 'react'; | ||
import { ButtonProps } from './Button.types'; | ||
declare const Button: FC<ButtonProps>; | ||
export default Button; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { ReactNode, CSSProperties, FormEvent } from 'react'; | ||
export interface FormProps { | ||
children: ReactNode; | ||
onSubmit: (event: FormEvent<HTMLFormElement>) => void; | ||
className?: string; | ||
style?: CSSProperties; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { FC } from 'react'; | ||
import { FormProps } from './Form.types'; | ||
export declare const Form: FC<FormProps>; | ||
export default Form; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
declare const useForm: (state: any, validate: any, callback: any) => { | ||
handleChange: (e: any) => void; | ||
handleSubmit: (e: any) => void; | ||
values: any; | ||
errors: {}; | ||
}; | ||
export default useForm; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { ReactNode, FC } from 'react'; | ||
export interface GridProps { | ||
children?: ReactNode; | ||
} | ||
export interface GridComposition { | ||
Container: FC<ContainerProps>; | ||
Column: FC<ColumnProps>; | ||
Row: FC<RowProps>; | ||
} | ||
export interface ContainerProps { | ||
children?: ReactNode; | ||
} | ||
export interface RowProps { | ||
children?: ReactNode; | ||
} | ||
export interface ColumnProps { | ||
children?: ReactNode; | ||
className?: string; | ||
col?: number; | ||
sm?: number; | ||
md?: number; | ||
lg?: number; | ||
xl?: number; | ||
xxl?: number; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { FC } from 'react'; | ||
import { ColumnProps } from './Grid.types'; | ||
declare const Column: FC<ColumnProps>; | ||
export default Column; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { FC } from 'react'; | ||
import { ContainerProps } from './Grid.types'; | ||
declare const Container: FC<ContainerProps>; | ||
export default Container; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { FC } from 'react'; | ||
import { GridProps, GridComposition } from './Grid.types'; | ||
declare const Grid: FC<GridProps> & GridComposition; | ||
export default Grid; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { FC } from 'react'; | ||
import { RowProps } from './Grid.types'; | ||
declare const Row: FC<RowProps>; | ||
export default Row; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
export interface ImageProps { | ||
width: number; | ||
height: number; | ||
image: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { FC } from 'react'; | ||
import { ImageProps } from './Image.types'; | ||
declare const Image: FC<ImageProps>; | ||
export default Image; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { FC, CSSProperties, ChangeEventHandler, KeyboardEvent } from 'react'; | ||
export interface InputProps { | ||
id?: string; | ||
value: any; | ||
placeholder?: string; | ||
type: 'email' | 'password' | 'tel' | 'text' | 'url'; | ||
name?: string; | ||
help?: string; | ||
className?: string; | ||
size: 'small' | 'medium' | 'large'; | ||
status: 'error' | 'success' | 'default'; | ||
style?: CSSProperties; | ||
onChange?: ChangeEventHandler; | ||
visibleTitle?: boolean; | ||
disabled?: boolean; | ||
onPressEnter?: KeyboardEvent; | ||
} | ||
export interface InputComposition { | ||
Textarea: FC<InputProps>; | ||
Password: FC<InputProps>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { FC } from 'react'; | ||
import { InputProps } from './Input.types'; | ||
declare const InputContainer: FC<InputProps>; | ||
export default InputContainer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { FC } from 'react'; | ||
import { InputComposition, InputProps } from './Input.types'; | ||
declare const Input: FC<InputProps> & InputComposition; | ||
export default Input; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { FC } from 'react'; | ||
import { InputProps } from './Input.types'; | ||
declare const Password: FC<InputProps>; | ||
export default Password; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { FC } from 'react'; | ||
import { InputProps } from './Input.types'; | ||
declare const Textarea: FC<InputProps>; | ||
export default Textarea; |
13 changes: 13 additions & 0 deletions
13
dist/Avatar/types/components/Notification/Notification.types.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { CSSProperties, ReactNode } from 'react'; | ||
export interface NotificationProps { | ||
id: string; | ||
title: string; | ||
message: string; | ||
dispatch: (e: any) => void; | ||
className?: string; | ||
style?: CSSProperties; | ||
type: 'SUCCESS' | 'ERROR' | 'WARNING' | 'INFO'; | ||
} | ||
export interface NotificationProviderProps { | ||
children?: ReactNode; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/// <reference types="react" /> | ||
declare const NotificationContext: import("react").Context<any>; | ||
export default NotificationContext; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { FC } from 'react'; | ||
import { NotificationProviderProps } from './Notification.types'; | ||
declare const NotificationProvider: FC<NotificationProviderProps>; | ||
export default NotificationProvider; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { FC } from 'react'; | ||
import { NotificationProps } from './Notification.types'; | ||
declare const Notification: FC<NotificationProps>; | ||
export default Notification; |
2 changes: 2 additions & 0 deletions
2
dist/Avatar/types/components/Notification/useNotification.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
declare const useNotification: () => (props: any) => void; | ||
export default useNotification; |
11 changes: 11 additions & 0 deletions
11
dist/Avatar/types/components/Pagination/Pagination.types.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { CSSProperties } from 'react'; | ||
export interface PaginationProps { | ||
className?: string; | ||
style?: CSSProperties; | ||
arrowShow?: boolean; | ||
onPageChange: (e: any) => void; | ||
totalCount: number; | ||
siblingCount: number; | ||
currentPage: number; | ||
pageSize: number; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { FC } from 'react'; | ||
import { PaginationProps } from './Pagination.types'; | ||
declare const Pagination: FC<PaginationProps>; | ||
export default Pagination; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
export declare const DOTS = "..."; | ||
interface usePaginationProps { | ||
totalCount: number; | ||
pageSize: number; | ||
siblingCount: number; | ||
currentPage: number; | ||
} | ||
export declare const usePagination: (props: usePaginationProps) => any[] | undefined; | ||
export {}; |
10 changes: 10 additions & 0 deletions
10
dist/Avatar/types/components/SliderBeforeAfter/SliderBeforeAfter.types.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { ReactNode } from 'react'; | ||
export interface SliderBeforeAfterProps { | ||
size: number; | ||
aspectRatio?: string; | ||
urlFirstImage?: string; | ||
urlSecondImage?: string; | ||
alt?: string; | ||
componentAfter?: ReactNode; | ||
componentBefore?: ReactNode; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { FC } from 'react'; | ||
import { SliderBeforeAfterProps } from './SliderBeforeAfter.types'; | ||
declare const SliderBeforeAfter: FC<SliderBeforeAfterProps>; | ||
export default SliderBeforeAfter; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { FC, ReactNode } from 'react'; | ||
export interface TagsProps { | ||
children?: ReactNode; | ||
} | ||
export interface TagProps { | ||
className?: string; | ||
children?: ReactNode; | ||
activ?: boolean; | ||
onClick?: (e?: any) => void; | ||
} | ||
export interface TagsComposition { | ||
Tag: FC<TagProps>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { FC } from 'react'; | ||
import { TagsComposition, TagsProps } from './Tags.types'; | ||
declare const Tags: FC<TagsProps> & TagsComposition; | ||
export default Tags; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { FC } from 'react'; | ||
import { TagProps } from './Tags.types'; | ||
declare const Tag: FC<TagProps>; | ||
export default Tag; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { ReactNode } from 'react'; | ||
export interface ThemeProps { | ||
theme: string; | ||
themes?: Record<string, string>; | ||
children?: ReactNode; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import React, { FC } from 'react'; | ||
import { ThemeProps } from './Theme.types'; | ||
declare const ThemeProvider: FC<ThemeProps>; | ||
export default ThemeProvider; | ||
export declare const ThemeContext: React.Context<any>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export { default as light } from './light.module.css'; | ||
export { default as dark } from './dark.module.css'; |
11 changes: 11 additions & 0 deletions
11
dist/Avatar/types/components/Typography/Typography.types.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { ReactNode, CSSProperties } from 'react'; | ||
export interface TypographyProps { | ||
type: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'caption' | 'text'; | ||
color?: 'accent' | 'text' | 'secondary'; | ||
children?: ReactNode; | ||
fontStyle?: 'normal' | 'italic' | 'oblique'; | ||
transform?: 'capitalize' | 'lowercase' | 'uppercase'; | ||
decoration?: 'underline' | 'overline' | 'line-through'; | ||
className?: string; | ||
style?: CSSProperties; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { FC } from 'react'; | ||
import { TypographyProps } from './Typography.types'; | ||
declare const Typography: FC<TypographyProps>; | ||
export default Typography; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { CSSProperties } from 'react'; | ||
export interface ZoomImageProps { | ||
className?: string; | ||
style?: CSSProperties; | ||
src: string; | ||
alt: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { FC } from 'react'; | ||
import { ZoomImageProps } from './ZoomImage.types'; | ||
declare const ZoomImage: FC<ZoomImageProps>; | ||
export default ZoomImage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
declare const useEventListener: (eventName: any, handler: any, element?: any) => void; | ||
export default useEventListener; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
export { default as Button } from './Button'; | ||
export { default as Pagination } from './Pagination'; | ||
export { default as Form } from './Form'; | ||
export { default as ZoomImage } from './ZoomImage'; | ||
export { default as SliderBeforeAfter } from './SliderBeforeAfter'; | ||
export { default as Typography } from './Typography'; | ||
export { default as NotificationProvider } from './Notification'; | ||
export { default as Grid } from './Grid'; | ||
export { default as Image } from './Image'; | ||
export { default as Avatar } from './Avatar'; | ||
export { default as Input } from './Input'; | ||
export { default as Tags } from './Tags'; | ||
export { default as ThemeProvider } from './ThemeProvider'; | ||
export { default as useEventListener } from './ZoomImage/useEventListener'; | ||
export { default as useForm } from './Form/useForm'; | ||
export { default as useNotification } from './Notification/useNotification'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from './components'; |
Oops, something went wrong.