-
Notifications
You must be signed in to change notification settings - Fork 6
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 #349 from EmmaRamirez/beta
Release: 1.4.0
- Loading branch information
Showing
171 changed files
with
4,304 additions
and
1,647 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
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,13 @@ | ||
import { Action } from 'actions'; | ||
import { DialogViewType } from 'models'; | ||
|
||
export type TOGGLE_DIALOG = 'TOGGLE_DIALOG'; | ||
export const TOGGLE_DIALOG: TOGGLE_DIALOG = 'TOGGLE_DIALOG'; | ||
|
||
export type toggleDialog = (dialogTarget: DialogViewType) => Action<TOGGLE_DIALOG>; | ||
export const toggleDialog = (dialogTarget: DialogViewType): Action<TOGGLE_DIALOG> => { | ||
return { | ||
type: TOGGLE_DIALOG, | ||
dialog: dialogTarget, | ||
}; | ||
}; |
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,11 @@ | ||
import { Action } from './action'; | ||
|
||
export type TRIGGER_DOWNLOAD = 'TRIGGER_DOWNLOAD'; | ||
export const TRIGGER_DOWNLOAD: TRIGGER_DOWNLOAD = 'TRIGGER_DOWNLOAD'; | ||
|
||
export type triggerDownload = () => Action<TRIGGER_DOWNLOAD, boolean>; | ||
export const triggerDownload = (): Action<TRIGGER_DOWNLOAD, boolean> => { | ||
return { | ||
type: TRIGGER_DOWNLOAD, | ||
}; | ||
}; |
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,35 @@ | ||
import { Action } from './action'; | ||
import { History } from 'reducers/editorHistory'; | ||
|
||
export type UPDATE_EDITOR_HISTORY = 'UPDATE_EDITOR_HISTORY'; | ||
export const UPDATE_EDITOR_HISTORY: UPDATE_EDITOR_HISTORY = 'UPDATE_EDITOR_HISTORY'; | ||
|
||
export type updateEditorHistory = (present: any) => Action<UPDATE_EDITOR_HISTORY, any>; | ||
export const updateEditorHistory = (present: any): Action<UPDATE_EDITOR_HISTORY, any> => { | ||
return { | ||
type: UPDATE_EDITOR_HISTORY, | ||
present, | ||
}; | ||
}; | ||
|
||
export type UNDO_EDITOR_HISTORY = 'UNDO_EDITOR_HISTORY'; | ||
export const UNDO_EDITOR_HISTORY: UNDO_EDITOR_HISTORY = 'UNDO_EDITOR_HISTORY'; | ||
|
||
export type undoEditorHistory = (present: any) => Action<UNDO_EDITOR_HISTORY, any>; | ||
export const undoEditorHistory = (present: any): Action<UNDO_EDITOR_HISTORY, any> => { | ||
return { | ||
type: UNDO_EDITOR_HISTORY, | ||
present, | ||
}; | ||
}; | ||
|
||
export type REDO_EDITOR_HISTORY = 'REDO_EDITOR_HISTORY'; | ||
export const REDO_EDITOR_HISTORY: REDO_EDITOR_HISTORY = 'REDO_EDITOR_HISTORY'; | ||
|
||
export type redoEditorHistory = (present: any) => Action<REDO_EDITOR_HISTORY, any>; | ||
export const redoEditorHistory = (present: any): Action<REDO_EDITOR_HISTORY, any> => { | ||
return { | ||
type: REDO_EDITOR_HISTORY, | ||
present, | ||
}; | ||
}; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Oops, something went wrong.