@jx3box/jx3box-vue3-ui 0.4.19 → 0.4.21

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.
@@ -66,6 +66,39 @@
66
66
  .c-admin-info {
67
67
  display: flex;
68
68
  }
69
+
70
+ .w-select {
71
+ position: relative;
72
+ .flex;
73
+ align-items: center;
74
+ .u-select-label {
75
+ background-color: #f5f7fa;
76
+ color: #909399;
77
+ position: relative;
78
+ display: inline-flex;
79
+ align-items: center;
80
+ justify-content: center;
81
+ height: 40px;
82
+ line-height: 40px;
83
+ border-radius: 4px;
84
+ padding: 0 20px;
85
+ white-space: nowrap;
86
+ border-right: 0;
87
+ border-top-right-radius: 0;
88
+ border-bottom-right-radius: 0;
89
+ box-shadow: 1px 0 0 0 #dcdfe6 inset, 0 1px 0 0 #dcdfe6 inset, 0 -1px 0 0 #dcdfe6 inset;
90
+ font-size: 14px;
91
+ box-sizing: border-box;
92
+ }
93
+ .el-select {
94
+ .el-input__wrapper {
95
+ border-top-left-radius: 0;
96
+ border-bottom-left-radius: 0;
97
+ box-shadow: 0 1px 0 0 #dcdfe6 inset, 0 -1px 0 0 #dcdfe6 inset, 0 0 0 1px #dcdfe6 inset;
98
+ }
99
+ }
100
+ }
101
+
69
102
  .c-admin-type {
70
103
  .w(50%);
71
104
  min-width: 200px;
@@ -3,38 +3,6 @@
3
3
  --el-color-primary-light-3: #3585de;
4
4
  }
5
5
 
6
- .w-select {
7
- position: relative;
8
- .flex;
9
- align-items: center;
10
- .u-select-label {
11
- background-color: #f5f7fa;
12
- color: #909399;
13
- position: relative;
14
- display: inline-flex;
15
- align-items: center;
16
- justify-content: center;
17
- height: 40px;
18
- line-height: 40px;
19
- border-radius: 4px;
20
- padding: 0 20px;
21
- white-space: nowrap;
22
- border-right: 0;
23
- border-top-right-radius: 0;
24
- border-bottom-right-radius: 0;
25
- box-shadow: 1px 0 0 0 #dcdfe6 inset, 0 1px 0 0 #dcdfe6 inset, 0 -1px 0 0 #dcdfe6 inset;
26
- font-size: 14px;
27
- box-sizing: border-box;
28
- }
29
- .el-select {
30
- .el-input__wrapper {
31
- border-top-left-radius: 0;
32
- border-bottom-left-radius: 0;
33
- box-shadow: 0 1px 0 0 #dcdfe6 inset, 0 -1px 0 0 #dcdfe6 inset, 0 0 0 1px #dcdfe6 inset;
34
- }
35
- }
36
- }
37
-
38
6
  @color: #00467b;
39
7
  @bg-black: #24292e;
40
8
  @bg-gray: #f6f8fa;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jx3box/jx3box-vue3-ui",
3
- "version": "0.4.19",
3
+ "version": "0.4.21",
4
4
  "description": "JX3BOX Vue3 UI",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -191,7 +191,7 @@ export default {
191
191
  break;
192
192
  }
193
193
  }
194
- return type.includes(active);
194
+ return active && type.includes(active);
195
195
  },
196
196
  matchedClient: function (client) {
197
197
  return client == "all" ? true : client == this.client;