digitinary-ui 1.0.34 → 1.0.37
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/components/Accordion/Accordion.d.ts +1 -0
- package/dist/components/Alert/Alert.d.ts +1 -0
- package/dist/components/Button/Button.d.ts +1 -0
- package/dist/components/Card/Card.d.ts +1 -0
- package/dist/components/Checkbox/Checkbox.d.ts +1 -0
- package/dist/components/Chip/Chip.d.ts +1 -0
- package/dist/components/Date/Date.d.ts +1 -0
- package/dist/components/DateRange/DateRange.d.ts +1 -3
- package/dist/components/Dialog/Dialog.d.ts +1 -0
- package/dist/components/HelperText/HelperText.d.ts +1 -0
- package/dist/components/Input/Input.d.ts +1 -0
- package/dist/components/Label/Label.d.ts +1 -0
- package/dist/components/Loader/Loader.d.ts +1 -0
- package/dist/components/Overlay/Overlay.d.ts +3 -1
- package/dist/components/Pagination/Pagination.d.ts +3 -1
- package/dist/components/Radio/Radio.d.ts +1 -0
- package/dist/components/RadioGroup/RadioGroup.d.ts +1 -0
- package/dist/components/SelectGroup/SelectGroup.d.ts +1 -0
- package/dist/components/SideDrawer/SideDrawer.d.ts +1 -0
- package/dist/components/Switch/Switch.d.ts +1 -0
- package/dist/components/Table/Table.d.ts +1 -0
- package/dist/components/TextArea/TextArea.d.ts +1 -0
- package/dist/components/Tooltip/Tooltip.d.ts +0 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ButtonPropsType } from '../../types';
|
|
2
|
+
import './style.scss';
|
|
2
3
|
declare const Button: {
|
|
3
4
|
({ children, className, variant, color, size, type, disabled, loading, startIcon, endIcon, fullWidth, onKeyDown, onClick, active, dataId, ...props }: ButtonPropsType): import("react/jsx-runtime").JSX.Element;
|
|
4
5
|
displayName: string;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { CheckboxPropsType } from '../../types';
|
|
2
|
+
import './style.scss';
|
|
2
3
|
declare const Checkbox: ({ label, labelPlacement, handleCheckboxChange, className, checked, size, disabled, }: CheckboxPropsType) => import("react/jsx-runtime").JSX.Element;
|
|
3
4
|
export default Checkbox;
|
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
import { FC } from 'react';
|
|
2
2
|
import { Size } from '../../types';
|
|
3
|
+
import './style.scss';
|
|
3
4
|
interface DateRangeProps {
|
|
4
5
|
id?: string;
|
|
5
6
|
label?: JSX.Element | string;
|
|
6
7
|
helperText?: string;
|
|
7
|
-
placeholder?: string;
|
|
8
|
-
startDatePlaceholder?: string;
|
|
9
|
-
endDatePlaceholder?: string;
|
|
10
8
|
errorMsg?: string;
|
|
11
9
|
success?: boolean;
|
|
12
10
|
disabled?: boolean;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { DialogPropsType } from '../../types';
|
|
2
|
+
import './style.scss';
|
|
2
3
|
declare const Dialog: ({ open, onClose, header, content, footer, position, size, disableOverlay, disableBackdropClick, fullWidth, dataId, scroll, className, }: DialogPropsType) => import("react/jsx-runtime").JSX.Element;
|
|
3
4
|
export default Dialog;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import './style.scss';
|
|
1
3
|
import { OverlayPropsType } from '../../types';
|
|
2
|
-
declare const Overlay:
|
|
4
|
+
declare const Overlay: React.FC<OverlayPropsType>;
|
|
3
5
|
export default Overlay;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { PaginationProps } from '../../types';
|
|
2
|
-
|
|
3
|
+
import './style.scss';
|
|
4
|
+
declare const Pagination: React.FC<PaginationProps>;
|
|
3
5
|
export default Pagination;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { RadioGroupProps } from '../../types';
|
|
2
|
+
import './style.scss';
|
|
2
3
|
declare const RadioGroup: ({ name, options, onChange, size, labelPosition, color, label, defaultValue, value, direction, gap, className, }: RadioGroupProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
4
|
export default RadioGroup;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import './style.scss';
|
|
1
2
|
import { SelectProps, Option } from '../../types';
|
|
2
3
|
declare const SelectGroup: <T extends Option | Option[] | null>({ label, placeholder, options, value, onChange, isMultiple, disabled, className, errorMsg, helperText, withSearch, itemsLabel, size, required, isLoading, }: SelectProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
3
4
|
export default SelectGroup;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { TableProps } from '../../types';
|
|
2
|
+
import './style.scss';
|
|
2
3
|
declare const Table: ({ id, headCells, data, sort, setSort, currentHeadCell, setCurrentHeadCell, fallback, footer, onRowClick, selectableRow, selectedRowId, rowDataId, paginationOptions, }: TableProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
4
|
export default Table;
|