@radix-ng/primitives 0.20.0 → 0.20.2
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/compodoc/documentation.json +327 -96
- package/esm2022/popover/src/popover-arrow.directive.mjs +1 -1
- package/esm2022/popover/src/popover-close.directive.mjs +2 -2
- package/esm2022/popover/src/popover-content.directive.mjs +9 -17
- package/esm2022/popover/src/popover-root.directive.mjs +9 -4
- package/esm2022/popover/src/popover-trigger.directive.mjs +10 -9
- package/esm2022/popover/src/popover.constants.mjs +2 -2
- package/esm2022/radio/src/radio-indicator.directive.mjs +3 -3
- package/fesm2022/radix-ng-primitives-popover.mjs +26 -28
- package/fesm2022/radix-ng-primitives-popover.mjs.map +1 -1
- package/fesm2022/radix-ng-primitives-radio.mjs +2 -2
- package/fesm2022/radix-ng-primitives-radio.mjs.map +1 -1
- package/package.json +7 -7
- package/popover/src/popover-close.directive.d.ts +1 -1
- package/popover/src/popover-content.directive.d.ts +0 -2
- package/popover/src/popover-root.directive.d.ts +2 -0
- package/popover/src/popover-trigger.directive.d.ts +6 -4
- package/popover/src/popover.constants.d.ts +1 -1
@@ -77,8 +77,6 @@ export declare class RdxPopoverContentDirective implements OnInit {
|
|
77
77
|
private setOrigin;
|
78
78
|
/** @ignore */
|
79
79
|
private onPositionChangeEffect;
|
80
|
-
/** @ignore */
|
81
|
-
private onControlledExternallyChangeEffect;
|
82
80
|
static ɵfac: i0.ɵɵFactoryDeclaration<RdxPopoverContentDirective, never>;
|
83
81
|
static ɵdir: i0.ɵɵDirectiveDeclaration<RdxPopoverContentDirective, "[rdxPopoverContent]", never, { "side": { "alias": "side"; "required": false; "isSignal": true; }; "sideOffset": { "alias": "sideOffset"; "required": false; "isSignal": true; }; "align": { "alias": "align"; "required": false; "isSignal": true; }; "alignOffset": { "alias": "alignOffset"; "required": false; "isSignal": true; }; "disableAlternatePositions": { "alias": "disableAlternatePositions"; "required": false; "isSignal": true; }; }, { "onEscapeKeyDown": "onEscapeKeyDown"; "onPointerDownOutside": "onPointerDownOutside"; "onShow": "onShow"; "onHide": "onHide"; }, never, never, true, [{ directive: typeof i1.CdkConnectedOverlay; inputs: {}; outputs: {}; }]>;
|
84
82
|
}
|
@@ -4,6 +4,8 @@ import { RdxPopoverTriggerDirective } from './popover-trigger.directive';
|
|
4
4
|
import { RdxPopoverState } from './popover.types';
|
5
5
|
import * as i0 from "@angular/core";
|
6
6
|
export declare class RdxPopoverRootDirective implements OnInit {
|
7
|
+
readonly uniqueId: import("@angular/core").WritableSignal<number>;
|
8
|
+
readonly name: import("@angular/core").Signal<string>;
|
7
9
|
/**
|
8
10
|
* The open state of the popover when it is initially rendered. Use when you do not need to control its open state.
|
9
11
|
*/
|
@@ -3,16 +3,18 @@ import { ElementRef } from '@angular/core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
import * as i1 from "@angular/cdk/overlay";
|
5
5
|
export declare class RdxPopoverTriggerDirective {
|
6
|
-
readonly id: import("@angular/core").InputSignal<string>;
|
7
|
-
readonly popoverId: import("@angular/core").Signal<string>;
|
8
6
|
/** @ignore */
|
9
7
|
readonly popoverRoot: import("@radix-ng/primitives/popover").RdxPopoverRootDirective;
|
10
8
|
/** @ignore */
|
11
|
-
readonly elementRef: ElementRef<
|
9
|
+
readonly elementRef: ElementRef<any>;
|
12
10
|
/** @ignore */
|
13
11
|
readonly overlayOrigin: CdkOverlayOrigin;
|
14
12
|
/** @ignore */
|
13
|
+
readonly name: import("@angular/core").Signal<string>;
|
14
|
+
/** @ignore */
|
15
|
+
readonly controlsId: import("@angular/core").Signal<string>;
|
16
|
+
/** @ignore */
|
15
17
|
onClick(): void;
|
16
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<RdxPopoverTriggerDirective, never>;
|
17
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<RdxPopoverTriggerDirective, "[rdxPopoverTrigger]", never, {
|
19
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RdxPopoverTriggerDirective, "[rdxPopoverTrigger]", never, {}, {}, never, never, true, [{ directive: typeof i1.CdkOverlayOrigin; inputs: {}; outputs: {}; }]>;
|
18
20
|
}
|