@maxax/ui 1.1.68 → 1.1.71
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 +7 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +5 -9
- package/dist/index.mjs.map +1 -1
- package/dist/theme-chalk/index.css +1 -1
- package/dist/theme-chalk/light.css +1 -1
- package/dist/theme-chalk/vxe-table/theme.scss +6 -0
- package/dist/theme-chalk/vxe-table/vxe-table.scss +1 -5
- package/package.json +3 -3
- package/dist/theme-chalk/vxe-table/table/base.scss +0 -87
- package/dist/theme-chalk/vxe-table/table/dark.scss +0 -48
- package/dist/theme-chalk/vxe-table/table/index.scss +0 -3
- package/dist/theme-chalk/vxe-table/table/light.scss +0 -42
- package/dist/theme-chalk/vxe-table/ui/base.scss +0 -200
- package/dist/theme-chalk/vxe-table/ui/dark.scss +0 -117
- package/dist/theme-chalk/vxe-table/ui/index.scss +0 -3
- package/dist/theme-chalk/vxe-table/ui/light.scss +0 -114
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,7 +9067,7 @@ 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 },
|
|
@@ -25164,12 +25164,7 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
|
|
|
25164
25164
|
suffixIcon: (_e = formatted == null ? void 0 : formatted.suffixIcon) != null ? _e : props.suffixIcon
|
|
25165
25165
|
};
|
|
25166
25166
|
});
|
|
25167
|
-
const tagClass = computed(() => [
|
|
25168
|
-
b(),
|
|
25169
|
-
m(resolved.value.type),
|
|
25170
|
-
m(props.size),
|
|
25171
|
-
is("bordered", props.bordered)
|
|
25172
|
-
]);
|
|
25167
|
+
const tagClass = computed(() => [b(), m(resolved.value.type), m(props.size), is("bordered", props.bordered)]);
|
|
25173
25168
|
const showPrefix = computed(() => resolved.value.prefixIcon || props.prefixDot);
|
|
25174
25169
|
const showSuffix = computed(() => resolved.value.suffixIcon || props.suffixDot);
|
|
25175
25170
|
return (_ctx, _cache) => {
|
|
@@ -30760,7 +30755,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
30760
30755
|
const previewTableBindValues = computed(() => {
|
|
30761
30756
|
return {
|
|
30762
30757
|
border: "inner",
|
|
30763
|
-
showOverflow:
|
|
30758
|
+
showOverflow: "tooltip",
|
|
30764
30759
|
showHeaderOverflow: "tooltip",
|
|
30765
30760
|
height: 400,
|
|
30766
30761
|
toolbarConfig: {
|
|
@@ -31310,6 +31305,7 @@ export {
|
|
|
31310
31305
|
VxePager2 as VxePager,
|
|
31311
31306
|
VxeTable,
|
|
31312
31307
|
VxeToolbar,
|
|
31308
|
+
VxeTooltip,
|
|
31313
31309
|
XBasicActionFooter,
|
|
31314
31310
|
XBasicArrow,
|
|
31315
31311
|
XBasicBoolIcon,
|