@radix-ng/primitives 0.39.3 → 0.39.4
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/core/src/accessor/control-value-accessor.d.ts +1 -1
- package/fesm2022/radix-ng-primitives-core.mjs.map +1 -1
- package/fesm2022/radix-ng-primitives-hover-card.mjs +73 -40
- package/fesm2022/radix-ng-primitives-hover-card.mjs.map +1 -1
- package/fesm2022/radix-ng-primitives-switch.mjs +10 -3
- package/fesm2022/radix-ng-primitives-switch.mjs.map +1 -1
- package/fesm2022/radix-ng-primitives-toggle-group.mjs +4 -3
- package/fesm2022/radix-ng-primitives-toggle-group.mjs.map +1 -1
- package/fesm2022/radix-ng-primitives-toggle.mjs +25 -38
- package/fesm2022/radix-ng-primitives-toggle.mjs.map +1 -1
- package/hover-card/src/hover-card-arrow.directive.d.ts +9 -4
- package/hover-card/src/hover-card-content.directive.d.ts +34 -18
- package/hover-card/src/hover-card-root.directive.d.ts +30 -18
- package/package.json +1 -1
- package/toggle/src/toggle.directive.d.ts +10 -22
- package/toggle-group/src/toggle-group.directive.d.ts +1 -1
- package/toggle-group/src/toggle-group.token.d.ts +1 -0
- package/tooltip/src/tooltip-root.directive.d.ts +4 -4
@@ -28,7 +28,7 @@ export declare class RdxControlValueAccessor<T> implements ControlValueAccessor
|
|
28
28
|
* Readonly access to the disabled state
|
29
29
|
*/
|
30
30
|
readonly disabled: import("@angular/core").Signal<boolean>;
|
31
|
-
|
31
|
+
onChange?: (value: T | undefined) => void;
|
32
32
|
private onTouched?;
|
33
33
|
/**
|
34
34
|
* Writes a new value to the control (ControlValueAccessor interface)
|