comand-component-library 3.1.77 → 3.1.80

Sign up to get free protection for your applications and to get access to all the features.
Files changed (34) 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 +1 -1
  4. package/src/App.vue +12 -8
  5. package/src/components/CmdAddressData.vue +1 -1
  6. package/src/components/CmdBankAccountData.vue +3 -1
  7. package/src/components/CmdBox.vue +34 -12
  8. package/src/components/CmdBoxSiteSearch.vue +2 -2
  9. package/src/components/CmdCookieDisclaimer.vue +15 -9
  10. package/src/components/CmdFakeSelect.vue +2 -1
  11. package/src/components/CmdForm.vue +9 -2
  12. package/src/components/CmdFormElement.vue +7 -0
  13. package/src/components/CmdHeadline.vue +18 -10
  14. package/src/components/CmdListOfLinks.vue +4 -2
  15. package/src/components/CmdListOfRequirements.vue +45 -5
  16. package/src/components/CmdLoginForm.vue +11 -9
  17. package/src/components/CmdMainNavigation.vue +1 -1
  18. package/src/components/CmdOpeningHours.vue +1 -1
  19. package/src/components/CmdSlideButton.vue +1 -0
  20. package/src/components/CmdTabs.vue +2 -0
  21. package/src/components/CmdToggleDarkMode.vue +80 -47
  22. package/src/components/CmdTooltip.vue +8 -6
  23. package/src/components/CmdTooltipForInputElements.vue +8 -0
  24. package/src/components/CmdUploadForm.vue +15 -14
  25. package/src/documentation/generated/CmdCookieDisclaimerPropertyDescriptions.json +1 -1
  26. package/src/documentation/generated/CmdFormPropertyDescriptions.json +5 -0
  27. package/src/documentation/generated/CmdListOfRequirementsPropertyDescriptions.json +11 -1
  28. package/src/documentation/generated/CmdLoginFormPropertyDescriptions.json +2 -2
  29. package/src/documentation/generated/CmdToggleDarkModePropertyDescriptions.json +37 -0
  30. package/src/documentation/generated/CmdTooltipForInputElementsPropertyDescriptions.json +5 -0
  31. package/src/documentation/generated/CmdUploadFormPropertyDescriptions.json +6 -6
  32. package/src/index.js +2 -1
  33. package/src/mixins/CmdFakeSelect/DefaultMessageProperties.js +1 -1
  34. package/src/mixins/CmdListOfRequirements/DefaultMessageProperties.js +10 -0
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div :class="['cmd-toggle-dark-mode', {'dark-mode': darkMode}]">
2
+ <div :class="['cmd-toggle-dark-mode', {'styled-layout': useStyledLayout, 'dark-mode': darkMode}]">
3
3
  <CmdFormElement
4
4
  element="input"
5
5
  type="checkbox"
@@ -7,6 +7,7 @@
7
7
  :showLabel="showLabel"
8
8
  v-model="darkMode"
9
9
  :toggle-switch="true"
10
+ :title="!showLabel ? labelText: ''"
10
11
  />
11
12
  </div>
12
13
  </template>
@@ -22,20 +23,46 @@ export default {
22
23
  data() {
23
24
  return {
24
25
  darkMode: false,
25
- labelText: "Light mode activated"
26
+ labelText: ""
26
27
  }
27
28
  },
28
29
  props: {
30
+ /**
31
+ * toggle visibility of label
32
+ */
29
33
  showLabel: {
30
34
  type: Boolean,
31
35
  default: false
36
+ },
37
+ /**
38
+ * activate if styled layout should be used
39
+ *
40
+ * @affectsStyling: true
41
+ */
42
+ useStyledLayout: {
43
+ type: Boolean,
44
+ default: false
45
+ },
46
+ /**
47
+ * label-text to enable dark-mode
48
+ *
49
+ * @requiredForAccessibility: true
50
+ */
51
+ labelTextDarkMode: {
52
+ type: String,
53
+ default: "Dark-mode enabled"
54
+ },
55
+ /**
56
+ * label-text to enable light-mode
57
+ *
58
+ * @requiredForAccessibility: true
59
+ */
60
+ labelTextLightMode: {
61
+ type: String,
62
+ default: "Light-mode enabled"
32
63
  }
33
64
  },
34
65
  created() {
35
- // get color-scheme (light-/dark-mode) from browser-settings
36
- // this.darkMode = window.matchMedia('(prefers-color-scheme: dark)').matches
37
- // document.body.classList.add(this.darkMode ? 'dark-mode' : 'light-mode');
38
-
39
66
  const mql = window.matchMedia('(prefers-color-scheme: dark)')
40
67
  mql.addEventListener("change", this.onColorSchemeChange)
41
68
  this.onColorSchemeChange(mql)
@@ -50,74 +77,80 @@ export default {
50
77
  }
51
78
  },
52
79
  watch: {
53
- darkMode() {
54
- // toggle classes to overwrite media-query styles for color-schemes
55
- const htmlTag = document.querySelector('html')
56
- if(this.darkMode) {
57
- htmlTag.classList.replace("light-mode", "dark-mode");
58
- this.labelText = "Dark-Mode enabled"
59
- } else {
60
- htmlTag.classList.replace("dark-mode", "light-mode");
61
- this.labelText = "Light-Mode enabled"
62
- }
63
- htmlTag.dispatchEvent(new CustomEvent('toggle-color-scheme', { detail: this.darkMode ? 'dark-mode' : 'light-mode' }))
80
+ darkMode: {
81
+ handler() {
82
+ // toggle classes to overwrite media-query styles for color-schemes
83
+ const htmlTag = document.querySelector('html')
84
+ if (this.darkMode) {
85
+ htmlTag.classList.replace("light-mode", "dark-mode");
86
+ this.labelText = this.labelTextDarkMode
87
+ } else {
88
+ htmlTag.classList.replace("dark-mode", "light-mode");
89
+ this.labelText = this.labelTextLightMode
90
+ }
91
+ htmlTag.dispatchEvent(new CustomEvent('toggle-color-scheme', {detail: this.darkMode ? 'dark-mode' : 'light-mode'}))
92
+ },
93
+ immediate: true
64
94
  }
65
95
  }
66
96
  }
67
97
  </script>
68
98
 
69
99
  <style lang="scss">
100
+ /* begin cmd-toggle-dark-mode ---------------------------------------------------------------------------------------- */
70
101
  .cmd-toggle-dark-mode {
71
- .cmd-form-element {
102
+ &.styled-layout {
72
103
  input {
73
104
  --dark-blue: hsl(195, 96%, 45%);
74
105
  --medium-blue: hsl(194, 97%, 39%);
75
106
  --light-blue: hsl(195, 97%, 76%);
76
- background: linear-gradient(to bottom, var(--dark-blue) 0%,var(--light-blue) 67%);
107
+ background: linear-gradient(to bottom, var(--dark-blue) 0%, var(--light-blue) 67%);
77
108
  border-color: var(--medium-blue);
78
109
 
79
- &:after {
110
+ &::after {
80
111
  --yellow-hue: 60;
81
112
  --yellow-saturation: 100%;
82
113
  --yellow-lightness: 76.7%;
83
- background: radial-gradient(ellipse at center, var(--pure-white) 20%, hsl(var(--yellow-hue), var(--yellow-saturation), var(--yellow-lightness)) 30%, hsla(var(--yellow-hue), var(--yellow-saturation), var(--yellow-lightness),0) 100%);
114
+ background: radial-gradient(ellipse at center, var(--pure-white) 20%, hsl(var(--yellow-hue), var(--yellow-saturation), var(--yellow-lightness)) 30%, hsla(var(--yellow-hue), var(--yellow-saturation), var(--yellow-lightness), 0) 100%);
84
115
  border-color: transparent;
85
116
  box-shadow: 0 0 1rem hsl(var(--yellow-hue), var(--yellow-saturation), var(--yellow-lightness));
86
117
  }
87
118
  }
88
- }
89
119
 
90
- &.dark-mode {
91
- input {
92
- background: var(--color-scheme-background-color);
93
- border-color: var(--color-scheme-text-color);
94
-
95
- &:before {
96
- --size: 1.2rem;
97
- content: "";
98
- width: var(--size);
99
- aspect-ratio: 1/1;
120
+ &.dark-mode {
121
+ input {
100
122
  background: var(--color-scheme-background-color);
101
- border-radius: var(--full-circle);
102
- position: absolute;
103
- top: 0;
104
- right: calc(var(--size) / 2);
105
- transform: translateY(calc(50% - 35%));
106
- z-index: 100;
107
- }
123
+ border-color: var(--color-scheme-text-color);
108
124
 
109
- &:after {
110
- background: radial-gradient(ellipse at center, var(--pure-white) 50%,var(--medium-gray) 100%);
111
- border-color: transparent;
112
- box-shadow: .2rem .1rem .2rem hsla(var(--pure-white-hue), var(--pure-white-saturation), var(--pure-white-lightness), .3);
125
+ &::before {
126
+ --size: 1.2rem;
127
+ content: "";
128
+ width: var(--size);
129
+ aspect-ratio: 1/1;
130
+ background: var(--color-scheme-background-color);
131
+ border-radius: var(--full-circle);
132
+ position: absolute;
133
+ top: 0;
134
+ right: calc(var(--size) / 2);
135
+ transform: translateY(calc(50% - 35%));
136
+ z-index: 100;
137
+ transition: var(--default-transition);
138
+ }
139
+
140
+ &::after {
141
+ background: radial-gradient(ellipse at center, var(--pure-white) 50%, var(--medium-gray) 100%);
142
+ border-color: transparent;
143
+ box-shadow: .2rem .1rem .2rem hsla(var(--pure-white-hue), var(--pure-white-saturation), var(--pure-white-lightness), .3);
144
+ }
113
145
  }
114
- }
115
146
 
116
- .label-text {
117
- span {
118
- color: var(--color-scheme-text-color);
147
+ .label-text {
148
+ span {
149
+ color: var(--color-scheme-text-color);
150
+ }
119
151
  }
120
152
  }
121
153
  }
122
154
  }
155
+ /* end cmd-toggle-dark-mode ---------------------------------------------------------------------------------------- */
123
156
  </style>
@@ -1,12 +1,14 @@
1
1
  <template>
2
2
  <div v-if="tooltipVisibility" :class="['cmd-tooltip', status]" ref="tooltip" aria-role="tooltip">
3
- <div v-if="CmdHeadline || iconClose.show" class="headline-wrapper">
3
+ <div v-if="cmdHeadline || iconClose.show" class="headline-wrapper">
4
4
  <!-- begin CmdHeadline -->
5
- <CmdHeadline v-if="CmdHeadline"
6
- :iconClass="CmdHeadline.iconClass"
7
- :preHeadline="CmdHeadline.preHeadline"
8
- :headlineLevel="CmdHeadline.headlineLevel"
9
- :headlineText="CmdHeadline.headlineText"/>
5
+ <CmdHeadline
6
+ v-if="cmdHeadline"
7
+ :iconClass="cmdHeadline.iconClass"
8
+ :preHeadline="cmdHeadline.preHeadline"
9
+ :headlineLevel="cmdHeadline.headlineLevel"
10
+ :headlineText="cmdHeadline.headlineText"
11
+ />
10
12
  <!-- end CmdHeadline -->
11
13
 
12
14
  <!-- begin icon to close tooltip -->
@@ -24,6 +24,7 @@
24
24
  :inputModelValue="inputModelValue"
25
25
  :inputAttributes="inputAttributes"
26
26
  :validationTooltip="validationTooltip"
27
+ :labelText="labelText"
27
28
  />
28
29
  <!-- end CmdListOfRequirements -->
29
30
  </CmdTooltip>
@@ -44,6 +45,13 @@ export default {
44
45
  CmdTooltip
45
46
  },
46
47
  props: {
48
+ /**
49
+ * text for label (used in headline)
50
+ */
51
+ labelText: {
52
+ type: String,
53
+ required: false
54
+ },
47
55
  /**
48
56
  * related-id for CmdTooltip-component
49
57
  */
@@ -3,8 +3,9 @@
3
3
  <fieldset v-if="advancedMode" :class="['cmd-upload-form flex-container', { 'upload-initiated': uploadInitiated }]">
4
4
  <legend :class="{hidden : !showLegend}">{{ textLegend }}</legend>
5
5
  <!-- begin CmdHeadlineFieldset -->
6
- <CmdHeadline v-if="CmdHeadlineFieldset"
7
- v-bind="CmdHeadlineFieldset"
6
+ <CmdHeadline
7
+ v-if="cmdHeadlineFieldset"
8
+ v-bind="cmdHeadlineFieldset"
8
9
  />
9
10
  <!-- end CmdHeadlineFieldset -->
10
11
 
@@ -25,10 +26,10 @@
25
26
 
26
27
  <div :class="['box drop-area flex-container vertical', { 'allow-drop': allowDrop }]" v-on="dragAndDropHandler">
27
28
  <template v-if="!listOfFiles.length">
28
- <CmdHeadline v-if="allowMultipleFileUploads" v-bind="CmdHeadlineNoFilesToUpload" headlineLevel="4">
29
+ <CmdHeadline v-if="allowMultipleFileUploads" v-bind="cmdHeadlineNoFilesToUpload" headlineLevel="4">
29
30
  {{ getMessage("cmduploadform.no_files_to_upload") }}
30
31
  </CmdHeadline>
31
- <CmdHeadline v-else v-bind="CmdHeadlineNoFilesToUpload" headlineLevel="4">
32
+ <CmdHeadline v-else v-bind="cmdHeadlineNoFilesToUpload" headlineLevel="4">
32
33
  {{ getMessage("cmduploadform.no_file_to_upload") }}
33
34
  </CmdHeadline>
34
35
  </template>
@@ -36,7 +37,7 @@
36
37
  <!-- begin total-upload information -->
37
38
  <div v-else class="flex-container vertical">
38
39
  <div v-if="showTotalUpload && listOfFiles.length !== 1" class="flex-container vertical list-files-wrapper">
39
- <CmdHeadline v-bind="CmdHeadlineSummaryOfAllFiles" headlineLevel="4">
40
+ <CmdHeadline v-bind="cmdHeadlineSummaryOfAllFiles" headlineLevel="4">
40
41
  {{ getMessage("cmduploadform.headline.summary_of_all_files") }}
41
42
  </CmdHeadline>
42
43
  <ul v-if="showTotalUpload && listOfFiles.length !== 1" class="list-of-files total-files">
@@ -80,7 +81,7 @@
80
81
 
81
82
  <div class="flex-container vertical list-files-wrapper">
82
83
  <!-- begin list of selected files -->
83
- <CmdHeadline v-bind="CmdHeadlineListOfSelectedFiles" headlineLevel="4">
84
+ <CmdHeadline v-bind="cmdHeadlineListOfSelectedFiles" headlineLevel="4">
84
85
  {{ getMessage("cmduploadform.headline.list_of_selected_files") }}
85
86
  </CmdHeadline>
86
87
  <ul class="list-of-files">
@@ -131,10 +132,10 @@
131
132
  <!-- end list of selected files -->
132
133
 
133
134
  <!-- begin upload conditions -->
134
- <CmdHeadline v-if="allowMultipleFileUploads && listOfFiles.length" v-bind="CmdHeadlineSelectAdditionalFiles" headlineLevel="4">
135
+ <CmdHeadline v-if="allowMultipleFileUploads && listOfFiles.length" v-bind="cmdHeadlineSelectAdditionalFiles" headlineLevel="4">
135
136
  {{ getMessage("cmduploadform.headline.select_additional_files") }}
136
137
  </CmdHeadline>
137
- <CmdHeadline v-if="!allowMultipleFileUploads && listOfFiles.length" v-bind="CmdHeadlineSelectNewFile" headlineLevel="4">
138
+ <CmdHeadline v-if="!allowMultipleFileUploads && listOfFiles.length" v-bind="cmdHeadlineSelectNewFile" headlineLevel="4">
138
139
  {{ getMessage("cmduploadform.headline.select_new_file") }}
139
140
  </CmdHeadline>
140
141
  <dl class="small">
@@ -508,14 +509,14 @@ export default {
508
509
  /**
509
510
  * properties for CmdHeadline-component at of the fieldset
510
511
  */
511
- CmdHeadlineFieldset: {
512
+ cmdHeadlineFieldset: {
512
513
  type: Object,
513
514
  required: false
514
515
  },
515
516
  /**
516
517
  * properties for CmdHeadline-component shown if no files for upload exist
517
518
  */
518
- CmdHeadlineNoFilesToUpload: {
519
+ cmdHeadlineNoFilesToUpload: {
519
520
  type: Object,
520
521
  required: false
521
522
  },
@@ -529,28 +530,28 @@ export default {
529
530
  /**
530
531
  * properties for CmdHeadline-component for 'summary of all files'
531
532
  */
532
- CmdHeadlineSummaryOfAllFiles: {
533
+ cmdHeadlineSummaryOfAllFiles: {
533
534
  type: Object,
534
535
  required: false
535
536
  },
536
537
  /**
537
538
  * properties for CmdHeadline-component for 'list of selected files'
538
539
  */
539
- CmdHeadlineListOfSelectedFiles: {
540
+ cmdHeadlineListOfSelectedFiles: {
540
541
  type: Object,
541
542
  required: false
542
543
  },
543
544
  /**
544
545
  * properties for CmdHeadline-component for 'select additional files'
545
546
  */
546
- CmdHeadlineSelectAdditionalFiles: {
547
+ cmdHeadlineSelectAdditionalFiles: {
547
548
  type: Object,
548
549
  required: false
549
550
  },
550
551
  /**
551
552
  * properties for CmdHeadline-component for 'select new file'
552
553
  */
553
- CmdHeadlineSelectNewFile: {
554
+ cmdHeadlineSelectNewFile: {
554
555
  type: Object,
555
556
  required: false
556
557
  },
@@ -4,7 +4,7 @@
4
4
  "set default v-model (must be named modelValue in Vue3)"
5
5
  ]
6
6
  },
7
- "CmdHeadlineCookieDisclaimer": {
7
+ "cmdHeadlineCookieDisclaimer": {
8
8
  "comments": [
9
9
  "properties for CmdHeadline-component at top of cookie disclaimer"
10
10
  ]
@@ -1,4 +1,9 @@
1
1
  {
2
+ "novalidate": {
3
+ "comments": [
4
+ "deactivate if browser-validation should be used"
5
+ ]
6
+ },
2
7
  "useValidation": {
3
8
  "comments": [
4
9
  "if activated the entire form will be validated by pre-coded validation"
@@ -11,7 +11,7 @@
11
11
  },
12
12
  "labelText": {
13
13
  "comments": [
14
- "text for label"
14
+ "text for label (used in headline)"
15
15
  ]
16
16
  },
17
17
  "inputRequirements": {
@@ -24,6 +24,16 @@
24
24
  "set a helplink to a different page for further support"
25
25
  ]
26
26
  },
27
+ "iconSuccess": {
28
+ "comments": [
29
+ "icon to show success-status"
30
+ ]
31
+ },
32
+ "iconError": {
33
+ "comments": [
34
+ "icon to show error-status"
35
+ ]
36
+ },
27
37
  "cmdHeadline": {
28
38
  "comments": [
29
39
  "properties of CmdHeadline-component"
@@ -29,12 +29,12 @@
29
29
  ]
30
30
  }
31
31
  },
32
- "CmdHeadlineLoginForm": {
32
+ "cmdHeadlineLoginForm": {
33
33
  "comments": [
34
34
  "properties for CmdHeadline-component for login-form"
35
35
  ]
36
36
  },
37
- "CmdHeadlineSendLoginForm": {
37
+ "cmdHeadlineSendLoginForm": {
38
38
  "comments": [
39
39
  "properties for CmdHeadline-component for send-login-form"
40
40
  ]
@@ -0,0 +1,37 @@
1
+ {
2
+ "showLabel": {
3
+ "comments": [
4
+ "toggle visibility of label"
5
+ ]
6
+ },
7
+ "useStyledLayout": {
8
+ "comments": [
9
+ "activate if styled layout should be used"
10
+ ],
11
+ "annotations": {
12
+ "affectsStyling": [
13
+ "true"
14
+ ]
15
+ }
16
+ },
17
+ "labelTextDarkMode": {
18
+ "comments": [
19
+ "label-text to enable dark-mode"
20
+ ],
21
+ "annotations": {
22
+ "requiredForAccessibility": [
23
+ "true"
24
+ ]
25
+ }
26
+ },
27
+ "labelTextLightMode": {
28
+ "comments": [
29
+ "label-text to enable light-mode"
30
+ ],
31
+ "annotations": {
32
+ "requiredForAccessibility": [
33
+ "true"
34
+ ]
35
+ }
36
+ }
37
+ }
@@ -1,4 +1,9 @@
1
1
  {
2
+ "labelText": {
3
+ "comments": [
4
+ "text for label (used in headline)"
5
+ ]
6
+ },
2
7
  "relatedId": {
3
8
  "comments": [
4
9
  "related-id for CmdTooltip-component"
@@ -122,12 +122,12 @@
122
122
  "set icon class for cancel-icon"
123
123
  ]
124
124
  },
125
- "CmdHeadlineFieldset": {
125
+ "cmdHeadlineFieldset": {
126
126
  "comments": [
127
127
  "properties for CmdHeadline-component at of the fieldset"
128
128
  ]
129
129
  },
130
- "CmdHeadlineNoFilesToUpload": {
130
+ "cmdHeadlineNoFilesToUpload": {
131
131
  "comments": [
132
132
  "properties for CmdHeadline-component shown if no files for upload exist"
133
133
  ]
@@ -137,22 +137,22 @@
137
137
  "properties for CmdHeadline-component shown if no file for upload exist"
138
138
  ]
139
139
  },
140
- "CmdHeadlineSummaryOfAllFiles": {
140
+ "cmdHeadlineSummaryOfAllFiles": {
141
141
  "comments": [
142
142
  "properties for CmdHeadline-component for 'summary of all files'"
143
143
  ]
144
144
  },
145
- "CmdHeadlineListOfSelectedFiles": {
145
+ "cmdHeadlineListOfSelectedFiles": {
146
146
  "comments": [
147
147
  "properties for CmdHeadline-component for 'list of selected files'"
148
148
  ]
149
149
  },
150
- "CmdHeadlineSelectAdditionalFiles": {
150
+ "cmdHeadlineSelectAdditionalFiles": {
151
151
  "comments": [
152
152
  "properties for CmdHeadline-component for 'select additional files'"
153
153
  ]
154
154
  },
155
- "CmdHeadlineSelectNewFile": {
155
+ "cmdHeadlineSelectNewFile": {
156
156
  "comments": [
157
157
  "properties for CmdHeadline-component for 'select new file'"
158
158
  ]
package/src/index.js CHANGED
@@ -11,13 +11,13 @@ 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 CmdHeadline } from '@/components/CmdHeadline'
15
14
  export { default as CmdFakeSelect } from '@/components/CmdFakeSelect'
16
15
  export { openFancyBox, default as CmdFancyBox } from '@/components/CmdFancyBox'
17
16
  export { default as CmdForm } from '@/components/CmdForm'
18
17
  export { default as CmdFormElement } from '@/components/CmdFormElement'
19
18
  export { default as CmdFormFilters } from '@/components/CmdFormFilters'
20
19
  export { default as CmdGoogleMaps } from '@/components/CmdGoogleMaps'
20
+ export { default as CmdHeadline } from '@/components/CmdHeadline'
21
21
  export { default as CmdImageGallery } from '@/components/CmdImageGallery'
22
22
  export { default as CmdImageZoom } from '@/components/CmdImageZoom'
23
23
  export { default as CmdInputGroup } from '@/components/CmdInputGroup'
@@ -38,6 +38,7 @@ export { default as CmdSystemMessage } from '@/components/CmdSystemMessage'
38
38
  export { default as CmdTable } from '@/components/CmdTable'
39
39
  export { default as CmdTabs } from '@/components/CmdTabs'
40
40
  export { default as CmdThumbnailScroller } from '@/components/CmdThumbnailScroller'
41
+ export { default as CmdToggleDarkMode } from '@/components/CmdToggleDarkMode'
41
42
  export { default as CmdTooltip } from '@/components/CmdTooltip'
42
43
  export { default as CmdUploadForm } from '@/components/CmdUploadForm'
43
44
  export { default as CmdWidthLimitationWrapper } from '@/components/CmdWidthLimitationWrapper'
@@ -2,7 +2,7 @@ export default {
2
2
  data() {
3
3
  return {
4
4
  defaultMessageProperties: {
5
- "cmdfakeselect.headline.requirement_for_input": "Requirement for input",
5
+ "cmdfakeselect.headline.requirements_for_input": "Requirements for input",
6
6
  "cmdfakeselect.linktext.deselect_all_options": "Deselect all options",
7
7
  "cmdfakeselect.linktext.select_all_options": "Select all options",
8
8
  "cmdfakeselect.headline.": "An option is selected",
@@ -0,0 +1,10 @@
1
+ export default {
2
+ data() {
3
+ return {
4
+ defaultMessageProperties: {
5
+ "cmdlistofrequirements.headline.requirement_for_input": "Requirement for input",
6
+ "cmdlistofrequirements.headline.requirements_for_input": "Requirements for input",
7
+ }
8
+ }
9
+ }
10
+ }