@ballistix.digital/react-components 0.1.6 → 0.1.7
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 +595 -0
- package/dist/index.esm.js +0 -30
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +0 -30
- package/dist/index.js.map +1 -1
- package/package.json +4 -3
- package/dist/@types/components/Element/Avatar/AvatarElement.d.ts +0 -17
- package/dist/@types/components/Element/Avatar/AvatarElement.styles.d.ts +0 -14
- package/dist/@types/components/Element/Avatar/index.d.ts +0 -3
- package/dist/@types/components/Element/Badge/BadgeElement.d.ts +0 -15
- package/dist/@types/components/Element/Badge/BadgeElement.styles.d.ts +0 -11
- package/dist/@types/components/Element/Badge/index.d.ts +0 -3
- package/dist/@types/components/Element/Button/ButtonElement.d.ts +0 -15
- package/dist/@types/components/Element/Button/ButtonElement.styles.d.ts +0 -9
- package/dist/@types/components/Element/Button/index.d.ts +0 -3
- package/dist/@types/components/Element/ButtonGroup/ButtonGroupElement.d.ts +0 -8
- package/dist/@types/components/Element/ButtonGroup/ButtonGroupElement.styles.d.ts +0 -12
- package/dist/@types/components/Element/ButtonGroup/index.d.ts +0 -3
- package/dist/@types/components/Element/Dropdown/DropdownElement.d.ts +0 -15
- package/dist/@types/components/Element/Dropdown/DropdownElement.styles.d.ts +0 -15
- package/dist/@types/components/Element/Dropdown/index.d.ts +0 -3
- package/dist/@types/components/Layout/Container/ContainerLayout.d.ts +0 -9
- package/dist/@types/components/Layout/Container/ContainerLayout.styles.d.ts +0 -17
- package/dist/@types/components/Layout/Container/index.d.ts +0 -3
- package/dist/@types/components/Layout/Divider/DividerLayout.d.ts +0 -9
- package/dist/@types/components/Layout/Divider/DividerLayout.styles.d.ts +0 -13
- package/dist/@types/components/Layout/Divider/index.d.ts +0 -3
- package/dist/@types/components/Layout/ListContainer/ListContainerLayout.d.ts +0 -9
- package/dist/@types/components/Layout/ListContainer/ListContainerLayout.styles.d.ts +0 -11
- package/dist/@types/components/Layout/ListContainer/index.d.ts +0 -3
- package/dist/@types/components/Layout/MediaObject/MediaObjectLayout.d.ts +0 -12
- package/dist/@types/components/Layout/MediaObject/MediaObjectLayout.styles.d.ts +0 -13
- package/dist/@types/components/Layout/MediaObject/index.d.ts +0 -3
- package/dist/@types/components/Layout/Panel/PanelLayout.d.ts +0 -16
- package/dist/@types/components/Layout/Panel/PanelLayout.styles.d.ts +0 -6
- package/dist/@types/components/Layout/Panel/index.d.ts +0 -3
- package/dist/@types/components/Navigation/Breadcrumbs/BreadcrumbsNavigation.d.ts +0 -15
- package/dist/@types/components/Navigation/Breadcrumbs/BreadcrumbsNavigation.styles.d.ts +0 -145
- package/dist/@types/components/Navigation/Breadcrumbs/index.d.ts +0 -3
- package/dist/@types/components/Navigation/PagePagination/PagePaginationNavigation.d.ts +0 -10
- package/dist/@types/components/Navigation/PagePagination/PagePaginationNavigation.styles.d.ts +0 -45
- package/dist/@types/components/Navigation/PagePagination/index.d.ts +0 -3
- package/dist/@types/components/Navigation/PanelPagination/PanelPagination.d.ts +0 -15
- package/dist/@types/components/Navigation/PanelPagination/PanelPagination.styles.d.ts +0 -43
- package/dist/@types/components/Navigation/PanelPagination/index.d.ts +0 -3
- package/dist/@types/components/Navigation/Sidebar/SidebarNavigation.d.ts +0 -35
- package/dist/@types/components/Navigation/Sidebar/SidebarNavigation.styles.d.ts +0 -29
- package/dist/@types/components/Navigation/Sidebar/index.d.ts +0 -3
- package/dist/@types/components/Navigation/Tab/TabNavigation.d.ts +0 -34
- package/dist/@types/components/Navigation/Tab/TabNavigation.styles.d.ts +0 -49
- package/dist/@types/components/Navigation/Tab/index.d.ts +0 -3
- package/dist/@types/components/Navigation/Vertical/VerticalNavigation.d.ts +0 -34
- package/dist/@types/components/Navigation/Vertical/VerticalNavigation.styles.d.ts +0 -23
- package/dist/@types/components/Navigation/Vertical/index.d.ts +0 -3
- package/dist/@types/components/Overlay/Modal/ModalOverlay.d.ts +0 -16
- package/dist/@types/components/Overlay/Modal/ModalOverlay.styles.d.ts +0 -64
- package/dist/@types/components/Overlay/Modal/index.d.ts +0 -3
- package/dist/@types/components/Overlay/Notification/NotificationOverlay.d.ts +0 -22
- package/dist/@types/components/Overlay/Notification/NotificationOverlay.styles.d.ts +0 -67
- package/dist/@types/components/Overlay/Notification/index.d.ts +0 -3
- package/dist/@types/components/Overlay/SlideOver/SlideOverOverlay.d.ts +0 -16
- package/dist/@types/components/Overlay/SlideOver/SlideOverOverlay.styles.d.ts +0 -66
- package/dist/@types/components/Overlay/SlideOver/index.d.ts +0 -3
- package/dist/@types/index.d.ts +0 -19
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
export type StylesType = {
|
|
2
|
-
container?: {
|
|
3
|
-
outer?: string;
|
|
4
|
-
inner?: string;
|
|
5
|
-
};
|
|
6
|
-
item?: {
|
|
7
|
-
container?: string;
|
|
8
|
-
background?: {
|
|
9
|
-
container?: string;
|
|
10
|
-
transition?: {
|
|
11
|
-
enter?: string;
|
|
12
|
-
enterFrom?: string;
|
|
13
|
-
enterTo?: string;
|
|
14
|
-
leave?: string;
|
|
15
|
-
leaveFrom?: string;
|
|
16
|
-
leaveTo?: string;
|
|
17
|
-
};
|
|
18
|
-
};
|
|
19
|
-
layout?: {
|
|
20
|
-
container?: string;
|
|
21
|
-
content?: string;
|
|
22
|
-
inner?: string;
|
|
23
|
-
};
|
|
24
|
-
panel?: {
|
|
25
|
-
container?: string;
|
|
26
|
-
transition?: {
|
|
27
|
-
enter?: string;
|
|
28
|
-
enterFrom?: string;
|
|
29
|
-
enterTo?: string;
|
|
30
|
-
leave?: string;
|
|
31
|
-
leaveFrom?: string;
|
|
32
|
-
leaveTo?: string;
|
|
33
|
-
};
|
|
34
|
-
};
|
|
35
|
-
};
|
|
36
|
-
};
|
|
37
|
-
declare const styles: {
|
|
38
|
-
container: {
|
|
39
|
-
outer: string;
|
|
40
|
-
inner: string;
|
|
41
|
-
};
|
|
42
|
-
item: {
|
|
43
|
-
container: string;
|
|
44
|
-
layout: {
|
|
45
|
-
container: string;
|
|
46
|
-
content: string;
|
|
47
|
-
inner: string;
|
|
48
|
-
};
|
|
49
|
-
panel: {
|
|
50
|
-
container: string;
|
|
51
|
-
transition: {
|
|
52
|
-
enter: string;
|
|
53
|
-
enterFrom: string;
|
|
54
|
-
enterTo: string;
|
|
55
|
-
leave: string;
|
|
56
|
-
leaveFrom: string;
|
|
57
|
-
leaveTo: string;
|
|
58
|
-
};
|
|
59
|
-
};
|
|
60
|
-
};
|
|
61
|
-
xs: string;
|
|
62
|
-
sm: string;
|
|
63
|
-
md: string;
|
|
64
|
-
lg: string;
|
|
65
|
-
xl: string;
|
|
66
|
-
};
|
|
67
|
-
export default styles;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { FC, ReactNode } from 'react';
|
|
2
|
-
import { StylesType } from '.';
|
|
3
|
-
export interface Props {
|
|
4
|
-
trigger?: ({ onOpen, onClose, }: {
|
|
5
|
-
onOpen: () => void;
|
|
6
|
-
onClose: () => void;
|
|
7
|
-
}) => ReactNode;
|
|
8
|
-
children: ({ onOpen, onClose, }: {
|
|
9
|
-
onOpen: () => void;
|
|
10
|
-
onClose: () => void;
|
|
11
|
-
}) => ReactNode;
|
|
12
|
-
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
13
|
-
styles?: StylesType;
|
|
14
|
-
}
|
|
15
|
-
declare const SlideOverOverlay: FC<Props>;
|
|
16
|
-
export default SlideOverOverlay;
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
export type StylesType = {
|
|
2
|
-
container?: string;
|
|
3
|
-
background?: {
|
|
4
|
-
container?: string;
|
|
5
|
-
transition?: {
|
|
6
|
-
enter?: string;
|
|
7
|
-
enterFrom?: string;
|
|
8
|
-
enterTo?: string;
|
|
9
|
-
leave?: string;
|
|
10
|
-
leaveFrom?: string;
|
|
11
|
-
leaveTo?: string;
|
|
12
|
-
};
|
|
13
|
-
};
|
|
14
|
-
layout?: {
|
|
15
|
-
container?: string;
|
|
16
|
-
content?: string;
|
|
17
|
-
inner?: string;
|
|
18
|
-
};
|
|
19
|
-
panel?: {
|
|
20
|
-
container?: string;
|
|
21
|
-
transition?: {
|
|
22
|
-
enter?: string;
|
|
23
|
-
enterFrom?: string;
|
|
24
|
-
enterTo?: string;
|
|
25
|
-
leave?: string;
|
|
26
|
-
leaveFrom?: string;
|
|
27
|
-
leaveTo?: string;
|
|
28
|
-
};
|
|
29
|
-
};
|
|
30
|
-
};
|
|
31
|
-
declare const styles: {
|
|
32
|
-
container: string;
|
|
33
|
-
background: {
|
|
34
|
-
container: string;
|
|
35
|
-
transition: {
|
|
36
|
-
enter: string;
|
|
37
|
-
enterFrom: string;
|
|
38
|
-
enterTo: string;
|
|
39
|
-
leave: string;
|
|
40
|
-
leaveFrom: string;
|
|
41
|
-
leaveTo: string;
|
|
42
|
-
};
|
|
43
|
-
};
|
|
44
|
-
layout: {
|
|
45
|
-
container: string;
|
|
46
|
-
content: string;
|
|
47
|
-
inner: string;
|
|
48
|
-
};
|
|
49
|
-
panel: {
|
|
50
|
-
container: string;
|
|
51
|
-
transition: {
|
|
52
|
-
enter: string;
|
|
53
|
-
enterFrom: string;
|
|
54
|
-
enterTo: string;
|
|
55
|
-
leave: string;
|
|
56
|
-
leaveFrom: string;
|
|
57
|
-
leaveTo: string;
|
|
58
|
-
};
|
|
59
|
-
};
|
|
60
|
-
xs: string;
|
|
61
|
-
sm: string;
|
|
62
|
-
md: string;
|
|
63
|
-
lg: string;
|
|
64
|
-
xl: string;
|
|
65
|
-
};
|
|
66
|
-
export default styles;
|
package/dist/@types/index.d.ts
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
export { default as Avatar } from 'components/Element/Avatar';
|
|
2
|
-
export { default as Button } from 'components/Element/Button';
|
|
3
|
-
export { default as ButtonGroup } from 'components/Element/ButtonGroup';
|
|
4
|
-
export { default as Dropdown } from 'components/Element/Dropdown';
|
|
5
|
-
export { default as Badge } from 'components/Element/Badge';
|
|
6
|
-
export { default as Container } from 'components/Layout/Container';
|
|
7
|
-
export { default as Divider } from 'components/Layout/Divider';
|
|
8
|
-
export { default as ListContainer } from 'components/Layout/ListContainer';
|
|
9
|
-
export { default as MediaObject } from 'components/Layout/MediaObject';
|
|
10
|
-
export { default as Panel } from 'components/Layout/Panel';
|
|
11
|
-
export { default as Breadcrumbs } from 'components/Navigation/Breadcrumbs';
|
|
12
|
-
export { default as PanelPagination } from 'components/Navigation/PanelPagination';
|
|
13
|
-
export { default as PagePagination } from 'components/Navigation/PagePagination';
|
|
14
|
-
export { default as Sidebar } from 'components/Navigation/Sidebar';
|
|
15
|
-
export { default as Tab } from 'components/Navigation/Tab';
|
|
16
|
-
export { default as Vertical } from 'components/Navigation/Vertical';
|
|
17
|
-
export { default as Modal } from 'components/Overlay/Modal';
|
|
18
|
-
export { default as Notification } from 'components/Overlay/Notification';
|
|
19
|
-
export { default as SlideOver } from 'components/Overlay/SlideOver';
|