comand-component-library 3.1.43 → 3.1.46
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 +47 -40
- package/src/App.vue +379 -136
- 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-countries.json +12 -12
- 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 -14
- 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 +330 -66
- package/src/components/CmdFancyBox.vue +47 -33
- package/src/components/CmdForm.vue +107 -0
- package/src/components/CmdFormElement.vue +528 -83
- 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 +146 -66
- 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 +21 -4
- package/src/components/CmdShareButtons.vue +64 -9
- package/src/components/CmdSiteHeader.vue +25 -12
- package/src/components/CmdSlideButton.vue +5 -2
- package/src/components/CmdSlideshow.vue +23 -7
- package/src/components/CmdSwitchButton.vue +15 -6
- 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 +830 -176
- 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 +6 -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 +53 -0
- package/src/mixins/FieldValidation.js +220 -0
- package/src/mixins/GlobalDefaultMessageProperties.js +15 -0
- package/src/mixins/I18n.js +56 -0
- package/src/mixins/Tooltip.js +26 -0
- package/src/router/index.js +67 -0
- package/src/utilities.js +3 -6
- package/src/utils/GetFileExtension.js +15 -0
- 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,158 @@
|
|
1
|
+
{
|
2
|
+
"CmdAddressData": {
|
3
|
+
"headline": "Address Data",
|
4
|
+
"shorttext": "Address data in a list and wrapped in a address-tag"
|
5
|
+
},
|
6
|
+
"CmdBackToTopButton": {
|
7
|
+
"headline": "Back-To-Top-Button",
|
8
|
+
"shorttext": "Button at the bottom of the page, to jump back to top"
|
9
|
+
},
|
10
|
+
"CmdBankAccountData": {
|
11
|
+
"headline": "Bank Account Data",
|
12
|
+
"shorttext": "Shows a list with bank data, which can be copied by click"
|
13
|
+
},
|
14
|
+
"CmdBox": {
|
15
|
+
"headline": "Box",
|
16
|
+
"shorttext": "Just a simple box for different types of content (like text, images, user-profiles, products etc.)",
|
17
|
+
"config": {
|
18
|
+
"usesSlot": true,
|
19
|
+
"innerComponents": ["CmdCustomHeadline"]
|
20
|
+
}
|
21
|
+
},
|
22
|
+
"CmdBoxSiteSearch": {
|
23
|
+
"headline": "Box Site Search",
|
24
|
+
"shorttext": "Box with search field to search the content"
|
25
|
+
},
|
26
|
+
"CmdBoxWrapper": {
|
27
|
+
"headline": "Box Wrapper",
|
28
|
+
"shorttext": "Box wrapper for different types of content arranged in a flex- or grid-container"
|
29
|
+
},
|
30
|
+
"CmdBreadcrumbs": {
|
31
|
+
"headline": "Breadcrumbs",
|
32
|
+
"shorttext": "Hierachic navigation, that shows the current page in relation to upper levels. Mostly placed at the top of the content."
|
33
|
+
},
|
34
|
+
"CmdCompanyLogo": {
|
35
|
+
"headline": "Company Logo",
|
36
|
+
"shorttext": "Main logo for the website, that can also be linked to the homepage. Also used in the site-header."
|
37
|
+
},
|
38
|
+
"CmdCookieDisclaimer": {
|
39
|
+
"headline": "Cookie Disclaimer",
|
40
|
+
"shorttext": "The required cookie disclaimer for a web sites. Must show basic information about the used cookies and the possibility to disable not necessary ones."
|
41
|
+
},
|
42
|
+
"CmdCustomHeadline": {
|
43
|
+
"headline": "Custom Headline",
|
44
|
+
"shorttext": "A custom headline, where the h-level can be defined and an optional pre-headline and icon can be set."
|
45
|
+
},
|
46
|
+
"CmdFakeSelect": {
|
47
|
+
"headline": "Fake Select",
|
48
|
+
"shorttext": "A dropdown, that looks like a native selectbox, but can also be filled with different option-types (i.e. checkboxes) or content."
|
49
|
+
},
|
50
|
+
"CmdFancyBox": {
|
51
|
+
"headline": "Fancy Box",
|
52
|
+
"shorttext": "The Fancy Box is a PopUp-Box similar to a modal, that can be filled with different content (i.e. image slider, print preview)."
|
53
|
+
},
|
54
|
+
"CmdForm": {
|
55
|
+
"headline": "Form",
|
56
|
+
"shorttext": "An empty form-wrapper with an optional fieldset and legend, which can be filled with form elements."
|
57
|
+
},
|
58
|
+
"CmdFormElement": {
|
59
|
+
"headline": "Form Elements",
|
60
|
+
"shorttext": "All types of form elements (.ie. inputs, selectboxes, checkboxes, radiobuttons etc.)."
|
61
|
+
},
|
62
|
+
"CmdFormFilters": {
|
63
|
+
"headline": "Form Filters",
|
64
|
+
"shorttext": "List of selected filters (without functionality) that can be set by a form element or a fake select."
|
65
|
+
},
|
66
|
+
"CmdGoogleMaps": {
|
67
|
+
"headline": "Google Maps",
|
68
|
+
"shorttext": "A Google Map in an iframe, that can be linked with an address."
|
69
|
+
},
|
70
|
+
"CmdImageGallery": {
|
71
|
+
"headline": "Image Gallery",
|
72
|
+
"shorttext": "A list if images arranged in a grid. The images can be enlarge in a fancybox."
|
73
|
+
},
|
74
|
+
"CmdImageZoom": {
|
75
|
+
"headline": "Image Zoom",
|
76
|
+
"shorttext": "Shows a movable section of a hovered image in a very large version."
|
77
|
+
},
|
78
|
+
"CmdListOfLinks": {
|
79
|
+
"headline": "List Of Links",
|
80
|
+
"shorttext": "Contains a list of links, mostly used for secondary content (above the header, inside the footer, for pdf-downloads)."
|
81
|
+
},
|
82
|
+
"CmdLoginForm": {
|
83
|
+
"headline": "Login Form",
|
84
|
+
"shorttext": "Shows a standard login form (with username- and password-field) and toggle form to prepare sending the password by email."
|
85
|
+
},
|
86
|
+
"CmdMainNavigation": {
|
87
|
+
"headline": "Main Navigation",
|
88
|
+
"shorttext": "This component should be us to contain the main navigation for a project. Is already wrapped in a nav-tag, that can contain up to three levels of links."
|
89
|
+
},
|
90
|
+
"CmdMultipleSwitch": {
|
91
|
+
"headline": "Multiple Switch",
|
92
|
+
"shorttext": "TEXT FEHLT"
|
93
|
+
},
|
94
|
+
"CmdMultistepFormProgressBar": {
|
95
|
+
"headline": "Multistep Form Progress Bar",
|
96
|
+
"shorttext": "A horizontal progress bar, mostly used for forms, that are separated over multiple pages."
|
97
|
+
},
|
98
|
+
"CmdOpeningHours": {
|
99
|
+
"headline": "Opening Hours",
|
100
|
+
"shorttext": "A list of opening hours with additional options."
|
101
|
+
},
|
102
|
+
"CmdPager": {
|
103
|
+
"headline": "Pager",
|
104
|
+
"shorttext": "Buttons to switch pages, mostly used for list (.i.e. search results) that are displayed of several pages."
|
105
|
+
},
|
106
|
+
"CmdProgressBar": {
|
107
|
+
"headline": "Progress Bar",
|
108
|
+
"shorttext": "Based on a native progress bar, this component can be used with a label and an output of the percentage loaded."
|
109
|
+
},
|
110
|
+
"CmdShareButtons": {
|
111
|
+
"headline": "Share Buttons",
|
112
|
+
"shorttext": "Based on a native progress bar, this component can be used with a label and an output of the percentage loaded."
|
113
|
+
},
|
114
|
+
"CmdSiteHeader": {
|
115
|
+
"headline": "Site Header",
|
116
|
+
"shorttext": "The header for the entire site. It can be configured with the main navigation inside or be filled by slot-elements."
|
117
|
+
},
|
118
|
+
"CmdSlideButton": {
|
119
|
+
"headline": "Slide Button",
|
120
|
+
"shorttext": "Button to slide content (.i.e. images, thumbnails, text) that is used in components like slideshow or thumbnail-scroller."
|
121
|
+
},
|
122
|
+
"CmdSlideshow": {
|
123
|
+
"headline": "Slideshow",
|
124
|
+
"shorttext": "This component is used as an image-slider. It also can load different images for different screen-resolutions."
|
125
|
+
},
|
126
|
+
"CmdSwitchLanguage": {
|
127
|
+
"headline": "Switch Language",
|
128
|
+
"shorttext": "A list with country flags, to symbolize switching languages on a web site."
|
129
|
+
},
|
130
|
+
"CmdSystemMessage": {
|
131
|
+
"headline": "System Message",
|
132
|
+
"shorttext": "A universal message, which can be used for global messages or form validation. It already contains the common cases 'error', 'warning', 'success' and 'info'."
|
133
|
+
},
|
134
|
+
"CmdTable": {
|
135
|
+
"headline": "Table",
|
136
|
+
"shorttext": "Based on a the native table, this table can also be configured to highlight rows or columns and has a default overflow-behavior for wide content."
|
137
|
+
},
|
138
|
+
"CmdTabs": {
|
139
|
+
"headline": "Tabs",
|
140
|
+
"shorttext": "Tabs to switch different section of content, that toggle visibility in frame below."
|
141
|
+
},
|
142
|
+
"CmdThumbnailScroller": {
|
143
|
+
"headline": "Thumbnail scroller",
|
144
|
+
"shorttext": "A horizontal image scroller for small images (thumbnails) that is also used inside if a group of images is enlarged with the fancybox."
|
145
|
+
},
|
146
|
+
"CmdTooltip": {
|
147
|
+
"headline": "Tooltip",
|
148
|
+
"shorttext": "A custom tooltip, that looks like the default tooltip (title) that appears on hovering elements. It also can be filled with customizable content and styled individually."
|
149
|
+
},
|
150
|
+
"CmdUploadForm": {
|
151
|
+
"headline": "Upload form",
|
152
|
+
"shorttext": "Can be used as a complex, configurable form or as a simple drag-and-drop area to prepare the upload of files."
|
153
|
+
},
|
154
|
+
"CmdWidthLimitationWrapper": {
|
155
|
+
"headline": "Width limitation wrapper",
|
156
|
+
"shorttext": "A simple wrapper without content, that can be used to wrap the main content and limit its width on large screens."
|
157
|
+
}
|
158
|
+
}
|
@@ -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,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
|
+
}
|