-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from fair4health/v1.1.0
v1.1.0
- Loading branch information
Showing
13 changed files
with
307 additions
and
106 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "fair4health-data-curation-tool", | ||
"productName": "FAIR4Health Data Curation Tool", | ||
"version": "1.0.1", | ||
"version": "1.1.0", | ||
"private": true, | ||
"author": "SRDC Corporation <[email protected]>", | ||
"description": "FAIR4Health | Data Curation and Validation Tool", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
<template> | ||
<q-dialog ref="dialog"> | ||
<q-card class="dialog-card"> | ||
<q-card-section class="row items-center"> | ||
<div class="text-h6"> | ||
<q-icon name="visibility" color="primary" size="sm" /> | ||
{{ $t('TITLES.SNAPSHOT_OF_DATA') }} | ||
</div> | ||
<q-space /> | ||
<q-btn flat round dense icon="close" @click="onCloseClick" /> | ||
</q-card-section> | ||
|
||
<q-separator /> | ||
|
||
<q-card-section> | ||
<q-table | ||
flat | ||
bordered | ||
binary-state-sort | ||
:columns="columns" | ||
:data="entries" | ||
:pagination.sync="pagination" | ||
:rows-per-page-options="[10]" | ||
> | ||
<template v-slot:header="props"> | ||
<tr :props="props"> | ||
<q-th | ||
v-for="col in props.cols" | ||
:key="col.name" | ||
:props="props" | ||
class="bg-grey-2" | ||
> | ||
<span class="vertical-middle text-grey-9"> | ||
{{ col.label }} | ||
</span> | ||
</q-th> | ||
</tr> | ||
</template> | ||
</q-table> | ||
</q-card-section> | ||
|
||
<q-separator /> | ||
<q-card-actions align="right"> | ||
<q-btn flat color="primary" :label="$t('BUTTONS.CLOSE')" @click="onCloseClick" /> | ||
</q-card-actions> | ||
</q-card> | ||
</q-dialog> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import { Component, Mixins, Prop } from 'vue-property-decorator' | ||
import ModalMixin from '@/common/mixins/modalMixin' | ||
@Component | ||
export default class SnapshotDataCard extends Mixins(ModalMixin) { | ||
@Prop({required: true}) columns: any | ||
@Prop({required: true}) entries: any | ||
private pagination = {page: 1, rowsPerPage: 10} | ||
} | ||
</script> | ||
|
||
<style lang="stylus"> | ||
.dialog-card | ||
width 900px !important | ||
max-width 80vw !important | ||
</style> |
Oops, something went wrong.