qy-ui-for-ls 0.1.0 → 0.1.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.
Files changed (61) hide show
  1. package/README.md +1 -1
  2. package/dist/client/main.d.ts +1 -0
  3. package/dist/components/button/index.d.ts +127 -0
  4. package/dist/components/button/src/index.vue.d.ts +75 -0
  5. package/dist/components/card/index.d.ts +95 -0
  6. package/dist/components/card/src/index.vue.d.ts +59 -0
  7. package/dist/components/descriptions/index.d.ts +158 -0
  8. package/dist/components/descriptions/src/index.vue.d.ts +94 -0
  9. package/dist/components/descriptions/src/renderTooltip.vue.d.ts +9 -0
  10. package/dist/components/detail/index.d.ts +193 -0
  11. package/dist/components/detail/src/Enum.d.ts +12 -0
  12. package/dist/components/dia/index.d.ts +44 -0
  13. package/dist/components/dia/src/index.vue.d.ts +28 -0
  14. package/dist/components/editor/index.d.ts +186 -0
  15. package/dist/components/editor/src/index.vue.d.ts +72 -0
  16. package/dist/components/editor/src/mentionModal.vue.d.ts +9 -0
  17. package/dist/components/form/index.d.ts +190 -0
  18. package/dist/components/form/src/formItem.vue.d.ts +27 -0
  19. package/dist/components/form/src/index.vue.d.ts +108 -0
  20. package/dist/components/pagination/index.d.ts +40 -0
  21. package/dist/components/pagination/src/index.vue.d.ts +38 -0
  22. package/dist/components/player/index.d.ts +2 -0
  23. package/dist/components/svg-icon/index.d.ts +54 -0
  24. package/dist/components/svg-icon/src/index.vue.d.ts +27 -0
  25. package/dist/components/table-plus/index.d.ts +3088 -0
  26. package/dist/components/table-plus/src/Grid/interface/index.d.ts +5 -0
  27. package/dist/components/table-plus/src/SearchForm/SearchFormItem.vue.d.ts +29 -0
  28. package/dist/components/table-plus/src/SearchForm/index.vue.d.ts +44 -0
  29. package/dist/components/table-plus/src/components/ColSetting.vue.d.ts +20 -0
  30. package/dist/components/table-plus/src/components/TableColumn.vue.d.ts +18 -0
  31. package/dist/components/table-plus/src/components/Tabs.vue.d.ts +41 -0
  32. package/dist/components/table-plus/src/components/Tree.vue.d.ts +175 -0
  33. package/dist/components/table-plus/src/hooks/useApi.d.ts +10 -0
  34. package/dist/components/table-plus/src/hooks/useDownload.d.ts +9 -0
  35. package/dist/components/table-plus/src/hooks/useHandleData.d.ts +11 -0
  36. package/dist/components/table-plus/src/hooks/useSelection.d.ts +17 -0
  37. package/dist/components/table-plus/src/hooks/useTable.d.ts +47 -0
  38. package/dist/components/table-plus/src/index.vue.d.ts +1049 -0
  39. package/dist/components/table-plus/src/interface/index.d.ts +113 -0
  40. package/dist/components/table-plus/src/interface/tabs.d.ts +9 -0
  41. package/dist/components/table-plus/src/utils/index.d.ts +37 -0
  42. package/dist/components/title/index.d.ts +85 -0
  43. package/dist/components/title/src/index.vue.d.ts +51 -0
  44. package/dist/components/tree/index.d.ts +152 -0
  45. package/dist/components/tree/src/index.vue.d.ts +91 -0
  46. package/dist/components/upload/index.d.ts +223 -0
  47. package/dist/components/upload/src/index.vue.d.ts +78 -0
  48. package/dist/components/uploadImg/index.d.ts +284 -0
  49. package/dist/components/uploadImg/src/index.vue.d.ts +103 -0
  50. package/dist/components/user-select/index.d.ts +102 -0
  51. package/dist/components/user-select/src/index.vue.d.ts +50 -0
  52. package/dist/components/withInstall.d.ts +5 -0
  53. package/dist/index.d.ts +20 -0
  54. package/dist/plugins/SvgBuilder/index.d.ts +4 -0
  55. package/dist/plugins/index.d.ts +7 -0
  56. package/dist/qy-ui-for-ls.es.js +83439 -0
  57. package/dist/qy-ui-for-ls.es2.js +45 -0
  58. package/dist/style.css +1 -0
  59. package/dist/utils/styles.d.ts +1 -0
  60. package/dist/vite.svg +1 -0
  61. package/package.json +5 -5
@@ -0,0 +1,102 @@
1
+ import { CreateComponentPublicInstanceWithMixins, ExtractPropTypes, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, ComponentOptionsBase, VNodeProps, AllowedComponentProps, ComponentCustomProps, Plugin } from 'vue';
2
+ declare const QyUserSelect: ({
3
+ new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
4
+ treeData: {
5
+ type: ArrayConstructor;
6
+ default: () => never[];
7
+ };
8
+ defaultProps: {
9
+ type: ObjectConstructor;
10
+ default: () => {
11
+ value: string;
12
+ label: string;
13
+ children: string;
14
+ };
15
+ };
16
+ modelValue: {
17
+ type: ArrayConstructor;
18
+ default: () => never[];
19
+ };
20
+ }>> & Readonly<{
21
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
22
+ "onUpdata:treeData"?: ((...args: any[]) => any) | undefined;
23
+ }>, {
24
+ getData: () => any;
25
+ setChecked: (keys: any) => Promise<void>;
26
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
27
+ "update:modelValue": (...args: any[]) => void;
28
+ "updata:treeData": (...args: any[]) => void;
29
+ }, PublicProps, {
30
+ defaultProps: Record<string, any>;
31
+ modelValue: unknown[];
32
+ treeData: unknown[];
33
+ }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
34
+ P: {};
35
+ B: {};
36
+ D: {};
37
+ C: {};
38
+ M: {};
39
+ Defaults: {};
40
+ }, Readonly< ExtractPropTypes<{
41
+ treeData: {
42
+ type: ArrayConstructor;
43
+ default: () => never[];
44
+ };
45
+ defaultProps: {
46
+ type: ObjectConstructor;
47
+ default: () => {
48
+ value: string;
49
+ label: string;
50
+ children: string;
51
+ };
52
+ };
53
+ modelValue: {
54
+ type: ArrayConstructor;
55
+ default: () => never[];
56
+ };
57
+ }>> & Readonly<{
58
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
59
+ "onUpdata:treeData"?: ((...args: any[]) => any) | undefined;
60
+ }>, {
61
+ getData: () => any;
62
+ setChecked: (keys: any) => Promise<void>;
63
+ }, {}, {}, {}, {
64
+ defaultProps: Record<string, any>;
65
+ modelValue: unknown[];
66
+ treeData: unknown[];
67
+ }>;
68
+ __isFragment?: never;
69
+ __isTeleport?: never;
70
+ __isSuspense?: never;
71
+ } & ComponentOptionsBase<Readonly< ExtractPropTypes<{
72
+ treeData: {
73
+ type: ArrayConstructor;
74
+ default: () => never[];
75
+ };
76
+ defaultProps: {
77
+ type: ObjectConstructor;
78
+ default: () => {
79
+ value: string;
80
+ label: string;
81
+ children: string;
82
+ };
83
+ };
84
+ modelValue: {
85
+ type: ArrayConstructor;
86
+ default: () => never[];
87
+ };
88
+ }>> & Readonly<{
89
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
90
+ "onUpdata:treeData"?: ((...args: any[]) => any) | undefined;
91
+ }>, {
92
+ getData: () => any;
93
+ setChecked: (keys: any) => Promise<void>;
94
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
95
+ "update:modelValue": (...args: any[]) => void;
96
+ "updata:treeData": (...args: any[]) => void;
97
+ }, string, {
98
+ defaultProps: Record<string, any>;
99
+ modelValue: unknown[];
100
+ treeData: unknown[];
101
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin) & Record<string, any>;
102
+ export default QyUserSelect;
@@ -0,0 +1,50 @@
1
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<ExtractPropTypes<{
3
+ treeData: {
4
+ type: ArrayConstructor;
5
+ default: () => never[];
6
+ };
7
+ defaultProps: {
8
+ type: ObjectConstructor;
9
+ default: () => {
10
+ value: string;
11
+ label: string;
12
+ children: string;
13
+ };
14
+ };
15
+ modelValue: {
16
+ type: ArrayConstructor;
17
+ default: () => never[];
18
+ };
19
+ }>, {
20
+ getData: () => any;
21
+ setChecked: (keys: any) => Promise<void>;
22
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
23
+ "update:modelValue": (...args: any[]) => void;
24
+ "updata:treeData": (...args: any[]) => void;
25
+ }, string, PublicProps, Readonly< ExtractPropTypes<{
26
+ treeData: {
27
+ type: ArrayConstructor;
28
+ default: () => never[];
29
+ };
30
+ defaultProps: {
31
+ type: ObjectConstructor;
32
+ default: () => {
33
+ value: string;
34
+ label: string;
35
+ children: string;
36
+ };
37
+ };
38
+ modelValue: {
39
+ type: ArrayConstructor;
40
+ default: () => never[];
41
+ };
42
+ }>> & Readonly<{
43
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
44
+ "onUpdata:treeData"?: ((...args: any[]) => any) | undefined;
45
+ }>, {
46
+ defaultProps: Record<string, any>;
47
+ modelValue: unknown[];
48
+ treeData: unknown[];
49
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
50
+ export default _default;
@@ -0,0 +1,5 @@
1
+ import { Plugin } from 'vue';
2
+
3
+ type SFCWithInstall<T> = T & Plugin;
4
+ export declare const withInstall: <T, E extends Record<string, any>>(main: T, extra?: E) => SFCWithInstall<T> & E;
5
+ export {};
@@ -0,0 +1,20 @@
1
+ import { default as QyButton } from './components/button';
2
+ import { default as QyTablePlus } from './components/table-plus';
3
+ import { default as QySvgIcon } from './components/svg-icon';
4
+ import { default as QyDescriptions } from './components/descriptions';
5
+ import { default as QyForm } from './components/form';
6
+ import { default as QyDia } from './components/dia';
7
+ import { default as QyTitle } from './components/title';
8
+ import { default as QyCard } from './components/card';
9
+ import { default as QyUpload } from './components/upload';
10
+ import { default as QyUserSelect } from './components/user-select';
11
+ import { default as QyPagination } from './components/pagination';
12
+ import { default as QyTree } from './components/tree';
13
+ import { default as QyPlayer } from './components/player';
14
+
15
+ export { QyButton, QyTablePlus, QySvgIcon, QyDescriptions, QyForm, QyDia, QyTitle, QyUpload, QyUserSelect, QyCard, QyPagination, QyTree, QyPlayer, };
16
+ declare const _default: {
17
+ install: any;
18
+ };
19
+ export default _default;
20
+ import "./vite-env";
@@ -0,0 +1,4 @@
1
+ export declare const SvgBuilder: (path: string, perfix?: string) => {
2
+ name: string;
3
+ transformIndexHtml(html: string): string;
4
+ } | undefined;
@@ -0,0 +1,7 @@
1
+ declare const Plugins: {
2
+ SvgBuilder: (path: string, perfix?: string) => {
3
+ name: string;
4
+ transformIndexHtml(html: string): string;
5
+ } | undefined;
6
+ };
7
+ export default Plugins;