comand-component-library 3.2.2 → 3.2.4
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 +1 -1
- package/src/App.vue +3 -3
- package/src/assets/data/main-navigation.json +17 -0
- package/src/assets/styles/global-styles.scss +1 -1
- package/src/components/CmdBox.vue +3 -1
- package/src/components/CmdFancyBox.vue +425 -426
- package/src/components/CmdMainNavigation.vue +53 -15
package/package.json
CHANGED
package/src/App.vue
CHANGED
@@ -373,8 +373,8 @@
|
|
373
373
|
id="range-value"
|
374
374
|
/>
|
375
375
|
</label>
|
376
|
-
<label for="range-slider"
|
377
|
-
<span class="label-text">
|
376
|
+
<label for="range-slider">
|
377
|
+
<span class="label-text hidden">
|
378
378
|
<span>Range Value</span>
|
379
379
|
</span>
|
380
380
|
<input
|
@@ -1306,7 +1306,7 @@
|
|
1306
1306
|
<template #privacy-text>
|
1307
1307
|
<p>
|
1308
1308
|
<strong>
|
1309
|
-
By browsing this web site
|
1309
|
+
By browsing this web site you accept the usage and saving of anonymous data!
|
1310
1310
|
</strong>
|
1311
1311
|
</p>
|
1312
1312
|
</template>
|
@@ -41,6 +41,23 @@
|
|
41
41
|
}
|
42
42
|
]
|
43
43
|
},
|
44
|
+
{
|
45
|
+
"type": "href",
|
46
|
+
"text": "Entry 3",
|
47
|
+
"path": "#",
|
48
|
+
"subentries": [
|
49
|
+
{
|
50
|
+
"type": "href",
|
51
|
+
"text": "Entry 3.1",
|
52
|
+
"path": ""
|
53
|
+
},
|
54
|
+
{
|
55
|
+
"type": "href",
|
56
|
+
"text": "Entry 3.2",
|
57
|
+
"path": ""
|
58
|
+
}
|
59
|
+
]
|
60
|
+
},
|
44
61
|
{
|
45
62
|
"type": "href",
|
46
63
|
"text": "CoManD-CMS",
|
@@ -45,6 +45,7 @@
|
|
45
45
|
display: flex;
|
46
46
|
flex-direction: column;
|
47
47
|
min-height: 100vh;
|
48
|
+
height: 100vh;
|
48
49
|
|
49
50
|
.cmd-site-footer {
|
50
51
|
margin-top: auto;
|
@@ -64,7 +65,6 @@ body, .cmd-site-header, .cmd-site-footer, .cmd-copyright-information {
|
|
64
65
|
/* begin .avoid-scrolling --------------------------------------------------------------------------------------------------------------------------------------------------- */
|
65
66
|
body.avoid-scrolling {
|
66
67
|
overflow: hidden;
|
67
|
-
height: 100vh;
|
68
68
|
}
|
69
69
|
/* end .avoid-scrolling --------------------------------------------------------------------------------------------------------------------------------------------------- */
|
70
70
|
|
@@ -74,12 +74,14 @@
|
|
74
74
|
</figure>
|
75
75
|
<p v-else>{{ product.name }}</p>
|
76
76
|
|
77
|
-
|
77
|
+
<!-- begin ribbons -->
|
78
|
+
<div v-if="product.new" class="ribbon-new">
|
78
79
|
<span>{{ getMessage("cmdbox.productbox.new") }}</span>
|
79
80
|
</div>
|
80
81
|
<div v-if="product.discount" class="ribbon-discount">
|
81
82
|
<span>{{ product.discount }}</span>
|
82
83
|
</div>
|
84
|
+
<!-- end ribbons -->
|
83
85
|
</div>
|
84
86
|
<div class="box-body">
|
85
87
|
<p v-if="product.articleNumber">{{ getMessage("cmdbox.productbox.article_no") }} {{ product.articleNumber }}</p>
|