@bluemarble/bm-components 0.0.10 → 0.0.11

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,5 +1,4 @@
1
1
  export { default as Grid, IFilter, ColumnTitleProps, FilterProps, filterData, Tr, Td, EditableTableCell, } from "./Grid";
2
- export { GridV2 } from "./GridV2";
3
2
  export { Input } from "./Input";
4
3
  export { InputMask } from "./InputMask";
5
4
  export { Select } from "./Select";
package/dist/index.d.ts CHANGED
@@ -1,7 +1,6 @@
1
1
  /// <reference types="react" />
2
- import React, { ReactNode, PropsWithChildren, FC } from 'react';
2
+ import React, { ReactNode, FC } from 'react';
3
3
  import { TableCellProps, TextFieldProps, TableRowProps, StandardTextFieldProps, SelectProps as SelectProps$1, FormControlProps, InputLabelProps, AutocompleteRenderInputParams, AutocompleteProps as AutocompleteProps$1, CheckboxProps as CheckboxProps$1, FormControlLabelProps, SwitchProps as SwitchProps$1, RadioGroupProps, ButtonProps } from '@mui/material';
4
- import { TableOptions } from 'react-table';
5
4
  import IMask$1 from 'imask';
6
5
 
7
6
  interface ColumnTitleProps<T = {}> {
@@ -72,10 +71,6 @@ declare const Tr: React.MemoExoticComponent<(props: CustomTableRowProps) => JSX.
72
71
 
73
72
  declare const Td: React.MemoExoticComponent<({ children, ...props }: TableCellProps) => JSX.Element>;
74
73
 
75
- interface GridV2Props<T extends Record<string, unknown>> extends TableOptions<T> {
76
- }
77
- declare function GridV2<T extends Record<string, any>>({ columns, data, }: PropsWithChildren<GridV2Props<T>>): JSX.Element;
78
-
79
74
  interface InputProps extends StandardTextFieldProps {
80
75
  name: string;
81
76
  label: string;
@@ -178,4 +173,4 @@ interface LargeButtonProps extends ButtonProps {
178
173
  }
179
174
  declare const LargeButton: ({ loading, children, ...rest }: LargeButtonProps) => JSX.Element;
180
175
 
181
- export { Autocomplete, Checkbox, ColumnTitleProps, EditableTableCell, FilterProps, Grid, GridV2, IFilter, Input, InputMask, LargeButton, Radio, Select, Switch, Td, Tr, filterData };
176
+ export { Autocomplete, Checkbox, ColumnTitleProps, EditableTableCell, FilterProps, Grid, IFilter, Input, InputMask, LargeButton, Radio, Select, Switch, Td, Tr, filterData };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bluemarble/bm-components",
3
- "version": "0.0.10",
3
+ "version": "0.0.11",
4
4
  "description": "BM components",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",