@nulogy/components 10.2.8 → 10.2.9

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.
@@ -3,10 +3,7 @@ declare const _default: {
3
3
  title: string;
4
4
  };
5
5
  export default _default;
6
- export declare const Danger: () => React.JSX.Element;
7
- export declare const Informative: () => React.JSX.Element;
8
- export declare const Success: () => React.JSX.Element;
9
- export declare const Warning: () => React.JSX.Element;
6
+ export declare const AlertTypes: () => React.JSX.Element;
10
7
  export declare const WithACloseButton: {
11
8
  (): React.JSX.Element;
12
9
  story: {
@@ -1,10 +1,10 @@
1
1
  import React from "react";
2
2
  import { StatefulTableProps } from "./StatefulTable";
3
3
  import { ColumnType, RowType, CellInfoType } from "./Table.types";
4
- export type TableProps<ColumnMetadata> = StatefulTableProps<ColumnMetadata>;
5
- export type TableColumnType<ColumnMetadata> = ColumnType<ColumnMetadata>;
4
+ export type TableProps<ColumnMetadata = unknown> = StatefulTableProps<ColumnMetadata>;
5
+ export type TableColumnType<ColumnMetadata = unknown> = ColumnType<ColumnMetadata>;
6
6
  export type TableRowType = RowType;
7
- export type TableCellInfoType<ColumnMetadata> = CellInfoType<ColumnMetadata>;
7
+ export type TableCellInfoType<ColumnMetadata = unknown> = CellInfoType<ColumnMetadata>;
8
8
  declare function Table<ColumnMetadata>({ hasSelectableRows, rowsPerPage, hasExpandableRows, selectedRows, onRowSelectionChange, onRowExpansionChange, onPageChange, selectAllAriaLabel, deselectAllAriaLabel, paginationCss, paginationProps, ...props }: TableProps<ColumnMetadata>): React.JSX.Element;
9
9
  declare namespace Table {
10
10
  var SortingHeader: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nulogy/components",
3
- "version": "10.2.8",
3
+ "version": "10.2.9",
4
4
  "description": "Component library for the Nulogy Design System - http://nulogy.design",
5
5
  "private": false,
6
6
  "publishConfig": {