keli-ui 0.2.10 → 0.2.12

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.
@@ -0,0 +1 @@
1
+ export * from './useButtonExec';
@@ -1,3 +1,2 @@
1
1
  import FormSelectClient from './FormSelectClient.vue';
2
- import FormSelectMobile from './FormSelectMobile.vue';
3
- export { FormSelectClient, FormSelectMobile };
2
+ export { FormSelectClient };
@@ -1,3 +1,2 @@
1
1
  import FormSelectAsyncClient from './FormSelectAsyncClient.vue';
2
- import FormSelectAsyncMobile from './FormSelectAsyncMobile.vue';
3
- export { FormSelectAsyncClient, FormSelectAsyncMobile };
2
+ export { FormSelectAsyncClient };
@@ -1,2 +1,2 @@
1
- import KeliQueryBar from './QueryBarProxy.vue';
1
+ import KeliQueryBar from './QueryBarClient.vue';
2
2
  export default KeliQueryBar;
@@ -1,2 +1,2 @@
1
- import KeTableCardRender from './TableCardRenderProxy.vue';
2
- export default KeTableCardRender;
1
+ import TableCardRender from './TableCardRenderClient.vue';
2
+ export default TableCardRender;
@@ -1,4 +1,2 @@
1
1
  import TableRenderClient from './TableRenderClient.vue';
2
- import TableRenderMobile from './TableRenderMobile.vue';
3
- export { TableRenderClient, TableRenderMobile };
4
2
  export default TableRenderClient;
@@ -1,3 +1,2 @@
1
- import ToolBarClient from './ToolBarClient.vue';
2
- import ToolBarMobile from './ToolBarMobile.vue';
3
- export { ToolBarClient, ToolBarMobile };
1
+ import ToolBar from './ToolBarClient.vue';
2
+ export { ToolBar };
@@ -1,18 +1,77 @@
1
1
  import type { App } from 'vue';
2
- import "../style.css";
2
+ import '../style.css';
3
+ import KeTableCardRender from './TableComponents/TableCardRender';
4
+ import KeTableTreeRender from './TableComponents/TableTreeRender';
5
+ import KeTableCheckBoxAsync from './TableComponents/TableCheckBoxAsync';
6
+ import KeTableInput from './TableComponents/TableInput';
7
+ import KeTableInputNumber from './TableComponents/TableInputNumber';
8
+ import KeTableSelect from './TableComponents/TableSelect';
9
+ import KeTableSelectAsync from './TableComponents/TableSelectAsync';
10
+ import KeTableSwitch from './TableComponents/TableSwitch';
11
+ import KeQueryBar from './QueryComponents/QueryBar';
12
+ import KeQueryDateTime from './QueryComponents/QueryDateTime';
13
+ import KeQueryInput from './QueryComponents/QueryInput';
14
+ import KeQueryInputLike from './QueryComponents/QueryInputLike';
15
+ import KeQuerySelect from './QueryComponents/QuerySelect';
16
+ import { ToolBar } from './ToolBar';
17
+ import { FormCascaderAsync } from './FormComponents/FormCascaderAsync';
18
+ import { FormCheckBoxAsync } from './FormComponents/FormCheckBoxAsync';
19
+ import { FormDatePickerClient } from './FormComponents/FormDatePicker';
20
+ import { FormDateTimePickerClient } from './FormComponents/FormDateTimePicker';
21
+ import { FormDivider } from './FormComponents/FormDivider';
22
+ import { FormDynamicTable } from './FormComponents/FormDynamicTable';
23
+ import { FormInput } from './FormComponents/FormInput';
24
+ import { FormInputNumber } from './FormComponents/FormInputNumber';
25
+ import { FormRadio } from './FormComponents/FormRadio';
26
+ import { FormRenderClient } from './FormComponents/FormRender';
27
+ import { FormSelectClient } from './FormComponents/FormSelect';
28
+ import { FormSelectAsyncClient } from './FormComponents/FormSelectAsync';
29
+ import { FormSelectRemote } from './FormComponents/FormSelectRemote';
30
+ import { FormSwitch } from './FormComponents/FormSwitch';
31
+ import { FormTableSelect } from './FormComponents/FormTableSelect';
32
+ import { FormTableSelectAsync } from './FormComponents/FormTableSelectAsync';
33
+ import { FormText } from './FormComponents/FormText';
34
+ import { FormTextArea } from './FormComponents/FormTextArea';
3
35
  import 'vxe-pc-ui/lib/style.css';
4
36
  declare const install: (app: App) => void;
5
- declare const _default: {
6
- install: (app: App) => void;
7
- };
8
- export default _default;
9
- export { install, };
37
+ export { KeTableCardRender, KeTableTreeRender, KeTableCheckBoxAsync, KeTableInput, KeTableInputNumber, KeTableSelect, KeTableSelectAsync, KeTableSwitch, KeQueryBar, KeQueryDateTime, KeQueryInput, KeQueryInputLike, KeQuerySelect, ToolBar as KeToolBar, FormCascaderAsync as KeFormCascaderAsync, FormCheckBoxAsync as KeFormCheckBoxAsync, FormDatePickerClient as KeFormDatePicker, FormDateTimePickerClient as KeFormDateTimePicker, FormDivider as KeFormDivider, FormDynamicTable as KeFormDynamicTable, FormInput as KeFormInput, FormInputNumber as KeFormInputNumber, FormRadio as KeFormRadio, FormRenderClient as KeFormRender, FormSelectClient as KeFormSelect, FormSelectAsyncClient as KeFormSelectAsync, FormSelectRemote as KeFormSelectRemote, FormSwitch as KeFormSwitch, FormTableSelect as KeFormTableSelect, FormTableSelectAsync as KeFormTableSelectAsync, FormText as KeFormText, FormTextArea as KeFormTextArea, install, };
10
38
  export * from '../utils';
11
39
  export type * from './types';
12
40
  export * from 'vxe-table';
13
- export * from '../lib/modeControl';
41
+ export * from '../lib';
14
42
  declare module 'vue' {
15
43
  interface GlobalComponents {
16
- KeTableRender: typeof import('./TableComponents/TableRender')['default'];
44
+ KeTableCardRender: typeof KeTableCardRender;
45
+ KeTableTreeRender: typeof KeTableTreeRender;
46
+ KeTableCheckBoxAsync: typeof KeTableCheckBoxAsync;
47
+ KeTableInput: typeof KeTableInput;
48
+ KeTableInputNumber: typeof KeTableInputNumber;
49
+ KeTableSelect: typeof KeTableSelect;
50
+ KeTableSelectAsync: typeof KeTableSelectAsync;
51
+ KeTableSwitch: typeof KeTableSwitch;
52
+ KeQueryBar: typeof KeQueryBar;
53
+ KeQueryDateTime: typeof KeQueryDateTime;
54
+ KeQueryInput: typeof KeQueryInput;
55
+ KeQueryInputLike: typeof KeQueryInputLike;
56
+ KeQuerySelect: typeof KeQuerySelect;
57
+ KeToolBar: typeof ToolBar;
58
+ KeFormCascaderAsync: typeof FormCascaderAsync;
59
+ KeFormCheckBoxAsync: typeof FormCheckBoxAsync;
60
+ KeFormDatePicker: typeof FormDatePickerClient;
61
+ KeFormDateTimePicker: typeof FormDateTimePickerClient;
62
+ KeFormDivider: typeof FormDivider;
63
+ KeFormDynamicTable: typeof FormDynamicTable;
64
+ KeFormInput: typeof FormInput;
65
+ KeFormInputNumber: typeof FormInputNumber;
66
+ KeFormRadio: typeof FormRadio;
67
+ KeFormRender: typeof FormRenderClient;
68
+ KeFormSelect: typeof FormSelectClient;
69
+ KeFormSelectAsync: typeof FormSelectAsyncClient;
70
+ KeFormSelectRemote: typeof FormSelectRemote;
71
+ KeFormSwitch: typeof FormSwitch;
72
+ KeFormTableSelect: typeof FormTableSelect;
73
+ KeFormTableSelectAsync: typeof FormTableSelectAsync;
74
+ KeFormText: typeof FormText;
75
+ KeFormTextArea: typeof FormTextArea;
17
76
  }
18
77
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "keli-ui",
3
3
  "private": false,
4
- "version": "0.2.10",
4
+ "version": "0.2.12",
5
5
  "author": "Luv Letter",
6
6
  "description": "配置化组件库",
7
7
  "type": "module",
@@ -32,7 +32,6 @@
32
32
  },
33
33
  "dependencies": {
34
34
  "solarday2lunarday": "^1.12.1",
35
- "vant": "^4.9.19",
36
35
  "vue-draggable-plus": "^0.6.0",
37
36
  "vxe-pc-ui": "^4.5.34",
38
37
  "vxe-table": "^4.13.15"
@@ -1,2 +0,0 @@
1
- export declare const deviceMode: any;
2
- export declare const isMobileDevice: any;
@@ -1,2 +0,0 @@
1
- declare const _default: any;
2
- export default _default;
@@ -1,2 +0,0 @@
1
- declare const _default: any;
2
- export default _default;
@@ -1,2 +0,0 @@
1
- declare const _default: any;
2
- export default _default;
@@ -1,12 +0,0 @@
1
- declare var __VLS_6: {};
2
- type __VLS_Slots = {} & {
3
- default?: (props: typeof __VLS_6) => any;
4
- };
5
- declare const __VLS_component: any;
6
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
7
- export default _default;
8
- type __VLS_WithSlots<T, S> = T & {
9
- new (): {
10
- $slots: S;
11
- };
12
- };
@@ -1,2 +0,0 @@
1
- declare const _default: any;
2
- export default _default;
@@ -1,12 +0,0 @@
1
- declare var __VLS_6: {};
2
- type __VLS_Slots = {} & {
3
- default?: (props: typeof __VLS_6) => any;
4
- };
5
- declare const __VLS_component: any;
6
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
7
- export default _default;
8
- type __VLS_WithSlots<T, S> = T & {
9
- new (): {
10
- $slots: S;
11
- };
12
- };
@@ -1,2 +0,0 @@
1
- declare const _default: any;
2
- export default _default;
@@ -1,12 +0,0 @@
1
- declare var __VLS_1: {};
2
- type __VLS_Slots = {} & {
3
- 'custom-button'?: (props: typeof __VLS_1) => any;
4
- };
5
- declare const __VLS_component: any;
6
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
7
- export default _default;
8
- type __VLS_WithSlots<T, S> = T & {
9
- new (): {
10
- $slots: S;
11
- };
12
- };
@@ -1,12 +0,0 @@
1
- declare var __VLS_7: number, __VLS_8: any;
2
- type __VLS_Slots = {} & {
3
- [K in NonNullable<typeof __VLS_7>]?: (props: typeof __VLS_8) => any;
4
- };
5
- declare const __VLS_component: any;
6
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
7
- export default _default;
8
- type __VLS_WithSlots<T, S> = T & {
9
- new (): {
10
- $slots: S;
11
- };
12
- };