@@ -4,12 +4,7 @@ import { AddressInfo } from './address-info';
4
4
import { CardDef , field , contains } from ' https://cardstack.com/base/card-api' ;
5
5
import { Component } from ' https://cardstack.com/base/card-api' ;
6
6
import StringField from ' https://cardstack.com/base/string' ;
7
- import {
8
- FieldContainer ,
9
- CardContainer ,
10
- IconButton ,
11
- } from ' @cardstack/boxel-ui/components' ;
12
- import { Sparkle } from ' @cardstack/boxel-ui/icons' ;
7
+ import { FieldContainer , CardContainer } from ' @cardstack/boxel-ui/components' ;
13
8
14
9
class Isolated extends Component <typeof ContactForm > {
15
10
get hasTitleField() {
@@ -19,21 +14,12 @@ class Isolated extends Component<typeof ContactForm> {
19
14
<template >
20
15
<div class =' decorative-header' ></div >
21
16
22
- <CardContainer @ displayBoundaries ={{ false }} class =' card- container' >
17
+ <CardContainer @ displayBoundaries ={{ false }} class =' container' >
23
18
{{#if this . hasTitleField }}
24
19
<h2 ><@ fields.title /></h2 >
25
20
{{/if }}
26
21
27
22
<div class =' card-form-display' >
28
- <IconButton
29
- @ icon ={{Sparkle }}
30
- @ width =' 22px'
31
- @ height =' 22px'
32
- @ variant =' undefined'
33
- class =' icon-profile'
34
- aria-label =' Profile'
35
- />
36
-
37
23
<div class =' contact-form-details' >
38
24
39
25
<div class =' field-input' >
@@ -77,26 +63,23 @@ class Isolated extends Component<typeof ContactForm> {
77
63
font-size : 2.2rem ;
78
64
margin : 0 ;
79
65
}
80
- .card- container {
66
+ .container {
81
67
width : 100% ;
82
68
padding : 1rem ;
83
69
display : grid ;
84
70
margin : auto ;
85
71
gap : var (--boxel-sp-lg );
86
72
}
87
-
88
73
.card-form-display {
89
74
position : relative ;
90
75
}
91
-
92
76
.icon-profile {
93
77
position : absolute ;
94
78
top : 1px ;
95
79
right : 1px ;
96
80
width : 50px ;
97
81
height : 50px ;
98
82
}
99
-
100
83
.contact-form-details {
101
84
border : 1px solid var (--boxel-300 );
102
85
border-radius : var (--boxel-border-radius-xl );
@@ -118,11 +101,9 @@ class Isolated extends Component<typeof ContactForm> {
118
101
flex-wrap : wrap ;
119
102
min-width : 280px ;
120
103
}
121
-
122
104
.field-input > label {
123
105
font-weight : 700 ;
124
106
}
125
-
126
107
.decorative-header {
127
108
background-image : url (https://i.imgur.com/PQuDAEo.jpg );
128
109
height : var (--boxel-sp-xl );
@@ -135,12 +116,10 @@ class Isolated extends Component<typeof ContactForm> {
135
116
margin : 0px ;
136
117
text-align : center ;
137
118
}
138
-
139
119
@media (min-width : 767px ) {
140
120
.contact-form-details {
141
121
gap : var (--boxel-sp-lg );
142
122
}
143
-
144
123
.field-input {
145
124
display : flex ;
146
125
gap : var (--boxel-sp );
@@ -155,23 +134,15 @@ class Isolated extends Component<typeof ContactForm> {
155
134
156
135
class View extends Component <typeof ContactForm > {
157
136
<template >
158
- <CardContainer @ displayBoundaries ={{ true }} class =' card-container' >
159
- <IconButton
160
- @ icon ={{Sparkle }}
161
- @ width =' 22px'
162
- @ height =' 22px'
163
- @ variant =' undefined'
164
- class =' icon-profile'
165
- aria-label =' Profile'
166
- />
137
+ <CardContainer @ displayBoundaries ={{ true }} class =' container' >
167
138
<div class =' content' >
168
139
<label >User</label >
169
140
<h2 ><@ fields.name /></h2 >
170
141
</div >
171
142
</CardContainer >
172
143
173
144
<style >
174
- .card- container {
145
+ .container {
175
146
padding : var (--boxel-sp-lg );
176
147
display : grid ;
177
148
gap : var (--boxel-sp );
@@ -196,7 +167,7 @@ class View extends Component<typeof ContactForm> {
196
167
197
168
class Edit extends Component <typeof ContactForm > {
198
169
<template >
199
- <CardContainer @ displayBoundaries ={{ true }} class =' card- container' >
170
+ <CardContainer @ displayBoundaries ={{ true }} class =' container' >
200
171
<FieldContainer
201
172
@ tag =' label'
202
173
@ label =' Title'
@@ -207,7 +178,9 @@ class Edit extends Component<typeof ContactForm> {
207
178
<@ fields.name />
208
179
</FieldContainer >
209
180
210
- <@ fields.email />
181
+ <FieldContainer @ tag =' label' @ label =' Email' @ vertical ={{ true }} >
182
+ <@ fields.email />
183
+ </FieldContainer >
211
184
212
185
<FieldContainer @ tag =' label' @ label =' Phone' @ vertical ={{ true }} >
213
186
<@ fields.phone />
@@ -228,7 +201,7 @@ class Edit extends Component<typeof ContactForm> {
228
201
</CardContainer >
229
202
230
203
<style >
231
- .card- container {
204
+ .container {
232
205
padding : var (--boxel-sp-lg );
233
206
display : grid ;
234
207
gap : var (--boxel-sp );
@@ -241,26 +214,21 @@ export class ContactForm extends CardDef {
241
214
@field title = contains (StringField , {
242
215
description: ` Contact Form Title ` ,
243
216
});
244
-
245
217
@field name = contains (UserName , {
246
218
description: ` User's Full Name ` ,
247
219
});
248
-
249
220
@field email = contains (UserEmail , {
250
221
description: ` User's Email ` ,
251
222
});
252
-
253
223
@field phone = contains (StringField , {
254
224
description: ` User's phone number ` ,
255
225
});
256
-
257
226
@field fax = contains (StringField , {
258
227
description: ` User's Fax Number ` ,
259
228
});
260
229
@field department = contains (StringField , {
261
230
description: ` User's Department ` ,
262
231
});
263
-
264
232
@field addressInfo = contains (AddressInfo , {
265
233
description: ` User's AddressInfo ` ,
266
234
});
0 commit comments