Create SVG in UI
[clamp.git] / ui-react / src / components / dialogs / Loop / __snapshots__ / OpenLoopModal.test.js.snap
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`Verify OpenLoopModal Test the render method 1`] = `
4 <Styled(Bootstrap(Modal))
5   backdrop="static"
6   keyboard={false}
7   onHide={[Function]}
8   show={true}
9   size="xl"
10 >
11   <ModalHeader
12     closeButton={true}
13     closeLabel="Close"
14   >
15     <ModalTitle>
16       Open Model
17     </ModalTitle>
18   </ModalHeader>
19   <ModalBody>
20     <FormGroup
21       as={
22         Object {
23           "$$typeof": Symbol(react.forward_ref),
24           "defaultProps": Object {
25             "noGutters": false,
26           },
27           "render": [Function],
28         }
29       }
30       controlId="formPlaintextEmail"
31     >
32       <FormLabel
33         column={true}
34         sm="2"
35         srOnly={false}
36       >
37         Model Name:
38       </FormLabel>
39       <Col
40         sm="10"
41       >
42         <StateManager
43           defaultInputValue=""
44           defaultMenuIsOpen={false}
45           defaultValue={null}
46           onChange={[Function]}
47           options={Array []}
48         />
49       </Col>
50     </FormGroup>
51     <FormGroup
52       as={
53         Object {
54           "$$typeof": Symbol(react.forward_ref),
55           "defaultProps": Object {
56             "noGutters": false,
57           },
58           "render": [Function],
59         }
60       }
61       controlId="formSvgPreview"
62       style={
63         Object {
64           "alignItems": "center",
65         }
66       }
67     >
68       <FormLabel
69         column={true}
70         sm="2"
71         srOnly={false}
72       >
73         Model Preview:
74       </FormLabel>
75       <Col
76         sm="10"
77       >
78         <withRouter(SvgGenerator)
79           clickable={false}
80           generatedFrom="INSTANCE"
81           loopCache={
82             LoopCache {
83               "loopJsonCache": Object {},
84             }
85           }
86         />
87       </Col>
88     </FormGroup>
89     <FormGroup
90       as={
91         Object {
92           "$$typeof": Symbol(react.forward_ref),
93           "defaultProps": Object {
94             "noGutters": false,
95           },
96           "render": [Function],
97         }
98       }
99       controlId="formBasicCheckbox"
100     >
101       <FormCheck
102         disabled={false}
103         inline={false}
104         isInvalid={false}
105         isValid={false}
106         title=""
107         type="checkbox"
108       >
109         <FormCheckLabel>
110           Read Only Mode:
111         </FormCheckLabel>
112         <Styled(FormCheckInput)
113           style={
114             Object {
115               "marginLeft": "3.5em",
116             }
117           }
118           type="checkbox"
119         />
120       </FormCheck>
121     </FormGroup>
122   </ModalBody>
123   <ModalFooter>
124     <Button
125       active={false}
126       disabled={false}
127       onClick={[Function]}
128       type="null"
129       variant="secondary"
130     >
131       Cancel
132     </Button>
133     <Button
134       active={false}
135       disabled={false}
136       onClick={[Function]}
137       type="submit"
138       variant="primary"
139     >
140       Open
141     </Button>
142   </ModalFooter>
143 </Styled(Bootstrap(Modal))>
144 `;