@ctrliq/quantic-components 1.84.0 → 1.85.0
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/action-group/action-group.component.js +2 -1
- package/dist/badge/badge-group.component.js +2 -1
- package/dist/capacity-bar/index.js +30 -30
- package/dist/card/card-carousel.component.js +35 -35
- package/dist/card/card-group.component.js +2 -8
- package/dist/card/card.component.js +38 -38
- package/dist/code-input/index.js +33 -33
- package/dist/combobox/index.js +30 -30
- package/dist/dialog/dialog.js +18 -18
- package/dist/dropdown-menu/item.component.js +24 -24
- package/dist/field/field-group.component.js +13 -13
- package/dist/field/field.component.js +31 -31
- package/dist/fieldset/fieldset.component.js +27 -27
- package/dist/grid/grid.component.js +31 -31
- package/dist/index.js.map +1 -1
- package/dist/layout/layout.component.js +1 -0
- package/dist/layout/navbar-menu-item.component.js +1 -0
- package/dist/layout/sidebar-menu-item.component.js +1 -0
- package/dist/log-output/log-output.component.js +1 -1
- package/dist/meta/index.js.map +1 -1
- package/dist/meta/public-css-variables.test.d.ts +1 -0
- package/dist/meta/public-css-variables.test.js +244 -0
- package/dist/meta/sibling-groups.test.d.ts +1 -0
- package/dist/meta/sibling-groups.test.js +42 -0
- package/dist/meta.json +4 -4
- package/dist/number-input/index.js +18 -17
- package/dist/option-card/option-card.component.js +27 -27
- package/dist/panel/panel-group.component.js +10 -7
- package/dist/panel/panel.component.js +3 -3
- package/dist/progress/index.js +15 -15
- package/dist/quantic-components.js +449 -442
- package/dist/quantic-components.js.map +1 -1
- package/dist/quantic-components.min.js +449 -445
- package/dist/quantic-components.min.js.map +1 -1
- package/dist/register.js.map +1 -1
- package/dist/select/index.js +8 -8
- package/dist/spinner/index.js +7 -3
- package/dist/table/table-cell.component.js +2 -2
- package/dist/table/table-head.component.js +1 -1
- package/dist/table/table.component.js +16 -16
- package/dist/tag/tag-group.component.js +2 -1
- package/dist/text-input/index.js +10 -10
- package/dist/textarea/index.js +10 -10
- package/dist/tooltip/tooltip.js +0 -1
- package/dist/types/meta/public-css-variables.test.d.ts +1 -0
- package/dist/types/meta/sibling-groups.test.d.ts +1 -0
- package/package.json +2 -1
|
@@ -411,6 +411,7 @@ Layout.styles = css `
|
|
|
411
411
|
);
|
|
412
412
|
padding-inline: var(--quantic-component-layout-aside-padding-inline);
|
|
413
413
|
padding-block: var(--quantic-component-layout-aside-padding-block);
|
|
414
|
+
background-color: var(--quantic-component-layout-aside-bg);
|
|
414
415
|
border-right: 1px solid var(--quantic-component-layout-aside-border);
|
|
415
416
|
overflow: visible;
|
|
416
417
|
display: none;
|
|
@@ -65,6 +65,7 @@ NavbarMenuItem.styles = css `
|
|
|
65
65
|
font-size: var(--quantic-font-size-body-lg);
|
|
66
66
|
color: var(--quantic-component-navbar-menu-item-color);
|
|
67
67
|
background: none;
|
|
68
|
+
background-color: var(--quantic-component-navbar-menu-item-bg);
|
|
68
69
|
border: none;
|
|
69
70
|
cursor: pointer;
|
|
70
71
|
border-radius: var(--quantic-radius-md);
|
|
@@ -100,6 +100,7 @@ SidebarMenuItem.styles = css `
|
|
|
100
100
|
font-weight: var(--quantic-font-weight-medium);
|
|
101
101
|
color: var(--quantic-component-sidebar-menu-item-color);
|
|
102
102
|
background: none;
|
|
103
|
+
background-color: var(--quantic-component-sidebar-menu-item-bg);
|
|
103
104
|
border: none;
|
|
104
105
|
text-align: left;
|
|
105
106
|
cursor: pointer;
|
|
@@ -142,7 +142,7 @@ LogOutput.styles = css `
|
|
|
142
142
|
display: flex;
|
|
143
143
|
height: 100%;
|
|
144
144
|
flex-direction: column;
|
|
145
|
-
color: var(--quantic-component-log-output-fg);
|
|
145
|
+
color: var(--quantic-component-log-output-fg, inherit);
|
|
146
146
|
font-family: var(
|
|
147
147
|
--quantic-component-log-output-font-family,
|
|
148
148
|
var(--quantic-font-family-mono)
|