@odx/angular 1.0.0-rc.13 → 1.0.0-rc.15
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/components/form-field/lib/form-field.component.d.ts +1 -2
- package/esm2020/components/form-field/lib/form-field.component.mjs +5 -6
- package/esm2020/components/main-menu/lib/main-menu.component.mjs +3 -3
- package/esm2020/components/select/lib/select.component.mjs +4 -2
- package/esm2020/lib/controllers/disabled.controller.mjs +23 -17
- package/esm2020/lib/controllers/readonly.controller.mjs +20 -11
- package/esm2020/lib/directives/click-outside.directive.mjs +13 -10
- package/esm2020/lib/directives/with-disabled-state.directive.mjs +2 -2
- package/fesm2015/odx-angular-components-form-field.mjs +3 -4
- package/fesm2015/odx-angular-components-form-field.mjs.map +1 -1
- package/fesm2015/odx-angular-components-main-menu.mjs +2 -2
- package/fesm2015/odx-angular-components-main-menu.mjs.map +1 -1
- package/fesm2015/odx-angular-components-select.mjs +3 -1
- package/fesm2015/odx-angular-components-select.mjs.map +1 -1
- package/fesm2015/odx-angular.mjs +54 -34
- package/fesm2015/odx-angular.mjs.map +1 -1
- package/fesm2020/odx-angular-components-form-field.mjs +3 -4
- package/fesm2020/odx-angular-components-form-field.mjs.map +1 -1
- package/fesm2020/odx-angular-components-main-menu.mjs +2 -2
- package/fesm2020/odx-angular-components-main-menu.mjs.map +1 -1
- package/fesm2020/odx-angular-components-select.mjs +3 -1
- package/fesm2020/odx-angular-components-select.mjs.map +1 -1
- package/fesm2020/odx-angular.mjs +52 -33
- package/fesm2020/odx-angular.mjs.map +1 -1
- package/lib/controllers/disabled.controller.d.ts +5 -2
- package/lib/controllers/readonly.controller.d.ts +1 -0
- package/lib/directives/click-outside.directive.d.ts +2 -3
- package/package.json +2 -2
|
@@ -1,13 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EventEmitter, OnChanges, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { NgChanges } from '@odx/angular/utils';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class ClickOutsideDirective implements OnChanges, OnInit, OnDestroy {
|
|
5
|
+
private listener?;
|
|
5
6
|
private readonly element;
|
|
6
7
|
private readonly renderer;
|
|
7
|
-
private listener?;
|
|
8
8
|
odxClickOutsideActive: boolean;
|
|
9
9
|
readonly odxClickOutside: EventEmitter<MouseEvent>;
|
|
10
|
-
constructor(element: ElementRef<HTMLElement>, renderer: Renderer2);
|
|
11
10
|
ngOnInit(): void;
|
|
12
11
|
ngOnChanges({ odxClickOutsideActive: clickOutsideActive }: NgChanges<ClickOutsideDirective>): void;
|
|
13
12
|
ngOnDestroy(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@odx/angular",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.15",
|
|
4
4
|
"author": "Drägerwerk AG & Co.KGaA",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"peerDependencies": {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"@angular/forms": ">=15.1.0",
|
|
12
12
|
"@angular/router": ">=15.1.0",
|
|
13
13
|
"rxjs": ">=7.5.0",
|
|
14
|
-
"@odx/ui": "1.0.0-rc.
|
|
14
|
+
"@odx/ui": "1.0.0-rc.15"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@floating-ui/dom": "^1.2.0",
|