otimus-library 0.3.19 → 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/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
- maxWidth?: string;
103
- width?: string;
104
- shouldCloseOnClickOut: boolean;
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; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "width": { "alias": "width"; "required": false; }; "shouldCloseOnClickOut": { "alias": "shouldCloseOnClickOut"; "required": false; }; }, {}, never, never, true, never>;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "otimus-library",
3
- "version": "0.3.19",
3
+ "version": "0.3.21",
4
4
  "license": "MIT",
5
5
  "peerDependencies": {
6
6
  "@angular/cdk": "^20.2.5",