-
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.
*: string input function modification
- Loading branch information
1 parent
6d4a0ff
commit f22508b
Showing
4 changed files
with
60 additions
and
44 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
// inputs | ||
export const TOGGLE_DRAWER = 'TOGGLE_DRAWER' | ||
// General actions | ||
export const OPEN_DRAWER = "OPEN_DRAWER" | ||
export const CLOSE_DRAWER = "CLOSE_DRAWER" | ||
export const SET_DATATYPE = 'SET_DATATYPE' | ||
export const SET_OUTPUT = 'SET_OUTPUT' | ||
export const ALTER_ALL = 'ALTER_ALL' | ||
|
||
// String | ||
export const UPDATE_CHARSET = 'UPDATE_CHARSET' | ||
export const UPDATE_DELIMITER = 'UPDATE_DELIMITER' | ||
export const UPDATE_NUM_CHARS = 'UPDATE_NUM_CHARS' | ||
export const SET_DATATYPE = 'SET_DATATYPE' | ||
export const UPDATE_NUM_CASES = 'UPDATE_NUM_CASES' | ||
export const UPDATE_ALLOW_DUPLICATE = 'UPDATE_ALLOW_DUPLICATE' | ||
|
||
// outputs | ||
export const SET_OUTPUT = 'SET_OUTPUT' |
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 |
---|---|---|
@@ -1,2 +1,7 @@ | ||
import { ALTER_ALL } from './ActionTypes' | ||
export * from './StringActions' | ||
export * from './VectorActions' | ||
export * from './VectorActions' | ||
|
||
export const clearAll = () => ({ | ||
type: ALTER_ALL | ||
}) |