ngx-st-tables 18.0.17 → 18.0.18
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/assets/base-table.scss +6 -8
- package/esm2022/lib/components/material-table/material-table.component.mjs +3 -3
- package/esm2022/lib/components/select-table/select-table.component.mjs +2 -2
- package/fesm2022/ngx-st-tables.mjs +4 -4
- package/fesm2022/ngx-st-tables.mjs.map +1 -1
- package/package.json +1 -1
package/assets/base-table.scss
CHANGED
|
@@ -111,6 +111,12 @@
|
|
|
111
111
|
|
|
112
112
|
td {
|
|
113
113
|
border-bottom-width: 0;
|
|
114
|
+
|
|
115
|
+
& > div {
|
|
116
|
+
max-height: 300px;
|
|
117
|
+
overflow: hidden;
|
|
118
|
+
overflow-y: auto;
|
|
119
|
+
}
|
|
114
120
|
}
|
|
115
121
|
}
|
|
116
122
|
|
|
@@ -130,14 +136,6 @@
|
|
|
130
136
|
}
|
|
131
137
|
}
|
|
132
138
|
|
|
133
|
-
td {
|
|
134
|
-
& > div {
|
|
135
|
-
max-height: 300px;
|
|
136
|
-
overflow: hidden;
|
|
137
|
-
overflow-y: auto;
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
|
|
141
139
|
&:last-child td {
|
|
142
140
|
border-bottom-color: var(
|
|
143
141
|
--mat-table-row-item-outline-color,
|