@pdg/react-table 1.2.8 → 1.2.10

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.
Files changed (37) hide show
  1. package/dist/@types/types.d.ts +3 -3
  2. package/dist/PInfoTable/PInfoTable.d.ts +1 -1
  3. package/dist/PInfoTable/PInfoTable.types.d.ts +4 -4
  4. package/dist/PSearchTable/PSearchTable.d.ts +2 -2
  5. package/dist/PSearchTable/PSearchTable.types.d.ts +4 -4
  6. package/dist/PTable/PTable.d.ts +1 -1
  7. package/dist/PTable/PTable.types.d.ts +5 -5
  8. package/dist/PTableBodyCell/PTableBodyCell.d.ts +2 -2
  9. package/dist/PTableBodyCell/PTableBodyCell.types.d.ts +2 -2
  10. package/dist/PTableBodyRow/PTableBodyRow.d.ts +2 -2
  11. package/dist/PTableBodyRow/PTableBodyRow.types.d.ts +4 -4
  12. package/dist/PTableButton/PTableButton.d.ts +1 -1
  13. package/dist/PTableButton/PTableButton.types.d.ts +1 -1
  14. package/dist/PTableCommonCell/PTableCommonCell.d.ts +2 -2
  15. package/dist/PTableCommonCell/PTableCommonCell.types.d.ts +2 -2
  16. package/dist/PTableContext/PTableContext.d.ts +1 -1
  17. package/dist/PTableContext/PTableContext.types.d.ts +3 -3
  18. package/dist/PTableContext/useTableState.d.ts +2 -2
  19. package/dist/PTableContextProvider/PTableContextProvider.d.ts +2 -2
  20. package/dist/PTableContextProvider/PTableContextProvider.types.d.ts +3 -3
  21. package/dist/PTableFooterCell/PTableFooterCell.d.ts +2 -2
  22. package/dist/PTableFooterCell/PTableFooterCell.types.d.ts +1 -1
  23. package/dist/PTableHeadCell/PTableHeadCell.d.ts +2 -2
  24. package/dist/PTableHeadCell/PTableHeadCell.types.d.ts +1 -1
  25. package/dist/PTableMenuButton/PTableMenuButton.d.ts +1 -1
  26. package/dist/PTableMenuButton/PTableMenuButton.types.d.ts +3 -3
  27. package/dist/PTablePagination/PTablePagination.d.ts +1 -1
  28. package/dist/PTablePagination/PTablePagination.types.d.ts +2 -2
  29. package/dist/PTableSortableBody/PTableSortableBody.d.ts +2 -2
  30. package/dist/PTableSortableBody/PTableSortableBody.types.d.ts +2 -2
  31. package/dist/PTableSortableBodyBlock/PTableSortableBodyBlock.d.ts +2 -2
  32. package/dist/PTableSortableBodyBlock/PTableSortableBodyBlock.types.d.ts +2 -2
  33. package/dist/PTableTopHead/PTableTopHead.d.ts +2 -2
  34. package/dist/PTableTopHead/PTableTopHead.types.d.ts +3 -3
  35. package/dist/index.esm.js +1 -1
  36. package/dist/index.js +1 -1
  37. package/package.json +10 -10
@@ -1,6 +1,6 @@
1
- import { CSSProperties, ReactNode } from 'react';
2
- import { SxProps } from '@mui/system';
3
- import { Theme } from '@mui/material/styles';
1
+ import { type CSSProperties, type ReactNode } from 'react';
2
+ import { type SxProps } from '@mui/system';
3
+ import { type Theme } from '@mui/material/styles';
4
4
  export interface PTableCommonProps {
5
5
  children?: ReactNode;
6
6
  className?: string;
@@ -1,4 +1,4 @@
1
1
  import React from 'react';
2
- import { PInfoTableProps as Props, PInfoTableInfo } from './PInfoTable.types';
2
+ import { type PInfoTableProps as Props, type PInfoTableInfo } from './PInfoTable.types';
3
3
  declare function PInfoTable<T extends PInfoTableInfo = PInfoTableInfo>({ cols, spacing, columnSpacing, rowSpacing, className, style, sx, labelClassName, labelColor, labelStyle, labelSx, dividerColor, valueClassName, valueStyle, valueSx, ellipsis, valueUnderline, info, items, onCopyToClipboard, }: Props<T>): React.JSX.Element;
4
4
  export default PInfoTable;
@@ -1,7 +1,7 @@
1
- import { ReactNode } from 'react';
2
- import { BoxProps, GridProps, IconButtonProps, TypographyProps } from '@mui/material';
3
- import { PTableCommonSxProps } from '../@types';
4
- import { PIconProps } from '@pdg/react-component';
1
+ import { type ReactNode } from 'react';
2
+ import { type BoxProps, type GridProps, type IconButtonProps, type TypographyProps } from '@mui/material';
3
+ import { type PTableCommonSxProps } from '../@types';
4
+ import { type PIconProps } from '@pdg/react-component';
5
5
  export interface PInfoTableInfo {
6
6
  [key: string]: any;
7
7
  }
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { PSearchTableProps as Props } from './PSearchTable.types';
3
- import { PTableItem } from '../PTable';
2
+ import { type PSearchTableProps as Props } from './PSearchTable.types';
3
+ import { type PTableItem } from '../PTable';
4
4
  declare function PSearchTable<T extends PTableItem = PTableItem>({ ref, className, style: initStyle, sx, color, hash, stickyHeader, fullHeight, search, table, betweenSearchTableComponent, onGetData, onRequestHashChange, }: Props<T>): React.JSX.Element;
5
5
  export default PSearchTable;
@@ -1,8 +1,8 @@
1
1
  import React from 'react';
2
- import { PTableProps, PTableCommands, PTableItem } from '../PTable';
3
- import { PFormValueMap, PSearchCommands, PSearchProps } from '@pdg/react-form';
4
- import { ReactNode } from 'react';
5
- import { PTableCommonSxProps } from '../@types';
2
+ import { type PTableProps, type PTableCommands, type PTableItem } from '../PTable';
3
+ import { type PFormValueMap, type PSearchCommands, type PSearchProps } from '@pdg/react-form';
4
+ import { type ReactNode } from 'react';
5
+ import { type PTableCommonSxProps } from '../@types';
6
6
  export interface PSearchTableSearchInfo {
7
7
  ref?: PSearchTableSearchProps['ref'];
8
8
  searchGroups?: PSearchTableSearchProps['searchGroups'];
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { PTableProps as Props, PTableItem } from './PTable.types';
2
+ import { type PTableProps as Props, type PTableItem } from './PTable.types';
3
3
  /********************************************************************************************************************
4
4
  * PTable
5
5
  * ******************************************************************************************************************/
@@ -1,8 +1,8 @@
1
- import React, { CSSProperties, ReactNode } from 'react';
2
- import { TableCellProps, TooltipProps } from '@mui/material';
3
- import { PTablePaginationProps } from '../PTablePagination';
4
- import { PTableCommonSxProps } from '../@types';
5
- import { PTableTopHeadProps } from '../PTableTopHead';
1
+ import React, { type CSSProperties, type ReactNode } from 'react';
2
+ import { type TableCellProps, type TooltipProps } from '@mui/material';
3
+ import { type PTablePaginationProps } from '../PTablePagination';
4
+ import { type PTableCommonSxProps } from '../@types';
5
+ import { type PTableTopHeadProps } from '../PTableTopHead';
6
6
  /********************************************************************************************************************
7
7
  * PTableItem
8
8
  * ******************************************************************************************************************/
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { PTableBodyCellProps as Props } from './PTableBodyCell.types';
3
- import { PTableItem } from '../PTable/PTable.types';
2
+ import { type PTableBodyCellProps as Props } from './PTableBodyCell.types';
3
+ import { type PTableItem } from '../PTable/PTable.types';
4
4
  declare function PTableBodyCell<T extends PTableItem = PTableItem>({ ref, className, style, sx, item, index, column, defaultAlign, defaultEllipsis, onClick, onCheckChange, }: Props<T>): React.JSX.Element;
5
5
  export default PTableBodyCell;
@@ -1,5 +1,5 @@
1
- import { PTableColumn, PTableItem, PTableProps } from '../PTable';
2
- import { PTableCommonSxProps } from '../@types';
1
+ import { type PTableColumn, type PTableItem, type PTableProps } from '../PTable';
2
+ import { type PTableCommonSxProps } from '../@types';
3
3
  import React from 'react';
4
4
  export interface PTableBodyCellCommands {
5
5
  setChecked: (checked: boolean) => void;
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
- import { PTableBodyRowProps as Props } from './PTableBodyRow.types';
3
- import { PTableItem } from '../PTable';
2
+ import { type PTableBodyRowProps as Props } from './PTableBodyRow.types';
3
+ import { type PTableItem } from '../PTable';
4
4
  export declare const PStyledBodyRow: import("@emotion/styled").StyledComponent<import("@mui/material").TableRowOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>, "className" | "style" | "classes" | "children" | "hover" | "selected" | "sx"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
5
5
  declare function PTableBodyRow<T extends PTableItem = PTableItem>({ className, style: initStyle, id, index, defaultAlign, defaultEllipsis, sortable, columns, item, onClick, onCheckChange, onGetColumnClassName, onGetColumnStyle, onGetColumnSx, ...props }: Props<T>): React.JSX.Element;
6
6
  export default PTableBodyRow;
@@ -1,7 +1,7 @@
1
- import { TableCellProps, TableRowProps } from '@mui/material';
2
- import { PTableColumn, PTableItem, PTableProps } from '../PTable';
3
- import { PTableBodyCellProps } from '../PTableBodyCell';
4
- import { PTableCommonSxProps } from '../@types';
1
+ import { type TableCellProps, type TableRowProps } from '@mui/material';
2
+ import { type PTableColumn, type PTableItem, type PTableProps } from '../PTable';
3
+ import { type PTableBodyCellProps } from '../PTableBodyCell';
4
+ import { type PTableCommonSxProps } from '../@types';
5
5
  export interface PTableBodyRowProps<T extends PTableItem = PTableItem> extends Omit<TableRowProps, 'id' | 'onClick'> {
6
6
  id: string | number;
7
7
  index: number;
@@ -1,4 +1,4 @@
1
1
  import React from 'react';
2
- import { PTableButtonProps as Props } from './PTableButton.types';
2
+ import { type PTableButtonProps as Props } from './PTableButton.types';
3
3
  declare const PTableButton: ({ children, className, sx: initSx, variant, color, startIcon, endIcon, onClick, ...props }: Props) => React.JSX.Element;
4
4
  export default PTableButton;
@@ -1,3 +1,3 @@
1
- import { PButtonProps } from '@pdg/react-component';
1
+ import { type PButtonProps } from '@pdg/react-component';
2
2
  export interface PTableButtonProps extends Omit<PButtonProps, 'size'> {
3
3
  }
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { PTableCommonCellProps as Props } from './PTableCommonCell.types';
3
- import { PTableItem } from '../PTable';
2
+ import { type PTableCommonCellProps as Props } from './PTableCommonCell.types';
3
+ import { type PTableItem } from '../PTable';
4
4
  declare function PTableCommonCell<T extends PTableItem = PTableItem>({ ref, children, className: initClassName, style: initStyle, sx: initSx, type, column, defaultAlign, defaultEllipsis: initDefaultEllipsis, index, item, onClick, }: Props<T>): React.JSX.Element;
5
5
  export default PTableCommonCell;
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
- import { PTableColumn, PTableItem, PTableProps } from '../PTable/PTable.types';
3
- import { PTableCommonSxProps } from '../@types';
2
+ import { type PTableColumn, type PTableItem, type PTableProps } from '../PTable/PTable.types';
3
+ import { type PTableCommonSxProps } from '../@types';
4
4
  export interface PTableCommonCellProps<T extends PTableItem = PTableItem> extends PTableCommonSxProps, Pick<PTableProps<T>, 'defaultAlign' | 'onClick'> {
5
5
  ref?: React.Ref<HTMLTableCellElement>;
6
6
  type: 'head' | 'body' | 'footer';
@@ -1,3 +1,3 @@
1
- import { PTableContextValue } from './PTableContext.types';
1
+ import { type PTableContextValue } from './PTableContext.types';
2
2
  declare const PTableContext: import("react").Context<PTableContextValue<import("..").PTableItem>>;
3
3
  export default PTableContext;
@@ -1,6 +1,6 @@
1
- import { PTableColumn, PTableItem, PTableProgressiveVisibleInfo } from '../PTable';
2
- import { PTableBodyCellCommands } from '../PTableBodyCell';
3
- import { PTableHeadCellCommands } from '../PTableHeadCell';
1
+ import { type PTableColumn, type PTableItem, type PTableProgressiveVisibleInfo } from '../PTable';
2
+ import { type PTableBodyCellCommands } from '../PTableBodyCell';
3
+ import { type PTableHeadCellCommands } from '../PTableHeadCell';
4
4
  export interface PTableContextValue<T extends PTableItem = PTableItem> {
5
5
  menuOpen: boolean;
6
6
  openMenuId?: string;
@@ -1,3 +1,3 @@
1
- import { PTableContextValue } from './PTableContext.types';
2
- import { PTableItem } from '../PTable';
1
+ import { type PTableContextValue } from './PTableContext.types';
2
+ import { type PTableItem } from '../PTable';
3
3
  export default function useTableState<T extends PTableItem = PTableItem>(): PTableContextValue<T>;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { PTableContextProviderProps as Props } from './PTableContextProvider.types';
3
- import { PTableItem } from '../PTable';
2
+ import { type PTableContextProviderProps as Props } from './PTableContextProvider.types';
3
+ import { type PTableItem } from '../PTable';
4
4
  declare function PTableContextProvider<T extends PTableItem = PTableItem>({ children, value }: Props<T>): React.JSX.Element;
5
5
  export default PTableContextProvider;
@@ -1,6 +1,6 @@
1
- import { ReactNode } from 'react';
2
- import { PTableContextValue } from '../PTableContext';
3
- import { PTableItem } from '../PTable';
1
+ import { type ReactNode } from 'react';
2
+ import { type PTableContextValue } from '../PTableContext';
3
+ import { type PTableItem } from '../PTable';
4
4
  export interface PTableContextProviderProps<T extends PTableItem = PTableItem> {
5
5
  value: PTableContextValue<T>;
6
6
  children: ReactNode;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { PTableFooterCellProps as Props } from './PTableFooterCell.types';
3
- import { PTableItem } from '../PTable';
2
+ import { type PTableFooterCellProps as Props } from './PTableFooterCell.types';
3
+ import { type PTableItem } from '../PTable';
4
4
  declare function PTableFooterCell<T extends PTableItem = PTableItem>({ column, items, defaultAlign }: Props<T>): React.JSX.Element;
5
5
  export default PTableFooterCell;
@@ -1,4 +1,4 @@
1
- import { PTableColumn, PTableItem, PTableProps } from '../PTable/PTable.types';
1
+ import { type PTableColumn, type PTableItem, type PTableProps } from '../PTable/PTable.types';
2
2
  export interface PTableFooterCellProps<T extends PTableItem = PTableItem> {
3
3
  column: PTableColumn<T>;
4
4
  items?: T[];
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { PTableHeadCellProps as Props } from './PTableHeadCell.types';
3
- import { PTableItem } from '../PTable';
2
+ import { type PTableHeadCellProps as Props } from './PTableHeadCell.types';
3
+ import { type PTableItem } from '../PTable';
4
4
  declare function PTableHeadCell<T extends PTableItem = PTableItem>({ column, items, defaultAlign, top, onCheckChange, }: Props<T>): React.JSX.Element;
5
5
  export default PTableHeadCell;
@@ -1,4 +1,4 @@
1
- import { PTableColumn, PTableItem, PTableProps } from '../PTable/PTable.types';
1
+ import { type PTableColumn, type PTableItem, type PTableProps } from '../PTable/PTable.types';
2
2
  export interface PTableHeadCellCommands {
3
3
  setChecked: (checked: boolean) => void;
4
4
  setCheckDisabled: (checkDisabled: boolean) => void;
@@ -1,4 +1,4 @@
1
1
  import React from 'react';
2
- import { PTableMenuButtonProps as Props } from './PTableMenuButton.types';
2
+ import { type PTableMenuButtonProps as Props } from './PTableMenuButton.types';
3
3
  declare const PTableMenuButton: ({ ref, children, className, sx: initSx, color, variant, startIcon, placement, inModal, zIndex, menuList, ...props }: Props) => React.JSX.Element;
4
4
  export default PTableMenuButton;
@@ -1,6 +1,6 @@
1
- import { ReactElement } from 'react';
2
- import { PButtonProps } from '@pdg/react-component';
3
- import { PopperPlacementType, MenuListProps } from '@mui/material';
1
+ import { type ReactElement } from 'react';
2
+ import { type PButtonProps } from '@pdg/react-component';
3
+ import { type PopperPlacementType, type MenuListProps } from '@mui/material';
4
4
  export interface PTableMenuButtonProps extends Omit<PButtonProps, 'size' | 'onClick'> {
5
5
  placement?: PopperPlacementType;
6
6
  inModal?: boolean;
@@ -1,4 +1,4 @@
1
1
  import React from 'react';
2
- import { PTablePaginationProps as Props } from './PTablePagination.types';
2
+ import { type PTablePaginationProps as Props } from './PTablePagination.types';
3
3
  declare const PTablePagination: ({ className, style, sx, paging, align, onChange }: Props) => React.JSX.Element;
4
4
  export default PTablePagination;
@@ -1,5 +1,5 @@
1
- import { StackProps } from '@mui/material';
2
- import { PTableCommonSxProps } from '../@types';
1
+ import { type StackProps } from '@mui/material';
2
+ import { type PTableCommonSxProps } from '../@types';
3
3
  export interface PTablePaging {
4
4
  current_page: number;
5
5
  per_page: number;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { PTableSortableBodyProps as Props } from './PTableSortableBody.types';
3
- import { PTableItem } from '../PTable';
2
+ import { type PTableSortableBodyProps as Props } from './PTableSortableBody.types';
3
+ import { type PTableItem } from '../PTable';
4
4
  declare function PTableSortableBody<T extends PTableItem = PTableItem>({ items, columns, showOddColor, showEvenColor, onGetBodyRowStyle, onGetBodyRowSx, onGetBodyRowClassName, onGetBodyColumnClassName, onGetBodyColumnStyle, onGetBodyColumnSx, defaultAlign, defaultEllipsis, sortable, onClick, onCheckChange, }: Props<T>): React.JSX.Element;
5
5
  export default PTableSortableBody;
@@ -1,5 +1,5 @@
1
- import { PTableColumn, PTableItem, PTableProps } from '../PTable';
2
- import { PTableBodyRowProps } from '../PTableBodyRow';
1
+ import { type PTableColumn, type PTableItem, type PTableProps } from '../PTable';
2
+ import { type PTableBodyRowProps } from '../PTableBodyRow';
3
3
  export interface PTableSortableBodyProps<T extends PTableItem = PTableItem> extends Pick<PTableProps<T>, 'showOddColor' | 'showEvenColor' | 'onGetBodyRowSx' | 'onGetBodyRowClassName' | 'onGetBodyRowStyle' | 'onGetBodyColumnClassName' | 'onGetBodyColumnSx' | 'onGetBodyColumnStyle' | 'defaultAlign' | 'defaultEllipsis' | 'sortable' | 'onClick'>, Pick<PTableBodyRowProps<T>, 'onCheckChange'> {
4
4
  items: (T & {
5
5
  id: number | string;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { PTableSortableBodyBlockProps as Props } from './PTableSortableBodyBlock.types';
3
- import { PTableItem } from '../PTable';
2
+ import { type PTableSortableBodyBlockProps as Props } from './PTableSortableBodyBlock.types';
3
+ import { type PTableItem } from '../PTable';
4
4
  declare function PTableSortableBodyBlock<T extends PTableItem = PTableItem>({ items, baseIndex, columns, showOddColor, showEvenColor, onGetBodyRowStyle, onGetBodyRowSx, onGetBodyRowClassName, onGetBodyColumnClassName, onGetBodyColumnStyle, onGetBodyColumnSx, defaultAlign, defaultEllipsis, sortable, onClick, onCheckChange, }: Props<T>): React.JSX.Element;
5
5
  export default PTableSortableBodyBlock;
@@ -1,5 +1,5 @@
1
- import { PTableSortableBodyProps } from '../PTableSortableBody';
2
- import { PTableItem } from '../PTable';
1
+ import { type PTableSortableBodyProps } from '../PTableSortableBody';
2
+ import { type PTableItem } from '../PTable';
3
3
  export interface PTableSortableBodyBlockProps<T extends PTableItem = PTableItem> extends PTableSortableBodyProps<T> {
4
4
  baseIndex: number;
5
5
  }
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { PTableTopHeadProps as Props } from './PTableTopHead.types';
3
- import { PTableItem } from '../PTable';
2
+ import { type PTableTopHeadProps as Props } from './PTableTopHead.types';
3
+ import { type PTableItem } from '../PTable';
4
4
  declare function PTableTopHead<T extends PTableItem = PTableItem>({ columns, items, rows, caption, defaultAlign, onCheckChange, }: Props<T>): React.JSX.Element;
5
5
  export default PTableTopHead;
@@ -1,6 +1,6 @@
1
- import { ReactNode } from 'react';
2
- import { TableCellProps } from '@mui/material';
3
- import { PTableColumn, PTableItem, PTableProps } from '../PTable';
1
+ import { type ReactNode } from 'react';
2
+ import { type TableCellProps } from '@mui/material';
3
+ import { type PTableColumn, type PTableItem, type PTableProps } from '../PTable';
4
4
  export interface PTableTopHeadRowColumn {
5
5
  colSpan?: number;
6
6
  rowSpan?: number;
package/dist/index.esm.js CHANGED
@@ -1520,7 +1520,7 @@ function _temp$4(sx_1) {
1520
1520
  if ($[17] !== column || $[18] !== onCheckChange) {
1521
1521
  _t3 = function _t3(e, newChecked) {
1522
1522
  _setChecked(newChecked);
1523
- onCheckChange && onCheckChange(column, newChecked);
1523
+ onCheckChange === null || onCheckChange === void 0 || onCheckChange(column, newChecked);
1524
1524
  };
1525
1525
  $[17] = column;
1526
1526
  $[18] = onCheckChange;
package/dist/index.js CHANGED
@@ -1520,7 +1520,7 @@ function _temp$4(sx_1) {
1520
1520
  if ($[17] !== column || $[18] !== onCheckChange) {
1521
1521
  _t3 = function _t3(e, newChecked) {
1522
1522
  _setChecked(newChecked);
1523
- onCheckChange && onCheckChange(column, newChecked);
1523
+ onCheckChange === null || onCheckChange === void 0 || onCheckChange(column, newChecked);
1524
1524
  };
1525
1525
  $[17] = column;
1526
1526
  $[18] = onCheckChange;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@pdg/react-table",
3
3
  "title": "Typescript React Table Module",
4
4
  "description": "Typescript React Table Module",
5
- "version": "1.2.8",
5
+ "version": "1.2.10",
6
6
  "type": "module",
7
7
  "main": "./dist/index.js",
8
8
  "module": "./dist/index.esm.js",
@@ -59,9 +59,9 @@
59
59
  "@mui/icons-material": "^7.0.0",
60
60
  "@mui/material": "^7.0.0",
61
61
  "@mui/x-date-pickers": "^7.0.0",
62
- "@pdg/react-component": "^1.1.16",
63
- "@pdg/react-form": "^1.2.8",
64
- "@pdg/react-hook": "^2.0.20",
62
+ "@pdg/react-component": "^1.1.17",
63
+ "@pdg/react-form": "^1.2.19",
64
+ "@pdg/react-hook": "^2.0.22",
65
65
  "dayjs": "^1.11.19",
66
66
  "react": ">=19.0.0",
67
67
  "react-dom": ">=19.0.0",
@@ -69,9 +69,9 @@
69
69
  "simplebar-react": "^3.0.0"
70
70
  },
71
71
  "dependencies": {
72
- "@pdg/compare": "^1.0.8",
73
- "@pdg/formatting": "^1.0.8",
74
- "@pdg/types": "^1.0.10",
72
+ "@pdg/compare": "^1.0.9",
73
+ "@pdg/formatting": "^1.0.9",
74
+ "@pdg/types": "^1.0.11",
75
75
  "classnames": "^2.5.1",
76
76
  "react-intersection-observer": "^9.16.0",
77
77
  "uuid": "^13.0.0"
@@ -89,9 +89,9 @@
89
89
  "@mui/icons-material": "^7.3.6",
90
90
  "@mui/material": "^7.3.6",
91
91
  "@mui/x-date-pickers": "^7.29.4",
92
- "@pdg/react-component": "^1.1.16",
93
- "@pdg/react-form": "^1.2.8",
94
- "@pdg/react-hook": "^2.0.20",
92
+ "@pdg/react-component": "^1.1.17",
93
+ "@pdg/react-form": "^1.2.19",
94
+ "@pdg/react-hook": "^2.0.22",
95
95
  "@rollup/plugin-babel": "^6.1.0",
96
96
  "@rollup/plugin-commonjs": "29.0.0",
97
97
  "@rollup/plugin-eslint": "^9.2.0",