forked from cardstack/boxel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaddress.gts
29 lines (27 loc) · 858 Bytes
/
address.gts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import {
contains,
field,
Component,
FieldDef,
} from 'https://cardstack.com/base/card-api';
import StringCard from 'https://cardstack.com/base/string';
export class Address extends FieldDef {
static displayName = 'Address';
@field streetAddress = contains(StringCard); // required
@field city = contains(StringCard); // required
@field region = contains(StringCard);
@field postalCode = contains(StringCard);
@field poBoxNumber = contains(StringCard);
@field country = contains(StringCard); // required // dropdown
static embedded = class Embedded extends Component<typeof this> {
<template>
<address>
<div><@fields.streetAddress /></div>
<@fields.city />
<@fields.region />
<@fields.postalCode /><@fields.poBoxNumber />
<@fields.country />
</address>
</template>
};
}