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.
- package/dist/comand-component-library.css +1 -1
- package/dist/comand-component-library.umd.min.js +1 -1
- package/package.json +1 -1
- package/src/App.vue +12 -8
- package/src/components/CmdAddressData.vue +1 -1
- package/src/components/CmdBankAccountData.vue +3 -1
- package/src/components/CmdBox.vue +34 -12
- package/src/components/CmdBoxSiteSearch.vue +2 -2
- package/src/components/CmdCookieDisclaimer.vue +15 -9
- package/src/components/CmdFakeSelect.vue +2 -1
- package/src/components/CmdForm.vue +9 -2
- package/src/components/CmdFormElement.vue +7 -0
- package/src/components/CmdHeadline.vue +18 -10
- package/src/components/CmdListOfLinks.vue +4 -2
- package/src/components/CmdListOfRequirements.vue +45 -5
- package/src/components/CmdLoginForm.vue +11 -9
- package/src/components/CmdMainNavigation.vue +1 -1
- package/src/components/CmdOpeningHours.vue +1 -1
- package/src/components/CmdSlideButton.vue +1 -0
- package/src/components/CmdTabs.vue +2 -0
- package/src/components/CmdToggleDarkMode.vue +80 -47
- package/src/components/CmdTooltip.vue +8 -6
- package/src/components/CmdTooltipForInputElements.vue +8 -0
- package/src/components/CmdUploadForm.vue +15 -14
- package/src/documentation/generated/CmdCookieDisclaimerPropertyDescriptions.json +1 -1
- package/src/documentation/generated/CmdFormPropertyDescriptions.json +5 -0
- package/src/documentation/generated/CmdListOfRequirementsPropertyDescriptions.json +11 -1
- package/src/documentation/generated/CmdLoginFormPropertyDescriptions.json +2 -2
- package/src/documentation/generated/CmdToggleDarkModePropertyDescriptions.json +37 -0
- package/src/documentation/generated/CmdTooltipForInputElementsPropertyDescriptions.json +5 -0
- package/src/documentation/generated/CmdUploadFormPropertyDescriptions.json +6 -6
- package/src/index.js +2 -1
- package/src/mixins/CmdFakeSelect/DefaultMessageProperties.js +1 -1
- 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: "
|
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
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
91
|
-
|
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-
|
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
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
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
|
-
|
117
|
-
|
118
|
-
|
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="
|
3
|
+
<div v-if="cmdHeadline || iconClose.show" class="headline-wrapper">
|
4
4
|
<!-- begin CmdHeadline -->
|
5
|
-
<CmdHeadline
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
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
|
7
|
-
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
554
|
+
cmdHeadlineSelectNewFile: {
|
554
555
|
type: Object,
|
555
556
|
required: false
|
556
557
|
},
|
@@ -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
|
-
"
|
32
|
+
"cmdHeadlineLoginForm": {
|
33
33
|
"comments": [
|
34
34
|
"properties for CmdHeadline-component for login-form"
|
35
35
|
]
|
36
36
|
},
|
37
|
-
"
|
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
|
+
}
|
@@ -122,12 +122,12 @@
|
|
122
122
|
"set icon class for cancel-icon"
|
123
123
|
]
|
124
124
|
},
|
125
|
-
"
|
125
|
+
"cmdHeadlineFieldset": {
|
126
126
|
"comments": [
|
127
127
|
"properties for CmdHeadline-component at of the fieldset"
|
128
128
|
]
|
129
129
|
},
|
130
|
-
"
|
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
|
-
"
|
140
|
+
"cmdHeadlineSummaryOfAllFiles": {
|
141
141
|
"comments": [
|
142
142
|
"properties for CmdHeadline-component for 'summary of all files'"
|
143
143
|
]
|
144
144
|
},
|
145
|
-
"
|
145
|
+
"cmdHeadlineListOfSelectedFiles": {
|
146
146
|
"comments": [
|
147
147
|
"properties for CmdHeadline-component for 'list of selected files'"
|
148
148
|
]
|
149
149
|
},
|
150
|
-
"
|
150
|
+
"cmdHeadlineSelectAdditionalFiles": {
|
151
151
|
"comments": [
|
152
152
|
"properties for CmdHeadline-component for 'select additional files'"
|
153
153
|
]
|
154
154
|
},
|
155
|
-
"
|
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.
|
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",
|