yahee-components 0.0.12 → 0.0.13
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/es/api/tool.js +10 -11
- package/es/drop-down-condition/drop-down-condition.vue.js +42 -41
- package/es/left-condition/left-condition.vue.js +118 -116
- package/es/left-condition/style/index.css +2 -3
- package/es/left-condition-enum/left-condition-enum.vue.js +18 -14
- package/es/left-condition-enum/style/index.css +10 -0
- package/es/operation-log/operation-log-form.vue.js +179 -5
- package/es/operation-log/operation-log-form.vue2.js +2 -179
- package/es/operation-log/operation-log.vue.js +30 -30
- package/es/packages/components/api/server.js +26 -13
- package/es/packages/components/api/tool.js +9 -10
- package/es/style.css +12 -2
- package/lib/left-condition/style/index.css +2 -3
- package/lib/left-condition-enum/style/index.css +10 -0
- package/lib/style.css +12 -2
- package/package.json +1 -1
- package/types/src/drop-down-condition/drop-down-condition.vue.d.ts +2 -0
- package/types/src/drop-down-condition/index.d.ts +2 -0
- package/types/src/installs.d.ts +11 -0
- package/types/src/left-condition-enum/index.d.ts +9 -0
- package/types/src/left-condition-enum/left-condition-enum.vue.d.ts +9 -0
- package/es/_virtual/_plugin-vue_export-helper.js +0 -9
package/es/style.css
CHANGED
|
@@ -81,14 +81,24 @@
|
|
|
81
81
|
padding: 5px 11px;
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
-
|
|
84
|
+
.yahee-left-condition .custom-button + .custom-button {
|
|
85
85
|
margin-left: 5px;
|
|
86
86
|
margin-bottom: 5px;
|
|
87
87
|
position: relative;
|
|
88
88
|
top: 2px;
|
|
89
89
|
}
|
|
90
|
+
.yahee-left-condition .custom-button {
|
|
91
|
+
padding: 1px 4px;
|
|
92
|
+
height: 22px;
|
|
93
|
+
}
|
|
90
94
|
|
|
91
|
-
:deep(.custom-button) {
|
|
95
|
+
.yahee-left-condition :deep(.custom-button + .custom-button) {
|
|
96
|
+
margin-left: 5px;
|
|
97
|
+
margin-bottom: 5px;
|
|
98
|
+
position: relative;
|
|
99
|
+
top: 2px;
|
|
100
|
+
}
|
|
101
|
+
.yahee-left-condition :deep(.custom-button) {
|
|
92
102
|
padding: 1px 4px;
|
|
93
103
|
height: 22px;
|
|
94
104
|
}
|
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
.yahee-left-condition .custom-button + .custom-button {
|
|
2
2
|
margin-left: 5px;
|
|
3
3
|
margin-bottom: 5px;
|
|
4
4
|
position: relative;
|
|
5
5
|
top: 2px;
|
|
6
6
|
}
|
|
7
|
-
|
|
8
|
-
:deep(.custom-button) {
|
|
7
|
+
.yahee-left-condition .custom-button {
|
|
9
8
|
padding: 1px 4px;
|
|
10
9
|
height: 22px;
|
|
11
10
|
}
|
package/lib/style.css
CHANGED
|
@@ -81,14 +81,24 @@
|
|
|
81
81
|
padding: 5px 11px;
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
-
|
|
84
|
+
.yahee-left-condition .custom-button + .custom-button {
|
|
85
85
|
margin-left: 5px;
|
|
86
86
|
margin-bottom: 5px;
|
|
87
87
|
position: relative;
|
|
88
88
|
top: 2px;
|
|
89
89
|
}
|
|
90
|
+
.yahee-left-condition .custom-button {
|
|
91
|
+
padding: 1px 4px;
|
|
92
|
+
height: 22px;
|
|
93
|
+
}
|
|
90
94
|
|
|
91
|
-
:deep(.custom-button) {
|
|
95
|
+
.yahee-left-condition :deep(.custom-button + .custom-button) {
|
|
96
|
+
margin-left: 5px;
|
|
97
|
+
margin-bottom: 5px;
|
|
98
|
+
position: relative;
|
|
99
|
+
top: 2px;
|
|
100
|
+
}
|
|
101
|
+
.yahee-left-condition :deep(.custom-button) {
|
|
92
102
|
padding: 1px 4px;
|
|
93
103
|
height: 22px;
|
|
94
104
|
}
|
package/package.json
CHANGED
|
@@ -13,6 +13,7 @@ declare const _default: DefineComponent<{
|
|
|
13
13
|
}>;
|
|
14
14
|
filterKey: string;
|
|
15
15
|
enumEntity: string;
|
|
16
|
+
baseUrl: string;
|
|
16
17
|
noNeedRefreshNumFilterName?: string;
|
|
17
18
|
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
18
19
|
filterChange: (...args: any[]) => void;
|
|
@@ -30,6 +31,7 @@ declare const _default: DefineComponent<{
|
|
|
30
31
|
}>;
|
|
31
32
|
filterKey: string;
|
|
32
33
|
enumEntity: string;
|
|
34
|
+
baseUrl: string;
|
|
33
35
|
noNeedRefreshNumFilterName?: string;
|
|
34
36
|
}> & Readonly<{
|
|
35
37
|
onFilterChange?: (...args: any[]) => any;
|
|
@@ -14,6 +14,7 @@ export declare const YaheeDropDownCondition: SFCWithInstall<DefineComponent<{
|
|
|
14
14
|
}>;
|
|
15
15
|
filterKey: string;
|
|
16
16
|
enumEntity: string;
|
|
17
|
+
baseUrl: string;
|
|
17
18
|
noNeedRefreshNumFilterName?: string;
|
|
18
19
|
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
19
20
|
filterChange: (...args: any[]) => void;
|
|
@@ -31,6 +32,7 @@ export declare const YaheeDropDownCondition: SFCWithInstall<DefineComponent<{
|
|
|
31
32
|
}>;
|
|
32
33
|
filterKey: string;
|
|
33
34
|
enumEntity: string;
|
|
35
|
+
baseUrl: string;
|
|
34
36
|
noNeedRefreshNumFilterName?: string;
|
|
35
37
|
}> & Readonly<{
|
|
36
38
|
onFilterChange?: (...args: any[]) => any;
|
package/types/src/installs.d.ts
CHANGED
|
@@ -360,6 +360,10 @@ declare const _default: (( SFCWithInstall<DefineComponent<InputProps, {
|
|
|
360
360
|
};
|
|
361
361
|
default: () => Option[];
|
|
362
362
|
};
|
|
363
|
+
baseUrl: {
|
|
364
|
+
type: StringConstructor;
|
|
365
|
+
default: string;
|
|
366
|
+
};
|
|
363
367
|
countList: {
|
|
364
368
|
type: {
|
|
365
369
|
(arrayLength: number): any[];
|
|
@@ -430,6 +434,10 @@ declare const _default: (( SFCWithInstall<DefineComponent<InputProps, {
|
|
|
430
434
|
};
|
|
431
435
|
default: () => Option[];
|
|
432
436
|
};
|
|
437
|
+
baseUrl: {
|
|
438
|
+
type: StringConstructor;
|
|
439
|
+
default: string;
|
|
440
|
+
};
|
|
433
441
|
countList: {
|
|
434
442
|
type: {
|
|
435
443
|
(arrayLength: number): any[];
|
|
@@ -486,6 +494,7 @@ declare const _default: (( SFCWithInstall<DefineComponent<InputProps, {
|
|
|
486
494
|
selectList: Option[];
|
|
487
495
|
allIsEmpty: boolean;
|
|
488
496
|
filterKey: string;
|
|
497
|
+
baseUrl: string;
|
|
489
498
|
enumEntity: string;
|
|
490
499
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>> & Record<string, any>) | ( SFCWithInstall<DefineComponent<{
|
|
491
500
|
filterList?: Array< DropdownEntity>;
|
|
@@ -500,6 +509,7 @@ declare const _default: (( SFCWithInstall<DefineComponent<InputProps, {
|
|
|
500
509
|
}>;
|
|
501
510
|
filterKey: string;
|
|
502
511
|
enumEntity: string;
|
|
512
|
+
baseUrl: string;
|
|
503
513
|
noNeedRefreshNumFilterName?: string;
|
|
504
514
|
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
505
515
|
filterChange: (...args: any[]) => void;
|
|
@@ -517,6 +527,7 @@ declare const _default: (( SFCWithInstall<DefineComponent<InputProps, {
|
|
|
517
527
|
}>;
|
|
518
528
|
filterKey: string;
|
|
519
529
|
enumEntity: string;
|
|
530
|
+
baseUrl: string;
|
|
520
531
|
noNeedRefreshNumFilterName?: string;
|
|
521
532
|
}> & Readonly<{
|
|
522
533
|
onFilterChange?: (...args: any[]) => any;
|
|
@@ -21,6 +21,10 @@ export declare const YaheeLeftConditionEnum: SFCWithInstall<DefineComponent<Extr
|
|
|
21
21
|
};
|
|
22
22
|
default: () => Option[];
|
|
23
23
|
};
|
|
24
|
+
baseUrl: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
24
28
|
countList: {
|
|
25
29
|
type: {
|
|
26
30
|
(arrayLength: number): any[];
|
|
@@ -91,6 +95,10 @@ export declare const YaheeLeftConditionEnum: SFCWithInstall<DefineComponent<Extr
|
|
|
91
95
|
};
|
|
92
96
|
default: () => Option[];
|
|
93
97
|
};
|
|
98
|
+
baseUrl: {
|
|
99
|
+
type: StringConstructor;
|
|
100
|
+
default: string;
|
|
101
|
+
};
|
|
94
102
|
countList: {
|
|
95
103
|
type: {
|
|
96
104
|
(arrayLength: number): any[];
|
|
@@ -147,6 +155,7 @@ export declare const YaheeLeftConditionEnum: SFCWithInstall<DefineComponent<Extr
|
|
|
147
155
|
selectList: Option[];
|
|
148
156
|
allIsEmpty: boolean;
|
|
149
157
|
filterKey: string;
|
|
158
|
+
baseUrl: string;
|
|
150
159
|
enumEntity: string;
|
|
151
160
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>> & Record<string, any>;
|
|
152
161
|
export default YaheeLeftConditionEnum;
|
|
@@ -20,6 +20,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
20
20
|
};
|
|
21
21
|
default: () => Option[];
|
|
22
22
|
};
|
|
23
|
+
baseUrl: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
23
27
|
countList: {
|
|
24
28
|
type: {
|
|
25
29
|
(arrayLength: number): any[];
|
|
@@ -90,6 +94,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
90
94
|
};
|
|
91
95
|
default: () => Option[];
|
|
92
96
|
};
|
|
97
|
+
baseUrl: {
|
|
98
|
+
type: StringConstructor;
|
|
99
|
+
default: string;
|
|
100
|
+
};
|
|
93
101
|
countList: {
|
|
94
102
|
type: {
|
|
95
103
|
(arrayLength: number): any[];
|
|
@@ -146,6 +154,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
146
154
|
selectList: Option[];
|
|
147
155
|
allIsEmpty: boolean;
|
|
148
156
|
filterKey: string;
|
|
157
|
+
baseUrl: string;
|
|
149
158
|
enumEntity: string;
|
|
150
159
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
151
160
|
export default _default;
|