comand-component-library 3.3.0 → 3.3.2
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 +2 -2
- package/src/App.vue +25 -28
- package/src/assets/styles/global-styles.scss +0 -1
- package/src/components/CmdAddressData.vue +27 -7
- package/src/components/CmdBackToTopButton.vue +11 -1
- package/src/components/CmdBankAccountData.vue +8 -2
- package/src/components/CmdBox.vue +46 -5
- package/src/components/CmdBoxWrapper.vue +76 -24
- package/src/components/CmdHeadline.vue +14 -1
- package/src/components/CmdMainNavigation.vue +15 -3
- package/src/components/CmdThumbnailScroller.vue +11 -5
- package/src/documentation/generated/CmdBoxPropertyDescriptions.json +12 -0
- package/src/documentation/generated/CmdBoxWrapperPropertyDescriptions.json +18 -3
@@ -17,6 +17,18 @@
|
|
17
17
|
"activate if box should be collapsible"
|
18
18
|
]
|
19
19
|
},
|
20
|
+
"cutoffTextLines": {
|
21
|
+
"comments": [
|
22
|
+
"number of lines to show if text should be cutoff"
|
23
|
+
]
|
24
|
+
},
|
25
|
+
"fadeLastLine": {
|
26
|
+
"comments": [
|
27
|
+
"show fade-effect on last line",
|
28
|
+
"",
|
29
|
+
"cutoffTextLines-property must be large 0"
|
30
|
+
]
|
31
|
+
},
|
20
32
|
"useTransition": {
|
21
33
|
"comments": [
|
22
34
|
"use transition to expand and collapse box-body",
|
@@ -4,9 +4,16 @@
|
|
4
4
|
"activate if boxes should be arranged vertically (each box is a row) by default"
|
5
5
|
]
|
6
6
|
},
|
7
|
-
"
|
7
|
+
"stretchBoxesVertically": {
|
8
8
|
"comments": [
|
9
|
-
"
|
9
|
+
"stretch boxes inside vertically to same height",
|
10
|
+
"",
|
11
|
+
"will not take effect on collapsable boxes"
|
12
|
+
]
|
13
|
+
},
|
14
|
+
"allowUserToToggleOrientation": {
|
15
|
+
"comments": [
|
16
|
+
"activate if user can toggle grid- and row-orientation by himself"
|
10
17
|
]
|
11
18
|
},
|
12
19
|
"allowTogglingCollapsingBoxes": {
|
@@ -31,7 +38,10 @@
|
|
31
38
|
},
|
32
39
|
"boxesPerRow": {
|
33
40
|
"comments": [
|
34
|
-
"define the number of boxes per row (if view is grid-view)"
|
41
|
+
"define the number of boxes per row (if view is grid-view)",
|
42
|
+
"",
|
43
|
+
"useFlexbox-property must be set to true",
|
44
|
+
"slot may not be used"
|
35
45
|
]
|
36
46
|
},
|
37
47
|
"iconGridView": {
|
@@ -43,5 +53,10 @@
|
|
43
53
|
"comments": [
|
44
54
|
"define icon for row-view"
|
45
55
|
]
|
56
|
+
},
|
57
|
+
"cmdHeadline": {
|
58
|
+
"comments": [
|
59
|
+
"properties for CmdHeadline-component"
|
60
|
+
]
|
46
61
|
}
|
47
62
|
}
|