@progressive-development/pd-forms 0.0.57 → 0.0.58

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.
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Webcomponent pd-forms following open-wc recommendations",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "author": "PD Progressive Development",
6
- "version": "0.0.57",
6
+ "version": "0.0.58",
7
7
  "main": "index.js",
8
8
  "module": "index.js",
9
9
  "scripts": {
@@ -39,16 +39,9 @@ export class PdFormContainer extends PdBaseUI {
39
39
  static get properties() {
40
40
  return {
41
41
  requiredFieldInfo: { type: Boolean},
42
- locale: { type: String }
43
42
  };
44
43
  }
45
44
 
46
- updated(changedProperties) {
47
- if (changedProperties.has("locale") && this.locale) {
48
- // setLocale(this.locale);
49
- }
50
- }
51
-
52
45
  firstUpdated() {
53
46
  // add validation event listener
54
47
  this.addEventListener('validate-form', this._validateForm);
@@ -82,7 +82,7 @@ return html`
82
82
  <h3>Defaults Inputs with labels</h3>
83
83
  <div
84
84
  style="display: flex; justify-content: space-between; max-width: 800px"
85
- >
85
+ >
86
86
  <pd-select
87
87
  id="testId1"
88
88
  ?gradient="${gradient}"
@@ -100,8 +100,8 @@ return html`
100
100
  ?gradient="${gradient}"
101
101
  style="${style}"
102
102
  label="Input Area Label"
103
- ></pd-input-area>
104
- </div>
103
+ ></pd-input-area>
104
+ </div>
105
105
 
106
106
  <div
107
107
  style="display: flex; justify-content: space-between; max-width: 800px"