@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.
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) =>
|
|
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 };
|