comand-component-library 3.1.45 → 3.1.46

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (233) 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 +47 -41
  4. package/src/App.vue +373 -135
  5. package/src/ComponentDocumentation.vue +156 -0
  6. package/src/ComponentLibraryHelp.vue +20 -0
  7. package/src/assets/data/accordion.json +21 -24
  8. package/src/assets/data/address-data.json +34 -0
  9. package/src/assets/data/bank-account-data.json +22 -0
  10. package/src/assets/data/box-product.json +14 -4
  11. package/src/assets/data/box-user.json +48 -22
  12. package/src/assets/data/breadcrumbs.json +11 -3
  13. package/src/assets/data/cookie-disclaimer.json +4 -4
  14. package/src/assets/data/fake-select-colors.json +4 -0
  15. package/src/assets/data/fake-select-filter-options.json +14 -0
  16. package/src/assets/data/fake-select-options-with-icons.json +6 -12
  17. package/src/assets/data/fake-select-options.json +3 -3
  18. package/src/assets/data/list-of-links-section-anchors.json +23 -0
  19. package/src/assets/data/list-of-links-top-header-navigation.json +20 -0
  20. package/src/assets/data/list-of-links.json +42 -0
  21. package/src/assets/data/main-navigation.json +48 -0
  22. package/src/assets/data/multistep-form-progress-bar.json +33 -0
  23. package/src/assets/data/select-options.json +4 -0
  24. package/src/assets/data/{share-buttons.json → share-buttons-page-by-json.json} +8 -8
  25. package/src/assets/data/share-buttons-page-by-property.json +30 -0
  26. package/src/assets/data/switch-language.json +20 -0
  27. package/src/assets/data/table-large.json +1 -1
  28. package/src/assets/data/table-small.json +1 -1
  29. package/src/assets/styles/global-styles.scss +43 -13
  30. package/src/assets/styles/transitions.scss +21 -1
  31. package/src/components/CmdAccordion.vue +43 -42
  32. package/src/components/CmdAddressData.vue +124 -56
  33. package/src/components/CmdBackToTopButton.vue +3 -3
  34. package/src/components/CmdBankAccountData.vue +104 -0
  35. package/src/components/CmdBox.vue +253 -56
  36. package/src/components/CmdBoxSiteSearch.vue +138 -39
  37. package/src/components/CmdBoxWrapper.vue +206 -0
  38. package/src/components/CmdBreadcrumbs.vue +29 -13
  39. package/src/components/CmdCompanyLogo.vue +6 -4
  40. package/src/components/CmdCookieDisclaimer.vue +99 -75
  41. package/src/components/CmdCopyrightInformation.vue +1 -1
  42. package/src/components/CmdCustomHeadline.vue +93 -0
  43. package/src/components/CmdFakeSelect.vue +285 -60
  44. package/src/components/CmdFancyBox.vue +47 -33
  45. package/src/components/CmdForm.vue +107 -0
  46. package/src/components/CmdFormElement.vue +515 -81
  47. package/src/components/CmdFormFilters.vue +25 -11
  48. package/src/components/CmdGoogleMaps.vue +9 -3
  49. package/src/components/CmdImageGallery.vue +28 -5
  50. package/src/components/CmdImageZoom.vue +9 -1
  51. package/src/components/CmdListOfLinks.vue +169 -0
  52. package/src/components/CmdLoginForm.vue +143 -63
  53. package/src/components/CmdMainNavigation.vue +140 -42
  54. package/src/components/CmdMultipleSwitch.vue +33 -2
  55. package/src/components/CmdMultistepFormProgressBar.vue +60 -10
  56. package/src/components/CmdOpeningHours.vue +36 -10
  57. package/src/components/CmdPager.vue +7 -5
  58. package/src/components/CmdProgressBar.vue +20 -3
  59. package/src/components/CmdShareButtons.vue +64 -9
  60. package/src/components/CmdSiteHeader.vue +25 -12
  61. package/src/components/CmdSlideButton.vue +5 -2
  62. package/src/components/CmdSlideshow.vue +23 -7
  63. package/src/components/CmdSwitchButton.vue +10 -3
  64. package/src/components/CmdSwitchLanguage.vue +18 -10
  65. package/src/components/CmdSystemMessage.vue +30 -17
  66. package/src/components/CmdTable.vue +15 -7
  67. package/src/components/CmdTabs.vue +43 -3
  68. package/src/components/CmdThumbnailScroller.vue +22 -6
  69. package/src/components/CmdTooltip.vue +184 -11
  70. package/src/components/CmdUploadForm.vue +198 -92
  71. package/src/components/CmdWidthLimitationWrapper.vue +9 -6
  72. package/src/composables/event.js +8 -0
  73. package/src/composables/scrollspy.js +52 -0
  74. package/src/directives/focus.js +19 -0
  75. package/src/directives/telephone.js +1 -1
  76. package/src/documentation/commonProps.js +6 -0
  77. package/src/documentation/components/ComponentCode.vue +50 -0
  78. package/src/documentation/components/ComponentProperties.vue +237 -0
  79. package/src/documentation/components/ExampleSectionWrapper.vue +46 -0
  80. package/src/documentation/components/ViewCodeData.vue +113 -0
  81. package/src/documentation/data/CmdAccordionHelp.js +22 -0
  82. package/src/documentation/data/CmdAddressDataHelp.js +17 -0
  83. package/src/documentation/data/CmdBackToTopButtonHelp.js +3 -0
  84. package/src/documentation/data/CmdBankAccountDataHelp.js +8 -0
  85. package/src/documentation/data/CmdBoxHelp.js +45 -0
  86. package/src/documentation/data/CmdBoxSiteSearchHelp.js +11 -0
  87. package/src/documentation/data/CmdBreadcrumbsHelp.js +6 -0
  88. package/src/documentation/data/CmdCompanyLogoHelp.js +8 -0
  89. package/src/documentation/data/CmdCookieDisclaimerHelp.js +9 -0
  90. package/src/documentation/data/CmdCopyrightInformation.js +2 -0
  91. package/src/documentation/data/CmdCustomHeadlineHelp.js +8 -0
  92. package/src/documentation/data/CmdFakeSelectHelp.js +60 -0
  93. package/src/documentation/data/CmdFancyBoxHelp.js +7 -0
  94. package/src/documentation/data/CmdFooterNavigationHelp.js +5 -0
  95. package/src/documentation/data/CmdFormElementHelp.js +189 -0
  96. package/src/documentation/data/CmdFormFiltersHelp.js +6 -0
  97. package/src/documentation/data/CmdFormHelp.js +10 -0
  98. package/src/documentation/data/CmdGoogleMapsHelp.js +5 -0
  99. package/src/documentation/data/CmdImageGalleryHelp.js +5 -0
  100. package/src/documentation/data/CmdImageZoomHelp.js +6 -0
  101. package/src/documentation/data/CmdListOfLinksHelp.js +24 -0
  102. package/src/documentation/data/CmdLoginFormHelp.js +6 -0
  103. package/src/documentation/data/CmdMainNavigationHelp.js +7 -0
  104. package/src/documentation/data/CmdMultistepFormProgressBarHelp.js +6 -0
  105. package/src/documentation/data/CmdOpeningHoursHelp.js +10 -0
  106. package/src/documentation/data/CmdPagerHelp.js +7 -0
  107. package/src/documentation/data/CmdProgressBarHelp.js +13 -0
  108. package/src/documentation/data/CmdShareButtonsHelp.js +13 -0
  109. package/src/documentation/data/CmdSiteHeaderHelp.js +21 -0
  110. package/src/documentation/data/CmdSlideButtonHelp.js +10 -0
  111. package/src/documentation/data/CmdSlideshowHelp.js +7 -0
  112. package/src/documentation/data/CmdSwitchLanguageHelp.js +6 -0
  113. package/src/documentation/data/CmdSystemMessageHelp.js +32 -0
  114. package/src/documentation/data/CmdTableHelp.js +14 -0
  115. package/src/documentation/data/CmdTabsHelp.js +10 -0
  116. package/src/documentation/data/CmdThumbnailScrollerHelp.js +5 -0
  117. package/src/documentation/data/CmdTooltipHelp.js +13 -0
  118. package/src/documentation/data/CmdUploadFormHelp.js +17 -0
  119. package/src/documentation/data/CmdWidthLimitationWrapperHelp.js +7 -0
  120. package/src/documentation/data/componentsDescription.json +158 -0
  121. package/src/documentation/generated/CmdAccordionPropertyDescriptions.json +57 -0
  122. package/src/documentation/generated/CmdAddressDataPropertyDescriptions.json +32 -0
  123. package/src/documentation/generated/CmdBackToTopButtonPropertyDescriptions.json +12 -0
  124. package/src/documentation/generated/CmdBankAccountDataPropertyDescriptions.json +34 -0
  125. package/src/documentation/generated/CmdBoxPropertyDescriptions.json +91 -0
  126. package/src/documentation/generated/CmdBoxSiteSearchPropertyDescriptions.json +41 -0
  127. package/src/documentation/generated/CmdBoxWrapperPropertyDescriptions.json +47 -0
  128. package/src/documentation/generated/CmdBreadcrumbsPropertyDescriptions.json +17 -0
  129. package/src/documentation/generated/CmdCompanyLogoPropertyDescriptions.json +27 -0
  130. package/src/documentation/generated/CmdCookieDisclaimerPropertyDescriptions.json +22 -0
  131. package/src/documentation/generated/CmdCustomHeadlinePropertyDescriptions.json +22 -0
  132. package/src/documentation/generated/CmdFakeSelectPropertyDescriptions.json +79 -0
  133. package/src/documentation/generated/CmdFancyBoxPropertyDescriptions.json +62 -0
  134. package/src/documentation/generated/CmdFooterNavigationPropertyDescriptions.json +17 -0
  135. package/src/documentation/generated/CmdFormElementPropertyDescriptions.json +178 -0
  136. package/src/documentation/generated/CmdFormFiltersPropertyDescriptions.json +32 -0
  137. package/src/documentation/generated/CmdFormPropertyDescriptions.json +40 -0
  138. package/src/documentation/generated/CmdGoogleMapsPropertyDescriptions.json +7 -0
  139. package/src/documentation/generated/CmdImageGalleryPropertyDescriptions.json +22 -0
  140. package/src/documentation/generated/CmdImageZoomPropertyDescriptions.json +12 -0
  141. package/src/documentation/generated/CmdListOfLinksPropertyDescriptions.json +60 -0
  142. package/src/documentation/generated/CmdLoginFormPropertyDescriptions.json +90 -0
  143. package/src/documentation/generated/CmdMainNavigationPropertyDescriptions.json +62 -0
  144. package/src/documentation/generated/CmdMultipleSwitchPropertyDescriptions.json +52 -0
  145. package/src/documentation/generated/CmdMultistepFormProgressBarPropertyDescriptions.json +17 -0
  146. package/src/documentation/generated/CmdOpeningHoursPropertyDescriptions.json +42 -0
  147. package/src/documentation/generated/CmdPagerPropertyDescriptions.json +37 -0
  148. package/src/documentation/generated/CmdProgressBarPropertyDescriptions.json +32 -0
  149. package/src/documentation/generated/CmdShareButtonsPropertyDescriptions.json +34 -0
  150. package/src/documentation/generated/CmdSiteHeaderPropertyDescriptions.json +27 -0
  151. package/src/documentation/generated/CmdSlideButtonPropertyDescriptions.json +25 -0
  152. package/src/documentation/generated/CmdSlideshowPropertyDescriptions.json +42 -0
  153. package/src/documentation/generated/CmdSwitchButtonPropertyDescriptions.json +79 -0
  154. package/src/documentation/generated/CmdSwitchLanguagePropertyDescriptions.json +7 -0
  155. package/src/documentation/generated/CmdSystemMessagePropertyDescriptions.json +40 -0
  156. package/src/documentation/generated/CmdTablePropertyDescriptions.json +62 -0
  157. package/src/documentation/generated/CmdTabsPropertyDescriptions.json +27 -0
  158. package/src/documentation/generated/CmdThumbnailScrollerPropertyDescriptions.json +32 -0
  159. package/src/documentation/generated/CmdTooltipPropertyDescriptions.json +17 -0
  160. package/src/documentation/generated/CmdUploadFormPropertyDescriptions.json +90 -0
  161. package/src/documentation/generated/CmdWidthLimitationWrapperPropertyDescriptions.json +41 -0
  162. package/src/documentation/generated/frameworkIcons.json +730 -0
  163. package/src/documentation/generated/logosIcons.json +110 -0
  164. package/src/documentation/tabs.js +46 -0
  165. package/src/documentation/views/ContainerPage.vue +237 -0
  166. package/src/documentation/views/HelpHome.vue +13 -0
  167. package/src/documentation/views/IconFont.vue +80 -0
  168. package/src/documentation/views/components/CmdAccordionHelp.vue +78 -0
  169. package/src/documentation/views/components/CmdAddressDataHelp.vue +65 -0
  170. package/src/documentation/views/components/CmdBackToTopButtonHelp.vue +62 -0
  171. package/src/documentation/views/components/CmdBankAccountDataHelp.vue +88 -0
  172. package/src/documentation/views/components/CmdBoxHelp.vue +137 -0
  173. package/src/documentation/views/components/CmdBoxSiteSearchHelp.vue +60 -0
  174. package/src/documentation/views/components/CmdBoxWrapperHelp.vue +111 -0
  175. package/src/documentation/views/components/CmdBreadcrumbsHelp.vue +51 -0
  176. package/src/documentation/views/components/CmdCompanyLogoHelp.vue +48 -0
  177. package/src/documentation/views/components/CmdCookieDisclaimerHelp.vue +105 -0
  178. package/src/documentation/views/components/CmdCustomHeadlineHelp.vue +53 -0
  179. package/src/documentation/views/components/CmdFakeSelectHelp.vue +175 -0
  180. package/src/documentation/views/components/CmdFancyBoxHelp.vue +79 -0
  181. package/src/documentation/views/components/CmdFormElementHelp.vue +412 -0
  182. package/src/documentation/views/components/CmdFormFiltersHelp.vue +69 -0
  183. package/src/documentation/views/components/CmdFormHelp.vue +41 -0
  184. package/src/documentation/views/components/CmdGoogleMapsHelp.vue +55 -0
  185. package/src/documentation/views/components/CmdImageGalleryHelp.vue +46 -0
  186. package/src/documentation/views/components/CmdImageZoomHelp.vue +34 -0
  187. package/src/documentation/views/components/CmdListOfLinksHelp.vue +64 -0
  188. package/src/documentation/views/components/CmdLoginFormHelp.vue +117 -0
  189. package/src/documentation/views/components/CmdMainNavigationHelp.vue +94 -0
  190. package/src/documentation/views/components/CmdMultistepFormProgressBarHelp.vue +49 -0
  191. package/src/documentation/views/components/CmdOpeningHoursHelp.vue +49 -0
  192. package/src/documentation/views/components/CmdPagerHelp.vue +57 -0
  193. package/src/documentation/views/components/CmdProgressBarHelp.vue +47 -0
  194. package/src/documentation/views/components/CmdShareButtonsHelp.vue +65 -0
  195. package/src/documentation/views/components/CmdSiteHeaderHelp.vue +72 -0
  196. package/src/documentation/views/components/CmdSlideButtonHelp.vue +90 -0
  197. package/src/documentation/views/components/CmdSlideshowHelp.vue +60 -0
  198. package/src/documentation/views/components/CmdSwitchLanguageHelp.vue +64 -0
  199. package/src/documentation/views/components/CmdSystemMessageHelp.vue +86 -0
  200. package/src/documentation/views/components/CmdTableHelp.vue +84 -0
  201. package/src/documentation/views/components/CmdTabsHelp.vue +52 -0
  202. package/src/documentation/views/components/CmdThumbnailScrollerHelp.vue +50 -0
  203. package/src/documentation/views/components/CmdTooltipHelp.vue +59 -0
  204. package/src/documentation/views/components/CmdUploadFormHelp.vue +59 -0
  205. package/src/documentation/views/components/CmdWidthLimitationWrapperHelp.vue +46 -0
  206. package/src/index.js +6 -3
  207. package/src/main.js +25 -15
  208. package/src/mixins/CmdAddressData/DefaultMessageProperties.js +17 -0
  209. package/src/mixins/CmdBox/DefaultMessageProperties.js +10 -0
  210. package/src/mixins/CmdFakeSelect/DefaultMessageProperties.js +9 -0
  211. package/src/mixins/CmdFormElement/DefaultMessageProperties.js +9 -0
  212. package/src/mixins/CmdImageGallery/DefaultMessageProperties.js +9 -0
  213. package/src/mixins/CmdSiteSearch/DefaultMessageProperties.js +14 -0
  214. package/src/mixins/CmdUploadForm/DefaultMessageProperties.js +5 -1
  215. package/src/mixins/FieldValidation.js +220 -0
  216. package/src/mixins/GlobalDefaultMessageProperties.js +15 -0
  217. package/src/mixins/Tooltip.js +26 -0
  218. package/src/router/index.js +67 -0
  219. package/src/utilities.js +3 -6
  220. package/src/utils/common.js +6 -0
  221. package/src/utils/dom.js +8 -0
  222. package/src/utils/globalSequence.js +13 -0
  223. package/src/utils/string.js +8 -0
  224. package/src/assets/data/address.json +0 -13
  225. package/src/assets/data/footer-navigation.json +0 -38
  226. package/src/assets/data/languages.json +0 -31
  227. package/src/assets/data/multisteps.json +0 -27
  228. package/src/assets/data/navigation.json +0 -47
  229. package/src/assets/data/pager.json +0 -11
  230. package/src/assets/data/top-header-navigation.json +0 -27
  231. package/src/components/CmdFooterNavigation.vue +0 -71
  232. package/src/components/CmdMainHeadline.vue +0 -75
  233. package/src/components/CmdTopHeaderNavigation.vue +0 -88
@@ -0,0 +1,57 @@
1
+ {
2
+ "cmdCustomHeadline": {
3
+ "comments": [
4
+ "properties for CmdCustomHeadline-component"
5
+ ]
6
+ },
7
+ "useTransition": {
8
+ "comments": [
9
+ "use transition to expand accordion-content"
10
+ ]
11
+ },
12
+ "toggleMode": {
13
+ "comments": [
14
+ "toggle if mode if only one accordion can be opened (or multiple ones)"
15
+ ],
16
+ "annotations": {
17
+ "allowedValues": [
18
+ "single, multiple"
19
+ ]
20
+ }
21
+ },
22
+ "useCustomHeader": {
23
+ "comments": [
24
+ "activate if you want to use a customized header"
25
+ ]
26
+ },
27
+ "gapBetween": {
28
+ "comments": [
29
+ "set if a gap should be shown between multiple accordions"
30
+ ]
31
+ },
32
+ "accordionData": {
33
+ "comments": [
34
+ "all information about the contents in all shown accordions"
35
+ ]
36
+ },
37
+ "iconOpen": {
38
+ "comments": [
39
+ "icon to expand an accordion"
40
+ ],
41
+ "annotations": {
42
+ "requiredForAccessibility": [
43
+ "partial"
44
+ ]
45
+ }
46
+ },
47
+ "iconClosed": {
48
+ "comments": [
49
+ "icon to collapse an accordion"
50
+ ],
51
+ "annotations": {
52
+ "requiredForAccessibility": [
53
+ "partial"
54
+ ]
55
+ }
56
+ }
57
+ }
@@ -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
+ "cmdCustomHeadline": {
13
+ "comments": [
14
+ "properties for CmdCustomHeadline-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,12 @@
1
+ {
2
+ "iconBackToTop": {
3
+ "comments": [
4
+ "icon-class (and shown tooltip on hover) for back to top button"
5
+ ],
6
+ "annotations": {
7
+ "requiredForAccessibility": [
8
+ "partial"
9
+ ]
10
+ }
11
+ }
12
+ }
@@ -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
+ "cmdCustomHeadline": {
30
+ "comments": [
31
+ "properties for CmdCustomHeadline-component"
32
+ ]
33
+ }
34
+ }
@@ -0,0 +1,91 @@
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
+ "cmdCustomHeadline": {
87
+ "comments": [
88
+ "properties for CmdCustomHeadline-component"
89
+ ]
90
+ }
91
+ }
@@ -0,0 +1,41 @@
1
+ {
2
+ "useFilters": {
3
+ "comments": [
4
+ "toggle use of filters (must configured)"
5
+ ]
6
+ },
7
+ "listOfFilters": {
8
+ "comments": [
9
+ "set list of filters",
10
+ "",
11
+ "useFilters-property must be activated"
12
+ ]
13
+ },
14
+ "textLegend": {
15
+ "comments": [
16
+ "text for legend"
17
+ ],
18
+ "annotations": {
19
+ "requiredForAccessibility": [
20
+ "true"
21
+ ]
22
+ }
23
+ },
24
+ "showLegend": {
25
+ "comments": [
26
+ "toggle legend visibility",
27
+ "",
28
+ "textLegend must be set"
29
+ ]
30
+ },
31
+ "results": {
32
+ "comments": [
33
+ "send search result from outside to display inside this component"
34
+ ]
35
+ },
36
+ "cmdCustomHeadline": {
37
+ "comments": [
38
+ "properties for CmdCustomHeadline-component"
39
+ ]
40
+ }
41
+ }
@@ -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
+ }
@@ -0,0 +1,22 @@
1
+ {
2
+ "cmdCustomHeadline": {
3
+ "comments": [
4
+ "properties for CmdCustomHeadline-component"
5
+ ]
6
+ },
7
+ "cookieOptions": {
8
+ "comments": [
9
+ "list of cookie-options"
10
+ ]
11
+ },
12
+ "buttonLabelAcceptAllCookies": {
13
+ "comments": [
14
+ "label for button to accepting all cookies"
15
+ ]
16
+ },
17
+ "buttonLabelAcceptCurrentSettings": {
18
+ "comments": [
19
+ "label for button for accepting current settings"
20
+ ]
21
+ }
22
+ }
@@ -0,0 +1,22 @@
1
+ {
2
+ "headlineText": {
3
+ "comments": [
4
+ "text for headline"
5
+ ]
6
+ },
7
+ "headlineLevel": {
8
+ "comments": [
9
+ "level for headline"
10
+ ]
11
+ },
12
+ "preHeadlineText": {
13
+ "comments": [
14
+ "small pre-headline-text above main-headline"
15
+ ]
16
+ },
17
+ "iconClass": {
18
+ "comments": [
19
+ "icon-class for icon shown left/before headline"
20
+ ]
21
+ }
22
+ }
@@ -0,0 +1,79 @@
1
+ {
2
+ "type": {
3
+ "comments": [
4
+ "set different default selectbox-types for"
5
+ ],
6
+ "annotations": {
7
+ "allowedValues": [
8
+ "default, color, country, checkboxOptions"
9
+ ]
10
+ }
11
+ },
12
+ "optionLinkType": {
13
+ "comments": [
14
+ "set type of option-links"
15
+ ],
16
+ "annotations": {
17
+ "allowedValues": [
18
+ "href, router"
19
+ ]
20
+ }
21
+ },
22
+ "modelValue": {
23
+ "comments": [
24
+ "set default v-model (must be named modelValue in Vue3)"
25
+ ]
26
+ },
27
+ "selectData": {
28
+ "comments": [
29
+ "list of options to select (incl. displayed names and values)",
30
+ "",
31
+ "type-property must be set to \"checkboxOptions\""
32
+ ]
33
+ },
34
+ "showSelectAllOptions": {
35
+ "comments": [
36
+ "toggles option to (de)select all options in a checkbox-list",
37
+ "",
38
+ "type-property must be set to \"checkboxOptions\""
39
+ ]
40
+ },
41
+ "status": {
42
+ "comments": [
43
+ "status (i.e. for validation)"
44
+ ],
45
+ "annotations": {
46
+ "allowedValues": [
47
+ "error, success, disabled"
48
+ ],
49
+ "affectsStyling": [
50
+ "true"
51
+ ]
52
+ }
53
+ },
54
+ "dropdownIcon": {
55
+ "comments": [
56
+ "icon for dropdown-icon (i.e. an angle/arrow)"
57
+ ],
58
+ "annotations": {
59
+ "requiredForAccessibility": [
60
+ "partial"
61
+ ],
62
+ "defaultIcon": [
63
+ "icon-single-arrow-down"
64
+ ]
65
+ }
66
+ },
67
+ "labelText": {
68
+ "comments": [
69
+ "label-text for fake-select",
70
+ "",
71
+ " @requiredForAccessibility: true"
72
+ ]
73
+ },
74
+ "pathFlags": {
75
+ "comments": [
76
+ "path to flag-files (will be combined with flag isoCode to load svg)"
77
+ ]
78
+ }
79
+ }
@@ -0,0 +1,62 @@
1
+ {
2
+ "url": {
3
+ "comments": [
4
+ "set if content should be loaded by url"
5
+ ]
6
+ },
7
+ "fancyboxOptions": {
8
+ "comments": [
9
+ "options to show at top (closeIcon, printButtons)"
10
+ ]
11
+ },
12
+ "allowEscapeKey": {
13
+ "comments": [
14
+ "allow closing fancybox by escape-key"
15
+ ]
16
+ },
17
+ "content": {
18
+ "comments": [
19
+ "the content shown in the main area"
20
+ ]
21
+ },
22
+ "elements": {
23
+ "comments": [
24
+ "list of show elements (not images)"
25
+ ]
26
+ },
27
+ "fancyBoxGallery": {
28
+ "comments": [
29
+ "use if a gallery of images should be opened (and navigated) inside fancybox"
30
+ ]
31
+ },
32
+ "defaultGalleryIndex": {
33
+ "comments": [
34
+ "if gallery is used, you can set default index"
35
+ ]
36
+ },
37
+ "show": {
38
+ "comments": [
39
+ "show/hide entire fancybox"
40
+ ]
41
+ },
42
+ "showOverlay": {
43
+ "comments": [
44
+ "show/hide overlay (around fancybox, above website)"
45
+ ],
46
+ "annotations": {
47
+ "affectsStyling": [
48
+ "true"
49
+ ]
50
+ }
51
+ },
52
+ "altText": {
53
+ "comments": [
54
+ "alternative text for large image (required for images)"
55
+ ],
56
+ "annotations": {
57
+ "requiredForAccessibility": [
58
+ "true"
59
+ ]
60
+ }
61
+ }
62
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "cmdCustomHeadline": {
3
+ "comments": [
4
+ "properties for cmdCustomHeadline-component"
5
+ ]
6
+ },
7
+ "footerNavigation": {
8
+ "comments": [
9
+ "list of links shown vertically"
10
+ ]
11
+ },
12
+ "styleAsBox": {
13
+ "comments": [
14
+ "list of links shown vertically"
15
+ ]
16
+ }
17
+ }