@homebound/truss 2.28.0 → 2.28.1
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/build/index.js +2 -2
- package/build/index.js.map +1 -1
- package/build/plugin/index.js +35 -9
- package/build/plugin/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -1207,7 +1207,7 @@ class CssBuilder<T extends Properties> {
|
|
|
1207
1207
|
|
|
1208
1208
|
/** Reset active conditional modifiers for subsequent styles. */
|
|
1209
1209
|
get end() {
|
|
1210
|
-
return this.newCss({ selector: undefined, elseApplied: false });
|
|
1210
|
+
return this.newCss({ enabled: true, selector: undefined, elseApplied: false });
|
|
1211
1211
|
}
|
|
1212
1212
|
|
|
1213
1213
|
/** Add real CSS property/value pairs, either as add("prop", value) or add({ prop: value, ... }). */
|
|
@@ -1539,7 +1539,7 @@ class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"> {
|
|
|
1539
1539
|
|
|
1540
1540
|
/** Reset active conditional modifiers for subsequent styles. */
|
|
1541
1541
|
get end(): CssBuilder<T, S> {
|
|
1542
|
-
return this.newCss({ selector: undefined, elseApplied: false });
|
|
1542
|
+
return this.newCss({ enabled: true, selector: undefined, elseApplied: false });
|
|
1543
1543
|
}
|
|
1544
1544
|
|
|
1545
1545
|
/** Add real CSS property/value pairs, either as add("prop", value) or add({ prop: value, ... }). */
|