@aplus-frontend/ui 0.0.1-beta.25 → 0.0.1-beta.26

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 (35) hide show
  1. package/es/src/base-button/index.d.ts +137 -0
  2. package/es/src/basic/index.d.ts +278 -0
  3. package/es/src/button/index.d.ts +51 -0
  4. package/es/src/config-provider/index.d.ts +691 -0
  5. package/es/src/container/index.d.ts +178 -0
  6. package/es/src/count-down/index.d.ts +150 -0
  7. package/es/src/description/index.d.ts +214 -0
  8. package/es/src/dropdown/index.d.ts +113 -0
  9. package/es/src/icon/index.d.ts +208 -0
  10. package/es/src/icon-picker/index.d.ts +190 -0
  11. package/es/src/scroll-bar/index.d.ts +177 -0
  12. package/es/src/strength-meter/index.d.ts +89 -0
  13. package/es/src/theme/antd-global-overwrite/admin/button.css +14 -2
  14. package/es/src/theme/antd-global-overwrite/admin/index.css +14 -2
  15. package/es/src/theme/antd-global-overwrite/aplus/button.css +14 -2
  16. package/es/src/theme/antd-global-overwrite/aplus/index.css +14 -2
  17. package/es/src/transition/index.d.ts +369 -0
  18. package/lib/src/base-button/index.d.ts +137 -0
  19. package/lib/src/basic/index.d.ts +278 -0
  20. package/lib/src/button/index.d.ts +51 -0
  21. package/lib/src/config-provider/index.d.ts +691 -0
  22. package/lib/src/container/index.d.ts +178 -0
  23. package/lib/src/count-down/index.d.ts +150 -0
  24. package/lib/src/description/index.d.ts +214 -0
  25. package/lib/src/dropdown/index.d.ts +113 -0
  26. package/lib/src/icon/index.d.ts +208 -0
  27. package/lib/src/icon-picker/index.d.ts +190 -0
  28. package/lib/src/scroll-bar/index.d.ts +177 -0
  29. package/lib/src/strength-meter/index.d.ts +89 -0
  30. package/lib/src/theme/antd-global-overwrite/admin/button.css +14 -2
  31. package/lib/src/theme/antd-global-overwrite/admin/index.css +14 -2
  32. package/lib/src/theme/antd-global-overwrite/aplus/button.css +14 -2
  33. package/lib/src/theme/antd-global-overwrite/aplus/index.css +14 -2
  34. package/lib/src/transition/index.d.ts +369 -0
  35. package/package.json +1 -1
@@ -0,0 +1,208 @@
1
+ import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from '@vue/runtime-core';
2
+ export * from './interface';
3
+ export declare const Icon: {
4
+ new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
5
+ color: {
6
+ type: PropType<string>;
7
+ };
8
+ icon: {
9
+ type: PropType<string>;
10
+ required: true;
11
+ };
12
+ size: {
13
+ type: PropType<string | number>;
14
+ default: number;
15
+ };
16
+ prefix: {
17
+ type: PropType<string>;
18
+ default: string;
19
+ };
20
+ spin: {
21
+ type: PropType<boolean>;
22
+ default: boolean;
23
+ };
24
+ }>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly< ExtractPropTypes<{
25
+ color: {
26
+ type: PropType<string>;
27
+ };
28
+ icon: {
29
+ type: PropType<string>;
30
+ required: true;
31
+ };
32
+ size: {
33
+ type: PropType<string | number>;
34
+ default: number;
35
+ };
36
+ prefix: {
37
+ type: PropType<string>;
38
+ default: string;
39
+ };
40
+ spin: {
41
+ type: PropType<boolean>;
42
+ default: boolean;
43
+ };
44
+ }>>, {
45
+ size: string | number;
46
+ prefix: string;
47
+ spin: boolean;
48
+ }, true, {}, {}, {
49
+ P: {};
50
+ B: {};
51
+ D: {};
52
+ C: {};
53
+ M: {};
54
+ Defaults: {};
55
+ }, Readonly< ExtractPropTypes<{
56
+ color: {
57
+ type: PropType<string>;
58
+ };
59
+ icon: {
60
+ type: PropType<string>;
61
+ required: true;
62
+ };
63
+ size: {
64
+ type: PropType<string | number>;
65
+ default: number;
66
+ };
67
+ prefix: {
68
+ type: PropType<string>;
69
+ default: string;
70
+ };
71
+ spin: {
72
+ type: PropType<boolean>;
73
+ default: boolean;
74
+ };
75
+ }>>, {}, {}, {}, {}, {
76
+ size: string | number;
77
+ prefix: string;
78
+ spin: boolean;
79
+ }>;
80
+ __isFragment?: undefined;
81
+ __isTeleport?: undefined;
82
+ __isSuspense?: undefined;
83
+ } & ComponentOptionsBase<Readonly< ExtractPropTypes<{
84
+ color: {
85
+ type: PropType<string>;
86
+ };
87
+ icon: {
88
+ type: PropType<string>;
89
+ required: true;
90
+ };
91
+ size: {
92
+ type: PropType<string | number>;
93
+ default: number;
94
+ };
95
+ prefix: {
96
+ type: PropType<string>;
97
+ default: string;
98
+ };
99
+ spin: {
100
+ type: PropType<boolean>;
101
+ default: boolean;
102
+ };
103
+ }>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
104
+ size: string | number;
105
+ prefix: string;
106
+ spin: boolean;
107
+ }, {}, string, {}> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin<any[]> & (new (...args: any[]) => {
108
+ $props: {
109
+ onClick?: (() => void) | undefined;
110
+ };
111
+ });
112
+ export declare const SvgIcon: {
113
+ new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
114
+ size: {
115
+ type: PropType<string | number>;
116
+ default: number;
117
+ };
118
+ name: {
119
+ type: PropType<string>;
120
+ required: true;
121
+ };
122
+ prefix: {
123
+ type: PropType<string>;
124
+ default: string;
125
+ };
126
+ spin: {
127
+ type: PropType<boolean>;
128
+ default: boolean;
129
+ };
130
+ }>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly< ExtractPropTypes<{
131
+ size: {
132
+ type: PropType<string | number>;
133
+ default: number;
134
+ };
135
+ name: {
136
+ type: PropType<string>;
137
+ required: true;
138
+ };
139
+ prefix: {
140
+ type: PropType<string>;
141
+ default: string;
142
+ };
143
+ spin: {
144
+ type: PropType<boolean>;
145
+ default: boolean;
146
+ };
147
+ }>>, {
148
+ size: string | number;
149
+ prefix: string;
150
+ spin: boolean;
151
+ }, true, {}, {}, {
152
+ P: {};
153
+ B: {};
154
+ D: {};
155
+ C: {};
156
+ M: {};
157
+ Defaults: {};
158
+ }, Readonly< ExtractPropTypes<{
159
+ size: {
160
+ type: PropType<string | number>;
161
+ default: number;
162
+ };
163
+ name: {
164
+ type: PropType<string>;
165
+ required: true;
166
+ };
167
+ prefix: {
168
+ type: PropType<string>;
169
+ default: string;
170
+ };
171
+ spin: {
172
+ type: PropType<boolean>;
173
+ default: boolean;
174
+ };
175
+ }>>, {}, {}, {}, {}, {
176
+ size: string | number;
177
+ prefix: string;
178
+ spin: boolean;
179
+ }>;
180
+ __isFragment?: undefined;
181
+ __isTeleport?: undefined;
182
+ __isSuspense?: undefined;
183
+ } & ComponentOptionsBase<Readonly< ExtractPropTypes<{
184
+ size: {
185
+ type: PropType<string | number>;
186
+ default: number;
187
+ };
188
+ name: {
189
+ type: PropType<string>;
190
+ required: true;
191
+ };
192
+ prefix: {
193
+ type: PropType<string>;
194
+ default: string;
195
+ };
196
+ spin: {
197
+ type: PropType<boolean>;
198
+ default: boolean;
199
+ };
200
+ }>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
201
+ size: string | number;
202
+ prefix: string;
203
+ spin: boolean;
204
+ }, {}, string, {}> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin<any[]> & (new (...args: any[]) => {
205
+ $props: {
206
+ onClick?: (() => void) | undefined;
207
+ };
208
+ });
@@ -0,0 +1,190 @@
1
+ import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from '@vue/runtime-core';
2
+ export * from './interface';
3
+ export declare const IconPicker: {
4
+ new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
5
+ mode: {
6
+ type: PropType<"svg" | "iconify">;
7
+ default: string;
8
+ };
9
+ width: {
10
+ type: PropType<string>;
11
+ default: string;
12
+ };
13
+ copy: {
14
+ type: PropType<boolean>;
15
+ default: boolean;
16
+ };
17
+ value: {
18
+ type: PropType<string>;
19
+ default: string;
20
+ };
21
+ readonly: {
22
+ type: PropType<boolean>;
23
+ default: boolean;
24
+ };
25
+ allowClear: {
26
+ type: PropType<boolean>;
27
+ default: boolean;
28
+ };
29
+ pageSize: {
30
+ type: PropType<number>;
31
+ default: number;
32
+ };
33
+ svgIcons: {
34
+ type: PropType<string[]>;
35
+ };
36
+ }>> & {
37
+ onChange?: ((...args: any[]) => any) | undefined;
38
+ "onUpdate:value"?: ((...args: any[]) => any) | undefined;
39
+ }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
40
+ change: (...args: any[]) => void;
41
+ "update:value": (...args: any[]) => void;
42
+ }, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly< ExtractPropTypes<{
43
+ mode: {
44
+ type: PropType<"svg" | "iconify">;
45
+ default: string;
46
+ };
47
+ width: {
48
+ type: PropType<string>;
49
+ default: string;
50
+ };
51
+ copy: {
52
+ type: PropType<boolean>;
53
+ default: boolean;
54
+ };
55
+ value: {
56
+ type: PropType<string>;
57
+ default: string;
58
+ };
59
+ readonly: {
60
+ type: PropType<boolean>;
61
+ default: boolean;
62
+ };
63
+ allowClear: {
64
+ type: PropType<boolean>;
65
+ default: boolean;
66
+ };
67
+ pageSize: {
68
+ type: PropType<number>;
69
+ default: number;
70
+ };
71
+ svgIcons: {
72
+ type: PropType<string[]>;
73
+ };
74
+ }>> & {
75
+ onChange?: ((...args: any[]) => any) | undefined;
76
+ "onUpdate:value"?: ((...args: any[]) => any) | undefined;
77
+ }, {
78
+ mode: "svg" | "iconify";
79
+ width: string;
80
+ copy: boolean;
81
+ value: string;
82
+ readonly: boolean;
83
+ allowClear: boolean;
84
+ pageSize: number;
85
+ }, true, {}, {}, {
86
+ P: {};
87
+ B: {};
88
+ D: {};
89
+ C: {};
90
+ M: {};
91
+ Defaults: {};
92
+ }, Readonly< ExtractPropTypes<{
93
+ mode: {
94
+ type: PropType<"svg" | "iconify">;
95
+ default: string;
96
+ };
97
+ width: {
98
+ type: PropType<string>;
99
+ default: string;
100
+ };
101
+ copy: {
102
+ type: PropType<boolean>;
103
+ default: boolean;
104
+ };
105
+ value: {
106
+ type: PropType<string>;
107
+ default: string;
108
+ };
109
+ readonly: {
110
+ type: PropType<boolean>;
111
+ default: boolean;
112
+ };
113
+ allowClear: {
114
+ type: PropType<boolean>;
115
+ default: boolean;
116
+ };
117
+ pageSize: {
118
+ type: PropType<number>;
119
+ default: number;
120
+ };
121
+ svgIcons: {
122
+ type: PropType<string[]>;
123
+ };
124
+ }>> & {
125
+ onChange?: ((...args: any[]) => any) | undefined;
126
+ "onUpdate:value"?: ((...args: any[]) => any) | undefined;
127
+ }, {}, {}, {}, {}, {
128
+ mode: "svg" | "iconify";
129
+ width: string;
130
+ copy: boolean;
131
+ value: string;
132
+ readonly: boolean;
133
+ allowClear: boolean;
134
+ pageSize: number;
135
+ }>;
136
+ __isFragment?: undefined;
137
+ __isTeleport?: undefined;
138
+ __isSuspense?: undefined;
139
+ } & ComponentOptionsBase<Readonly< ExtractPropTypes<{
140
+ mode: {
141
+ type: PropType<"svg" | "iconify">;
142
+ default: string;
143
+ };
144
+ width: {
145
+ type: PropType<string>;
146
+ default: string;
147
+ };
148
+ copy: {
149
+ type: PropType<boolean>;
150
+ default: boolean;
151
+ };
152
+ value: {
153
+ type: PropType<string>;
154
+ default: string;
155
+ };
156
+ readonly: {
157
+ type: PropType<boolean>;
158
+ default: boolean;
159
+ };
160
+ allowClear: {
161
+ type: PropType<boolean>;
162
+ default: boolean;
163
+ };
164
+ pageSize: {
165
+ type: PropType<number>;
166
+ default: number;
167
+ };
168
+ svgIcons: {
169
+ type: PropType<string[]>;
170
+ };
171
+ }>> & {
172
+ onChange?: ((...args: any[]) => any) | undefined;
173
+ "onUpdate:value"?: ((...args: any[]) => any) | undefined;
174
+ }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
175
+ change: (...args: any[]) => void;
176
+ "update:value": (...args: any[]) => void;
177
+ }, string, {
178
+ mode: "svg" | "iconify";
179
+ width: string;
180
+ copy: boolean;
181
+ value: string;
182
+ readonly: boolean;
183
+ allowClear: boolean;
184
+ pageSize: number;
185
+ }, {}, string, {}> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin<any[]> & (new (...args: any[]) => {
186
+ $props: {
187
+ onClick?: (() => void) | undefined;
188
+ };
189
+ });
190
+ export default IconPicker;
@@ -0,0 +1,177 @@
1
+ import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from '@vue/runtime-core';
2
+ import { StyleValue } from '../type';
3
+ import { Ref } from '@vue/reactivity';
4
+ export * from './interface';
5
+ export declare const Scrollbar: {
6
+ new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
7
+ native: {
8
+ type: PropType<boolean>;
9
+ };
10
+ scrollHeight: {
11
+ type: PropType<number>;
12
+ default: number;
13
+ };
14
+ wrapStyle: {
15
+ type: PropType<StyleValue>;
16
+ default: string;
17
+ };
18
+ wrapClass: {
19
+ type: PropType<string | string[]>;
20
+ default: string;
21
+ };
22
+ viewClass: {
23
+ type: PropType<string | string[]>;
24
+ default: string;
25
+ };
26
+ viewStyle: {
27
+ type: PropType<string | string[]>;
28
+ default: string;
29
+ };
30
+ noresize: {
31
+ type: PropType<boolean>;
32
+ };
33
+ tag: {
34
+ type: PropType<string>;
35
+ default: string;
36
+ };
37
+ }>>, {
38
+ wrap: Ref<any>;
39
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly< ExtractPropTypes<{
40
+ native: {
41
+ type: PropType<boolean>;
42
+ };
43
+ scrollHeight: {
44
+ type: PropType<number>;
45
+ default: number;
46
+ };
47
+ wrapStyle: {
48
+ type: PropType<StyleValue>;
49
+ default: string;
50
+ };
51
+ wrapClass: {
52
+ type: PropType<string | string[]>;
53
+ default: string;
54
+ };
55
+ viewClass: {
56
+ type: PropType<string | string[]>;
57
+ default: string;
58
+ };
59
+ viewStyle: {
60
+ type: PropType<string | string[]>;
61
+ default: string;
62
+ };
63
+ noresize: {
64
+ type: PropType<boolean>;
65
+ };
66
+ tag: {
67
+ type: PropType<string>;
68
+ default: string;
69
+ };
70
+ }>>, {
71
+ scrollHeight: number;
72
+ wrapStyle: StyleValue;
73
+ wrapClass: string | string[];
74
+ viewClass: string | string[];
75
+ viewStyle: string | string[];
76
+ tag: string;
77
+ }, true, {}, {}, {
78
+ P: {};
79
+ B: {};
80
+ D: {};
81
+ C: {};
82
+ M: {};
83
+ Defaults: {};
84
+ }, Readonly< ExtractPropTypes<{
85
+ native: {
86
+ type: PropType<boolean>;
87
+ };
88
+ scrollHeight: {
89
+ type: PropType<number>;
90
+ default: number;
91
+ };
92
+ wrapStyle: {
93
+ type: PropType<StyleValue>;
94
+ default: string;
95
+ };
96
+ wrapClass: {
97
+ type: PropType<string | string[]>;
98
+ default: string;
99
+ };
100
+ viewClass: {
101
+ type: PropType<string | string[]>;
102
+ default: string;
103
+ };
104
+ viewStyle: {
105
+ type: PropType<string | string[]>;
106
+ default: string;
107
+ };
108
+ noresize: {
109
+ type: PropType<boolean>;
110
+ };
111
+ tag: {
112
+ type: PropType<string>;
113
+ default: string;
114
+ };
115
+ }>>, {
116
+ wrap: Ref<any>;
117
+ }, {}, {}, {}, {
118
+ scrollHeight: number;
119
+ wrapStyle: StyleValue;
120
+ wrapClass: string | string[];
121
+ viewClass: string | string[];
122
+ viewStyle: string | string[];
123
+ tag: string;
124
+ }>;
125
+ __isFragment?: undefined;
126
+ __isTeleport?: undefined;
127
+ __isSuspense?: undefined;
128
+ } & ComponentOptionsBase<Readonly< ExtractPropTypes<{
129
+ native: {
130
+ type: PropType<boolean>;
131
+ };
132
+ scrollHeight: {
133
+ type: PropType<number>;
134
+ default: number;
135
+ };
136
+ wrapStyle: {
137
+ type: PropType<StyleValue>;
138
+ default: string;
139
+ };
140
+ wrapClass: {
141
+ type: PropType<string | string[]>;
142
+ default: string;
143
+ };
144
+ viewClass: {
145
+ type: PropType<string | string[]>;
146
+ default: string;
147
+ };
148
+ viewStyle: {
149
+ type: PropType<string | string[]>;
150
+ default: string;
151
+ };
152
+ noresize: {
153
+ type: PropType<boolean>;
154
+ };
155
+ tag: {
156
+ type: PropType<string>;
157
+ default: string;
158
+ };
159
+ }>>, {
160
+ wrap: Ref<any>;
161
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
162
+ scrollHeight: number;
163
+ wrapStyle: StyleValue;
164
+ wrapClass: string | string[];
165
+ viewClass: string | string[];
166
+ viewStyle: string | string[];
167
+ tag: string;
168
+ }, {}, string, {}> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
169
+ $slots: {
170
+ default?(_: {}): any;
171
+ };
172
+ }) & Plugin<any[]> & (new (...args: any[]) => {
173
+ $props: {
174
+ onClick?: (() => void) | undefined;
175
+ };
176
+ });
177
+ export default Scrollbar;
@@ -0,0 +1,89 @@
1
+ import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from '@vue/runtime-core';
2
+ export * from './interface';
3
+ export declare const StrengthMeter: {
4
+ new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
5
+ disabled: {
6
+ type: PropType<boolean>;
7
+ };
8
+ value: {
9
+ type: PropType<string>;
10
+ };
11
+ showInput: {
12
+ type: PropType<boolean>;
13
+ default: boolean;
14
+ };
15
+ }>> & {
16
+ onChange?: ((...args: any[]) => any) | undefined;
17
+ "onScore-change"?: ((...args: any[]) => any) | undefined;
18
+ }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
19
+ change: (...args: any[]) => void;
20
+ "score-change": (...args: any[]) => void;
21
+ }, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly< ExtractPropTypes<{
22
+ disabled: {
23
+ type: PropType<boolean>;
24
+ };
25
+ value: {
26
+ type: PropType<string>;
27
+ };
28
+ showInput: {
29
+ type: PropType<boolean>;
30
+ default: boolean;
31
+ };
32
+ }>> & {
33
+ onChange?: ((...args: any[]) => any) | undefined;
34
+ "onScore-change"?: ((...args: any[]) => any) | undefined;
35
+ }, {
36
+ showInput: boolean;
37
+ }, true, {}, {}, {
38
+ P: {};
39
+ B: {};
40
+ D: {};
41
+ C: {};
42
+ M: {};
43
+ Defaults: {};
44
+ }, Readonly< ExtractPropTypes<{
45
+ disabled: {
46
+ type: PropType<boolean>;
47
+ };
48
+ value: {
49
+ type: PropType<string>;
50
+ };
51
+ showInput: {
52
+ type: PropType<boolean>;
53
+ default: boolean;
54
+ };
55
+ }>> & {
56
+ onChange?: ((...args: any[]) => any) | undefined;
57
+ "onScore-change"?: ((...args: any[]) => any) | undefined;
58
+ }, {}, {}, {}, {}, {
59
+ showInput: boolean;
60
+ }>;
61
+ __isFragment?: undefined;
62
+ __isTeleport?: undefined;
63
+ __isSuspense?: undefined;
64
+ } & ComponentOptionsBase<Readonly< ExtractPropTypes<{
65
+ disabled: {
66
+ type: PropType<boolean>;
67
+ };
68
+ value: {
69
+ type: PropType<string>;
70
+ };
71
+ showInput: {
72
+ type: PropType<boolean>;
73
+ default: boolean;
74
+ };
75
+ }>> & {
76
+ onChange?: ((...args: any[]) => any) | undefined;
77
+ "onScore-change"?: ((...args: any[]) => any) | undefined;
78
+ }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
79
+ change: (...args: any[]) => void;
80
+ "score-change": (...args: any[]) => void;
81
+ }, string, {
82
+ showInput: boolean;
83
+ }, {}, string, {}> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
84
+ $slots: Partial<Record<string, (_: any) => any>>;
85
+ }) & Plugin<any[]> & (new (...args: any[]) => {
86
+ $props: {
87
+ onClick?: (() => void) | undefined;
88
+ };
89
+ });
@@ -2,12 +2,24 @@
2
2
  min-width: 88px;
3
3
  box-shadow: none;
4
4
  }
5
- .ant-btn[disabled],
6
- .ant-btn[disabled]:hover {
5
+ .ant-btn-default[disabled],
6
+ .ant-btn-default[disabled]:hover {
7
7
  color: #bfbfbf !important;
8
8
  background: #fafafa !important;
9
9
  border-color: #d9d9d9 !important;
10
10
  }
11
+ .ant-btn-primary[disabled],
12
+ .ant-btn-primary[disabled]:hover {
13
+ color: #ffffff !important;
14
+ background: #d6f1e5 !important;
15
+ border-color: #d6f1e5 !important;
16
+ }
17
+ .ant-btn-link[disabled],
18
+ .ant-btn-link[disabled]:hover,
19
+ .ant-btn-text[disabled],
20
+ .ant-btn-text[disabled]:hover {
21
+ color: rgba(24, 144, 255, 0.2) !important;
22
+ }
11
23
  .ant-form-item-control-input-content [text='重置'],
12
24
  .ant-form-item-control-input-content [text='查询'],
13
25
  .ant-form-item-control-input-content [text='Reset'],