@gingkoo/pandora-metabase 0.0.1-alpha.1 → 0.0.1-alpha.2

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.
@@ -15,7 +15,7 @@ export interface ColumnType {
15
15
  table: string;
16
16
  alias: string;
17
17
  name: string;
18
- database_type: SQL_COLUMN_TYPE | '';
18
+ database_type: SQL_COLUMN_TYPE | string;
19
19
  sql?: string;
20
20
  }
21
21
  export interface ColumnGroupType {
@@ -2,6 +2,6 @@ import './index.less';
2
2
  import type { MetaBaseProps } from '../metaBase/interface';
3
3
  import { MetaData_ColumnsType } from '../store/metabase/types';
4
4
  export declare const SummarizeAlias = "source";
5
- declare const MetaBase: (props: MetaBaseProps) => import("react/jsx-runtime").JSX.Element | null;
5
+ declare const MetaBase: (props: MetaBaseProps) => import("react/jsx-runtime").JSX.Element;
6
6
  export default MetaBase;
7
7
  export { MetaBaseProps, type MetaData_ColumnsType };
@@ -68,7 +68,7 @@ export interface MetaFilter_Item {
68
68
  alias: string;
69
69
  name: string;
70
70
  groupSql?: string;
71
- database_type: SQL_COLUMN_TYPE | '';
71
+ database_type: SQL_COLUMN_TYPE | string;
72
72
  val: string[];
73
73
  condition: string;
74
74
  quotes: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gingkoo/pandora-metabase",
3
- "version": "0.0.1-alpha.1",
3
+ "version": "0.0.1-alpha.2",
4
4
  "description": "",
5
5
  "main": "lib/es/index.js",
6
6
  "module": "lib/es/index.js",