@stemy/ngx-utils 17.3.11 → 17.3.13
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/esm2022/ngx-utils/components/dropdown-box/dropdown-box.component.mjs +1 -1
- package/esm2022/ngx-utils/directives/dropdown-content.directive.mjs +11 -3
- package/esm2022/ngx-utils/directives/dropdown.directive.mjs +5 -2
- package/fesm2022/stemy-ngx-utils.mjs +15 -4
- package/fesm2022/stemy-ngx-utils.mjs.map +1 -1
- package/ngx-utils/directives/dropdown.directive.d.ts +6 -1
- package/package.json +1 -1
|
@@ -35,6 +35,11 @@ export declare class DropdownDirective implements OnDestroy {
|
|
|
35
35
|
* @default 0
|
|
36
36
|
*/
|
|
37
37
|
mobileViewUnder: number;
|
|
38
|
+
/**
|
|
39
|
+
* Determines if the dropdown content should always be displayed in a fixed full screen view
|
|
40
|
+
* @default false
|
|
41
|
+
*/
|
|
42
|
+
fixed: boolean;
|
|
38
43
|
/**
|
|
39
44
|
* Determines if the dropdown should react to keys to close like 'Esc'
|
|
40
45
|
* @default true
|
|
@@ -57,5 +62,5 @@ export declare class DropdownDirective implements OnDestroy {
|
|
|
57
62
|
show($event?: Event): boolean;
|
|
58
63
|
hide(): boolean;
|
|
59
64
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownDirective, never>;
|
|
60
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownDirective, "[dd],[drop-down]", ["dropdown"], { "closeInside": { "alias": "closeInside"; "required": false; }; "attachTo": { "alias": "attachTo"; "required": false; }; "boundary": { "alias": "boundary"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "autoPlacement": { "alias": "autoPlacement"; "required": false; }; "mobileViewUnder": { "alias": "mobileViewUnder"; "required": false; }; "keyboardHandler": { "alias": "keyboardHandler"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; }, { "onShown": "onShown"; "onHidden": "onHidden"; "onKeyboard": "onKeyboard"; }, never, never, false, never>;
|
|
65
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownDirective, "[dd],[drop-down]", ["dropdown"], { "closeInside": { "alias": "closeInside"; "required": false; }; "attachTo": { "alias": "attachTo"; "required": false; }; "boundary": { "alias": "boundary"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "autoPlacement": { "alias": "autoPlacement"; "required": false; }; "mobileViewUnder": { "alias": "mobileViewUnder"; "required": false; }; "fixed": { "alias": "fixed"; "required": false; }; "keyboardHandler": { "alias": "keyboardHandler"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; }, { "onShown": "onShown"; "onHidden": "onHidden"; "onKeyboard": "onKeyboard"; }, never, never, false, never>;
|
|
61
66
|
}
|