do-ui-design-system 1.1.20 → 1.1.21
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/do-theme/table.css
CHANGED
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
font-size: 0.8rem;
|
|
32
32
|
|
|
33
33
|
h5 {
|
|
34
|
-
max-width:
|
|
34
|
+
max-width: 12rem;
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
display: grid;
|
|
99
99
|
grid-template-columns: 1fr min-content;
|
|
100
100
|
align-items: center;
|
|
101
|
-
padding: 0.
|
|
101
|
+
padding: 0.5rem 1rem;
|
|
102
102
|
text-align: left;
|
|
103
103
|
font-size: 1rem;
|
|
104
104
|
font-weight: 500;
|
|
@@ -145,12 +145,12 @@
|
|
|
145
145
|
}
|
|
146
146
|
} else if (dateConfig.columnFrom) {
|
|
147
147
|
const from = normalize(String(row[dateConfig.columnFrom]));
|
|
148
|
-
if (dateFrom && from
|
|
149
|
-
if (dateTo && from
|
|
148
|
+
if (dateFrom && from > dateFrom) return false;
|
|
149
|
+
if (dateTo && from < dateTo) return false;
|
|
150
150
|
} else if (dateConfig.columnTo) {
|
|
151
151
|
const to = normalize(String(row[dateConfig.columnTo]));
|
|
152
|
-
if (dateFrom && to
|
|
153
|
-
if (dateTo && to
|
|
152
|
+
if (dateFrom && to > dateFrom) return false;
|
|
153
|
+
if (dateTo && to < dateTo) return false;
|
|
154
154
|
}
|
|
155
155
|
|
|
156
156
|
return true;
|