@bluemarble/bm-components 0.0.27 → 0.0.29

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,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { ColumnTitleProps } from "./Grid";
3
2
  interface AutoCreatedRows {
4
3
  columns: ColumnTitleProps[];
@@ -26,6 +26,7 @@ export interface GridProps<T> {
26
26
  isLoading?: boolean;
27
27
  noFilterButtons?: boolean;
28
28
  noPagination?: boolean;
29
+ noFilters?: boolean;
29
30
  primaryKey?: string;
30
31
  }
31
32
  declare const Grid: <ObjectType>(props: React.PropsWithChildren<GridProps<ObjectType>>) => JSX.Element;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { ColumnTitleProps } from "./Grid";
3
2
  interface GridHeaderProps {
4
3
  titles?: ColumnTitleProps[];
@@ -3,6 +3,7 @@ import { StandardTextFieldProps } from "@mui/material";
3
3
  interface InputProps extends StandardTextFieldProps {
4
4
  name: string;
5
5
  label: string;
6
+ shrink?: boolean;
6
7
  withFormik?: boolean;
7
8
  }
8
9
  export declare const Input: FC<InputProps>;
package/dist/index.d.ts CHANGED
@@ -29,6 +29,7 @@ interface GridProps<T> {
29
29
  isLoading?: boolean;
30
30
  noFilterButtons?: boolean;
31
31
  noPagination?: boolean;
32
+ noFilters?: boolean;
32
33
  primaryKey?: string;
33
34
  }
34
35
  declare const Grid: <ObjectType>(props: React.PropsWithChildren<GridProps<ObjectType>>) => JSX.Element;
@@ -74,6 +75,7 @@ declare const Td: React.MemoExoticComponent<({ children, ...props }: TableCellPr
74
75
  interface InputProps extends StandardTextFieldProps {
75
76
  name: string;
76
77
  label: string;
78
+ shrink?: boolean;
77
79
  withFormik?: boolean;
78
80
  }
79
81
  declare const Input: FC<InputProps>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bluemarble/bm-components",
3
- "version": "0.0.27",
3
+ "version": "0.0.29",
4
4
  "description": "BM components",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",