structra-ui 0.1.89 → 0.1.90
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
package/types/structra-ui.d.ts
CHANGED
|
@@ -900,10 +900,14 @@ declare abstract class BooleanFieldDirective extends BaseFieldDirective<boolean
|
|
|
900
900
|
}
|
|
901
901
|
|
|
902
902
|
declare class CheckboxFieldComponent extends BooleanFieldDirective {
|
|
903
|
+
/** `true` (padrão): host ocupa 100%. Com `false`, usa largura intrínseca (útil em `app-form-row` com justify). */
|
|
904
|
+
fullWidth: boolean;
|
|
905
|
+
get fullWidthClass(): boolean;
|
|
903
906
|
onCheckboxClick(ev: MouseEvent): void;
|
|
904
907
|
onNativeChange(event: Event): void;
|
|
905
908
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxFieldComponent, never>;
|
|
906
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxFieldComponent, "app-checkbox-field", never, {}, {}, never, never, true, never>;
|
|
909
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxFieldComponent, "app-checkbox-field", never, { "fullWidth": { "alias": "fullWidth"; "required": false; }; }, {}, never, never, true, never>;
|
|
910
|
+
static ngAcceptInputType_fullWidth: unknown;
|
|
907
911
|
}
|
|
908
912
|
|
|
909
913
|
declare class SwitchFieldComponent extends BooleanFieldDirective {
|