Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import view from './widgets/view/widget.vue';
import navigation from './widgets/navigation/widget.vue';
import status from './widgets/status/widget.vue';
import textfield from './widgets/textfield/widget.vue';
import table from './widgets/table/widget.vue';

import _store from './core/store';
import _bus from './core/eventBus';
Expand All @@ -23,6 +24,7 @@ export const View = view;
export const Navigation = navigation;
export const Status = status;
export const Textfield = textfield;
export const Table = table;

export const bus = _bus;
export const store = _store;
Expand Down
92 changes: 92 additions & 0 deletions src/widgets/table/widget.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
<template>
<div class="table">
<table>
<thead v-if="headers.length">
<tr>
<th
v-for="header in headers"
:key="header.name"
>
<div>{{ header.text }}</div>
<div class="splitpane" />
</th>
</tr>
</thead>
<tbody>
<slot />
</tbody>
</table>
</div>
</template>

<script setup>
defineProps({
headers: {
type: Array,
required: true,
default: () => [],
},
})
</script>

<style lang="stylus" scoped>
table {
border-collapse: collapse;
border-spacing: 0;
width: 100%;
max-width: 100%;

thead {
border-top: 1px solid #e0e0e0;
border-bottom: 1px solid #e0e0e0;
background-color: #f5f5f5;
}

th {
position: relative;
text-align: left;
min-height: 32px;
font-size: 12px;
letter-spacing: 0.5px;
color: #707070;
text-transform: uppercase;
font-weight: bold;
padding-right: 12px;
padding-left: 12px;
height: 32px;
line-height: 32px;
}

tbody {
& ::slotted(tr) {
border-bottom: 1px solid #e0e0e0;
margin: 100px;
padding: 100px;
line-height: 50px;
}
}

.splitpane {
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 8px !important;
padding-top: 4px;
padding-bottom: 4px;

&:after {
content: "";
display: block;
width: 1px;
height: 100%;
margin-left: auto;
margin-right: auto;
border-radius: 2px;
background-color: #e0e0e0;
}
}
}

</style>