@loadsmart/loadsmart-ui 7.3.2 → 7.3.3
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/common/BackButton/BackButton.d.ts +1 -0
- package/dist/common/CloseButton/CloseButton.d.ts +1 -0
- package/dist/components/Accordion/Accordion.stories.d.ts +1 -0
- package/dist/components/Banner/Banner.d.ts +1 -1
- package/dist/components/Calendar/Calendar.d.ts +1 -0
- package/dist/components/Calendar/Calendar.stories.d.ts +1 -0
- package/dist/components/Calendar/PickerModeToggle.d.ts +1 -0
- package/dist/components/Calendar/Pickers/DayPicker.d.ts +1 -0
- package/dist/components/Calendar/Pickers/MonthPicker.d.ts +1 -0
- package/dist/components/Calendar/Pickers/YearPicker.d.ts +1 -0
- package/dist/components/Checkbox/Checkbox.stories.d.ts +1 -0
- package/dist/components/DatePicker/DatePicker.stories.d.ts +1 -0
- package/dist/components/DatePicker/DateRangePicker.d.ts +1 -0
- package/dist/components/DatePicker/DateRangePicker.stories.d.ts +1 -0
- package/dist/components/DatePicker/useDatePicker.d.ts +102 -102
- package/dist/components/DatePicker/useDateRangePicker.d.ts +153 -154
- package/dist/components/Dialog/Dialog.stories.d.ts +1 -0
- package/dist/components/DragDropFile/DragDropFile.stories.d.ts +1 -0
- package/dist/components/DragDropFile/components/DropZone.d.ts +1 -0
- package/dist/components/DragDropFile/components/FileItem.d.ts +1 -0
- package/dist/components/DragDropFile/components/FileList.d.ts +1 -0
- package/dist/components/DragDropFile/styles.d.ts +1 -1
- package/dist/components/EmptyState/EmptyState.stories.d.ts +1 -0
- package/dist/components/ErrorMessage/ErrorMessage.stories.d.ts +1 -0
- package/dist/components/Icon/Icon.d.ts +2 -1
- package/dist/components/IconFactory/IconFactory.d.ts +2 -1
- package/dist/components/Label/Label.stories.d.ts +1 -0
- package/dist/components/Layout/Layout.stories.d.ts +1 -0
- package/dist/components/Link/Link.stories.d.ts +1 -0
- package/dist/components/Loaders/LoadingDots.d.ts +1 -0
- package/dist/components/Loaders/Spinner.d.ts +1 -0
- package/dist/components/Modal/Modal.stories.d.ts +1 -0
- package/dist/components/Pagination/Pagination.d.ts +1 -0
- package/dist/components/Pagination/PaginationItem.d.ts +1 -0
- package/dist/components/Popover/Popover.d.ts +1 -0
- package/dist/components/ProgressBar/ProgressBar.stories.d.ts +1 -0
- package/dist/components/Radio/Radio.stories.d.ts +1 -0
- package/dist/components/Section/Sections.stories.d.ts +1 -0
- package/dist/components/Select/SelectCreatableOption.d.ts +1 -0
- package/dist/components/Select/SelectEmpty.d.ts +1 -0
- package/dist/components/Select/SelectOption.d.ts +1 -0
- package/dist/components/SideNavigation/Separator/Separator.d.ts +1 -0
- package/dist/components/SideNavigation/SideNavigation.stories.d.ts +1 -0
- package/dist/components/Steps/ProgressSteps/ProgressSteps.d.ts +1 -0
- package/dist/components/Table/Table.d.ts +1 -0
- package/dist/components/Table/Table.stories.d.ts +1 -0
- package/dist/components/Table/TableSortHandle.d.ts +1 -0
- package/dist/components/TablePagination/RowsPerPage.d.ts +1 -0
- package/dist/components/TablePagination/TablePagination.d.ts +1 -0
- package/dist/components/TablePagination/TablePaginationActions.d.ts +2 -1
- package/dist/components/Tabs/Tabs.stories.d.ts +1 -0
- package/dist/components/TextField/TextField.stories.d.ts +1 -0
- package/dist/components/Textarea/Textarea.stories.d.ts +1 -0
- package/dist/components/Toast/Toast.stories.d.ts +1 -0
- package/dist/components/ToggleGroup/Toggle.d.ts +1 -0
- package/dist/components/ToggleGroup/ToggleGroup.d.ts +1 -0
- package/dist/components/Tooltip/Tooltip.stories.d.ts +1 -0
- package/dist/components/TopNavigation/OpenSideNavButton/OpenSideNavButton.d.ts +1 -0
- package/dist/components/TopNavigation/TopNavigation.stories.d.ts +1 -0
- package/dist/components/VisuallyHidden/VisuallyHidden.stories.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/utils/toolset/highlightMatch.d.ts +1 -0
- package/package.json +11 -6
- package/src/components/Dropdown/Dropdown.stories.tsx +1 -2
- package/src/components/IconFactory/IconFactory.tsx +2 -2
- package/src/components/Select/Select.constants.ts +2 -2
- package/src/components/Steps/useSteps.ts +1 -1
- package/src/components/Tag/Tag.tsx +1 -1
- package/src/hooks/useSelectable/SelectableStrategy.ts +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
import { useSelection } from './Selection';
|
|
2
3
|
import TableSortHandle from './TableSortHandle';
|
|
3
4
|
import type { TableProps, TableSectionProps, TableRowProps, TableCellProps, TableCaptionProps, TableSelectionProps, SelectionCellProps, TablePickerItemProps, TablePickerProps, ExpandableTableRowProps } from './Table.types';
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
import type { RowsPerPageProps } from './TablePagination.types';
|
|
2
3
|
declare function RowsPerPage({ page, rowsPerPage, onRowsPerPageChange, labelRowsPerPage, count, rowsPerPageOptions, disabled, position, align, }: RowsPerPageProps): JSX.Element;
|
|
3
4
|
export default RowsPerPage;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import type { TablePaginationActionsProps } from "./TablePagination.types";
|
|
2
3
|
import { IconProps } from "../Icon";
|
|
3
|
-
export declare const ActionIcon: import("styled-components").StyledComponent<
|
|
4
|
+
export declare const ActionIcon: import("styled-components").StyledComponent<React.ComponentType<import("../IconFactory").IconProps<import("../IconFactory").IconMapping>>, any, {
|
|
4
5
|
color: "neutral-darker";
|
|
5
6
|
size: "16";
|
|
6
7
|
} & IconProps & {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
import { ToastProps } from './Toast';
|
|
2
3
|
import Status from "../../utils/types/Status";
|
|
3
4
|
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0a347bb9").R, import("@storybook/types").Args>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
import type { ToggleGroupOptionProps } from './ToggleGroup.types';
|
|
2
3
|
declare function Toggle({ value, children, disabled, ...others }: ToggleGroupOptionProps): JSX.Element;
|
|
3
4
|
declare const _default: import("styled-components").StyledComponent<typeof Toggle, any, {}, never>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
import { TooltipAlign, TooltipPosition, TooltipProps } from './Tooltip';
|
|
2
3
|
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0a347bb9").R, import("@storybook/types").Args>;
|
|
3
4
|
export default _default;
|
package/dist/index.js
CHANGED
|
@@ -1574,7 +1574,7 @@
|
|
|
1574
1574
|
color: ${l.conditional({"tag-default-color--focus":l.whenProps({variant:"default"}),"tag-outlined-color--focus":l.whenProps({variant:"outlined"}),"tag-accent-color--focus":l.whenProps({variant:"accent"}),"tag-success-color--focus":l.whenProps({variant:"success"}),"tag-warning-color--focus":l.whenProps({variant:"warning"}),"tag-danger-color--focus":l.whenProps({variant:"danger"})})};
|
|
1575
1575
|
|
|
1576
1576
|
background: ${l.conditional({"tag-default-background--focus":l.whenProps({variant:"default"}),"tag-outlined-background--focus":l.whenProps({variant:"outlined"}),"tag-accent-background--focus":l.whenProps({variant:"accent"}),"tag-success-background--focus":l.whenProps({variant:"success"}),"tag-warning-background--focus":l.whenProps({variant:"warning"}),"tag-danger-background--focus":l.whenProps({variant:"danger"})})};
|
|
1577
|
-
box-shadow: ${r.getToken("tag-
|
|
1577
|
+
box-shadow: ${r.getToken("tag-box-shadow")};
|
|
1578
1578
|
}
|
|
1579
1579
|
`,si=u.default(ue)`
|
|
1580
1580
|
width: ${l.conditional({"tag-remove-button-icon-size":l.whenProps({size:"default"}),"tag-small-remove-button-icon-size":l.whenProps({size:"small"}),"tag-large-remove-button-icon-size":l.whenProps({size:"large"})})};
|