3h1-ui 1.0.140 → 1.0.141
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/index.js +11 -16
- package/es/style.css +2 -11
- package/lib/index.js +11 -16
- package/package.json +3 -3
package/es/index.js
CHANGED
|
@@ -2158,7 +2158,7 @@ function baseKeysIn(object) {
|
|
|
2158
2158
|
}
|
|
2159
2159
|
return result;
|
|
2160
2160
|
}
|
|
2161
|
-
function keysIn(object) {
|
|
2161
|
+
function keysIn$1(object) {
|
|
2162
2162
|
return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object);
|
|
2163
2163
|
}
|
|
2164
2164
|
var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, reIsPlainProp = /^\w*$/;
|
|
@@ -2548,7 +2548,7 @@ function baseAssign(object, source) {
|
|
|
2548
2548
|
return object && copyObject(source, keys(source), object);
|
|
2549
2549
|
}
|
|
2550
2550
|
function baseAssignIn(object, source) {
|
|
2551
|
-
return object && copyObject(source, keysIn(source), object);
|
|
2551
|
+
return object && copyObject(source, keysIn$1(source), object);
|
|
2552
2552
|
}
|
|
2553
2553
|
var freeExports = typeof exports == "object" && exports && !exports.nodeType && exports;
|
|
2554
2554
|
var freeModule = freeExports && typeof module == "object" && module && !module.nodeType && module;
|
|
@@ -2612,7 +2612,7 @@ function getAllKeys(object) {
|
|
|
2612
2612
|
return baseGetAllKeys(object, keys, getSymbols$1);
|
|
2613
2613
|
}
|
|
2614
2614
|
function getAllKeysIn(object) {
|
|
2615
|
-
return baseGetAllKeys(object, keysIn, getSymbolsIn$1);
|
|
2615
|
+
return baseGetAllKeys(object, keysIn$1, getSymbolsIn$1);
|
|
2616
2616
|
}
|
|
2617
2617
|
var DataView$1 = getNative(root$1, "DataView");
|
|
2618
2618
|
const DataView$2 = DataView$1;
|
|
@@ -2837,10 +2837,9 @@ function equalArrays(array, other, bitmask, customizer, equalFunc, stack) {
|
|
|
2837
2837
|
if (arrLength != othLength && !(isPartial && othLength > arrLength)) {
|
|
2838
2838
|
return false;
|
|
2839
2839
|
}
|
|
2840
|
-
var
|
|
2841
|
-
|
|
2842
|
-
|
|
2843
|
-
return arrStacked == other && othStacked == array;
|
|
2840
|
+
var stacked = stack.get(array);
|
|
2841
|
+
if (stacked && stack.get(other)) {
|
|
2842
|
+
return stacked == other;
|
|
2844
2843
|
}
|
|
2845
2844
|
var index2 = -1, result = true, seen = bitmask & COMPARE_UNORDERED_FLAG$3 ? new SetCache() : void 0;
|
|
2846
2845
|
stack.set(array, other);
|
|
@@ -2954,10 +2953,9 @@ function equalObjects(object, other, bitmask, customizer, equalFunc, stack) {
|
|
|
2954
2953
|
return false;
|
|
2955
2954
|
}
|
|
2956
2955
|
}
|
|
2957
|
-
var
|
|
2958
|
-
|
|
2959
|
-
|
|
2960
|
-
return objStacked == other && othStacked == object;
|
|
2956
|
+
var stacked = stack.get(object);
|
|
2957
|
+
if (stacked && stack.get(other)) {
|
|
2958
|
+
return stacked == other;
|
|
2961
2959
|
}
|
|
2962
2960
|
var result = true;
|
|
2963
2961
|
stack.set(object, other);
|
|
@@ -3177,7 +3175,7 @@ function safeGet(object, key2) {
|
|
|
3177
3175
|
return object[key2];
|
|
3178
3176
|
}
|
|
3179
3177
|
function toPlainObject(value) {
|
|
3180
|
-
return copyObject(value, keysIn(value));
|
|
3178
|
+
return copyObject(value, keysIn$1(value));
|
|
3181
3179
|
}
|
|
3182
3180
|
function baseMergeDeep(object, source, key2, srcIndex, mergeFunc, customizer, stack) {
|
|
3183
3181
|
var objValue = safeGet(object, key2), srcValue = safeGet(source, key2), stacked = stack.get(srcValue);
|
|
@@ -3237,7 +3235,7 @@ function baseMerge(object, source, srcIndex, customizer, stack) {
|
|
|
3237
3235
|
}
|
|
3238
3236
|
assignMergeValue(object, key2, newValue);
|
|
3239
3237
|
}
|
|
3240
|
-
}, keysIn);
|
|
3238
|
+
}, keysIn$1);
|
|
3241
3239
|
}
|
|
3242
3240
|
function arrayIncludesWith(array, value, comparator) {
|
|
3243
3241
|
var index2 = -1, length = array == null ? 0 : array.length;
|
|
@@ -3343,9 +3341,6 @@ function baseSet(object, path, value, customizer) {
|
|
|
3343
3341
|
var index2 = -1, length = path.length, lastIndex = length - 1, nested = object;
|
|
3344
3342
|
while (nested != null && ++index2 < length) {
|
|
3345
3343
|
var key2 = toKey(path[index2]), newValue = value;
|
|
3346
|
-
if (key2 === "__proto__" || key2 === "constructor" || key2 === "prototype") {
|
|
3347
|
-
return object;
|
|
3348
|
-
}
|
|
3349
3344
|
if (index2 != lastIndex) {
|
|
3350
3345
|
var objValue = nested[key2];
|
|
3351
3346
|
newValue = customizer ? customizer(objValue, key2, nested) : void 0;
|
package/es/style.css
CHANGED
|
@@ -1309,14 +1309,6 @@ span.iconify {
|
|
|
1309
1309
|
}[data-theme='dark'] .ant-table-tbody > tr:hover.ant-table-row-selected > td, [data-theme='dark'] .ant-table-tbody > tr.ant-table-row-selected td {
|
|
1310
1310
|
background-color: #262626;
|
|
1311
1311
|
}
|
|
1312
|
-
[data-theme='light'] .shy-basic-table > .ant-table-wrapper {
|
|
1313
|
-
border: 1px solid #efeff5;
|
|
1314
|
-
box-shadow: 0 20px 27px rgba(0, 0, 0, 0.05);
|
|
1315
|
-
}
|
|
1316
|
-
[data-theme='light'] .shy-basic-table-form-container > .ant-form {
|
|
1317
|
-
border: 1px solid #efeff5;
|
|
1318
|
-
box-shadow: 0 20px 27px rgba(107, 106, 106, 0.05);
|
|
1319
|
-
}
|
|
1320
1312
|
.shy-basic-table {
|
|
1321
1313
|
overflow: hidden;
|
|
1322
1314
|
width: 100%;
|
|
@@ -1372,6 +1364,8 @@ span.iconify {
|
|
|
1372
1364
|
}
|
|
1373
1365
|
.shy-basic-table .ant-table-footer .ant-table-body {
|
|
1374
1366
|
overflow-x: hidden !important;
|
|
1367
|
+
overflow-y: scroll !important;
|
|
1368
|
+
padding-right: 7px;
|
|
1375
1369
|
}
|
|
1376
1370
|
.shy-basic-table .ant-table-footer td {
|
|
1377
1371
|
padding: 12px 8px;
|
|
@@ -1382,9 +1376,6 @@ span.iconify {
|
|
|
1382
1376
|
.shy-basic-table .ant-table-container {
|
|
1383
1377
|
border-bottom: 1px solid #f0f0f0;
|
|
1384
1378
|
border-right: 1px solid #f0f0f0;
|
|
1385
|
-
}
|
|
1386
|
-
.shy-basic-table .ant-table-body {
|
|
1387
|
-
overflow: auto !important;
|
|
1388
1379
|
}.wrapper[data-v-dbd84c9c] {
|
|
1389
1380
|
display: flex;
|
|
1390
1381
|
}
|
package/lib/index.js
CHANGED
|
@@ -2163,7 +2163,7 @@ function baseKeysIn(object) {
|
|
|
2163
2163
|
}
|
|
2164
2164
|
return result;
|
|
2165
2165
|
}
|
|
2166
|
-
function keysIn(object) {
|
|
2166
|
+
function keysIn$1(object) {
|
|
2167
2167
|
return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object);
|
|
2168
2168
|
}
|
|
2169
2169
|
var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, reIsPlainProp = /^\w*$/;
|
|
@@ -2553,7 +2553,7 @@ function baseAssign(object, source) {
|
|
|
2553
2553
|
return object && copyObject(source, keys(source), object);
|
|
2554
2554
|
}
|
|
2555
2555
|
function baseAssignIn(object, source) {
|
|
2556
|
-
return object && copyObject(source, keysIn(source), object);
|
|
2556
|
+
return object && copyObject(source, keysIn$1(source), object);
|
|
2557
2557
|
}
|
|
2558
2558
|
var freeExports = typeof exports == "object" && exports && !exports.nodeType && exports;
|
|
2559
2559
|
var freeModule = freeExports && typeof module == "object" && module && !module.nodeType && module;
|
|
@@ -2617,7 +2617,7 @@ function getAllKeys(object) {
|
|
|
2617
2617
|
return baseGetAllKeys(object, keys, getSymbols$1);
|
|
2618
2618
|
}
|
|
2619
2619
|
function getAllKeysIn(object) {
|
|
2620
|
-
return baseGetAllKeys(object, keysIn, getSymbolsIn$1);
|
|
2620
|
+
return baseGetAllKeys(object, keysIn$1, getSymbolsIn$1);
|
|
2621
2621
|
}
|
|
2622
2622
|
var DataView$1 = getNative(root$1, "DataView");
|
|
2623
2623
|
const DataView$2 = DataView$1;
|
|
@@ -2842,10 +2842,9 @@ function equalArrays(array, other, bitmask, customizer, equalFunc, stack) {
|
|
|
2842
2842
|
if (arrLength != othLength && !(isPartial && othLength > arrLength)) {
|
|
2843
2843
|
return false;
|
|
2844
2844
|
}
|
|
2845
|
-
var
|
|
2846
|
-
|
|
2847
|
-
|
|
2848
|
-
return arrStacked == other && othStacked == array;
|
|
2845
|
+
var stacked = stack.get(array);
|
|
2846
|
+
if (stacked && stack.get(other)) {
|
|
2847
|
+
return stacked == other;
|
|
2849
2848
|
}
|
|
2850
2849
|
var index2 = -1, result = true, seen = bitmask & COMPARE_UNORDERED_FLAG$3 ? new SetCache() : void 0;
|
|
2851
2850
|
stack.set(array, other);
|
|
@@ -2959,10 +2958,9 @@ function equalObjects(object, other, bitmask, customizer, equalFunc, stack) {
|
|
|
2959
2958
|
return false;
|
|
2960
2959
|
}
|
|
2961
2960
|
}
|
|
2962
|
-
var
|
|
2963
|
-
|
|
2964
|
-
|
|
2965
|
-
return objStacked == other && othStacked == object;
|
|
2961
|
+
var stacked = stack.get(object);
|
|
2962
|
+
if (stacked && stack.get(other)) {
|
|
2963
|
+
return stacked == other;
|
|
2966
2964
|
}
|
|
2967
2965
|
var result = true;
|
|
2968
2966
|
stack.set(object, other);
|
|
@@ -3182,7 +3180,7 @@ function safeGet(object, key2) {
|
|
|
3182
3180
|
return object[key2];
|
|
3183
3181
|
}
|
|
3184
3182
|
function toPlainObject(value) {
|
|
3185
|
-
return copyObject(value, keysIn(value));
|
|
3183
|
+
return copyObject(value, keysIn$1(value));
|
|
3186
3184
|
}
|
|
3187
3185
|
function baseMergeDeep(object, source, key2, srcIndex, mergeFunc, customizer, stack) {
|
|
3188
3186
|
var objValue = safeGet(object, key2), srcValue = safeGet(source, key2), stacked = stack.get(srcValue);
|
|
@@ -3242,7 +3240,7 @@ function baseMerge(object, source, srcIndex, customizer, stack) {
|
|
|
3242
3240
|
}
|
|
3243
3241
|
assignMergeValue(object, key2, newValue);
|
|
3244
3242
|
}
|
|
3245
|
-
}, keysIn);
|
|
3243
|
+
}, keysIn$1);
|
|
3246
3244
|
}
|
|
3247
3245
|
function arrayIncludesWith(array, value, comparator) {
|
|
3248
3246
|
var index2 = -1, length = array == null ? 0 : array.length;
|
|
@@ -3348,9 +3346,6 @@ function baseSet(object, path, value, customizer) {
|
|
|
3348
3346
|
var index2 = -1, length = path.length, lastIndex = length - 1, nested = object;
|
|
3349
3347
|
while (nested != null && ++index2 < length) {
|
|
3350
3348
|
var key2 = toKey(path[index2]), newValue = value;
|
|
3351
|
-
if (key2 === "__proto__" || key2 === "constructor" || key2 === "prototype") {
|
|
3352
|
-
return object;
|
|
3353
|
-
}
|
|
3354
3349
|
if (index2 != lastIndex) {
|
|
3355
3350
|
var objValue = nested[key2];
|
|
3356
3351
|
newValue = customizer ? customizer(objValue, key2, nested) : void 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "3h1-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.141",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.js",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"vue-types": "^5.0.2",
|
|
32
32
|
"vxe-table": "^4.3.6",
|
|
33
33
|
"xe-utils": "^3.5.7",
|
|
34
|
-
"@shy-plugins/
|
|
35
|
-
"@shy-plugins/
|
|
34
|
+
"@shy-plugins/utils": "1.0.14",
|
|
35
|
+
"@shy-plugins/use": "1.0.3"
|
|
36
36
|
},
|
|
37
37
|
"types": "lib/ui/index.d.ts",
|
|
38
38
|
"devDependencies": {
|