@ballistix.digital/react-components 0.4.64 → 0.4.65
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/index.d.ts +15 -15
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ declare const base$i: {
|
|
|
18
18
|
};
|
|
19
19
|
type TAvatarElementStyles = DeepPartial$1<typeof base$i>;
|
|
20
20
|
|
|
21
|
-
type TProps$
|
|
21
|
+
type TProps$e = {
|
|
22
22
|
src?: string | undefined;
|
|
23
23
|
placeholder?: string | undefined;
|
|
24
24
|
children?: ReactNode | ReactNode[] | string;
|
|
@@ -30,7 +30,7 @@ type TProps$f = {
|
|
|
30
30
|
isLoading?: boolean;
|
|
31
31
|
styles?: TAvatarElementStyles;
|
|
32
32
|
};
|
|
33
|
-
declare const AvatarElement: FC<TProps$
|
|
33
|
+
declare const AvatarElement: FC<TProps$e>;
|
|
34
34
|
|
|
35
35
|
declare const base$h: {
|
|
36
36
|
container: string;
|
|
@@ -39,7 +39,7 @@ declare const base$h: {
|
|
|
39
39
|
};
|
|
40
40
|
type TBadgeElementStyles = DeepPartial$1<typeof base$h>;
|
|
41
41
|
|
|
42
|
-
type TProps$
|
|
42
|
+
type TProps$d = {
|
|
43
43
|
children: string | ReactNode;
|
|
44
44
|
color?: 'gray' | 'red' | 'yellow' | 'green' | 'blue' | 'indigo' | 'purple' | 'pink';
|
|
45
45
|
type?: 'normal' | 'indicator' | 'close';
|
|
@@ -50,17 +50,9 @@ type TProps$e = {
|
|
|
50
50
|
onClose?: () => void;
|
|
51
51
|
styles?: TBadgeElementStyles;
|
|
52
52
|
};
|
|
53
|
-
declare const BadgeElement: FC<TProps$
|
|
54
|
-
|
|
55
|
-
declare const base$g: {
|
|
56
|
-
container: string;
|
|
57
|
-
content: string;
|
|
58
|
-
icon: string;
|
|
59
|
-
spinner: string;
|
|
60
|
-
};
|
|
61
|
-
type TButtonElementStyles = DeepPartial$1<typeof base$g>;
|
|
53
|
+
declare const BadgeElement: FC<TProps$d>;
|
|
62
54
|
|
|
63
|
-
type
|
|
55
|
+
type TButtonElementProps = {
|
|
64
56
|
children: string | ReactNode;
|
|
65
57
|
innerRef?: RefObject<HTMLButtonElement>;
|
|
66
58
|
htmlType?: 'button' | 'submit';
|
|
@@ -72,7 +64,15 @@ type TProps$d = {
|
|
|
72
64
|
styles?: TButtonElementStyles;
|
|
73
65
|
onClick: () => void;
|
|
74
66
|
};
|
|
75
|
-
declare const ButtonElement: FC<
|
|
67
|
+
declare const ButtonElement: FC<TButtonElementProps>;
|
|
68
|
+
|
|
69
|
+
declare const base$g: {
|
|
70
|
+
container: string;
|
|
71
|
+
content: string;
|
|
72
|
+
icon: string;
|
|
73
|
+
spinner: string;
|
|
74
|
+
};
|
|
75
|
+
type TButtonElementStyles = DeepPartial$1<typeof base$g>;
|
|
76
76
|
|
|
77
77
|
declare const base$f: {
|
|
78
78
|
container: string;
|
|
@@ -745,4 +745,4 @@ type TProps = {
|
|
|
745
745
|
};
|
|
746
746
|
declare const SlideOverOverlay: FC<TProps>;
|
|
747
747
|
|
|
748
|
-
export { AvatarElement, BadgeElement, BreadcrumbsNavigation, ButtonElement, ButtonGroupElement, ContainerLayout, DividerLayout, DropdownElement, IconElement, InputGroupForm, ListContainerLayout, MediaObjectLayout, ModalOverlay, NotificationOverlay, PagePaginationNavigation, LayoutPanel as PanelLayout, PanelPaginationNavigation, SlideOverOverlay, TInputGroupFormProps, TInputGroupStyles, TTableListProps as TTableList2Props, TTableListProps$1 as TTableListProps, TTableListStyles, TabNavigation, TableList, TableList2, VerticalNavigation };
|
|
748
|
+
export { AvatarElement, BadgeElement, BreadcrumbsNavigation, ButtonElement, ButtonGroupElement, ContainerLayout, DividerLayout, DropdownElement, IconElement, InputGroupForm, ListContainerLayout, MediaObjectLayout, ModalOverlay, NotificationOverlay, PagePaginationNavigation, LayoutPanel as PanelLayout, PanelPaginationNavigation, SlideOverOverlay, TButtonElementProps, TInputGroupFormProps, TInputGroupStyles, TTableListProps as TTableList2Props, TTableListProps$1 as TTableListProps, TTableListStyles, TabNavigation, TableList, TableList2, VerticalNavigation };
|