@swiftwc/ui 0.0.0-dev.51 → 0.0.0-dev.52
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/generated/css/index.css
CHANGED
|
@@ -4281,12 +4281,21 @@
|
|
|
4281
4281
|
:where(table-view:not(table-view table-view, list-view table-view, [is=form-view] table-view)) {
|
|
4282
4282
|
--table--expanded-columns: 1;
|
|
4283
4283
|
}
|
|
4284
|
-
:where(table-view:not(table-view table-view, list-view table-view, [is=form-view] table-view):has(> [slot=column]:nth-
|
|
4284
|
+
:where(table-view:not(table-view table-view, list-view table-view, [is=form-view] table-view)):has(> [slot=column]:nth-child(2 of [slot=column])) {
|
|
4285
4285
|
--table--expanded-columns: 2;
|
|
4286
4286
|
}
|
|
4287
|
-
:where(table-view:not(table-view table-view, list-view table-view, [is=form-view] table-view):has(> [slot=column]:nth-
|
|
4287
|
+
:where(table-view:not(table-view table-view, list-view table-view, [is=form-view] table-view)):has(> [slot=column]:nth-child(3 of [slot=column])) {
|
|
4288
4288
|
--table--expanded-columns: 3;
|
|
4289
4289
|
}
|
|
4290
|
+
:where(table-view:not(table-view table-view, list-view table-view, [is=form-view] table-view)):has(> [slot=column]:nth-child(4 of [slot=column])) {
|
|
4291
|
+
--table--expanded-columns: 4;
|
|
4292
|
+
}
|
|
4293
|
+
:where(table-view:not(table-view table-view, list-view table-view, [is=form-view] table-view)):has(> [slot=column]:nth-child(5 of [slot=column])) {
|
|
4294
|
+
--table--expanded-columns: 5;
|
|
4295
|
+
}
|
|
4296
|
+
:where(table-view:not(table-view table-view, list-view table-view, [is=form-view] table-view)):has(> [slot=column]:nth-child(6 of [slot=column])) {
|
|
4297
|
+
--table--expanded-columns: 6;
|
|
4298
|
+
}
|
|
4290
4299
|
:where(table-view:not(table-view table-view, list-view table-view, [is=form-view] table-view)) {
|
|
4291
4300
|
--list--host-background-color: var(--list-background-color, );
|
|
4292
4301
|
--list--highlighteditem-background-color: var(--list-highlighteditem-background-color, );
|
package/package.json
CHANGED
|
@@ -168,14 +168,19 @@ $table-elses: (
|
|
|
168
168
|
// SECTION: Columns counter
|
|
169
169
|
:where(&) {
|
|
170
170
|
--table--expanded-columns: 1;
|
|
171
|
-
}
|
|
172
171
|
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
172
|
+
@for $i from 2 through 6 {
|
|
173
|
+
&:has(> [slot='column']:nth-child(#{$i} of [slot='column'])) {
|
|
174
|
+
--table--expanded-columns: #{$i};
|
|
175
|
+
}
|
|
176
|
+
}
|
|
178
177
|
}
|
|
178
|
+
// :where(&:has(> [slot='column']:nth-of-type(2)):not(:has(> [slot='column']:nth-of-type(3)))) {
|
|
179
|
+
// --table--expanded-columns: 2;
|
|
180
|
+
// }
|
|
181
|
+
// :where(&:has(> [slot='column']:nth-of-type(3)):not(:has(> [slot='column']:nth-of-type(4)))) {
|
|
182
|
+
// --table--expanded-columns: 3;
|
|
183
|
+
// }
|
|
179
184
|
|
|
180
185
|
// // @include mixins.center-toolbar-elements('&');
|
|
181
186
|
// :where(& > button[slot^='header'], & > button[slot^='footer']),
|