comand-component-library 4.2.51 → 4.2.52
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.js +2444 -2145
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/src/ComponentLibrary.vue +131 -37
- package/src/assets/data/box-product.json +15 -10
- package/src/assets/data/box-user.json +8 -8
- package/src/assets/data/listOfComponents.json +1 -1
- package/src/assets/data/pages/boxes-team-overview.json +8 -8
- package/src/componentSettingsDataAndControls.vue +82 -10
- package/src/components/CmdAddressData.vue +2 -0
- package/src/components/CmdAddressDataItem.vue +2 -1
- package/src/components/CmdBackToTopButton.vue +12 -3
- package/src/components/CmdBankAccountData.vue +2 -0
- package/src/components/CmdBasicForm.vue +6 -2
- package/src/components/CmdBox.vue +62 -35
- package/src/components/CmdBoxWrapper.vue +6 -0
- package/src/components/CmdBreadcrumbs.vue +2 -0
- package/src/components/CmdCodeOutput.vue +2 -0
- package/src/components/CmdCompanyLogo.vue +2 -0
- package/src/components/CmdContainer.vue +100 -87
- package/src/components/CmdCookieDisclaimer.vue +12 -1
- package/src/components/CmdCopyrightInformation.vue +2 -0
- package/src/components/CmdFakeSelect.vue +10 -6
- package/src/components/CmdFancyBox.vue +2 -0
- package/src/components/CmdFlexibleScrollContainer.vue +2 -0
- package/src/components/CmdForm.vue +2 -0
- package/src/components/CmdFormElement.vue +11 -1
- package/src/components/CmdFormFilters.vue +2 -0
- package/src/components/CmdGoogleMaps.vue +2 -0
- package/src/components/CmdHeadline.vue +23 -1
- package/src/components/CmdIcon.vue +2 -0
- package/src/components/CmdImage.vue +3 -0
- package/src/components/CmdImageGallery.vue +3 -1
- package/src/components/CmdImageZoom.vue +2 -0
- package/src/components/CmdInnerLink.vue +2 -0
- package/src/components/CmdInputGroup.vue +2 -0
- package/src/components/CmdLink.vue +16 -10
- package/src/components/CmdList.vue +136 -99
- package/src/components/CmdListOfLinksItem.vue +2 -0
- package/src/components/CmdListOfRequirements.vue +2 -0
- package/src/components/CmdLoginForm.vue +2 -2
- package/src/components/CmdMailTool.vue +2 -0
- package/src/components/CmdMailToolEntry.vue +2 -1
- package/src/components/CmdMailToolFilter.vue +2 -0
- package/src/components/CmdMainNavigation.vue +2 -0
- package/src/components/CmdMultistepFormProgressBar.vue +16 -10
- package/src/components/CmdProgressBar.vue +1 -1
- package/src/components/CmdSiteSearch.vue +10 -1
- package/src/components/CmdSlideButton.vue +3 -4
- package/src/components/CmdSlideshow.vue +10 -1
- package/src/components/CmdSmartSearch.vue +42 -11
- package/src/components/CmdSystemMessage.vue +8 -5
- package/src/components/CmdTable.vue +8 -6
- package/src/components/CmdTabs.vue +37 -3
- package/src/components/CmdThumbnailScroller.vue +12 -3
- package/src/components/CmdUploadForm.vue +12 -1
- package/src/components/CmdFlexContainer.vue +0 -109
package/src/ComponentLibrary.vue
CHANGED
@@ -20,10 +20,7 @@
|
|
20
20
|
<span>Select template</span>
|
21
21
|
<select id="select-template" v-model="selectedTemplate">
|
22
22
|
<option value="blank">Blank/Unstyled</option>
|
23
|
-
<option value="
|
24
|
-
<option value="casual">Casual</option>
|
25
|
-
<option value="dating">Dating</option>
|
26
|
-
<option value="influencer">Influencer</option>
|
23
|
+
<option value="dating">Material-Web</option>
|
27
24
|
</select>
|
28
25
|
</label>
|
29
26
|
<div>
|
@@ -780,25 +777,44 @@
|
|
780
777
|
headlinePosition="body" :cmdIcon="{ iconClass: 'icon-home', type: 'auto' }"
|
781
778
|
textBody="Box with large icon, headline in body and content all given by properties." />
|
782
779
|
</CmdBoxWrapper>
|
780
|
+
|
781
|
+
<!-- begin product boxes -->
|
783
782
|
<h3>Product boxes</h3>
|
784
|
-
<
|
785
|
-
<
|
786
|
-
<CmdBox
|
787
|
-
|
788
|
-
|
783
|
+
<CmdBoxWrapper :boxesPerRow="[5, 2, 1]" :useRowViewAsDefault="true" :useGap="true">
|
784
|
+
<template v-slot="slotProps">
|
785
|
+
<CmdBox
|
786
|
+
v-for="(product, index) in boxProductData"
|
787
|
+
:key="index"
|
788
|
+
boxType="product"
|
789
|
+
:product="product"
|
790
|
+
:cmdHeadline="{ headlineLevel: 4 }"
|
791
|
+
:rowView="slotProps.rowView"
|
792
|
+
/>
|
793
|
+
</template>
|
794
|
+
</CmdBoxWrapper>
|
795
|
+
<!-- end product boxes -->
|
796
|
+
|
797
|
+
<!-- begin user boxes -->
|
789
798
|
<h3>User boxes</h3>
|
790
799
|
<CmdBoxWrapper :boxesPerRow="[5, 2, 1]" :useRowViewAsDefault="true" :useGap="true">
|
791
800
|
<template v-slot="slotProps">
|
792
|
-
<CmdBox
|
793
|
-
|
794
|
-
:
|
801
|
+
<CmdBox
|
802
|
+
v-for="index in boxUserData.length"
|
803
|
+
:key="index"
|
804
|
+
boxType="user"
|
805
|
+
:user="boxUserData[index - 1]"
|
806
|
+
:cmdHeadline="{ headlineLevel: 5 }"
|
807
|
+
:rowView="slotProps.rowView"
|
808
|
+
/>
|
795
809
|
</template>
|
796
810
|
</CmdBoxWrapper>
|
811
|
+
<!-- end user boxes -->
|
812
|
+
|
797
813
|
<h3><span>Boxes in BoxWrapper (collapsible)</span>
|
798
814
|
<a href="#" class="button small icon-cog" title="Open Component Settings"
|
799
815
|
@click.prevent="openSettingsSidebar('CmdBoxWrapper')"></a>
|
800
816
|
</h3>
|
801
|
-
<CmdBoxWrapper ref="CmdBoxWrapper" :boxesPerRow="[
|
817
|
+
<CmdBoxWrapper ref="CmdBoxWrapper" :boxesPerRow="[4, 1]" :openBoxesByDefault="[2]"
|
802
818
|
:useRowViewAsDefault="true" :allowMultipleExpandedBoxes="false" :stretch-boxes-vertically="true"
|
803
819
|
:useGap="true">
|
804
820
|
<template v-slot="slotProps">
|
@@ -854,26 +870,57 @@
|
|
854
870
|
<!-- begin container --------------------------------------------------------------------------------------------------->
|
855
871
|
<CmdWidthLimitationWrapper>
|
856
872
|
<h2 class="headline-demopage" id="section-container">
|
857
|
-
<span>
|
873
|
+
<span>Containers</span>
|
858
874
|
<a href="#" class="button small icon-cog" title="Open Component Settings"
|
859
875
|
@click.prevent="openSettingsSidebar('CmdContainer')"></a>
|
860
876
|
</h2>
|
861
|
-
<h3>
|
862
|
-
<CmdContainer
|
863
|
-
|
864
|
-
|
865
|
-
|
866
|
-
|
867
|
-
|
877
|
+
<h3>Container (type "default")</h3>
|
878
|
+
<CmdContainer
|
879
|
+
style="border: 1px dashed var(--color-gray-30)"
|
880
|
+
ref="CmdContainer"
|
881
|
+
v-bind="cmdContainerSettingsData"
|
882
|
+
>
|
883
|
+
<p>Slot-content</p>
|
884
|
+
<p>Slot-content</p>
|
885
|
+
<p>Slot-content</p>
|
886
|
+
</CmdContainer>
|
887
|
+
<h3>Container (type "flex", horizontal)</h3>
|
888
|
+
<CmdContainer
|
889
|
+
style="border: 1px dashed var(--color-gray-30)"
|
890
|
+
ref="CmdContainer"
|
891
|
+
v-bind="cmdContainerSettingsData"
|
892
|
+
containerType="flex"
|
893
|
+
contentOrientation="horizontal"
|
894
|
+
>
|
895
|
+
<p>Slot-content</p>
|
896
|
+
<p>Slot-content</p>
|
897
|
+
<p>Slot-content</p>
|
898
|
+
</CmdContainer>
|
899
|
+
<h3>Container (type "flex", vertical)</h3>
|
900
|
+
<CmdContainer
|
901
|
+
style="border: 1px dashed var(--color-gray-30)"
|
902
|
+
ref="CmdContainer"
|
903
|
+
v-bind="cmdContainerSettingsData"
|
904
|
+
containerType="flex"
|
905
|
+
contentOrientation="vertical"
|
906
|
+
>
|
868
907
|
<p>Slot-content</p>
|
869
908
|
<p>Slot-content</p>
|
870
909
|
<p>Slot-content</p>
|
871
910
|
</CmdContainer>
|
872
911
|
<h3>Container with horizontal slots</h3>
|
873
|
-
<CmdContainer
|
874
|
-
|
875
|
-
|
876
|
-
|
912
|
+
<CmdContainer
|
913
|
+
style="border: 1px dashed var(--color-gray-30)"
|
914
|
+
ref="CmdContainer"
|
915
|
+
v-bind="cmdContainerSettingsData"
|
916
|
+
containerType="grid"
|
917
|
+
>
|
918
|
+
<p>Slot-content</p>
|
919
|
+
<p>Slot-content</p>
|
920
|
+
<p>Slot-content</p>
|
921
|
+
<p>Slot-content</p>
|
922
|
+
<p>Slot-content</p>
|
923
|
+
<p>Slot-content</p>
|
877
924
|
</CmdContainer>
|
878
925
|
</CmdWidthLimitationWrapper>
|
879
926
|
<!-- end container --------------------------------------------------------------------------------------------------->
|
@@ -940,14 +987,14 @@
|
|
940
987
|
<!-- begin flexible-scroll-container --------------------------------------------------------------------------------------------------->
|
941
988
|
<CmdWidthLimitationWrapper>
|
942
989
|
<h2 class="headline-demopage" id="section-flexible-scroll-container">Flexible Scroll-Container</h2>
|
943
|
-
<CmdFlexibleScrollContainer style="border: 1px
|
990
|
+
<CmdFlexibleScrollContainer style="border: 1px dashed var(--color-gray-30)">
|
944
991
|
<template v-slot:fixed-wrapper>
|
945
|
-
<div class="default-padding" style="border: 1px
|
992
|
+
<div class="default-padding" style="border: 1px dashed var(--color-gray-30)">
|
946
993
|
Fixed content
|
947
994
|
</div>
|
948
995
|
</template>
|
949
996
|
<template v-slot:scroll-wrapper>
|
950
|
-
<div class="default-padding" style="border: 1px
|
997
|
+
<div class="default-padding" style="border: 1px dashed var(--color-gray-30)">
|
951
998
|
<ul>
|
952
999
|
<li>Dynamic Content</li>
|
953
1000
|
<li>Dynamic Content</li>
|
@@ -1129,8 +1176,35 @@
|
|
1129
1176
|
</dl>
|
1130
1177
|
<CmdList :cmdHeadline="{ headlineText: 'List of images', headlineLevel: 3 }" :items="imageGalleryData"
|
1131
1178
|
orientation="horizontal" listType="images" />
|
1132
|
-
<
|
1133
|
-
|
1179
|
+
<div class="flex-container">
|
1180
|
+
<CmdList
|
1181
|
+
:cmdHeadline="{ headlineText: 'List of tags (default)', headlineLevel: 3 }"
|
1182
|
+
:items="listOfTagsData"
|
1183
|
+
orientation="horizontal"
|
1184
|
+
listType="tags"
|
1185
|
+
/>
|
1186
|
+
<CmdList
|
1187
|
+
:cmdHeadline="{ headlineText: 'List of tags (primary)', headlineLevel: 3 }"
|
1188
|
+
:items="listOfTagsData"
|
1189
|
+
orientation="horizontal"
|
1190
|
+
listType="tags"
|
1191
|
+
highlightLevel="primary"
|
1192
|
+
/>
|
1193
|
+
<CmdList
|
1194
|
+
:cmdHeadline="{ headlineText: 'List of tags (secondary)', headlineLevel: 3 }"
|
1195
|
+
:items="listOfTagsData"
|
1196
|
+
orientation="horizontal"
|
1197
|
+
listType="tags"
|
1198
|
+
highlightLevel="secondary"
|
1199
|
+
/>
|
1200
|
+
<CmdList
|
1201
|
+
:cmdHeadline="{ headlineText: 'List of tags (tertiary)', headlineLevel: 3 }"
|
1202
|
+
:items="listOfTagsData"
|
1203
|
+
orientation="horizontal"
|
1204
|
+
listType="tags"
|
1205
|
+
highlightLevel="tertiary"
|
1206
|
+
/>
|
1207
|
+
</div>
|
1134
1208
|
</CmdWidthLimitationWrapper>
|
1135
1209
|
<!-- end list --------------------------------------------------------------------------------------------------->
|
1136
1210
|
|
@@ -1342,6 +1416,31 @@
|
|
1342
1416
|
</CmdWidthLimitationWrapper>
|
1343
1417
|
<!-- end slideshow --------------------------------------------------------------------------------------------------->
|
1344
1418
|
|
1419
|
+
|
1420
|
+
<!-- begin smart-search --------------------------------------------------------------------------------------------------->
|
1421
|
+
<CmdWidthLimitationWrapper>
|
1422
|
+
<h2 class="headline-demopage" id="section-smart-search">
|
1423
|
+
<span>Smart Search</span>
|
1424
|
+
<a href="#" class="button small icon-cog" title="Open Component Settings"
|
1425
|
+
@click.prevent="openSettingsSidebar('CmdSmartSearch')"></a>
|
1426
|
+
</h2>
|
1427
|
+
smartSearchString: {{ smartSearchString }}
|
1428
|
+
<CmdSmartSearch
|
1429
|
+
ref="CmdSmartSearch"
|
1430
|
+
v-bind="smartSearchSettingsData"
|
1431
|
+
:listOfRecommendations="smartSearchData.listOfRecommendations"
|
1432
|
+
v-model="smartSearchString"
|
1433
|
+
/>
|
1434
|
+
smartSearchObject: {{ smartSearchObject }}
|
1435
|
+
<CmdSmartSearch
|
1436
|
+
ref="CmdSmartSearch"
|
1437
|
+
v-bind="smartSearchSettingsData"
|
1438
|
+
:listOfRecommendations="smartSearchData.listOfRecommendations"
|
1439
|
+
v-model="smartSearchObject"
|
1440
|
+
/>
|
1441
|
+
</CmdWidthLimitationWrapper>
|
1442
|
+
<!-- end smart-search --------------------------------------------------------------------------------------------------->
|
1443
|
+
|
1345
1444
|
<!-- begin social-networks --------------------------------------------------------------------------------------------------->
|
1346
1445
|
<CmdWidthLimitationWrapper>
|
1347
1446
|
<h2 class="headline-demopage" id="section-social-networks">
|
@@ -1372,11 +1471,6 @@
|
|
1372
1471
|
</h2>
|
1373
1472
|
<CmdSystemMessage ref="CmdSystemMessage" v-bind="cmdSystemMessageSettingsData"
|
1374
1473
|
:iconMessage="{ iconClass: 'icon-error-circle', show: true }">
|
1375
|
-
<ul>
|
1376
|
-
<li>Error #1</li>
|
1377
|
-
<li>Error #2</li>
|
1378
|
-
<li>Error #3</li>
|
1379
|
-
</ul>
|
1380
1474
|
</CmdSystemMessage>
|
1381
1475
|
</CmdWidthLimitationWrapper>
|
1382
1476
|
<!-- end system-message --------------------------------------------------------------------------------------------------->
|
@@ -1537,7 +1631,7 @@
|
|
1537
1631
|
<a href="#" class="button small icon-cog" title="Open Component Settings"
|
1538
1632
|
@click.prevent="openSettingsSidebar('CmdWidthLimitationWrapper')"></a>
|
1539
1633
|
</h2>
|
1540
|
-
<CmdWidthLimitationWrapper style="border: 1px
|
1634
|
+
<CmdWidthLimitationWrapper style="border: 1px dashed var(--color-gray-30)" ref="CmdWidthLimitationWrapper"
|
1541
1635
|
v-bind="cmdWidthLimitationWrapperSettingsData">
|
1542
1636
|
<p>Slot-content</p>
|
1543
1637
|
<p>Slot-content</p>
|
@@ -1664,7 +1758,7 @@ export default {
|
|
1664
1758
|
},
|
1665
1759
|
data() {
|
1666
1760
|
return {
|
1667
|
-
smartSearchObject: {},
|
1761
|
+
smartSearchObject: {id: 3, displayValue: "smartSearchDisplayValue"},
|
1668
1762
|
smartSearchString: "",
|
1669
1763
|
selectedLanguage: "none",
|
1670
1764
|
fancyBoxCookieDisclaimer: false,
|
@@ -2,8 +2,9 @@
|
|
2
2
|
{
|
3
3
|
"name": "Product name 1",
|
4
4
|
"image": {
|
5
|
-
"src": "media/images/demo-images/medium/landscape-01.jpg",
|
6
|
-
"alt": "Alternative text"
|
5
|
+
"src": "/media/images/demo-images/medium/landscape-01.jpg",
|
6
|
+
"alt": "Alternative text",
|
7
|
+
"figcaption": "Product name 1"
|
7
8
|
},
|
8
9
|
"articleNumber": "AB12345",
|
9
10
|
"price": 123.45,
|
@@ -14,8 +15,9 @@
|
|
14
15
|
{
|
15
16
|
"name": "Product name 2",
|
16
17
|
"image": {
|
17
|
-
"src": "media/images/demo-images/medium/landscape-02.jpg",
|
18
|
-
"alt": "Alternative text"
|
18
|
+
"src": "/media/images/demo-images/medium/landscape-02.jpg",
|
19
|
+
"alt": "Alternative text",
|
20
|
+
"figcaption": "Product name 2"
|
19
21
|
},
|
20
22
|
"articleNumber": "AB12346",
|
21
23
|
"price": 123.46,
|
@@ -26,8 +28,9 @@
|
|
26
28
|
{
|
27
29
|
"name": "Product name 3",
|
28
30
|
"image": {
|
29
|
-
"src": "media/images/demo-images/medium/landscape-03.jpg",
|
30
|
-
"alt": "Alternative text"
|
31
|
+
"src": "/media/images/demo-images/medium/landscape-03.jpg",
|
32
|
+
"alt": "Alternative text",
|
33
|
+
"figcaption": "Product name 3"
|
31
34
|
},
|
32
35
|
"articleNumber": "AB12347",
|
33
36
|
"price": 123.47,
|
@@ -38,8 +41,9 @@
|
|
38
41
|
{
|
39
42
|
"name": "Product name 4",
|
40
43
|
"image": {
|
41
|
-
"src": "media/images/demo-images/medium/landscape-04.jpg",
|
42
|
-
"alt": "Alternative text"
|
44
|
+
"src": "/media/images/demo-images/medium/landscape-04.jpg",
|
45
|
+
"alt": "Alternative text",
|
46
|
+
"figcaption": "Product name 4"
|
43
47
|
},
|
44
48
|
"articleNumber": "AB12348",
|
45
49
|
"price": 123.48,
|
@@ -50,8 +54,9 @@
|
|
50
54
|
{
|
51
55
|
"name": "Product name 5",
|
52
56
|
"image": {
|
53
|
-
"src": "media/images/demo-images/medium/landscape-05.jpg",
|
54
|
-
"alt": "Alternative text"
|
57
|
+
"src": "/media/images/demo-images/medium/landscape-05.jpg",
|
58
|
+
"alt": "Alternative text",
|
59
|
+
"figcaption": "Product name 5"
|
55
60
|
},
|
56
61
|
"articleNumber": "AB12349",
|
57
62
|
"price": 123.49,
|
@@ -5,7 +5,7 @@
|
|
5
5
|
"gender": "m",
|
6
6
|
"image": {
|
7
7
|
"src": "/media/images/user-images/fake-user-1.jpg",
|
8
|
-
"
|
8
|
+
"alt": "Alt text"
|
9
9
|
},
|
10
10
|
"profession": "User profession",
|
11
11
|
"position": "User position",
|
@@ -41,7 +41,7 @@
|
|
41
41
|
}
|
42
42
|
},
|
43
43
|
{
|
44
|
-
"path": "https://www.comand-
|
44
|
+
"path": "https://www.comand-ui.com",
|
45
45
|
"target": "comand",
|
46
46
|
"icon": {
|
47
47
|
"iconClass": "icon-globe",
|
@@ -56,7 +56,7 @@
|
|
56
56
|
"gender": "m",
|
57
57
|
"image": {
|
58
58
|
"src": "/media/images/user-images/fake-user-3.jpg",
|
59
|
-
"
|
59
|
+
"alt": "Alt text"
|
60
60
|
},
|
61
61
|
"profession": "User profession",
|
62
62
|
"position": "User position",
|
@@ -70,7 +70,7 @@
|
|
70
70
|
}
|
71
71
|
},
|
72
72
|
{
|
73
|
-
"path": "https://www.comand-
|
73
|
+
"path": "https://www.comand-ui.com",
|
74
74
|
"target": "comand",
|
75
75
|
"icon": {
|
76
76
|
"iconClass": "icon-globe",
|
@@ -92,7 +92,7 @@
|
|
92
92
|
"gender": "m",
|
93
93
|
"image": {
|
94
94
|
"src": "/media/images/user-images/fake-user-4.jpg",
|
95
|
-
"
|
95
|
+
"alt": "Alt text"
|
96
96
|
},
|
97
97
|
"profession": "User profession",
|
98
98
|
"position": "User position",
|
@@ -106,7 +106,7 @@
|
|
106
106
|
}
|
107
107
|
},
|
108
108
|
{
|
109
|
-
"path": "https://www.comand-
|
109
|
+
"path": "https://www.comand-ui.com",
|
110
110
|
"target": "comand",
|
111
111
|
"icon": {
|
112
112
|
"iconClass": "icon-globe",
|
@@ -128,7 +128,7 @@
|
|
128
128
|
"gender": "m",
|
129
129
|
"image": {
|
130
130
|
"src": "/media/images/user-images/fake-user-5.jpg",
|
131
|
-
"
|
131
|
+
"alt": "Alt text"
|
132
132
|
},
|
133
133
|
"profession": "User profession",
|
134
134
|
"position": "User position",
|
@@ -142,7 +142,7 @@
|
|
142
142
|
}
|
143
143
|
},
|
144
144
|
{
|
145
|
-
"path": "https://www.comand-
|
145
|
+
"path": "https://www.comand-ui.com",
|
146
146
|
"target": "comand",
|
147
147
|
"icon": {
|
148
148
|
"iconClass": "icon-globe",
|
@@ -49,7 +49,7 @@
|
|
49
49
|
"tooltip": "Send mail"
|
50
50
|
},
|
51
51
|
{
|
52
|
-
"path": "https://www.comand-
|
52
|
+
"path": "https://www.comand-ui.com",
|
53
53
|
"target": "comand",
|
54
54
|
"iconClass": "icon-globe",
|
55
55
|
"tooltip": "Visit website"
|
@@ -74,7 +74,7 @@
|
|
74
74
|
"tooltip": "Send mail"
|
75
75
|
},
|
76
76
|
{
|
77
|
-
"path": "https://www.comand-
|
77
|
+
"path": "https://www.comand-ui.com",
|
78
78
|
"target": "comand",
|
79
79
|
"iconClass": "icon-globe",
|
80
80
|
"tooltip": "Visit website"
|
@@ -104,7 +104,7 @@
|
|
104
104
|
"tooltip": "Send mail"
|
105
105
|
},
|
106
106
|
{
|
107
|
-
"path": "https://www.comand-
|
107
|
+
"path": "https://www.comand-ui.com",
|
108
108
|
"target": "comand",
|
109
109
|
"iconClass": "icon-globe",
|
110
110
|
"tooltip": "Visit website"
|
@@ -134,7 +134,7 @@
|
|
134
134
|
"tooltip": "Send mail"
|
135
135
|
},
|
136
136
|
{
|
137
|
-
"path": "https://www.comand-
|
137
|
+
"path": "https://www.comand-ui.com",
|
138
138
|
"target": "comand",
|
139
139
|
"iconClass": "icon-globe",
|
140
140
|
"tooltip": "Visit website"
|
@@ -199,7 +199,7 @@
|
|
199
199
|
"tooltip": "Send mail"
|
200
200
|
},
|
201
201
|
{
|
202
|
-
"path": "https://www.comand-
|
202
|
+
"path": "https://www.comand-ui.com",
|
203
203
|
"target": "comand",
|
204
204
|
"iconClass": "icon-globe",
|
205
205
|
"tooltip": "Visit website"
|
@@ -224,7 +224,7 @@
|
|
224
224
|
"tooltip": "Send mail"
|
225
225
|
},
|
226
226
|
{
|
227
|
-
"path": "https://www.comand-
|
227
|
+
"path": "https://www.comand-ui.com",
|
228
228
|
"target": "comand",
|
229
229
|
"iconClass": "icon-globe",
|
230
230
|
"tooltip": "Visit website"
|
@@ -254,7 +254,7 @@
|
|
254
254
|
"tooltip": "Send mail"
|
255
255
|
},
|
256
256
|
{
|
257
|
-
"path": "https://www.comand-
|
257
|
+
"path": "https://www.comand-ui.com",
|
258
258
|
"target": "comand",
|
259
259
|
"iconClass": "icon-globe",
|
260
260
|
"tooltip": "Visit website"
|
@@ -284,7 +284,7 @@
|
|
284
284
|
"tooltip": "Send mail"
|
285
285
|
},
|
286
286
|
{
|
287
|
-
"path": "https://www.comand-
|
287
|
+
"path": "https://www.comand-ui.com",
|
288
288
|
"target": "comand",
|
289
289
|
"iconClass": "icon-globe",
|
290
290
|
"tooltip": "Visit website"
|
@@ -104,24 +104,22 @@ data() {
|
|
104
104
|
headlineText: "Container Headline",
|
105
105
|
headlineLevel: 3
|
106
106
|
},
|
107
|
-
|
108
|
-
contentBelowSlot: "<p>Content below slot</p>",
|
109
|
-
containerType: "flex"
|
107
|
+
containerType: "default"
|
110
108
|
},
|
111
109
|
cmdContainerSettingsControls: {
|
112
110
|
containerType: [
|
113
111
|
{
|
114
|
-
text: "
|
112
|
+
text: "default (default)",
|
113
|
+
text: "default",
|
114
|
+
},
|
115
|
+
{
|
116
|
+
text: "flex",
|
115
117
|
value: "flex"
|
116
118
|
},
|
117
119
|
{
|
118
120
|
text: "grid",
|
119
121
|
value: "grid"
|
120
|
-
}
|
121
|
-
{
|
122
|
-
text: "none",
|
123
|
-
value: ""
|
124
|
-
},
|
122
|
+
}
|
125
123
|
],
|
126
124
|
contentOrientation: [
|
127
125
|
{
|
@@ -334,6 +332,24 @@ data() {
|
|
334
332
|
text: "Right",
|
335
333
|
value: "right"
|
336
334
|
}
|
335
|
+
],
|
336
|
+
highlightLevel: [
|
337
|
+
{
|
338
|
+
text: "none (default)",
|
339
|
+
value: "none"
|
340
|
+
},
|
341
|
+
{
|
342
|
+
text: "primary",
|
343
|
+
value: "primary"
|
344
|
+
},
|
345
|
+
{
|
346
|
+
text: "secondary",
|
347
|
+
value: "secondary"
|
348
|
+
},
|
349
|
+
{
|
350
|
+
text: "tertiary",
|
351
|
+
value: "tertiary"
|
352
|
+
}
|
337
353
|
]
|
338
354
|
},
|
339
355
|
cmdInputGroupSettingsData: {
|
@@ -401,6 +417,24 @@ data() {
|
|
401
417
|
text: "button",
|
402
418
|
value: "button"
|
403
419
|
}
|
420
|
+
],
|
421
|
+
highlightLevel: [
|
422
|
+
{
|
423
|
+
text: "none",
|
424
|
+
value: "none"
|
425
|
+
},
|
426
|
+
{
|
427
|
+
text: "primary (default)",
|
428
|
+
value: "primary"
|
429
|
+
},
|
430
|
+
{
|
431
|
+
text: "secondary",
|
432
|
+
value: "secondary"
|
433
|
+
},
|
434
|
+
{
|
435
|
+
text: "tertiary",
|
436
|
+
value: "tertiary"
|
437
|
+
}
|
404
438
|
]
|
405
439
|
},
|
406
440
|
cmdListSettingsData: {
|
@@ -508,6 +542,24 @@ data() {
|
|
508
542
|
text: "icon-chevron-two-stripes-right",
|
509
543
|
value: "icon-chevron-two-stripes-right"
|
510
544
|
}
|
545
|
+
],
|
546
|
+
highlightLevel: [
|
547
|
+
{
|
548
|
+
text: "none",
|
549
|
+
value: "none"
|
550
|
+
},
|
551
|
+
{
|
552
|
+
text: "primary (default)",
|
553
|
+
value: "primary"
|
554
|
+
},
|
555
|
+
{
|
556
|
+
text: "secondary",
|
557
|
+
value: "secondary"
|
558
|
+
},
|
559
|
+
{
|
560
|
+
text: "tertiary",
|
561
|
+
value: "tertiary"
|
562
|
+
}
|
511
563
|
]
|
512
564
|
},
|
513
565
|
cmdNewsletterSubscriptionSettingsData: {
|
@@ -669,7 +721,7 @@ data() {
|
|
669
721
|
cmdSystemMessageSettingsData: {
|
670
722
|
validationStatus: "error",
|
671
723
|
fullWidth: true,
|
672
|
-
systemMessage: "This is an
|
724
|
+
systemMessage: "This is an system message!",
|
673
725
|
messageHeadlineLevel: 4
|
674
726
|
},
|
675
727
|
cmdSystemMessageSettingsControls: {
|
@@ -703,6 +755,26 @@ data() {
|
|
703
755
|
useSlot: false,
|
704
756
|
activeTab: 0
|
705
757
|
},
|
758
|
+
cmdTabsSettingsControls: {
|
759
|
+
highlightLevel: [
|
760
|
+
{
|
761
|
+
text: "none",
|
762
|
+
value: "none"
|
763
|
+
},
|
764
|
+
{
|
765
|
+
text: "primary (default)",
|
766
|
+
value: "primary"
|
767
|
+
},
|
768
|
+
{
|
769
|
+
text: "secondary",
|
770
|
+
value: "secondary"
|
771
|
+
},
|
772
|
+
{
|
773
|
+
text: "tertiary",
|
774
|
+
value: "tertiary"
|
775
|
+
}
|
776
|
+
]
|
777
|
+
},
|
706
778
|
cmdTextImageBlockSettingsData: {
|
707
779
|
htmlContent: "Text given as html-content",
|
708
780
|
paragraphTextAlign: "left",
|
@@ -1,4 +1,5 @@
|
|
1
1
|
<template>
|
2
|
+
<!-- begin CmdAddressData ---------------------------------------------------------------------------------------- -->
|
2
3
|
<div class="cmd-address-data vcard">
|
3
4
|
<!-- begin slot -->
|
4
5
|
<template v-if="useSlot">
|
@@ -169,6 +170,7 @@
|
|
169
170
|
<!-- end address-data in vCard microformat -->
|
170
171
|
</template>
|
171
172
|
</div>
|
173
|
+
<!-- end CmdAddressData ---------------------------------------------------------------------------------------- -->
|
172
174
|
</template>
|
173
175
|
|
174
176
|
<script>
|
@@ -1,4 +1,5 @@
|
|
1
1
|
<template>
|
2
|
+
<!-- begin CmdAddressDataItem ---------------------------------------------------------------------------------------- -->
|
2
3
|
<dt :class="['cmd-address-data-item', {'address': addressEntry.name === 'address'}]" :id="addressEntry.id">
|
3
4
|
<!-- begin CmdIcon -->
|
4
5
|
<CmdIcon
|
@@ -165,7 +166,7 @@
|
|
165
166
|
<!-- end unlinked address -->
|
166
167
|
</dd>
|
167
168
|
<!-- end data for address -->
|
168
|
-
|
169
|
+
<!-- end CmdAddressDataItem ---------------------------------------------------------------------------------------- -->
|
169
170
|
</template>
|
170
171
|
<!-- end data (except for address) -->
|
171
172
|
<script>
|