comand-component-library 3.1.73 → 3.1.76

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.
Files changed (55) 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 +112 -79
  5. package/src/assets/data/cookie-disclaimer.json +7 -6
  6. package/src/assets/data/input-group-radiobuttons.json +23 -0
  7. package/src/assets/data/input-group-replaced-radiobuttons.json +23 -0
  8. package/src/assets/data/input-group-toggle-switch-radiobuttons.json +23 -0
  9. package/src/assets/styles/global-styles.scss +20 -59
  10. package/src/components/CmdAddressData.vue +7 -7
  11. package/src/components/CmdBankAccountData.vue +7 -7
  12. package/src/components/CmdBox.vue +25 -31
  13. package/src/components/CmdBoxSiteSearch.vue +9 -9
  14. package/src/components/CmdCookieDisclaimer.vue +93 -25
  15. package/src/components/CmdFakeSelect.vue +36 -52
  16. package/src/components/CmdFormElement.vue +36 -57
  17. package/src/components/{CmdCustomHeadline.vue → CmdHeadline.vue} +1 -1
  18. package/src/components/CmdInputGroup.vue +156 -24
  19. package/src/components/CmdListOfLinks.vue +8 -8
  20. package/src/components/CmdListOfRequirements.vue +150 -0
  21. package/src/components/CmdLoginForm.vue +17 -17
  22. package/src/components/CmdMainNavigation.vue +2 -2
  23. package/src/components/CmdOpeningHours.vue +5 -5
  24. package/src/components/CmdSiteFooter.vue +76 -0
  25. package/src/components/CmdSiteHeader.vue +2 -1
  26. package/src/components/CmdSlideshow.vue +6 -6
  27. package/src/components/CmdSystemMessage.vue +28 -11
  28. package/src/components/CmdTabs.vue +8 -8
  29. package/src/components/CmdToggleDarkMode.vue +42 -5
  30. package/src/components/CmdTooltip.vue +13 -13
  31. package/src/components/CmdTooltipForInputElements.vue +122 -0
  32. package/src/components/CmdUploadForm.vue +32 -32
  33. package/src/components/CmdWidthLimitationWrapper.vue +0 -17
  34. package/src/documentation/generated/CmdAddressDataPropertyDescriptions.json +2 -2
  35. package/src/documentation/generated/CmdBankAccountDataPropertyDescriptions.json +2 -2
  36. package/src/documentation/generated/CmdBoxPropertyDescriptions.json +2 -2
  37. package/src/documentation/generated/CmdBoxSiteSearchPropertyDescriptions.json +2 -2
  38. package/src/documentation/generated/CmdCookieDisclaimerPropertyDescriptions.json +7 -2
  39. package/src/documentation/generated/CmdFormElementPropertyDescriptions.json +7 -2
  40. package/src/documentation/generated/CmdHeadlinePropertyDescriptions.json +22 -0
  41. package/src/documentation/generated/CmdInputGroupPropertyDescriptions.json +32 -1
  42. package/src/documentation/generated/CmdListOfLinksPropertyDescriptions.json +2 -2
  43. package/src/documentation/generated/CmdListOfRequirementsPropertyDescriptions.json +32 -0
  44. package/src/documentation/generated/CmdLoginFormPropertyDescriptions.json +4 -4
  45. package/src/documentation/generated/CmdOpeningHoursPropertyDescriptions.json +2 -2
  46. package/src/documentation/generated/CmdSiteFooterPropertyDescriptions.json +12 -0
  47. package/src/documentation/generated/CmdSystemMessagePropertyDescriptions.json +5 -0
  48. package/src/documentation/generated/CmdTabsPropertyDescriptions.json +2 -2
  49. package/src/documentation/generated/CmdTooltipForInputElementsPropertyDescriptions.json +42 -0
  50. package/src/documentation/generated/CmdTooltipPropertyDescriptions.json +1 -1
  51. package/src/documentation/generated/CmdUploadFormPropertyDescriptions.json +14 -14
  52. package/src/index.js +2 -1
  53. package/src/mixins/CmdCookieDisclaimer/DefaultMessageProperties.js +10 -0
  54. package/src/mixins/FieldValidation.js +16 -6
  55. 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": {
@@ -1,7 +1,12 @@
1
1
  {
2
- "cmdCustomHeadlineCookieDisclaimer": {
2
+ "modelValue": {
3
3
  "comments": [
4
- "properties for CmdCustomHeadline-component at top of cookie disclaimer"
4
+ "set default v-model (must be named modelValue in Vue3)"
5
+ ]
6
+ },
7
+ "CmdHeadlineCookieDisclaimer": {
8
+ "comments": [
9
+ "properties for CmdHeadline-component at top of cookie disclaimer"
5
10
  ]
6
11
  },
7
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": [
@@ -137,7 +142,7 @@
137
142
  ],
138
143
  "annotations": {
139
144
  "allowedValues": [
140
- "error, success",
145
+ "error, warning, success, info",
141
146
  ""
142
147
  ],
143
148
  "affectsStyling": [
@@ -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
+ }
@@ -4,6 +4,11 @@
4
4
  "set value for v-model (must be named modelValue in vue3 if default v-model should be used)"
5
5
  ]
6
6
  },
7
+ "required": {
8
+ "comments": [
9
+ "set if input-group should be required"
10
+ ]
11
+ },
7
12
  "inputElements": {
8
13
  "comments": [
9
14
  "list of input-elements inside group",
@@ -21,9 +26,35 @@
21
26
  ]
22
27
  }
23
28
  },
29
+ "status": {
30
+ "comments": [
31
+ "set status for label and inner form-elements"
32
+ ],
33
+ "annotations": {
34
+ "allowedValues": [
35
+ "error, warning, success, info",
36
+ ""
37
+ ],
38
+ "affectsStyling": [
39
+ "true"
40
+ ]
41
+ }
42
+ },
24
43
  "replaceInputType": {
25
44
  "comments": [
26
- "for replacing native checkboxes/radio-buttons by custom ones (based on frontend-framework)"
45
+ "for replacing native checkboxes/radio-buttons by custom ones (based on frontend-framework)",
46
+ "toggleSwitch-property must be set to 'false'"
47
+ ],
48
+ "annotations": {
49
+ "affectsStyling": [
50
+ "true"
51
+ ]
52
+ }
53
+ },
54
+ "toggleSwitch": {
55
+ "comments": [
56
+ "for replacing native checkboxes/radio-buttons by toggle-switches (based on frontend-framework)",
57
+ "replaceInputType-property must be set to 'false'"
27
58
  ],
28
59
  "annotations": {
29
60
  "affectsStyling": [
@@ -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": {
@@ -0,0 +1,32 @@
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
+ },
12
+ "labelText": {
13
+ "comments": [
14
+ "text for label"
15
+ ]
16
+ },
17
+ "inputRequirements": {
18
+ "comments": [
19
+ "list of all requirements"
20
+ ]
21
+ },
22
+ "helplink": {
23
+ "comments": [
24
+ "set a helplink to a different page for further support"
25
+ ]
26
+ },
27
+ "CmdHeadline": {
28
+ "comments": [
29
+ "properties of CmdHeadline-component"
30
+ ]
31
+ }
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
  ]