comand-component-library 3.1.45 → 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 -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 +25 -12
- 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 +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 +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,34 @@
|
|
1
|
+
{
|
2
|
+
"align": {
|
3
|
+
"comments": [
|
4
|
+
"set horizontal alignment"
|
5
|
+
],
|
6
|
+
"annotations": {
|
7
|
+
"allowedValues": [
|
8
|
+
"left, right"
|
9
|
+
]
|
10
|
+
}
|
11
|
+
},
|
12
|
+
"stretchButtons": {
|
13
|
+
"comments": [
|
14
|
+
"stretch-buttons to share horizontal space vertically"
|
15
|
+
]
|
16
|
+
},
|
17
|
+
"shareButtons": {
|
18
|
+
"comments": [
|
19
|
+
"list of share-buttons (i.e. facebook, twitter etc.)"
|
20
|
+
]
|
21
|
+
},
|
22
|
+
"page": {
|
23
|
+
"comments": [
|
24
|
+
"page to share (appended to social-bookmark-url)",
|
25
|
+
"",
|
26
|
+
"appendPage-property must be activated"
|
27
|
+
]
|
28
|
+
},
|
29
|
+
"appendPage": {
|
30
|
+
"comments": [
|
31
|
+
"activate if page to share is not given by json-data)"
|
32
|
+
]
|
33
|
+
}
|
34
|
+
}
|
@@ -0,0 +1,27 @@
|
|
1
|
+
{
|
2
|
+
"cmdMainNavigation": {
|
3
|
+
"comments": [
|
4
|
+
"properties for CmdMainNavigation-component"
|
5
|
+
]
|
6
|
+
},
|
7
|
+
"closeOffcanvas": {
|
8
|
+
"comments": [
|
9
|
+
"use only if default-button of inner navigation-component should not be used"
|
10
|
+
]
|
11
|
+
},
|
12
|
+
"sticky": {
|
13
|
+
"comments": [
|
14
|
+
"activated sticky-header (stays on top if page is scrolled)"
|
15
|
+
]
|
16
|
+
},
|
17
|
+
"useGrid": {
|
18
|
+
"comments": [
|
19
|
+
"use a grid for positioning of inner-elements (else a flex-container will be used)"
|
20
|
+
],
|
21
|
+
"annotations": {
|
22
|
+
"affectsStyling": [
|
23
|
+
"true"
|
24
|
+
]
|
25
|
+
}
|
26
|
+
}
|
27
|
+
}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
{
|
2
|
+
"slideButtonType": {
|
3
|
+
"comments": [
|
4
|
+
"set slide-button-type"
|
5
|
+
],
|
6
|
+
"annotations": {
|
7
|
+
"allowedValues": [
|
8
|
+
"next, prev, up, down"
|
9
|
+
],
|
10
|
+
"affectsStyling": [
|
11
|
+
"true"
|
12
|
+
]
|
13
|
+
}
|
14
|
+
},
|
15
|
+
"slideButtons": {
|
16
|
+
"comments": [
|
17
|
+
"default slide-buttons"
|
18
|
+
],
|
19
|
+
"annotations": {
|
20
|
+
"requiredForAccessibility": [
|
21
|
+
"partial"
|
22
|
+
]
|
23
|
+
}
|
24
|
+
}
|
25
|
+
}
|
@@ -0,0 +1,42 @@
|
|
1
|
+
{
|
2
|
+
"useSlot": {
|
3
|
+
"comments": [
|
4
|
+
"use slot for images"
|
5
|
+
]
|
6
|
+
},
|
7
|
+
"autoplay": {
|
8
|
+
"comments": [
|
9
|
+
"activate if images should switch automatically"
|
10
|
+
]
|
11
|
+
},
|
12
|
+
"autoplayInterval": {
|
13
|
+
"comments": [
|
14
|
+
"set milliseconds to switch images (if autoplay is activated only)"
|
15
|
+
]
|
16
|
+
},
|
17
|
+
"showQuickLinkIcons": {
|
18
|
+
"comments": [
|
19
|
+
"shows buttons/icons to let user quick jump to each image"
|
20
|
+
]
|
21
|
+
},
|
22
|
+
"showCounter": {
|
23
|
+
"comments": [
|
24
|
+
"activate if current number of each image should be displayed"
|
25
|
+
]
|
26
|
+
},
|
27
|
+
"slideshowItems": {
|
28
|
+
"comments": [
|
29
|
+
"list of images to display (use slot must be set to false)"
|
30
|
+
]
|
31
|
+
},
|
32
|
+
"cmdSlideButtons": {
|
33
|
+
"comments": [
|
34
|
+
"properties for CmdSlideButtons-component"
|
35
|
+
],
|
36
|
+
"annotations": {
|
37
|
+
"requiredForAccessibility": [
|
38
|
+
"partial"
|
39
|
+
]
|
40
|
+
}
|
41
|
+
}
|
42
|
+
}
|
@@ -0,0 +1,79 @@
|
|
1
|
+
{
|
2
|
+
"type": {
|
3
|
+
"comments": [
|
4
|
+
"set type for input",
|
5
|
+
"",
|
6
|
+
"values: checkbox, radio"
|
7
|
+
]
|
8
|
+
},
|
9
|
+
"id": {
|
10
|
+
"comments": [
|
11
|
+
"set id for input"
|
12
|
+
],
|
13
|
+
"annotations": {
|
14
|
+
"requiredForAccessibility": [
|
15
|
+
"true"
|
16
|
+
]
|
17
|
+
}
|
18
|
+
},
|
19
|
+
"name": {
|
20
|
+
"comments": [
|
21
|
+
"set name for input",
|
22
|
+
"",
|
23
|
+
"required for radio-buttons (and form-submit by browser)"
|
24
|
+
]
|
25
|
+
},
|
26
|
+
"value": {
|
27
|
+
"comments": [
|
28
|
+
"value for v-model"
|
29
|
+
]
|
30
|
+
},
|
31
|
+
"inputValue": {
|
32
|
+
"comments": [
|
33
|
+
"set value to pre-check toggle-switch"
|
34
|
+
]
|
35
|
+
},
|
36
|
+
"labelText": {
|
37
|
+
"comments": [
|
38
|
+
"text for label",
|
39
|
+
"required if onLabel/offLabel are not set"
|
40
|
+
],
|
41
|
+
"annotations": {
|
42
|
+
"requiredForAccessibility": [
|
43
|
+
"true"
|
44
|
+
]
|
45
|
+
}
|
46
|
+
},
|
47
|
+
"onLabel": {
|
48
|
+
"comments": [
|
49
|
+
"text for on-label",
|
50
|
+
"set to activate switch-label (=label is placed on toggle-switch (not behind))"
|
51
|
+
],
|
52
|
+
"annotations": {
|
53
|
+
"requiredForAccessibility": [
|
54
|
+
"true"
|
55
|
+
]
|
56
|
+
}
|
57
|
+
},
|
58
|
+
"offLabel": {
|
59
|
+
"comments": [
|
60
|
+
"text for off-label",
|
61
|
+
"set to activate switch-label (=label is placed on toggle-switch (not behind))"
|
62
|
+
],
|
63
|
+
"annotations": {
|
64
|
+
"requiredForAccessibility": [
|
65
|
+
"true"
|
66
|
+
]
|
67
|
+
}
|
68
|
+
},
|
69
|
+
"colored": {
|
70
|
+
"comments": [
|
71
|
+
"set to true, if checkbox/radio-buttons should have green/checked and red/unchecked color-coding"
|
72
|
+
],
|
73
|
+
"annotations": {
|
74
|
+
"affectsStyling": [
|
75
|
+
"true"
|
76
|
+
]
|
77
|
+
}
|
78
|
+
}
|
79
|
+
}
|
@@ -0,0 +1,40 @@
|
|
1
|
+
{
|
2
|
+
"validationStatus": {
|
3
|
+
"comments": [
|
4
|
+
"validation-status for the message-box"
|
5
|
+
],
|
6
|
+
"annotations": {
|
7
|
+
"allowedValues": [
|
8
|
+
"error, warning, success, info"
|
9
|
+
],
|
10
|
+
"affectsStyling": [
|
11
|
+
"true"
|
12
|
+
]
|
13
|
+
}
|
14
|
+
},
|
15
|
+
"fullWidth": {
|
16
|
+
"comments": [
|
17
|
+
"activate to stretch message-box as wide as parent container (else message-box is as wide as message (+padding))"
|
18
|
+
]
|
19
|
+
},
|
20
|
+
"iconMessage": {
|
21
|
+
"comments": [
|
22
|
+
"set icon-class for message (will be displayed left from message)"
|
23
|
+
]
|
24
|
+
},
|
25
|
+
"systemMessage": {
|
26
|
+
"comments": [
|
27
|
+
"the system-message-text"
|
28
|
+
]
|
29
|
+
},
|
30
|
+
"iconClose": {
|
31
|
+
"comments": [
|
32
|
+
"icon to close system-message"
|
33
|
+
],
|
34
|
+
"annotations": {
|
35
|
+
"requiredForAccessibility": [
|
36
|
+
"partial"
|
37
|
+
]
|
38
|
+
}
|
39
|
+
}
|
40
|
+
}
|
@@ -0,0 +1,62 @@
|
|
1
|
+
{
|
2
|
+
"tableData": {
|
3
|
+
"comments": [
|
4
|
+
"table data (incl. caption, thead, tbody)"
|
5
|
+
]
|
6
|
+
},
|
7
|
+
"collapsible": {
|
8
|
+
"comments": [
|
9
|
+
"activate if table should be collapsible"
|
10
|
+
]
|
11
|
+
},
|
12
|
+
"fullWidthOnDefault": {
|
13
|
+
"comments": [
|
14
|
+
"activate if table should be stretched to full width of its parent-container (else table will be as wide as its content)"
|
15
|
+
]
|
16
|
+
},
|
17
|
+
"userCanToggleWidth": {
|
18
|
+
"comments": [
|
19
|
+
"user can toggle width (full-width (=100% of parent container or as wide as table content) with button above table)"
|
20
|
+
]
|
21
|
+
},
|
22
|
+
"iconExpand": {
|
23
|
+
"comments": [
|
24
|
+
"icon to expand table (vertically)"
|
25
|
+
],
|
26
|
+
"annotations": {
|
27
|
+
"requiredForAccessibility": [
|
28
|
+
"partial"
|
29
|
+
]
|
30
|
+
}
|
31
|
+
},
|
32
|
+
"iconCollapse": {
|
33
|
+
"comments": [
|
34
|
+
"icon to collapse table (vertically)"
|
35
|
+
],
|
36
|
+
"annotations": {
|
37
|
+
"requiredForAccessibility": [
|
38
|
+
"partial"
|
39
|
+
]
|
40
|
+
}
|
41
|
+
},
|
42
|
+
"iconShrink": {
|
43
|
+
"comments": [
|
44
|
+
"icon to shrink table (horizontally)"
|
45
|
+
],
|
46
|
+
"annotations": {
|
47
|
+
"requiredForAccessibility": [
|
48
|
+
"partial"
|
49
|
+
]
|
50
|
+
}
|
51
|
+
},
|
52
|
+
"iconStretch": {
|
53
|
+
"comments": [
|
54
|
+
"icon to stretch table (horizontally)"
|
55
|
+
],
|
56
|
+
"annotations": {
|
57
|
+
"requiredForAccessibility": [
|
58
|
+
"partial"
|
59
|
+
]
|
60
|
+
}
|
61
|
+
}
|
62
|
+
}
|
@@ -0,0 +1,27 @@
|
|
1
|
+
{
|
2
|
+
"cmdCustomHeadline": {
|
3
|
+
"comments": [
|
4
|
+
"properties for CmdCustomHeadline-component"
|
5
|
+
]
|
6
|
+
},
|
7
|
+
"stretchTabs": {
|
8
|
+
"comments": [
|
9
|
+
"activate if tabs should be (equally) stretched horizontally over full width of tab-content"
|
10
|
+
]
|
11
|
+
},
|
12
|
+
"tabs": {
|
13
|
+
"comments": [
|
14
|
+
"list of tabs (incl. tab-name and tab-content (optional))"
|
15
|
+
]
|
16
|
+
},
|
17
|
+
"useSlot": {
|
18
|
+
"comments": [
|
19
|
+
"activate if content should be given by slot"
|
20
|
+
]
|
21
|
+
},
|
22
|
+
"activeTab": {
|
23
|
+
"comments": [
|
24
|
+
"set default active/shown tab"
|
25
|
+
]
|
26
|
+
}
|
27
|
+
}
|
@@ -0,0 +1,32 @@
|
|
1
|
+
{
|
2
|
+
"thumbnailScrollerItems": {
|
3
|
+
"comments": [
|
4
|
+
"list of thumbnail-scroller-items"
|
5
|
+
]
|
6
|
+
},
|
7
|
+
"allowOpenFancyBox": {
|
8
|
+
"comments": [
|
9
|
+
"allow large version of images to be opened in CmdFancyBox-component"
|
10
|
+
]
|
11
|
+
},
|
12
|
+
"imgIndex": {
|
13
|
+
"comments": [
|
14
|
+
"set a default index to activate/highlight a specific image/item"
|
15
|
+
]
|
16
|
+
},
|
17
|
+
"figcaption": {
|
18
|
+
"comments": [
|
19
|
+
"set figcaption"
|
20
|
+
]
|
21
|
+
},
|
22
|
+
"cmdSlideButtons": {
|
23
|
+
"comments": [
|
24
|
+
"properties for CmdSlideButtons-component"
|
25
|
+
],
|
26
|
+
"annotations": {
|
27
|
+
"requiredForAccessibility": [
|
28
|
+
"partial"
|
29
|
+
]
|
30
|
+
}
|
31
|
+
}
|
32
|
+
}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
{
|
2
|
+
"cmdCustomHeadline": {
|
3
|
+
"comments": [
|
4
|
+
"enable toggling tooltip-visibility by click"
|
5
|
+
]
|
6
|
+
},
|
7
|
+
"methods": {
|
8
|
+
"comments": [
|
9
|
+
"enable toggling tooltip-visibility by click"
|
10
|
+
]
|
11
|
+
},
|
12
|
+
"watch": {
|
13
|
+
"comments": [
|
14
|
+
"enable toggling tooltip-visibility by click"
|
15
|
+
]
|
16
|
+
}
|
17
|
+
}
|
@@ -0,0 +1,90 @@
|
|
1
|
+
{
|
2
|
+
"deleteIconClass": {
|
3
|
+
"comments": [
|
4
|
+
"set icon class for delete-icons"
|
5
|
+
]
|
6
|
+
},
|
7
|
+
"showTotalUpload": {
|
8
|
+
"comments": [
|
9
|
+
"toggle visibility of total upload (number of files, total size, total progress"
|
10
|
+
]
|
11
|
+
},
|
12
|
+
"componentHandlesUpload": {
|
13
|
+
"comments": [
|
14
|
+
"toggle if upload is handled by component itself or by outer component"
|
15
|
+
]
|
16
|
+
},
|
17
|
+
"allowedFileExtensions": {
|
18
|
+
"comments": [
|
19
|
+
"list of allowed file extensions to upload (all can be selected)"
|
20
|
+
]
|
21
|
+
},
|
22
|
+
"commentRequired": {
|
23
|
+
"comments": [
|
24
|
+
"activate if the comment given by the user should be mandatory",
|
25
|
+
"",
|
26
|
+
"enableComment-property must be set to true"
|
27
|
+
]
|
28
|
+
},
|
29
|
+
"commentStatusMessage": {
|
30
|
+
"comments": [
|
31
|
+
"show a message if mandatory comment-textarea is not filled",
|
32
|
+
"",
|
33
|
+
"enableComment-property and commentRequired-property must be set to true"
|
34
|
+
]
|
35
|
+
},
|
36
|
+
"cmdCustomHeadline": {
|
37
|
+
"comments": [
|
38
|
+
"properties for CmdCustomHeadline-component"
|
39
|
+
]
|
40
|
+
},
|
41
|
+
"enableDragAndDrop": {
|
42
|
+
"comments": [
|
43
|
+
"enable if files can also be dragged (and dropped) into upload-area"
|
44
|
+
]
|
45
|
+
},
|
46
|
+
"enableComment": {
|
47
|
+
"comments": [
|
48
|
+
"enable if a comment should be possible to left by the user"
|
49
|
+
]
|
50
|
+
},
|
51
|
+
"presetComment": {
|
52
|
+
"comments": [
|
53
|
+
"preset the comment-textarea",
|
54
|
+
"",
|
55
|
+
"enableComment-property must be set to true"
|
56
|
+
]
|
57
|
+
},
|
58
|
+
"maxTotalUploadSize": {
|
59
|
+
"comments": [
|
60
|
+
"set to 0 if no maximum for total upload size should be set"
|
61
|
+
]
|
62
|
+
},
|
63
|
+
"maxFileUploadSize": {
|
64
|
+
"comments": [
|
65
|
+
"max file size (in bytes) for each single file"
|
66
|
+
]
|
67
|
+
},
|
68
|
+
"allowMultipleFileUploads": {
|
69
|
+
"comments": [
|
70
|
+
"enable if more than file should be enabled to be selected for upload"
|
71
|
+
]
|
72
|
+
},
|
73
|
+
"uploadOptions": {
|
74
|
+
"comments": [
|
75
|
+
"defines upload options if component handles upload itself",
|
76
|
+
"",
|
77
|
+
"componentHandlesUpload-property must be true"
|
78
|
+
]
|
79
|
+
},
|
80
|
+
"advancedMode": {
|
81
|
+
"comments": [
|
82
|
+
"activate to use full upload-form-style and -functionality"
|
83
|
+
],
|
84
|
+
"annotations": {
|
85
|
+
"affectsStyling": [
|
86
|
+
"true"
|
87
|
+
]
|
88
|
+
}
|
89
|
+
}
|
90
|
+
}
|
@@ -0,0 +1,41 @@
|
|
1
|
+
{
|
2
|
+
"innerComponent": {
|
3
|
+
"comments": [
|
4
|
+
"set a html-tag as inner tag"
|
5
|
+
],
|
6
|
+
"annotations": {
|
7
|
+
"allowedValues": [
|
8
|
+
"section, div"
|
9
|
+
]
|
10
|
+
}
|
11
|
+
},
|
12
|
+
"innerWrapper": {
|
13
|
+
"comments": [
|
14
|
+
"activate if the inner content should be wrapped in inner component tag (recommended)",
|
15
|
+
"",
|
16
|
+
"(if deactivated, content will be directly placed inside cmd-width-limitation-wrapper)",
|
17
|
+
""
|
18
|
+
]
|
19
|
+
},
|
20
|
+
"sticky": {
|
21
|
+
"comments": [
|
22
|
+
"activate if wrapper (and its content) should be sticky (=position remains the same if content below is scrolled)",
|
23
|
+
"",
|
24
|
+
"i.e. use for site-header",
|
25
|
+
"",
|
26
|
+
"keep attention that more than one sticky-element on same html-level can cause problems, if content below is scrolled"
|
27
|
+
]
|
28
|
+
},
|
29
|
+
"innerClass": {
|
30
|
+
"comments": [
|
31
|
+
"set class to inner component",
|
32
|
+
"",
|
33
|
+
"innerWrapper-property must be true"
|
34
|
+
]
|
35
|
+
},
|
36
|
+
"anchorId": {
|
37
|
+
"comments": [
|
38
|
+
"set id for (invisible) anchor to enable shortcuts"
|
39
|
+
]
|
40
|
+
}
|
41
|
+
}
|