@metadev/lux 0.27.0 → 0.28.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/LICENSE +1 -1
- package/README.md +1 -1
- package/esm2022/lib/autocomplete/autocomplete.component.mjs +488 -488
- package/esm2022/lib/autocomplete-list/autocomplete-list.component.mjs +258 -258
- package/esm2022/lib/breadcrumb/breadcrumb.component.mjs +77 -77
- package/esm2022/lib/checkbox/checkbox.component.mjs +156 -156
- package/esm2022/lib/datasource.mjs +1 -1
- package/esm2022/lib/datetime/datetime.component.mjs +312 -312
- package/esm2022/lib/filter/filter.component.mjs +158 -158
- package/esm2022/lib/geolocation/geolocation.component.mjs +423 -423
- package/esm2022/lib/geolocation/geolocation.service.mjs +122 -122
- package/esm2022/lib/geolocation/openlayer-loader.service.mjs +61 -61
- package/esm2022/lib/helperFns.mjs +117 -117
- package/esm2022/lib/input/input.component.mjs +469 -469
- package/esm2022/lib/input/regexp.service.mjs +194 -194
- package/esm2022/lib/lang.mjs +8 -8
- package/esm2022/lib/lux.module.mjs +118 -118
- package/esm2022/lib/map/geopoint.mjs +1 -1
- package/esm2022/lib/map/map.component.mjs +275 -275
- package/esm2022/lib/modal/modal-backdrop.mjs +24 -24
- package/esm2022/lib/modal/modal-config.mjs +11 -11
- package/esm2022/lib/modal/modal-dismiss-reasons.mjs +5 -5
- package/esm2022/lib/modal/modal-ref.mjs +100 -100
- package/esm2022/lib/modal/modal-stack.mjs +181 -181
- package/esm2022/lib/modal/modal-window.mjs +118 -118
- package/esm2022/lib/modal/modal.service.mjs +27 -27
- package/esm2022/lib/modal/util.mjs +81 -81
- package/esm2022/lib/pagination/pagination.component.mjs +144 -144
- package/esm2022/lib/pagination/pagination.mjs +1 -1
- package/esm2022/lib/radiogroup/radiogroup.component.mjs +129 -129
- package/esm2022/lib/select/select.component.mjs +148 -148
- package/esm2022/lib/tooltip/placement.mjs +7 -7
- package/esm2022/lib/tooltip/tooltip-context.mjs +1 -1
- package/esm2022/lib/tooltip/tooltip.component.mjs +21 -21
- package/esm2022/lib/tooltip/tooltip.directive.mjs +69 -69
- package/esm2022/lib/tooltip/tooltip.service.mjs +136 -136
- package/esm2022/lib/tooltip/tooltop-content.mjs +8 -8
- package/esm2022/lib/voice-recognition/voice-recognition.directive.mjs +79 -79
- package/esm2022/lib/window/window.service.mjs +45 -45
- package/esm2022/metadev-lux.mjs +4 -4
- package/esm2022/public-api.mjs +20 -20
- package/fesm2022/metadev-lux.mjs +4372 -4372
- package/fesm2022/metadev-lux.mjs.map +1 -1
- package/index.d.ts +5 -5
- package/lib/autocomplete/autocomplete.component.d.ts +81 -81
- package/lib/autocomplete-list/autocomplete-list.component.d.ts +65 -65
- package/lib/breadcrumb/breadcrumb.component.d.ts +22 -22
- package/lib/checkbox/checkbox.component.d.ts +47 -47
- package/lib/datasource.d.ts +13 -13
- package/lib/datetime/datetime.component.d.ts +69 -69
- package/lib/filter/filter.component.d.ts +51 -51
- package/lib/geolocation/geolocation.component.d.ts +123 -123
- package/lib/geolocation/geolocation.service.d.ts +32 -32
- package/lib/geolocation/openlayer-loader.service.d.ts +7 -7
- package/lib/helperFns.d.ts +15 -15
- package/lib/input/input.component.d.ts +108 -108
- package/lib/input/regexp.service.d.ts +15 -15
- package/lib/lang.d.ts +2 -2
- package/lib/lux.module.d.ts +27 -27
- package/lib/map/geopoint.d.ts +7 -7
- package/lib/map/map.component.d.ts +39 -39
- package/lib/modal/modal-backdrop.d.ts +8 -8
- package/lib/modal/modal-config.d.ts +14 -14
- package/lib/modal/modal-dismiss-reasons.d.ts +4 -4
- package/lib/modal/modal-ref.d.ts +41 -41
- package/lib/modal/modal-stack.d.ts +31 -31
- package/lib/modal/modal-window.d.ts +28 -28
- package/lib/modal/modal.service.d.ts +19 -19
- package/lib/modal/util.d.ts +40 -40
- package/lib/pagination/pagination.component.d.ts +52 -52
- package/lib/pagination/pagination.d.ts +10 -10
- package/lib/radiogroup/radiogroup.component.d.ts +37 -37
- package/lib/select/select.component.d.ts +38 -38
- package/lib/tooltip/placement.d.ts +7 -7
- package/lib/tooltip/tooltip-context.d.ts +3 -3
- package/lib/tooltip/tooltip.component.d.ts +11 -11
- package/lib/tooltip/tooltip.directive.d.ts +27 -27
- package/lib/tooltip/tooltip.service.d.ts +20 -20
- package/lib/tooltip/tooltop-content.d.ts +6 -6
- package/lib/voice-recognition/voice-recognition.directive.d.ts +16 -16
- package/lib/window/window.service.d.ts +11 -11
- package/package.json +3 -4
- package/public-api.d.ts +18 -18
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { ElementRef, OnInit, Renderer2 } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class VoiceRecognitionDirective implements OnInit {
|
|
4
|
-
private el;
|
|
5
|
-
private renderer;
|
|
6
|
-
language: string;
|
|
7
|
-
private recognition;
|
|
8
|
-
private isRecognizing;
|
|
9
|
-
private mic;
|
|
10
|
-
constructor(el: ElementRef, renderer: Renderer2);
|
|
11
|
-
ngOnInit(): void;
|
|
12
|
-
microphoneClick(): void;
|
|
13
|
-
onRecognized(event: any): void;
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<VoiceRecognitionDirective, never>;
|
|
15
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<VoiceRecognitionDirective, "[luxVoiceRecognition]", never, { "language": { "alias": "language"; "required": false; }; }, {}, never, never, false, never>;
|
|
16
|
-
}
|
|
1
|
+
import { ElementRef, OnInit, Renderer2 } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class VoiceRecognitionDirective implements OnInit {
|
|
4
|
+
private el;
|
|
5
|
+
private renderer;
|
|
6
|
+
language: string;
|
|
7
|
+
private recognition;
|
|
8
|
+
private isRecognizing;
|
|
9
|
+
private mic;
|
|
10
|
+
constructor(el: ElementRef, renderer: Renderer2);
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
microphoneClick(): void;
|
|
13
|
+
onRecognized(event: any): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VoiceRecognitionDirective, never>;
|
|
15
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<VoiceRecognitionDirective, "[luxVoiceRecognition]", never, { "language": { "alias": "language"; "required": false; }; }, {}, never, never, false, never>;
|
|
16
|
+
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { ClassProvider, FactoryProvider, InjectionToken } from '@angular/core';
|
|
2
|
-
export declare const WINDOW: InjectionToken<unknown>;
|
|
3
|
-
export declare abstract class WindowRef {
|
|
4
|
-
get nativeWindow(): Window | Object;
|
|
5
|
-
}
|
|
6
|
-
export declare class BrowserWindowRef extends WindowRef {
|
|
7
|
-
constructor();
|
|
8
|
-
get nativeWindow(): Window | Object;
|
|
9
|
-
}
|
|
10
|
-
export declare const windowFactory: (browserWindowRef: BrowserWindowRef, platformId: Object) => Window | Object;
|
|
11
|
-
export declare const WINDOW_PROVIDERS: (ClassProvider | FactoryProvider)[];
|
|
1
|
+
import { ClassProvider, FactoryProvider, InjectionToken } from '@angular/core';
|
|
2
|
+
export declare const WINDOW: InjectionToken<unknown>;
|
|
3
|
+
export declare abstract class WindowRef {
|
|
4
|
+
get nativeWindow(): Window | Object;
|
|
5
|
+
}
|
|
6
|
+
export declare class BrowserWindowRef extends WindowRef {
|
|
7
|
+
constructor();
|
|
8
|
+
get nativeWindow(): Window | Object;
|
|
9
|
+
}
|
|
10
|
+
export declare const windowFactory: (browserWindowRef: BrowserWindowRef, platformId: Object) => Window | Object;
|
|
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.28.0",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Metadev S.L.",
|
|
7
7
|
"url": "https://metadev.pro"
|
|
@@ -25,12 +25,11 @@
|
|
|
25
25
|
],
|
|
26
26
|
"license": "MIT",
|
|
27
27
|
"peerDependencies": {
|
|
28
|
-
"@angular/common": "^
|
|
29
|
-
"@angular/core": "^
|
|
28
|
+
"@angular/common": "^17.0.0",
|
|
29
|
+
"@angular/core": "^17.0.0",
|
|
30
30
|
"ol": "^6.5.0"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"ngx-resize": "^1.0.6",
|
|
34
33
|
"tslib": "^2.3.0"
|
|
35
34
|
},
|
|
36
35
|
"module": "fesm2022/metadev-lux.mjs",
|
package/public-api.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
export { AutocompleteListComponent } from './lib/autocomplete-list/autocomplete-list.component';
|
|
2
|
-
export { AutocompleteComponent } from './lib/autocomplete/autocomplete.component';
|
|
3
|
-
export { BreadcrumbItem, LuxBreadcrumbComponent } from './lib/breadcrumb/breadcrumb.component';
|
|
4
|
-
export { CheckboxComponent } from './lib/checkbox/checkbox.component';
|
|
5
|
-
export { DataSource, DataSourceItem, DecoratedDataSource, DecoratedDataSourceItem } from './lib/datasource';
|
|
6
|
-
export { DatetimeComponent } from './lib/datetime/datetime.component';
|
|
7
|
-
export { FilterComponent } from './lib/filter/filter.component';
|
|
8
|
-
export { GeolocationComponent } from './lib/geolocation/geolocation.component';
|
|
9
|
-
export { InputComponent } from './lib/input/input.component';
|
|
10
|
-
export { LuxModule } from './lib/lux.module';
|
|
11
|
-
export { MapComponent } from './lib/map/map.component';
|
|
12
|
-
export { ModalRef } from './lib/modal/modal-ref';
|
|
13
|
-
export { ModalService } from './lib/modal/modal.service';
|
|
14
|
-
export { PaginationComponent } from './lib/pagination/pagination.component';
|
|
15
|
-
export { RadiogroupComponent, RadioItem } from './lib/radiogroup/radiogroup.component';
|
|
16
|
-
export { SelectComponent } from './lib/select/select.component';
|
|
17
|
-
export { LuxTooltipDirective } from './lib/tooltip/tooltip.directive';
|
|
18
|
-
export { VoiceRecognitionDirective } from './lib/voice-recognition/voice-recognition.directive';
|
|
1
|
+
export { AutocompleteListComponent } from './lib/autocomplete-list/autocomplete-list.component';
|
|
2
|
+
export { AutocompleteComponent } from './lib/autocomplete/autocomplete.component';
|
|
3
|
+
export { BreadcrumbItem, LuxBreadcrumbComponent } from './lib/breadcrumb/breadcrumb.component';
|
|
4
|
+
export { CheckboxComponent } from './lib/checkbox/checkbox.component';
|
|
5
|
+
export { DataSource, DataSourceItem, DecoratedDataSource, DecoratedDataSourceItem } from './lib/datasource';
|
|
6
|
+
export { DatetimeComponent } from './lib/datetime/datetime.component';
|
|
7
|
+
export { FilterComponent } from './lib/filter/filter.component';
|
|
8
|
+
export { GeolocationComponent } from './lib/geolocation/geolocation.component';
|
|
9
|
+
export { InputComponent } from './lib/input/input.component';
|
|
10
|
+
export { LuxModule } from './lib/lux.module';
|
|
11
|
+
export { MapComponent } from './lib/map/map.component';
|
|
12
|
+
export { ModalRef } from './lib/modal/modal-ref';
|
|
13
|
+
export { ModalService } from './lib/modal/modal.service';
|
|
14
|
+
export { PaginationComponent } from './lib/pagination/pagination.component';
|
|
15
|
+
export { RadiogroupComponent, RadioItem } from './lib/radiogroup/radiogroup.component';
|
|
16
|
+
export { SelectComponent } from './lib/select/select.component';
|
|
17
|
+
export { LuxTooltipDirective } from './lib/tooltip/tooltip.directive';
|
|
18
|
+
export { VoiceRecognitionDirective } from './lib/voice-recognition/voice-recognition.directive';
|