@metadev/lux 0.28.0 → 0.30.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 +110 -105
- package/fesm2022/metadev-lux.mjs.map +1 -1
- package/lib/autocomplete/autocomplete.component.d.ts +3 -3
- package/lib/geolocation/geolocation.component.d.ts +1 -1
- package/lib/window/window.service.d.ts +3 -3
- package/package.json +3 -5
- package/esm2022/lib/autocomplete/autocomplete.component.mjs +0 -488
- package/esm2022/lib/autocomplete-list/autocomplete-list.component.mjs +0 -259
- package/esm2022/lib/breadcrumb/breadcrumb.component.mjs +0 -78
- package/esm2022/lib/checkbox/checkbox.component.mjs +0 -156
- package/esm2022/lib/datasource.mjs +0 -2
- package/esm2022/lib/datetime/datetime.component.mjs +0 -312
- package/esm2022/lib/filter/filter.component.mjs +0 -158
- package/esm2022/lib/geolocation/geolocation.component.mjs +0 -423
- package/esm2022/lib/geolocation/geolocation.service.mjs +0 -123
- package/esm2022/lib/geolocation/openlayer-loader.service.mjs +0 -62
- package/esm2022/lib/helperFns.mjs +0 -118
- package/esm2022/lib/input/input.component.mjs +0 -469
- package/esm2022/lib/input/regexp.service.mjs +0 -195
- package/esm2022/lib/lang.mjs +0 -9
- package/esm2022/lib/lux.module.mjs +0 -119
- package/esm2022/lib/map/geopoint.mjs +0 -2
- package/esm2022/lib/map/map.component.mjs +0 -275
- package/esm2022/lib/modal/modal-backdrop.mjs +0 -25
- package/esm2022/lib/modal/modal-config.mjs +0 -12
- package/esm2022/lib/modal/modal-dismiss-reasons.mjs +0 -6
- package/esm2022/lib/modal/modal-ref.mjs +0 -101
- package/esm2022/lib/modal/modal-stack.mjs +0 -182
- package/esm2022/lib/modal/modal-window.mjs +0 -125
- package/esm2022/lib/modal/modal.service.mjs +0 -28
- package/esm2022/lib/modal/util.mjs +0 -82
- package/esm2022/lib/pagination/pagination.component.mjs +0 -144
- package/esm2022/lib/pagination/pagination.mjs +0 -2
- package/esm2022/lib/radiogroup/radiogroup.component.mjs +0 -129
- package/esm2022/lib/select/select.component.mjs +0 -148
- package/esm2022/lib/tooltip/placement.mjs +0 -8
- package/esm2022/lib/tooltip/tooltip-context.mjs +0 -2
- package/esm2022/lib/tooltip/tooltip.component.mjs +0 -24
- package/esm2022/lib/tooltip/tooltip.directive.mjs +0 -69
- package/esm2022/lib/tooltip/tooltip.service.mjs +0 -137
- package/esm2022/lib/tooltip/tooltop-content.mjs +0 -9
- package/esm2022/lib/voice-recognition/voice-recognition.directive.mjs +0 -79
- package/esm2022/lib/window/window.service.mjs +0 -46
- package/esm2022/metadev-lux.mjs +0 -5
- package/esm2022/public-api.mjs +0 -21
|
@@ -2,7 +2,7 @@ import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnInit } fr
|
|
|
2
2
|
import { AbstractControl, ControlValueAccessor, ValidationErrors, Validator } from '@angular/forms';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import { DataSource, DataSourceItem, DecoratedDataSource } from '../datasource';
|
|
5
|
-
import * as
|
|
5
|
+
import * as i0_1 from "@angular/core";
|
|
6
6
|
export declare const LOST_FOCUS_TIME_WINDOW_MS = 200;
|
|
7
7
|
export declare class AutocompleteComponent implements ControlValueAccessor, Validator, OnInit, AfterViewInit {
|
|
8
8
|
private cd;
|
|
@@ -75,7 +75,7 @@ export declare class AutocompleteComponent implements ControlValueAccessor, Vali
|
|
|
75
75
|
private spinnerVisibility;
|
|
76
76
|
private hasExternalDataSource;
|
|
77
77
|
private computeCompletionList;
|
|
78
|
-
static ɵfac:
|
|
79
|
-
static ɵcmp:
|
|
78
|
+
static ɵfac: i0_1.ɵɵFactoryDeclaration<AutocompleteComponent, never>;
|
|
79
|
+
static ɵcmp: i0_1.ɵɵComponentDeclaration<AutocompleteComponent, "lux-autocomplete", never, { "inputId": { "alias": "inputId"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "label": { "alias": "label"; "required": false; }; "canAddNewValues": { "alias": "canAddNewValues"; "required": false; }; "keepOpenAfterDelete": { "alias": "keepOpenAfterDelete"; "required": false; }; "value": { "alias": "value"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; "required": { "alias": "required"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "resolveLabelsFunction": { "alias": "resolveLabelsFunction"; "required": false; }; "populateFunction": { "alias": "populateFunction"; "required": false; }; "instance": { "alias": "instance"; "required": false; }; }, { "valueChange": "valueChange"; "dataSourceChange": "dataSourceChange"; }, never, never, false, never>;
|
|
80
80
|
}
|
|
81
81
|
export declare const selectElement: (completionList: DecoratedDataSource, label: string) => DataSourceItem<any, string>;
|
|
@@ -21,7 +21,7 @@ export declare class GeolocationComponent implements OnInit {
|
|
|
21
21
|
private _value;
|
|
22
22
|
latitudeValue?: number;
|
|
23
23
|
longitudeValue?: number;
|
|
24
|
-
isValidNumber: (value: string | number) => boolean;
|
|
24
|
+
isValidNumber: (value: string | number | undefined | null) => boolean;
|
|
25
25
|
i18n: {
|
|
26
26
|
en: {
|
|
27
27
|
lat: string;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { ClassProvider, FactoryProvider, InjectionToken } from '@angular/core';
|
|
2
2
|
export declare const WINDOW: InjectionToken<unknown>;
|
|
3
3
|
export declare abstract class WindowRef {
|
|
4
|
-
get nativeWindow(): Window |
|
|
4
|
+
get nativeWindow(): Window | object;
|
|
5
5
|
}
|
|
6
6
|
export declare class BrowserWindowRef extends WindowRef {
|
|
7
7
|
constructor();
|
|
8
|
-
get nativeWindow(): Window |
|
|
8
|
+
get nativeWindow(): Window | object;
|
|
9
9
|
}
|
|
10
|
-
export declare const windowFactory: (browserWindowRef: BrowserWindowRef, platformId:
|
|
10
|
+
export declare const windowFactory: (browserWindowRef: BrowserWindowRef, platformId: object) => Window | object;
|
|
11
11
|
export declare const WINDOW_PROVIDERS: (ClassProvider | FactoryProvider)[];
|
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": "0.30.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": "^19.2.1",
|
|
29
|
+
"@angular/core": "^19.2.1",
|
|
30
30
|
"ol": "^6.5.0"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
@@ -40,8 +40,6 @@
|
|
|
40
40
|
},
|
|
41
41
|
".": {
|
|
42
42
|
"types": "./index.d.ts",
|
|
43
|
-
"esm2022": "./esm2022/metadev-lux.mjs",
|
|
44
|
-
"esm": "./esm2022/metadev-lux.mjs",
|
|
45
43
|
"default": "./fesm2022/metadev-lux.mjs"
|
|
46
44
|
}
|
|
47
45
|
},
|