@nulogy/components 6.7.2 → 6.7.5
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 +282 -279
- package/dist/main.module.js +282 -279
- package/dist/src/BrandedNavBar/MenuTrigger.d.ts +1 -1
- package/dist/src/Branding/BrandingText.d.ts +1 -1
- package/dist/src/Branding/LettermarkLogo.d.ts +1 -1
- package/dist/src/Branding/WordmarkLogo.d.ts +1 -1
- package/dist/src/Breadcrumbs/BreadcrumbsListItem.d.ts +1 -1
- package/dist/src/Button/Button.d.ts +1 -1
- package/dist/src/Button/DangerButton.d.ts +1 -1
- package/dist/src/Button/IconicButton.story.d.ts +8 -1
- package/dist/src/Button/PrimaryButton.d.ts +1 -1
- package/dist/src/Button/QuietButton.d.ts +1 -1
- package/dist/src/ButtonGroup/ButtonGroup.d.ts +1 -1
- package/dist/src/Card/Card.d.ts +1 -1
- package/dist/src/Card/CardSet.d.ts +1 -1
- package/dist/src/Checkbox/Checkbox.d.ts +1 -1
- package/dist/src/Checkbox/CheckboxGroup.d.ts +1 -1
- package/dist/src/DatePicker/DatePicker.d.ts +1 -1
- package/dist/src/DatePicker/DatePickerHeader.d.ts +1 -1
- package/dist/src/DatePicker/DatePickerInput.d.ts +1 -1
- package/dist/src/DateRange/DateRange.d.ts +1 -1
- package/dist/src/DateRange/EndTime.d.ts +1 -1
- package/dist/src/DateRange/StartTime.d.ts +1 -1
- package/dist/src/DropdownMenu/DropdownButton.d.ts +1 -1
- package/dist/src/DropdownMenu/DropdownItem.d.ts +1 -1
- package/dist/src/DropdownMenu/DropdownLink.d.ts +1 -1
- package/dist/src/DropdownMenu/DropdownMenu.d.ts +1 -1
- package/dist/src/DropdownMenu/DropdownMenuContainer.d.ts +1 -1
- package/dist/src/Form/Fieldset.d.ts +1 -1
- package/dist/src/Form/FormSection.d.ts +1 -1
- package/dist/src/Icon/LoadingIcon.d.ts +1 -1
- package/dist/src/Input/Input.d.ts +1 -1
- package/dist/src/Input/InputField.d.ts +1 -1
- package/dist/src/List/List.d.ts +1 -1
- package/dist/src/List/ListItem.d.ts +1 -1
- package/dist/src/LoadingAnimation/LoadingAnimation.d.ts +1 -1
- package/dist/src/Modal/ModalContent.d.ts +1 -1
- package/dist/src/NavBar/DesktopMenu.d.ts +3 -2
- package/dist/src/NavBar/MenuTrigger.d.ts +8 -7
- package/dist/src/NavBar/MobileMenu.d.ts +3 -2
- package/dist/src/NavBar/NavBar.d.ts +58 -24
- package/dist/src/NavBar/NavBar.story.d.ts +76 -97
- package/dist/src/NavBar/NavBarDropdownMenu.d.ts +2 -1
- package/dist/src/NavBar/SmallNavBar.d.ts +8 -0
- package/dist/src/NavBar/SubMenuTrigger.d.ts +14 -15
- package/dist/src/NavBar/isValidMenuItem.d.ts +1 -1
- package/dist/src/NavBar/renderSubMenuItems.d.ts +1 -1
- package/dist/src/Overlay/Overlay.d.ts +1 -1
- package/dist/src/Pagination/Pagination.d.ts +1 -1
- package/dist/src/Popper/Popper.d.ts +1 -1
- package/dist/src/RangeContainer/RangeContainer.d.ts +1 -1
- package/dist/src/StatusIndicator/StatusIndicator.d.ts +1 -1
- package/dist/src/Table/BaseTable.d.ts +1 -1
- package/dist/src/Table/TableCell.d.ts +1 -1
- package/dist/src/Table/TableHead.d.ts +1 -1
- package/dist/src/Tabs/Tab.d.ts +1 -1
- package/dist/src/Tabs/TabScrollIndicator.d.ts +1 -1
- package/dist/src/Textarea/StyledTextarea.d.ts +1 -1
- package/dist/src/Textarea/Textarea.d.ts +1 -1
- package/dist/src/TimePicker/TimePicker.d.ts +1 -1
- package/dist/src/TimePicker/TimePickerInput.d.ts +1 -1
- package/dist/src/TimeRange/TimeRange.d.ts +1 -1
- package/dist/src/Tooltip/Tooltip.d.ts +1 -1
- package/dist/src/Validation/InlineValidation.d.ts +1 -1
- package/dist/src/utils/ClickInputLabel.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,16 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
declare function SubMenuTrigger(props: any): JSX.Element;
|
|
3
|
-
declare namespace SubMenuTrigger {
|
|
4
|
-
export namespace propTypes {
|
|
5
|
-
export const name: PropTypes.Validator<string>;
|
|
6
|
-
export const menuData: PropTypes.Requireable<PropTypes.InferProps<{}>[]>;
|
|
7
|
-
export const onItemClick: PropTypes.Requireable<(...args: any[]) => any>;
|
|
8
|
-
}
|
|
9
|
-
export namespace defaultProps {
|
|
10
|
-
const menuData_1: any;
|
|
11
|
-
export { menuData_1 as menuData };
|
|
12
|
-
const onItemClick_1: any;
|
|
13
|
-
export { onItemClick_1 as onItemClick };
|
|
14
|
-
}
|
|
15
|
-
}
|
|
1
|
+
/// <reference types="react" />
|
|
16
2
|
import PropTypes from "prop-types";
|
|
3
|
+
declare const SubMenuTrigger: {
|
|
4
|
+
(props: any): JSX.Element;
|
|
5
|
+
propTypes: {
|
|
6
|
+
name: PropTypes.Validator<string>;
|
|
7
|
+
menuData: PropTypes.Requireable<PropTypes.InferProps<{}>[]>;
|
|
8
|
+
onItemClick: PropTypes.Requireable<(...args: any[]) => any>;
|
|
9
|
+
};
|
|
10
|
+
defaultProps: {
|
|
11
|
+
menuData: any;
|
|
12
|
+
onItemClick: any;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
export default SubMenuTrigger;
|
|
@@ -5,5 +5,5 @@ declare type RangeContainerProps = {
|
|
|
5
5
|
endComponent?: React.ReactNode;
|
|
6
6
|
errorMessages?: (string | undefined)[];
|
|
7
7
|
};
|
|
8
|
-
declare const RangeContainer: React.
|
|
8
|
+
declare const RangeContainer: React.FC<RangeContainerProps>;
|
|
9
9
|
export default RangeContainer;
|
package/dist/src/Tabs/Tab.d.ts
CHANGED
|
@@ -6,5 +6,5 @@ declare type TabScrollIndicatorProps = {
|
|
|
6
6
|
ariaLabelLeft?: string;
|
|
7
7
|
ariaLabelRight?: string;
|
|
8
8
|
};
|
|
9
|
-
declare const TabScrollIndicator: React.
|
|
9
|
+
declare const TabScrollIndicator: React.FC<TabScrollIndicatorProps>;
|
|
10
10
|
export default TabScrollIndicator;
|
|
@@ -9,5 +9,5 @@ export declare type StyledTextareaProps = React.ComponentPropsWithRef<"textarea"
|
|
|
9
9
|
rows?: number;
|
|
10
10
|
isResizeable?: boolean;
|
|
11
11
|
};
|
|
12
|
-
declare const StyledTextarea: React.
|
|
12
|
+
declare const StyledTextarea: React.FC<StyledTextareaProps>;
|
|
13
13
|
export default StyledTextarea;
|
|
@@ -36,5 +36,5 @@ export declare const getTimeOptions: (interval: any, timeFormat: any, minTime: a
|
|
|
36
36
|
value: string;
|
|
37
37
|
label: string;
|
|
38
38
|
}[];
|
|
39
|
-
declare const TimePicker: React.
|
|
39
|
+
declare const TimePicker: React.FC<TimePickerProps>;
|
|
40
40
|
export default TimePicker;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
declare const TimePickerInput: import("styled-components").StyledComponent<import("react").
|
|
2
|
+
declare const TimePickerInput: import("styled-components").StyledComponent<import("react").FC<import("../Input/InputField").InputFieldProps>, import("styled-components").DefaultTheme, {}, never>;
|
|
3
3
|
export default TimePickerInput;
|
|
@@ -6,5 +6,5 @@ declare type InlineValidationProps = SpaceProps & {
|
|
|
6
6
|
errorList?: string[];
|
|
7
7
|
children?: React.ReactNode;
|
|
8
8
|
};
|
|
9
|
-
declare const InlineValidation: React.
|
|
9
|
+
declare const InlineValidation: React.FC<InlineValidationProps>;
|
|
10
10
|
export default InlineValidation;
|