comand-component-library 4.1.90 → 4.1.92
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/dist/comand-component-library.js +6467 -5877
- package/dist/style.css +1 -1
- package/package.json +3 -3
- package/src/ComponentLibrary.vue +19 -8
- package/src/assets/data/listOfComponents.json +1 -0
- package/src/assets/data/mail-tool.json +50 -0
- package/src/assets/data/tabs.json +3 -3
- package/src/componentSettingsDataAndControls.vue +9 -18
- package/src/components/CmdAddressData.vue +3 -2
- package/src/components/CmdBackToTopButton.vue +0 -1
- package/src/components/CmdBasicForm.vue +2 -1
- package/src/components/CmdForm.vue +28 -10
- package/src/components/CmdFormElement.vue +7 -3
- package/src/components/CmdGoogleMaps.vue +5 -1
- package/src/components/CmdImage.vue +1 -1
- package/src/components/CmdInputGroup.vue +1 -1
- package/src/components/CmdLoginForm.vue +35 -20
- package/src/components/CmdMailTool.vue +151 -0
- package/src/components/CmdMailToolEntry.vue +230 -0
- package/src/components/CmdMailToolFilter.vue +210 -0
- package/src/components/CmdSiteHeader.vue +1 -1
- package/src/components/CmdTabs.vue +2 -2
- package/src/mixins/CmdMailToolEntry/DefaultMessageProperties.js +12 -0
- package/src/utils/address.js +29 -0
- package/src/utils/date.js +29 -20
@@ -1,20 +1,20 @@
|
|
1
1
|
[
|
2
2
|
{
|
3
|
-
"
|
3
|
+
"text": "Tab 1",
|
4
4
|
"headlineText": "Tab 1 Headline",
|
5
5
|
"headlineLevel": 4,
|
6
6
|
"iconClass": "icomoon-free:airplane",
|
7
7
|
"htmlContent": "<p>Content for Tab 1</p>"
|
8
8
|
},
|
9
9
|
{
|
10
|
-
"
|
10
|
+
"text": "Tab 2",
|
11
11
|
"headlineText": "Tab 2 Headline",
|
12
12
|
"headlineLevel": 4,
|
13
13
|
"iconClass": "icomoon-free:blocked",
|
14
14
|
"htmlContent": "<p>Content for Tab 2</p>"
|
15
15
|
},
|
16
16
|
{
|
17
|
-
"
|
17
|
+
"text": "Tab 3",
|
18
18
|
"headlineText": "Tab 3 Headline",
|
19
19
|
"headlineLevel": 4,
|
20
20
|
"iconClass": "cmd:linkedin",
|
@@ -449,16 +449,15 @@ data() {
|
|
449
449
|
]
|
450
450
|
},
|
451
451
|
cmdLoginFormSettingsData: {
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
text: "Login form"
|
452
|
+
cmdHeadlineLoginForm: {
|
453
|
+
headlineText: "Login",
|
454
|
+
headlineLevel: 4
|
456
455
|
},
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
456
|
+
cmdHeadlineSendLoginForm: {
|
457
|
+
headlineText: "Send Login",
|
458
|
+
headlineLevel: 4
|
459
|
+
},
|
460
|
+
orientation: "horizontal",
|
462
461
|
},
|
463
462
|
cmdLoginFormSettingsControls: {
|
464
463
|
orientation: [
|
@@ -509,10 +508,6 @@ data() {
|
|
509
508
|
},
|
510
509
|
cmdNewsletterSubscriptionSettingsData: {
|
511
510
|
buttonType: "submit",
|
512
|
-
legend: {
|
513
|
-
show: true,
|
514
|
-
text: "Stay up-to-date"
|
515
|
-
},
|
516
511
|
cmdInputGroup: {
|
517
512
|
inputElements: [
|
518
513
|
{
|
@@ -615,11 +610,7 @@ data() {
|
|
615
610
|
],
|
616
611
|
},
|
617
612
|
cmdSiteSearchSettingsData: {
|
618
|
-
useFilters: true
|
619
|
-
legend: {
|
620
|
-
show: true,
|
621
|
-
text: "Search"
|
622
|
-
}
|
613
|
+
useFilters: true
|
623
614
|
},
|
624
615
|
cmdSlideshowSettingsData: {
|
625
616
|
useSlot: false,
|
@@ -172,10 +172,11 @@
|
|
172
172
|
</template>
|
173
173
|
|
174
174
|
<script>
|
175
|
-
import
|
176
|
-
import {buildComponentPath, updateHandlerProvider} from "../utils/editmode.js"
|
175
|
+
// import functions
|
176
|
+
import {buildComponentPath, updateHandlerProvider} from "../utils/editmode.js"
|
177
177
|
|
178
178
|
// import mixins
|
179
|
+
import EditMode from "../mixins/EditMode.vue"
|
179
180
|
|
180
181
|
export default {
|
181
182
|
name: "CmdAddressData",
|
@@ -263,8 +263,9 @@
|
|
263
263
|
// import mixins
|
264
264
|
import I18n from "../mixins/I18n.js"
|
265
265
|
import DefaultMessageProperties from "../mixins/CmdBasicForm/DefaultMessageProperties.js"
|
266
|
-
import {ContactFormValidator} from "../utils/ContactFormValidation.js"
|
267
266
|
|
267
|
+
// import functions
|
268
|
+
import {ContactFormValidator} from "../utils/ContactFormValidation.js"
|
268
269
|
import {openFancyBox} from "./CmdFancyBox.vue"
|
269
270
|
|
270
271
|
export default {
|
@@ -37,19 +37,22 @@
|
|
37
37
|
/>
|
38
38
|
<!-- end loop for formElements -->
|
39
39
|
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
40
|
+
<div v-if="submitButtonOptions && (submitButtonOptions.position === 'insideFieldset' || submitButtonOptions.position === null)" class="flex-container">
|
41
|
+
<small v-if="mandatoryText" class="mandatory-text"><sup>*</sup>{{ mandatoryText }}</small>
|
42
|
+
<!-- begin submit-button (inside fieldset) -->
|
43
|
+
<button
|
44
|
+
:class="['button stretch-on-small-devices', {primary: submitButtonOptions.primary}, {disabled: submitButtonOptions.disabled}]"
|
45
|
+
:type="submitButtonOptions.type"
|
46
|
+
>
|
47
|
+
<span v-if="submitButtonOptions.iconClass" :class="submitButtonOptions.iconClass"></span>
|
48
|
+
<span v-if="submitButtonOptions.text">{{ submitButtonOptions.text }}</span>
|
49
|
+
</button>
|
50
|
+
<!-- end submit-button (inside fieldset) -->
|
51
|
+
</div>
|
50
52
|
</fieldset>
|
51
53
|
|
52
54
|
<div v-if="submitButtonOptions && submitButtonOptions.position === 'belowFieldset'" class="button-wrapper">
|
55
|
+
<small v-if="mandatoryText" class="mandatory-text"><sup>*</sup>{{ mandatoryText }}</small>
|
53
56
|
<!-- begin submit-button (below fieldset) -->
|
54
57
|
<button :class="['button stretch-on-small-devices', {primary: submitButtonOptions.primary}, {disabled: submitButtonOptions.disabled}]"
|
55
58
|
:type="submitButtonOptions.type || 'submit'">
|
@@ -170,6 +173,13 @@ export default {
|
|
170
173
|
submitButton: {
|
171
174
|
type: Object,
|
172
175
|
required: false
|
176
|
+
},
|
177
|
+
/**
|
178
|
+
* text to clarify which inputs are mandatory
|
179
|
+
*/
|
180
|
+
mandatoryText: {
|
181
|
+
type: String,
|
182
|
+
default: "mandatory inputs"
|
173
183
|
}
|
174
184
|
},
|
175
185
|
computed: {
|
@@ -284,6 +294,14 @@ export default {
|
|
284
294
|
}
|
285
295
|
}
|
286
296
|
|
297
|
+
.mandatory-text {
|
298
|
+
sup {
|
299
|
+
color: var(--primary-color);
|
300
|
+
font-size: 1.5rem;
|
301
|
+
top: 0;
|
302
|
+
}
|
303
|
+
}
|
304
|
+
|
287
305
|
.button, .button:last-child {
|
288
306
|
margin-left: auto;
|
289
307
|
}
|
@@ -71,7 +71,6 @@
|
|
71
71
|
<!-- begin inputfield -->
|
72
72
|
<template v-if="element === 'input' && $attrs.type !== 'search'">
|
73
73
|
<input
|
74
|
-
v-bind="elementAttributes"
|
75
74
|
:id="htmlId"
|
76
75
|
:class="inputClass"
|
77
76
|
@focus="tooltip = true"
|
@@ -83,8 +82,10 @@
|
|
83
82
|
:autocomplete="autocomplete"
|
84
83
|
:list="datalist ? datalist.id : null"
|
85
84
|
:value="modelValue"
|
85
|
+
:minlength="$attrs.type === 'password' ? '8' : null"
|
86
86
|
:maxlength="getMaxLength()"
|
87
87
|
ref="input"
|
88
|
+
v-bind="elementAttributes"
|
88
89
|
/>
|
89
90
|
</template>
|
90
91
|
<!-- end inputfield -->
|
@@ -829,8 +830,11 @@ export default {
|
|
829
830
|
const useValidation = event.target.closest("form")?.dataset.useValidation === "true"
|
830
831
|
|
831
832
|
if (useValidation) {
|
833
|
+
// get value from input-element
|
834
|
+
const value = event.target.value
|
835
|
+
|
832
836
|
// if input is filled, set status to success (expect for checkboxes and radiobuttons)
|
833
|
-
if (!["checkbox", "radio"].includes(this.$attrs.type) &&
|
837
|
+
if (!["checkbox", "radio"].includes(this.$attrs.type) && value) {
|
834
838
|
this.validationStatus = "success"
|
835
839
|
}
|
836
840
|
|
@@ -840,7 +844,7 @@ export default {
|
|
840
844
|
if (this.customRequirements) {
|
841
845
|
// check if customRequirement returns invalid result
|
842
846
|
const invalidCustomRequirement = this.customRequirements.some(requirement => {
|
843
|
-
return !requirement.valid(
|
847
|
+
return !requirement.valid(value)
|
844
848
|
})
|
845
849
|
|
846
850
|
// set validation-status if invalidCustomRequirement returns at least one invalid entry
|
@@ -95,8 +95,12 @@ export default {
|
|
95
95
|
border: var(--default-border);
|
96
96
|
border-radius: var(--default-border-radius);
|
97
97
|
|
98
|
+
&:hover, &:active, &:focus {
|
99
|
+
border-color: var(--hyperlink-color-highlighted);
|
100
|
+
}
|
101
|
+
|
98
102
|
iframe {
|
99
|
-
border-radius:
|
103
|
+
border-radius: inherit;
|
100
104
|
}
|
101
105
|
|
102
106
|
.cmd-system-message {
|
@@ -105,7 +105,7 @@
|
|
105
105
|
<!-- end image with figure/figcaption -->
|
106
106
|
|
107
107
|
<!-- begin image without figure/figcaption -->
|
108
|
-
<img v-else :src="imageSource" :alt="image?.alt" :title="image?.tooltip" @load="onImageLoaded"/>
|
108
|
+
<img v-else class="cmd-image" :src="imageSource" :alt="image?.alt" :title="image?.tooltip" @load="onImageLoaded"/>
|
109
109
|
<!-- end image without figure/figcaption -->
|
110
110
|
<!-- end default-view -->
|
111
111
|
</template>
|
@@ -322,7 +322,7 @@ export default {
|
|
322
322
|
/* overwrite default behavior from frontend-framework */
|
323
323
|
> .label-text {
|
324
324
|
display: inline-flex;
|
325
|
-
margin
|
325
|
+
margin: 0;
|
326
326
|
|
327
327
|
> span + a:has([class*="icon-"]) {
|
328
328
|
margin-left: calc(var(--default-margin) / 2);
|
@@ -73,21 +73,22 @@
|
|
73
73
|
|
74
74
|
<!-- begin link-type 'button' -->
|
75
75
|
<button
|
76
|
-
v-if="
|
77
|
-
:type="
|
78
|
-
|
76
|
+
v-if="buttonLoginDefaultOptions.linkType === 'button'"
|
77
|
+
:type="buttonLoginDefaultOptions.type === 'submit' ? 'submit' : 'button'"
|
78
|
+
v-bind="buttonLoginOptions"
|
79
|
+
:class="['button', { primary: buttonLoginDefaultOptions.primary }]"
|
79
80
|
@click="onClick"
|
80
81
|
:disabled="buttonLoginDisabled"
|
81
82
|
>
|
82
83
|
<!-- begin CmdIcon -->
|
83
84
|
<CmdIcon
|
84
|
-
v-if="
|
85
|
-
:iconClass="
|
86
|
-
:type="
|
87
|
-
:title="
|
85
|
+
v-if="buttonLoginDefaultOptions.icon.iconClass"
|
86
|
+
:iconClass="buttonLoginDefaultOptions.icon.iconClass"
|
87
|
+
:type="buttonLoginDefaultOptions.icon.iconType"
|
88
|
+
:title="buttonLoginDefaultOptions.icon.tooltip"
|
88
89
|
/>
|
89
90
|
<!-- end CmdIcon -->
|
90
|
-
<span v-if="
|
91
|
+
<span v-if="buttonLoginDefaultOptions.text">{{ buttonLoginDefaultOptions.text }}</span>
|
91
92
|
</button>
|
92
93
|
<!-- begin link-type 'button' -->
|
93
94
|
</div>
|
@@ -120,23 +121,25 @@
|
|
120
121
|
<!-- end slot for send-login-form -->
|
121
122
|
|
122
123
|
<div class="option-wrapper flex-container">
|
123
|
-
<a
|
124
|
+
<a href="#" @click.prevent="toggleSendLoginView">
|
124
125
|
<!-- begin CmdIcon -->
|
125
126
|
<CmdIcon
|
126
|
-
v-if="
|
127
|
-
:iconClass="
|
128
|
-
:type="
|
129
|
-
:title="
|
127
|
+
v-if="linkBackToLogin.icon && linkBackToLogin.icon.show && linkBackToLogin.icon.iconClass"
|
128
|
+
:iconClass="linkBackToLogin.icon.iconClass"
|
129
|
+
:type="linkBackToLogin.icon.iconType"
|
130
|
+
:title="linkBackToLogin.icon.tooltip"
|
130
131
|
/>
|
131
132
|
<!-- end CmdIcon -->
|
132
|
-
|
133
|
-
|
133
|
+
|
134
|
+
<span>
|
135
|
+
{{linkBackToLogin.text}}
|
134
136
|
</span>
|
135
137
|
</a>
|
136
138
|
|
137
139
|
<!-- begin link-type 'button' -->
|
138
140
|
<button
|
139
141
|
v-if="buttonSendLoginOptions.linkType === 'button'"
|
142
|
+
v-bind="buttonSendLoginOptions"
|
140
143
|
:type="buttonSendLoginOptions.type === 'submit' ? 'submit' : 'button'"
|
141
144
|
:class="['button', { primary: buttonSendLoginOptions.primary }]"
|
142
145
|
:disabled="buttonSendLoginDisabled"
|
@@ -221,8 +224,8 @@ export default {
|
|
221
224
|
default() {
|
222
225
|
return {
|
223
226
|
show: true,
|
224
|
-
align:
|
225
|
-
text:
|
227
|
+
align: "right",
|
228
|
+
text: "Forgot login form"
|
226
229
|
}
|
227
230
|
}
|
228
231
|
},
|
@@ -286,6 +289,9 @@ export default {
|
|
286
289
|
}
|
287
290
|
}
|
288
291
|
},
|
292
|
+
/**
|
293
|
+
* define link to create an account (that is linked to a register-form i.e.)
|
294
|
+
*/
|
289
295
|
linkCreateAccount: {
|
290
296
|
type: Object,
|
291
297
|
default() {
|
@@ -301,7 +307,10 @@ export default {
|
|
301
307
|
}
|
302
308
|
}
|
303
309
|
},
|
304
|
-
|
310
|
+
/**
|
311
|
+
* define link from "forgot-login-form"-view back to the default login-form
|
312
|
+
*/
|
313
|
+
linkBackToLogin: {
|
305
314
|
type: Object,
|
306
315
|
default() {
|
307
316
|
return {
|
@@ -310,7 +319,7 @@ export default {
|
|
310
319
|
iconClass: "icon-chevron-one-stripe-left",
|
311
320
|
tooltip: ""
|
312
321
|
},
|
313
|
-
text: "Back to login
|
322
|
+
text: "Back to login"
|
314
323
|
}
|
315
324
|
}
|
316
325
|
},
|
@@ -367,7 +376,7 @@ export default {
|
|
367
376
|
...this.cmdFormElementSendLogin
|
368
377
|
}
|
369
378
|
},
|
370
|
-
|
379
|
+
buttonLoginDefaultOptions() {
|
371
380
|
return {
|
372
381
|
linkType: "button", /* href, router, button */
|
373
382
|
type: "submit", /* submit, button */
|
@@ -382,6 +391,12 @@ export default {
|
|
382
391
|
...this.buttonLogin
|
383
392
|
}
|
384
393
|
},
|
394
|
+
buttonLoginOptions() {
|
395
|
+
return {
|
396
|
+
type: "submit",
|
397
|
+
...this.buttonLogin
|
398
|
+
}
|
399
|
+
},
|
385
400
|
buttonSendLoginOptions() {
|
386
401
|
return {
|
387
402
|
linkType: "button", /* href, router, button */
|
@@ -0,0 +1,151 @@
|
|
1
|
+
<template>
|
2
|
+
<CmdTabs class="cmd-mail-tool" v-bind="cmdTabs">
|
3
|
+
<!-- begin tab "inbox" -->
|
4
|
+
<template v-slot:tab-content-0>
|
5
|
+
<!-- begin CmdMailToolFilter (for inbox) -->
|
6
|
+
<CmdMailToolFilter v-bind="cmdMailToolFilterInbox" v-model="searchFilters"/>
|
7
|
+
<!-- end CmdMailToolFilter -->
|
8
|
+
|
9
|
+
<!-- begin CmdMailToolEntry -->
|
10
|
+
<CmdMailToolEntry :mails="filteredMailsInbox"/>
|
11
|
+
<!-- end CmdMailToolEntry (for inbox) -->
|
12
|
+
</template>
|
13
|
+
<!-- end tab "inbox" -->
|
14
|
+
|
15
|
+
<!-- begin tab "outbox" -->
|
16
|
+
<template v-slot:tab-content-1>
|
17
|
+
<!-- begin CmdMailToolFilter (for outbox) -->
|
18
|
+
<CmdMailToolFilter v-bind="cmdMailToolFilterOutbox" boxType="outbox"/>
|
19
|
+
<!-- end CmdMailToolFilter (for outbox) -->
|
20
|
+
|
21
|
+
<!-- begin CmdMailToolEntry -->
|
22
|
+
<CmdMailToolEntry boxType="outbox" :mails="mailsOutbox"/>
|
23
|
+
<!-- end CmdMailToolEntry -->
|
24
|
+
</template>
|
25
|
+
<!-- end tab "outbox" -->
|
26
|
+
</CmdTabs>
|
27
|
+
</template>
|
28
|
+
|
29
|
+
<script>
|
30
|
+
|
31
|
+
export default {
|
32
|
+
name: "CmdMailTool",
|
33
|
+
data() {
|
34
|
+
return {
|
35
|
+
searchFilters: {
|
36
|
+
searchFilterText: "",
|
37
|
+
searchFilterOptions: ["senders", "subjects"]
|
38
|
+
}
|
39
|
+
}
|
40
|
+
},
|
41
|
+
props: {
|
42
|
+
/**
|
43
|
+
* array of mails for inbox
|
44
|
+
*
|
45
|
+
* required-structure for entries:
|
46
|
+
* {
|
47
|
+
* cmdImage: Object (structure for CmdImage-component used for image of contact)
|
48
|
+
* contactFullName: String
|
49
|
+
* subject: String
|
50
|
+
* isoDate: String (formatted as iso-date: YYYY-MM-DD)
|
51
|
+
* time: String (formatted as time: HH:MM)
|
52
|
+
* }
|
53
|
+
*/
|
54
|
+
mailsInbox: {
|
55
|
+
type: Array,
|
56
|
+
required: true
|
57
|
+
},
|
58
|
+
/**
|
59
|
+
* array of mails for outbox
|
60
|
+
*
|
61
|
+
* required-structure for entries:
|
62
|
+
* {
|
63
|
+
* cmdImage: Object (structure for CmdImage-component used for image of contact)
|
64
|
+
* contactFullName: String
|
65
|
+
* subject: String
|
66
|
+
* isoDate: String (formatted as iso-date: YYYY-MM-DD)
|
67
|
+
* time: String (formatted as time: HH:MM)
|
68
|
+
* }
|
69
|
+
*/
|
70
|
+
mailsOutbox: {
|
71
|
+
type: Array,
|
72
|
+
required: true
|
73
|
+
},
|
74
|
+
/**
|
75
|
+
* properties for CmdTabs-component
|
76
|
+
*/
|
77
|
+
cmdTabs: {
|
78
|
+
type: Object,
|
79
|
+
default() {
|
80
|
+
return {
|
81
|
+
tabs: [
|
82
|
+
{
|
83
|
+
"text": "Inbox",
|
84
|
+
"headlineText": "Inbox",
|
85
|
+
"headlineLevel": 4,
|
86
|
+
"iconClass": "icon-inbox"
|
87
|
+
},
|
88
|
+
{
|
89
|
+
"text": "Outbox",
|
90
|
+
"headlineText": "Outbox",
|
91
|
+
"headlineLevel": 4,
|
92
|
+
"iconClass": "icon-outbox"
|
93
|
+
}
|
94
|
+
],
|
95
|
+
useSlot: true,
|
96
|
+
stretchTabs: true,
|
97
|
+
useDefaultPadding: false
|
98
|
+
}
|
99
|
+
}
|
100
|
+
},
|
101
|
+
cmdMailToolFilterInbox: {
|
102
|
+
type: Object,
|
103
|
+
default() {
|
104
|
+
return {}
|
105
|
+
}
|
106
|
+
},
|
107
|
+
/**
|
108
|
+
* define properties for CmdHeadline-component for inbox
|
109
|
+
*/
|
110
|
+
cmdMailToolFilterOutbox: {
|
111
|
+
type: Object,
|
112
|
+
default() {
|
113
|
+
return {
|
114
|
+
headlineText: "Outbox",
|
115
|
+
headlineLevel: 4,
|
116
|
+
}
|
117
|
+
}
|
118
|
+
}
|
119
|
+
},
|
120
|
+
computed: {
|
121
|
+
filteredMailsInbox() {
|
122
|
+
if (this.searchFilters.searchFilterText === "") {
|
123
|
+
return this.mailsInbox
|
124
|
+
}
|
125
|
+
|
126
|
+
if (this.searchFilters.searchFilterOptions.length) {
|
127
|
+
return this.mailsInbox.filter((mail) => {
|
128
|
+
let s1 = false
|
129
|
+
let s2 = false
|
130
|
+
|
131
|
+
if (this.searchFilters?.searchFilterOptions?.includes("senders")) {
|
132
|
+
s1 = mail.contactFullName.toLowerCase().includes(this.searchFilters?.searchFilterText?.toLowerCase())
|
133
|
+
}
|
134
|
+
if (this.searchFilters?.searchFilterOptions?.includes("subjects")) {
|
135
|
+
s2 = mail.subject.toLowerCase().includes(this.searchFilters?.searchFilterText?.toLowerCase())
|
136
|
+
}
|
137
|
+
|
138
|
+
return s1 || s2
|
139
|
+
})
|
140
|
+
}
|
141
|
+
return []
|
142
|
+
}
|
143
|
+
}
|
144
|
+
}
|
145
|
+
</script>
|
146
|
+
|
147
|
+
<style>
|
148
|
+
.cmd-mail-tool {
|
149
|
+
|
150
|
+
}
|
151
|
+
</style>
|