sprintify-ui 0.8.25 → 0.8.26
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/sprintify-ui.es.js +1638 -1647
- package/package.json +1 -1
- package/src/components/BaseTableCell.vue +0 -3
- package/src/components/BaseTableRow.vue +0 -8
package/package.json
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<td
|
|
3
|
-
ref="tdRef"
|
|
4
3
|
:align="align"
|
|
5
4
|
:colspan="colspan"
|
|
6
5
|
:class="classes"
|
|
@@ -175,8 +174,6 @@ const classes = computed(() => {
|
|
|
175
174
|
);
|
|
176
175
|
});
|
|
177
176
|
|
|
178
|
-
const tdRef = ref<HTMLTableCellElement | null>(null);
|
|
179
|
-
|
|
180
177
|
function onClick(event: MouseEvent) {
|
|
181
178
|
propsInternal.value.onClick?.(event);
|
|
182
179
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<tr
|
|
3
|
-
ref="trRef"
|
|
4
3
|
:class="classes"
|
|
5
4
|
@mouseenter="onMouseEnter"
|
|
6
5
|
@mouseleave="onMouseLeave"
|
|
@@ -43,13 +42,6 @@ const props = withDefaults(defineProps<{
|
|
|
43
42
|
onClick: undefined,
|
|
44
43
|
});
|
|
45
44
|
|
|
46
|
-
const trRef = ref<null | HTMLTableRowElement>(null);
|
|
47
|
-
const parent = ref<null | undefined | HTMLElement>(null);
|
|
48
|
-
|
|
49
|
-
onMounted(() => {
|
|
50
|
-
parent.value = trRef.value?.parentElement;
|
|
51
|
-
});
|
|
52
|
-
|
|
53
45
|
const classes = computed(() => {
|
|
54
46
|
const base = 'group/row';
|
|
55
47
|
|