@metadev/lux 0.32.0 → 21.0.0
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/metadev-lux.mjs +107 -105
- package/fesm2022/metadev-lux.mjs.map +1 -1
- package/index.d.ts +3 -2
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -210,7 +210,7 @@ declare class CheckboxComponent implements ControlValueAccessor, OnInit, AfterVi
|
|
|
210
210
|
};
|
|
211
211
|
touched: boolean;
|
|
212
212
|
valueChange: EventEmitter<boolean>;
|
|
213
|
-
|
|
213
|
+
private cdr;
|
|
214
214
|
onChange: (value: any) => void;
|
|
215
215
|
onTouched: () => void;
|
|
216
216
|
writeValue(value: any): void;
|
|
@@ -509,6 +509,7 @@ declare class RegexpService {
|
|
|
509
509
|
|
|
510
510
|
declare class InputComponent implements OnInit, ControlValueAccessor, Validator {
|
|
511
511
|
regexpService: RegexpService;
|
|
512
|
+
private cdr;
|
|
512
513
|
static idCounter: number;
|
|
513
514
|
input: ElementRef;
|
|
514
515
|
textarea: ElementRef;
|
|
@@ -657,7 +658,7 @@ declare class LuxModalWindowComponent implements OnInit, AfterViewInit, OnDestro
|
|
|
657
658
|
ariamodal: boolean;
|
|
658
659
|
get hostAriaLabelledBy(): string;
|
|
659
660
|
get hostAriaDescribedBy(): string;
|
|
660
|
-
backdropClick(
|
|
661
|
+
backdropClick(event: any): void;
|
|
661
662
|
escKey(event: any): void;
|
|
662
663
|
dismiss(reason: any): void;
|
|
663
664
|
ngOnInit(): void;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metadev/lux",
|
|
3
3
|
"description": "Lux: Library with User Interface components for Angular.",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "21.0.0",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Metadev S.L.",
|
|
7
7
|
"url": "https://metadev.pro"
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
],
|
|
26
26
|
"license": "MIT",
|
|
27
27
|
"peerDependencies": {
|
|
28
|
-
"@angular/common": ">=
|
|
29
|
-
"@angular/core": ">=
|
|
28
|
+
"@angular/common": ">= 21 < 23",
|
|
29
|
+
"@angular/core": ">= 21 < 23",
|
|
30
30
|
"ol": "^6.5.0"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|