-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(annotation: note): extend support for dynamic type to other schemas
Note dialog is shared by all schemas BREAKING CHANGE: Note dialog is share by all schemas and it need to account for their variations.
- Loading branch information
Showing
9 changed files
with
122 additions
and
255 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 was deleted.
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,23 +1,23 @@ | ||
var citation = require('./dialogs/citation.js'); | ||
var correction = require('./dialogs/correction.js'); | ||
var date = require('./dialogs/date.js'); | ||
var keyword = require('./dialogs/keyword.js'); | ||
var link = require('./dialogs/link.js'); | ||
var note = require('./dialogs/note.js'); | ||
var org = require('./dialogs/org.js'); | ||
var person = require('./dialogs/person.js'); | ||
var place = require('./dialogs/place.js'); | ||
var title = require('./dialogs/title.js'); | ||
const citation = require('./dialogs/citation.js'); | ||
const correction = require('./dialogs/correction.js'); | ||
const date = require('./dialogs/date.js'); | ||
const keyword = require('./dialogs/keyword.js'); | ||
const link = require('./dialogs/link.js'); | ||
const note = require('../sharedDialogs/note.js'); | ||
const org = require('./dialogs/org.js'); | ||
const person = require('./dialogs/person.js'); | ||
const place = require('./dialogs/place.js'); | ||
const title = require('./dialogs/title.js'); | ||
|
||
module.exports = { | ||
citation: citation, | ||
correction: correction, | ||
date: date, | ||
keyword: keyword, | ||
link: link, | ||
note: note, | ||
org: org, | ||
person: person, | ||
place: place, | ||
title: title | ||
}; | ||
citation, | ||
correction, | ||
date, | ||
keyword, | ||
link, | ||
note, | ||
org, | ||
person, | ||
place, | ||
title, | ||
}; |
This file was deleted.
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,23 +1,23 @@ | ||
var citation = require('./dialogs/citation.js'); | ||
var correction = require('./dialogs/correction.js'); | ||
var date = require('./dialogs/date.js'); | ||
var keyword = require('./dialogs/keyword.js'); | ||
var link = require('./dialogs/link.js'); | ||
var note = require('./dialogs/note.js'); | ||
var org = require('./dialogs/org.js'); | ||
var person = require('./dialogs/person.js'); | ||
var place = require('./dialogs/place.js'); | ||
var title = require('./dialogs/title.js'); | ||
const citation = require('./dialogs/citation.js'); | ||
const correction = require('./dialogs/correction.js'); | ||
const date = require('./dialogs/date.js'); | ||
const keyword = require('./dialogs/keyword.js'); | ||
const link = require('./dialogs/link.js'); | ||
const note = require('../sharedDialogs/note.js'); | ||
const org = require('./dialogs/org.js'); | ||
const person = require('./dialogs/person.js'); | ||
const place = require('./dialogs/place.js'); | ||
const title = require('./dialogs/title.js'); | ||
|
||
module.exports = { | ||
citation: citation, | ||
correction: correction, | ||
date: date, | ||
keyword: keyword, | ||
link: link, | ||
note: note, | ||
org: org, | ||
person: person, | ||
place: place, | ||
title: title | ||
}; | ||
citation, | ||
correction, | ||
date, | ||
keyword, | ||
link, | ||
note, | ||
org, | ||
person, | ||
place, | ||
title, | ||
}; |
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
Oops, something went wrong.