@epie/bi-crud 2.0.35 → 2.0.38
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/lib/bi-crud.esm.js +62 -47
- package/lib/bi-crud.umd.js +62 -47
- package/lib/css/bi-crud.min.css +1 -1
- package/package.json +2 -2
package/lib/bi-crud.esm.js
CHANGED
|
@@ -74,9 +74,9 @@ var functionBindNative = !fails$9(function () {
|
|
|
74
74
|
});
|
|
75
75
|
|
|
76
76
|
var NATIVE_BIND$1 = functionBindNative;
|
|
77
|
-
var call$
|
|
78
|
-
var functionCall = NATIVE_BIND$1 ? call$
|
|
79
|
-
return call$
|
|
77
|
+
var call$5 = Function.prototype.call;
|
|
78
|
+
var functionCall = NATIVE_BIND$1 ? call$5.bind(call$5) : function () {
|
|
79
|
+
return call$5.apply(call$5, arguments);
|
|
80
80
|
};
|
|
81
81
|
|
|
82
82
|
var objectPropertyIsEnumerable = {};
|
|
@@ -108,11 +108,11 @@ var createPropertyDescriptor$2 = function (bitmap, value) {
|
|
|
108
108
|
|
|
109
109
|
var NATIVE_BIND = functionBindNative;
|
|
110
110
|
var FunctionPrototype$1 = Function.prototype;
|
|
111
|
-
var call$
|
|
112
|
-
var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype$1.bind.bind(call$
|
|
111
|
+
var call$4 = FunctionPrototype$1.call;
|
|
112
|
+
var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype$1.bind.bind(call$4, call$4);
|
|
113
113
|
var functionUncurryThis = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
|
|
114
114
|
return function () {
|
|
115
|
-
return call$
|
|
115
|
+
return call$4.apply(fn, arguments);
|
|
116
116
|
};
|
|
117
117
|
};
|
|
118
118
|
|
|
@@ -293,7 +293,7 @@ var getMethod$1 = function (V, P) {
|
|
|
293
293
|
return isNullOrUndefined$1(func) ? undefined : aCallable$2(func);
|
|
294
294
|
};
|
|
295
295
|
|
|
296
|
-
var call$
|
|
296
|
+
var call$3 = functionCall;
|
|
297
297
|
var isCallable$a = isCallable$f;
|
|
298
298
|
var isObject$9 = isObject$a;
|
|
299
299
|
var $TypeError$f = TypeError;
|
|
@@ -302,9 +302,9 @@ var $TypeError$f = TypeError;
|
|
|
302
302
|
// https://tc39.es/ecma262/#sec-ordinarytoprimitive
|
|
303
303
|
var ordinaryToPrimitive$1 = function (input, pref) {
|
|
304
304
|
var fn, val;
|
|
305
|
-
if (pref === 'string' && isCallable$a(fn = input.toString) && !isObject$9(val = call$
|
|
306
|
-
if (isCallable$a(fn = input.valueOf) && !isObject$9(val = call$
|
|
307
|
-
if (pref !== 'string' && isCallable$a(fn = input.toString) && !isObject$9(val = call$
|
|
305
|
+
if (pref === 'string' && isCallable$a(fn = input.toString) && !isObject$9(val = call$3(fn, input))) return val;
|
|
306
|
+
if (isCallable$a(fn = input.valueOf) && !isObject$9(val = call$3(fn, input))) return val;
|
|
307
|
+
if (pref !== 'string' && isCallable$a(fn = input.toString) && !isObject$9(val = call$3(fn, input))) return val;
|
|
308
308
|
throw new $TypeError$f("Can't convert object to primitive value");
|
|
309
309
|
};
|
|
310
310
|
|
|
@@ -388,7 +388,7 @@ var wellKnownSymbol$4 = function (name) {
|
|
|
388
388
|
return WellKnownSymbolsStore[name];
|
|
389
389
|
};
|
|
390
390
|
|
|
391
|
-
var call$
|
|
391
|
+
var call$2 = functionCall;
|
|
392
392
|
var isObject$8 = isObject$a;
|
|
393
393
|
var isSymbol$4 = isSymbol$5;
|
|
394
394
|
var getMethod = getMethod$1;
|
|
@@ -405,7 +405,7 @@ var toPrimitive$2 = function (input, pref) {
|
|
|
405
405
|
var result;
|
|
406
406
|
if (exoticToPrim) {
|
|
407
407
|
if (pref === undefined) pref = 'default';
|
|
408
|
-
result = call$
|
|
408
|
+
result = call$2(exoticToPrim, input, pref);
|
|
409
409
|
if (!isObject$8(result) || isSymbol$4(result)) return result;
|
|
410
410
|
throw new $TypeError$e("Can't convert object to primitive value");
|
|
411
411
|
}
|
|
@@ -447,7 +447,7 @@ var ie8DomDefine = !DESCRIPTORS$9 && !fails$6(function () {
|
|
|
447
447
|
});
|
|
448
448
|
|
|
449
449
|
var DESCRIPTORS$8 = descriptors;
|
|
450
|
-
var call = functionCall;
|
|
450
|
+
var call$1 = functionCall;
|
|
451
451
|
var propertyIsEnumerableModule = objectPropertyIsEnumerable;
|
|
452
452
|
var createPropertyDescriptor$1 = createPropertyDescriptor$2;
|
|
453
453
|
var toIndexedObject$2 = toIndexedObject$3;
|
|
@@ -466,7 +466,7 @@ objectGetOwnPropertyDescriptor.f = DESCRIPTORS$8 ? $getOwnPropertyDescriptor$1 :
|
|
|
466
466
|
if (IE8_DOM_DEFINE$1) try {
|
|
467
467
|
return $getOwnPropertyDescriptor$1(O, P);
|
|
468
468
|
} catch (error) {/* empty */}
|
|
469
|
-
if (hasOwn$8(O, P)) return createPropertyDescriptor$1(!call(propertyIsEnumerableModule.f, O, P), O[P]);
|
|
469
|
+
if (hasOwn$8(O, P)) return createPropertyDescriptor$1(!call$1(propertyIsEnumerableModule.f, O, P), O[P]);
|
|
470
470
|
};
|
|
471
471
|
|
|
472
472
|
var objectDefineProperty = {};
|
|
@@ -4123,19 +4123,12 @@ var implementation$5 = function bind(that) {
|
|
|
4123
4123
|
var implementation$4 = implementation$5;
|
|
4124
4124
|
var functionBind = Function.prototype.bind || implementation$4;
|
|
4125
4125
|
|
|
4126
|
-
var
|
|
4127
|
-
var
|
|
4128
|
-
|
|
4129
|
-
if (hasRequiredHasown) return hasown;
|
|
4130
|
-
hasRequiredHasown = 1;
|
|
4131
|
-
var call = Function.prototype.call;
|
|
4132
|
-
var $hasOwn = Object.prototype.hasOwnProperty;
|
|
4133
|
-
var bind = functionBind;
|
|
4126
|
+
var call = Function.prototype.call;
|
|
4127
|
+
var $hasOwn = Object.prototype.hasOwnProperty;
|
|
4128
|
+
var bind$2 = functionBind;
|
|
4134
4129
|
|
|
4135
|
-
|
|
4136
|
-
|
|
4137
|
-
return hasown;
|
|
4138
|
-
}
|
|
4130
|
+
/** @type {(o: {}, p: PropertyKey) => p is keyof o} */
|
|
4131
|
+
var hasown = bind$2.call(call, $hasOwn);
|
|
4139
4132
|
|
|
4140
4133
|
var undefined$1;
|
|
4141
4134
|
var $SyntaxError$1 = SyntaxError;
|
|
@@ -4335,7 +4328,7 @@ var LEGACY_ALIASES = {
|
|
|
4335
4328
|
'%WeakSetPrototype%': ['WeakSet', 'prototype']
|
|
4336
4329
|
};
|
|
4337
4330
|
var bind$1 = functionBind;
|
|
4338
|
-
var hasOwn =
|
|
4331
|
+
var hasOwn = hasown;
|
|
4339
4332
|
var $concat = bind$1.call(Function.call, Array.prototype.concat);
|
|
4340
4333
|
var $spliceApply = bind$1.call(Function.apply, Array.prototype.splice);
|
|
4341
4334
|
var $replace = bind$1.call(Function.call, String.prototype.replace);
|
|
@@ -6273,7 +6266,7 @@ function requireIsPropertyDescriptor() {
|
|
|
6273
6266
|
if (hasRequiredIsPropertyDescriptor) return isPropertyDescriptor;
|
|
6274
6267
|
hasRequiredIsPropertyDescriptor = 1;
|
|
6275
6268
|
var GetIntrinsic = getIntrinsic;
|
|
6276
|
-
var hasOwn =
|
|
6269
|
+
var hasOwn = hasown;
|
|
6277
6270
|
var $TypeError = GetIntrinsic('%TypeError%');
|
|
6278
6271
|
isPropertyDescriptor = function IsPropertyDescriptor(ES, Desc) {
|
|
6279
6272
|
if (ES.Type(Desc) !== 'Object') {
|
|
@@ -6355,7 +6348,7 @@ var hasRequiredIsMatchRecord;
|
|
|
6355
6348
|
function requireIsMatchRecord() {
|
|
6356
6349
|
if (hasRequiredIsMatchRecord) return isMatchRecord;
|
|
6357
6350
|
hasRequiredIsMatchRecord = 1;
|
|
6358
|
-
var hasOwn =
|
|
6351
|
+
var hasOwn = hasown;
|
|
6359
6352
|
|
|
6360
6353
|
// https://262.ecma-international.org/13.0/#sec-match-records
|
|
6361
6354
|
|
|
@@ -6373,7 +6366,7 @@ function requireAssertRecord() {
|
|
|
6373
6366
|
var GetIntrinsic = getIntrinsic;
|
|
6374
6367
|
var $TypeError = GetIntrinsic('%TypeError%');
|
|
6375
6368
|
var $SyntaxError = GetIntrinsic('%SyntaxError%');
|
|
6376
|
-
var hasOwn =
|
|
6369
|
+
var hasOwn = hasown;
|
|
6377
6370
|
var isInteger = requireIsInteger();
|
|
6378
6371
|
var isMatchRecord = requireIsMatchRecord();
|
|
6379
6372
|
var predicates = {
|
|
@@ -6489,7 +6482,7 @@ var hasRequiredIsAccessorDescriptor;
|
|
|
6489
6482
|
function requireIsAccessorDescriptor() {
|
|
6490
6483
|
if (hasRequiredIsAccessorDescriptor) return IsAccessorDescriptor;
|
|
6491
6484
|
hasRequiredIsAccessorDescriptor = 1;
|
|
6492
|
-
var hasOwn =
|
|
6485
|
+
var hasOwn = hasown;
|
|
6493
6486
|
var Type = requireType();
|
|
6494
6487
|
var assertRecord = requireAssertRecord();
|
|
6495
6488
|
|
|
@@ -6513,7 +6506,7 @@ var hasRequiredIsDataDescriptor;
|
|
|
6513
6506
|
function requireIsDataDescriptor() {
|
|
6514
6507
|
if (hasRequiredIsDataDescriptor) return IsDataDescriptor;
|
|
6515
6508
|
hasRequiredIsDataDescriptor = 1;
|
|
6516
|
-
var hasOwn =
|
|
6509
|
+
var hasOwn = hasown;
|
|
6517
6510
|
var Type = requireType();
|
|
6518
6511
|
var assertRecord = requireAssertRecord();
|
|
6519
6512
|
|
|
@@ -6712,7 +6705,7 @@ var hasRequiredToPropertyDescriptor;
|
|
|
6712
6705
|
function requireToPropertyDescriptor() {
|
|
6713
6706
|
if (hasRequiredToPropertyDescriptor) return ToPropertyDescriptor;
|
|
6714
6707
|
hasRequiredToPropertyDescriptor = 1;
|
|
6715
|
-
var hasOwn =
|
|
6708
|
+
var hasOwn = hasown;
|
|
6716
6709
|
var GetIntrinsic = getIntrinsic;
|
|
6717
6710
|
var $TypeError = GetIntrinsic('%TypeError%');
|
|
6718
6711
|
var Type = requireType();
|
|
@@ -7906,7 +7899,7 @@ var hasRequiredEsShimUnscopables;
|
|
|
7906
7899
|
function requireEsShimUnscopables() {
|
|
7907
7900
|
if (hasRequiredEsShimUnscopables) return esShimUnscopables;
|
|
7908
7901
|
hasRequiredEsShimUnscopables = 1;
|
|
7909
|
-
var hasOwn =
|
|
7902
|
+
var hasOwn = hasown;
|
|
7910
7903
|
var hasUnscopables = typeof Symbol === 'function' && typeof Symbol.unscopables === 'symbol';
|
|
7911
7904
|
var map = hasUnscopables && Array.prototype[Symbol.unscopables];
|
|
7912
7905
|
var $TypeError = TypeError;
|
|
@@ -29515,27 +29508,49 @@ function useRender$2({
|
|
|
29515
29508
|
value = arr.map(v => {
|
|
29516
29509
|
const d = list.find(d => d.value == v);
|
|
29517
29510
|
if (d && d.type) {
|
|
29518
|
-
const ElTag = createVNode(resolveComponent("el-
|
|
29519
|
-
"
|
|
29511
|
+
const ElTag = createVNode(resolveComponent("el-tooltip"), {
|
|
29512
|
+
"class": "box-item",
|
|
29520
29513
|
"effect": "dark",
|
|
29521
|
-
"
|
|
29522
|
-
|
|
29523
|
-
|
|
29524
|
-
default: () =>
|
|
29514
|
+
"content": d.label,
|
|
29515
|
+
"placement": "top"
|
|
29516
|
+
}, {
|
|
29517
|
+
default: () => [createVNode(resolveComponent("el-tag"), {
|
|
29518
|
+
"disable-transitions": true,
|
|
29519
|
+
"effect": "dark",
|
|
29520
|
+
"style": "margin: 0 2px",
|
|
29521
|
+
"type": d.type
|
|
29522
|
+
}, {
|
|
29523
|
+
default: () => [d.label]
|
|
29524
|
+
})]
|
|
29525
29525
|
});
|
|
29526
|
+
return ElTag; //return h(ElTag, d as any, { });
|
|
29526
29527
|
} else if (isVNode(d?.label)) {
|
|
29527
29528
|
return h(d?.label);
|
|
29528
29529
|
} else if (d) {
|
|
29529
|
-
return createVNode(resolveComponent("el-
|
|
29530
|
-
"
|
|
29530
|
+
return createVNode(resolveComponent("el-tooltip"), {
|
|
29531
|
+
"class": "box-item",
|
|
29532
|
+
"effect": "dark",
|
|
29533
|
+
"content": d.label,
|
|
29534
|
+
"placement": "top"
|
|
29531
29535
|
}, {
|
|
29532
|
-
default: () => [
|
|
29536
|
+
default: () => [createVNode(resolveComponent("el-tag"), {
|
|
29537
|
+
"style": "margin: 0 2px"
|
|
29538
|
+
}, {
|
|
29539
|
+
default: () => [d.label]
|
|
29540
|
+
})]
|
|
29533
29541
|
});
|
|
29534
29542
|
} else if (!!v) {
|
|
29535
|
-
return createVNode(resolveComponent("el-
|
|
29536
|
-
"
|
|
29537
|
-
|
|
29538
|
-
|
|
29543
|
+
return createVNode(resolveComponent("el-tooltip"), {
|
|
29544
|
+
"class": "box-item",
|
|
29545
|
+
"effect": "dark",
|
|
29546
|
+
"content": v,
|
|
29547
|
+
"placement": "top"
|
|
29548
|
+
}, {
|
|
29549
|
+
default: () => [createVNode(resolveComponent("el-tag"), {
|
|
29550
|
+
"style": "margin: 0 2px"
|
|
29551
|
+
}, _isSlot$4(v) ? v : {
|
|
29552
|
+
default: () => [v]
|
|
29553
|
+
})]
|
|
29539
29554
|
});
|
|
29540
29555
|
} else {
|
|
29541
29556
|
return v;
|
package/lib/bi-crud.umd.js
CHANGED
|
@@ -77,9 +77,9 @@
|
|
|
77
77
|
});
|
|
78
78
|
|
|
79
79
|
var NATIVE_BIND$1 = functionBindNative;
|
|
80
|
-
var call$
|
|
81
|
-
var functionCall = NATIVE_BIND$1 ? call$
|
|
82
|
-
return call$
|
|
80
|
+
var call$5 = Function.prototype.call;
|
|
81
|
+
var functionCall = NATIVE_BIND$1 ? call$5.bind(call$5) : function () {
|
|
82
|
+
return call$5.apply(call$5, arguments);
|
|
83
83
|
};
|
|
84
84
|
|
|
85
85
|
var objectPropertyIsEnumerable = {};
|
|
@@ -111,11 +111,11 @@
|
|
|
111
111
|
|
|
112
112
|
var NATIVE_BIND = functionBindNative;
|
|
113
113
|
var FunctionPrototype$1 = Function.prototype;
|
|
114
|
-
var call$
|
|
115
|
-
var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype$1.bind.bind(call$
|
|
114
|
+
var call$4 = FunctionPrototype$1.call;
|
|
115
|
+
var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype$1.bind.bind(call$4, call$4);
|
|
116
116
|
var functionUncurryThis = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
|
|
117
117
|
return function () {
|
|
118
|
-
return call$
|
|
118
|
+
return call$4.apply(fn, arguments);
|
|
119
119
|
};
|
|
120
120
|
};
|
|
121
121
|
|
|
@@ -296,7 +296,7 @@
|
|
|
296
296
|
return isNullOrUndefined$1(func) ? undefined : aCallable$2(func);
|
|
297
297
|
};
|
|
298
298
|
|
|
299
|
-
var call$
|
|
299
|
+
var call$3 = functionCall;
|
|
300
300
|
var isCallable$a = isCallable$f;
|
|
301
301
|
var isObject$9 = isObject$a;
|
|
302
302
|
var $TypeError$f = TypeError;
|
|
@@ -305,9 +305,9 @@
|
|
|
305
305
|
// https://tc39.es/ecma262/#sec-ordinarytoprimitive
|
|
306
306
|
var ordinaryToPrimitive$1 = function (input, pref) {
|
|
307
307
|
var fn, val;
|
|
308
|
-
if (pref === 'string' && isCallable$a(fn = input.toString) && !isObject$9(val = call$
|
|
309
|
-
if (isCallable$a(fn = input.valueOf) && !isObject$9(val = call$
|
|
310
|
-
if (pref !== 'string' && isCallable$a(fn = input.toString) && !isObject$9(val = call$
|
|
308
|
+
if (pref === 'string' && isCallable$a(fn = input.toString) && !isObject$9(val = call$3(fn, input))) return val;
|
|
309
|
+
if (isCallable$a(fn = input.valueOf) && !isObject$9(val = call$3(fn, input))) return val;
|
|
310
|
+
if (pref !== 'string' && isCallable$a(fn = input.toString) && !isObject$9(val = call$3(fn, input))) return val;
|
|
311
311
|
throw new $TypeError$f("Can't convert object to primitive value");
|
|
312
312
|
};
|
|
313
313
|
|
|
@@ -391,7 +391,7 @@
|
|
|
391
391
|
return WellKnownSymbolsStore[name];
|
|
392
392
|
};
|
|
393
393
|
|
|
394
|
-
var call$
|
|
394
|
+
var call$2 = functionCall;
|
|
395
395
|
var isObject$8 = isObject$a;
|
|
396
396
|
var isSymbol$4 = isSymbol$5;
|
|
397
397
|
var getMethod = getMethod$1;
|
|
@@ -408,7 +408,7 @@
|
|
|
408
408
|
var result;
|
|
409
409
|
if (exoticToPrim) {
|
|
410
410
|
if (pref === undefined) pref = 'default';
|
|
411
|
-
result = call$
|
|
411
|
+
result = call$2(exoticToPrim, input, pref);
|
|
412
412
|
if (!isObject$8(result) || isSymbol$4(result)) return result;
|
|
413
413
|
throw new $TypeError$e("Can't convert object to primitive value");
|
|
414
414
|
}
|
|
@@ -450,7 +450,7 @@
|
|
|
450
450
|
});
|
|
451
451
|
|
|
452
452
|
var DESCRIPTORS$8 = descriptors;
|
|
453
|
-
var call = functionCall;
|
|
453
|
+
var call$1 = functionCall;
|
|
454
454
|
var propertyIsEnumerableModule = objectPropertyIsEnumerable;
|
|
455
455
|
var createPropertyDescriptor$1 = createPropertyDescriptor$2;
|
|
456
456
|
var toIndexedObject$2 = toIndexedObject$3;
|
|
@@ -469,7 +469,7 @@
|
|
|
469
469
|
if (IE8_DOM_DEFINE$1) try {
|
|
470
470
|
return $getOwnPropertyDescriptor$1(O, P);
|
|
471
471
|
} catch (error) {/* empty */}
|
|
472
|
-
if (hasOwn$8(O, P)) return createPropertyDescriptor$1(!call(propertyIsEnumerableModule.f, O, P), O[P]);
|
|
472
|
+
if (hasOwn$8(O, P)) return createPropertyDescriptor$1(!call$1(propertyIsEnumerableModule.f, O, P), O[P]);
|
|
473
473
|
};
|
|
474
474
|
|
|
475
475
|
var objectDefineProperty = {};
|
|
@@ -4126,19 +4126,12 @@
|
|
|
4126
4126
|
var implementation$4 = implementation$5;
|
|
4127
4127
|
var functionBind = Function.prototype.bind || implementation$4;
|
|
4128
4128
|
|
|
4129
|
-
var
|
|
4130
|
-
var
|
|
4131
|
-
|
|
4132
|
-
if (hasRequiredHasown) return hasown;
|
|
4133
|
-
hasRequiredHasown = 1;
|
|
4134
|
-
var call = Function.prototype.call;
|
|
4135
|
-
var $hasOwn = Object.prototype.hasOwnProperty;
|
|
4136
|
-
var bind = functionBind;
|
|
4129
|
+
var call = Function.prototype.call;
|
|
4130
|
+
var $hasOwn = Object.prototype.hasOwnProperty;
|
|
4131
|
+
var bind$2 = functionBind;
|
|
4137
4132
|
|
|
4138
|
-
|
|
4139
|
-
|
|
4140
|
-
return hasown;
|
|
4141
|
-
}
|
|
4133
|
+
/** @type {(o: {}, p: PropertyKey) => p is keyof o} */
|
|
4134
|
+
var hasown = bind$2.call(call, $hasOwn);
|
|
4142
4135
|
|
|
4143
4136
|
var undefined$1;
|
|
4144
4137
|
var $SyntaxError$1 = SyntaxError;
|
|
@@ -4338,7 +4331,7 @@
|
|
|
4338
4331
|
'%WeakSetPrototype%': ['WeakSet', 'prototype']
|
|
4339
4332
|
};
|
|
4340
4333
|
var bind$1 = functionBind;
|
|
4341
|
-
var hasOwn =
|
|
4334
|
+
var hasOwn = hasown;
|
|
4342
4335
|
var $concat = bind$1.call(Function.call, Array.prototype.concat);
|
|
4343
4336
|
var $spliceApply = bind$1.call(Function.apply, Array.prototype.splice);
|
|
4344
4337
|
var $replace = bind$1.call(Function.call, String.prototype.replace);
|
|
@@ -6276,7 +6269,7 @@
|
|
|
6276
6269
|
if (hasRequiredIsPropertyDescriptor) return isPropertyDescriptor;
|
|
6277
6270
|
hasRequiredIsPropertyDescriptor = 1;
|
|
6278
6271
|
var GetIntrinsic = getIntrinsic;
|
|
6279
|
-
var hasOwn =
|
|
6272
|
+
var hasOwn = hasown;
|
|
6280
6273
|
var $TypeError = GetIntrinsic('%TypeError%');
|
|
6281
6274
|
isPropertyDescriptor = function IsPropertyDescriptor(ES, Desc) {
|
|
6282
6275
|
if (ES.Type(Desc) !== 'Object') {
|
|
@@ -6358,7 +6351,7 @@
|
|
|
6358
6351
|
function requireIsMatchRecord() {
|
|
6359
6352
|
if (hasRequiredIsMatchRecord) return isMatchRecord;
|
|
6360
6353
|
hasRequiredIsMatchRecord = 1;
|
|
6361
|
-
var hasOwn =
|
|
6354
|
+
var hasOwn = hasown;
|
|
6362
6355
|
|
|
6363
6356
|
// https://262.ecma-international.org/13.0/#sec-match-records
|
|
6364
6357
|
|
|
@@ -6376,7 +6369,7 @@
|
|
|
6376
6369
|
var GetIntrinsic = getIntrinsic;
|
|
6377
6370
|
var $TypeError = GetIntrinsic('%TypeError%');
|
|
6378
6371
|
var $SyntaxError = GetIntrinsic('%SyntaxError%');
|
|
6379
|
-
var hasOwn =
|
|
6372
|
+
var hasOwn = hasown;
|
|
6380
6373
|
var isInteger = requireIsInteger();
|
|
6381
6374
|
var isMatchRecord = requireIsMatchRecord();
|
|
6382
6375
|
var predicates = {
|
|
@@ -6492,7 +6485,7 @@
|
|
|
6492
6485
|
function requireIsAccessorDescriptor() {
|
|
6493
6486
|
if (hasRequiredIsAccessorDescriptor) return IsAccessorDescriptor;
|
|
6494
6487
|
hasRequiredIsAccessorDescriptor = 1;
|
|
6495
|
-
var hasOwn =
|
|
6488
|
+
var hasOwn = hasown;
|
|
6496
6489
|
var Type = requireType();
|
|
6497
6490
|
var assertRecord = requireAssertRecord();
|
|
6498
6491
|
|
|
@@ -6516,7 +6509,7 @@
|
|
|
6516
6509
|
function requireIsDataDescriptor() {
|
|
6517
6510
|
if (hasRequiredIsDataDescriptor) return IsDataDescriptor;
|
|
6518
6511
|
hasRequiredIsDataDescriptor = 1;
|
|
6519
|
-
var hasOwn =
|
|
6512
|
+
var hasOwn = hasown;
|
|
6520
6513
|
var Type = requireType();
|
|
6521
6514
|
var assertRecord = requireAssertRecord();
|
|
6522
6515
|
|
|
@@ -6715,7 +6708,7 @@
|
|
|
6715
6708
|
function requireToPropertyDescriptor() {
|
|
6716
6709
|
if (hasRequiredToPropertyDescriptor) return ToPropertyDescriptor;
|
|
6717
6710
|
hasRequiredToPropertyDescriptor = 1;
|
|
6718
|
-
var hasOwn =
|
|
6711
|
+
var hasOwn = hasown;
|
|
6719
6712
|
var GetIntrinsic = getIntrinsic;
|
|
6720
6713
|
var $TypeError = GetIntrinsic('%TypeError%');
|
|
6721
6714
|
var Type = requireType();
|
|
@@ -7909,7 +7902,7 @@
|
|
|
7909
7902
|
function requireEsShimUnscopables() {
|
|
7910
7903
|
if (hasRequiredEsShimUnscopables) return esShimUnscopables;
|
|
7911
7904
|
hasRequiredEsShimUnscopables = 1;
|
|
7912
|
-
var hasOwn =
|
|
7905
|
+
var hasOwn = hasown;
|
|
7913
7906
|
var hasUnscopables = typeof Symbol === 'function' && typeof Symbol.unscopables === 'symbol';
|
|
7914
7907
|
var map = hasUnscopables && Array.prototype[Symbol.unscopables];
|
|
7915
7908
|
var $TypeError = TypeError;
|
|
@@ -29518,27 +29511,49 @@
|
|
|
29518
29511
|
value = arr.map(v => {
|
|
29519
29512
|
const d = list.find(d => d.value == v);
|
|
29520
29513
|
if (d && d.type) {
|
|
29521
|
-
const ElTag = vue.createVNode(vue.resolveComponent("el-
|
|
29522
|
-
"
|
|
29514
|
+
const ElTag = vue.createVNode(vue.resolveComponent("el-tooltip"), {
|
|
29515
|
+
"class": "box-item",
|
|
29523
29516
|
"effect": "dark",
|
|
29524
|
-
"
|
|
29525
|
-
|
|
29526
|
-
|
|
29527
|
-
default: () =>
|
|
29517
|
+
"content": d.label,
|
|
29518
|
+
"placement": "top"
|
|
29519
|
+
}, {
|
|
29520
|
+
default: () => [vue.createVNode(vue.resolveComponent("el-tag"), {
|
|
29521
|
+
"disable-transitions": true,
|
|
29522
|
+
"effect": "dark",
|
|
29523
|
+
"style": "margin: 0 2px",
|
|
29524
|
+
"type": d.type
|
|
29525
|
+
}, {
|
|
29526
|
+
default: () => [d.label]
|
|
29527
|
+
})]
|
|
29528
29528
|
});
|
|
29529
|
+
return ElTag; //return h(ElTag, d as any, { });
|
|
29529
29530
|
} else if (vue.isVNode(d?.label)) {
|
|
29530
29531
|
return vue.h(d?.label);
|
|
29531
29532
|
} else if (d) {
|
|
29532
|
-
return vue.createVNode(vue.resolveComponent("el-
|
|
29533
|
-
"
|
|
29533
|
+
return vue.createVNode(vue.resolveComponent("el-tooltip"), {
|
|
29534
|
+
"class": "box-item",
|
|
29535
|
+
"effect": "dark",
|
|
29536
|
+
"content": d.label,
|
|
29537
|
+
"placement": "top"
|
|
29534
29538
|
}, {
|
|
29535
|
-
default: () => [
|
|
29539
|
+
default: () => [vue.createVNode(vue.resolveComponent("el-tag"), {
|
|
29540
|
+
"style": "margin: 0 2px"
|
|
29541
|
+
}, {
|
|
29542
|
+
default: () => [d.label]
|
|
29543
|
+
})]
|
|
29536
29544
|
});
|
|
29537
29545
|
} else if (!!v) {
|
|
29538
|
-
return vue.createVNode(vue.resolveComponent("el-
|
|
29539
|
-
"
|
|
29540
|
-
|
|
29541
|
-
|
|
29546
|
+
return vue.createVNode(vue.resolveComponent("el-tooltip"), {
|
|
29547
|
+
"class": "box-item",
|
|
29548
|
+
"effect": "dark",
|
|
29549
|
+
"content": v,
|
|
29550
|
+
"placement": "top"
|
|
29551
|
+
}, {
|
|
29552
|
+
default: () => [vue.createVNode(vue.resolveComponent("el-tag"), {
|
|
29553
|
+
"style": "margin: 0 2px"
|
|
29554
|
+
}, _isSlot$4(v) ? v : {
|
|
29555
|
+
default: () => [v]
|
|
29556
|
+
})]
|
|
29542
29557
|
});
|
|
29543
29558
|
} else {
|
|
29544
29559
|
return v;
|
package/lib/css/bi-crud.min.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.epie-crud{display:flex;flex-direction:column;height:100%;position:relative;box-sizing:border-box;background-color:#fff;overflow:hidden}.epie-crud.is-border{border:1px solid #eee}.epie-crud .el-input-number__decrease,.epie-crud .el-input-number__increase{border:0;background-color:transparent}.epie-crud>.el-row{overflow-x:auto;overflow-y:hidden;flex-wrap:nowrap;padding-bottom:5px;margin-bottom:0}.epie-crud>.el-row.epie-no-scroll{overflow-x:hidden;overflow-y:hidden}.epie-crud>.el-row::-webkit-scrollbar{height:4px}.epie-crud>.el-row::-webkit-scrollbar-thumb{background-color:rgba(144,147,153,0.3);border-radius:5px}.epie-crud>.el-row::-webkit-scrollbar-track{background:transparent}.epie-crud>.el-row+.el-row{margin-top:5px}.epie-flex1{flex:1;font-size:12px}.epie-search-key{display:flex;margin-left:10px}.epie-search-key__select{margin-right:10px}.epie-search-key__select .el-input__inner{width:120px}.epie-search-key__input .el-input__inner{width:250px}.epie-search-key__button.el-button{margin-left:10px}.epie-table{width:100%}.epie-table .el-table.el-loading-parent--relative{box-sizing:border-box}.epie-table .el-table__header .el-table__cell{background-color:#ebeef5 !important}.epie-table .el-table__header .el-table__cell{color:#333}.epie-table .el-loading-mask .el-loading-spinner .el-icon-loading{font-size:25px;color:#000}.epie-table .el-loading-mask .el-loading-spinner .el-loading-text{color:#666;margin-top:5px}.epie-crud__op-dropdown-menu .el-dropdown-menu__item{height:30px;line-height:30px;padding:0}.epie-crud__op-dropdown-menu .el-button{height:30px;width:100%;padding:0 20px;text-align:left;box-sizing:border-box}.epie-query{display:inline-flex;margin:0 10px;border-radius:3px}.epie-query button{border:0;background-color:#fff;font-size:12px;outline:none;cursor:pointer;color:#666;white-space:nowrap}.epie-query button:hover{color:#6fa8ff}.epie-query button.is-active{color:#409eff}.epie-query button span{display:inline-block;padding:0 15px;border-right:1px solid #ddd}.epie-query button:last-child span{border:0}.epie-filter{display:flex;align-items:center;margin:0 10px}.epie-filter__label{font-size:12px;margin-right:10px;white-space:nowrap}.epie-filter .el-select{min-width:120px}.epie-filter-group{display:inline-flex;white-space:nowrap;margin:0 10px}.epie-filter-group__items{display:inline-flex}.epie-filter-group .el-form--inline .el-form-item{margin-right:10px;margin-bottom:0}.epie-filter-group .el-form--inline .el-form-item .el-date-editor{box-sizing:border-box}.epie-filter-group .el-form--inline .el-form-item .el-date-editor .el-range-input:nth-child(2){margin-left:5px}.epie-adv-search.el-drawer{background-color:#fff}.epie-adv-search .el-drawer__body{padding:0}.epie-adv-search__header{display:flex;align-items:center;justify-content:space-between;height:50px;padding:0 15px 0 20px;-webkit-user-select:none;-moz-user-select:none;user-select:none}.epie-adv-search__header .text{font-size:16px}.epie-adv-search__header .el-icon{cursor:pointer}.epie-adv-search__header .el-icon:hover{color:red}.epie-adv-search__container{height:calc(100% - 100px);overflow-y:auto;padding:10px 20px;box-sizing:border-box}.epie-adv-search__container::-webkit-scrollbar{width:6px}.epie-adv-search__container::-webkit-scrollbar-thumb{border-radius:6px;background-color:rgba(144,147,153,0.3)}.epie-adv-search__container .el-form-item__content>div{width:100%}.epie-adv-search__footer{display:flex;align-items:center;justify-content:flex-end;height:50px;border-top:1px solid #ebeef5;padding:0 10px;box-sizing:border-box}.epie-inline-search .el-drawer__header{margin-bottom:20px}.epie-inline-search .el-drawer__body{height:calc(100% - 63px);padding:0 5px}.epie-inline-search__container{height:calc(100% - 55px);overflow-y:auto;padding:10px 20px;margin-bottom:5px;box-sizing:border-box}.epie-inline-search__container::-webkit-scrollbar{width:6px}.epie-inline-search__container::-webkit-scrollbar-thumb{border-radius:6px;background-color:rgba(144,147,153,0.3)}.epie-inline-search__container .el-form-item__content>div{width:100%}.epie-inline-search__footer{display:flex;align-items:center;justify-content:flex-end;height:50px;border-top:1px solid #ebeef5}.epie-inline-search .el-drawer{outline:none}.epie-inline-search .el-drawer__header span{outline:none;font-size:15px}.epie-inline-search .el-drawer__close-btn{outline:none}.epie-form .el-form-item .el-input-number__decrease,.epie-form .el-form-item .el-input-number__increase{border:0;background-color:transparent}.epie-form .el-form-item__label .el-tooltip i{margin-left:5px}.epie-form .el-form-item__content{min-width:0px}.epie-form .el-form-item__content>div{width:100%}.epie-form-item{display:flex}.epie-form-item__prepend{margin-right:10px}.epie-form-item__component.is-flex{flex:1;width:100%}.epie-form-item__component.is-flex>div{width:100%}.epie-form-item__append{margin-left:10px}.epie-form-item__collapse{width:100%;font-size:12px;cursor:pointer}.epie-form-item__collapse .el-divider{margin:16px 0}.epie-form-item__collapse .el-divider__text{font-size:12px}.epie-form-item__collapse i{margin-left:6px}.epie-form-item .el-table__header tr{line-height:normal}.epie-form__footer{display:flex;justify-content:flex-end}.epie-form-tabs{border-bottom:1px solid #ccc;overflow:hidden;width:calc(100% - 10px);margin:0 5px 20px 5px}.epie-form-tabs ul{height:35px;width:100%;overflow-x:auto;white-space:nowrap;position:relative;scrollbar-width:none;-ms-overflow-style:none}.epie-form-tabs ul::-webkit-scrollbar{display:none}.epie-form-tabs ul li{display:inline-block;list-style:none;padding:0 20px;height:35px;line-height:35px;cursor:pointer}.epie-form-tabs__line{height:2px;width:100%;position:absolute;bottom:-1px;left:0;transition:transform 0.3s ease-in-out,width 0.2s 0.1s cubic-bezier(0.645,0.045,0.355,1)}.epie-dialog .el-dialog__header{padding:0;text-align:center;border-bottom:1px solid #f7f7f7;margin-right:0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.epie-dialog .el-dialog__header-slot.is-drag{-moz-user-select:none;-webkit-user-select:none;user-select:none;cursor:move}.epie-dialog .el-dialog__body{padding:20px}.epie-dialog .el-dialog__footer{padding:0}.epie-dialog__header{position:relative;padding:10px}.epie-dialog__footer{padding:20px}.epie-dialog__title{display:block;font-size:15px;text-align:center;letter-spacing:0.5px}.epie-dialog__controls{display:flex;justify-content:flex-end;position:absolute;right:0;top:0;z-index:9;width:100%}.epie-dialog__controls-icon,.epie-dialog__controls .minimize,.epie-dialog__controls .maximize,.epie-dialog__controls .close{display:flex;align-items:center;justify-content:center;height:40px;width:40px;border:0;background-color:#fff;cursor:pointer;outline:none}.epie-dialog__controls-icon i,.epie-dialog__controls .minimize i,.epie-dialog__controls .maximize i,.epie-dialog__controls .close i{font-size:18px}.epie-dialog__controls-icon i:hover,.epie-dialog__controls .minimize i:hover,.epie-dialog__controls .maximize i:hover,.epie-dialog__controls .close i:hover{opacity:0.7}.epie-dialog.hidden-header .el-dialog__header{display:none}.epie-context-menu{position:absolute;z-index:9999}.epie-context-menu__box{box-shadow:0 2px 12px 0 rgba(0,0,0,0.1);width:160px;background-color:#fff;border-radius:3px;position:absolute;top:0}.epie-context-menu__box.is-append{right:calc(-100% - 5px);top:-5px}.epie-context-menu__box>div{display:flex;align-items:center;height:35px;font-size:13px;cursor:pointer;padding:0 15px;color:#666;position:relative}.epie-context-menu__box>div:first-child{margin-top:5px}.epie-context-menu__box>div:last-child{margin-bottom:5px}.epie-context-menu__box>div span{height:35px;line-height:35px;flex:1}.epie-context-menu__box>div:hover{background-color:#f7f7f7;color:#000}.epie-context-menu__box>div i:first-child{margin-right:5px}.epie-context-menu__box>div i:last-child{margin-left:5px}.epie-context-menu__box>div.is-active{background-color:#f7f7f7;color:#000}.epie-context-menu__box>div.is-ellipsis span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.epie-context-menu__box>div.is-disabled span{color:#ccc}.epie-context-menu__box>div.is-disabled span:hover{color:#ccc}.epie-context-menu__target{position:relative}.epie-context-menu__target::after{content:"";display:block;position:absolute;left:0;top:0;height:100%;width:100%;background-color:rgba(0,0,0,0.05)}.el-message,.el-overlay.is-message-box{z-index:10000 !important}.el-message.el-message--success,.el-message.el-message--error,.el-message.el-message--info,.el-message.el-message--warning{min-width:auto;background-color:#fff;box-shadow:0 4px 12px rgba(0,0,0,0.15);border:0;padding:12px 20px 12px 15px}.el-message.el-message--success .el-message__content,.el-message.el-message--error .el-message__content,.el-message.el-message--info .el-message__content,.el-message.el-message--warning .el-message__content{color:#999}.epie-descriptions.el-drawer{background-color:#fff}.epie-descriptions .el-drawer__body{padding:0}.epie-descriptions__header{display:flex;align-items:center;justify-content:space-between;height:50px;padding:0 15px 0 20px;-webkit-user-select:none;-moz-user-select:none;user-select:none}.epie-descriptions__header .text{font-size:16px}.epie-descriptions__header .el-icon{cursor:pointer}.epie-descriptions__header .el-icon:hover{color:red}.epie-descriptions__container{height:calc(100% - 100px);overflow-y:auto;padding:10px 20px;box-sizing:border-box}.epie-descriptions__container::-webkit-scrollbar{width:6px}.epie-descriptions__container::-webkit-scrollbar-thumb{border-radius:6px;background-color:rgba(144,147,153,0.3)}.epie-descriptions__container .el-form-item__content>div{width:100%}.epie-descriptions__footer{display:flex;align-items:center;justify-content:flex-end;height:50px;border-top:1px solid #ebeef5;padding:0 10px;box-sizing:border-box}@media only screen and (max-width:768px){.el-message-box{width:90% !important}.el-table__body-wrapper::-webkit-scrollbar{height:6px;width:6px}}
|
|
1
|
+
.epie-crud{display:flex;flex-direction:column;height:100%;position:relative;box-sizing:border-box;background-color:#fff;overflow:hidden}.epie-crud.is-border{border:1px solid #eee}.epie-crud .el-input-number__decrease,.epie-crud .el-input-number__increase{border:0;background-color:transparent}.epie-crud>.el-row{overflow-x:auto;overflow-y:hidden;flex-wrap:nowrap;padding-bottom:5px;margin-bottom:0}.epie-crud>.el-row.epie-no-scroll{overflow-x:hidden;overflow-y:hidden}.epie-crud>.el-row::-webkit-scrollbar{height:4px}.epie-crud>.el-row::-webkit-scrollbar-thumb{background-color:rgba(144,147,153,0.3);border-radius:5px}.epie-crud>.el-row::-webkit-scrollbar-track{background:transparent}.epie-crud>.el-row+.el-row{margin-top:5px}.epie-flex1{flex:1;font-size:12px}.epie-search-key{display:flex;margin-left:10px}.epie-search-key__select{margin-right:10px}.epie-search-key__select .el-input__inner{width:120px}.epie-search-key__input .el-input__inner{width:250px}.epie-search-key__button.el-button{margin-left:10px}.epie-table{width:100%}.epie-table .el-table.el-loading-parent--relative{box-sizing:border-box}.epie-table .el-table__header .el-table__cell{background-color:#ebeef5 !important}.epie-table .el-table__header .el-table__cell{color:#333}.epie-table .el-loading-mask .el-loading-spinner .el-icon-loading{font-size:25px;color:#000}.epie-table .el-loading-mask .el-loading-spinner .el-loading-text{color:#666;margin-top:5px}.epie-crud__op-dropdown-menu .el-dropdown-menu__item{height:30px;line-height:30px;padding:0}.epie-crud__op-dropdown-menu .el-button{height:30px;width:100%;padding:0 20px;text-align:left;box-sizing:border-box}.epie-query{display:inline-flex;margin:0 10px;border-radius:3px}.epie-query button{border:0;background-color:#fff;font-size:12px;outline:none;cursor:pointer;color:#666;white-space:nowrap}.epie-query button:hover{color:#6fa8ff}.epie-query button.is-active{color:#409eff}.epie-query button span{display:inline-block;padding:0 15px;border-right:1px solid #ddd}.epie-query button:last-child span{border:0}.epie-filter{display:flex;align-items:center;margin:0 10px}.epie-filter__label{font-size:12px;margin-right:10px;white-space:nowrap}.epie-filter .el-select{min-width:120px}.epie-filter-group{display:inline-flex;white-space:nowrap;margin:0 10px}.epie-filter-group__items{display:inline-flex}.epie-filter-group .el-form--inline .el-form-item{margin-right:10px;margin-bottom:0}.epie-filter-group .el-form--inline .el-form-item .el-date-editor{box-sizing:border-box}.epie-filter-group .el-form--inline .el-form-item .el-date-editor .el-range-input:nth-child(2){margin-left:5px}.epie-adv-search.el-drawer{background-color:#fff}.epie-adv-search .el-drawer__body{padding:0}.epie-adv-search__header{display:flex;align-items:center;justify-content:space-between;height:50px;padding:0 15px 0 20px;-webkit-user-select:none;-moz-user-select:none;user-select:none}.epie-adv-search__header .text{font-size:16px}.epie-adv-search__header .el-icon{cursor:pointer}.epie-adv-search__header .el-icon:hover{color:red}.epie-adv-search__container{height:calc(100% - 100px);overflow-y:auto;padding:10px 20px;box-sizing:border-box}.epie-adv-search__container::-webkit-scrollbar{width:6px}.epie-adv-search__container::-webkit-scrollbar-thumb{border-radius:6px;background-color:rgba(144,147,153,0.3)}.epie-adv-search__container .el-form-item__content>div{width:100%}.epie-adv-search__footer{display:flex;align-items:center;justify-content:flex-end;height:50px;border-top:1px solid #ebeef5;padding:0 10px;box-sizing:border-box}.epie-inline-search .el-drawer__header{margin-bottom:20px}.epie-inline-search .el-drawer__body{height:calc(100% - 63px);padding:0 5px}.epie-inline-search__container{height:calc(100% - 55px);overflow-y:auto;padding:10px 20px;margin-bottom:5px;box-sizing:border-box}.epie-inline-search__container::-webkit-scrollbar{width:6px}.epie-inline-search__container::-webkit-scrollbar-thumb{border-radius:6px;background-color:rgba(144,147,153,0.3)}.epie-inline-search__container .el-form-item__content>div{width:100%}.epie-inline-search__footer{display:flex;align-items:center;justify-content:flex-end;height:50px;border-top:1px solid #ebeef5}.epie-inline-search .el-drawer{outline:none}.epie-inline-search .el-drawer__header span{outline:none;font-size:15px}.epie-inline-search .el-drawer__close-btn{outline:none}.epie-form .el-form-item .el-input-number__decrease,.epie-form .el-form-item .el-input-number__increase{border:0;background-color:transparent}.epie-form .el-form-item__label .el-tooltip i{margin-left:5px}.epie-form .el-form-item__content{min-width:0px}.epie-form .el-form-item__content>div{width:100%}.epie-form-item{display:flex}.epie-form-item__prepend{margin-right:10px}.epie-form-item__component.is-flex{flex:1;width:100%}.epie-form-item__component.is-flex>div{width:100%}.epie-form-item__append{margin-left:10px}.epie-form-item__collapse{width:100%;font-size:12px;cursor:pointer}.epie-form-item__collapse .el-divider{margin:16px 0}.epie-form-item__collapse .el-divider__text{font-size:12px}.epie-form-item__collapse i{margin-left:6px}.epie-form-item .el-table__header tr{line-height:normal}.epie-form__footer{display:flex;justify-content:flex-end}.epie-form-tabs{border-bottom:1px solid #ccc;overflow:hidden;width:calc(100% - 10px);margin:0 5px 20px 5px}.epie-form-tabs ul{height:35px;width:100%;overflow-x:auto;white-space:nowrap;position:relative;scrollbar-width:none;-ms-overflow-style:none}.epie-form-tabs ul::-webkit-scrollbar{display:none}.epie-form-tabs ul li{display:inline-block;list-style:none;padding:0 20px;height:35px;line-height:35px;cursor:pointer}.epie-form-tabs__line{height:2px;width:100%;position:absolute;bottom:-1px;left:0;transition:transform 0.3s ease-in-out,width 0.2s 0.1s cubic-bezier(0.645,0.045,0.355,1)}.epie-dialog .el-dialog__header{padding:0;text-align:center;border-bottom:1px solid #f7f7f7;margin-right:0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.epie-dialog .el-dialog__header-slot.is-drag{-moz-user-select:none;-webkit-user-select:none;user-select:none;cursor:move}.epie-dialog .el-dialog__body{padding:20px}.epie-dialog .el-dialog__footer{padding:0}.epie-dialog__header{position:relative;padding:10px}.epie-dialog__footer{padding:20px}.epie-dialog__title{display:block;font-size:15px;text-align:center;letter-spacing:0.5px}.epie-dialog__controls{display:flex;justify-content:flex-end;position:absolute;right:0;top:0;z-index:9;width:100%}.epie-dialog__controls-icon,.epie-dialog__controls .minimize,.epie-dialog__controls .maximize,.epie-dialog__controls .close{display:flex;align-items:center;justify-content:center;height:40px;width:40px;border:0;background-color:#fff;cursor:pointer;outline:none}.epie-dialog__controls-icon i,.epie-dialog__controls .minimize i,.epie-dialog__controls .maximize i,.epie-dialog__controls .close i{font-size:18px}.epie-dialog__controls-icon i:hover,.epie-dialog__controls .minimize i:hover,.epie-dialog__controls .maximize i:hover,.epie-dialog__controls .close i:hover{opacity:0.7}.epie-dialog.hidden-header .el-dialog__header{display:none}.epie-context-menu{position:absolute;z-index:9999}.epie-context-menu__box{box-shadow:0 2px 12px 0 rgba(0,0,0,0.1);width:160px;background-color:#fff;border-radius:3px;position:absolute;top:0}.epie-context-menu__box.is-append{right:calc(-100% - 5px);top:-5px}.epie-context-menu__box>div{display:flex;align-items:center;height:35px;font-size:13px;cursor:pointer;padding:0 15px;color:#666;position:relative}.epie-context-menu__box>div:first-child{margin-top:5px}.epie-context-menu__box>div:last-child{margin-bottom:5px}.epie-context-menu__box>div span{height:35px;line-height:35px;flex:1}.epie-context-menu__box>div:hover{background-color:#f7f7f7;color:#000}.epie-context-menu__box>div i:first-child{margin-right:5px}.epie-context-menu__box>div i:last-child{margin-left:5px}.epie-context-menu__box>div.is-active{background-color:#f7f7f7;color:#000}.epie-context-menu__box>div.is-ellipsis span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.epie-context-menu__box>div.is-disabled span{color:#ccc}.epie-context-menu__box>div.is-disabled span:hover{color:#ccc}.epie-context-menu__target{position:relative}.epie-context-menu__target::after{content:"";display:block;position:absolute;left:0;top:0;height:100%;width:100%;background-color:rgba(0,0,0,0.05)}.el-message,.el-overlay.is-message-box{z-index:10000 !important}.el-message.el-message--success,.el-message.el-message--error,.el-message.el-message--info,.el-message.el-message--warning{min-width:auto;background-color:#fff;box-shadow:0 4px 12px rgba(0,0,0,0.15);border:0;padding:12px 20px 12px 15px}.el-message.el-message--success .el-message__content,.el-message.el-message--error .el-message__content,.el-message.el-message--info .el-message__content,.el-message.el-message--warning .el-message__content{color:#999}.epie-descriptions.el-drawer{background-color:#fff}.epie-descriptions .el-drawer__body{padding:0}.epie-descriptions__header{display:flex;align-items:center;justify-content:space-between;height:50px;padding:0 15px 0 20px;-webkit-user-select:none;-moz-user-select:none;user-select:none}.epie-descriptions__header .text{font-size:16px}.epie-descriptions__header .el-icon{cursor:pointer}.epie-descriptions__header .el-icon:hover{color:red}.epie-descriptions__container{height:calc(100% - 100px);overflow-y:auto;padding:10px 20px;box-sizing:border-box}.epie-descriptions__container::-webkit-scrollbar{width:6px}.epie-descriptions__container::-webkit-scrollbar-thumb{border-radius:6px;background-color:rgba(144,147,153,0.3)}.epie-descriptions__container .el-form-item__content>div{width:100%}.epie-descriptions__footer{display:flex;align-items:center;justify-content:flex-end;height:50px;border-top:1px solid #ebeef5;padding:0 10px;box-sizing:border-box}@media only screen and (max-width:768px){.el-message-box{width:90% !important}.el-table__body-wrapper::-webkit-scrollbar{height:6px;width:6px}}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epie/bi-crud",
|
|
3
3
|
"simpleName": "bi-crud",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.38",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "lib/bi-crud.umd.js",
|
|
7
7
|
"module": "lib/bi-crud.esm.js",
|
|
@@ -52,7 +52,6 @@
|
|
|
52
52
|
"@vue/compiler-sfc": "^3.3.13",
|
|
53
53
|
"esbuild": "^0.14.54",
|
|
54
54
|
"lint": "^0.7.0",
|
|
55
|
-
"node-sass": "^7.0.3",
|
|
56
55
|
"nodemon": "^2.0.22",
|
|
57
56
|
"postcss": "^8.4.32",
|
|
58
57
|
"postcss-import": "^14.1.0",
|
|
@@ -73,6 +72,7 @@
|
|
|
73
72
|
"rollup-plugin-typescript2": "^0.32.1",
|
|
74
73
|
"rollup-plugin-vue": "^6.0.0",
|
|
75
74
|
"rollup-plugin-vue-jsx-compat": "^0.0.6",
|
|
75
|
+
"sass": "^1.77.5",
|
|
76
76
|
"sass-loader": "^12.6.0",
|
|
77
77
|
"typescript": "^4.9.5"
|
|
78
78
|
},
|