@arsedizioni/ars-utils 22.0.39 → 22.0.41
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/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +27 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.mjs +5 -3
- package/fesm2022/arsedizioni-ars-utils-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/arsedizioni-ars-utils-clipper.common.d.ts +124 -108
- package/types/arsedizioni-ars-utils-clipper.ui.d.ts +1 -1
|
@@ -1043,7 +1043,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.1", ngImpor
|
|
|
1043
1043
|
* • wrap-container basis rewrite (ngx issue 660)
|
|
1044
1044
|
*
|
|
1045
1045
|
* Extensions beyond ngx-layout (documented, opt-in by syntax):
|
|
1046
|
-
* • fxFlex="*" →
|
|
1046
|
+
* • fxFlex="*" → fills the remaining space like a bare fxFlex (1 1 0%)
|
|
1047
1047
|
* • fxFlex="" + a SIBLING with fxFlex="*" → this element gets 0 0 auto
|
|
1048
1048
|
* (static-attribute detection only; property bindings are not seen)
|
|
1049
1049
|
*
|
|
@@ -1232,9 +1232,11 @@ class FxFlexDirective extends ResponsiveBaseDirective {
|
|
|
1232
1232
|
this._applied.clear();
|
|
1233
1233
|
return;
|
|
1234
1234
|
}
|
|
1235
|
-
// Extensions (
|
|
1235
|
+
// Extensions (documented in the header)
|
|
1236
|
+
// fxFlex="*" fills the remaining space exactly like a bare fxFlex (=> flex: 1 1 0%),
|
|
1237
|
+
// matching @ngbracket/ngx-layout's "fill" semantics instead of content-based auto.
|
|
1236
1238
|
if (raw === '*')
|
|
1237
|
-
raw = '
|
|
1239
|
+
raw = '';
|
|
1238
1240
|
else if (raw === '' && this.isBrowser && parentHasStar(el))
|
|
1239
1241
|
raw = 'none'; // 0 0 auto
|
|
1240
1242
|
// Parent flow: reactive via FxLayoutDirective signals when it is the
|