@gx-design-vue/pro-table 0.0.9 → 0.0.11
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/components/ToolBar/index.d.ts +19 -3
- package/dist/pro-table.mjs +590 -585
- package/dist/pro-table.umd.js +8 -8
- package/package.json +3 -3
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { PropType } from 'vue';
|
|
2
2
|
import type { ProTableProps, OptionConfig } from '../../types/TableTypings';
|
|
3
3
|
import './style.less';
|
|
4
|
+
export declare type OptionsFunctionType = () => void;
|
|
4
5
|
export declare type ToolBarProps = {
|
|
5
6
|
headerTitle?: ProTableProps['headerTitle'];
|
|
6
7
|
titleTip?: ProTableProps['titleTip'];
|
|
@@ -10,6 +11,21 @@ export declare type ToolBarProps = {
|
|
|
10
11
|
settingExtra?: ProTableProps['settingExtra'];
|
|
11
12
|
options?: OptionConfig | boolean;
|
|
12
13
|
};
|
|
13
|
-
|
|
14
|
-
|
|
14
|
+
declare const ToolbarRender: import("vue").DefineComponent<{
|
|
15
|
+
options: PropType<boolean | OptionConfig | undefined>;
|
|
16
|
+
titleTip: PropType<import("../../types/SlotsTypings").TitleTipRender>;
|
|
17
|
+
settingExtra: PropType<import("../../types/SlotsTypings").SettingExtraRender>;
|
|
18
|
+
optionsExtra: PropType<import("../../types/SlotsTypings").OptionsExtraRender>;
|
|
19
|
+
titleTipText: PropType<string | undefined>;
|
|
20
|
+
toolBarBtn: PropType<import("../../types/SlotsTypings").ToolBarBtnRender>;
|
|
21
|
+
headerTitle: PropType<import("../../types/SlotsTypings").HeaderTitleRender>;
|
|
22
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
23
|
+
options: PropType<boolean | OptionConfig | undefined>;
|
|
24
|
+
titleTip: PropType<import("../../types/SlotsTypings").TitleTipRender>;
|
|
25
|
+
settingExtra: PropType<import("../../types/SlotsTypings").SettingExtraRender>;
|
|
26
|
+
optionsExtra: PropType<import("../../types/SlotsTypings").OptionsExtraRender>;
|
|
27
|
+
titleTipText: PropType<string | undefined>;
|
|
28
|
+
toolBarBtn: PropType<import("../../types/SlotsTypings").ToolBarBtnRender>;
|
|
29
|
+
headerTitle: PropType<import("../../types/SlotsTypings").HeaderTitleRender>;
|
|
30
|
+
}>>, {}>;
|
|
15
31
|
export default ToolbarRender;
|