publish
This commit is contained in:
parent
65c71e4fec
commit
4171f80ad5
@ -5307,13 +5307,38 @@ var $author$project$Main$regions = _List_fromArray(
|
|||||||
_Utils_Tuple2('EW', 'West Europe, Amsterdam'),
|
_Utils_Tuple2('EW', 'West Europe, Amsterdam'),
|
||||||
_Utils_Tuple2('EN', 'North Europe, Dublin')
|
_Utils_Tuple2('EN', 'North Europe, Dublin')
|
||||||
]);
|
]);
|
||||||
|
var $elm$html$Html$label = _VirtualDom_node('label');
|
||||||
|
var $elm$virtual_dom$VirtualDom$style = _VirtualDom_style;
|
||||||
|
var $elm$html$Html$Attributes$style = $elm$virtual_dom$VirtualDom$style;
|
||||||
|
var $elm$virtual_dom$VirtualDom$text = _VirtualDom_text;
|
||||||
|
var $elm$html$Html$text = $elm$virtual_dom$VirtualDom$text;
|
||||||
|
var $author$project$Main$renderFormInput = F2(
|
||||||
|
function (alabel, ainput) {
|
||||||
|
return A2(
|
||||||
|
$elm$html$Html$div,
|
||||||
|
_List_Nil,
|
||||||
|
_List_fromArray(
|
||||||
|
[
|
||||||
|
A2(
|
||||||
|
$elm$html$Html$label,
|
||||||
|
_List_fromArray(
|
||||||
|
[
|
||||||
|
A2($elm$html$Html$Attributes$style, 'padding-right', '10px')
|
||||||
|
]),
|
||||||
|
_List_fromArray(
|
||||||
|
[
|
||||||
|
$elm$html$Html$text(alabel)
|
||||||
|
])),
|
||||||
|
ainput,
|
||||||
|
$author$project$Main$br_,
|
||||||
|
$author$project$Main$br_
|
||||||
|
]));
|
||||||
|
});
|
||||||
var $elm$html$Html$option = _VirtualDom_node('option');
|
var $elm$html$Html$option = _VirtualDom_node('option');
|
||||||
var $elm$core$Tuple$second = function (_v0) {
|
var $elm$core$Tuple$second = function (_v0) {
|
||||||
var y = _v0.b;
|
var y = _v0.b;
|
||||||
return y;
|
return y;
|
||||||
};
|
};
|
||||||
var $elm$virtual_dom$VirtualDom$text = _VirtualDom_text;
|
|
||||||
var $elm$html$Html$text = $elm$virtual_dom$VirtualDom$text;
|
|
||||||
var $elm$json$Json$Encode$string = _Json_wrap;
|
var $elm$json$Json$Encode$string = _Json_wrap;
|
||||||
var $elm$html$Html$Attributes$stringProperty = F2(
|
var $elm$html$Html$Attributes$stringProperty = F2(
|
||||||
function (key, string) {
|
function (key, string) {
|
||||||
@ -5372,51 +5397,53 @@ var $author$project$Main$view = function (model) {
|
|||||||
$author$project$Main$br_,
|
$author$project$Main$br_,
|
||||||
$author$project$Main$br_,
|
$author$project$Main$br_,
|
||||||
$author$project$Main$br_,
|
$author$project$Main$br_,
|
||||||
$elm$html$Html$text('code'),
|
|
||||||
A2(
|
A2(
|
||||||
$elm$html$Html$input,
|
$author$project$Main$renderFormInput,
|
||||||
_List_fromArray(
|
'code',
|
||||||
[
|
|
||||||
$elm$html$Html$Events$onInput($author$project$Main$InputCode),
|
|
||||||
$elm$html$Html$Attributes$value(model.E)
|
|
||||||
]),
|
|
||||||
_List_Nil),
|
|
||||||
$author$project$Main$br_,
|
|
||||||
$author$project$Main$br_,
|
|
||||||
$elm$html$Html$text('region'),
|
|
||||||
A2($author$project$Main$renderSelect, $author$project$Main$InputReg, $author$project$Main$regions),
|
|
||||||
$author$project$Main$br_,
|
|
||||||
$author$project$Main$br_,
|
|
||||||
$elm$html$Html$text('environment'),
|
|
||||||
A2($author$project$Main$renderSelect, $author$project$Main$InputEnv, $author$project$Main$envs),
|
|
||||||
$author$project$Main$br_,
|
|
||||||
$author$project$Main$br_,
|
|
||||||
$elm$html$Html$text('role'),
|
|
||||||
A2($author$project$Main$renderSelect, $author$project$Main$InputRole, $author$project$Main$roles),
|
|
||||||
$author$project$Main$br_,
|
|
||||||
$author$project$Main$br_,
|
|
||||||
$elm$html$Html$text('increment'),
|
|
||||||
A2(
|
A2(
|
||||||
$elm$html$Html$select,
|
$elm$html$Html$input,
|
||||||
_List_fromArray(
|
_List_fromArray(
|
||||||
[
|
[
|
||||||
$elm$html$Html$Events$onInput($author$project$Main$InputIncr)
|
$elm$html$Html$Events$onInput($author$project$Main$InputCode),
|
||||||
]),
|
$elm$html$Html$Attributes$value(model.E)
|
||||||
|
]),
|
||||||
|
_List_Nil)),
|
||||||
A2(
|
A2(
|
||||||
$elm$core$List$map,
|
$author$project$Main$renderFormInput,
|
||||||
|
'region',
|
||||||
|
A2($author$project$Main$renderSelect, $author$project$Main$InputReg, $author$project$Main$regions)),
|
||||||
|
A2(
|
||||||
|
$author$project$Main$renderFormInput,
|
||||||
|
'environment',
|
||||||
|
A2($author$project$Main$renderSelect, $author$project$Main$InputEnv, $author$project$Main$envs)),
|
||||||
|
A2(
|
||||||
|
$author$project$Main$renderFormInput,
|
||||||
|
'role',
|
||||||
|
A2($author$project$Main$renderSelect, $author$project$Main$InputRole, $author$project$Main$roles)),
|
||||||
|
A2(
|
||||||
|
$author$project$Main$renderFormInput,
|
||||||
|
'increment',
|
||||||
|
A2(
|
||||||
|
$elm$html$Html$select,
|
||||||
|
_List_fromArray(
|
||||||
|
[
|
||||||
|
$elm$html$Html$Events$onInput($author$project$Main$InputIncr)
|
||||||
|
]),
|
||||||
A2(
|
A2(
|
||||||
$elm$core$Basics$composeR,
|
$elm$core$List$map,
|
||||||
$elm$core$String$fromInt,
|
|
||||||
A2(
|
A2(
|
||||||
$elm$core$Basics$composeR,
|
$elm$core$Basics$composeR,
|
||||||
function (s) {
|
$elm$core$String$fromInt,
|
||||||
return _Utils_Tuple2(s, s);
|
A2(
|
||||||
},
|
$elm$core$Basics$composeR,
|
||||||
$author$project$Main$renderOption)),
|
function (s) {
|
||||||
_Utils_ap(
|
return _Utils_Tuple2(s, s);
|
||||||
A2($elm$core$List$range, 1, 20),
|
},
|
||||||
_List_fromArray(
|
$author$project$Main$renderOption)),
|
||||||
[0]))))
|
_Utils_ap(
|
||||||
|
A2($elm$core$List$range, 1, 20),
|
||||||
|
_List_fromArray(
|
||||||
|
[0])))))
|
||||||
]));
|
]));
|
||||||
};
|
};
|
||||||
var $author$project$Main$main = $elm$browser$Browser$sandbox(
|
var $author$project$Main$main = $elm$browser$Browser$sandbox(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user