blue-react 8.1.7 → 8.3.1
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/LICENSE +164 -164
- package/README.md +59 -59
- package/dist/components/ActionMenu.js +2 -2
- package/dist/components/ActionMenuSwitch.js +2 -2
- package/dist/components/Body.js +2 -2
- package/dist/components/BodyRounded.js +2 -2
- package/dist/components/Caret.js +2 -2
- package/dist/components/DocumentView.js +2 -2
- package/dist/components/Grid.js +287 -287
- package/dist/components/Header.js +2 -2
- package/dist/components/HeaderTitle.js +3 -3
- package/dist/components/Intro.js +2 -2
- package/dist/components/Layout.js +19 -19
- package/dist/components/MenuItem.js +11 -20
- package/dist/components/Modal.js +11 -7
- package/dist/components/ModalProvider.js +18 -9
- package/dist/components/Outside.js +6 -6
- package/dist/components/Page.js +2 -2
- package/dist/components/Search.js +2 -2
- package/dist/components/SidebarMenu.js +2 -2
- package/dist/components/Switch.js +2 -2
- package/dist/style.css +8701 -4960
- package/dist/style.css.map +1 -0
- package/dist/style.min.css +10 -12
- package/dist/style.scss +28 -28
- package/dist/styles/_action-menu.scss +81 -81
- package/dist/styles/_bootstrap-mixins_overwritten.scss +106 -106
- package/dist/styles/_bootstrap-optimizations.scss +13 -13
- package/dist/styles/_bootstrap-variables.scss +15 -15
- package/dist/styles/_bootstrap.scss +56 -56
- package/dist/styles/_caret.scss +50 -50
- package/dist/styles/_document-view.scss +6 -6
- package/dist/styles/_general.scss +177 -177
- package/dist/styles/_grid.scss +381 -381
- package/dist/styles/_hover.scss +42 -42
- package/dist/styles/_keyframes.scss +73 -73
- package/dist/styles/_mixins.scss +6 -6
- package/dist/styles/_router.scss +18 -18
- package/dist/styles/_search.scss +61 -61
- package/dist/styles/_status.scss +149 -149
- package/dist/styles/_switch.scss +21 -21
- package/dist/styles/_tooltips.scss +189 -189
- package/dist/styles/_variables.scss +97 -97
- package/dist/styles/mixins/_action-menu.scss +68 -68
- package/dist/styles/mixins/_custom-property.scss +10 -10
- package/dist/styles/mixins/_misc.scss +33 -33
- package/dist/styles/mixins/_scroll-shadow.scss +9 -9
- package/dist/styles/mixins/_sidebar.scss +156 -156
- package/dist/styles/mixins/_switch.scss +85 -85
- package/dist/types/components/ActionMenu.d.ts +22 -22
- package/dist/types/components/ActionMenuSwitch.d.ts +11 -11
- package/dist/types/components/Body.d.ts +21 -21
- package/dist/types/components/BodyRounded.d.ts +10 -10
- package/dist/types/components/Caret.d.ts +16 -16
- package/dist/types/components/DocumentView.d.ts +23 -23
- package/dist/types/components/Grid.d.ts +110 -110
- package/dist/types/components/Header.d.ts +8 -8
- package/dist/types/components/HeaderTitle.d.ts +29 -29
- package/dist/types/components/Intro.d.ts +23 -23
- package/dist/types/components/Layout.d.ts +120 -120
- package/dist/types/components/MenuItem.d.ts +69 -69
- package/dist/types/components/Modal.d.ts +25 -24
- package/dist/types/components/ModalProvider.d.ts +11 -11
- package/dist/types/components/Outside.d.ts +14 -14
- package/dist/types/components/Page.d.ts +12 -12
- package/dist/types/components/Search.d.ts +30 -30
- package/dist/types/components/SidebarMenu.d.ts +32 -32
- package/dist/types/components/Status.d.ts +12 -12
- package/dist/types/components/StatusProvider.d.ts +15 -15
- package/dist/types/components/Switch.d.ts +21 -21
- package/dist/types/components/Utilities.d.ts +17 -17
- package/dist/types/components/shared.d.ts +15 -15
- package/index.d.ts +65 -65
- package/index.js +27 -27
- package/package.json +88 -88
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
export interface SearchProps {
|
|
3
|
-
autoFocus?: boolean;
|
|
4
|
-
/**
|
|
5
|
-
* Is component inside of a page?
|
|
6
|
-
*/
|
|
7
|
-
body?: boolean;
|
|
8
|
-
className?: string;
|
|
9
|
-
icon?: any;
|
|
10
|
-
onChange?: (event: React.ChangeEvent) => void;
|
|
11
|
-
onSubmit?: (event: React.FormEvent) => void;
|
|
12
|
-
placeholder?: string;
|
|
13
|
-
/**
|
|
14
|
-
* Allow reset?
|
|
15
|
-
*/
|
|
16
|
-
reset?: boolean;
|
|
17
|
-
/**
|
|
18
|
-
* Define custom icon for the reset button.
|
|
19
|
-
*/
|
|
20
|
-
resetIcon?: any;
|
|
21
|
-
/**
|
|
22
|
-
* Is component inside of the sidebar?
|
|
23
|
-
*/
|
|
24
|
-
sidebar?: boolean;
|
|
25
|
-
value?: string;
|
|
26
|
-
}
|
|
27
|
-
/**
|
|
28
|
-
* A search bar that can be placed to the sidebar or on a page.
|
|
29
|
-
*/
|
|
30
|
-
export default function Search(props: SearchProps): JSX.Element;
|
|
1
|
+
import React from "react";
|
|
2
|
+
export interface SearchProps {
|
|
3
|
+
autoFocus?: boolean;
|
|
4
|
+
/**
|
|
5
|
+
* Is component inside of a page?
|
|
6
|
+
*/
|
|
7
|
+
body?: boolean;
|
|
8
|
+
className?: string;
|
|
9
|
+
icon?: any;
|
|
10
|
+
onChange?: (event: React.ChangeEvent) => void;
|
|
11
|
+
onSubmit?: (event: React.FormEvent) => void;
|
|
12
|
+
placeholder?: string;
|
|
13
|
+
/**
|
|
14
|
+
* Allow reset?
|
|
15
|
+
*/
|
|
16
|
+
reset?: boolean;
|
|
17
|
+
/**
|
|
18
|
+
* Define custom icon for the reset button.
|
|
19
|
+
*/
|
|
20
|
+
resetIcon?: any;
|
|
21
|
+
/**
|
|
22
|
+
* Is component inside of the sidebar?
|
|
23
|
+
*/
|
|
24
|
+
sidebar?: boolean;
|
|
25
|
+
value?: string;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* A search bar that can be placed to the sidebar or on a page.
|
|
29
|
+
*/
|
|
30
|
+
export default function Search(props: SearchProps): JSX.Element;
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
export interface SidebarMenuProps {
|
|
3
|
-
/**
|
|
4
|
-
* Extends the class name by the sidebar.
|
|
5
|
-
*/
|
|
6
|
-
sidebarClass?: string;
|
|
7
|
-
/**
|
|
8
|
-
* Sets the `style` prop by the sidebar.
|
|
9
|
-
*/
|
|
10
|
-
sidebarStyle?: object;
|
|
11
|
-
/**
|
|
12
|
-
* Extends the class name by the menu.
|
|
13
|
-
*/
|
|
14
|
-
menuClass?: string;
|
|
15
|
-
/**
|
|
16
|
-
* Sets the `style` prop by the menu.
|
|
17
|
-
*/
|
|
18
|
-
menuStyle?: object;
|
|
19
|
-
/**
|
|
20
|
-
* Content on top of the menu.
|
|
21
|
-
*/
|
|
22
|
-
topContent?: any;
|
|
23
|
-
/**
|
|
24
|
-
* Content for the bottom part of the sidebar.
|
|
25
|
-
*/
|
|
26
|
-
bottomContent?: any;
|
|
27
|
-
children?: any;
|
|
28
|
-
}
|
|
29
|
-
/**
|
|
30
|
-
* Sidebar for the `Layout` component.
|
|
31
|
-
*/
|
|
32
|
-
export default function SidebarMenu(props: SidebarMenuProps): JSX.Element;
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export interface SidebarMenuProps {
|
|
3
|
+
/**
|
|
4
|
+
* Extends the class name by the sidebar.
|
|
5
|
+
*/
|
|
6
|
+
sidebarClass?: string;
|
|
7
|
+
/**
|
|
8
|
+
* Sets the `style` prop by the sidebar.
|
|
9
|
+
*/
|
|
10
|
+
sidebarStyle?: object;
|
|
11
|
+
/**
|
|
12
|
+
* Extends the class name by the menu.
|
|
13
|
+
*/
|
|
14
|
+
menuClass?: string;
|
|
15
|
+
/**
|
|
16
|
+
* Sets the `style` prop by the menu.
|
|
17
|
+
*/
|
|
18
|
+
menuStyle?: object;
|
|
19
|
+
/**
|
|
20
|
+
* Content on top of the menu.
|
|
21
|
+
*/
|
|
22
|
+
topContent?: any;
|
|
23
|
+
/**
|
|
24
|
+
* Content for the bottom part of the sidebar.
|
|
25
|
+
*/
|
|
26
|
+
bottomContent?: any;
|
|
27
|
+
children?: any;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* Sidebar for the `Layout` component.
|
|
31
|
+
*/
|
|
32
|
+
export default function SidebarMenu(props: SidebarMenuProps): JSX.Element;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { ReactNode } from "react";
|
|
2
|
-
import { StatusAlert, StatusType } from "./shared";
|
|
3
|
-
export interface StatusProps {
|
|
4
|
-
alert?: StatusAlert;
|
|
5
|
-
onUnsetAlert?: () => void;
|
|
6
|
-
successIcon?: ReactNode;
|
|
7
|
-
infoIcon?: ReactNode;
|
|
8
|
-
warningIcon?: ReactNode;
|
|
9
|
-
dangerIcon?: ReactNode;
|
|
10
|
-
status?: StatusType;
|
|
11
|
-
}
|
|
12
|
-
export default function Status({ alert, onUnsetAlert, successIcon, infoIcon, warningIcon, dangerIcon, status }: StatusProps): JSX.Element;
|
|
1
|
+
import { ReactNode } from "react";
|
|
2
|
+
import { StatusAlert, StatusType } from "./shared";
|
|
3
|
+
export interface StatusProps {
|
|
4
|
+
alert?: StatusAlert;
|
|
5
|
+
onUnsetAlert?: () => void;
|
|
6
|
+
successIcon?: ReactNode;
|
|
7
|
+
infoIcon?: ReactNode;
|
|
8
|
+
warningIcon?: ReactNode;
|
|
9
|
+
dangerIcon?: ReactNode;
|
|
10
|
+
status?: StatusType;
|
|
11
|
+
}
|
|
12
|
+
export default function Status({ alert, onUnsetAlert, successIcon, infoIcon, warningIcon, dangerIcon, status }: StatusProps): JSX.Element;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { ReactNode } from "react";
|
|
2
|
-
import { StatusAlert, StatusType } from "./shared";
|
|
3
|
-
export interface StatusProviderProps {
|
|
4
|
-
children?: ReactNode;
|
|
5
|
-
successIcon?: ReactNode;
|
|
6
|
-
infoIcon?: ReactNode;
|
|
7
|
-
warningIcon?: ReactNode;
|
|
8
|
-
dangerIcon?: ReactNode;
|
|
9
|
-
}
|
|
10
|
-
declare const StatusProvider: ({ children, successIcon, infoIcon, warningIcon, dangerIcon, ...rest }: StatusProviderProps) => JSX.Element;
|
|
11
|
-
declare const useStatus: () => {
|
|
12
|
-
setAlert: (alert: StatusAlert | null) => void;
|
|
13
|
-
setStatus: (status: StatusType) => void;
|
|
14
|
-
};
|
|
15
|
-
export { useStatus, StatusProvider };
|
|
1
|
+
import { ReactNode } from "react";
|
|
2
|
+
import { StatusAlert, StatusType } from "./shared";
|
|
3
|
+
export interface StatusProviderProps {
|
|
4
|
+
children?: ReactNode;
|
|
5
|
+
successIcon?: ReactNode;
|
|
6
|
+
infoIcon?: ReactNode;
|
|
7
|
+
warningIcon?: ReactNode;
|
|
8
|
+
dangerIcon?: ReactNode;
|
|
9
|
+
}
|
|
10
|
+
declare const StatusProvider: ({ children, successIcon, infoIcon, warningIcon, dangerIcon, ...rest }: StatusProviderProps) => JSX.Element;
|
|
11
|
+
declare const useStatus: () => {
|
|
12
|
+
setAlert: (alert: StatusAlert | null) => void;
|
|
13
|
+
setStatus: (status: StatusType) => void;
|
|
14
|
+
};
|
|
15
|
+
export { useStatus, StatusProvider };
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
export interface SwitchProps {
|
|
3
|
-
className?: string;
|
|
4
|
-
checked?: boolean;
|
|
5
|
-
onChange?: (event: React.ChangeEvent) => void;
|
|
6
|
-
/**
|
|
7
|
-
* Sets label inside of the switch. If you set this, you should also set the className "lg" to make the switch larger.
|
|
8
|
-
*/
|
|
9
|
-
sliderLabel?: string;
|
|
10
|
-
/**
|
|
11
|
-
* You can change the type of the wrapper element. If you do, the `onChange` event might not be triggered.
|
|
12
|
-
*/
|
|
13
|
-
elementType?: string;
|
|
14
|
-
disabled?: boolean;
|
|
15
|
-
}
|
|
16
|
-
/**
|
|
17
|
-
* Switch.
|
|
18
|
-
*/
|
|
19
|
-
export default function Switch({ className, checked, onChange, sliderLabel, disabled, elementType }: SwitchProps): React.ReactElement<{
|
|
20
|
-
className: string;
|
|
21
|
-
}, string | React.JSXElementConstructor<any>>;
|
|
1
|
+
import React from "react";
|
|
2
|
+
export interface SwitchProps {
|
|
3
|
+
className?: string;
|
|
4
|
+
checked?: boolean;
|
|
5
|
+
onChange?: (event: React.ChangeEvent) => void;
|
|
6
|
+
/**
|
|
7
|
+
* Sets label inside of the switch. If you set this, you should also set the className "lg" to make the switch larger.
|
|
8
|
+
*/
|
|
9
|
+
sliderLabel?: string;
|
|
10
|
+
/**
|
|
11
|
+
* You can change the type of the wrapper element. If you do, the `onChange` event might not be triggered.
|
|
12
|
+
*/
|
|
13
|
+
elementType?: string;
|
|
14
|
+
disabled?: boolean;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* Switch.
|
|
18
|
+
*/
|
|
19
|
+
export default function Switch({ className, checked, onChange, sliderLabel, disabled, elementType }: SwitchProps): React.ReactElement<{
|
|
20
|
+
className: string;
|
|
21
|
+
}, string | React.JSXElementConstructor<any>>;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
export default Utilities;
|
|
2
|
-
declare namespace Utilities {
|
|
3
|
-
function hasClass(el: any, className: any): any;
|
|
4
|
-
function addClass(el: any, className: any): void;
|
|
5
|
-
function removeClass(el: any, className: any): void;
|
|
6
|
-
function toggleClass(element: any, className: any): void;
|
|
7
|
-
function startLoading(): void;
|
|
8
|
-
function finishLoading(): void;
|
|
9
|
-
function showSuccess(): void;
|
|
10
|
-
function hideSuccess(): void;
|
|
11
|
-
function toggleActions(): void;
|
|
12
|
-
function resetAlertMessage(alertClassName?: string): void;
|
|
13
|
-
function setAlertMessage(message: any, alertClassName?: string, close?: any, detailText?: any): void;
|
|
14
|
-
function guid(): string;
|
|
15
|
-
function scrollToTop(): void;
|
|
16
|
-
function fetchData(input: any, init?: any, showErrorDetail?: boolean, onError?: any): Promise<Response>;
|
|
17
|
-
}
|
|
1
|
+
export default Utilities;
|
|
2
|
+
declare namespace Utilities {
|
|
3
|
+
function hasClass(el: any, className: any): any;
|
|
4
|
+
function addClass(el: any, className: any): void;
|
|
5
|
+
function removeClass(el: any, className: any): void;
|
|
6
|
+
function toggleClass(element: any, className: any): void;
|
|
7
|
+
function startLoading(): void;
|
|
8
|
+
function finishLoading(): void;
|
|
9
|
+
function showSuccess(): void;
|
|
10
|
+
function hideSuccess(): void;
|
|
11
|
+
function toggleActions(): void;
|
|
12
|
+
function resetAlertMessage(alertClassName?: string): void;
|
|
13
|
+
function setAlertMessage(message: any, alertClassName?: string, close?: any, detailText?: any): void;
|
|
14
|
+
function guid(): string;
|
|
15
|
+
function scrollToTop(): void;
|
|
16
|
+
function fetchData(input: any, init?: any, showErrorDetail?: boolean, onError?: any): Promise<Response>;
|
|
17
|
+
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
export declare type breakOption = "sm" | "md" | "lg" | "xl";
|
|
2
|
-
export declare type ModalType = "ask" | "tell" | "verify";
|
|
3
|
-
export declare type StatusType = null | "loading" | "success" | "info" | "warning" | "danger";
|
|
4
|
-
export interface StatusAlert {
|
|
5
|
-
title?: string;
|
|
6
|
-
alertClassName?: string;
|
|
7
|
-
close?: boolean;
|
|
8
|
-
detailText?: string;
|
|
9
|
-
status?: StatusType;
|
|
10
|
-
}
|
|
11
|
-
interface Phrases {
|
|
12
|
-
[key: string]: string[];
|
|
13
|
-
}
|
|
14
|
-
export declare function getPhrase(keyword: string, countryCode?: string | undefined, _phrases?: Phrases | undefined): string;
|
|
15
|
-
export {};
|
|
1
|
+
export declare type breakOption = "sm" | "md" | "lg" | "xl";
|
|
2
|
+
export declare type ModalType = "ask" | "tell" | "verify";
|
|
3
|
+
export declare type StatusType = null | "loading" | "success" | "info" | "warning" | "danger";
|
|
4
|
+
export interface StatusAlert {
|
|
5
|
+
title?: string;
|
|
6
|
+
alertClassName?: string;
|
|
7
|
+
close?: boolean;
|
|
8
|
+
detailText?: string;
|
|
9
|
+
status?: StatusType;
|
|
10
|
+
}
|
|
11
|
+
interface Phrases {
|
|
12
|
+
[key: string]: string[];
|
|
13
|
+
}
|
|
14
|
+
export declare function getPhrase(keyword: string, countryCode?: string | undefined, _phrases?: Phrases | undefined): string;
|
|
15
|
+
export {};
|
package/index.d.ts
CHANGED
|
@@ -1,65 +1,65 @@
|
|
|
1
|
-
declare global {
|
|
2
|
-
interface Window {
|
|
3
|
-
blueLayoutRef: any
|
|
4
|
-
toggleSidebarEvent: any
|
|
5
|
-
}
|
|
6
|
-
}
|
|
7
|
-
export default global
|
|
8
|
-
|
|
9
|
-
export { default as Layout } from "./dist/types/components/Layout"
|
|
10
|
-
export { LayoutProps } from "./dist/types/components/Layout"
|
|
11
|
-
|
|
12
|
-
export { default as ActionMenu } from "./dist/types/components/ActionMenu"
|
|
13
|
-
export { ActionMenuProps } from "./dist/types/components/ActionMenu"
|
|
14
|
-
|
|
15
|
-
export { default as ActionMenuSwitch } from "./dist/types/components/ActionMenuSwitch"
|
|
16
|
-
export { ActionMenuSwitchProps } from "./dist/types/components/ActionMenuSwitch"
|
|
17
|
-
|
|
18
|
-
export { default as Body } from "./dist/types/components/Body"
|
|
19
|
-
export { BodyProps } from "./dist/types/components/Body"
|
|
20
|
-
|
|
21
|
-
export { default as BodyRounded } from "./dist/types/components/BodyRounded"
|
|
22
|
-
export { BodyRoundedProps } from "./dist/types/components/BodyRounded"
|
|
23
|
-
|
|
24
|
-
export { default as Caret } from "./dist/types/components/Caret"
|
|
25
|
-
export { CaretProps } from "./dist/types/components/Caret"
|
|
26
|
-
|
|
27
|
-
export { default as DocumentView } from "./dist/types/components/DocumentView"
|
|
28
|
-
export { DocumentViewProps } from "./dist/types/components/DocumentView"
|
|
29
|
-
|
|
30
|
-
export { default as Header } from "./dist/types/components/Header"
|
|
31
|
-
export { HeaderProps } from "./dist/types/components/Header"
|
|
32
|
-
|
|
33
|
-
export { default as HeaderTitle } from "./dist/types/components/HeaderTitle"
|
|
34
|
-
export { HeaderTitleProps } from "./dist/types/components/HeaderTitle"
|
|
35
|
-
|
|
36
|
-
export { default as Intro } from "./dist/types/components/Intro"
|
|
37
|
-
export { IntroProps } from "./dist/types/components/Intro"
|
|
38
|
-
|
|
39
|
-
export { default as MenuItem } from "./dist/types/components/MenuItem"
|
|
40
|
-
export { MenuItemProps } from "./dist/types/components/MenuItem"
|
|
41
|
-
|
|
42
|
-
export { default as Modal } from "./dist/types/components/Modal"
|
|
43
|
-
export { ModalProps } from "./dist/types/components/Modal"
|
|
44
|
-
|
|
45
|
-
export { ModalProvider, useModal } from "./dist/types/components/ModalProvider"
|
|
46
|
-
|
|
47
|
-
export { default as Outside } from "./dist/types/components/Outside"
|
|
48
|
-
export { OutsideProps, useOutside } from "./dist/types/components/Outside"
|
|
49
|
-
|
|
50
|
-
export { default as Page } from "./dist/types/components/Page"
|
|
51
|
-
export { PageProps } from "./dist/types/components/Page"
|
|
52
|
-
|
|
53
|
-
export { default as Search } from "./dist/types/components/Search"
|
|
54
|
-
export { SearchProps } from "./dist/types/components/Search"
|
|
55
|
-
|
|
56
|
-
export { default as SidebarMenu } from "./dist/types/components/SidebarMenu"
|
|
57
|
-
export { SidebarMenuProps } from "./dist/types/components/SidebarMenu"
|
|
58
|
-
|
|
59
|
-
export { default as Status } from "./dist/types/components/Status"
|
|
60
|
-
export { StatusProps } from "./dist/types/components/Status"
|
|
61
|
-
|
|
62
|
-
export { default as Switch } from "./dist/types/components/Switch"
|
|
63
|
-
export { SwitchProps } from "./dist/types/components/Switch"
|
|
64
|
-
|
|
65
|
-
export { default as Utilities } from "./dist/types/components/Utilities"
|
|
1
|
+
declare global {
|
|
2
|
+
interface Window {
|
|
3
|
+
blueLayoutRef: any
|
|
4
|
+
toggleSidebarEvent: any
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
export default global
|
|
8
|
+
|
|
9
|
+
export { default as Layout } from "./dist/types/components/Layout"
|
|
10
|
+
export { LayoutProps } from "./dist/types/components/Layout"
|
|
11
|
+
|
|
12
|
+
export { default as ActionMenu } from "./dist/types/components/ActionMenu"
|
|
13
|
+
export { ActionMenuProps } from "./dist/types/components/ActionMenu"
|
|
14
|
+
|
|
15
|
+
export { default as ActionMenuSwitch } from "./dist/types/components/ActionMenuSwitch"
|
|
16
|
+
export { ActionMenuSwitchProps } from "./dist/types/components/ActionMenuSwitch"
|
|
17
|
+
|
|
18
|
+
export { default as Body } from "./dist/types/components/Body"
|
|
19
|
+
export { BodyProps } from "./dist/types/components/Body"
|
|
20
|
+
|
|
21
|
+
export { default as BodyRounded } from "./dist/types/components/BodyRounded"
|
|
22
|
+
export { BodyRoundedProps } from "./dist/types/components/BodyRounded"
|
|
23
|
+
|
|
24
|
+
export { default as Caret } from "./dist/types/components/Caret"
|
|
25
|
+
export { CaretProps } from "./dist/types/components/Caret"
|
|
26
|
+
|
|
27
|
+
export { default as DocumentView } from "./dist/types/components/DocumentView"
|
|
28
|
+
export { DocumentViewProps } from "./dist/types/components/DocumentView"
|
|
29
|
+
|
|
30
|
+
export { default as Header } from "./dist/types/components/Header"
|
|
31
|
+
export { HeaderProps } from "./dist/types/components/Header"
|
|
32
|
+
|
|
33
|
+
export { default as HeaderTitle } from "./dist/types/components/HeaderTitle"
|
|
34
|
+
export { HeaderTitleProps } from "./dist/types/components/HeaderTitle"
|
|
35
|
+
|
|
36
|
+
export { default as Intro } from "./dist/types/components/Intro"
|
|
37
|
+
export { IntroProps } from "./dist/types/components/Intro"
|
|
38
|
+
|
|
39
|
+
export { default as MenuItem } from "./dist/types/components/MenuItem"
|
|
40
|
+
export { MenuItemProps } from "./dist/types/components/MenuItem"
|
|
41
|
+
|
|
42
|
+
export { default as Modal } from "./dist/types/components/Modal"
|
|
43
|
+
export { ModalProps } from "./dist/types/components/Modal"
|
|
44
|
+
|
|
45
|
+
export { ModalProvider, useModal } from "./dist/types/components/ModalProvider"
|
|
46
|
+
|
|
47
|
+
export { default as Outside } from "./dist/types/components/Outside"
|
|
48
|
+
export { OutsideProps, useOutside } from "./dist/types/components/Outside"
|
|
49
|
+
|
|
50
|
+
export { default as Page } from "./dist/types/components/Page"
|
|
51
|
+
export { PageProps } from "./dist/types/components/Page"
|
|
52
|
+
|
|
53
|
+
export { default as Search } from "./dist/types/components/Search"
|
|
54
|
+
export { SearchProps } from "./dist/types/components/Search"
|
|
55
|
+
|
|
56
|
+
export { default as SidebarMenu } from "./dist/types/components/SidebarMenu"
|
|
57
|
+
export { SidebarMenuProps } from "./dist/types/components/SidebarMenu"
|
|
58
|
+
|
|
59
|
+
export { default as Status } from "./dist/types/components/Status"
|
|
60
|
+
export { StatusProps } from "./dist/types/components/Status"
|
|
61
|
+
|
|
62
|
+
export { default as Switch } from "./dist/types/components/Switch"
|
|
63
|
+
export { SwitchProps } from "./dist/types/components/Switch"
|
|
64
|
+
|
|
65
|
+
export { default as Utilities } from "./dist/types/components/Utilities"
|
package/index.js
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
exports.ActionMenu = require("./dist/components/ActionMenu.js")["default"]
|
|
2
|
-
exports.ActionMenuSwitch = require("./dist/components/ActionMenuSwitch.js")[
|
|
3
|
-
"default"
|
|
4
|
-
]
|
|
5
|
-
exports.Body = require("./dist/components/Body.js")["default"]
|
|
6
|
-
exports.BodyRounded = require("./dist/components/BodyRounded.js")["default"]
|
|
7
|
-
exports.Caret = require("./dist/components/Caret.js")["default"]
|
|
8
|
-
exports.DocumentView = require("./dist/components/DocumentView.js")["default"]
|
|
9
|
-
exports.Layout = require("./dist/components/Layout.js")["default"]
|
|
10
|
-
exports.Header = require("./dist/components/Header.js")["default"]
|
|
11
|
-
exports.HeaderTitle = require("./dist/components/HeaderTitle.js")["default"]
|
|
12
|
-
exports.Intro = require("./dist/components/Intro.js")["default"]
|
|
13
|
-
exports.MenuItem = require("./dist/components/MenuItem.js")["default"]
|
|
14
|
-
exports.Modal = require("./dist/components/Modal.js")["default"]
|
|
15
|
-
exports.ModalProvider = require("./dist/components/ModalProvider.js")[
|
|
16
|
-
"ModalProvider"
|
|
17
|
-
]
|
|
18
|
-
exports.useModal = require("./dist/components/ModalProvider.js")["useModal"]
|
|
19
|
-
exports.Outside = require("./dist/components/Outside.js")["default"]
|
|
20
|
-
exports.Page = require("./dist/components/Page.js")["default"]
|
|
21
|
-
exports.Search = require("./dist/components/Search.js")["default"]
|
|
22
|
-
exports.SidebarMenu = require("./dist/components/SidebarMenu.js")["default"]
|
|
23
|
-
exports.Status = require("./dist/components/Status.js")["default"]
|
|
24
|
-
exports.StatusProvider = require("./dist/components/StatusProvider.js")["StatusProvider"]
|
|
25
|
-
exports.useStatus = require("./dist/components/StatusProvider.js")["useStatus"]
|
|
26
|
-
exports.Switch = require("./dist/components/Switch.js")["default"]
|
|
27
|
-
exports.Utilities = require("./dist/components/Utilities.js")["default"]
|
|
1
|
+
exports.ActionMenu = require("./dist/components/ActionMenu.js")["default"]
|
|
2
|
+
exports.ActionMenuSwitch = require("./dist/components/ActionMenuSwitch.js")[
|
|
3
|
+
"default"
|
|
4
|
+
]
|
|
5
|
+
exports.Body = require("./dist/components/Body.js")["default"]
|
|
6
|
+
exports.BodyRounded = require("./dist/components/BodyRounded.js")["default"]
|
|
7
|
+
exports.Caret = require("./dist/components/Caret.js")["default"]
|
|
8
|
+
exports.DocumentView = require("./dist/components/DocumentView.js")["default"]
|
|
9
|
+
exports.Layout = require("./dist/components/Layout.js")["default"]
|
|
10
|
+
exports.Header = require("./dist/components/Header.js")["default"]
|
|
11
|
+
exports.HeaderTitle = require("./dist/components/HeaderTitle.js")["default"]
|
|
12
|
+
exports.Intro = require("./dist/components/Intro.js")["default"]
|
|
13
|
+
exports.MenuItem = require("./dist/components/MenuItem.js")["default"]
|
|
14
|
+
exports.Modal = require("./dist/components/Modal.js")["default"]
|
|
15
|
+
exports.ModalProvider = require("./dist/components/ModalProvider.js")[
|
|
16
|
+
"ModalProvider"
|
|
17
|
+
]
|
|
18
|
+
exports.useModal = require("./dist/components/ModalProvider.js")["useModal"]
|
|
19
|
+
exports.Outside = require("./dist/components/Outside.js")["default"]
|
|
20
|
+
exports.Page = require("./dist/components/Page.js")["default"]
|
|
21
|
+
exports.Search = require("./dist/components/Search.js")["default"]
|
|
22
|
+
exports.SidebarMenu = require("./dist/components/SidebarMenu.js")["default"]
|
|
23
|
+
exports.Status = require("./dist/components/Status.js")["default"]
|
|
24
|
+
exports.StatusProvider = require("./dist/components/StatusProvider.js")["StatusProvider"]
|
|
25
|
+
exports.useStatus = require("./dist/components/StatusProvider.js")["useStatus"]
|
|
26
|
+
exports.Switch = require("./dist/components/Switch.js")["default"]
|
|
27
|
+
exports.Utilities = require("./dist/components/Utilities.js")["default"]
|