@stemy/ngx-utils 17.3.7 → 17.3.9
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/components/pagination-menu/pagination-menu.component.mjs +2 -2
- package/esm2022/ngx-utils/directives/dropdown-content.directive.mjs +13 -4
- package/esm2022/ngx-utils/directives/dropdown.directive.mjs +5 -2
- package/fesm2022/stemy-ngx-utils.mjs +20 -8
- package/fesm2022/stemy-ngx-utils.mjs.map +1 -1
- package/ngx-utils/directives/dropdown.directive.d.ts +6 -2
- package/ngx-utils/ngx-utils.imports.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter, OnDestroy } from "@angular/core";
|
|
2
|
-
import { AutoPlacementOptions, Placement } from "@floating-ui/dom";
|
|
2
|
+
import { AutoPlacementOptions, Boundary, Placement } from "@floating-ui/dom";
|
|
3
3
|
import { DropdownAttachTo } from "../common-types";
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class DropdownDirective implements OnDestroy {
|
|
@@ -15,6 +15,10 @@ export declare class DropdownDirective implements OnDestroy {
|
|
|
15
15
|
* Determines where the floating element needs to be placed
|
|
16
16
|
*/
|
|
17
17
|
attachTo: DropdownAttachTo;
|
|
18
|
+
/**
|
|
19
|
+
* Determines the boundary element of the floating element when shifting
|
|
20
|
+
*/
|
|
21
|
+
boundary: Boundary;
|
|
18
22
|
/**
|
|
19
23
|
* Where to place the floating element relative to the reference element.
|
|
20
24
|
*/
|
|
@@ -53,5 +57,5 @@ export declare class DropdownDirective implements OnDestroy {
|
|
|
53
57
|
show($event?: Event): boolean;
|
|
54
58
|
hide(): boolean;
|
|
55
59
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownDirective, never>;
|
|
56
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownDirective, "[dd],[drop-down]", ["dropdown"], { "closeInside": { "alias": "closeInside"; "required": false; }; "attachTo": { "alias": "attachTo"; "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>;
|
|
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>;
|
|
57
61
|
}
|
|
@@ -53,7 +53,7 @@ import { DynamicTableComponent } from "./components/dynamic-table/dynamic-table.
|
|
|
53
53
|
import { PaginationMenuComponent } from "./components/pagination-menu/pagination-menu.component";
|
|
54
54
|
import { UnorderedListComponent } from "./components/unordered-list/unordered-list.component";
|
|
55
55
|
export declare const pipes: (typeof FilterPipe | typeof FormatNumberPipe | typeof GlobalTemplatePipe | typeof IncludesPipe | typeof ReducePipe | typeof RoundPipe | typeof SafeHtmlPipe | typeof TranslatePipe)[];
|
|
56
|
-
export declare const directives: (typeof
|
|
56
|
+
export declare const directives: (typeof DropdownDirective | typeof AsyncMethodBase | typeof BackgroundDirective | typeof DropdownContentDirective | typeof DropdownToggleDirective | typeof DynamicTableTemplateDirective | typeof GlobalTemplateDirective | typeof IconDirective | typeof NgxTemplateOutletDirective | typeof PaginationDirective | typeof PaginationItemDirective | typeof ResourceIfDirective | typeof StickyDirective | typeof StickyClassDirective | typeof UnorderedListItemDirective | typeof UnorderedListTemplateDirective)[];
|
|
57
57
|
export declare const components: (typeof DropdownBoxComponent | typeof DynamicTableComponent | typeof PaginationMenuComponent | typeof UnorderedListComponent)[];
|
|
58
58
|
export declare const providers: (typeof FilterPipe | typeof FormatNumberPipe | typeof GlobalTemplatePipe | typeof IncludesPipe | typeof ReducePipe | typeof RoundPipe | typeof SafeHtmlPipe | typeof TranslatePipe | typeof BaseHttpClient | typeof BaseHttpService | typeof AuthGuard | typeof AclService | typeof StaticAuthService | typeof ConfigService | typeof ErrorHandlerService | typeof EventsService | typeof FormatterService | typeof GlobalTemplateService | typeof IconService | typeof StaticLanguageService | typeof OpenApiService | typeof PromiseService | typeof StateService | typeof StorageService | typeof ConsoleToasterService | typeof TranslatedUrlSerializer | typeof UniversalService | typeof WasmService | typeof DeviceDetectorService | {
|
|
59
59
|
provide: import("@angular/core").InjectionToken<import("@angular/platform-browser").EventManagerPlugin[]>;
|