@devtable/dashboard 8.40.0 → 8.41.1

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.
@@ -10,5 +10,7 @@ interface ISelectDataSource {
10
10
  key: string;
11
11
  }) => void;
12
12
  }
13
- export declare const SelectDataSource: import("react").FunctionComponent<ISelectDataSource>;
13
+ export declare const SelectDataSource: (({ value, onChange }: ISelectDataSource) => JSX.Element) & {
14
+ displayName: string;
15
+ };
14
16
  export {};
@@ -1,7 +1,11 @@
1
1
  /// <reference types="react" />
2
2
  import { DataSourceModelInstance } from '~/model/datasources/datasource';
3
- export declare const TableStructureModal: (({ dataSource }: {
3
+ import { AnyObject } from '~/types';
4
+ interface ITableStructureModal {
4
5
  dataSource: DataSourceModelInstance;
5
- }) => JSX.Element) & {
6
+ triggerButtonProps?: AnyObject;
7
+ }
8
+ export declare const TableStructureModal: (({ dataSource, triggerButtonProps }: ITableStructureModal) => JSX.Element) & {
6
9
  displayName: string;
7
10
  };
11
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devtable/dashboard",
3
- "version": "8.40.0",
3
+ "version": "8.41.1",
4
4
  "license": "Apache-2.0",
5
5
  "publishConfig": {
6
6
  "access": "public",