@funcho/ui 1.1.30 → 1.1.31
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.
|
@@ -16,9 +16,14 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
16
16
|
headerHeight: { default: 40 }
|
|
17
17
|
},
|
|
18
18
|
setup(__props, { expose: __expose }) {
|
|
19
|
+
vue.useCssVars((_ctx) => ({
|
|
20
|
+
"v19afe189": rowHeightStyle.value
|
|
21
|
+
}));
|
|
19
22
|
const attrs = vue.useAttrs();
|
|
20
23
|
const tableBindProps = vue.computed(() => attrs);
|
|
24
|
+
const props = __props;
|
|
21
25
|
const elRef = vue.ref();
|
|
26
|
+
const rowHeightStyle = vue.computed(() => `${props.rowHeight - 2}px`);
|
|
22
27
|
__expose(
|
|
23
28
|
new Proxy(
|
|
24
29
|
{},
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent,
|
|
1
|
+
import { defineComponent, useCssVars, computed, useAttrs, ref, createBlock, openBlock, unref, mergeProps, createSlots, renderList, withCtx, renderSlot, normalizeProps, guardReactiveProps } from 'vue';
|
|
2
2
|
import { ElTableV2 } from '../../node_modules/.pnpm/element-plus@2.13.5_patch_hash_415fe9eaeb4c26121ef1304c7dfbfaa75441fcd0d7ca1a8beb1acd12_87ac520f28bb40f5a8b03aa48269c150/node_modules/element-plus/es/components/table-v2/index.mjs';
|
|
3
3
|
import '../../_virtual/dayjs.min.mjs';
|
|
4
4
|
|
|
@@ -12,9 +12,14 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
12
12
|
headerHeight: { default: 40 }
|
|
13
13
|
},
|
|
14
14
|
setup(__props, { expose: __expose }) {
|
|
15
|
+
useCssVars((_ctx) => ({
|
|
16
|
+
"v19afe189": rowHeightStyle.value
|
|
17
|
+
}));
|
|
15
18
|
const attrs = useAttrs();
|
|
16
19
|
const tableBindProps = computed(() => attrs);
|
|
20
|
+
const props = __props;
|
|
17
21
|
const elRef = ref();
|
|
22
|
+
const rowHeightStyle = computed(() => `${props.rowHeight - 2}px`);
|
|
18
23
|
__expose(
|
|
19
24
|
new Proxy(
|
|
20
25
|
{},
|
package/dist/style.css
CHANGED
|
@@ -16801,6 +16801,9 @@ to {
|
|
|
16801
16801
|
padding: 4px 0;
|
|
16802
16802
|
}.fc-ui-table-v2 {
|
|
16803
16803
|
color: #181818;
|
|
16804
|
+
}
|
|
16805
|
+
.fc-ui-table-v2 .fc-ui-table-v2__row {
|
|
16806
|
+
line-height: var(--v19afe189);
|
|
16804
16807
|
}.fc-ui-breadcrumb {
|
|
16805
16808
|
font-size: 12px;
|
|
16806
16809
|
line-height: 18px;
|