@progressive-development/pd-page 0.1.31 → 0.1.33
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 +4 -4
- package/src/PdContactUs.js +8 -6
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Progressive development page helper, teaser, menu, footer.",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE",
|
|
5
5
|
"author": "PD Progressive Development",
|
|
6
|
-
"version": "0.1.
|
|
6
|
+
"version": "0.1.33",
|
|
7
7
|
"main": "index.js",
|
|
8
8
|
"module": "index.js",
|
|
9
9
|
"scripts": {
|
|
@@ -17,9 +17,9 @@
|
|
|
17
17
|
"storybook:build": "npm run analyze -- --exclude dist && build-storybook"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@progressive-development/pd-contact": "^0.1.
|
|
21
|
-
"@progressive-development/pd-dialog": "^0.1.
|
|
22
|
-
"@progressive-development/pd-forms": "^0.1.
|
|
20
|
+
"@progressive-development/pd-contact": "^0.1.17",
|
|
21
|
+
"@progressive-development/pd-dialog": "^0.1.20",
|
|
22
|
+
"@progressive-development/pd-forms": "^0.1.22",
|
|
23
23
|
"@progressive-development/pd-icon": "^0.1.13",
|
|
24
24
|
"@progressive-development/pd-shared-styles": "^0.1.1",
|
|
25
25
|
"lit": "^2.2.0",
|
package/src/PdContactUs.js
CHANGED
|
@@ -110,7 +110,7 @@ export class PdContactUs extends LitElement {
|
|
|
110
110
|
render() {
|
|
111
111
|
return html`
|
|
112
112
|
<div class="content-block">
|
|
113
|
-
<h2>
|
|
113
|
+
<h2>Kontakt</h2>
|
|
114
114
|
|
|
115
115
|
<div class="contact-block">
|
|
116
116
|
<div class="left-content">
|
|
@@ -127,7 +127,7 @@ export class PdContactUs extends LitElement {
|
|
|
127
127
|
<pd-input
|
|
128
128
|
id="nameInputId"
|
|
129
129
|
class="quarter3"
|
|
130
|
-
placeHolder="
|
|
130
|
+
placeHolder="Name"
|
|
131
131
|
valueName="name"
|
|
132
132
|
autoCompleteName="full-name"
|
|
133
133
|
required
|
|
@@ -151,7 +151,7 @@ export class PdContactUs extends LitElement {
|
|
|
151
151
|
<pd-input
|
|
152
152
|
id="phoneInputId"
|
|
153
153
|
class="quarter3"
|
|
154
|
-
placeHolder="
|
|
154
|
+
placeHolder="Telefon"
|
|
155
155
|
valueName="phone"
|
|
156
156
|
field-type="phone"
|
|
157
157
|
autoCompleteName="tel"
|
|
@@ -163,15 +163,17 @@ export class PdContactUs extends LitElement {
|
|
|
163
163
|
<pd-input-area
|
|
164
164
|
id="msgInputId"
|
|
165
165
|
class="quarter3-area"
|
|
166
|
-
placeHolder="
|
|
166
|
+
placeHolder="Nachricht"
|
|
167
167
|
rows="15"
|
|
168
168
|
required
|
|
169
169
|
valueName="msg"
|
|
170
170
|
></pd-input-area>
|
|
171
171
|
</pd-form-row>
|
|
172
172
|
</pd-form-container>
|
|
173
|
-
|
|
174
|
-
<pd-
|
|
173
|
+
|
|
174
|
+
<pd-form-row>
|
|
175
|
+
<pd-button class="quarter3" text="Absenden" @click="${this._sendMail}" primary></pd-button>
|
|
176
|
+
</pd-form-row>
|
|
175
177
|
</div>
|
|
176
178
|
</div>
|
|
177
179
|
</div>
|