@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
  {},
@@ -2,6 +2,6 @@
2
2
 
3
3
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4
4
 
5
- const version = "1.1.30";
5
+ const version = "1.1.31";
6
6
 
7
7
  exports.version = version;
@@ -1,4 +1,4 @@
1
- import { defineComponent, useAttrs, computed, ref, createBlock, openBlock, unref, mergeProps, createSlots, renderList, withCtx, renderSlot, normalizeProps, guardReactiveProps } from 'vue';
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
  {},
@@ -1,3 +1,3 @@
1
- const version = "1.1.30";
1
+ const version = "1.1.31";
2
2
 
3
3
  export { version };
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;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@funcho/ui",
3
3
  "description": "@funcho ui library",
4
- "version": "1.1.30",
4
+ "version": "1.1.31",
5
5
  "type": "module",
6
6
  "main": "dist/cjs/index.js",
7
7
  "module": "dist/esm/index.mjs",