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.
@@ -1,3 +1,4 @@
1
1
  import { AccordionProps } from '../../types';
2
+ import './style.scss';
2
3
  declare const Accordion: ({ defaultExpanded, expanded, disabled, onChange, summary, children, className, }: AccordionProps) => import("react/jsx-runtime").JSX.Element;
3
4
  export default Accordion;
@@ -1,3 +1,4 @@
1
1
  import { AlertProps } from '../../types';
2
+ import './style.scss';
2
3
  declare const Alert: ({ severity, color, variant, onClose, action, className, icon, customStyle, children, }: AlertProps) => import("react/jsx-runtime").JSX.Element | null;
3
4
  export default Alert;
@@ -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 { CardPropsType } from '../../types';
2
+ import './style.scss';
2
3
  declare const Card: ({ header, children, footer, className, rounded }: CardPropsType) => import("react/jsx-runtime").JSX.Element;
3
4
  export default Card;
@@ -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,4 +1,5 @@
1
1
  import { ChipPropsType } from '../../types';
2
+ import './style.scss';
2
3
  declare const Chip: {
3
4
  ({ className, color, children, variant, clickable, onClick, onDelete, size, id, }: ChipPropsType): import("react/jsx-runtime").JSX.Element;
4
5
  displayName: string;
@@ -1,4 +1,5 @@
1
1
  import { FC } from 'react';
2
2
  import { DateProps } from '../../types';
3
+ import './style.scss';
3
4
  declare const Date: FC<DateProps>;
4
5
  export default Date;
@@ -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,4 @@
1
1
  import { HelperTextPropsType } from '../../types';
2
+ import './style.scss';
2
3
  declare const HelperText: ({ className, type, text }: HelperTextPropsType) => import("react/jsx-runtime").JSX.Element;
3
4
  export default HelperText;
@@ -1,4 +1,5 @@
1
1
  import React from 'react';
2
2
  import { InputProps } from '../../types';
3
+ import './style.scss';
3
4
  declare const Input: React.ForwardRefExoticComponent<Omit<InputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
4
5
  export default Input;
@@ -1,3 +1,4 @@
1
1
  import { LabelPropsType } from '../../types';
2
+ import './style.scss';
2
3
  declare const Label: ({ className, required, label }: LabelPropsType) => import("react/jsx-runtime").JSX.Element;
3
4
  export default Label;
@@ -1,4 +1,5 @@
1
1
  import React from 'react';
2
+ import './style.scss';
2
3
  interface LoaderProps {
3
4
  className?: string;
4
5
  width?: number;
@@ -1,3 +1,5 @@
1
+ import React from 'react';
2
+ import './style.scss';
1
3
  import { OverlayPropsType } from '../../types';
2
- declare const Overlay: ({ children, className, open }: OverlayPropsType) => import("react/jsx-runtime").JSX.Element | null;
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
- declare const Pagination: ({ page, setPage, count, totalElement, disabledExportExcelBtn, disabledExportPdfBtn, excelExport, showPageCount, showExportButtons, disabledNextButton, removeFirstLastButtons, pageSize, labels, className, }: PaginationProps) => import("react/jsx-runtime").JSX.Element;
3
+ import './style.scss';
4
+ declare const Pagination: React.FC<PaginationProps>;
3
5
  export default Pagination;
@@ -1,4 +1,5 @@
1
1
  import React from 'react';
2
2
  import { RadioPropsType } from '../../types';
3
+ import './style.scss';
3
4
  declare const Radio: React.ForwardRefExoticComponent<RadioPropsType & React.RefAttributes<unknown>>;
4
5
  export default Radio;
@@ -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
+ import './style.scss';
1
2
  import { SideDrawerPropsType } from '../../types';
2
3
  declare const SideDrawer: ({ open, setOpen, children, className, onClickOutSide, width, anchor, }: SideDrawerPropsType) => import("react/jsx-runtime").JSX.Element;
3
4
  export default SideDrawer;
@@ -1,3 +1,4 @@
1
+ import './style.scss';
1
2
  import { SwitchProps } from '../../types';
2
3
  declare const Switch: ({ checked, onClick, label, disabled, labelPlacement, color, }: SwitchProps) => import("react/jsx-runtime").JSX.Element;
3
4
  export default Switch;
@@ -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;
@@ -1,3 +1,4 @@
1
1
  import React from 'react';
2
+ import './style.scss';
2
3
  declare const TextArea: React.ForwardRefExoticComponent<Omit<any, "ref"> & React.RefAttributes<unknown>>;
3
4
  export default TextArea;
@@ -1,5 +1,4 @@
1
1
  import React from 'react';
2
- import 'tippy.js/dist/tippy.css';
3
2
  import './style.scss';
4
3
  import { TooltipProps } from '../../types';
5
4
  declare const Tooltip: React.FC<TooltipProps>;