fast-element-plus 1.0.2 → 1.0.3
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/index.full.js +119 -94
- package/dist/index.full.js.map +1 -1
- package/dist/index.full.min.js +1 -1
- package/dist/index.full.min.js.map +1 -1
- package/dist/index.full.min.mjs +1 -1
- package/dist/index.full.min.mjs.map +1 -1
- package/dist/index.full.mjs +119 -94
- package/dist/index.full.mjs.map +1 -1
- package/dist/styles/index.css +1 -1
- package/es/components/avatar/src/avatar.d.ts +10 -9
- package/es/components/avatar/src/avatar.mjs +1 -1
- package/es/components/avatar/src/avatar.mjs.map +1 -1
- package/es/components/button/src/button.d.ts +4 -4
- package/es/components/carNumber/src/carNumber.d.ts +3 -3
- package/es/components/form/src/formItem.d.ts +18 -4
- package/es/components/image/src/image.d.ts +7 -0
- package/es/components/image/src/image.mjs +1 -1
- package/es/components/image/src/image.mjs.map +1 -1
- package/es/components/table/index.d.ts +2 -2
- package/es/components/table/index.mjs.map +1 -1
- package/es/components/table/src/table.d.ts +38 -4
- package/es/components/table/src/table.mjs +1 -1
- package/es/components/table/src/table.mjs.map +1 -1
- package/es/components/table/src/table.state.d.ts +0 -4
- package/es/components/table/src/table.type.d.ts +3 -62
- package/es/components/table/src/table.type.mjs.map +1 -1
- package/es/components/table/src/tableColumn.d.ts +5 -0
- package/es/components/table/src/tableColumn.mjs +1 -1
- package/es/components/table/src/tableColumn.mjs.map +1 -1
- package/es/components/table/src/tableColumnSettingDialog.d.ts +3 -3
- package/es/components/table/src/tableColumnSettingDialog.mjs +1 -1
- package/es/components/table/src/tableColumnSettingDialog.mjs.map +1 -1
- package/es/components/table/src/useTable.mjs +1 -1
- package/es/components/table/src/useTable.mjs.map +1 -1
- package/es/components/upload/src/upload.d.ts +4 -4
- package/es/components/uploadImage/src/uploadImage.d.ts +4 -4
- package/es/components/uploadImages/src/uploadImages.d.ts +4 -4
- package/es/version.d.ts +1 -1
- package/es/version.mjs +1 -1
- package/es/version.mjs.map +1 -1
- package/lib/components/avatar/src/avatar.d.ts +10 -9
- package/lib/components/avatar/src/avatar.js +1 -1
- package/lib/components/avatar/src/avatar.js.map +1 -1
- package/lib/components/button/src/button.d.ts +4 -4
- package/lib/components/carNumber/src/carNumber.d.ts +3 -3
- package/lib/components/form/src/formItem.d.ts +18 -4
- package/lib/components/image/src/image.d.ts +7 -0
- package/lib/components/image/src/image.js +1 -1
- package/lib/components/image/src/image.js.map +1 -1
- package/lib/components/table/index.d.ts +2 -2
- package/lib/components/table/index.js.map +1 -1
- package/lib/components/table/src/table.d.ts +38 -4
- package/lib/components/table/src/table.js +1 -1
- package/lib/components/table/src/table.js.map +1 -1
- package/lib/components/table/src/table.state.d.ts +0 -4
- package/lib/components/table/src/table.type.d.ts +3 -62
- package/lib/components/table/src/table.type.js.map +1 -1
- package/lib/components/table/src/tableColumn.d.ts +5 -0
- package/lib/components/table/src/tableColumn.js +1 -1
- package/lib/components/table/src/tableColumn.js.map +1 -1
- package/lib/components/table/src/tableColumnSettingDialog.d.ts +3 -3
- package/lib/components/table/src/tableColumnSettingDialog.js +1 -1
- package/lib/components/table/src/tableColumnSettingDialog.js.map +1 -1
- package/lib/components/table/src/useTable.js +1 -1
- package/lib/components/table/src/useTable.js.map +1 -1
- package/lib/components/upload/src/upload.d.ts +4 -4
- package/lib/components/uploadImage/src/uploadImage.d.ts +4 -4
- package/lib/components/uploadImages/src/uploadImages.d.ts +4 -4
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/lib/version.js.map +1 -1
- package/package.json +5 -5
- package/styles/components/table.scss +1 -1
package/dist/index.full.mjs
CHANGED
|
@@ -25,9 +25,9 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
25
25
|
type: utils.definePropType([String, Object, Function]),
|
|
26
26
|
default: () => ElementPlusIconsVue2.Picture
|
|
27
27
|
},
|
|
28
|
-
/**
|
|
29
|
-
|
|
30
|
-
|
|
28
|
+
/** @description Base64图片 */
|
|
29
|
+
base64: Boolean,
|
|
30
|
+
/** @description 原图 */
|
|
31
31
|
original: Boolean,
|
|
32
32
|
/** @description 标准 */
|
|
33
33
|
normal: Boolean,
|
|
@@ -52,20 +52,20 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
52
52
|
}) {
|
|
53
53
|
const state = vue.reactive({
|
|
54
54
|
src: vue.computed(() => {
|
|
55
|
-
if (props.src)
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
55
|
+
if (!props.src) return void 0;
|
|
56
|
+
if (props.base64) {
|
|
57
|
+
return `data:image/png;base64,${props.src}`;
|
|
58
|
+
} else if (props.original) {
|
|
59
|
+
return props.src;
|
|
60
|
+
} else if (props.normal) {
|
|
61
|
+
return `${props.src}@!normal`;
|
|
62
|
+
} else if (props.small) {
|
|
63
|
+
return `${props.src}@!small`;
|
|
64
|
+
} else if (props.thumb) {
|
|
65
|
+
return `${props.src}@!thumb`;
|
|
66
|
+
} else {
|
|
67
|
+
return `${props.src}@!thumb`;
|
|
67
68
|
}
|
|
68
|
-
return void 0;
|
|
69
69
|
})
|
|
70
70
|
});
|
|
71
71
|
const elAvatarProps = utils.useProps(props, ElementPlus2.avatarProps, ["src"]);
|
|
@@ -6992,7 +6992,7 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
6992
6992
|
const isIOS = /* @__PURE__ */ getIsIOS();
|
|
6993
6993
|
function getIsIOS() {
|
|
6994
6994
|
var _window, _window2, _window3;
|
|
6995
|
-
return isClient && ((_window = window) === null || _window === void 0 || (_window = _window.navigator) === null || _window === void 0 ? void 0 : _window.userAgent) && (/iP(?:ad|hone|od)/.test(window.navigator.userAgent) || ((_window2 = window) === null || _window2 === void 0 || (_window2 = _window2.navigator) === null || _window2 === void 0 ? void 0 : _window2.maxTouchPoints) > 2 && /iPad|Macintosh/.test((_window3 = window) === null || _window3 === void 0 ? void 0 : _window3.navigator.userAgent));
|
|
6995
|
+
return isClient && !!((_window = window) === null || _window === void 0 || (_window = _window.navigator) === null || _window === void 0 ? void 0 : _window.userAgent) && (/iP(?:ad|hone|od)/.test(window.navigator.userAgent) || ((_window2 = window) === null || _window2 === void 0 || (_window2 = _window2.navigator) === null || _window2 === void 0 ? void 0 : _window2.maxTouchPoints) > 2 && /iPad|Macintosh/.test((_window3 = window) === null || _window3 === void 0 ? void 0 : _window3.navigator.userAgent));
|
|
6996
6996
|
}
|
|
6997
6997
|
function toRef(...args) {
|
|
6998
6998
|
if (args.length !== 1) return vue.toRef(...args);
|
|
@@ -8332,11 +8332,6 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
8332
8332
|
return (_$el = plain === null || plain === void 0 ? void 0 : plain.$el) !== null && _$el !== void 0 ? _$el : plain;
|
|
8333
8333
|
}
|
|
8334
8334
|
function useEventListener(...args) {
|
|
8335
|
-
const cleanups = [];
|
|
8336
|
-
const cleanup = () => {
|
|
8337
|
-
cleanups.forEach((fn) => fn());
|
|
8338
|
-
cleanups.length = 0;
|
|
8339
|
-
};
|
|
8340
8335
|
const register = (el, event, listener, options) => {
|
|
8341
8336
|
el.addEventListener(event, listener, options);
|
|
8342
8337
|
return () => el.removeEventListener(event, listener, options);
|
|
@@ -8345,7 +8340,7 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
8345
8340
|
const test = toArray(vue.toValue(args[0])).filter((e) => e != null);
|
|
8346
8341
|
return test.every((e) => typeof e !== "string") ? test : void 0;
|
|
8347
8342
|
});
|
|
8348
|
-
|
|
8343
|
+
return watchImmediate(() => {
|
|
8349
8344
|
var _firstParamTargets$va, _firstParamTargets$va2;
|
|
8350
8345
|
return [
|
|
8351
8346
|
(_firstParamTargets$va = (_firstParamTargets$va2 = firstParamTargets.value) === null || _firstParamTargets$va2 === void 0 ? void 0 : _firstParamTargets$va2.map((e) => unrefElement(e))) !== null && _firstParamTargets$va !== void 0 ? _firstParamTargets$va : [defaultWindow].filter((e) => e != null),
|
|
@@ -8353,18 +8348,14 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
8353
8348
|
toArray(vue.unref(firstParamTargets.value ? args[2] : args[1])),
|
|
8354
8349
|
vue.toValue(firstParamTargets.value ? args[3] : args[2])
|
|
8355
8350
|
];
|
|
8356
|
-
}, ([raw_targets, raw_events, raw_listeners, raw_options]) => {
|
|
8357
|
-
cleanup();
|
|
8351
|
+
}, ([raw_targets, raw_events, raw_listeners, raw_options], _, onCleanup) => {
|
|
8358
8352
|
if (!(raw_targets === null || raw_targets === void 0 ? void 0 : raw_targets.length) || !(raw_events === null || raw_events === void 0 ? void 0 : raw_events.length) || !(raw_listeners === null || raw_listeners === void 0 ? void 0 : raw_listeners.length)) return;
|
|
8359
8353
|
const optionsClone = isObject(raw_options) ? { ...raw_options } : raw_options;
|
|
8360
|
-
cleanups
|
|
8354
|
+
const cleanups = raw_targets.flatMap((el) => raw_events.flatMap((event) => raw_listeners.map((listener) => register(el, event, listener, optionsClone))));
|
|
8355
|
+
onCleanup(() => {
|
|
8356
|
+
cleanups.forEach((fn) => fn());
|
|
8357
|
+
});
|
|
8361
8358
|
}, { flush: "post" });
|
|
8362
|
-
const stop = () => {
|
|
8363
|
-
stopWatch();
|
|
8364
|
-
cleanup();
|
|
8365
|
-
};
|
|
8366
|
-
tryOnScopeDispose(cleanup);
|
|
8367
|
-
return stop;
|
|
8368
8359
|
}
|
|
8369
8360
|
let _iOSWorkaround = false;
|
|
8370
8361
|
function onClickOutside(target, handler, options = {}) {
|
|
@@ -9028,6 +9019,7 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
9028
9019
|
}
|
|
9029
9020
|
updateResult(promiseState.rejected, e);
|
|
9030
9021
|
onError();
|
|
9022
|
+
if (activeIndex.value === tasks.length - 1) onFinished();
|
|
9031
9023
|
return e;
|
|
9032
9024
|
});
|
|
9033
9025
|
}, Promise.resolve());
|
|
@@ -9619,6 +9611,7 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
9619
9611
|
ta.value = value;
|
|
9620
9612
|
ta.style.position = "absolute";
|
|
9621
9613
|
ta.style.opacity = "0";
|
|
9614
|
+
ta.setAttribute("readonly", "");
|
|
9622
9615
|
document.body.appendChild(ta);
|
|
9623
9616
|
ta.select();
|
|
9624
9617
|
document.execCommand("copy");
|
|
@@ -10576,6 +10569,7 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
10576
10569
|
return types.every((type) => dataTypes.some((allowedType) => type.includes(allowedType)));
|
|
10577
10570
|
};
|
|
10578
10571
|
const checkValidity = (items) => {
|
|
10572
|
+
if (_options.checkValidity) return _options.checkValidity(items);
|
|
10579
10573
|
const dataTypesValid = checkDataTypes(Array.from(items !== null && items !== void 0 ? items : []).map((item) => item.type));
|
|
10580
10574
|
const multipleFilesValid = multiple || items.length <= 1;
|
|
10581
10575
|
return dataTypesValid && multipleFilesValid;
|
|
@@ -10862,8 +10856,8 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
10862
10856
|
};
|
|
10863
10857
|
}
|
|
10864
10858
|
function useElementVisibility(element, options = {}) {
|
|
10865
|
-
const { window: window$1 = defaultWindow, scrollTarget, threshold = 0, rootMargin, once: once2 = false } = options;
|
|
10866
|
-
const elementIsVisible = vue.shallowRef(
|
|
10859
|
+
const { window: window$1 = defaultWindow, scrollTarget, threshold = 0, rootMargin, once: once2 = false, initialValue = false } = options;
|
|
10860
|
+
const elementIsVisible = vue.shallowRef(initialValue);
|
|
10867
10861
|
const { stop } = useIntersectionObserver(element, (intersectionObserverEntries) => {
|
|
10868
10862
|
let isIntersecting = elementIsVisible.value;
|
|
10869
10863
|
let latestTime = 0;
|
|
@@ -11972,7 +11966,7 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
11972
11966
|
var _document2;
|
|
11973
11967
|
if (!window$1) return;
|
|
11974
11968
|
const el = (target === null || target === void 0 || (_document2 = target.document) === null || _document2 === void 0 ? void 0 : _document2.documentElement) || (target === null || target === void 0 ? void 0 : target.documentElement) || unrefElement(target);
|
|
11975
|
-
const { display, flexDirection, direction } = getComputedStyle(el);
|
|
11969
|
+
const { display, flexDirection, direction } = window$1.getComputedStyle(el);
|
|
11976
11970
|
const directionMultipler = direction === "rtl" ? -1 : 1;
|
|
11977
11971
|
const scrollLeft = el.scrollLeft;
|
|
11978
11972
|
directions.left = scrollLeft < internalX.value;
|
|
@@ -12058,9 +12052,13 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
12058
12052
|
return resolveElement(vue.toValue(element));
|
|
12059
12053
|
});
|
|
12060
12054
|
const isElementVisible = useElementVisibility(observedElement);
|
|
12055
|
+
const canLoad = vue.computed(() => {
|
|
12056
|
+
if (!observedElement.value) return false;
|
|
12057
|
+
return canLoadMore(observedElement.value);
|
|
12058
|
+
});
|
|
12061
12059
|
function checkAndLoad() {
|
|
12062
12060
|
state.measure();
|
|
12063
|
-
if (!observedElement.value || !isElementVisible.value || !
|
|
12061
|
+
if (!observedElement.value || !isElementVisible.value || !canLoad.value) return;
|
|
12064
12062
|
const { scrollHeight, clientHeight, scrollWidth, clientWidth } = observedElement.value;
|
|
12065
12063
|
const isNarrower = direction === "bottom" || direction === "top" ? scrollHeight <= clientHeight : scrollWidth <= clientWidth;
|
|
12066
12064
|
if (state.arrivedState[direction] || isNarrower) {
|
|
@@ -12070,7 +12068,11 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
12070
12068
|
});
|
|
12071
12069
|
}
|
|
12072
12070
|
}
|
|
12073
|
-
tryOnUnmounted(vue.watch(() => [
|
|
12071
|
+
tryOnUnmounted(vue.watch(() => [
|
|
12072
|
+
state.arrivedState[direction],
|
|
12073
|
+
isElementVisible.value,
|
|
12074
|
+
canLoad.value
|
|
12075
|
+
], checkAndLoad, { immediate: true }));
|
|
12074
12076
|
return {
|
|
12075
12077
|
isLoading,
|
|
12076
12078
|
reset() {
|
|
@@ -12160,6 +12162,7 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
12160
12162
|
var _e$key, _e$code;
|
|
12161
12163
|
const key = (_e$key = e.key) === null || _e$key === void 0 ? void 0 : _e$key.toLowerCase();
|
|
12162
12164
|
const values2 = [(_e$code = e.code) === null || _e$code === void 0 ? void 0 : _e$code.toLowerCase(), key].filter(Boolean);
|
|
12165
|
+
if (key === "") return;
|
|
12163
12166
|
if (key) if (value) current.add(key);
|
|
12164
12167
|
else current.delete(key);
|
|
12165
12168
|
for (const key$1 of values2) {
|
|
@@ -12537,17 +12540,20 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
12537
12540
|
if (!window$1) return;
|
|
12538
12541
|
const el = unrefElement(targetRef);
|
|
12539
12542
|
if (!el || !(el instanceof Element)) return;
|
|
12540
|
-
const
|
|
12541
|
-
|
|
12542
|
-
|
|
12543
|
-
|
|
12544
|
-
|
|
12545
|
-
|
|
12546
|
-
|
|
12547
|
-
|
|
12548
|
-
|
|
12549
|
-
|
|
12550
|
-
|
|
12543
|
+
for (const rect of el.getClientRects()) {
|
|
12544
|
+
const { left, top, width, height } = rect;
|
|
12545
|
+
elementPositionX.value = left + (type === "page" ? window$1.pageXOffset : 0);
|
|
12546
|
+
elementPositionY.value = top + (type === "page" ? window$1.pageYOffset : 0);
|
|
12547
|
+
elementHeight.value = height;
|
|
12548
|
+
elementWidth.value = width;
|
|
12549
|
+
const elX = x.value - elementPositionX.value;
|
|
12550
|
+
const elY = y.value - elementPositionY.value;
|
|
12551
|
+
isOutside.value = width === 0 || height === 0 || elX < 0 || elY < 0 || elX > width || elY > height;
|
|
12552
|
+
if (handleOutside || !isOutside.value) {
|
|
12553
|
+
elementX.value = elX;
|
|
12554
|
+
elementY.value = elY;
|
|
12555
|
+
}
|
|
12556
|
+
if (!isOutside.value) break;
|
|
12551
12557
|
}
|
|
12552
12558
|
}
|
|
12553
12559
|
const stopFnList = [];
|
|
@@ -13398,8 +13404,12 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
13398
13404
|
};
|
|
13399
13405
|
vue.watch(isListening, (newValue, oldValue) => {
|
|
13400
13406
|
if (newValue === oldValue) return;
|
|
13401
|
-
|
|
13402
|
-
|
|
13407
|
+
try {
|
|
13408
|
+
if (newValue) recognition.start();
|
|
13409
|
+
else recognition.stop();
|
|
13410
|
+
} catch (err) {
|
|
13411
|
+
error.value = err;
|
|
13412
|
+
}
|
|
13403
13413
|
});
|
|
13404
13414
|
}
|
|
13405
13415
|
tryOnScopeDispose(() => {
|
|
@@ -14002,18 +14012,20 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
14002
14012
|
});
|
|
14003
14013
|
}
|
|
14004
14014
|
function getTimeAgoIntlResult(from, options = {}, now2 = Date.now()) {
|
|
14015
|
+
var _options$units;
|
|
14005
14016
|
const { locale, relativeTimeFormatOptions = { numeric: "auto" } } = options;
|
|
14006
14017
|
const rtf = new Intl.RelativeTimeFormat(locale, relativeTimeFormatOptions);
|
|
14007
14018
|
const { locale: resolvedLocale } = rtf.resolvedOptions();
|
|
14008
14019
|
const diff = +from - +now2;
|
|
14009
14020
|
const absDiff = Math.abs(diff);
|
|
14010
|
-
|
|
14021
|
+
const units = (_options$units = options.units) !== null && _options$units !== void 0 ? _options$units : UNITS;
|
|
14022
|
+
for (const { name, ms } of units) if (absDiff >= ms) return {
|
|
14011
14023
|
resolvedLocale,
|
|
14012
14024
|
parts: rtf.formatToParts(Math.round(diff / ms), name)
|
|
14013
14025
|
};
|
|
14014
14026
|
return {
|
|
14015
14027
|
resolvedLocale,
|
|
14016
|
-
parts: rtf.formatToParts(0,
|
|
14028
|
+
parts: rtf.formatToParts(0, units[units.length - 1].name)
|
|
14017
14029
|
};
|
|
14018
14030
|
}
|
|
14019
14031
|
function formatTimeAgoIntlParts(parts, options = {}) {
|
|
@@ -14890,7 +14902,8 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
14890
14902
|
const { retries = -1, delay: delay2 = 1e3, onFailed } = resolveNestedOptions(options.autoReconnect);
|
|
14891
14903
|
if ((typeof retries === "function" ? retries : () => typeof retries === "number" && (retries < 0 || retried < retries))(retried)) {
|
|
14892
14904
|
retried += 1;
|
|
14893
|
-
|
|
14905
|
+
const delayTime = typeof delay2 === "function" ? delay2(retried) : delay2;
|
|
14906
|
+
retryTimeout = setTimeout(_init, delayTime);
|
|
14894
14907
|
} else onFailed === null || onFailed === void 0 || onFailed();
|
|
14895
14908
|
}
|
|
14896
14909
|
};
|
|
@@ -16608,6 +16621,8 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
16608
16621
|
type: Boolean,
|
|
16609
16622
|
default: true
|
|
16610
16623
|
},
|
|
16624
|
+
/** @description Base64图片 */
|
|
16625
|
+
base64: Boolean,
|
|
16611
16626
|
/** @description 原图 */
|
|
16612
16627
|
original: Boolean,
|
|
16613
16628
|
/** @description 标准 */
|
|
@@ -16634,7 +16649,9 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
16634
16649
|
const state = vue.reactive({
|
|
16635
16650
|
src: vue.computed(() => {
|
|
16636
16651
|
if (!props.src) return void 0;
|
|
16637
|
-
if (props.
|
|
16652
|
+
if (props.base64) {
|
|
16653
|
+
return `data:image/png;base64,${props.src}`;
|
|
16654
|
+
} else if (props.original) {
|
|
16638
16655
|
return props.src;
|
|
16639
16656
|
} else if (props.normal) {
|
|
16640
16657
|
return `${props.src}@!normal`;
|
|
@@ -16646,7 +16663,7 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
16646
16663
|
return `${props.src}@!thumb`;
|
|
16647
16664
|
}
|
|
16648
16665
|
}),
|
|
16649
|
-
previewList: vue.computed(() => props.preview ? [props.src] : [])
|
|
16666
|
+
previewList: vue.computed(() => props.preview ? [props.base64 ? `data:image/png;base64,${props.src}` : props.src] : [])
|
|
16650
16667
|
});
|
|
16651
16668
|
const bindProps = utils.useProps(props, ElementPlus2.imageProps, ["src", "previewSrcList"]);
|
|
16652
16669
|
utils.useRender(() => vue.createVNode(ElementPlus2.ElImage, vue.mergeProps(bindProps.value, {
|
|
@@ -18438,7 +18455,6 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
18438
18455
|
searchParam: {},
|
|
18439
18456
|
searchValueUpdate: "",
|
|
18440
18457
|
searchForm: props.searchForm,
|
|
18441
|
-
hideImage: vue.computed(() => props.hideImage),
|
|
18442
18458
|
selected: false,
|
|
18443
18459
|
selectedList: [],
|
|
18444
18460
|
selectedListIds: vue.computed(() => state.selectedList.map((item) => isFunction(props.rowKey) ? props.rowKey(item) : item[props.rowKey])),
|
|
@@ -18940,6 +18956,8 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
18940
18956
|
_children: {
|
|
18941
18957
|
type: utils.definePropType(Array)
|
|
18942
18958
|
},
|
|
18959
|
+
/** @description 隐藏图片 */
|
|
18960
|
+
hideImage: Boolean,
|
|
18943
18961
|
/** @description 复制 */
|
|
18944
18962
|
copy: Boolean,
|
|
18945
18963
|
/** @description 是否为 Link Button */
|
|
@@ -19276,7 +19294,7 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
19276
19294
|
}),
|
|
19277
19295
|
default: ({
|
|
19278
19296
|
row
|
|
19279
|
-
}) => row[props.prop] ?
|
|
19297
|
+
}) => row[props.prop] ? props.hideImage ? vue.createVNode(ElementPlus2.ElImage, {
|
|
19280
19298
|
"class": "fa-image",
|
|
19281
19299
|
"lazy": true,
|
|
19282
19300
|
"src": artwork,
|
|
@@ -22136,28 +22154,10 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
22136
22154
|
});
|
|
22137
22155
|
};
|
|
22138
22156
|
const handleChange = async () => {
|
|
22139
|
-
if (props.change) {
|
|
22140
|
-
|
|
22141
|
-
|
|
22142
|
-
|
|
22143
|
-
label: m.label,
|
|
22144
|
-
fixed: m.fixed,
|
|
22145
|
-
width: m.width,
|
|
22146
|
-
smallWidth: m.smallWidth,
|
|
22147
|
-
order: m.order,
|
|
22148
|
-
sortable: m.sortable,
|
|
22149
|
-
copy: m.copy,
|
|
22150
|
-
autoWidth: m.autoWidth,
|
|
22151
|
-
show: m.show,
|
|
22152
|
-
search: {
|
|
22153
|
-
label: m.search?.label,
|
|
22154
|
-
order: m.search?.order
|
|
22155
|
-
}
|
|
22156
|
-
})));
|
|
22157
|
-
ElementPlus2.ElMessage.success("保存列配置成功");
|
|
22158
|
-
} else {
|
|
22159
|
-
ElementPlus2.ElMessage.info("列配置未发生变化");
|
|
22160
|
-
}
|
|
22157
|
+
if (state.change && props.change) {
|
|
22158
|
+
await props.change(tableState.orgColumns);
|
|
22159
|
+
} else {
|
|
22160
|
+
ElementPlus2.ElMessage.info("列配置未发生变化");
|
|
22161
22161
|
}
|
|
22162
22162
|
};
|
|
22163
22163
|
const handleConfirmClick = () => {
|
|
@@ -23164,6 +23164,16 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
23164
23164
|
xl: 6
|
|
23165
23165
|
})
|
|
23166
23166
|
},
|
|
23167
|
+
/** @description 折叠搜素 */
|
|
23168
|
+
collapsedSearch: {
|
|
23169
|
+
type: Boolean,
|
|
23170
|
+
default: true
|
|
23171
|
+
},
|
|
23172
|
+
/** @description 高级搜素抽屉 */
|
|
23173
|
+
advancedSearchDrawer: {
|
|
23174
|
+
type: Boolean,
|
|
23175
|
+
default: false
|
|
23176
|
+
},
|
|
23167
23177
|
/** @description 搜索表单 */
|
|
23168
23178
|
searchForm: {
|
|
23169
23179
|
type: Boolean,
|
|
@@ -23608,7 +23618,7 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
23608
23618
|
});
|
|
23609
23619
|
const searchFormSlotNames = vue.computed(() => state.searchColumns.filter((f) => f.search.slot).map((m) => m.search.slot));
|
|
23610
23620
|
const tableColumnSlotNames = vue.computed(() => state.tableColumns.filter((f) => f.slot).map((m) => m.slot));
|
|
23611
|
-
const tableColumnOmitNames = ["multiOrder", "
|
|
23621
|
+
const tableColumnOmitNames = ["multiOrder", "columnId", "order", "sortableField", "disabledSortable", "spanProp", "pureSearch", "search"];
|
|
23612
23622
|
const elTableProps = utils.useProps(props, tableProps, ["data", "spanMethod", "headerCellClassName", "cellClassName"]);
|
|
23613
23623
|
utils.useRender(() => vue.createVNode("div", {
|
|
23614
23624
|
"ref": elementRef,
|
|
@@ -23621,6 +23631,8 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
23621
23631
|
}
|
|
23622
23632
|
}, [vue.createVNode(TableSearchForm, {
|
|
23623
23633
|
"show": props.searchForm && state.searchForm,
|
|
23634
|
+
"collapsedSearch": props.collapsedSearch,
|
|
23635
|
+
"advancedSearchDrawer": props.advancedSearchDrawer,
|
|
23624
23636
|
"cols": props.searchFormCols,
|
|
23625
23637
|
"search": tableSearch,
|
|
23626
23638
|
"reset": tableReset
|
|
@@ -23681,12 +23693,7 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
23681
23693
|
"teleported": false,
|
|
23682
23694
|
"unlinkPanels": true,
|
|
23683
23695
|
"onChange": () => tableSearch()
|
|
23684
|
-
}, null),
|
|
23685
|
-
...{
|
|
23686
|
-
search: tableSearch
|
|
23687
|
-
},
|
|
23688
|
-
...getTableDefaultSlots(state)
|
|
23689
|
-
}), props.refreshBtn && vue.createVNode(ElementPlus2.ElButton, {
|
|
23696
|
+
}, null), props.refreshBtn && vue.createVNode(ElementPlus2.ElButton, {
|
|
23690
23697
|
"loading": state.loading,
|
|
23691
23698
|
"loadingIcon": ElementPlusIconsVue2.Eleme,
|
|
23692
23699
|
"title": "刷新",
|
|
@@ -23700,14 +23707,31 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
23700
23707
|
"circle": true,
|
|
23701
23708
|
"icon": ElementPlusIconsVue2.Search,
|
|
23702
23709
|
"onClick": () => state.searchForm = !state.searchForm
|
|
23703
|
-
}, null), props.columnSettingBtn && !props.columns && vue.createVNode(ElementPlus2.
|
|
23704
|
-
"loading": state.loading,
|
|
23705
|
-
"loadingIcon": ElementPlusIconsVue2.Eleme,
|
|
23710
|
+
}, null), props.columnSettingBtn && !props.columns && vue.createVNode(ElementPlus2.ElDropdown, {
|
|
23706
23711
|
"title": "表格列配置",
|
|
23707
|
-
"
|
|
23708
|
-
|
|
23709
|
-
|
|
23710
|
-
|
|
23712
|
+
"trigger": "click"
|
|
23713
|
+
}, {
|
|
23714
|
+
default: () => vue.createVNode(ElementPlus2.ElButton, {
|
|
23715
|
+
"loading": state.loading,
|
|
23716
|
+
"loadingIcon": ElementPlusIconsVue2.Eleme,
|
|
23717
|
+
"circle": true,
|
|
23718
|
+
"icon": ElementPlusIconsVue2.Setting
|
|
23719
|
+
}, null),
|
|
23720
|
+
dropdown: () => vue.createVNode(ElementPlus2.ElDropdownMenu, null, {
|
|
23721
|
+
default: () => [slots.columnSetting && slots.columnSetting(), vue.createVNode(ElementPlus2.ElDropdownItem, {
|
|
23722
|
+
"title": "表格列配置",
|
|
23723
|
+
"divided": true,
|
|
23724
|
+
"onClick": () => columnSettingRef.value.open()
|
|
23725
|
+
}, {
|
|
23726
|
+
default: () => [vue.createTextVNode("表格列配置")]
|
|
23727
|
+
})]
|
|
23728
|
+
})
|
|
23729
|
+
}), slots.toolButton && slots.toolButton({
|
|
23730
|
+
...{
|
|
23731
|
+
search: tableSearch
|
|
23732
|
+
},
|
|
23733
|
+
...getTableDefaultSlots(state)
|
|
23734
|
+
}), slots.toolButtonAdv && vue.createVNode(ElementPlus2.ElDropdown, {
|
|
23711
23735
|
"title": "高级操作",
|
|
23712
23736
|
"trigger": "click"
|
|
23713
23737
|
}, {
|
|
@@ -23830,6 +23854,7 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
23830
23854
|
...getTableDefaultSlots(state)
|
|
23831
23855
|
})])
|
|
23832
23856
|
}) : col.prop && vue.createVNode(TableColumn, vue.mergeProps(omit(col, tableColumnOmitNames), {
|
|
23857
|
+
"hideImage": props.hideImage,
|
|
23833
23858
|
"resizable": true,
|
|
23834
23859
|
"onImagePreview": handleImagePreview,
|
|
23835
23860
|
"onCustomCellClick": handleCustomCellClick
|
|
@@ -28254,7 +28279,7 @@ var FastElementPlus = (function(exports, FastElementPlusIconsVue2, utils, vue, E
|
|
|
28254
28279
|
}
|
|
28255
28280
|
app.use(ElementPlus2);
|
|
28256
28281
|
};
|
|
28257
|
-
const version$1 = "1.0.
|
|
28282
|
+
const version$1 = "1.0.3";
|
|
28258
28283
|
const INSTALLED_KEY = Symbol("INSTALLED_KEY");
|
|
28259
28284
|
const makeInstaller = () => {
|
|
28260
28285
|
const install2 = (app) => {
|