flameresttable 1.0.97 → 1.0.99
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/package.json +1 -1
- package/src/Table/Table.vue +6 -6
package/package.json
CHANGED
package/src/Table/Table.vue
CHANGED
|
@@ -93,13 +93,13 @@
|
|
|
93
93
|
</button>
|
|
94
94
|
</div>
|
|
95
95
|
</div>
|
|
96
|
-
<div class="table-cell text-center relative" :key="'row_slot_' + (row as any).id"
|
|
97
|
-
v-if="opts.onRowClickOpenSlot && !isRowCollapsed(row)">
|
|
98
|
-
<div class=" mx-auto no-wrap-cell mobile:w-full text-center">
|
|
99
|
-
<slot name="RowSubSlot" :row="row" />
|
|
100
|
-
</div>
|
|
101
|
-
</div>
|
|
102
96
|
</slot>
|
|
97
|
+
<div class="table-cell text-center relative" :key="'row_slot_' + (row as any).id"
|
|
98
|
+
v-if="opts.onRowClickOpenSlot === 'rowspace' && !isRowCollapsed(row)">
|
|
99
|
+
<div class=" mx-auto no-wrap-cell mobile:w-full text-center">
|
|
100
|
+
<slot name="RowSubSlot" :row="row" />
|
|
101
|
+
</div>
|
|
102
|
+
</div>
|
|
103
103
|
</template>
|
|
104
104
|
|
|
105
105
|
</div>
|