@bluemarble/bm-components 0.0.49 → 0.0.50

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 +1,4 @@
1
- export declare function GetInputLabel<T, K extends T[number]["name"]>(columns: T): (columnName: K) => any;
1
+ export declare function GetInputLabel<T, K extends T[number]["name"]>(columns: T): (columnName: K) => {
2
+ label: any;
3
+ name: any;
4
+ };
package/dist/index.d.ts CHANGED
@@ -276,6 +276,9 @@ declare type ModalProps = {
276
276
  } & ModalProps$1;
277
277
  declare const Modal: ({ open, onClose, ...rest }: ModalProps) => JSX.Element;
278
278
 
279
- declare function GetInputLabel<T, K extends T[number]["name"]>(columns: T): (columnName: K) => any;
279
+ declare function GetInputLabel<T, K extends T[number]["name"]>(columns: T): (columnName: K) => {
280
+ label: any;
281
+ name: any;
282
+ };
280
283
 
281
284
  export { Autocomplete, BaseGrid, Checkbox, ColumnTitleProps, ColumnsProps, EditableTableCell, FilterCompareType, FilterProps, GetInputLabel, Grid, IFilter, Input, InputMask, LargeButton, Modal, Radio, Select, Switch, TabPanel, TabPanelProps, Td, Tr, createFilter, filterData, getTabProps, useEvent, useFilter, useGrid, useLoading };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bluemarble/bm-components",
3
- "version": "0.0.49",
3
+ "version": "0.0.50",
4
4
  "description": "BM components",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",