orion-design 0.1.10 → 0.1.12

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) hide show
  1. package/dist/components/Form/Form.d.ts +1 -0
  2. package/dist/components/Form/Form.js.map +1 -1
  3. package/dist/components/Form/LovInput/LovInput.d.ts +20 -0
  4. package/dist/components/Form/LovInput/LovInput.js +5 -0
  5. package/dist/components/Form/LovInput/LovInput.js.map +1 -0
  6. package/dist/components/Form/LovInput/LovInput.vue.d.ts +5351 -0
  7. package/dist/components/Form/LovInput/hooks/useLov.d.ts +1 -0
  8. package/dist/components/Form/LovInput/hooks/useLov.js +9 -0
  9. package/dist/components/Form/LovInput/hooks/useLov.js.map +1 -0
  10. package/dist/components/Form/LovInput/index.d.ts +2 -0
  11. package/dist/components/Form/LovInput/index.js +7 -0
  12. package/dist/components/Form/LovInput/index.js.map +1 -0
  13. package/dist/components/Form/index.d.ts +3 -0
  14. package/dist/components/Form/index.js +363 -277
  15. package/dist/components/Form/index.js.map +1 -1
  16. package/dist/components/Pagetable/Pagetable.d.ts +16 -1
  17. package/dist/components/Pagetable/index.d.ts +12 -1
  18. package/dist/components/Pagetable/index.js +156 -151
  19. package/dist/components/Pagetable/index.js.map +1 -1
  20. package/dist/components/Pagetable/utils/index.js +45 -148
  21. package/dist/components/Pagetable/utils/index.js.map +1 -1
  22. package/dist/components/Querytable/Querytable.d.ts +64 -0
  23. package/dist/components/Querytable/columns/QuerytableCellButton.d.ts +24 -0
  24. package/dist/components/Querytable/columns/QuerytableColumnButtongroup.d.ts +78 -0
  25. package/dist/components/Querytable/columns/QuerytableColumnDate.d.ts +101 -0
  26. package/dist/components/Querytable/columns/QuerytableColumnDiy.d.ts +78 -0
  27. package/dist/components/Querytable/columns/QuerytableColumnIndex.d.ts +5 -0
  28. package/dist/components/Querytable/columns/QuerytableColumnMultiselect.d.ts +109 -0
  29. package/dist/components/Querytable/columns/QuerytableColumnNumber.d.ts +114 -0
  30. package/dist/components/Querytable/columns/QuerytableColumnSingleselect.d.ts +109 -0
  31. package/dist/components/Querytable/columns/QuerytableColumnString.d.ts +75 -0
  32. package/dist/components/Querytable/columns/QuerytableColumngroup.d.ts +35 -0
  33. package/dist/components/Querytable/hooks/useColumns.d.ts +1 -0
  34. package/dist/components/Querytable/hooks/useColumns.js +96 -0
  35. package/dist/components/Querytable/hooks/useColumns.js.map +1 -0
  36. package/dist/components/Querytable/index.d.ts +66 -0
  37. package/dist/components/Querytable/index.js +510 -0
  38. package/dist/components/Querytable/index.js.map +1 -0
  39. package/dist/components/Querytable/interface.d.ts +10 -0
  40. package/dist/components/Querytable/interface.js +2 -0
  41. package/dist/components/Querytable/interface.js.map +1 -0
  42. package/dist/components/Querytable/utils/index.d.ts +15 -0
  43. package/dist/components/Querytable/utils/index.js +66 -0
  44. package/dist/components/Querytable/utils/index.js.map +1 -0
  45. package/dist/components/components.d.ts +2 -0
  46. package/dist/components/components.js +8 -6
  47. package/dist/components/components.js.map +1 -1
  48. package/dist/components/index.js +15 -13
  49. package/dist/components/index.js.map +1 -1
  50. package/dist/{components-CutWiB7Q.js → components-OIbu7HLW.js} +26 -24
  51. package/dist/{components-CutWiB7Q.js.map → components-OIbu7HLW.js.map} +1 -1
  52. package/dist/index-CC0EuWhe.js +108 -0
  53. package/dist/index-CC0EuWhe.js.map +1 -0
  54. package/dist/index.css +1 -1
  55. package/dist/index.js +14 -12
  56. package/dist/index.js.map +1 -1
  57. package/dist/version/version.d.ts +1 -1
  58. package/dist/version/version.js +1 -1
  59. package/dist/version/version.js.map +1 -1
  60. package/package.json +1 -1
@@ -0,0 +1,78 @@
1
+ import { PropType, ExtractPropTypes } from 'vue';
2
+ import { CustomSlotsType } from '../../_util/type';
3
+ import { FixedType } from '../interface';
4
+ export declare const querytableColumnButtongroupProps: () => {
5
+ head: {
6
+ type: PropType<string>;
7
+ default: string;
8
+ };
9
+ headAlign: {
10
+ type: PropType<"center" | "left" | "right">;
11
+ default: "center" | "left" | "right";
12
+ };
13
+ name: {
14
+ type: PropType<string>;
15
+ default: string;
16
+ };
17
+ width: {
18
+ type: PropType<string | boolean>;
19
+ default: string | boolean;
20
+ };
21
+ fixed: {
22
+ type: PropType<FixedType>;
23
+ default: FixedType;
24
+ };
25
+ };
26
+ export type QuerytableColumnButtongroupProps = Partial<ExtractPropTypes<ReturnType<typeof querytableColumnButtongroupProps>>>;
27
+ declare const _default: import('vue').DefineComponent<ExtractPropTypes<{
28
+ head: {
29
+ type: PropType<string>;
30
+ default: string;
31
+ };
32
+ headAlign: {
33
+ type: PropType<"center" | "left" | "right">;
34
+ default: "center" | "left" | "right";
35
+ };
36
+ name: {
37
+ type: PropType<string>;
38
+ default: string;
39
+ };
40
+ width: {
41
+ type: PropType<string | boolean>;
42
+ default: string | boolean;
43
+ };
44
+ fixed: {
45
+ type: PropType<FixedType>;
46
+ default: FixedType;
47
+ };
48
+ }>, () => null, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ExtractPropTypes<{
49
+ head: {
50
+ type: PropType<string>;
51
+ default: string;
52
+ };
53
+ headAlign: {
54
+ type: PropType<"center" | "left" | "right">;
55
+ default: "center" | "left" | "right";
56
+ };
57
+ name: {
58
+ type: PropType<string>;
59
+ default: string;
60
+ };
61
+ width: {
62
+ type: PropType<string | boolean>;
63
+ default: string | boolean;
64
+ };
65
+ fixed: {
66
+ type: PropType<FixedType>;
67
+ default: FixedType;
68
+ };
69
+ }>> & Readonly<{}>, {
70
+ fixed: FixedType;
71
+ head: string;
72
+ width: string | boolean;
73
+ name: string;
74
+ headAlign: "center" | "left" | "right";
75
+ }, CustomSlotsType<{
76
+ default: any;
77
+ }>, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
78
+ export default _default;
@@ -0,0 +1,101 @@
1
+ import { PropType, ExtractPropTypes } from 'vue';
2
+ import { FixedType } from '../interface';
3
+ export declare const querytableColumnDateProps: () => {
4
+ head: {
5
+ type: PropType<string>;
6
+ default: string;
7
+ };
8
+ headAlign: {
9
+ type: PropType<"center" | "left" | "right">;
10
+ default: "center" | "left" | "right";
11
+ };
12
+ name: {
13
+ type: PropType<string>;
14
+ default: string;
15
+ };
16
+ width: {
17
+ type: PropType<string | boolean>;
18
+ default: string | boolean;
19
+ };
20
+ fixed: {
21
+ type: PropType<FixedType>;
22
+ default: FixedType;
23
+ };
24
+ format: {
25
+ type: PropType<string>;
26
+ default: string;
27
+ };
28
+ sourceFormat: {
29
+ type: PropType<string>;
30
+ default: string;
31
+ };
32
+ };
33
+ export type QuerytableColumnDateProps = Partial<ExtractPropTypes<ReturnType<typeof querytableColumnDateProps>>>;
34
+ declare const _default: import('vue').DefineComponent<ExtractPropTypes<{
35
+ head: {
36
+ type: PropType<string>;
37
+ default: string;
38
+ };
39
+ headAlign: {
40
+ type: PropType<"center" | "left" | "right">;
41
+ default: "center" | "left" | "right";
42
+ };
43
+ name: {
44
+ type: PropType<string>;
45
+ default: string;
46
+ };
47
+ width: {
48
+ type: PropType<string | boolean>;
49
+ default: string | boolean;
50
+ };
51
+ fixed: {
52
+ type: PropType<FixedType>;
53
+ default: FixedType;
54
+ };
55
+ format: {
56
+ type: PropType<string>;
57
+ default: string;
58
+ };
59
+ sourceFormat: {
60
+ type: PropType<string>;
61
+ default: string;
62
+ };
63
+ }>, () => null, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ExtractPropTypes<{
64
+ head: {
65
+ type: PropType<string>;
66
+ default: string;
67
+ };
68
+ headAlign: {
69
+ type: PropType<"center" | "left" | "right">;
70
+ default: "center" | "left" | "right";
71
+ };
72
+ name: {
73
+ type: PropType<string>;
74
+ default: string;
75
+ };
76
+ width: {
77
+ type: PropType<string | boolean>;
78
+ default: string | boolean;
79
+ };
80
+ fixed: {
81
+ type: PropType<FixedType>;
82
+ default: FixedType;
83
+ };
84
+ format: {
85
+ type: PropType<string>;
86
+ default: string;
87
+ };
88
+ sourceFormat: {
89
+ type: PropType<string>;
90
+ default: string;
91
+ };
92
+ }>> & Readonly<{}>, {
93
+ fixed: FixedType;
94
+ head: string;
95
+ width: string | boolean;
96
+ name: string;
97
+ format: string;
98
+ headAlign: "center" | "left" | "right";
99
+ sourceFormat: string;
100
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
101
+ export default _default;
@@ -0,0 +1,78 @@
1
+ import { PropType, ExtractPropTypes } from 'vue';
2
+ import { CustomSlotsType } from '../../_util/type';
3
+ import { FixedType } from '../interface';
4
+ export declare const querytableColumnDiyProps: () => {
5
+ head: {
6
+ type: PropType<string>;
7
+ default: string;
8
+ };
9
+ headAlign: {
10
+ type: PropType<"center" | "left" | "right">;
11
+ default: "center" | "left" | "right";
12
+ };
13
+ name: {
14
+ type: PropType<string>;
15
+ default: string;
16
+ };
17
+ width: {
18
+ type: PropType<string | boolean>;
19
+ default: string | boolean;
20
+ };
21
+ fixed: {
22
+ type: PropType<FixedType>;
23
+ default: FixedType;
24
+ };
25
+ };
26
+ export type QuerytableColumnDiyProps = Partial<ExtractPropTypes<ReturnType<typeof querytableColumnDiyProps>>>;
27
+ declare const _default: import('vue').DefineComponent<ExtractPropTypes<{
28
+ head: {
29
+ type: PropType<string>;
30
+ default: string;
31
+ };
32
+ headAlign: {
33
+ type: PropType<"center" | "left" | "right">;
34
+ default: "center" | "left" | "right";
35
+ };
36
+ name: {
37
+ type: PropType<string>;
38
+ default: string;
39
+ };
40
+ width: {
41
+ type: PropType<string | boolean>;
42
+ default: string | boolean;
43
+ };
44
+ fixed: {
45
+ type: PropType<FixedType>;
46
+ default: FixedType;
47
+ };
48
+ }>, () => null, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ExtractPropTypes<{
49
+ head: {
50
+ type: PropType<string>;
51
+ default: string;
52
+ };
53
+ headAlign: {
54
+ type: PropType<"center" | "left" | "right">;
55
+ default: "center" | "left" | "right";
56
+ };
57
+ name: {
58
+ type: PropType<string>;
59
+ default: string;
60
+ };
61
+ width: {
62
+ type: PropType<string | boolean>;
63
+ default: string | boolean;
64
+ };
65
+ fixed: {
66
+ type: PropType<FixedType>;
67
+ default: FixedType;
68
+ };
69
+ }>> & Readonly<{}>, {
70
+ fixed: FixedType;
71
+ head: string;
72
+ width: string | boolean;
73
+ name: string;
74
+ headAlign: "center" | "left" | "right";
75
+ }, CustomSlotsType<{
76
+ default: any;
77
+ }>, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
78
+ export default _default;
@@ -0,0 +1,5 @@
1
+ import { ExtractPropTypes } from 'vue';
2
+ export declare const querytableColumnIndexProps: () => {};
3
+ export type QuerytableColumnIndexProps = Partial<ExtractPropTypes<ReturnType<typeof querytableColumnIndexProps>>>;
4
+ declare const _default: import('vue').DefineComponent<{}, () => null, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
5
+ export default _default;
@@ -0,0 +1,109 @@
1
+ import { PropType, ExtractPropTypes } from 'vue';
2
+ import { FixedType } from '../interface';
3
+ export declare const querytableColumnMultiselectProps: () => {
4
+ head: {
5
+ type: PropType<string>;
6
+ default: string;
7
+ };
8
+ headAlign: {
9
+ type: PropType<"center" | "left" | "right">;
10
+ default: "center" | "left" | "right";
11
+ };
12
+ name: {
13
+ type: PropType<string>;
14
+ default: string;
15
+ };
16
+ width: {
17
+ type: PropType<string | boolean>;
18
+ default: string | boolean;
19
+ };
20
+ fixed: {
21
+ type: PropType<FixedType>;
22
+ default: FixedType;
23
+ };
24
+ code: {
25
+ type: PropType<string | {
26
+ value: string;
27
+ content: string;
28
+ }[]>;
29
+ default: string | {
30
+ value: string;
31
+ content: string;
32
+ }[];
33
+ };
34
+ };
35
+ export type QuerytableColumnMultiselectProps = Partial<ExtractPropTypes<ReturnType<typeof querytableColumnMultiselectProps>>>;
36
+ declare const _default: import('vue').DefineComponent<ExtractPropTypes<{
37
+ head: {
38
+ type: PropType<string>;
39
+ default: string;
40
+ };
41
+ headAlign: {
42
+ type: PropType<"center" | "left" | "right">;
43
+ default: "center" | "left" | "right";
44
+ };
45
+ name: {
46
+ type: PropType<string>;
47
+ default: string;
48
+ };
49
+ width: {
50
+ type: PropType<string | boolean>;
51
+ default: string | boolean;
52
+ };
53
+ fixed: {
54
+ type: PropType<FixedType>;
55
+ default: FixedType;
56
+ };
57
+ code: {
58
+ type: PropType<string | {
59
+ value: string;
60
+ content: string;
61
+ }[]>;
62
+ default: string | {
63
+ value: string;
64
+ content: string;
65
+ }[];
66
+ };
67
+ }>, () => null, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ExtractPropTypes<{
68
+ head: {
69
+ type: PropType<string>;
70
+ default: string;
71
+ };
72
+ headAlign: {
73
+ type: PropType<"center" | "left" | "right">;
74
+ default: "center" | "left" | "right";
75
+ };
76
+ name: {
77
+ type: PropType<string>;
78
+ default: string;
79
+ };
80
+ width: {
81
+ type: PropType<string | boolean>;
82
+ default: string | boolean;
83
+ };
84
+ fixed: {
85
+ type: PropType<FixedType>;
86
+ default: FixedType;
87
+ };
88
+ code: {
89
+ type: PropType<string | {
90
+ value: string;
91
+ content: string;
92
+ }[]>;
93
+ default: string | {
94
+ value: string;
95
+ content: string;
96
+ }[];
97
+ };
98
+ }>> & Readonly<{}>, {
99
+ fixed: FixedType;
100
+ code: string | {
101
+ value: string;
102
+ content: string;
103
+ }[];
104
+ head: string;
105
+ width: string | boolean;
106
+ name: string;
107
+ headAlign: "center" | "left" | "right";
108
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
109
+ export default _default;
@@ -0,0 +1,114 @@
1
+ import { PropType, ExtractPropTypes } from 'vue';
2
+ import { FixedType } from '../interface';
3
+ export declare const querytableColumnNumberProps: () => {
4
+ head: {
5
+ type: PropType<string>;
6
+ default: string;
7
+ };
8
+ headAlign: {
9
+ type: PropType<"center" | "left" | "right">;
10
+ default: "center" | "left" | "right";
11
+ };
12
+ name: {
13
+ type: PropType<string>;
14
+ default: string;
15
+ };
16
+ width: {
17
+ type: PropType<string | boolean>;
18
+ default: string | boolean;
19
+ };
20
+ fixed: {
21
+ type: PropType<FixedType>;
22
+ default: FixedType;
23
+ };
24
+ thousandsSeparator: {
25
+ type: BooleanConstructor;
26
+ default: boolean;
27
+ };
28
+ precision: {
29
+ type: PropType<-1>;
30
+ default: -1;
31
+ };
32
+ percentage: {
33
+ type: BooleanConstructor;
34
+ default: boolean;
35
+ };
36
+ };
37
+ export type QuerytableColumnNumberProps = Partial<ExtractPropTypes<ReturnType<typeof querytableColumnNumberProps>>>;
38
+ declare const _default: import('vue').DefineComponent<ExtractPropTypes<{
39
+ head: {
40
+ type: PropType<string>;
41
+ default: string;
42
+ };
43
+ headAlign: {
44
+ type: PropType<"center" | "left" | "right">;
45
+ default: "center" | "left" | "right";
46
+ };
47
+ name: {
48
+ type: PropType<string>;
49
+ default: string;
50
+ };
51
+ width: {
52
+ type: PropType<string | boolean>;
53
+ default: string | boolean;
54
+ };
55
+ fixed: {
56
+ type: PropType<FixedType>;
57
+ default: FixedType;
58
+ };
59
+ thousandsSeparator: {
60
+ type: BooleanConstructor;
61
+ default: boolean;
62
+ };
63
+ precision: {
64
+ type: PropType<-1>;
65
+ default: -1;
66
+ };
67
+ percentage: {
68
+ type: BooleanConstructor;
69
+ default: boolean;
70
+ };
71
+ }>, () => null, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ExtractPropTypes<{
72
+ head: {
73
+ type: PropType<string>;
74
+ default: string;
75
+ };
76
+ headAlign: {
77
+ type: PropType<"center" | "left" | "right">;
78
+ default: "center" | "left" | "right";
79
+ };
80
+ name: {
81
+ type: PropType<string>;
82
+ default: string;
83
+ };
84
+ width: {
85
+ type: PropType<string | boolean>;
86
+ default: string | boolean;
87
+ };
88
+ fixed: {
89
+ type: PropType<FixedType>;
90
+ default: FixedType;
91
+ };
92
+ thousandsSeparator: {
93
+ type: BooleanConstructor;
94
+ default: boolean;
95
+ };
96
+ precision: {
97
+ type: PropType<-1>;
98
+ default: -1;
99
+ };
100
+ percentage: {
101
+ type: BooleanConstructor;
102
+ default: boolean;
103
+ };
104
+ }>> & Readonly<{}>, {
105
+ fixed: FixedType;
106
+ head: string;
107
+ width: string | boolean;
108
+ name: string;
109
+ thousandsSeparator: boolean;
110
+ headAlign: "center" | "left" | "right";
111
+ precision: -1;
112
+ percentage: boolean;
113
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
114
+ export default _default;
@@ -0,0 +1,109 @@
1
+ import { PropType, ExtractPropTypes } from 'vue';
2
+ import { FixedType } from '../interface';
3
+ export declare const querytableColumnSingleselectProps: () => {
4
+ head: {
5
+ type: PropType<string>;
6
+ default: string;
7
+ };
8
+ headAlign: {
9
+ type: PropType<"center" | "left" | "right">;
10
+ default: "center" | "left" | "right";
11
+ };
12
+ name: {
13
+ type: PropType<string>;
14
+ default: string;
15
+ };
16
+ width: {
17
+ type: PropType<string | boolean>;
18
+ default: string | boolean;
19
+ };
20
+ fixed: {
21
+ type: PropType<FixedType>;
22
+ default: FixedType;
23
+ };
24
+ code: {
25
+ type: PropType<string | {
26
+ value: string;
27
+ content: string;
28
+ }[]>;
29
+ default: string | {
30
+ value: string;
31
+ content: string;
32
+ }[];
33
+ };
34
+ };
35
+ export type QuerytableColumnSingleselectProps = Partial<ExtractPropTypes<ReturnType<typeof querytableColumnSingleselectProps>>>;
36
+ declare const _default: import('vue').DefineComponent<ExtractPropTypes<{
37
+ head: {
38
+ type: PropType<string>;
39
+ default: string;
40
+ };
41
+ headAlign: {
42
+ type: PropType<"center" | "left" | "right">;
43
+ default: "center" | "left" | "right";
44
+ };
45
+ name: {
46
+ type: PropType<string>;
47
+ default: string;
48
+ };
49
+ width: {
50
+ type: PropType<string | boolean>;
51
+ default: string | boolean;
52
+ };
53
+ fixed: {
54
+ type: PropType<FixedType>;
55
+ default: FixedType;
56
+ };
57
+ code: {
58
+ type: PropType<string | {
59
+ value: string;
60
+ content: string;
61
+ }[]>;
62
+ default: string | {
63
+ value: string;
64
+ content: string;
65
+ }[];
66
+ };
67
+ }>, () => null, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ExtractPropTypes<{
68
+ head: {
69
+ type: PropType<string>;
70
+ default: string;
71
+ };
72
+ headAlign: {
73
+ type: PropType<"center" | "left" | "right">;
74
+ default: "center" | "left" | "right";
75
+ };
76
+ name: {
77
+ type: PropType<string>;
78
+ default: string;
79
+ };
80
+ width: {
81
+ type: PropType<string | boolean>;
82
+ default: string | boolean;
83
+ };
84
+ fixed: {
85
+ type: PropType<FixedType>;
86
+ default: FixedType;
87
+ };
88
+ code: {
89
+ type: PropType<string | {
90
+ value: string;
91
+ content: string;
92
+ }[]>;
93
+ default: string | {
94
+ value: string;
95
+ content: string;
96
+ }[];
97
+ };
98
+ }>> & Readonly<{}>, {
99
+ fixed: FixedType;
100
+ code: string | {
101
+ value: string;
102
+ content: string;
103
+ }[];
104
+ head: string;
105
+ width: string | boolean;
106
+ name: string;
107
+ headAlign: "center" | "left" | "right";
108
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
109
+ export default _default;
@@ -0,0 +1,75 @@
1
+ import { PropType, ExtractPropTypes } from 'vue';
2
+ import { FixedType } from '../interface';
3
+ export declare const querytableColumnStringProps: () => {
4
+ head: {
5
+ type: PropType<string>;
6
+ default: string;
7
+ };
8
+ headAlign: {
9
+ type: PropType<"center" | "left" | "right">;
10
+ default: "center" | "left" | "right";
11
+ };
12
+ name: {
13
+ type: PropType<string>;
14
+ default: string;
15
+ };
16
+ width: {
17
+ type: PropType<string | boolean>;
18
+ default: string | boolean;
19
+ };
20
+ fixed: {
21
+ type: PropType<FixedType>;
22
+ default: FixedType;
23
+ };
24
+ };
25
+ export type QuerytableColumnStringProps = Partial<ExtractPropTypes<ReturnType<typeof querytableColumnStringProps>>>;
26
+ declare const _default: import('vue').DefineComponent<ExtractPropTypes<{
27
+ head: {
28
+ type: PropType<string>;
29
+ default: string;
30
+ };
31
+ headAlign: {
32
+ type: PropType<"center" | "left" | "right">;
33
+ default: "center" | "left" | "right";
34
+ };
35
+ name: {
36
+ type: PropType<string>;
37
+ default: string;
38
+ };
39
+ width: {
40
+ type: PropType<string | boolean>;
41
+ default: string | boolean;
42
+ };
43
+ fixed: {
44
+ type: PropType<FixedType>;
45
+ default: FixedType;
46
+ };
47
+ }>, () => null, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ExtractPropTypes<{
48
+ head: {
49
+ type: PropType<string>;
50
+ default: string;
51
+ };
52
+ headAlign: {
53
+ type: PropType<"center" | "left" | "right">;
54
+ default: "center" | "left" | "right";
55
+ };
56
+ name: {
57
+ type: PropType<string>;
58
+ default: string;
59
+ };
60
+ width: {
61
+ type: PropType<string | boolean>;
62
+ default: string | boolean;
63
+ };
64
+ fixed: {
65
+ type: PropType<FixedType>;
66
+ default: FixedType;
67
+ };
68
+ }>> & Readonly<{}>, {
69
+ fixed: FixedType;
70
+ head: string;
71
+ width: string | boolean;
72
+ name: string;
73
+ headAlign: "center" | "left" | "right";
74
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
75
+ export default _default;