@nulogy/components 8.10.0 → 8.11.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.
- package/dist/main.js +48350 -48314
- package/dist/main.module.js +38351 -38316
- package/dist/src/Alert/Alert.d.ts +5 -7
- package/dist/src/Banner/Banner.d.ts +4 -0
- package/dist/src/Banner/Banner.story.d.ts +14 -0
- package/dist/src/Banner/index.d.ts +1 -0
- package/dist/src/Button/IconicButton.story.d.ts +1 -0
- package/dist/src/index.d.ts +46 -45
- package/package.json +1 -1
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { BoxProps } from "../Box/Box";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
className?: string;
|
|
3
|
+
declare type NotificationType = "danger" | "informative" | "success" | "warning";
|
|
4
|
+
export declare type AlertProps = BoxProps & React.HTMLProps<HTMLDivElement> & {
|
|
6
5
|
isCloseable?: boolean;
|
|
7
6
|
closeAriaLabel?: string;
|
|
8
7
|
title?: string;
|
|
9
|
-
type?:
|
|
8
|
+
type?: NotificationType;
|
|
10
9
|
onClose?: any;
|
|
11
10
|
controlled?: boolean;
|
|
12
|
-
style?: React.CSSProperties;
|
|
13
11
|
};
|
|
14
|
-
declare const
|
|
15
|
-
export default
|
|
12
|
+
declare const _default: import("styled-components").StyledComponent<({ children, isCloseable, title, type, closeAriaLabel, onClose, controlled, ...props }: AlertProps) => JSX.Element, import("styled-components").DefaultTheme, {}, never>;
|
|
13
|
+
export default _default;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const WithCallToAction: () => JSX.Element;
|
|
3
|
+
export declare const Dismissible: () => JSX.Element;
|
|
4
|
+
export declare const AboveTheNavbar: () => JSX.Element;
|
|
5
|
+
export declare const BellowTheNavbar: () => JSX.Element;
|
|
6
|
+
export declare const BellowTheHeader: () => JSX.Element;
|
|
7
|
+
export declare const BannerTypes: () => JSX.Element;
|
|
8
|
+
declare const _default: {
|
|
9
|
+
title: string;
|
|
10
|
+
parameters: {
|
|
11
|
+
layout: string;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as Banner } from "./Banner";
|
|
@@ -73,3 +73,4 @@ export declare const WithNonTextChildren: {
|
|
|
73
73
|
};
|
|
74
74
|
export declare const WithCustomHoverBackgroundThemeColor: () => JSX.Element;
|
|
75
75
|
export declare const WithCustomHoverBackgroundNonThemeColor: () => JSX.Element;
|
|
76
|
+
export declare const WithLargerIcons: () => JSX.Element;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -1,56 +1,57 @@
|
|
|
1
|
-
export { NDSProvider } from "./NDSProvider";
|
|
2
|
-
export { default as theme } from "./theme";
|
|
3
|
-
export type { ThemeType } from "./theme.type";
|
|
4
|
-
export { Box, AnimatedBox } from "./Box";
|
|
5
|
-
export { Flex } from "./Flex";
|
|
6
|
-
export { Icon, InlineIcon } from "./Icon";
|
|
7
|
-
export { Text, Heading1, Heading2, Heading3, Heading4 } from "./Type";
|
|
8
|
-
export type { TextProps } from "./Type";
|
|
9
|
-
export { Button, PrimaryButton, DangerButton, QuietButton, IconicButton, ControlIcon } from "./Button";
|
|
10
|
-
export { ButtonGroup } from "./ButtonGroup";
|
|
11
|
-
export { Link } from "./Link";
|
|
12
|
-
export { InlineValidation } from "./Validation";
|
|
13
1
|
export { Alert } from "./Alert";
|
|
2
|
+
export { AsyncSelect } from "./AsyncSelect";
|
|
3
|
+
export { Banner } from "./Banner";
|
|
4
|
+
export { AnimatedBox, Box } from "./Box";
|
|
5
|
+
export { BrandedNavBar, BrandLogoContainer, DesktopMenu, EnvironmentBanner, MenuTrigger, NavBarBackground, SmallNavBar, } from "./BrandedNavBar";
|
|
6
|
+
export type { BrandLogoContainerProps, DesktopMenuProps, EnvironmentBannerProps, MenuTriggerProps, NavBarBackgroundProps, RenderMenuButtonProps, SmallNavBarProps, } from "./BrandedNavBar";
|
|
14
7
|
export { Branding } from "./Branding";
|
|
15
|
-
export {
|
|
16
|
-
export {
|
|
17
|
-
export {
|
|
18
|
-
export {
|
|
8
|
+
export { Breadcrumbs } from "./Breadcrumbs";
|
|
9
|
+
export { Button, ControlIcon, DangerButton, IconicButton, PrimaryButton, QuietButton } from "./Button";
|
|
10
|
+
export { ButtonGroup } from "./ButtonGroup";
|
|
11
|
+
export { Card, CardSet } from "./Card";
|
|
19
12
|
export { Checkbox, CheckboxGroup } from "./Checkbox";
|
|
20
|
-
export {
|
|
21
|
-
export {
|
|
22
|
-
export {
|
|
13
|
+
export { DatePicker } from "./DatePicker";
|
|
14
|
+
export { DateRange } from "./DateRange";
|
|
15
|
+
export { Divider } from "./Divider";
|
|
16
|
+
export { DropdownButton, DropdownItem, DropdownLink, DropdownMenu, DropdownText } from "./DropdownMenu";
|
|
17
|
+
export { FieldLabel, HelpText, RequirementText } from "./FieldLabel";
|
|
18
|
+
export { Flex } from "./Flex";
|
|
23
19
|
export { Field, Fieldset, Form, FormSection } from "./Form";
|
|
24
|
-
export {
|
|
25
|
-
export {
|
|
26
|
-
export {
|
|
27
|
-
export {
|
|
20
|
+
export { Icon, InlineIcon } from "./Icon";
|
|
21
|
+
export { Input } from "./Input";
|
|
22
|
+
export { ApplicationFrame, Header, Page, Sidebar } from "./Layout";
|
|
23
|
+
export { Link } from "./Link";
|
|
24
|
+
export { List, ListItem } from "./List";
|
|
25
|
+
export { LoadingAnimation } from "./LoadingAnimation";
|
|
26
|
+
export { ALL_NDS_LOCALES } from "./locales.const";
|
|
28
27
|
export { Modal } from "./Modal";
|
|
29
|
-
export {
|
|
30
|
-
export {
|
|
31
|
-
export {
|
|
32
|
-
export
|
|
28
|
+
export { NavBar } from "./NavBar";
|
|
29
|
+
export { NDSProvider } from "./NDSProvider";
|
|
30
|
+
export { Overlay } from "./Overlay";
|
|
31
|
+
export { Pagination } from "./Pagination";
|
|
32
|
+
export { Radio, RadioGroup } from "./Radio";
|
|
33
|
+
export { RangeContainer } from "./RangeContainer";
|
|
34
|
+
export { Select, SelectClearIndicator, SelectContainer, SelectControl, SelectDropdownIndicator, SelectInput, SelectMenu, SelectMultiValue, SelectOption, } from "./Select";
|
|
35
|
+
export { SortingTable } from "./SortingTable";
|
|
33
36
|
export { StatusIndicator, StatusIndicatorValues } from "./StatusIndicator";
|
|
34
37
|
export type { StatusIndicatorType } from "./StatusIndicator";
|
|
35
|
-
export {
|
|
36
|
-
export {
|
|
37
|
-
export {
|
|
38
|
+
export { addStyledProps } from "./StyledProps";
|
|
39
|
+
export type { StyledProps } from "./StyledProps";
|
|
40
|
+
export { Summary, SummaryDivider, SummaryItem } from "./Summary/index";
|
|
41
|
+
export { Switch, Switcher } from "./Switcher";
|
|
42
|
+
export { Table } from "./Table";
|
|
43
|
+
export type { TableCellInfoType, TableColumnType, TableProps, TableRowType } from "./Table";
|
|
44
|
+
export { Tab, Tabs } from "./Tabs";
|
|
45
|
+
export { Textarea } from "./Textarea";
|
|
46
|
+
export { default as theme } from "./theme";
|
|
47
|
+
export type { ThemeType } from "./theme.type";
|
|
38
48
|
export { TimePicker } from "./TimePicker";
|
|
39
49
|
export { TimeRange } from "./TimeRange";
|
|
40
|
-
export { RangeContainer } from "./RangeContainer";
|
|
41
|
-
export { Overlay } from "./Overlay";
|
|
42
|
-
export { LoadingAnimation } from "./LoadingAnimation";
|
|
43
|
-
export { Breadcrumbs } from "./Breadcrumbs";
|
|
44
|
-
export { ALL_NDS_LOCALES } from "./locales.const";
|
|
45
|
-
export { TruncatedText } from "./TruncatedText";
|
|
46
50
|
export { Toast } from "./Toast";
|
|
47
|
-
export {
|
|
48
|
-
export {
|
|
49
|
-
export
|
|
50
|
-
export {
|
|
51
|
-
export {
|
|
51
|
+
export { Toggle } from "./Toggle";
|
|
52
|
+
export { Tooltip } from "./Tooltip";
|
|
53
|
+
export { TruncatedText } from "./TruncatedText";
|
|
54
|
+
export { Heading1, Heading2, Heading3, Heading4, Text } from "./Type";
|
|
55
|
+
export type { TextProps } from "./Type";
|
|
52
56
|
export { useWindowDimensions } from "./utils";
|
|
53
|
-
export {
|
|
54
|
-
export { SortingTable } from "./SortingTable";
|
|
55
|
-
export { addStyledProps } from "./StyledProps";
|
|
56
|
-
export type { StyledProps } from "./StyledProps";
|
|
57
|
+
export { InlineValidation } from "./Validation";
|