comand-component-library 3.1.72 → 3.1.75
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 +3 -3
- package/src/App.vue +112 -79
- package/src/assets/data/cookie-disclaimer.json +7 -6
- 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 +20 -59
- package/src/components/CmdAddressData.vue +7 -7
- package/src/components/CmdBankAccountData.vue +7 -7
- package/src/components/CmdBox.vue +25 -31
- package/src/components/CmdBoxSiteSearch.vue +9 -9
- package/src/components/CmdCookieDisclaimer.vue +93 -25
- package/src/components/CmdFakeSelect.vue +36 -52
- package/src/components/CmdFormElement.vue +36 -57
- package/src/components/{CmdCustomHeadline.vue → CmdHeadline.vue} +1 -1
- package/src/components/CmdInputGroup.vue +156 -24
- package/src/components/CmdListOfLinks.vue +8 -8
- package/src/components/CmdListOfRequirements.vue +150 -0
- package/src/components/CmdLoginForm.vue +17 -17
- package/src/components/CmdMainNavigation.vue +2 -2
- 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 -5
- 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 +32 -0
- package/src/documentation/generated/CmdBackToTopButtonPropertyDescriptions.json +12 -0
- package/src/documentation/generated/CmdBankAccountDataPropertyDescriptions.json +34 -0
- package/src/documentation/generated/CmdBoxPropertyDescriptions.json +96 -0
- package/src/documentation/generated/CmdBoxSiteSearchPropertyDescriptions.json +79 -0
- package/src/documentation/generated/CmdBoxWrapperPropertyDescriptions.json +47 -0
- package/src/documentation/generated/CmdBreadcrumbsPropertyDescriptions.json +17 -0
- package/src/documentation/generated/CmdCompanyLogoPropertyDescriptions.json +27 -0
- package/src/documentation/generated/CmdCookieDisclaimerPropertyDescriptions.json +37 -0
- package/src/documentation/generated/CmdCustomHeadlinePropertyDescriptions.json +22 -0
- package/src/documentation/generated/CmdFakeSelectPropertyDescriptions.json +84 -0
- package/src/documentation/generated/CmdFancyBoxPropertyDescriptions.json +62 -0
- package/src/documentation/generated/CmdFormElementPropertyDescriptions.json +258 -0
- package/src/documentation/generated/CmdFormFiltersPropertyDescriptions.json +32 -0
- package/src/documentation/generated/CmdFormPropertyDescriptions.json +40 -0
- package/src/documentation/generated/CmdGoogleMapsPropertyDescriptions.json +7 -0
- package/src/documentation/generated/CmdHeadlinePropertyDescriptions.json +22 -0
- package/src/documentation/generated/CmdImageGalleryPropertyDescriptions.json +22 -0
- package/src/documentation/generated/CmdImageZoomPropertyDescriptions.json +12 -0
- package/src/documentation/generated/CmdInputGroupPropertyDescriptions.json +117 -0
- package/src/documentation/generated/CmdListOfLinksPropertyDescriptions.json +60 -0
- package/src/documentation/generated/CmdListOfRequirementsPropertyDescriptions.json +32 -0
- package/src/documentation/generated/CmdLoginFormPropertyDescriptions.json +90 -0
- package/src/documentation/generated/CmdMainNavigationPropertyDescriptions.json +62 -0
- package/src/documentation/generated/CmdMultistepFormProgressBarPropertyDescriptions.json +17 -0
- package/src/documentation/generated/CmdOpeningHoursPropertyDescriptions.json +42 -0
- package/src/documentation/generated/CmdPagerPropertyDescriptions.json +37 -0
- package/src/documentation/generated/CmdProgressBarPropertyDescriptions.json +32 -0
- package/src/documentation/generated/CmdShareButtonsPropertyDescriptions.json +34 -0
- package/src/documentation/generated/CmdSiteFooterPropertyDescriptions.json +12 -0
- package/src/documentation/generated/CmdSiteHeaderPropertyDescriptions.json +27 -0
- package/src/documentation/generated/CmdSlideButtonPropertyDescriptions.json +25 -0
- package/src/documentation/generated/CmdSlideshowPropertyDescriptions.json +42 -0
- package/src/documentation/generated/CmdSwitchLanguagePropertyDescriptions.json +7 -0
- package/src/documentation/generated/CmdSystemMessagePropertyDescriptions.json +45 -0
- package/src/documentation/generated/CmdTablePropertyDescriptions.json +72 -0
- package/src/documentation/generated/CmdTabsPropertyDescriptions.json +27 -0
- package/src/documentation/generated/CmdThumbnailScrollerPropertyDescriptions.json +32 -0
- package/src/documentation/generated/CmdTooltipForInputElementsPropertyDescriptions.json +42 -0
- package/src/documentation/generated/CmdTooltipPropertyDescriptions.json +17 -0
- package/src/documentation/generated/CmdUploadFormPropertyDescriptions.json +175 -0
- package/src/documentation/generated/CmdWidthLimitationWrapperPropertyDescriptions.json +41 -0
- package/src/index.js +2 -1
- package/src/mixins/CmdCookieDisclaimer/DefaultMessageProperties.js +10 -0
- package/src/mixins/FieldValidation.js +16 -6
- 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>
|
@@ -0,0 +1,32 @@
|
|
1
|
+
{
|
2
|
+
"showLabelIcons": {
|
3
|
+
"comments": [
|
4
|
+
"show a label-icon (if exists)"
|
5
|
+
]
|
6
|
+
},
|
7
|
+
"showLabelTexts": {
|
8
|
+
"comments": [
|
9
|
+
"show a label-text"
|
10
|
+
]
|
11
|
+
},
|
12
|
+
"CmdHeadline": {
|
13
|
+
"comments": [
|
14
|
+
"properties for CmdHeadline-component"
|
15
|
+
]
|
16
|
+
},
|
17
|
+
"showLabels": {
|
18
|
+
"comments": [
|
19
|
+
"option to toggle labels (i.e. telephone, email etc.) in front/left of data"
|
20
|
+
]
|
21
|
+
},
|
22
|
+
"addressData": {
|
23
|
+
"comments": [
|
24
|
+
"all address-data (incl. labels) that will be shown"
|
25
|
+
]
|
26
|
+
},
|
27
|
+
"linkGoogleMaps": {
|
28
|
+
"comments": [
|
29
|
+
"link physical address (street, no, zip and city) with Google Maps"
|
30
|
+
]
|
31
|
+
}
|
32
|
+
}
|
@@ -0,0 +1,34 @@
|
|
1
|
+
{
|
2
|
+
"accountData": {
|
3
|
+
"comments": [
|
4
|
+
"bank account data",
|
5
|
+
"",
|
6
|
+
"must contain: owner, name of bank, IBAN, SWIFT/BIC"
|
7
|
+
]
|
8
|
+
},
|
9
|
+
"allowCopyByClick": {
|
10
|
+
"comments": [
|
11
|
+
"enable if data can be copied by click on icon"
|
12
|
+
]
|
13
|
+
},
|
14
|
+
"additionalInformation": {
|
15
|
+
"comments": [
|
16
|
+
"additional information shown in a paragraph below account data"
|
17
|
+
]
|
18
|
+
},
|
19
|
+
"iconCopy": {
|
20
|
+
"comments": [
|
21
|
+
"icon 'copy'"
|
22
|
+
],
|
23
|
+
"annotations": {
|
24
|
+
"requiredForAccessibility": [
|
25
|
+
"partial"
|
26
|
+
]
|
27
|
+
}
|
28
|
+
},
|
29
|
+
"CmdHeadline": {
|
30
|
+
"comments": [
|
31
|
+
"properties for CmdHeadline-component"
|
32
|
+
]
|
33
|
+
}
|
34
|
+
}
|
@@ -0,0 +1,96 @@
|
|
1
|
+
{
|
2
|
+
"boxType": {
|
3
|
+
"comments": [
|
4
|
+
"set boyType to show different types of boxes/contents"
|
5
|
+
],
|
6
|
+
"annotations": {
|
7
|
+
"allowedValues": [
|
8
|
+
"content, product, user"
|
9
|
+
],
|
10
|
+
"affectsStyling": [
|
11
|
+
"true"
|
12
|
+
]
|
13
|
+
}
|
14
|
+
},
|
15
|
+
"collapsible": {
|
16
|
+
"comments": [
|
17
|
+
"activate if box should be collapsible"
|
18
|
+
]
|
19
|
+
},
|
20
|
+
"useTransition": {
|
21
|
+
"comments": [
|
22
|
+
"use transition to expand and collapse box-body",
|
23
|
+
"",
|
24
|
+
"boyType must be 'content' and 'collapsible' must be activated"
|
25
|
+
]
|
26
|
+
},
|
27
|
+
"defaultProfileIconClass": {
|
28
|
+
"comments": [
|
29
|
+
"set default profile-icon (will eb shown if no user-image exists)"
|
30
|
+
]
|
31
|
+
},
|
32
|
+
"product": {
|
33
|
+
"comments": [
|
34
|
+
"the shown product (incl. name, price, image, description)"
|
35
|
+
],
|
36
|
+
"annotations": {
|
37
|
+
"required": [
|
38
|
+
"only available for boxtype===product"
|
39
|
+
]
|
40
|
+
}
|
41
|
+
},
|
42
|
+
"user": {
|
43
|
+
"comments": [
|
44
|
+
"the shown user-profile (incl. name, image, contact-data)"
|
45
|
+
],
|
46
|
+
"annotations": {
|
47
|
+
"required": [
|
48
|
+
"only available for boxtype===user"
|
49
|
+
]
|
50
|
+
}
|
51
|
+
},
|
52
|
+
"useSlots": {
|
53
|
+
"comments": [
|
54
|
+
"activated if all content (incl. headline) is given by slot",
|
55
|
+
"",
|
56
|
+
"if false textBody-property must be set"
|
57
|
+
]
|
58
|
+
},
|
59
|
+
"textBody": {
|
60
|
+
"comments": [
|
61
|
+
"String used as content (placed in a paragraph-tag) for box-body",
|
62
|
+
"",
|
63
|
+
"should only be used, if no further html-structure is required for box-body"
|
64
|
+
]
|
65
|
+
},
|
66
|
+
"iconOpen": {
|
67
|
+
"comments": [
|
68
|
+
"icon to expand an accordion"
|
69
|
+
],
|
70
|
+
"annotations": {
|
71
|
+
"requiredForAccessibility": [
|
72
|
+
"partial"
|
73
|
+
]
|
74
|
+
}
|
75
|
+
},
|
76
|
+
"iconClosed": {
|
77
|
+
"comments": [
|
78
|
+
"icon to collapse an accordion"
|
79
|
+
],
|
80
|
+
"annotations": {
|
81
|
+
"requiredForAccessibility": [
|
82
|
+
"partial"
|
83
|
+
]
|
84
|
+
}
|
85
|
+
},
|
86
|
+
"stretchVertically": {
|
87
|
+
"comments": [
|
88
|
+
"allow box to be stretched as high as parent-element"
|
89
|
+
]
|
90
|
+
},
|
91
|
+
"CmdHeadline": {
|
92
|
+
"comments": [
|
93
|
+
"properties for CmdHeadline-component"
|
94
|
+
]
|
95
|
+
}
|
96
|
+
}
|
@@ -0,0 +1,79 @@
|
|
1
|
+
{
|
2
|
+
"modelValueInput1": {
|
3
|
+
"comments": [
|
4
|
+
"custom modelValue for first input-field"
|
5
|
+
]
|
6
|
+
},
|
7
|
+
"modelValueInput2": {
|
8
|
+
"comments": [
|
9
|
+
"custom modelValue for second input-field"
|
10
|
+
]
|
11
|
+
},
|
12
|
+
"modelValueRadius": {
|
13
|
+
"comments": [
|
14
|
+
"custom modelValue for radius"
|
15
|
+
]
|
16
|
+
},
|
17
|
+
"modelValueSearchFilters": {
|
18
|
+
"comments": [
|
19
|
+
"custom modelValue for search-filters"
|
20
|
+
]
|
21
|
+
},
|
22
|
+
"useFilters": {
|
23
|
+
"comments": [
|
24
|
+
"toggle use of filters (must configured)"
|
25
|
+
]
|
26
|
+
},
|
27
|
+
"textLegend": {
|
28
|
+
"comments": [
|
29
|
+
"text for legend"
|
30
|
+
],
|
31
|
+
"annotations": {
|
32
|
+
"requiredForAccessibility": [
|
33
|
+
"true"
|
34
|
+
]
|
35
|
+
}
|
36
|
+
},
|
37
|
+
"showLegend": {
|
38
|
+
"comments": [
|
39
|
+
"toggle legend visibility",
|
40
|
+
"",
|
41
|
+
"textLegend must be set"
|
42
|
+
]
|
43
|
+
},
|
44
|
+
"results": {
|
45
|
+
"comments": [
|
46
|
+
"send search result from outside to display inside this component"
|
47
|
+
]
|
48
|
+
},
|
49
|
+
"CmdHeadline": {
|
50
|
+
"comments": [
|
51
|
+
"properties for CmdHeadline-component"
|
52
|
+
]
|
53
|
+
},
|
54
|
+
"cmdFormElementInput1": {
|
55
|
+
"comments": [
|
56
|
+
"properties for CmdFormElement-component first search-field"
|
57
|
+
]
|
58
|
+
},
|
59
|
+
"cmdFormElementInput2": {
|
60
|
+
"comments": [
|
61
|
+
"properties for CmdFormElement-component for second search-field"
|
62
|
+
]
|
63
|
+
},
|
64
|
+
"cmdFormElementRadius": {
|
65
|
+
"comments": [
|
66
|
+
"properties for CmdFormElement-component for radius"
|
67
|
+
]
|
68
|
+
},
|
69
|
+
"cmdFormElementSearchButton": {
|
70
|
+
"comments": [
|
71
|
+
"properties for CmdFormElement-component for search-button"
|
72
|
+
]
|
73
|
+
},
|
74
|
+
"cmdFakeSelect": {
|
75
|
+
"comments": [
|
76
|
+
"properties for CmdFakeSelect-component for filters"
|
77
|
+
]
|
78
|
+
}
|
79
|
+
}
|
@@ -0,0 +1,47 @@
|
|
1
|
+
{
|
2
|
+
"useRowViewAsDefault": {
|
3
|
+
"comments": [
|
4
|
+
"activate if boxes should be arranged vertically (each box is a row) by default"
|
5
|
+
]
|
6
|
+
},
|
7
|
+
"allowUserToToggleView": {
|
8
|
+
"comments": [
|
9
|
+
"activate if user can toggle grid- and row-view by himself"
|
10
|
+
]
|
11
|
+
},
|
12
|
+
"allowTogglingCollapsingBoxes": {
|
13
|
+
"comments": [
|
14
|
+
"activate if user can toggle grid- and row-view by himself"
|
15
|
+
]
|
16
|
+
},
|
17
|
+
"collapseBoxesIcon": {
|
18
|
+
"comments": [
|
19
|
+
"icon for collapsed box"
|
20
|
+
]
|
21
|
+
},
|
22
|
+
"expandBoxesIcon": {
|
23
|
+
"comments": [
|
24
|
+
"icon for expanded box"
|
25
|
+
]
|
26
|
+
},
|
27
|
+
"useFlexbox": {
|
28
|
+
"comments": [
|
29
|
+
"activate if you want to use a flex-container instead of a css-grid-container"
|
30
|
+
]
|
31
|
+
},
|
32
|
+
"boxesPerRow": {
|
33
|
+
"comments": [
|
34
|
+
"define the number of boxes per row (if view is grid-view)"
|
35
|
+
]
|
36
|
+
},
|
37
|
+
"iconGridView": {
|
38
|
+
"comments": [
|
39
|
+
"define icon for grid-view"
|
40
|
+
]
|
41
|
+
},
|
42
|
+
"iconRowView": {
|
43
|
+
"comments": [
|
44
|
+
"define icon for row-view"
|
45
|
+
]
|
46
|
+
}
|
47
|
+
}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
{
|
2
|
+
"breadcrumbLabel": {
|
3
|
+
"comments": [
|
4
|
+
"label in front/left of breadcrumbs"
|
5
|
+
]
|
6
|
+
},
|
7
|
+
"breadcrumbLinks": {
|
8
|
+
"comments": [
|
9
|
+
"list of breadcrumb-links (incl. path, icon and text)"
|
10
|
+
]
|
11
|
+
},
|
12
|
+
"breadcrumbSeparator": {
|
13
|
+
"comments": [
|
14
|
+
"separator sign between entries"
|
15
|
+
]
|
16
|
+
}
|
17
|
+
}
|
@@ -0,0 +1,27 @@
|
|
1
|
+
{
|
2
|
+
"link": {
|
3
|
+
"comments": [
|
4
|
+
"link for company logo (i.e. to homepage)"
|
5
|
+
]
|
6
|
+
},
|
7
|
+
"pathDefaultLogo": {
|
8
|
+
"comments": [
|
9
|
+
"path to (default) logo-file"
|
10
|
+
]
|
11
|
+
},
|
12
|
+
"pathDarkmodeLogo": {
|
13
|
+
"comments": [
|
14
|
+
"path to dark-mode logo-file"
|
15
|
+
]
|
16
|
+
},
|
17
|
+
"altText": {
|
18
|
+
"comments": [
|
19
|
+
"alternative text for image"
|
20
|
+
],
|
21
|
+
"annotations": {
|
22
|
+
"requiredForAccessibility": [
|
23
|
+
"true"
|
24
|
+
]
|
25
|
+
}
|
26
|
+
}
|
27
|
+
}
|