codexly-ui 0.12.37 → 0.12.39
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/codexly-ui.d.ts
CHANGED
|
@@ -1076,8 +1076,13 @@ declare class ClxCheckboxComponent implements ControlValueAccessor {
|
|
|
1076
1076
|
protected _toggle(): void;
|
|
1077
1077
|
protected _onSpace(event: Event): void;
|
|
1078
1078
|
protected _handleBlur(): void;
|
|
1079
|
+
/** The host's (click) toggles the checkbox for any click inside it — including clicks on a link
|
|
1080
|
+
* projected via ng-content (e.g. "Acepto los <a>Términos</a>"), which would otherwise both
|
|
1081
|
+
* navigate AND flip the checkbox. Stops propagation only when the click originated on (or
|
|
1082
|
+
* inside) an <a>, so the rest of the projected text still toggles normally. */
|
|
1083
|
+
protected _onLabelClick(event: MouseEvent): void;
|
|
1079
1084
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxCheckboxComponent, never>;
|
|
1080
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxCheckboxComponent, "clx-checkbox", never, { "color": { "alias": "color"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never,
|
|
1085
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxCheckboxComponent, "clx-checkbox", never, { "color": { "alias": "color"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
1081
1086
|
}
|
|
1082
1087
|
|
|
1083
1088
|
type ClxRadioVariant = 'solid' | 'outline';
|