@gingkoo/pandora-metabase 1.0.0-alpha.9 → 1.0.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.
- package/README.md +2 -0
- package/lib/es/components/dialog/select-summarize/index.d.ts +2 -1
- package/lib/es/index.js +576 -308
- package/lib/es/index.js.map +1 -1
- package/lib/es/store/types.d.ts +6 -3
- package/lib/es/types.d.ts +3 -0
- package/lib/es/utils/helper-dom.d.ts +0 -1
- package/lib/es/utils.d.ts +3 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -62,6 +62,8 @@ export interface MetaBaseProps {
|
|
|
62
62
|
subShowSubquery?: boolean; //子查询是否展示子查询
|
|
63
63
|
constantList?: OptionItem[]; //常量下拉框
|
|
64
64
|
notExistsToolbar?: ToolbarType[]; // notExists的功能菜单 默认取toolbar
|
|
65
|
+
ignoreGroupByType?: boolean; // 忽略groupBy类型
|
|
66
|
+
|
|
65
67
|
}
|
|
66
68
|
|
|
67
69
|
export interface OptionItem {
|
|
@@ -12,6 +12,7 @@ interface PropsType {
|
|
|
12
12
|
value: ValueType;
|
|
13
13
|
onChange: (reocrd: ValueType) => void;
|
|
14
14
|
didUpdate?: Function;
|
|
15
|
+
ignoreGroupByType?: boolean;
|
|
15
16
|
}
|
|
16
|
-
declare const SelectSummarize: ({ data, value, onChange, didUpdate }: PropsType) => import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
declare const SelectSummarize: ({ data, value, onChange, didUpdate, ignoreGroupByType }: PropsType) => import("react/jsx-runtime").JSX.Element;
|
|
17
18
|
export default SelectSummarize;
|