otimus-library 0.3.20 → 0.3.21
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/fesm2022/otimus-library.mjs +20 -17
- package/fesm2022/otimus-library.mjs.map +1 -1
- package/index.d.ts +5 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -99,9 +99,9 @@ declare class OcMenuHorizDirective implements OnChanges, OnDestroy {
|
|
|
99
99
|
private readonly injector;
|
|
100
100
|
private readonly renderer;
|
|
101
101
|
ocMenu: OcMenuHorizType[];
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
102
|
+
ocMenuMaxWidth?: string;
|
|
103
|
+
ocMenuWidth?: string;
|
|
104
|
+
ocMenuShouldCloseOnClickOut: boolean;
|
|
105
105
|
private menuRef;
|
|
106
106
|
private ocChangeSub?;
|
|
107
107
|
constructor(elemRef: ElementRef<HTMLElement>, viewContainerRef: ViewContainerRef, injector: EnvironmentInjector, renderer: Renderer2);
|
|
@@ -113,7 +113,7 @@ declare class OcMenuHorizDirective implements OnChanges, OnDestroy {
|
|
|
113
113
|
close(): void;
|
|
114
114
|
private destroyMenu;
|
|
115
115
|
static ɵfac: i0.ɵɵFactoryDeclaration<OcMenuHorizDirective, never>;
|
|
116
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<OcMenuHorizDirective, "[OcMenuHorizontal]", ["OcMenuHorizontal"], { "ocMenu": { "alias": "ocMenu"; "required": false; }; "
|
|
116
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<OcMenuHorizDirective, "[OcMenuHorizontal]", ["OcMenuHorizontal"], { "ocMenu": { "alias": "ocMenu"; "required": false; }; "ocMenuMaxWidth": { "alias": "ocMenuMaxWidth"; "required": false; }; "ocMenuWidth": { "alias": "ocMenuWidth"; "required": false; }; "ocMenuShouldCloseOnClickOut": { "alias": "ocMenuShouldCloseOnClickOut"; "required": false; }; }, {}, never, never, true, never>;
|
|
117
117
|
}
|
|
118
118
|
|
|
119
119
|
declare class OcBadgeComponent implements OnInit {
|
|
@@ -403,6 +403,7 @@ declare class OcMenuHorizComponent implements OnInit, OnDestroy {
|
|
|
403
403
|
shouldCloseOnClickOut: boolean;
|
|
404
404
|
hostElement?: HTMLElement;
|
|
405
405
|
ocChange: EventEmitter<any>;
|
|
406
|
+
menuElementInvisible?: ElementRef<HTMLDivElement>;
|
|
406
407
|
menuElement?: ElementRef<HTMLDivElement>;
|
|
407
408
|
itemsListElement?: ElementRef<HTMLUListElement>;
|
|
408
409
|
protected isMenuShown: boolean;
|