@qqt-product/ui 16.0.1 → 16.0.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.
- package/dist/index.es.js +30744 -30577
- package/dist/index.umd.js +117 -117
- package/dist/lib/components/edit-page-layout/src/edit-page-layout-types.d.ts +4 -0
- package/dist/lib/components/layout/index.d.ts +1 -0
- package/dist/lib/components/layout/src/index.vue.d.ts +1 -0
- package/dist/lib/components/layout/src/sider/index.vue.d.ts +1 -0
- package/dist/lib/components/layout/src/sider/logo.vue.d.ts +1 -0
- package/dist/lib/components/layout/src/types.d.ts +1 -0
- package/dist/lib/components/list-page-layout/index.d.ts +1 -1
- package/dist/lib/components/list-page-layout/src/components/list-header/module/searchExtend/index.vue.d.ts +2 -0
- package/dist/lib/components/list-page-layout/src/layout.vue.d.ts +1 -1
- package/dist/lib/components/list-page-layout/src/list-page-layout-types.d.ts +1 -1
- package/dist/lib/components/page-layout/index.d.ts +1 -0
- package/dist/lib/components/page-layout/src/page-layout.vue.d.ts +1 -0
- package/dist/lib/components/select/index.d.ts +2 -3
- package/dist/lib/components/select/src/select.vue.d.ts +2 -3
- package/dist/lib/components/vxe-select/index.d.ts +1 -2
- package/dist/lib/components/vxe-select/src/vxe-select.vue.d.ts +2 -3
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/lib/components/remote-select/index.d.ts +0 -83
- package/dist/lib/components/remote-select/src/remote-select.vue.d.ts +0 -79
package/package.json
CHANGED
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
import type { MessageType } from 'ant-design-vue/es/message';
|
|
2
|
-
import type { SrmI18n } from '../../utils/type';
|
|
3
|
-
import type { Config, RecordString } from './src/remote-select-types';
|
|
4
|
-
import type { DefineComponent, PropType, ComputedRef, Ref, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
5
|
-
import type { SFCWithInstall } from '@qqt-product/utils/dist/modules/withInstall';
|
|
6
|
-
import QRemoteSelect from './src/remote-select.vue';
|
|
7
|
-
export * from './src/remote-select-types';
|
|
8
|
-
export { QRemoteSelect };
|
|
9
|
-
declare const _default: SFCWithInstall<DefineComponent<{
|
|
10
|
-
value: {
|
|
11
|
-
type: StringConstructor;
|
|
12
|
-
default: string;
|
|
13
|
-
};
|
|
14
|
-
config: {
|
|
15
|
-
type: PropType<Config>;
|
|
16
|
-
default: () => {};
|
|
17
|
-
};
|
|
18
|
-
row: {
|
|
19
|
-
type: PropType<Record<string | number, unknown>>;
|
|
20
|
-
default: () => {};
|
|
21
|
-
};
|
|
22
|
-
idx: {
|
|
23
|
-
type: NumberConstructor;
|
|
24
|
-
default: number;
|
|
25
|
-
};
|
|
26
|
-
onChange: {
|
|
27
|
-
type: PropType<((value: RecordString[]) => void) | ((value: RecordString[]) => void)[]>;
|
|
28
|
-
default: unknown;
|
|
29
|
-
};
|
|
30
|
-
}, {
|
|
31
|
-
srmI18n: SrmI18n;
|
|
32
|
-
classes: ComputedRef<{
|
|
33
|
-
[x: string]: boolean;
|
|
34
|
-
}>;
|
|
35
|
-
value: Ref<string>;
|
|
36
|
-
valueKey: Ref<any>;
|
|
37
|
-
config: Ref<Config>;
|
|
38
|
-
data: {
|
|
39
|
-
modalLoading: boolean;
|
|
40
|
-
url: string;
|
|
41
|
-
params: {
|
|
42
|
-
pageNo: number;
|
|
43
|
-
pageSize: number;
|
|
44
|
-
keyWord: string;
|
|
45
|
-
};
|
|
46
|
-
dataSource: {
|
|
47
|
-
[x: string]: string;
|
|
48
|
-
id: string;
|
|
49
|
-
}[];
|
|
50
|
-
};
|
|
51
|
-
formatTitle: (item: Record<string, unknown>) => string;
|
|
52
|
-
handleFocus: () => void;
|
|
53
|
-
handleSearch: (changeValue?: string | undefined) => void;
|
|
54
|
-
handleChange: (changeValue: string) => void | MessageType;
|
|
55
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
56
|
-
value: {
|
|
57
|
-
type: StringConstructor;
|
|
58
|
-
default: string;
|
|
59
|
-
};
|
|
60
|
-
config: {
|
|
61
|
-
type: PropType<Config>;
|
|
62
|
-
default: () => {};
|
|
63
|
-
};
|
|
64
|
-
row: {
|
|
65
|
-
type: PropType<Record<string | number, unknown>>;
|
|
66
|
-
default: () => {};
|
|
67
|
-
};
|
|
68
|
-
idx: {
|
|
69
|
-
type: NumberConstructor;
|
|
70
|
-
default: number;
|
|
71
|
-
};
|
|
72
|
-
onChange: {
|
|
73
|
-
type: PropType<((value: RecordString[]) => void) | ((value: RecordString[]) => void)[]>;
|
|
74
|
-
default: unknown;
|
|
75
|
-
};
|
|
76
|
-
}>>, {
|
|
77
|
-
value: string;
|
|
78
|
-
row: Record<string | number, unknown>;
|
|
79
|
-
onChange: ((value: RecordString[]) => void) | ((value: RecordString[]) => void)[];
|
|
80
|
-
config: Config;
|
|
81
|
-
idx: number;
|
|
82
|
-
}, {}>>;
|
|
83
|
-
export default _default;
|
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
import type { MessageType } from 'ant-design-vue/es/message';
|
|
2
|
-
import type { SrmI18n } from '../../../utils/type';
|
|
3
|
-
import type { Config, RecordString } from './remote-select-types';
|
|
4
|
-
import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, Ref, ComputedRef } from 'vue';
|
|
5
|
-
declare const _sfc_main: DefineComponent<{
|
|
6
|
-
value: {
|
|
7
|
-
type: StringConstructor;
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
10
|
-
config: {
|
|
11
|
-
type: PropType<Config>;
|
|
12
|
-
default: () => {};
|
|
13
|
-
};
|
|
14
|
-
row: {
|
|
15
|
-
type: PropType<Record<string | number, unknown>>;
|
|
16
|
-
default: () => {};
|
|
17
|
-
};
|
|
18
|
-
idx: {
|
|
19
|
-
type: NumberConstructor;
|
|
20
|
-
default: number;
|
|
21
|
-
};
|
|
22
|
-
onChange: {
|
|
23
|
-
type: PropType<((value: RecordString[]) => void) | ((value: RecordString[]) => void)[]>;
|
|
24
|
-
default: unknown;
|
|
25
|
-
};
|
|
26
|
-
}, {
|
|
27
|
-
srmI18n: SrmI18n;
|
|
28
|
-
classes: ComputedRef<{
|
|
29
|
-
[x: string]: boolean;
|
|
30
|
-
}>;
|
|
31
|
-
value: Ref<string>;
|
|
32
|
-
valueKey: Ref<any>;
|
|
33
|
-
config: Ref<Config>;
|
|
34
|
-
data: {
|
|
35
|
-
modalLoading: boolean;
|
|
36
|
-
url: string;
|
|
37
|
-
params: {
|
|
38
|
-
pageNo: number;
|
|
39
|
-
pageSize: number;
|
|
40
|
-
keyWord: string;
|
|
41
|
-
};
|
|
42
|
-
dataSource: {
|
|
43
|
-
[x: string]: string;
|
|
44
|
-
id: string;
|
|
45
|
-
}[];
|
|
46
|
-
};
|
|
47
|
-
formatTitle: (item: Record<string, unknown>) => string;
|
|
48
|
-
handleFocus: () => void;
|
|
49
|
-
handleSearch: (changeValue?: string) => void;
|
|
50
|
-
handleChange: (changeValue: string) => void | MessageType;
|
|
51
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
52
|
-
value: {
|
|
53
|
-
type: StringConstructor;
|
|
54
|
-
default: string;
|
|
55
|
-
};
|
|
56
|
-
config: {
|
|
57
|
-
type: PropType<Config>;
|
|
58
|
-
default: () => {};
|
|
59
|
-
};
|
|
60
|
-
row: {
|
|
61
|
-
type: PropType<Record<string | number, unknown>>;
|
|
62
|
-
default: () => {};
|
|
63
|
-
};
|
|
64
|
-
idx: {
|
|
65
|
-
type: NumberConstructor;
|
|
66
|
-
default: number;
|
|
67
|
-
};
|
|
68
|
-
onChange: {
|
|
69
|
-
type: PropType<((value: RecordString[]) => void) | ((value: RecordString[]) => void)[]>;
|
|
70
|
-
default: unknown;
|
|
71
|
-
};
|
|
72
|
-
}>>, {
|
|
73
|
-
value: string;
|
|
74
|
-
row: Record<string | number, unknown>;
|
|
75
|
-
onChange: ((value: RecordString[]) => void) | ((value: RecordString[]) => void)[];
|
|
76
|
-
config: Config;
|
|
77
|
-
idx: number;
|
|
78
|
-
}, {}>;
|
|
79
|
-
export default _sfc_main;
|