@arsedizioni/ars-utils 22.0.53 → 22.0.54

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arsedizioni/ars-utils",
3
- "version": "22.0.53",
3
+ "version": "22.0.54",
4
4
  "author": {
5
5
  "email": "software@arsedizioni.it",
6
6
  "name": "Fabio Buscaroli, Alberto Doria"
@@ -974,9 +974,9 @@ declare function validateBasis(basis: string, grow?: string, shrink?: string): s
974
974
  */
975
975
  declare function buildFlexStyles(value: string, direction: string, hasWrap: boolean): Record<string, string | null>;
976
976
  /**
977
- * Resolves the fxFlex "fill" inputs to a value `buildFlexStyles` understands.
978
- * Both `fxFlex="*"` and a bare `fxFlex` mean "fill the remaining space" `grow`
979
- * (`flex: 1 1 100%`, max-* 100%); every other value is returned unchanged.
977
+ * Resolves the non-ngx `fxFlex="*"` extension to `grow` (`flex: 1 1 100%`, max-* 100%).
978
+ * Every other value — including a bare `fxFlex` ('') is returned unchanged, so a bare
979
+ * fxFlex keeps the ngx-layout default (`1 1 0%` in row, `1 1 0.000000001px` in column).
980
980
  * @param raw - The resolved fxFlex value for the active breakpoint.
981
981
  * @returns The value to pass to `buildFlexStyles`.
982
982
  */