@maxax/ui 1.1.67 → 1.1.70
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/basic-button-import-max/PreviewModal.vue.d.ts.map +1 -1
- package/dist/components/basic-table/BasicTable.vue.d.ts.map +1 -1
- package/dist/components/basic-table/vxe-table.d.ts +2 -2
- package/dist/components/basic-table/vxe-table.d.ts.map +1 -1
- package/dist/components/basic-tag/BasicTag.vue.d.ts.map +1 -1
- package/dist/index.cjs +9 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +7 -10
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -4,7 +4,7 @@ import BScroll from "@better-scroll/core";
|
|
|
4
4
|
import { NTooltip, NButton, NInput, NButtonGroup, NDropdown, NModal, NProgress, NCard, NCascader, NDatePicker, NDrawer, NDrawerContent, NSelect, NInputNumber, NUpload, NAutoComplete, NDynamicTags, NTreeSelect, NTimePicker, NSwitch, NCheckbox, NCheckboxGroup, NRadio, NRadioButton, NRadioGroup, NSlider, NTransfer, NDivider, NColorPicker, NRate, NCol, NFormItem, NForm, NRow, NPopover, NTabs, NTabPane, NScrollbar, NEmpty, NPagination, NSpin } from "naive-ui";
|
|
5
5
|
import { merge as merge$1, cloneDeep as cloneDeep$1, uniqBy, omit as omit$1, isBoolean as isBoolean$2, isFunction as isFunction$2, isArray as isArray$2, isString as isString$2, isEqual as isEqual$1, get as get$1, concat, has as has$1, set as set$1, unset, isNumber as isNumber$2, isPlainObject as isPlainObject$1, partition } from "lodash-es";
|
|
6
6
|
import { VxePager } from "vxe-pc-ui";
|
|
7
|
-
import { VxeUI, VxePager as VxePager2 } from "vxe-pc-ui";
|
|
7
|
+
import { VxeUI, VxePager as VxePager2, VxeTooltip } from "vxe-pc-ui";
|
|
8
8
|
import { VxeUI as VxeUI2, VxeGrid } from "vxe-table";
|
|
9
9
|
import { VxeUI as VxeUI3, VxeColgroup, VxeColumn, VxeGrid as VxeGrid2, VxeTable, VxeToolbar } from "vxe-table";
|
|
10
10
|
import dayjs from "dayjs";
|
|
@@ -9067,13 +9067,14 @@ const _sfc_main$F = /* @__PURE__ */ defineComponent({
|
|
|
9067
9067
|
mergeFooterItems: {},
|
|
9068
9068
|
spanMethod: {},
|
|
9069
9069
|
footerSpanMethod: {},
|
|
9070
|
-
showOverflow: { type: [Boolean, String, null], default:
|
|
9070
|
+
showOverflow: { type: [Boolean, String, null], default: "tooltip" },
|
|
9071
9071
|
showHeaderOverflow: { type: [Boolean, String, null], default: "tooltip" },
|
|
9072
9072
|
showFooterOverflow: { type: [Boolean, String, null], default: "tooltip" },
|
|
9073
9073
|
keepSource: { type: Boolean },
|
|
9074
9074
|
autoResize: { type: Boolean, default: true },
|
|
9075
9075
|
syncResize: { type: [Boolean, String, Number] },
|
|
9076
9076
|
columnConfig: { default: () => ({
|
|
9077
|
+
minWidth: "auto",
|
|
9077
9078
|
resizable: true,
|
|
9078
9079
|
useKey: true,
|
|
9079
9080
|
maxFixedSize: 4
|
|
@@ -25141,7 +25142,7 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
|
|
|
25141
25142
|
__name: "BasicTag",
|
|
25142
25143
|
props: {
|
|
25143
25144
|
type: { default: "default" },
|
|
25144
|
-
size: { default: "
|
|
25145
|
+
size: { default: "small" },
|
|
25145
25146
|
bordered: { type: Boolean, default: false },
|
|
25146
25147
|
prefixIcon: {},
|
|
25147
25148
|
suffixIcon: {},
|
|
@@ -25163,12 +25164,7 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
|
|
|
25163
25164
|
suffixIcon: (_e = formatted == null ? void 0 : formatted.suffixIcon) != null ? _e : props.suffixIcon
|
|
25164
25165
|
};
|
|
25165
25166
|
});
|
|
25166
|
-
const tagClass = computed(() => [
|
|
25167
|
-
b(),
|
|
25168
|
-
m(resolved.value.type),
|
|
25169
|
-
m(props.size),
|
|
25170
|
-
is("bordered", props.bordered)
|
|
25171
|
-
]);
|
|
25167
|
+
const tagClass = computed(() => [b(), m(resolved.value.type), m(props.size), is("bordered", props.bordered)]);
|
|
25172
25168
|
const showPrefix = computed(() => resolved.value.prefixIcon || props.prefixDot);
|
|
25173
25169
|
const showSuffix = computed(() => resolved.value.suffixIcon || props.suffixDot);
|
|
25174
25170
|
return (_ctx, _cache) => {
|
|
@@ -30759,7 +30755,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
30759
30755
|
const previewTableBindValues = computed(() => {
|
|
30760
30756
|
return {
|
|
30761
30757
|
border: "inner",
|
|
30762
|
-
showOverflow:
|
|
30758
|
+
showOverflow: "tooltip",
|
|
30763
30759
|
showHeaderOverflow: "tooltip",
|
|
30764
30760
|
height: 400,
|
|
30765
30761
|
toolbarConfig: {
|
|
@@ -31309,6 +31305,7 @@ export {
|
|
|
31309
31305
|
VxePager2 as VxePager,
|
|
31310
31306
|
VxeTable,
|
|
31311
31307
|
VxeToolbar,
|
|
31308
|
+
VxeTooltip,
|
|
31312
31309
|
XBasicActionFooter,
|
|
31313
31310
|
XBasicArrow,
|
|
31314
31311
|
XBasicBoolIcon,
|