comand-component-library 3.1.74 → 3.1.77

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. package/dist/comand-component-library.css +1 -1
  2. package/dist/comand-component-library.umd.min.js +1 -1
  3. package/package.json +3 -3
  4. package/src/App.vue +65 -71
  5. package/src/assets/data/input-group-radiobuttons.json +23 -0
  6. package/src/assets/data/input-group-replaced-radiobuttons.json +23 -0
  7. package/src/assets/data/input-group-toggle-switch-radiobuttons.json +23 -0
  8. package/src/assets/styles/global-styles.scss +10 -19
  9. package/src/components/CmdAddressData.vue +7 -7
  10. package/src/components/CmdBankAccountData.vue +7 -7
  11. package/src/components/CmdBox.vue +24 -30
  12. package/src/components/CmdBoxSiteSearch.vue +9 -9
  13. package/src/components/CmdCookieDisclaimer.vue +17 -17
  14. package/src/components/CmdFakeSelect.vue +32 -29
  15. package/src/components/CmdFormElement.vue +34 -35
  16. package/src/components/{CmdCustomHeadline.vue → CmdHeadline.vue} +1 -1
  17. package/src/components/CmdInputGroup.vue +51 -53
  18. package/src/components/CmdListOfLinks.vue +8 -8
  19. package/src/components/CmdListOfRequirements.vue +37 -15
  20. package/src/components/CmdLoginForm.vue +17 -17
  21. package/src/components/CmdOpeningHours.vue +5 -5
  22. package/src/components/CmdSiteFooter.vue +76 -0
  23. package/src/components/CmdSiteHeader.vue +2 -1
  24. package/src/components/CmdSlideshow.vue +6 -6
  25. package/src/components/CmdSystemMessage.vue +28 -11
  26. package/src/components/CmdTabs.vue +8 -8
  27. package/src/components/CmdToggleDarkMode.vue +42 -2
  28. package/src/components/CmdTooltip.vue +13 -13
  29. package/src/components/CmdTooltipForInputElements.vue +122 -0
  30. package/src/components/CmdUploadForm.vue +32 -32
  31. package/src/components/CmdWidthLimitationWrapper.vue +0 -17
  32. package/src/documentation/generated/CmdAddressDataPropertyDescriptions.json +2 -2
  33. package/src/documentation/generated/CmdBankAccountDataPropertyDescriptions.json +2 -2
  34. package/src/documentation/generated/CmdBoxPropertyDescriptions.json +2 -2
  35. package/src/documentation/generated/CmdBoxSiteSearchPropertyDescriptions.json +2 -2
  36. package/src/documentation/generated/CmdCookieDisclaimerPropertyDescriptions.json +2 -2
  37. package/src/documentation/generated/CmdFormElementPropertyDescriptions.json +6 -1
  38. package/src/documentation/generated/CmdHeadlinePropertyDescriptions.json +22 -0
  39. package/src/documentation/generated/CmdInputGroupPropertyDescriptions.json +0 -5
  40. package/src/documentation/generated/CmdListOfLinksPropertyDescriptions.json +2 -2
  41. package/src/documentation/generated/CmdListOfRequirementsPropertyDescriptions.json +14 -4
  42. package/src/documentation/generated/CmdLoginFormPropertyDescriptions.json +4 -4
  43. package/src/documentation/generated/CmdOpeningHoursPropertyDescriptions.json +2 -2
  44. package/src/documentation/generated/CmdSiteFooterPropertyDescriptions.json +12 -0
  45. package/src/documentation/generated/CmdSystemMessagePropertyDescriptions.json +5 -0
  46. package/src/documentation/generated/CmdTabsPropertyDescriptions.json +2 -2
  47. package/src/documentation/generated/CmdTooltipForInputElementsPropertyDescriptions.json +42 -0
  48. package/src/documentation/generated/CmdTooltipPropertyDescriptions.json +1 -1
  49. package/src/documentation/generated/CmdUploadFormPropertyDescriptions.json +14 -14
  50. package/src/index.js +2 -1
  51. package/src/mixins/FieldValidation.js +15 -5
  52. 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 CmdCustomHeadlineFieldset -->
6
- <CmdCustomHeadline v-if="cmdCustomHeadlineFieldset"
7
- v-bind="cmdCustomHeadlineFieldset"
5
+ <!-- begin CmdHeadlineFieldset -->
6
+ <CmdHeadline v-if="CmdHeadlineFieldset"
7
+ v-bind="CmdHeadlineFieldset"
8
8
  />
9
- <!-- end CmdCustomHeadlineFieldset -->
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
- <CmdCustomHeadline v-if="allowMultipleFileUploads" v-bind="cmdCustomHeadlineNoFilesToUpload" headlineLevel="4">
28
+ <CmdHeadline v-if="allowMultipleFileUploads" v-bind="CmdHeadlineNoFilesToUpload" headlineLevel="4">
29
29
  {{ getMessage("cmduploadform.no_files_to_upload") }}
30
- </CmdCustomHeadline>
31
- <CmdCustomHeadline v-else v-bind="cmdCustomHeadlineNoFilesToUpload" headlineLevel="4">
30
+ </CmdHeadline>
31
+ <CmdHeadline v-else v-bind="CmdHeadlineNoFilesToUpload" headlineLevel="4">
32
32
  {{ getMessage("cmduploadform.no_file_to_upload") }}
33
- </CmdCustomHeadline>
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
- <CmdCustomHeadline v-bind="cmdCustomHeadlineSummaryOfAllFiles" headlineLevel="4">
39
+ <CmdHeadline v-bind="CmdHeadlineSummaryOfAllFiles" headlineLevel="4">
40
40
  {{ getMessage("cmduploadform.headline.summary_of_all_files") }}
41
- </CmdCustomHeadline>
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
- <CmdCustomHeadline v-bind="cmdCustomHeadlineListOfSelectedFiles" headlineLevel="4">
83
+ <CmdHeadline v-bind="CmdHeadlineListOfSelectedFiles" headlineLevel="4">
84
84
  {{ getMessage("cmduploadform.headline.list_of_selected_files") }}
85
- </CmdCustomHeadline>
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
- <CmdCustomHeadline v-if="allowMultipleFileUploads && listOfFiles.length" v-bind="cmdCustomHeadlineSelectAdditionalFiles" headlineLevel="4">
134
+ <CmdHeadline v-if="allowMultipleFileUploads && listOfFiles.length" v-bind="CmdHeadlineSelectAdditionalFiles" headlineLevel="4">
135
135
  {{ getMessage("cmduploadform.headline.select_additional_files") }}
136
- </CmdCustomHeadline>
137
- <CmdCustomHeadline v-if="!allowMultipleFileUploads && listOfFiles.length" v-bind="cmdCustomHeadlineSelectNewFile" headlineLevel="4">
136
+ </CmdHeadline>
137
+ <CmdHeadline v-if="!allowMultipleFileUploads && listOfFiles.length" v-bind="CmdHeadlineSelectNewFile" headlineLevel="4">
138
138
  {{ getMessage("cmduploadform.headline.select_new_file") }}
139
- </CmdCustomHeadline>
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 CmdCustomHeadline from "./CmdCustomHeadline"
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
- CmdCustomHeadline,
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 CmdCustomHeadline-component at of the fieldset
509
+ * properties for CmdHeadline-component at of the fieldset
510
510
  */
511
- cmdCustomHeadlineFieldset: {
511
+ CmdHeadlineFieldset: {
512
512
  type: Object,
513
513
  required: false
514
514
  },
515
515
  /**
516
- * properties for CmdCustomHeadline-component shown if no files for upload exist
516
+ * properties for CmdHeadline-component shown if no files for upload exist
517
517
  */
518
- cmdCustomHeadlineNoFilesToUpload: {
518
+ CmdHeadlineNoFilesToUpload: {
519
519
  type: Object,
520
520
  required: false
521
521
  },
522
522
  /**
523
- * properties for CmdCustomHeadline-component shown if no file for upload exist
523
+ * properties for CmdHeadline-component shown if no file for upload exist
524
524
  */
525
- cmdCustomHeadlineNoFileToUpload: {
525
+ CmdHeadlineNoFileToUpload: {
526
526
  type: Object,
527
527
  required: false
528
528
  },
529
529
  /**
530
- * properties for CmdCustomHeadline-component for 'summary of all files'
530
+ * properties for CmdHeadline-component for 'summary of all files'
531
531
  */
532
- cmdCustomHeadlineSummaryOfAllFiles: {
532
+ CmdHeadlineSummaryOfAllFiles: {
533
533
  type: Object,
534
534
  required: false
535
535
  },
536
536
  /**
537
- * properties for CmdCustomHeadline-component for 'list of selected files'
537
+ * properties for CmdHeadline-component for 'list of selected files'
538
538
  */
539
- cmdCustomHeadlineListOfSelectedFiles: {
539
+ CmdHeadlineListOfSelectedFiles: {
540
540
  type: Object,
541
541
  required: false
542
542
  },
543
543
  /**
544
- * properties for CmdCustomHeadline-component for 'select additional files'
544
+ * properties for CmdHeadline-component for 'select additional files'
545
545
  */
546
- cmdCustomHeadlineSelectAdditionalFiles: {
546
+ CmdHeadlineSelectAdditionalFiles: {
547
547
  type: Object,
548
548
  required: false
549
549
  },
550
550
  /**
551
- * properties for CmdCustomHeadline-component for 'select new file'
551
+ * properties for CmdHeadline-component for 'select new file'
552
552
  */
553
- cmdCustomHeadlineSelectNewFile: {
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>
@@ -9,9 +9,9 @@
9
9
  "show a label-text"
10
10
  ]
11
11
  },
12
- "cmdCustomHeadline": {
12
+ "cmdHeadline": {
13
13
  "comments": [
14
- "properties for CmdCustomHeadline-component"
14
+ "properties for CmdHeadline-component"
15
15
  ]
16
16
  },
17
17
  "showLabels": {
@@ -26,9 +26,9 @@
26
26
  ]
27
27
  }
28
28
  },
29
- "cmdCustomHeadline": {
29
+ "cmdHeadline": {
30
30
  "comments": [
31
- "properties for CmdCustomHeadline-component"
31
+ "properties for CmdHeadline-component"
32
32
  ]
33
33
  }
34
34
  }
@@ -88,9 +88,9 @@
88
88
  "allow box to be stretched as high as parent-element"
89
89
  ]
90
90
  },
91
- "cmdCustomHeadline": {
91
+ "cmdHeadline": {
92
92
  "comments": [
93
- "properties for CmdCustomHeadline-component"
93
+ "properties for CmdHeadline-component"
94
94
  ]
95
95
  }
96
96
  }
@@ -46,9 +46,9 @@
46
46
  "send search result from outside to display inside this component"
47
47
  ]
48
48
  },
49
- "cmdCustomHeadline": {
49
+ "cmdHeadline": {
50
50
  "comments": [
51
- "properties for CmdCustomHeadline-component"
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
- "cmdCustomHeadlineCookieDisclaimer": {
7
+ "CmdHeadlineCookieDisclaimer": {
8
8
  "comments": [
9
- "properties for CmdCustomHeadline-component at top of cookie disclaimer"
9
+ "properties for CmdHeadline-component at top of cookie disclaimer"
10
10
  ]
11
11
  },
12
12
  "cmdBoxRequiredCookies": {
@@ -24,7 +24,12 @@
24
24
  "labelText": {
25
25
  "comments": [
26
26
  "text for label"
27
- ]
27
+ ],
28
+ "annotations": {
29
+ "requiredForAccessibility": [
30
+ "true"
31
+ ]
32
+ }
28
33
  },
29
34
  "toggleSwitch": {
30
35
  "comments": [
@@ -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
+ }
@@ -9,11 +9,6 @@
9
9
  "set if input-group should be required"
10
10
  ]
11
11
  },
12
- "validationTooltip": {
13
- "comments": [
14
- "tooltip for validation"
15
- ]
16
- },
17
12
  "inputElements": {
18
13
  "comments": [
19
14
  "list of input-elements inside group",
@@ -22,9 +22,9 @@
22
22
  ]
23
23
  }
24
24
  },
25
- "cmdCustomHeadline": {
25
+ "cmdHeadline": {
26
26
  "comments": [
27
- "properties for cmdCustomHeadline-component"
27
+ "properties for CmdHeadline-component"
28
28
  ]
29
29
  },
30
30
  "links": {
@@ -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
- "text for label"
19
+ "list of all requirements"
10
20
  ]
11
21
  },
12
22
  "helplink": {
13
23
  "comments": [
14
- "text for label"
24
+ "set a helplink to a different page for further support"
15
25
  ]
16
26
  },
17
- "cmdCustomHeadline": {
27
+ "cmdHeadline": {
18
28
  "comments": [
19
- "text for label"
29
+ "properties of CmdHeadline-component"
20
30
  ]
21
31
  }
22
32
  }
@@ -29,14 +29,14 @@
29
29
  ]
30
30
  }
31
31
  },
32
- "cmdCustomHeadlineLoginForm": {
32
+ "CmdHeadlineLoginForm": {
33
33
  "comments": [
34
- "properties for CmdCustomHeadline-component for login-form"
34
+ "properties for CmdHeadline-component for login-form"
35
35
  ]
36
36
  },
37
- "cmdCustomHeadlineSendLoginForm": {
37
+ "CmdHeadlineSendLoginForm": {
38
38
  "comments": [
39
- "properties for CmdCustomHeadline-component for send-login-form"
39
+ "properties for CmdHeadline-component for send-login-form"
40
40
  ]
41
41
  },
42
42
  "cmdFormElementUsername": {
@@ -1,7 +1,7 @@
1
1
  {
2
- "cmdCustomHeadline": {
2
+ "cmdHeadline": {
3
3
  "comments": [
4
- "properties for CmdCustomHeadline-component"
4
+ "properties for CmdHeadline-component"
5
5
  ]
6
6
  },
7
7
  "link": {
@@ -0,0 +1,12 @@
1
+ {
2
+ "orientation": {
3
+ "comments": [
4
+ "set to vertical if items inside should be arranged vertically"
5
+ ],
6
+ "annotations": {
7
+ "allowedValues": [
8
+ "horizontal, vertical"
9
+ ]
10
+ }
11
+ }
12
+ }
@@ -27,6 +27,11 @@
27
27
  "the system-message-text"
28
28
  ]
29
29
  },
30
+ "messageHeadlineLevel": {
31
+ "comments": [
32
+ "set headline-level for system-message (given to CmdHeadline-component)"
33
+ ]
34
+ },
30
35
  "iconClose": {
31
36
  "comments": [
32
37
  "icon to close system-message"
@@ -1,7 +1,7 @@
1
1
  {
2
- "cmdCustomHeadline": {
2
+ "cmdHeadline": {
3
3
  "comments": [
4
- "properties for CmdCustomHeadline-component"
4
+ "properties for CmdHeadline-component"
5
5
  ]
6
6
  },
7
7
  "stretchTabs": {
@@ -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
+ }
@@ -1,5 +1,5 @@
1
1
  {
2
- "cmdCustomHeadline": {
2
+ "cmdHeadline": {
3
3
  "comments": [
4
4
  "enable toggling tooltip-visibility by click"
5
5
  ]
@@ -122,39 +122,39 @@
122
122
  "set icon class for cancel-icon"
123
123
  ]
124
124
  },
125
- "cmdCustomHeadlineFieldset": {
125
+ "CmdHeadlineFieldset": {
126
126
  "comments": [
127
- "properties for CmdCustomHeadline-component at of the fieldset"
127
+ "properties for CmdHeadline-component at of the fieldset"
128
128
  ]
129
129
  },
130
- "cmdCustomHeadlineNoFilesToUpload": {
130
+ "CmdHeadlineNoFilesToUpload": {
131
131
  "comments": [
132
- "properties for CmdCustomHeadline-component shown if no files for upload exist"
132
+ "properties for CmdHeadline-component shown if no files for upload exist"
133
133
  ]
134
134
  },
135
- "cmdCustomHeadlineNoFileToUpload": {
135
+ "CmdHeadlineNoFileToUpload": {
136
136
  "comments": [
137
- "properties for CmdCustomHeadline-component shown if no file for upload exist"
137
+ "properties for CmdHeadline-component shown if no file for upload exist"
138
138
  ]
139
139
  },
140
- "cmdCustomHeadlineSummaryOfAllFiles": {
140
+ "CmdHeadlineSummaryOfAllFiles": {
141
141
  "comments": [
142
- "properties for CmdCustomHeadline-component for 'summary of all files'"
142
+ "properties for CmdHeadline-component for 'summary of all files'"
143
143
  ]
144
144
  },
145
- "cmdCustomHeadlineListOfSelectedFiles": {
145
+ "CmdHeadlineListOfSelectedFiles": {
146
146
  "comments": [
147
- "properties for CmdCustomHeadline-component for 'list of selected files'"
147
+ "properties for CmdHeadline-component for 'list of selected files'"
148
148
  ]
149
149
  },
150
- "cmdCustomHeadlineSelectAdditionalFiles": {
150
+ "CmdHeadlineSelectAdditionalFiles": {
151
151
  "comments": [
152
- "properties for CmdCustomHeadline-component for 'select additional files'"
152
+ "properties for CmdHeadline-component for 'select additional files'"
153
153
  ]
154
154
  },
155
- "cmdCustomHeadlineSelectNewFile": {
155
+ "CmdHeadlineSelectNewFile": {
156
156
  "comments": [
157
- "properties for CmdCustomHeadline-component for 'select new file'"
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 CmdCustomHeadline } from '@/components/CmdCustomHeadline'
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'