comand-component-library 3.1.45 → 3.1.48
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.
- package/dist/comand-component-library.css +1 -1
- package/dist/comand-component-library.umd.min.js +1 -1
- package/package.json +47 -41
- package/src/App.vue +373 -135
- package/src/ComponentDocumentation.vue +156 -0
- package/src/ComponentLibraryHelp.vue +20 -0
- package/src/assets/data/accordion.json +21 -24
- package/src/assets/data/address-data.json +34 -0
- package/src/assets/data/bank-account-data.json +22 -0
- package/src/assets/data/box-product.json +14 -4
- package/src/assets/data/box-user.json +48 -22
- package/src/assets/data/breadcrumbs.json +11 -3
- package/src/assets/data/cookie-disclaimer.json +4 -4
- package/src/assets/data/fake-select-colors.json +4 -0
- package/src/assets/data/fake-select-filter-options.json +14 -0
- package/src/assets/data/fake-select-options-with-icons.json +6 -12
- package/src/assets/data/fake-select-options.json +3 -3
- package/src/assets/data/list-of-links-section-anchors.json +23 -0
- package/src/assets/data/list-of-links-top-header-navigation.json +20 -0
- package/src/assets/data/list-of-links.json +42 -0
- package/src/assets/data/main-navigation.json +48 -0
- package/src/assets/data/multistep-form-progress-bar.json +33 -0
- package/src/assets/data/select-options.json +4 -0
- package/src/assets/data/{share-buttons.json → share-buttons-page-by-json.json} +8 -8
- package/src/assets/data/share-buttons-page-by-property.json +30 -0
- package/src/assets/data/switch-language.json +20 -0
- package/src/assets/data/table-large.json +1 -1
- package/src/assets/data/table-small.json +1 -1
- package/src/assets/styles/global-styles.scss +43 -13
- package/src/assets/styles/transitions.scss +21 -1
- package/src/components/CmdAccordion.vue +43 -42
- package/src/components/CmdAddressData.vue +124 -56
- package/src/components/CmdBackToTopButton.vue +3 -3
- package/src/components/CmdBankAccountData.vue +104 -0
- package/src/components/CmdBox.vue +253 -56
- package/src/components/CmdBoxSiteSearch.vue +138 -39
- package/src/components/CmdBoxWrapper.vue +206 -0
- package/src/components/CmdBreadcrumbs.vue +29 -13
- package/src/components/CmdCompanyLogo.vue +6 -4
- package/src/components/CmdCookieDisclaimer.vue +99 -75
- package/src/components/CmdCopyrightInformation.vue +1 -1
- package/src/components/CmdCustomHeadline.vue +93 -0
- package/src/components/CmdFakeSelect.vue +285 -60
- package/src/components/CmdFancyBox.vue +47 -33
- package/src/components/CmdForm.vue +107 -0
- package/src/components/CmdFormElement.vue +515 -81
- package/src/components/CmdFormFilters.vue +25 -11
- package/src/components/CmdGoogleMaps.vue +9 -3
- package/src/components/CmdImageGallery.vue +28 -5
- package/src/components/CmdImageZoom.vue +9 -1
- package/src/components/CmdListOfLinks.vue +169 -0
- package/src/components/CmdLoginForm.vue +143 -63
- package/src/components/CmdMainNavigation.vue +140 -42
- package/src/components/CmdMultipleSwitch.vue +33 -2
- package/src/components/CmdMultistepFormProgressBar.vue +60 -10
- package/src/components/CmdOpeningHours.vue +36 -10
- package/src/components/CmdPager.vue +7 -5
- package/src/components/CmdProgressBar.vue +20 -3
- package/src/components/CmdShareButtons.vue +64 -9
- package/src/components/CmdSiteHeader.vue +27 -14
- package/src/components/CmdSlideButton.vue +5 -2
- package/src/components/CmdSlideshow.vue +23 -7
- package/src/components/CmdSwitchButton.vue +10 -3
- package/src/components/CmdSwitchLanguage.vue +18 -10
- package/src/components/CmdSystemMessage.vue +30 -17
- package/src/components/CmdTable.vue +15 -7
- package/src/components/CmdTabs.vue +43 -3
- package/src/components/CmdThumbnailScroller.vue +22 -6
- package/src/components/CmdTooltip.vue +184 -11
- package/src/components/CmdUploadForm.vue +198 -92
- package/src/components/CmdWidthLimitationWrapper.vue +9 -6
- package/src/composables/event.js +8 -0
- package/src/composables/scrollspy.js +52 -0
- package/src/directives/focus.js +19 -0
- package/src/directives/telephone.js +1 -1
- package/src/documentation/commonProps.js +6 -0
- package/src/documentation/components/ComponentCode.vue +50 -0
- package/src/documentation/components/ComponentProperties.vue +237 -0
- package/src/documentation/components/ExampleSectionWrapper.vue +46 -0
- package/src/documentation/components/ViewCodeData.vue +113 -0
- package/src/documentation/data/CmdAccordionHelp.js +22 -0
- package/src/documentation/data/CmdAddressDataHelp.js +17 -0
- package/src/documentation/data/CmdBackToTopButtonHelp.js +3 -0
- package/src/documentation/data/CmdBankAccountDataHelp.js +8 -0
- package/src/documentation/data/CmdBoxHelp.js +45 -0
- package/src/documentation/data/CmdBoxSiteSearchHelp.js +11 -0
- package/src/documentation/data/CmdBreadcrumbsHelp.js +6 -0
- package/src/documentation/data/CmdCompanyLogoHelp.js +8 -0
- package/src/documentation/data/CmdCookieDisclaimerHelp.js +9 -0
- package/src/documentation/data/CmdCopyrightInformation.js +2 -0
- package/src/documentation/data/CmdCustomHeadlineHelp.js +8 -0
- package/src/documentation/data/CmdFakeSelectHelp.js +60 -0
- package/src/documentation/data/CmdFancyBoxHelp.js +7 -0
- package/src/documentation/data/CmdFooterNavigationHelp.js +5 -0
- package/src/documentation/data/CmdFormElementHelp.js +189 -0
- package/src/documentation/data/CmdFormFiltersHelp.js +6 -0
- package/src/documentation/data/CmdFormHelp.js +10 -0
- package/src/documentation/data/CmdGoogleMapsHelp.js +5 -0
- package/src/documentation/data/CmdImageGalleryHelp.js +5 -0
- package/src/documentation/data/CmdImageZoomHelp.js +6 -0
- package/src/documentation/data/CmdListOfLinksHelp.js +24 -0
- package/src/documentation/data/CmdLoginFormHelp.js +6 -0
- package/src/documentation/data/CmdMainNavigationHelp.js +7 -0
- package/src/documentation/data/CmdMultistepFormProgressBarHelp.js +6 -0
- package/src/documentation/data/CmdOpeningHoursHelp.js +10 -0
- package/src/documentation/data/CmdPagerHelp.js +7 -0
- package/src/documentation/data/CmdProgressBarHelp.js +13 -0
- package/src/documentation/data/CmdShareButtonsHelp.js +13 -0
- package/src/documentation/data/CmdSiteHeaderHelp.js +21 -0
- package/src/documentation/data/CmdSlideButtonHelp.js +10 -0
- package/src/documentation/data/CmdSlideshowHelp.js +7 -0
- package/src/documentation/data/CmdSwitchLanguageHelp.js +6 -0
- package/src/documentation/data/CmdSystemMessageHelp.js +32 -0
- package/src/documentation/data/CmdTableHelp.js +14 -0
- package/src/documentation/data/CmdTabsHelp.js +10 -0
- package/src/documentation/data/CmdThumbnailScrollerHelp.js +5 -0
- package/src/documentation/data/CmdTooltipHelp.js +13 -0
- package/src/documentation/data/CmdUploadFormHelp.js +17 -0
- package/src/documentation/data/CmdWidthLimitationWrapperHelp.js +7 -0
- package/src/documentation/data/componentsDescription.json +158 -0
- package/src/documentation/generated/CmdAccordionPropertyDescriptions.json +57 -0
- 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 +91 -0
- package/src/documentation/generated/CmdBoxSiteSearchPropertyDescriptions.json +41 -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 +22 -0
- package/src/documentation/generated/CmdCustomHeadlinePropertyDescriptions.json +22 -0
- package/src/documentation/generated/CmdFakeSelectPropertyDescriptions.json +79 -0
- package/src/documentation/generated/CmdFancyBoxPropertyDescriptions.json +62 -0
- package/src/documentation/generated/CmdFooterNavigationPropertyDescriptions.json +17 -0
- package/src/documentation/generated/CmdFormElementPropertyDescriptions.json +178 -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/CmdImageGalleryPropertyDescriptions.json +22 -0
- package/src/documentation/generated/CmdImageZoomPropertyDescriptions.json +12 -0
- package/src/documentation/generated/CmdListOfLinksPropertyDescriptions.json +60 -0
- package/src/documentation/generated/CmdLoginFormPropertyDescriptions.json +90 -0
- package/src/documentation/generated/CmdMainNavigationPropertyDescriptions.json +62 -0
- package/src/documentation/generated/CmdMultipleSwitchPropertyDescriptions.json +52 -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/CmdSiteHeaderPropertyDescriptions.json +27 -0
- package/src/documentation/generated/CmdSlideButtonPropertyDescriptions.json +25 -0
- package/src/documentation/generated/CmdSlideshowPropertyDescriptions.json +42 -0
- package/src/documentation/generated/CmdSwitchButtonPropertyDescriptions.json +79 -0
- package/src/documentation/generated/CmdSwitchLanguagePropertyDescriptions.json +7 -0
- package/src/documentation/generated/CmdSystemMessagePropertyDescriptions.json +40 -0
- package/src/documentation/generated/CmdTablePropertyDescriptions.json +62 -0
- package/src/documentation/generated/CmdTabsPropertyDescriptions.json +27 -0
- package/src/documentation/generated/CmdThumbnailScrollerPropertyDescriptions.json +32 -0
- package/src/documentation/generated/CmdTooltipPropertyDescriptions.json +17 -0
- package/src/documentation/generated/CmdUploadFormPropertyDescriptions.json +90 -0
- package/src/documentation/generated/CmdWidthLimitationWrapperPropertyDescriptions.json +41 -0
- package/src/documentation/generated/frameworkIcons.json +730 -0
- package/src/documentation/generated/logosIcons.json +110 -0
- package/src/documentation/tabs.js +46 -0
- package/src/documentation/views/ContainerPage.vue +237 -0
- package/src/documentation/views/HelpHome.vue +13 -0
- package/src/documentation/views/IconFont.vue +80 -0
- package/src/documentation/views/components/CmdAccordionHelp.vue +78 -0
- package/src/documentation/views/components/CmdAddressDataHelp.vue +65 -0
- package/src/documentation/views/components/CmdBackToTopButtonHelp.vue +62 -0
- package/src/documentation/views/components/CmdBankAccountDataHelp.vue +88 -0
- package/src/documentation/views/components/CmdBoxHelp.vue +137 -0
- package/src/documentation/views/components/CmdBoxSiteSearchHelp.vue +60 -0
- package/src/documentation/views/components/CmdBoxWrapperHelp.vue +111 -0
- package/src/documentation/views/components/CmdBreadcrumbsHelp.vue +51 -0
- package/src/documentation/views/components/CmdCompanyLogoHelp.vue +48 -0
- package/src/documentation/views/components/CmdCookieDisclaimerHelp.vue +105 -0
- package/src/documentation/views/components/CmdCustomHeadlineHelp.vue +53 -0
- package/src/documentation/views/components/CmdFakeSelectHelp.vue +175 -0
- package/src/documentation/views/components/CmdFancyBoxHelp.vue +79 -0
- package/src/documentation/views/components/CmdFormElementHelp.vue +412 -0
- package/src/documentation/views/components/CmdFormFiltersHelp.vue +69 -0
- package/src/documentation/views/components/CmdFormHelp.vue +41 -0
- package/src/documentation/views/components/CmdGoogleMapsHelp.vue +55 -0
- package/src/documentation/views/components/CmdImageGalleryHelp.vue +46 -0
- package/src/documentation/views/components/CmdImageZoomHelp.vue +34 -0
- package/src/documentation/views/components/CmdListOfLinksHelp.vue +64 -0
- package/src/documentation/views/components/CmdLoginFormHelp.vue +117 -0
- package/src/documentation/views/components/CmdMainNavigationHelp.vue +94 -0
- package/src/documentation/views/components/CmdMultistepFormProgressBarHelp.vue +49 -0
- package/src/documentation/views/components/CmdOpeningHoursHelp.vue +49 -0
- package/src/documentation/views/components/CmdPagerHelp.vue +57 -0
- package/src/documentation/views/components/CmdProgressBarHelp.vue +47 -0
- package/src/documentation/views/components/CmdShareButtonsHelp.vue +65 -0
- package/src/documentation/views/components/CmdSiteHeaderHelp.vue +72 -0
- package/src/documentation/views/components/CmdSlideButtonHelp.vue +90 -0
- package/src/documentation/views/components/CmdSlideshowHelp.vue +60 -0
- package/src/documentation/views/components/CmdSwitchLanguageHelp.vue +64 -0
- package/src/documentation/views/components/CmdSystemMessageHelp.vue +86 -0
- package/src/documentation/views/components/CmdTableHelp.vue +84 -0
- package/src/documentation/views/components/CmdTabsHelp.vue +52 -0
- package/src/documentation/views/components/CmdThumbnailScrollerHelp.vue +50 -0
- package/src/documentation/views/components/CmdTooltipHelp.vue +59 -0
- package/src/documentation/views/components/CmdUploadFormHelp.vue +59 -0
- package/src/documentation/views/components/CmdWidthLimitationWrapperHelp.vue +46 -0
- package/src/index.js +7 -3
- package/src/main.js +25 -15
- package/src/mixins/CmdAddressData/DefaultMessageProperties.js +17 -0
- package/src/mixins/CmdBox/DefaultMessageProperties.js +10 -0
- package/src/mixins/CmdFakeSelect/DefaultMessageProperties.js +9 -0
- package/src/mixins/CmdFormElement/DefaultMessageProperties.js +9 -0
- package/src/mixins/CmdImageGallery/DefaultMessageProperties.js +9 -0
- package/src/mixins/CmdSiteSearch/DefaultMessageProperties.js +14 -0
- package/src/mixins/CmdUploadForm/DefaultMessageProperties.js +5 -1
- package/src/mixins/FieldValidation.js +220 -0
- package/src/mixins/GlobalDefaultMessageProperties.js +15 -0
- package/src/mixins/Tooltip.js +26 -0
- package/src/router/index.js +67 -0
- package/src/utilities.js +3 -6
- package/src/utils/common.js +6 -0
- package/src/utils/dom.js +8 -0
- package/src/utils/globalSequence.js +13 -0
- package/src/utils/string.js +8 -0
- package/src/assets/data/address.json +0 -13
- package/src/assets/data/footer-navigation.json +0 -38
- package/src/assets/data/languages.json +0 -31
- package/src/assets/data/multisteps.json +0 -27
- package/src/assets/data/navigation.json +0 -47
- package/src/assets/data/pager.json +0 -11
- package/src/assets/data/top-header-navigation.json +0 -27
- package/src/components/CmdFooterNavigation.vue +0 -71
- package/src/components/CmdMainHeadline.vue +0 -75
- package/src/components/CmdTopHeaderNavigation.vue +0 -88
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
{
|
|
2
|
+
"modelValue": {
|
|
3
|
+
"comments": [
|
|
4
|
+
"set value for v-model (must be names modelValue in vue3)"
|
|
5
|
+
]
|
|
6
|
+
},
|
|
7
|
+
"element": {
|
|
8
|
+
"comments": [
|
|
9
|
+
"set type of native form-element"
|
|
10
|
+
],
|
|
11
|
+
"annotations": {
|
|
12
|
+
"allowedValues": [
|
|
13
|
+
"input, select, textarea, button"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"showLabel": {
|
|
18
|
+
"comments": [
|
|
19
|
+
"hide label (and asterisk if mandatory)",
|
|
20
|
+
"",
|
|
21
|
+
"label may not be removed, because it is required for accessibility"
|
|
22
|
+
]
|
|
23
|
+
},
|
|
24
|
+
"labelText": {
|
|
25
|
+
"comments": [
|
|
26
|
+
"text for label"
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
"toggleSwitch": {
|
|
30
|
+
"comments": [
|
|
31
|
+
"set to activate to use toggle-switch-styling",
|
|
32
|
+
"element-prop must be set to \"input\" and type-attribute must be set to \"checkbox\" or \"radio\""
|
|
33
|
+
],
|
|
34
|
+
"annotations": {
|
|
35
|
+
"affectsStyling": [
|
|
36
|
+
"true"
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"onLabel": {
|
|
41
|
+
"comments": [
|
|
42
|
+
"text for on-label",
|
|
43
|
+
"",
|
|
44
|
+
"set to activate switch-label (=label is placed on toggle-switch (not behind))",
|
|
45
|
+
"toggleSwitch-prop must be set to \"true\"",
|
|
46
|
+
"element-prop must be set to \"input\" and type-attribute must be set to \"checkbox\" or \"radio\""
|
|
47
|
+
]
|
|
48
|
+
},
|
|
49
|
+
"offLabel": {
|
|
50
|
+
"comments": [
|
|
51
|
+
"text for off-label",
|
|
52
|
+
"",
|
|
53
|
+
"set to activate switch-label (=label is placed on toggle-switch (not behind))",
|
|
54
|
+
"toggleSwitch-prop must be set to \"true\"",
|
|
55
|
+
"element-prop must be set to \"input\" and type-attribute must be set to \"checkbox\" or \"radio\""
|
|
56
|
+
]
|
|
57
|
+
},
|
|
58
|
+
"colored": {
|
|
59
|
+
"comments": [
|
|
60
|
+
"on/off-, yes/no-color-styling",
|
|
61
|
+
"set to true, if checkbox/radio-buttons should have green/checked and red/unchecked color-coding",
|
|
62
|
+
"toggleSwitch-prop must be set to \"true\"",
|
|
63
|
+
"element-prop must be set to \"input\" and type-attribute must be set to \"checkbox\" or \"radio\""
|
|
64
|
+
],
|
|
65
|
+
"annotations": {
|
|
66
|
+
"affectsStyling": [
|
|
67
|
+
"true"
|
|
68
|
+
]
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"inputValue": {
|
|
72
|
+
"comments": [
|
|
73
|
+
"allow checkbox/radio-buttons to get value from outside"
|
|
74
|
+
]
|
|
75
|
+
},
|
|
76
|
+
"replaceInputType": {
|
|
77
|
+
"comments": [
|
|
78
|
+
"for replacing native checkboxes/radio-buttons by custom ones (based on frontend-framework)"
|
|
79
|
+
],
|
|
80
|
+
"annotations": {
|
|
81
|
+
"affectsStyling": [
|
|
82
|
+
"true"
|
|
83
|
+
]
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
"htmlClass": {
|
|
87
|
+
"comments": [
|
|
88
|
+
"set an optional class on native form-element (use native class=\"\" on component ot set class on outer-component-element)",
|
|
89
|
+
"",
|
|
90
|
+
"may not be named as 'class' because it is a reserved keyword in JavaScript"
|
|
91
|
+
]
|
|
92
|
+
},
|
|
93
|
+
"id": {
|
|
94
|
+
"comments": [
|
|
95
|
+
"if for native form-element"
|
|
96
|
+
]
|
|
97
|
+
},
|
|
98
|
+
"datalist": {
|
|
99
|
+
"comments": [
|
|
100
|
+
"set if a native datalist should be used"
|
|
101
|
+
]
|
|
102
|
+
},
|
|
103
|
+
"selectOptions": {
|
|
104
|
+
"comments": [
|
|
105
|
+
"list of options for selectbox",
|
|
106
|
+
"",
|
|
107
|
+
"element-property must be 'select'"
|
|
108
|
+
]
|
|
109
|
+
},
|
|
110
|
+
"nativeButton": {
|
|
111
|
+
"comments": [
|
|
112
|
+
"native button"
|
|
113
|
+
]
|
|
114
|
+
},
|
|
115
|
+
"tooltipText": {
|
|
116
|
+
"comments": [
|
|
117
|
+
"set text for tooltip"
|
|
118
|
+
]
|
|
119
|
+
},
|
|
120
|
+
"fieldIconClass": {
|
|
121
|
+
"comments": [
|
|
122
|
+
"set class for inner icon (icon placed 'inside' input/ left of input-text)",
|
|
123
|
+
"",
|
|
124
|
+
"element-property must be 'input' and type-property may not be checkbox or radio"
|
|
125
|
+
]
|
|
126
|
+
},
|
|
127
|
+
"displayLabelInline": {
|
|
128
|
+
"comments": [
|
|
129
|
+
"activate if label-text should be place inline/left of form-element (and not above)",
|
|
130
|
+
"",
|
|
131
|
+
"type-property may not be checkbox or radio"
|
|
132
|
+
]
|
|
133
|
+
},
|
|
134
|
+
"status": {
|
|
135
|
+
"comments": [
|
|
136
|
+
"set status for label and form-element"
|
|
137
|
+
],
|
|
138
|
+
"annotations": {
|
|
139
|
+
"allowedValues": [
|
|
140
|
+
"error, success",
|
|
141
|
+
""
|
|
142
|
+
],
|
|
143
|
+
"affectsStyling": [
|
|
144
|
+
"true"
|
|
145
|
+
]
|
|
146
|
+
}
|
|
147
|
+
},
|
|
148
|
+
"showCharactersTextarea": {
|
|
149
|
+
"comments": [
|
|
150
|
+
"toggle display of number of used and allowed characters for textarea",
|
|
151
|
+
"",
|
|
152
|
+
"type-property must be set to textarea"
|
|
153
|
+
]
|
|
154
|
+
},
|
|
155
|
+
"showSearchButton": {
|
|
156
|
+
"comments": [
|
|
157
|
+
"toggle visibility of search-button (next to search-field)"
|
|
158
|
+
]
|
|
159
|
+
},
|
|
160
|
+
"iconDelete": {
|
|
161
|
+
"comments": [
|
|
162
|
+
"icon to delete search term",
|
|
163
|
+
"",
|
|
164
|
+
"element-property must me set to 'input'",
|
|
165
|
+
"type-property must be set to 'search'",
|
|
166
|
+
""
|
|
167
|
+
]
|
|
168
|
+
},
|
|
169
|
+
"iconSearch": {
|
|
170
|
+
"comments": [
|
|
171
|
+
"icon to search term",
|
|
172
|
+
"",
|
|
173
|
+
"element-property must me set to 'input'",
|
|
174
|
+
"type-property must be set to 'search'",
|
|
175
|
+
""
|
|
176
|
+
]
|
|
177
|
+
}
|
|
178
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"modelValue": {
|
|
3
|
+
"comments": [
|
|
4
|
+
"list of all selected options"
|
|
5
|
+
]
|
|
6
|
+
},
|
|
7
|
+
"linkDeleteAllFilters": {
|
|
8
|
+
"comments": [
|
|
9
|
+
"delete-all-filters-link"
|
|
10
|
+
],
|
|
11
|
+
"annotations": {
|
|
12
|
+
"requiredForAccessibility": [
|
|
13
|
+
"partial"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"deleteFilter": {
|
|
18
|
+
"comments": [
|
|
19
|
+
"icon for deleting (a single) filter"
|
|
20
|
+
],
|
|
21
|
+
"annotations": {
|
|
22
|
+
"requiredForAccessibility": [
|
|
23
|
+
"partial"
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"selectedOptionsName": {
|
|
28
|
+
"comments": [
|
|
29
|
+
"name for selected options"
|
|
30
|
+
]
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"useValidation": {
|
|
3
|
+
"comments": [
|
|
4
|
+
"if activated the entire form will be validated by pre-coded validation"
|
|
5
|
+
],
|
|
6
|
+
"annotations": {
|
|
7
|
+
"affectsStyling": [
|
|
8
|
+
"true"
|
|
9
|
+
]
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
"useFieldset": {
|
|
13
|
+
"comments": [
|
|
14
|
+
"activate if you want to use a fieldset"
|
|
15
|
+
],
|
|
16
|
+
"annotations": {
|
|
17
|
+
"requiredForAccessibility": [
|
|
18
|
+
"true"
|
|
19
|
+
]
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"showLegend": {
|
|
23
|
+
"comments": [
|
|
24
|
+
"toggle visibility for legend-text",
|
|
25
|
+
"",
|
|
26
|
+
"useFieldset must be activated"
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
"textLegend": {
|
|
30
|
+
"comments": [
|
|
31
|
+
"text for legend",
|
|
32
|
+
"useFieldset must be activated"
|
|
33
|
+
],
|
|
34
|
+
"annotations": {
|
|
35
|
+
"requiredForAccessibility": [
|
|
36
|
+
"true"
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"images": {
|
|
3
|
+
"comments": [
|
|
4
|
+
"list of images (incl. captions)"
|
|
5
|
+
],
|
|
6
|
+
"annotations": {
|
|
7
|
+
"requiredForAccessibility": [
|
|
8
|
+
"partial"
|
|
9
|
+
]
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
"figcaptionPosition": {
|
|
13
|
+
"comments": [
|
|
14
|
+
"position of figcaption"
|
|
15
|
+
],
|
|
16
|
+
"annotations": {
|
|
17
|
+
"allowedValues": [
|
|
18
|
+
"top, bottom"
|
|
19
|
+
]
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"sectionAnchors": {
|
|
3
|
+
"comments": [
|
|
4
|
+
"activate if component should contain a list of anchors for the section within th page"
|
|
5
|
+
]
|
|
6
|
+
},
|
|
7
|
+
"activeSection": {
|
|
8
|
+
"comments": [
|
|
9
|
+
"given active section from outside to set class for styling",
|
|
10
|
+
"",
|
|
11
|
+
"sectionAnchors-property must be activated"
|
|
12
|
+
]
|
|
13
|
+
},
|
|
14
|
+
"align": {
|
|
15
|
+
"comments": [
|
|
16
|
+
"set horizontal alignment",
|
|
17
|
+
"orientation-property must be set to 'horizontal'"
|
|
18
|
+
],
|
|
19
|
+
"annotations": {
|
|
20
|
+
"allowedValues": [
|
|
21
|
+
"left, center, right"
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"cmdCustomHeadline": {
|
|
26
|
+
"comments": [
|
|
27
|
+
"properties for cmdCustomHeadline-component"
|
|
28
|
+
]
|
|
29
|
+
},
|
|
30
|
+
"links": {
|
|
31
|
+
"comments": [
|
|
32
|
+
"list of displayed links"
|
|
33
|
+
]
|
|
34
|
+
},
|
|
35
|
+
"orientation": {
|
|
36
|
+
"comments": [
|
|
37
|
+
"toggle orientation of list"
|
|
38
|
+
],
|
|
39
|
+
"annotations": {
|
|
40
|
+
"allowedValues": [
|
|
41
|
+
"horizontal, vertical"
|
|
42
|
+
]
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"useGap": {
|
|
46
|
+
"comments": [
|
|
47
|
+
"toggle gab between links"
|
|
48
|
+
]
|
|
49
|
+
},
|
|
50
|
+
"styleAsBox": {
|
|
51
|
+
"comments": [
|
|
52
|
+
"style component like a box"
|
|
53
|
+
],
|
|
54
|
+
"annotations": {
|
|
55
|
+
"affectsStyling": [
|
|
56
|
+
"true"
|
|
57
|
+
]
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
{
|
|
2
|
+
"modelValue": {
|
|
3
|
+
"comments": [
|
|
4
|
+
"value for v-model (modelValue is default name in vue 3)"
|
|
5
|
+
]
|
|
6
|
+
},
|
|
7
|
+
"textLegend": {
|
|
8
|
+
"comments": [
|
|
9
|
+
"text used as legend for login-fieldset"
|
|
10
|
+
],
|
|
11
|
+
"annotations": {
|
|
12
|
+
"requiredForAccessibility": [
|
|
13
|
+
"true"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"showLegend": {
|
|
18
|
+
"comments": [
|
|
19
|
+
"toggle legend visibility"
|
|
20
|
+
]
|
|
21
|
+
},
|
|
22
|
+
"legendSendLoginForm": {
|
|
23
|
+
"comments": [
|
|
24
|
+
"legend for send-login-fieldset"
|
|
25
|
+
],
|
|
26
|
+
"annotations": {
|
|
27
|
+
"requiredForAccessibility": [
|
|
28
|
+
"true"
|
|
29
|
+
]
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"cmdCustomHeadlineLoginForm": {
|
|
33
|
+
"comments": [
|
|
34
|
+
"properties for CmdCustomHeadline-component for login-form"
|
|
35
|
+
]
|
|
36
|
+
},
|
|
37
|
+
"cmdCustomHeadlineSendLoginForm": {
|
|
38
|
+
"comments": [
|
|
39
|
+
"properties for CmdCustomHeadline-component for send-login-form"
|
|
40
|
+
]
|
|
41
|
+
},
|
|
42
|
+
"cmdFormElementUsername": {
|
|
43
|
+
"comments": [
|
|
44
|
+
"properties for CmdFormElement-component for username-field"
|
|
45
|
+
],
|
|
46
|
+
"annotations": {
|
|
47
|
+
"requiredForAccessibility": [
|
|
48
|
+
"partial"
|
|
49
|
+
]
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
"cmdFormElementPassword": {
|
|
53
|
+
"comments": [
|
|
54
|
+
"properties for CmdFormElement-component for password-field"
|
|
55
|
+
],
|
|
56
|
+
"annotations": {
|
|
57
|
+
"requiredForAccessibility": [
|
|
58
|
+
"partial"
|
|
59
|
+
]
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"cmdFormElementSendLogin": {
|
|
63
|
+
"comments": [
|
|
64
|
+
"properties for CmdFormElement-component for email-address-field (to send login-data)"
|
|
65
|
+
],
|
|
66
|
+
"annotations": {
|
|
67
|
+
"requiredForAccessibility": [
|
|
68
|
+
"partial"
|
|
69
|
+
]
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"options": {
|
|
73
|
+
"comments": [
|
|
74
|
+
"options to display",
|
|
75
|
+
"",
|
|
76
|
+
"forgotPassword: toggles form to send password by email",
|
|
77
|
+
"createAccount: creates a link (href/router) which could lead to a register-form"
|
|
78
|
+
]
|
|
79
|
+
},
|
|
80
|
+
"buttons": {
|
|
81
|
+
"comments": [
|
|
82
|
+
"button to login"
|
|
83
|
+
],
|
|
84
|
+
"annotations": {
|
|
85
|
+
"requiredForAccessibility": [
|
|
86
|
+
"partial"
|
|
87
|
+
]
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"stretchMainItems": {
|
|
3
|
+
"comments": [
|
|
4
|
+
"toggle if main-entries (on first-level) should be (horizontally) stretched equally"
|
|
5
|
+
]
|
|
6
|
+
},
|
|
7
|
+
"persistOnMobile": {
|
|
8
|
+
"comments": [
|
|
9
|
+
"set if navigation should persist on mobile and not be collapsed to off-canvas"
|
|
10
|
+
],
|
|
11
|
+
"annotations": {
|
|
12
|
+
"affectsStyling": [
|
|
13
|
+
"true"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"navigationEntries": {
|
|
18
|
+
"comments": [
|
|
19
|
+
"list of all navigation-entries (incl. sub-entries)"
|
|
20
|
+
]
|
|
21
|
+
},
|
|
22
|
+
"closeOffcanvas": {
|
|
23
|
+
"comments": [
|
|
24
|
+
"link shown inside off-canvas-navigation to close itself"
|
|
25
|
+
],
|
|
26
|
+
"annotations": {
|
|
27
|
+
"requiredForAccessibility": [
|
|
28
|
+
"partial"
|
|
29
|
+
]
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"buttonOffcanvas": {
|
|
33
|
+
"comments": [
|
|
34
|
+
"button to open off-canvas-navigation"
|
|
35
|
+
],
|
|
36
|
+
"annotations": {
|
|
37
|
+
"requiredForAccessibility": [
|
|
38
|
+
"partial"
|
|
39
|
+
]
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"subentriesIconClass": {
|
|
43
|
+
"comments": [
|
|
44
|
+
"icon to show if an navigation-entry has sub-entries"
|
|
45
|
+
]
|
|
46
|
+
},
|
|
47
|
+
"subSubentriesIconClass": {
|
|
48
|
+
"comments": [
|
|
49
|
+
"icon to show if a sub-entry has further sub-entries"
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
"showContentOverlay": {
|
|
53
|
+
"comments": [
|
|
54
|
+
"toggle if overlay over content should be shown if off-canvas is open"
|
|
55
|
+
],
|
|
56
|
+
"annotations": {
|
|
57
|
+
"affectsStyling": [
|
|
58
|
+
"true"
|
|
59
|
+
]
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"value": {
|
|
3
|
+
"comments": [
|
|
4
|
+
"value for v-model"
|
|
5
|
+
]
|
|
6
|
+
},
|
|
7
|
+
"showLabel": {
|
|
8
|
+
"comments": [
|
|
9
|
+
"toggle label visibility"
|
|
10
|
+
]
|
|
11
|
+
},
|
|
12
|
+
"labelText": {
|
|
13
|
+
"comments": [
|
|
14
|
+
"text for label"
|
|
15
|
+
],
|
|
16
|
+
"annotations": {
|
|
17
|
+
"requiredForAccessibility": [
|
|
18
|
+
"true"
|
|
19
|
+
]
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"multipleSwitches": {
|
|
23
|
+
"comments": [
|
|
24
|
+
"list of switches"
|
|
25
|
+
]
|
|
26
|
+
},
|
|
27
|
+
"switchTypes": {
|
|
28
|
+
"comments": [
|
|
29
|
+
"set type for switches"
|
|
30
|
+
],
|
|
31
|
+
"annotations": {
|
|
32
|
+
"allowedValues": [
|
|
33
|
+
"checkbox, radio"
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"switchNames": {
|
|
38
|
+
"comments": [
|
|
39
|
+
"name-attribute for switches"
|
|
40
|
+
]
|
|
41
|
+
},
|
|
42
|
+
"status": {
|
|
43
|
+
"comments": [
|
|
44
|
+
"status for all switches"
|
|
45
|
+
],
|
|
46
|
+
"annotations": {
|
|
47
|
+
"allowedValues": [
|
|
48
|
+
"error, disabled"
|
|
49
|
+
]
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"showStepNumber": {
|
|
3
|
+
"comments": [
|
|
4
|
+
"toggle visibility of step-number in front/left of link-icon and -name"
|
|
5
|
+
]
|
|
6
|
+
},
|
|
7
|
+
"multisteps": {
|
|
8
|
+
"comments": [
|
|
9
|
+
"list of multisteps"
|
|
10
|
+
]
|
|
11
|
+
},
|
|
12
|
+
"separatorIconClass": {
|
|
13
|
+
"comments": [
|
|
14
|
+
"icon-class for separator shown between multisteps"
|
|
15
|
+
]
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"cmdCustomHeadline": {
|
|
3
|
+
"comments": [
|
|
4
|
+
"properties for CmdCustomHeadline-component"
|
|
5
|
+
]
|
|
6
|
+
},
|
|
7
|
+
"link": {
|
|
8
|
+
"comments": [
|
|
9
|
+
"set a link to a detail page"
|
|
10
|
+
]
|
|
11
|
+
},
|
|
12
|
+
"closed": {
|
|
13
|
+
"comments": [
|
|
14
|
+
"toggles if \"closed\"-text will be shown"
|
|
15
|
+
],
|
|
16
|
+
"annotations": {
|
|
17
|
+
"affectsStyling": [
|
|
18
|
+
"true"
|
|
19
|
+
]
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"textOpenClosed": {
|
|
23
|
+
"comments": [
|
|
24
|
+
"text for open/closed-information"
|
|
25
|
+
]
|
|
26
|
+
},
|
|
27
|
+
"openingHours": {
|
|
28
|
+
"comments": [
|
|
29
|
+
"list of opening-hours"
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
"textHolidaysClosed": {
|
|
33
|
+
"comments": [
|
|
34
|
+
"text to show if holidays closed (shown below opening-hours)"
|
|
35
|
+
]
|
|
36
|
+
},
|
|
37
|
+
"textMiscInfo": {
|
|
38
|
+
"comments": [
|
|
39
|
+
"additional/miscellaneous text (shown below holiday-closed-text/opening hours)"
|
|
40
|
+
]
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"items": {
|
|
3
|
+
"comments": [
|
|
4
|
+
"number of items displayed"
|
|
5
|
+
]
|
|
6
|
+
},
|
|
7
|
+
"itemsPerPage": {
|
|
8
|
+
"comments": [
|
|
9
|
+
"number of items shown per page"
|
|
10
|
+
]
|
|
11
|
+
},
|
|
12
|
+
"showLinksAsButtons": {
|
|
13
|
+
"comments": [
|
|
14
|
+
"show links as buttons"
|
|
15
|
+
]
|
|
16
|
+
},
|
|
17
|
+
"prevButton": {
|
|
18
|
+
"comments": [
|
|
19
|
+
"button to switch to previous page"
|
|
20
|
+
],
|
|
21
|
+
"annotations": {
|
|
22
|
+
"requiredForAccessibility": [
|
|
23
|
+
"partial"
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"nextButton": {
|
|
28
|
+
"comments": [
|
|
29
|
+
"button to switch to next page"
|
|
30
|
+
],
|
|
31
|
+
"annotations": {
|
|
32
|
+
"requiredForAccessibility": [
|
|
33
|
+
"partial"
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"labelText": {
|
|
3
|
+
"comments": [
|
|
4
|
+
"label-text for progress-bar"
|
|
5
|
+
],
|
|
6
|
+
"annotations": {
|
|
7
|
+
"requiredForAccessibility": [
|
|
8
|
+
"true"
|
|
9
|
+
]
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
"showLabel": {
|
|
13
|
+
"comments": [
|
|
14
|
+
"toggle visibility for label-text"
|
|
15
|
+
]
|
|
16
|
+
},
|
|
17
|
+
"showLoadingStatus": {
|
|
18
|
+
"comments": [
|
|
19
|
+
"toggle visibility for loading-status"
|
|
20
|
+
]
|
|
21
|
+
},
|
|
22
|
+
"id": {
|
|
23
|
+
"comments": [
|
|
24
|
+
"id for progress-bar"
|
|
25
|
+
],
|
|
26
|
+
"annotations": {
|
|
27
|
+
"requiredForAccessibility": [
|
|
28
|
+
"true"
|
|
29
|
+
]
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|