-
Notifications
You must be signed in to change notification settings - Fork 1
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 #334 from Duke-MatSci/#333_XLS_VALIDATION_LIST
feat(core): #333 Valid Curation List Item Page
- Loading branch information
Showing
42 changed files
with
1,268 additions
and
184 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -530,3 +530,9 @@ | |
|
||
} | ||
} | ||
|
||
.spreadsheet_list_form { | ||
.md-chip.md-theme-default .md-icon.md-icon-image svg{ | ||
fill: $primary; | ||
} | ||
} |
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,38 @@ | ||
import gql from 'graphql-tag' | ||
|
||
export const CREATEMATERIAL_QUERY = gql` | ||
mutation CreateXlsxCurationList($input: materialsInput) { | ||
createXlsxCurationList(input: $input) { | ||
columns { | ||
field | ||
values | ||
user | ||
} | ||
} | ||
}` | ||
|
||
export const SEARCH_SPREADSHEETLIST_QUERY = gql` | ||
query GetXlsxCurationList($input: materialQueryInput) { | ||
getXlsxCurationList(input: $input) { | ||
totalItems | ||
pageSize | ||
pageNumber | ||
totalPages | ||
hasPreviousPage | ||
hasNextPage | ||
columns { | ||
field | ||
values | ||
user | ||
} | ||
} | ||
}` | ||
|
||
export const UPDATE_SPREADSHEETLIST = gql` | ||
mutation UpdateXlsxCurationList($input: columnsInput) { | ||
updateXlsxCurationList(input: $input) { | ||
field | ||
values | ||
user | ||
} | ||
}` |
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
Oops, something went wrong.