comand-component-library 4.0.11 → 4.0.13
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 +1556 -1520
- package/dist/comand-component-library.umd.cjs +3 -3
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/ComponentLibrary.vue +32 -3
- package/src/assets/data/breadcrumbs.json +20 -25
- package/src/assets/data/pages/boxes-team-overview.json +1 -1
- package/src/componentSettingsDataAndControls.vue +1 -1
- package/src/components/CmdBreadcrumbs.vue +1 -8
- package/src/components/CmdPageFooter.vue +46 -17
- package/src/components/CmdPageHeader.vue +55 -0
- package/src/components/CmdPagination.vue +1 -1
- package/src/components/CmdSocialNetworks.vue +10 -3
- package/src/index.js +1 -0
@@ -381,6 +381,7 @@ export default {
|
|
381
381
|
}
|
382
382
|
|
383
383
|
&:hover, &:active, &:focus {
|
384
|
+
background: var(--pure-white);
|
384
385
|
color: var(--pure-white);
|
385
386
|
|
386
387
|
> span {
|
@@ -410,10 +411,8 @@ export default {
|
|
410
411
|
<style lang="scss">
|
411
412
|
@import "../assets/styles/variables";
|
412
413
|
|
413
|
-
@
|
414
|
+
@mixin button-wrapper {
|
414
415
|
.cmd-social-networks {
|
415
|
-
container-type: normal; /* do not set to 'inline-size' to avoid to be stretched vertically on small devices */
|
416
|
-
|
417
416
|
.button-wrapper {
|
418
417
|
.button {
|
419
418
|
flex: none;
|
@@ -429,5 +428,13 @@ export default {
|
|
429
428
|
}
|
430
429
|
}
|
431
430
|
|
431
|
+
@media only screen and (max-width: $small-max-width) {
|
432
|
+
@include button-wrapper
|
433
|
+
}
|
434
|
+
|
435
|
+
@container (max-width: #{$small-max-width}) {
|
436
|
+
@include button-wrapper
|
437
|
+
}
|
438
|
+
|
432
439
|
/* end cmd-social-networks ------------------------------------------------------------------------------------------ */
|
433
440
|
</style>
|
package/src/index.js
CHANGED
@@ -29,6 +29,7 @@ export { default as CmdNewsletterSubscription } from '@/components/CmdNewsletter
|
|
29
29
|
export { default as CmdOpeningHours } from '@/components/CmdOpeningHours.vue'
|
30
30
|
export { default as CmdPagination } from '@/components/CmdPagination.vue'
|
31
31
|
export { default as CmdPageFooter } from '@/components/CmdPageFooter.vue'
|
32
|
+
export { default as CmdPageHeader } from '@/components/CmdPageHeader.vue'
|
32
33
|
export { default as CmdProgressBar } from '@/components/CmdProgressBar.vue'
|
33
34
|
export { default as CmdSidebar } from '@/components/CmdSidebar.vue'
|
34
35
|
export { default as CmdSiteFooter } from '@/components/CmdSiteFooter.vue'
|