@metadev/lux 0.26.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 -0
- package/esm2022/lib/autocomplete-list/autocomplete-list.component.mjs +259 -0
- package/esm2022/lib/breadcrumb/breadcrumb.component.mjs +78 -0
- package/esm2022/lib/checkbox/checkbox.component.mjs +156 -0
- package/{esm2020 → esm2022}/lib/datasource.mjs +1 -1
- package/esm2022/lib/datetime/datetime.component.mjs +312 -0
- package/esm2022/lib/filter/filter.component.mjs +158 -0
- package/esm2022/lib/geolocation/geolocation.component.mjs +423 -0
- package/esm2022/lib/geolocation/geolocation.service.mjs +123 -0
- package/{esm2020 → esm2022}/lib/geolocation/openlayer-loader.service.mjs +62 -62
- package/esm2022/lib/helperFns.mjs +118 -0
- package/esm2022/lib/input/input.component.mjs +469 -0
- package/{esm2020 → esm2022}/lib/input/regexp.service.mjs +195 -195
- package/{esm2020 → esm2022}/lib/lang.mjs +8 -8
- package/esm2022/lib/lux.module.mjs +119 -0
- package/{esm2020 → esm2022}/lib/map/geopoint.mjs +1 -1
- package/esm2022/lib/map/map.component.mjs +275 -0
- package/esm2022/lib/modal/modal-backdrop.mjs +25 -0
- package/esm2022/lib/modal/modal-config.mjs +12 -0
- package/{esm2020 → esm2022}/lib/modal/modal-dismiss-reasons.mjs +5 -5
- package/esm2022/lib/modal/modal-ref.mjs +101 -0
- package/esm2022/lib/modal/modal-stack.mjs +182 -0
- package/esm2022/lib/modal/modal-window.mjs +125 -0
- package/esm2022/lib/modal/modal.service.mjs +28 -0
- package/esm2022/lib/modal/util.mjs +82 -0
- package/esm2022/lib/pagination/pagination.component.mjs +144 -0
- package/{esm2020 → esm2022}/lib/pagination/pagination.mjs +1 -1
- package/esm2022/lib/radiogroup/radiogroup.component.mjs +129 -0
- package/esm2022/lib/select/select.component.mjs +148 -0
- package/{esm2020 → esm2022}/lib/tooltip/placement.mjs +7 -7
- package/{esm2020 → esm2022}/lib/tooltip/tooltip-context.mjs +1 -1
- package/esm2022/lib/tooltip/tooltip.component.mjs +24 -0
- package/esm2022/lib/tooltip/tooltip.directive.mjs +69 -0
- package/esm2022/lib/tooltip/tooltip.service.mjs +137 -0
- package/esm2022/lib/tooltip/tooltop-content.mjs +9 -0
- package/esm2022/lib/voice-recognition/voice-recognition.directive.mjs +79 -0
- package/{esm2020 → esm2022}/lib/window/window.service.mjs +45 -45
- package/{esm2020 → esm2022}/metadev-lux.mjs +4 -4
- package/{esm2020 → esm2022}/public-api.mjs +20 -20
- package/{fesm2020 → fesm2022}/metadev-lux.mjs +4377 -4260
- package/fesm2022/metadev-lux.mjs.map +1 -0
- 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 +7 -14
- package/public-api.d.ts +18 -18
- package/esm2020/lib/autocomplete/autocomplete.component.mjs +0 -479
- package/esm2020/lib/autocomplete-list/autocomplete-list.component.mjs +0 -254
- package/esm2020/lib/breadcrumb/breadcrumb.component.mjs +0 -75
- package/esm2020/lib/checkbox/checkbox.component.mjs +0 -154
- package/esm2020/lib/datetime/datetime.component.mjs +0 -306
- package/esm2020/lib/filter/filter.component.mjs +0 -152
- package/esm2020/lib/geolocation/geolocation.component.mjs +0 -407
- package/esm2020/lib/geolocation/geolocation.service.mjs +0 -120
- package/esm2020/lib/helperFns.mjs +0 -117
- package/esm2020/lib/input/input.component.mjs +0 -452
- package/esm2020/lib/lux.module.mjs +0 -124
- package/esm2020/lib/map/map.component.mjs +0 -264
- package/esm2020/lib/modal/modal-backdrop.mjs +0 -26
- package/esm2020/lib/modal/modal-config.mjs +0 -14
- package/esm2020/lib/modal/modal-ref.mjs +0 -91
- package/esm2020/lib/modal/modal-stack.mjs +0 -179
- package/esm2020/lib/modal/modal-window.mjs +0 -119
- package/esm2020/lib/modal/modal.service.mjs +0 -26
- package/esm2020/lib/modal/util.mjs +0 -83
- package/esm2020/lib/pagination/pagination.component.mjs +0 -137
- package/esm2020/lib/radiogroup/radiogroup.component.mjs +0 -130
- package/esm2020/lib/select/select.component.mjs +0 -149
- package/esm2020/lib/tooltip/tooltip.component.mjs +0 -23
- package/esm2020/lib/tooltip/tooltip.directive.mjs +0 -60
- package/esm2020/lib/tooltip/tooltip.service.mjs +0 -134
- package/esm2020/lib/tooltip/tooltop-content.mjs +0 -7
- package/esm2020/lib/voice-recognition/voice-recognition.directive.mjs +0 -73
- package/fesm2015/metadev-lux.mjs +0 -4347
- package/fesm2015/metadev-lux.mjs.map +0 -1
- package/fesm2020/metadev-lux.mjs.map +0 -1
|
@@ -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": "language"; }, {}, 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,19 +25,14 @@
|
|
|
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
|
-
"module": "
|
|
37
|
-
"es2020": "fesm2020/metadev-lux.mjs",
|
|
38
|
-
"esm2020": "esm2020/metadev-lux.mjs",
|
|
39
|
-
"fesm2020": "fesm2020/metadev-lux.mjs",
|
|
40
|
-
"fesm2015": "fesm2015/metadev-lux.mjs",
|
|
35
|
+
"module": "fesm2022/metadev-lux.mjs",
|
|
41
36
|
"typings": "index.d.ts",
|
|
42
37
|
"exports": {
|
|
43
38
|
"./package.json": {
|
|
@@ -45,11 +40,9 @@
|
|
|
45
40
|
},
|
|
46
41
|
".": {
|
|
47
42
|
"types": "./index.d.ts",
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"node": "./fesm2015/metadev-lux.mjs",
|
|
52
|
-
"default": "./fesm2020/metadev-lux.mjs"
|
|
43
|
+
"esm2022": "./esm2022/metadev-lux.mjs",
|
|
44
|
+
"esm": "./esm2022/metadev-lux.mjs",
|
|
45
|
+
"default": "./fesm2022/metadev-lux.mjs"
|
|
53
46
|
}
|
|
54
47
|
},
|
|
55
48
|
"sideEffects": false
|
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';
|