196854446e1b5ae685425ef960d150e61cf64d33
[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         <styled.svg
79           dangerouslySetInnerHTML={
80             Object {
81               "__html": "",
82             }
83           }
84           value=""
85         />
86       </Col>
87     </FormGroup>
88     <FormGroup
89       as={
90         Object {
91           "$$typeof": Symbol(react.forward_ref),
92           "defaultProps": Object {
93             "noGutters": false,
94           },
95           "render": [Function],
96         }
97       }
98       controlId="formBasicChecbox"
99     >
100       <FormCheck
101         disabled={false}
102         inline={false}
103         isInvalid={false}
104         isValid={false}
105         title=""
106         type="checkbox"
107       >
108         <FormCheckLabel>
109           Read Only Mode:
110         </FormCheckLabel>
111         <Styled(FormCheckInput)
112           style={
113             Object {
114               "marginLeft": "3.5em",
115             }
116           }
117           type="checkbox"
118         />
119       </FormCheck>
120     </FormGroup>
121   </ModalBody>
122   <ModalFooter>
123     <Button
124       active={false}
125       disabled={false}
126       onClick={[Function]}
127       type="null"
128       variant="secondary"
129     >
130       Cancel
131     </Button>
132     <Button
133       active={false}
134       disabled={false}
135       onClick={[Function]}
136       type="submit"
137       variant="primary"
138     >
139       Open
140     </Button>
141   </ModalFooter>
142 </Styled(Bootstrap(Modal))>
143 `;