@qqt-product/ui 0.0.6 → 0.0.8

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.
@@ -5,6 +5,7 @@ export declare const antd: {
5
5
  install: (app: App<any>) => App<any>;
6
6
  };
7
7
  export { ConfigProvider } from 'ant-design-vue';
8
+ export { setupVxeTable } from '../lib/setting/vxe-table/setupVxeTable';
8
9
  export declare const createUI: () => {
9
10
  install: (app: App) => void;
10
11
  };
@@ -0,0 +1,7 @@
1
+ /**
2
+ * vxe-table pro v2.1.0
3
+ * Purchase authorization: https://vxetable.cn/plugins/
4
+ * @copyright x_extends@163.com
5
+ */
6
+ export const VXETablePro: {}
7
+ export default VXETablePro
@@ -0,0 +1,7 @@
1
+ import type { App } from 'vue';
2
+ declare type vxeTableParamsType = {
3
+ i18n: (key: any, args: any) => any;
4
+ translate: (key: any, args: any) => any;
5
+ };
6
+ export declare const setupVxeTable: (app: App<Element>, init?: vxeTableParamsType) => void;
7
+ export {};
@@ -0,0 +1,3 @@
1
+ import { VxeGridProps } from 'vxe-table';
2
+ export declare const viewVxeTableConfig: VxeGridProps;
3
+ export declare const editVxeTableConfig: VxeGridProps;