comand-component-library 3.1.74 → 3.1.75
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.css +1 -1
- package/dist/comand-component-library.umd.min.js +1 -1
- package/package.json +3 -3
- package/src/App.vue +65 -71
- package/src/assets/data/input-group-radiobuttons.json +23 -0
- package/src/assets/data/input-group-replaced-radiobuttons.json +23 -0
- package/src/assets/data/input-group-toggle-switch-radiobuttons.json +23 -0
- package/src/assets/styles/global-styles.scss +10 -19
- package/src/components/CmdAddressData.vue +7 -7
- package/src/components/CmdBankAccountData.vue +7 -7
- package/src/components/CmdBox.vue +24 -30
- package/src/components/CmdBoxSiteSearch.vue +9 -9
- package/src/components/CmdCookieDisclaimer.vue +17 -17
- package/src/components/CmdFakeSelect.vue +32 -29
- package/src/components/CmdFormElement.vue +34 -35
- package/src/components/{CmdCustomHeadline.vue → CmdHeadline.vue} +1 -1
- package/src/components/CmdInputGroup.vue +51 -53
- package/src/components/CmdListOfLinks.vue +8 -8
- package/src/components/CmdListOfRequirements.vue +37 -15
- package/src/components/CmdLoginForm.vue +17 -17
- package/src/components/CmdOpeningHours.vue +5 -5
- package/src/components/CmdSiteFooter.vue +76 -0
- package/src/components/CmdSiteHeader.vue +2 -1
- package/src/components/CmdSystemMessage.vue +28 -11
- package/src/components/CmdTabs.vue +8 -8
- package/src/components/CmdToggleDarkMode.vue +42 -2
- package/src/components/CmdTooltip.vue +13 -13
- package/src/components/CmdTooltipForInputElements.vue +122 -0
- package/src/components/CmdUploadForm.vue +32 -32
- package/src/components/CmdWidthLimitationWrapper.vue +0 -17
- package/src/documentation/generated/CmdAddressDataPropertyDescriptions.json +2 -2
- package/src/documentation/generated/CmdBankAccountDataPropertyDescriptions.json +2 -2
- package/src/documentation/generated/CmdBoxPropertyDescriptions.json +2 -2
- package/src/documentation/generated/CmdBoxSiteSearchPropertyDescriptions.json +2 -2
- package/src/documentation/generated/CmdCookieDisclaimerPropertyDescriptions.json +2 -2
- package/src/documentation/generated/CmdFormElementPropertyDescriptions.json +6 -1
- package/src/documentation/generated/CmdHeadlinePropertyDescriptions.json +22 -0
- package/src/documentation/generated/CmdInputGroupPropertyDescriptions.json +0 -5
- package/src/documentation/generated/CmdListOfLinksPropertyDescriptions.json +2 -2
- package/src/documentation/generated/CmdListOfRequirementsPropertyDescriptions.json +14 -4
- package/src/documentation/generated/CmdLoginFormPropertyDescriptions.json +4 -4
- package/src/documentation/generated/CmdOpeningHoursPropertyDescriptions.json +2 -2
- package/src/documentation/generated/CmdSiteFooterPropertyDescriptions.json +12 -0
- package/src/documentation/generated/CmdSystemMessagePropertyDescriptions.json +5 -0
- package/src/documentation/generated/CmdTabsPropertyDescriptions.json +2 -2
- package/src/documentation/generated/CmdTooltipForInputElementsPropertyDescriptions.json +42 -0
- package/src/documentation/generated/CmdTooltipPropertyDescriptions.json +1 -1
- package/src/documentation/generated/CmdUploadFormPropertyDescriptions.json +14 -14
- package/src/index.js +2 -1
- package/src/mixins/FieldValidation.js +15 -5
- package/src/mixins/Tooltip.js +1 -1
@@ -0,0 +1,122 @@
|
|
1
|
+
<template>
|
2
|
+
<!-- begin CmdTooltip -->
|
3
|
+
<CmdTooltip
|
4
|
+
ref="tooltip"
|
5
|
+
class="box"
|
6
|
+
:class="validationStatus"
|
7
|
+
:relatedId="relatedId"
|
8
|
+
:toggle-visibility-by-click="true">
|
9
|
+
|
10
|
+
<!-- begin CmdSystemMessage -->
|
11
|
+
<CmdSystemMessage
|
12
|
+
v-if="inputAttributes.required && validationMessage"
|
13
|
+
:systemMessage="validationMessage"
|
14
|
+
:validation-status="validationStatus"
|
15
|
+
:iconClose="{show: false}"
|
16
|
+
/>
|
17
|
+
<!-- end CmdSystemMessage -->
|
18
|
+
|
19
|
+
<!-- begin CmdListOfRequirements -->
|
20
|
+
<CmdListOfRequirements
|
21
|
+
v-if="showRequirements"
|
22
|
+
:inputRequirements="inputRequirements"
|
23
|
+
:helplink="helplink"
|
24
|
+
:inputModelValue="inputModelValue"
|
25
|
+
:inputAttributes="inputAttributes"
|
26
|
+
:validationTooltip="validationTooltip"
|
27
|
+
/>
|
28
|
+
<!-- end CmdListOfRequirements -->
|
29
|
+
</CmdTooltip>
|
30
|
+
<!-- end CmdTooltip -->
|
31
|
+
</template>
|
32
|
+
|
33
|
+
<script>
|
34
|
+
// import components
|
35
|
+
import CmdListOfRequirements from "./CmdListOfRequirements"
|
36
|
+
import CmdSystemMessage from "./CmdSystemMessage"
|
37
|
+
import CmdTooltip from "./CmdTooltip"
|
38
|
+
|
39
|
+
export default {
|
40
|
+
name: "CmdTooltipForInputElements",
|
41
|
+
components: {
|
42
|
+
CmdListOfRequirements,
|
43
|
+
CmdSystemMessage,
|
44
|
+
CmdTooltip
|
45
|
+
},
|
46
|
+
props: {
|
47
|
+
/**
|
48
|
+
* related-id for CmdTooltip-component
|
49
|
+
*/
|
50
|
+
relatedId: {
|
51
|
+
type: String,
|
52
|
+
default: ""
|
53
|
+
},
|
54
|
+
/**
|
55
|
+
* validation-status for CmdSystemMessage-component and CmdTooltip-component
|
56
|
+
*/
|
57
|
+
validationStatus: {
|
58
|
+
type: String,
|
59
|
+
default: ""
|
60
|
+
},
|
61
|
+
/**
|
62
|
+
* validation-message for CmdSystemMessage-component
|
63
|
+
*/
|
64
|
+
validationMessage: {
|
65
|
+
type: String,
|
66
|
+
default: ""
|
67
|
+
},
|
68
|
+
/**
|
69
|
+
* toggle visibility for CmdListOfRequirements-component
|
70
|
+
*/
|
71
|
+
showRequirements: {
|
72
|
+
type: Boolean,
|
73
|
+
default: false
|
74
|
+
},
|
75
|
+
/**
|
76
|
+
* validation-tooltip for CmdListOfRequirements-component
|
77
|
+
*/
|
78
|
+
validationTooltip: {
|
79
|
+
type: String,
|
80
|
+
default: ""
|
81
|
+
},
|
82
|
+
/**
|
83
|
+
* list of input-requirements for CmdListOfRequirements-component
|
84
|
+
*/
|
85
|
+
inputRequirements: {
|
86
|
+
type: Array,
|
87
|
+
default() {
|
88
|
+
return []
|
89
|
+
}
|
90
|
+
},
|
91
|
+
/**
|
92
|
+
* input-attributes for CmdListOfRequirements-component
|
93
|
+
*/
|
94
|
+
inputAttributes: {
|
95
|
+
type: Object,
|
96
|
+
default() {
|
97
|
+
return {}
|
98
|
+
}
|
99
|
+
},
|
100
|
+
/**
|
101
|
+
* input-model-value for CmdListOfRequirements-component
|
102
|
+
*/
|
103
|
+
inputModelValue: {
|
104
|
+
type: [String, Boolean, Array, Number],
|
105
|
+
default: ""
|
106
|
+
},
|
107
|
+
/**
|
108
|
+
* helplink for CmdListOfRequirements-component
|
109
|
+
*/
|
110
|
+
helplink: {
|
111
|
+
type: String,
|
112
|
+
default: ""
|
113
|
+
}
|
114
|
+
},
|
115
|
+
methods: {
|
116
|
+
hideTooltip() {
|
117
|
+
// close tooltip by calling function from CmdTooltip using $refs
|
118
|
+
this.$refs.tooltip.hideTooltip()
|
119
|
+
}
|
120
|
+
}
|
121
|
+
}
|
122
|
+
</script>
|
@@ -2,11 +2,11 @@
|
|
2
2
|
<!-- begin advanced mode -->
|
3
3
|
<fieldset v-if="advancedMode" :class="['cmd-upload-form flex-container', { 'upload-initiated': uploadInitiated }]">
|
4
4
|
<legend :class="{hidden : !showLegend}">{{ textLegend }}</legend>
|
5
|
-
<!-- begin
|
6
|
-
<
|
7
|
-
v-bind="
|
5
|
+
<!-- begin CmdHeadlineFieldset -->
|
6
|
+
<CmdHeadline v-if="CmdHeadlineFieldset"
|
7
|
+
v-bind="CmdHeadlineFieldset"
|
8
8
|
/>
|
9
|
-
<!-- end
|
9
|
+
<!-- end CmdHeadlineFieldset -->
|
10
10
|
|
11
11
|
<!-- begin CmdSystemMessage -->
|
12
12
|
<CmdSystemMessage
|
@@ -25,20 +25,20 @@
|
|
25
25
|
|
26
26
|
<div :class="['box drop-area flex-container vertical', { 'allow-drop': allowDrop }]" v-on="dragAndDropHandler">
|
27
27
|
<template v-if="!listOfFiles.length">
|
28
|
-
<
|
28
|
+
<CmdHeadline v-if="allowMultipleFileUploads" v-bind="CmdHeadlineNoFilesToUpload" headlineLevel="4">
|
29
29
|
{{ getMessage("cmduploadform.no_files_to_upload") }}
|
30
|
-
</
|
31
|
-
<
|
30
|
+
</CmdHeadline>
|
31
|
+
<CmdHeadline v-else v-bind="CmdHeadlineNoFilesToUpload" headlineLevel="4">
|
32
32
|
{{ getMessage("cmduploadform.no_file_to_upload") }}
|
33
|
-
</
|
33
|
+
</CmdHeadline>
|
34
34
|
</template>
|
35
35
|
|
36
36
|
<!-- begin total-upload information -->
|
37
37
|
<div v-else class="flex-container vertical">
|
38
38
|
<div v-if="showTotalUpload && listOfFiles.length !== 1" class="flex-container vertical list-files-wrapper">
|
39
|
-
<
|
39
|
+
<CmdHeadline v-bind="CmdHeadlineSummaryOfAllFiles" headlineLevel="4">
|
40
40
|
{{ getMessage("cmduploadform.headline.summary_of_all_files") }}
|
41
|
-
</
|
41
|
+
</CmdHeadline>
|
42
42
|
<ul v-if="showTotalUpload && listOfFiles.length !== 1" class="list-of-files total-files">
|
43
43
|
<li class="flex-container no-flex">
|
44
44
|
<a
|
@@ -80,9 +80,9 @@
|
|
80
80
|
|
81
81
|
<div class="flex-container vertical list-files-wrapper">
|
82
82
|
<!-- begin list of selected files -->
|
83
|
-
<
|
83
|
+
<CmdHeadline v-bind="CmdHeadlineListOfSelectedFiles" headlineLevel="4">
|
84
84
|
{{ getMessage("cmduploadform.headline.list_of_selected_files") }}
|
85
|
-
</
|
85
|
+
</CmdHeadline>
|
86
86
|
<ul class="list-of-files">
|
87
87
|
<li
|
88
88
|
v-for="(uploadFile, index) in listOfFiles"
|
@@ -131,12 +131,12 @@
|
|
131
131
|
<!-- end list of selected files -->
|
132
132
|
|
133
133
|
<!-- begin upload conditions -->
|
134
|
-
<
|
134
|
+
<CmdHeadline v-if="allowMultipleFileUploads && listOfFiles.length" v-bind="CmdHeadlineSelectAdditionalFiles" headlineLevel="4">
|
135
135
|
{{ getMessage("cmduploadform.headline.select_additional_files") }}
|
136
|
-
</
|
137
|
-
<
|
136
|
+
</CmdHeadline>
|
137
|
+
<CmdHeadline v-if="!allowMultipleFileUploads && listOfFiles.length" v-bind="CmdHeadlineSelectNewFile" headlineLevel="4">
|
138
138
|
{{ getMessage("cmduploadform.headline.select_new_file") }}
|
139
|
-
</
|
139
|
+
</CmdHeadline>
|
140
140
|
<dl class="small">
|
141
141
|
<template v-if="maxTotalUploadSize > 0">
|
142
142
|
<dt :class="{ error: totalSize > maxTotalUploadSize }">
|
@@ -306,7 +306,7 @@ import {getFileExtension} from "../utils/getFileExtension.js"
|
|
306
306
|
import axios from "axios"
|
307
307
|
|
308
308
|
// import components
|
309
|
-
import
|
309
|
+
import CmdHeadline from "./CmdHeadline"
|
310
310
|
import CmdFormElement from "./CmdFormElement"
|
311
311
|
import CmdSystemMessage from "./CmdSystemMessage"
|
312
312
|
|
@@ -315,7 +315,7 @@ export default {
|
|
315
315
|
emits: ["click", "error", "upload-complete", "upload-file-success"],
|
316
316
|
mixins: [I18n, DefaultMessageProperties],
|
317
317
|
components: {
|
318
|
-
|
318
|
+
CmdHeadline,
|
319
319
|
CmdFormElement,
|
320
320
|
CmdSystemMessage,
|
321
321
|
},
|
@@ -506,51 +506,51 @@ export default {
|
|
506
506
|
default: "icon-cancel"
|
507
507
|
},
|
508
508
|
/**
|
509
|
-
* properties for
|
509
|
+
* properties for CmdHeadline-component at of the fieldset
|
510
510
|
*/
|
511
|
-
|
511
|
+
CmdHeadlineFieldset: {
|
512
512
|
type: Object,
|
513
513
|
required: false
|
514
514
|
},
|
515
515
|
/**
|
516
|
-
* properties for
|
516
|
+
* properties for CmdHeadline-component shown if no files for upload exist
|
517
517
|
*/
|
518
|
-
|
518
|
+
CmdHeadlineNoFilesToUpload: {
|
519
519
|
type: Object,
|
520
520
|
required: false
|
521
521
|
},
|
522
522
|
/**
|
523
|
-
* properties for
|
523
|
+
* properties for CmdHeadline-component shown if no file for upload exist
|
524
524
|
*/
|
525
|
-
|
525
|
+
CmdHeadlineNoFileToUpload: {
|
526
526
|
type: Object,
|
527
527
|
required: false
|
528
528
|
},
|
529
529
|
/**
|
530
|
-
* properties for
|
530
|
+
* properties for CmdHeadline-component for 'summary of all files'
|
531
531
|
*/
|
532
|
-
|
532
|
+
CmdHeadlineSummaryOfAllFiles: {
|
533
533
|
type: Object,
|
534
534
|
required: false
|
535
535
|
},
|
536
536
|
/**
|
537
|
-
* properties for
|
537
|
+
* properties for CmdHeadline-component for 'list of selected files'
|
538
538
|
*/
|
539
|
-
|
539
|
+
CmdHeadlineListOfSelectedFiles: {
|
540
540
|
type: Object,
|
541
541
|
required: false
|
542
542
|
},
|
543
543
|
/**
|
544
|
-
* properties for
|
544
|
+
* properties for CmdHeadline-component for 'select additional files'
|
545
545
|
*/
|
546
|
-
|
546
|
+
CmdHeadlineSelectAdditionalFiles: {
|
547
547
|
type: Object,
|
548
548
|
required: false
|
549
549
|
},
|
550
550
|
/**
|
551
|
-
* properties for
|
551
|
+
* properties for CmdHeadline-component for 'select new file'
|
552
552
|
*/
|
553
|
-
|
553
|
+
CmdHeadlineSelectNewFile: {
|
554
554
|
type: Object,
|
555
555
|
required: false
|
556
556
|
},
|
@@ -110,23 +110,6 @@ export default {
|
|
110
110
|
right: 0;
|
111
111
|
top: 0;
|
112
112
|
}
|
113
|
-
|
114
|
-
&#site-footer {
|
115
|
-
padding: var(--grid-gap) 0;
|
116
|
-
border-top: var(--default-border);
|
117
|
-
background: var(--default-background-color);
|
118
|
-
|
119
|
-
&.sticky {
|
120
|
-
top: auto;
|
121
|
-
bottom: 0;
|
122
|
-
}
|
123
|
-
|
124
|
-
.cmd-switch-language {
|
125
|
-
width: 100%;
|
126
|
-
flex: none;
|
127
|
-
}
|
128
|
-
}
|
129
113
|
}
|
130
|
-
|
131
114
|
/* end cmd-width-limitation-wrapper ------------------------------------------------------------------------------------------ */
|
132
115
|
</style>
|
@@ -46,9 +46,9 @@
|
|
46
46
|
"send search result from outside to display inside this component"
|
47
47
|
]
|
48
48
|
},
|
49
|
-
"
|
49
|
+
"CmdHeadline": {
|
50
50
|
"comments": [
|
51
|
-
"properties for
|
51
|
+
"properties for CmdHeadline-component"
|
52
52
|
]
|
53
53
|
},
|
54
54
|
"cmdFormElementInput1": {
|
@@ -4,9 +4,9 @@
|
|
4
4
|
"set default v-model (must be named modelValue in Vue3)"
|
5
5
|
]
|
6
6
|
},
|
7
|
-
"
|
7
|
+
"CmdHeadlineCookieDisclaimer": {
|
8
8
|
"comments": [
|
9
|
-
"properties for
|
9
|
+
"properties for CmdHeadline-component at top of cookie disclaimer"
|
10
10
|
]
|
11
11
|
},
|
12
12
|
"cmdBoxRequiredCookies": {
|
@@ -0,0 +1,22 @@
|
|
1
|
+
{
|
2
|
+
"headlineText": {
|
3
|
+
"comments": [
|
4
|
+
"text for headline"
|
5
|
+
]
|
6
|
+
},
|
7
|
+
"headlineLevel": {
|
8
|
+
"comments": [
|
9
|
+
"level for headline"
|
10
|
+
]
|
11
|
+
},
|
12
|
+
"preHeadlineText": {
|
13
|
+
"comments": [
|
14
|
+
"small pre-headline-text above main-headline"
|
15
|
+
]
|
16
|
+
},
|
17
|
+
"iconClass": {
|
18
|
+
"comments": [
|
19
|
+
"icon-class for icon shown left/before headline"
|
20
|
+
]
|
21
|
+
}
|
22
|
+
}
|
@@ -1,4 +1,14 @@
|
|
1
1
|
{
|
2
|
+
"inputModelValue": {
|
3
|
+
"comments": [
|
4
|
+
"property to check validity of given modelValue"
|
5
|
+
]
|
6
|
+
},
|
7
|
+
"inputAttributes": {
|
8
|
+
"comments": [
|
9
|
+
"property to check validity of given attributes"
|
10
|
+
]
|
11
|
+
},
|
2
12
|
"labelText": {
|
3
13
|
"comments": [
|
4
14
|
"text for label"
|
@@ -6,17 +16,17 @@
|
|
6
16
|
},
|
7
17
|
"inputRequirements": {
|
8
18
|
"comments": [
|
9
|
-
"
|
19
|
+
"list of all requirements"
|
10
20
|
]
|
11
21
|
},
|
12
22
|
"helplink": {
|
13
23
|
"comments": [
|
14
|
-
"
|
24
|
+
"set a helplink to a different page for further support"
|
15
25
|
]
|
16
26
|
},
|
17
|
-
"
|
27
|
+
"CmdHeadline": {
|
18
28
|
"comments": [
|
19
|
-
"
|
29
|
+
"properties of CmdHeadline-component"
|
20
30
|
]
|
21
31
|
}
|
22
32
|
}
|
@@ -29,14 +29,14 @@
|
|
29
29
|
]
|
30
30
|
}
|
31
31
|
},
|
32
|
-
"
|
32
|
+
"CmdHeadlineLoginForm": {
|
33
33
|
"comments": [
|
34
|
-
"properties for
|
34
|
+
"properties for CmdHeadline-component for login-form"
|
35
35
|
]
|
36
36
|
},
|
37
|
-
"
|
37
|
+
"CmdHeadlineSendLoginForm": {
|
38
38
|
"comments": [
|
39
|
-
"properties for
|
39
|
+
"properties for CmdHeadline-component for send-login-form"
|
40
40
|
]
|
41
41
|
},
|
42
42
|
"cmdFormElementUsername": {
|
@@ -0,0 +1,42 @@
|
|
1
|
+
{
|
2
|
+
"relatedId": {
|
3
|
+
"comments": [
|
4
|
+
"related-id for CmdTooltip-component"
|
5
|
+
]
|
6
|
+
},
|
7
|
+
"validationStatus": {
|
8
|
+
"comments": [
|
9
|
+
"validation-status for CmdSystemMessage-component and CmdTooltip-component"
|
10
|
+
]
|
11
|
+
},
|
12
|
+
"validationMessage": {
|
13
|
+
"comments": [
|
14
|
+
"validation-message for CmdSystemMessage-component"
|
15
|
+
]
|
16
|
+
},
|
17
|
+
"showRequirements": {
|
18
|
+
"comments": [
|
19
|
+
"toggle visibility for CmdListOfRequirements-component"
|
20
|
+
]
|
21
|
+
},
|
22
|
+
"validationTooltip": {
|
23
|
+
"comments": [
|
24
|
+
"validation-tooltip for CmdListOfRequirements-component"
|
25
|
+
]
|
26
|
+
},
|
27
|
+
"inputRequirements": {
|
28
|
+
"comments": [
|
29
|
+
"list of input-requirements for CmdListOfRequirements-component"
|
30
|
+
]
|
31
|
+
},
|
32
|
+
"inputAttributes": {
|
33
|
+
"comments": [
|
34
|
+
"helplink for CmdListOfRequirements-component"
|
35
|
+
]
|
36
|
+
},
|
37
|
+
"methods": {
|
38
|
+
"comments": [
|
39
|
+
"helplink for CmdListOfRequirements-component"
|
40
|
+
]
|
41
|
+
}
|
42
|
+
}
|
@@ -122,39 +122,39 @@
|
|
122
122
|
"set icon class for cancel-icon"
|
123
123
|
]
|
124
124
|
},
|
125
|
-
"
|
125
|
+
"CmdHeadlineFieldset": {
|
126
126
|
"comments": [
|
127
|
-
"properties for
|
127
|
+
"properties for CmdHeadline-component at of the fieldset"
|
128
128
|
]
|
129
129
|
},
|
130
|
-
"
|
130
|
+
"CmdHeadlineNoFilesToUpload": {
|
131
131
|
"comments": [
|
132
|
-
"properties for
|
132
|
+
"properties for CmdHeadline-component shown if no files for upload exist"
|
133
133
|
]
|
134
134
|
},
|
135
|
-
"
|
135
|
+
"CmdHeadlineNoFileToUpload": {
|
136
136
|
"comments": [
|
137
|
-
"properties for
|
137
|
+
"properties for CmdHeadline-component shown if no file for upload exist"
|
138
138
|
]
|
139
139
|
},
|
140
|
-
"
|
140
|
+
"CmdHeadlineSummaryOfAllFiles": {
|
141
141
|
"comments": [
|
142
|
-
"properties for
|
142
|
+
"properties for CmdHeadline-component for 'summary of all files'"
|
143
143
|
]
|
144
144
|
},
|
145
|
-
"
|
145
|
+
"CmdHeadlineListOfSelectedFiles": {
|
146
146
|
"comments": [
|
147
|
-
"properties for
|
147
|
+
"properties for CmdHeadline-component for 'list of selected files'"
|
148
148
|
]
|
149
149
|
},
|
150
|
-
"
|
150
|
+
"CmdHeadlineSelectAdditionalFiles": {
|
151
151
|
"comments": [
|
152
|
-
"properties for
|
152
|
+
"properties for CmdHeadline-component for 'select additional files'"
|
153
153
|
]
|
154
154
|
},
|
155
|
-
"
|
155
|
+
"CmdHeadlineSelectNewFile": {
|
156
156
|
"comments": [
|
157
|
-
"properties for
|
157
|
+
"properties for CmdHeadline-component for 'select new file'"
|
158
158
|
]
|
159
159
|
},
|
160
160
|
"showLegend": {
|
package/src/index.js
CHANGED
@@ -11,7 +11,7 @@ export { default as CmdBreadcrumbs } from '@/components/CmdBreadcrumbs'
|
|
11
11
|
export { default as CmdCompanyLogo } from '@/components/CmdCompanyLogo'
|
12
12
|
export { default as CmdCookieDisclaimer } from '@/components/CmdCookieDisclaimer'
|
13
13
|
export { default as CmdCopyrightInformation } from '@/components/CmdCopyrightInformation'
|
14
|
-
export { default as
|
14
|
+
export { default as CmdHeadline } from '@/components/CmdHeadline'
|
15
15
|
export { default as CmdFakeSelect } from '@/components/CmdFakeSelect'
|
16
16
|
export { openFancyBox, default as CmdFancyBox } from '@/components/CmdFancyBox'
|
17
17
|
export { default as CmdForm } from '@/components/CmdForm'
|
@@ -29,6 +29,7 @@ export { default as CmdOpeningHours } from '@/components/CmdOpeningHours'
|
|
29
29
|
export { default as CmdPager } from '@/components/CmdPager'
|
30
30
|
export { default as CmdProgressBar } from '@/components/CmdProgressBar'
|
31
31
|
export { default as CmdShareButtons } from '@/components/CmdShareButtons'
|
32
|
+
export { default as CmdSiteFooter } from '@/components/CmdSiteFooter'
|
32
33
|
export { default as CmdSiteHeader } from '@/components/CmdSiteHeader'
|
33
34
|
export { default as CmdSlideButton } from '@/components/CmdSlideButton'
|
34
35
|
export { default as CmdSlideshow } from '@/components/CmdSlideshow'
|