yc-vep-ui 0.2.1 → 0.2.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.
- package/dist/components/utils/index.d.ts +3 -7
- package/dist/{yc-vep-ui.css → index.css} +6 -6
- package/dist/vep-ui.es.js +686 -442
- package/dist/vep-ui.umd.js +1 -1
- package/package.json +14 -10
|
@@ -1,9 +1,5 @@
|
|
|
1
|
-
export declare const
|
|
2
|
-
/**
|
|
3
|
-
* 去重数组(基于 SameValueZero 比较)
|
|
4
|
-
*/
|
|
1
|
+
export declare const baseUrl: string;
|
|
2
|
+
/** 去重数组(基于 SameValueZero 比较)*/
|
|
5
3
|
export declare function uniq<T>(arr: T[]): T[];
|
|
6
|
-
/**
|
|
7
|
-
* 根据指定 key 去重数组
|
|
8
|
-
*/
|
|
4
|
+
/** 根据指定 key 去重数组 */
|
|
9
5
|
export declare function uniqBy<T>(arr: T[], key: keyof T | ((item: T) => unknown)): T[];
|
|
@@ -147,7 +147,7 @@
|
|
|
147
147
|
}
|
|
148
148
|
}
|
|
149
149
|
|
|
150
|
-
.staff-tree[data-v-
|
|
150
|
+
.staff-tree[data-v-5c901fff] {
|
|
151
151
|
position: relative;
|
|
152
152
|
height: 90%;
|
|
153
153
|
overflow-y: auto;
|
|
@@ -155,28 +155,28 @@
|
|
|
155
155
|
border-radius: 4px;
|
|
156
156
|
margin-top: 8px;
|
|
157
157
|
}
|
|
158
|
-
.staff-select-trigger[data-v-
|
|
158
|
+
.staff-select-trigger[data-v-5c901fff] {
|
|
159
159
|
width: 100%;
|
|
160
160
|
cursor: pointer;
|
|
161
161
|
}
|
|
162
|
-
.staff-select-trigger[data-v-
|
|
162
|
+
.staff-select-trigger[data-v-5c901fff] .el-select {
|
|
163
163
|
width: 100%;
|
|
164
164
|
pointer-events: none;
|
|
165
165
|
}
|
|
166
166
|
.staff-item {
|
|
167
|
-
&[data-v-
|
|
167
|
+
&[data-v-5c901fff] {
|
|
168
168
|
line-height: 28px;
|
|
169
169
|
padding: 0% 20px 0% 10px;
|
|
170
170
|
display: flex;
|
|
171
171
|
justify-content: space-between;
|
|
172
172
|
align-items: center;
|
|
173
173
|
}
|
|
174
|
-
&[data-v-
|
|
174
|
+
&[data-v-5c901fff]:hover {
|
|
175
175
|
background-color: rgba(102, 177, 255, 0.5);
|
|
176
176
|
}
|
|
177
177
|
}
|
|
178
178
|
.is-required {
|
|
179
|
-
&[data-v-
|
|
179
|
+
&[data-v-5c901fff] .el-select__wrapper {
|
|
180
180
|
border: 1px solid red;
|
|
181
181
|
}
|
|
182
182
|
}
|