@murabei-data-science/pumpwood-ui 1.3.5 → 1.3.7

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.
@@ -836,7 +836,9 @@ interface ITableProps<T> {
836
836
  * ```
837
837
  */
838
838
  declare const PumpwoodTable: {
839
- Root: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableElement> & React$1.RefAttributes<HTMLTableElement>>;
839
+ Root: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableElement> & {
840
+ wrap?: boolean;
841
+ } & React$1.RefAttributes<HTMLTableElement>>;
840
842
  Body: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
841
843
  Cell: React$1.ForwardRefExoticComponent<React$1.TdHTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
842
844
  Head: React$1.ForwardRefExoticComponent<React$1.ThHTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
@@ -1213,26 +1215,10 @@ interface IMultiSelectDropdownProps {
1213
1215
  }
1214
1216
  declare function MultiSelectDropdown({ options, selected, onChange, placeholder, className, maxDisplay, }: IMultiSelectDropdownProps): react_jsx_runtime.JSX.Element;
1215
1217
 
1216
- /**
1217
- * A responsive table component.
1218
- *
1219
- * @example
1220
- * ```tsx
1221
- * <Table>
1222
- * <TableHeader>
1223
- * <TableRow>
1224
- * <TableHead>Header</TableHead>
1225
- * </TableRow>
1226
- * </TableHeader>
1227
- * <TableBody>
1228
- * <TableRow>
1229
- * <TableCell>Cell</TableCell>
1230
- * </TableRow>
1231
- * </TableBody>
1232
- * </Table>
1233
- * ```
1234
- */
1235
- declare const Table: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableElement> & React$1.RefAttributes<HTMLTableElement>>;
1218
+ declare const Table: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableElement> & {
1219
+ /** When false, renders only the table element (no scroll wrapper). */
1220
+ wrap?: boolean;
1221
+ } & React$1.RefAttributes<HTMLTableElement>>;
1236
1222
  declare const TableHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
1237
1223
  declare const TableBody: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
1238
1224
  declare const TableFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;