@arsedizioni/ars-utils 22.0.40 → 22.0.42
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
|
@@ -973,6 +973,16 @@ declare function validateBasis(basis: string, grow?: string, shrink?: string): s
|
|
|
973
973
|
* Matches ngx-layout output exactly (useColumnBasisZero = true, the default).
|
|
974
974
|
*/
|
|
975
975
|
declare function buildFlexStyles(value: string, direction: string, hasWrap: boolean): Record<string, string | null>;
|
|
976
|
+
/**
|
|
977
|
+
* Resolves the non-ngx fxFlex extensions to a value `buildFlexStyles` understands.
|
|
978
|
+
* • '*' → 'grow' (fill the remaining space → `flex: 1 1 100%`, max-* 100%)
|
|
979
|
+
* • '' with a `*` sibling → 'none' (`0 0 auto`)
|
|
980
|
+
* • anything else → returned unchanged
|
|
981
|
+
* @param raw - The resolved fxFlex value for the active breakpoint.
|
|
982
|
+
* @param hasStarSibling - Whether a sibling element declares `fxFlex="*"`.
|
|
983
|
+
* @returns The value to pass to `buildFlexStyles`.
|
|
984
|
+
*/
|
|
985
|
+
declare function resolveFlexInput(raw: string, hasStarSibling: boolean): string;
|
|
976
986
|
declare class FxFlexDirective extends ResponsiveBaseDirective {
|
|
977
987
|
/** Direct ancestor FxLayout (any level); matched to the direct parent in the effect. */
|
|
978
988
|
private readonly parentLayout;
|
|
@@ -1401,5 +1411,5 @@ declare class FlexModule {
|
|
|
1401
1411
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<FlexModule>;
|
|
1402
1412
|
}
|
|
1403
1413
|
|
|
1404
|
-
export { ALIAS_FAMILIES, ALIAS_INDEX, BS5_BREAKPOINTS, BusyDialogComponent, BusyTimer, CANONICAL_ALIASES, ConfirmDialogComponent, CredentialsDialogComponent, DeleteDialogComponent, DeleteDialogConfirmMode, DialogService, FlexModule, FxClassDirective, FxFlexAlignDirective, FxFlexDirective, FxFlexFillDirective, FxFlexOffsetDirective, FxFlexOrderDirective, FxGridAreaDirective, FxGridColumnDirective, FxGridDirective, FxLayoutAlignDirective, FxLayoutDirective, FxLayoutGapDirective, FxLayoutWrapDirective, FxShowHideDirective, FxStyleDirective, IfBpDirective, InfoDialogComponent, LAYOUT_BREAKPOINTS, LAYOUT_VALUES, MediaObserver, NON_CANONICAL_PRIORITY, OtpInputComponent, PaginatorIntl, PasswordStrengthComponent, RecoverPasswordDialogComponent, ResetPasswordDialogComponent, ResponsiveBaseDirective, ToastComponent, UIService, applyVisibility, buildAlignStyles, buildFlexStyles, buildLayoutCSS, resolve, resolveAll, resolveNonCanonical, resolveParentFlow, validateBasis, validateLayoutValue, validateWrapValue };
|
|
1414
|
+
export { ALIAS_FAMILIES, ALIAS_INDEX, BS5_BREAKPOINTS, BusyDialogComponent, BusyTimer, CANONICAL_ALIASES, ConfirmDialogComponent, CredentialsDialogComponent, DeleteDialogComponent, DeleteDialogConfirmMode, DialogService, FlexModule, FxClassDirective, FxFlexAlignDirective, FxFlexDirective, FxFlexFillDirective, FxFlexOffsetDirective, FxFlexOrderDirective, FxGridAreaDirective, FxGridColumnDirective, FxGridDirective, FxLayoutAlignDirective, FxLayoutDirective, FxLayoutGapDirective, FxLayoutWrapDirective, FxShowHideDirective, FxStyleDirective, IfBpDirective, InfoDialogComponent, LAYOUT_BREAKPOINTS, LAYOUT_VALUES, MediaObserver, NON_CANONICAL_PRIORITY, OtpInputComponent, PaginatorIntl, PasswordStrengthComponent, RecoverPasswordDialogComponent, ResetPasswordDialogComponent, ResponsiveBaseDirective, ToastComponent, UIService, applyVisibility, buildAlignStyles, buildFlexStyles, buildLayoutCSS, resolve, resolveAll, resolveFlexInput, resolveNonCanonical, resolveParentFlow, validateBasis, validateLayoutValue, validateWrapValue };
|
|
1405
1415
|
export type { BpValues, BreakpointAlias, CanonicalKey, ConfirmDialogData, ConfirmDialogOption, CredentialsDialogData, CredentialsDialogResult, DeleteDialogData, DialogOption, DialogResult, IDialogService, InfoDialogData, NcValues, NonCanonicalKey, RecoverPasswordDialogData, RecoverPasswordDialogResult, ResetPasswordDialogData, ResetPasswordDialogMode, ResetPasswordDialogResult, ToastData };
|