-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement a full-fledged plot search form section editor
The editor allows the user to specify all data necessary for setting up a customisable, but structurally coherent form for any specific plot search. This includes automatic identifier specification as well as protection of specific operationally important fields and sections containing said fields.
- Loading branch information
1 parent
ed0eaf2
commit 8c58ba9
Showing
24 changed files
with
1,898 additions
and
275 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
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,18 @@ | ||
// @flow | ||
import React from 'react'; | ||
import classNames from 'classnames'; | ||
|
||
type Props = { | ||
className?: string, | ||
} | ||
|
||
const MoveDownIcon = ({className}: Props): React$Element<'svg'> => | ||
<svg className={classNames('icons', 'icons__move-down', className)} viewBox="11 0 16 27"> | ||
<title>Siirrä alas</title> | ||
<g id="icon_sort2" stroke="none" strokeWidth="1" fillRule="evenodd"> | ||
<polygon id="Path-Copy-2" fillRule="nonzero" transform="translate(19.060000, 13.330000) rotate(-180.000000) translate(-19.060000, -13.330000) " points="19.06 5 24.12 10.41 20.19 10.41 20.19 21.66 17.93 21.66 17.93 10.41 14 10.41"></polygon> | ||
</g> | ||
</svg>; | ||
|
||
|
||
export default MoveDownIcon; |
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,17 @@ | ||
// @flow | ||
import React from 'react'; | ||
import classNames from 'classnames'; | ||
|
||
type Props = { | ||
className?: string, | ||
} | ||
|
||
const MoveUpIcon = ({className}: Props): React$Element<'svg'> => | ||
<svg className={classNames('icons', 'icons__move-up', className)} viewBox="0 0 16 27" version="1.1"> | ||
<title>Siirrä ylös</title> | ||
<g id="icon_sort2" stroke="none" strokeWidth="1" fillRule="evenodd"> | ||
<polygon id="Path" fillRule="nonzero" points="8.06 5 13.12 10.41 9.19 10.41 9.19 21.66 6.93 21.66 6.93 10.41 3 10.41"></polygon> | ||
</g> | ||
</svg>; | ||
|
||
export default MoveUpIcon; |
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
Oops, something went wrong.