@progressive-development/pd-order 0.5.5 → 0.5.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -163,7 +163,7 @@ class PdOrderContacts extends LitElement {
163
163
  <pd-contact
164
164
  id="billingContactId"
165
165
  class="collapse-contact"
166
- .requiredField="${this.requiredFields}"
166
+ .requiredFields="${this.requiredFields}"
167
167
  .contact="${this.billingContact}"
168
168
  ></pd-contact>
169
169
  ` : html`
@@ -194,7 +194,7 @@ class PdOrderContacts extends LitElement {
194
194
  <pd-contact
195
195
  id="propertyContactId"
196
196
  class="collapse-contact"
197
- .requiredField="${["street", "streetNr", "zip", "city"]}"
197
+ .requiredFields="${["street", "streetNr", "zip", "city"]}"
198
198
  .inputFields="${["street", "city", "additionalHint"]}"
199
199
  .contact="${this.propertyContact}"
200
200
  ?withPropertyDate="${this.withPropertyDate}"
@@ -216,7 +216,7 @@ class PdOrderContacts extends LitElement {
216
216
  <pd-contact
217
217
  id="adminContactId"
218
218
  class="collapse-contact"
219
- .requiredField="${this.requiredFields}"
219
+ .requiredFields="${this.requiredFields}"
220
220
  .contact="${this.adminContact}"
221
221
  ></pd-contact>
222
222
  ` : html`
@@ -225,6 +225,8 @@ class PdOrderSummary extends LitElement {
225
225
  ?withPayment="${this.withPayment}"
226
226
  .orderContact="${this.order.contacts.orderContact}"
227
227
  .billingContact="${this.order.contacts.billingContact}"
228
+ .adminContact="${this.order.contacts.adminContact}"
229
+ .propertyContact="${this.order.contacts.propertyContact}"
228
230
  summary
229
231
  >
230
232
  </pd-order-contacts>
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Progressive Development Order Component",
4
4
  "author": "PD Progressive Development",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
- "version": "0.5.5",
6
+ "version": "0.5.7",
7
7
  "main": "./dist/index.js",
8
8
  "module": "./dist/index.js",
9
9
  "exports": {