cax-design-system 2.7.6 → 2.7.7
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/README.md +1 -1
- package/calendar/calendar.d.ts +2 -1
- package/esm2022/calendar/calendar.mjs +6 -3
- package/esm2022/dropdown/dropdown.mjs +3 -3
- package/esm2022/table/components/column-filter/column-filter.mjs +2 -2
- package/esm2022/table/components/column-filter-form-element/column-filter-form-element.mjs +2 -2
- package/fesm2022/cax-design-system-calendar.mjs +5 -2
- package/fesm2022/cax-design-system-calendar.mjs.map +1 -1
- package/fesm2022/cax-design-system-dropdown.mjs +2 -2
- package/fesm2022/cax-design-system-dropdown.mjs.map +1 -1
- package/fesm2022/cax-design-system-table.mjs +2 -2
- package/fesm2022/cax-design-system-table.mjs.map +1 -1
- package/package.json +304 -304
- package/resources/cax.min.scss +1 -1
- package/resources/cax.scss +2 -1
- package/resources/components/calendar/calendar.scss +9 -2
- package/resources/components/dropdown/dropdown.scss +1 -1
package/resources/cax.scss
CHANGED
|
@@ -5641,6 +5641,7 @@ cax-calendar.cax-calendar-clearable .cax-calendar-w-btn .cax-calendar-clear-icon
|
|
|
5641
5641
|
cursor: default;
|
|
5642
5642
|
transition: all 0.2s ease;
|
|
5643
5643
|
line-height: 1;
|
|
5644
|
+
white-space: nowrap;
|
|
5644
5645
|
}
|
|
5645
5646
|
|
|
5646
5647
|
.cax-chip .cax-chip-icon,
|
|
@@ -12181,7 +12182,7 @@ div.cax-cascadeselect-panel {
|
|
|
12181
12182
|
outline-color 0.2s;
|
|
12182
12183
|
border-radius: var(--space-100);
|
|
12183
12184
|
height: 40px;
|
|
12184
|
-
width:
|
|
12185
|
+
width: 100%;
|
|
12185
12186
|
}
|
|
12186
12187
|
.cax-multiselect:not(.cax-disabled):hover {
|
|
12187
12188
|
border-color: var(--neutral-400);
|
|
@@ -2,15 +2,22 @@
|
|
|
2
2
|
.cax-calendar {
|
|
3
3
|
position: relative;
|
|
4
4
|
display: inline-flex;
|
|
5
|
-
|
|
5
|
+
width: 100%;
|
|
6
|
+
height: 40px;
|
|
6
7
|
}
|
|
8
|
+
.cax-calendar-main-label {
|
|
9
|
+
font-weight: 500;
|
|
10
|
+
font-size: 14px;
|
|
11
|
+
line-height: 20px;
|
|
12
|
+
margin-bottom: 8px;
|
|
13
|
+
}
|
|
7
14
|
|
|
8
15
|
.cax-calendar .cax-inputtext {
|
|
9
16
|
flex: 1 1 auto;
|
|
10
17
|
width: 1%;
|
|
11
18
|
text-overflow: ellipsis;
|
|
12
19
|
padding-left: 1.8rem !important;
|
|
13
|
-
|
|
20
|
+
padding-right: 1.8rem !important;
|
|
14
21
|
}
|
|
15
22
|
|
|
16
23
|
.cax-calendar-w-btn .cax-inputtext {
|