@metadev/lux 0.24.0 → 0.26.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/esm2020/lib/autocomplete/autocomplete.component.mjs +33 -34
- package/esm2020/lib/autocomplete-list/autocomplete-list.component.mjs +6 -6
- package/esm2020/lib/breadcrumb/breadcrumb.component.mjs +3 -3
- package/esm2020/lib/checkbox/checkbox.component.mjs +25 -25
- package/esm2020/lib/datetime/datetime.component.mjs +36 -36
- package/esm2020/lib/filter/filter.component.mjs +23 -23
- package/esm2020/lib/geolocation/geolocation.component.mjs +53 -53
- package/esm2020/lib/geolocation/geolocation.service.mjs +3 -3
- package/esm2020/lib/geolocation/openlayer-loader.service.mjs +3 -3
- package/esm2020/lib/input/input.component.mjs +40 -40
- package/esm2020/lib/input/regexp.service.mjs +3 -3
- package/esm2020/lib/lux.module.mjs +6 -10
- package/esm2020/lib/map/map.component.mjs +20 -21
- package/esm2020/lib/modal/modal-backdrop.mjs +3 -3
- package/esm2020/lib/modal/modal-config.mjs +3 -3
- package/esm2020/lib/modal/modal-ref.mjs +11 -11
- package/esm2020/lib/modal/modal-stack.mjs +3 -3
- package/esm2020/lib/modal/modal-window.mjs +14 -14
- package/esm2020/lib/modal/modal.service.mjs +3 -3
- package/esm2020/lib/pagination/pagination.component.mjs +27 -27
- package/esm2020/lib/radiogroup/radiogroup.component.mjs +20 -20
- package/esm2020/lib/select/select.component.mjs +3 -3
- package/esm2020/lib/tooltip/tooltip.component.mjs +3 -3
- package/esm2020/lib/tooltip/tooltip.directive.mjs +3 -3
- package/esm2020/lib/tooltip/tooltip.service.mjs +3 -3
- package/esm2020/lib/voice-recognition/voice-recognition.directive.mjs +3 -3
- package/fesm2015/metadev-lux.mjs +339 -344
- package/fesm2015/metadev-lux.mjs.map +1 -1
- package/fesm2020/metadev-lux.mjs +339 -344
- package/fesm2020/metadev-lux.mjs.map +1 -1
- package/lib/autocomplete/autocomplete.component.d.ts +2 -2
- package/lib/autocomplete-list/autocomplete-list.component.d.ts +1 -1
- package/lib/breadcrumb/breadcrumb.component.d.ts +1 -1
- package/lib/checkbox/checkbox.component.d.ts +1 -1
- package/lib/datasource.d.ts +2 -2
- package/lib/datetime/datetime.component.d.ts +1 -1
- package/lib/filter/filter.component.d.ts +1 -1
- package/lib/geolocation/geolocation.component.d.ts +1 -1
- package/lib/input/input.component.d.ts +1 -1
- package/lib/lux.module.d.ts +5 -6
- package/lib/map/map.component.d.ts +1 -1
- package/lib/modal/modal-backdrop.d.ts +1 -1
- package/lib/modal/modal-window.d.ts +1 -1
- package/lib/pagination/pagination.component.d.ts +1 -1
- package/lib/radiogroup/radiogroup.component.d.ts +1 -1
- package/lib/select/select.component.d.ts +1 -1
- package/lib/tooltip/placement.d.ts +1 -1
- package/lib/tooltip/tooltip.component.d.ts +1 -1
- package/lib/tooltip/tooltip.directive.d.ts +1 -1
- package/lib/voice-recognition/voice-recognition.directive.d.ts +1 -1
- package/package.json +4 -4
|
@@ -71,11 +71,11 @@ export declare class AutocompleteComponent implements ControlValueAccessor, Vali
|
|
|
71
71
|
private syncCustomValue;
|
|
72
72
|
/** Pick selection based on text filtering (ingnores drowdown state) */
|
|
73
73
|
private pickSelectionOrFirstMatch;
|
|
74
|
-
|
|
74
|
+
showCompletionList(text: string): void;
|
|
75
75
|
private spinnerVisibility;
|
|
76
76
|
private hasExternalDataSource;
|
|
77
77
|
private computeCompletionList;
|
|
78
78
|
static ɵfac: i0.ɵɵFactoryDeclaration<AutocompleteComponent, never>;
|
|
79
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteComponent, "lux-autocomplete", never, { "inputId": "inputId"; "disabled": "disabled"; "readonly": "readonly"; "label": "label"; "canAddNewValues": "canAddNewValues"; "keepOpenAfterDelete": "keepOpenAfterDelete"; "value": "value"; "dataSource": "dataSource"; "required": "required"; "placeholder": "placeholder"; "resolveLabelsFunction": "resolveLabelsFunction"; "populateFunction": "populateFunction"; "instance": "instance"; }, { "valueChange": "valueChange"; "dataSourceChange": "dataSourceChange"; }, never, never, false>;
|
|
79
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteComponent, "lux-autocomplete", never, { "inputId": "inputId"; "disabled": "disabled"; "readonly": "readonly"; "label": "label"; "canAddNewValues": "canAddNewValues"; "keepOpenAfterDelete": "keepOpenAfterDelete"; "value": "value"; "dataSource": "dataSource"; "required": "required"; "placeholder": "placeholder"; "resolveLabelsFunction": "resolveLabelsFunction"; "populateFunction": "populateFunction"; "instance": "instance"; }, { "valueChange": "valueChange"; "dataSourceChange": "dataSourceChange"; }, never, never, false, never>;
|
|
80
80
|
}
|
|
81
81
|
export declare const selectElement: (completionList: DecoratedDataSource, label: string) => DataSourceItem<any, string>;
|
|
@@ -61,5 +61,5 @@ export declare class AutocompleteListComponent implements ControlValueAccessor,
|
|
|
61
61
|
addNew(auto: AutocompleteComponent): void;
|
|
62
62
|
getDeleteMessage(label: string): string;
|
|
63
63
|
static ɵfac: i0.ɵɵFactoryDeclaration<AutocompleteListComponent, never>;
|
|
64
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteListComponent, "lux-autocomplete-list", never, { "value": "value"; "lang": "lang"; "inputId": "inputId"; "dataSource": "dataSource"; "placeholder": "placeholder"; "disabled": "disabled"; "deleteLabelTemplate": "deleteLabelTemplate"; "addMessage": "addMessage"; "required": "required"; "resolveLabelsFunction": "resolveLabelsFunction"; "populateFunction": "populateFunction"; "instance": "instance"; }, { "valueChange": "valueChange"; }, never, never, false>;
|
|
64
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteListComponent, "lux-autocomplete-list", never, { "value": "value"; "lang": "lang"; "inputId": "inputId"; "dataSource": "dataSource"; "placeholder": "placeholder"; "disabled": "disabled"; "deleteLabelTemplate": "deleteLabelTemplate"; "addMessage": "addMessage"; "required": "required"; "resolveLabelsFunction": "resolveLabelsFunction"; "populateFunction": "populateFunction"; "instance": "instance"; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
|
65
65
|
}
|
|
@@ -18,5 +18,5 @@ export declare class LuxBreadcrumbComponent implements OnInit, OnDestroy {
|
|
|
18
18
|
private getUrl;
|
|
19
19
|
private getLabel;
|
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<LuxBreadcrumbComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LuxBreadcrumbComponent, "lux-breadcrumb", never, {}, {}, never, never, false>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LuxBreadcrumbComponent, "lux-breadcrumb", never, {}, {}, never, never, false, never>;
|
|
22
22
|
}
|
|
@@ -43,5 +43,5 @@ export declare class CheckboxComponent implements ControlValueAccessor, OnInit,
|
|
|
43
43
|
onKey(event: KeyboardEvent): void;
|
|
44
44
|
private syncModel;
|
|
45
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
|
|
46
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "lux-checkbox", never, { "lang": "lang"; "value": "value"; "label": "label"; "name": "name"; "disabled": "disabled"; "inputId": "inputId"; }, { "valueChange": "valueChange"; }, never, never, false>;
|
|
46
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "lux-checkbox", never, { "lang": "lang"; "value": "value"; "label": "label"; "name": "name"; "disabled": "disabled"; "inputId": "inputId"; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
|
47
47
|
}
|
package/lib/datasource.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ export interface DataSourceItem<K, L> {
|
|
|
2
2
|
key: K;
|
|
3
3
|
label: L;
|
|
4
4
|
}
|
|
5
|
-
export
|
|
5
|
+
export type DataSource<K, L> = DataSourceItem<K, L>[];
|
|
6
6
|
export interface DecoratedDataSourceItem {
|
|
7
7
|
key: any;
|
|
8
8
|
label: string;
|
|
@@ -10,4 +10,4 @@ export interface DecoratedDataSourceItem {
|
|
|
10
10
|
labelMatch: string;
|
|
11
11
|
labelPostfix: string;
|
|
12
12
|
}
|
|
13
|
-
export
|
|
13
|
+
export type DecoratedDataSource = DecoratedDataSourceItem[];
|
|
@@ -65,5 +65,5 @@ export declare class DatetimeComponent implements OnInit, ControlValueAccessor,
|
|
|
65
65
|
checkClassName(): string;
|
|
66
66
|
setPatterns(): void;
|
|
67
67
|
static ɵfac: i0.ɵɵFactoryDeclaration<DatetimeComponent, never>;
|
|
68
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DatetimeComponent, "lux-datetime", never, { "min": "min"; "max": "max"; "includeSeconds": "includeSeconds"; "localTime": "localTime"; "lang": "lang"; "inlineErrors": "inlineErrors"; "inputId": "inputId"; "ariaLabel": "aria-label"; "readonly": "readonly"; "disabled": "disabled"; "required": "required"; "value": "value"; }, { "valueChange": "valueChange"; "keyPress": "keyPress"; }, never, never, false>;
|
|
68
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DatetimeComponent, "lux-datetime", never, { "min": "min"; "max": "max"; "includeSeconds": "includeSeconds"; "localTime": "localTime"; "lang": "lang"; "inlineErrors": "inlineErrors"; "inputId": "inputId"; "ariaLabel": "aria-label"; "readonly": "readonly"; "disabled": "disabled"; "required": "required"; "value": "value"; }, { "valueChange": "valueChange"; "keyPress": "keyPress"; }, never, never, false, never>;
|
|
69
69
|
}
|
|
@@ -47,5 +47,5 @@ export declare class FilterComponent implements ControlValueAccessor, OnInit, On
|
|
|
47
47
|
private searchNow;
|
|
48
48
|
private addEvent;
|
|
49
49
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterComponent, never>;
|
|
50
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FilterComponent, "lux-filter", never, { "disabled": "disabled"; "inputId": "inputId"; "placeholder": "placeholder"; "searchValue": "searchValue"; "searchOnType": "searchOnType"; "ariaLabel": "aria-label"; "debounce": "debounce"; }, { "searchValueChange": "searchValueChange"; }, never, never, false>;
|
|
50
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilterComponent, "lux-filter", never, { "disabled": "disabled"; "inputId": "inputId"; "placeholder": "placeholder"; "searchValue": "searchValue"; "searchOnType": "searchOnType"; "ariaLabel": "aria-label"; "debounce": "debounce"; }, { "searchValueChange": "searchValueChange"; }, never, never, false, never>;
|
|
51
51
|
}
|
|
@@ -119,5 +119,5 @@ export declare class GeolocationComponent implements OnInit {
|
|
|
119
119
|
getData(instance: GeolocationComponent, search: string): Observable<DataSource<GeoPoint, string>>;
|
|
120
120
|
setPatterns(): void;
|
|
121
121
|
static ɵfac: i0.ɵɵFactoryDeclaration<GeolocationComponent, never>;
|
|
122
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GeolocationComponent, "lux-geolocation", never, { "minLatitude": "minLatitude"; "maxLatitude": "maxLatitude"; "minLongitude": "minLongitude"; "maxLongitude": "maxLongitude"; "step": "step"; "zoom": "zoom"; "lang": "lang"; "inlineErrors": "inlineErrors"; "inputId": "inputId"; "ariaLabel": "aria-label"; "readonly": "readonly"; "disabled": "disabled"; "required": "required"; "value": "value"; }, { "valueChange": "valueChange"; "keyPress": "keyPress"; }, never, never, false>;
|
|
122
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GeolocationComponent, "lux-geolocation", never, { "minLatitude": "minLatitude"; "maxLatitude": "maxLatitude"; "minLongitude": "minLongitude"; "maxLongitude": "maxLongitude"; "step": "step"; "zoom": "zoom"; "lang": "lang"; "inlineErrors": "inlineErrors"; "inputId": "inputId"; "ariaLabel": "aria-label"; "readonly": "readonly"; "disabled": "disabled"; "required": "required"; "value": "value"; }, { "valueChange": "valueChange"; "keyPress": "keyPress"; }, never, never, false, never>;
|
|
123
123
|
}
|
|
@@ -104,5 +104,5 @@ export declare class InputComponent implements OnInit, ControlValueAccessor, Val
|
|
|
104
104
|
setPercentagePatterns(): void;
|
|
105
105
|
setPermillagePatterns(): void;
|
|
106
106
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputComponent, never>;
|
|
107
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputComponent, "lux-input", never, { "rows": "rows"; "cols": "cols"; "step": "step"; "min": "min"; "max": "max"; "lang": "lang"; "inlineErrors": "inlineErrors"; "inputId": "inputId"; "ariaLabel": "aria-label"; "readonly": "readonly"; "disabled": "disabled"; "pattern": "pattern"; "currency": "currency"; "placeholder": "placeholder"; "required": "required"; "type": "type"; "value": "value"; }, { "valueChange": "valueChange"; "keyPress": "keyPress"; }, never, never, false>;
|
|
107
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputComponent, "lux-input", never, { "rows": "rows"; "cols": "cols"; "step": "step"; "min": "min"; "max": "max"; "lang": "lang"; "inlineErrors": "inlineErrors"; "inputId": "inputId"; "ariaLabel": "aria-label"; "readonly": "readonly"; "disabled": "disabled"; "pattern": "pattern"; "currency": "currency"; "placeholder": "placeholder"; "required": "required"; "type": "type"; "value": "value"; }, { "valueChange": "valueChange"; "keyPress": "keyPress"; }, never, never, false, never>;
|
|
108
108
|
}
|
package/lib/lux.module.d.ts
CHANGED
|
@@ -16,13 +16,12 @@ import * as i14 from "./tooltip/tooltip.component";
|
|
|
16
16
|
import * as i15 from "./pagination/pagination.component";
|
|
17
17
|
import * as i16 from "./radiogroup/radiogroup.component";
|
|
18
18
|
import * as i17 from "./voice-recognition/voice-recognition.directive";
|
|
19
|
-
import * as i18 from "angular
|
|
20
|
-
import * as i19 from "@angular/
|
|
21
|
-
import * as i20 from "@angular/
|
|
22
|
-
import * as i21 from "@angular/
|
|
23
|
-
import * as i22 from "@angular/common";
|
|
19
|
+
import * as i18 from "@angular/forms";
|
|
20
|
+
import * as i19 from "@angular/common/http";
|
|
21
|
+
import * as i20 from "@angular/router";
|
|
22
|
+
import * as i21 from "@angular/common";
|
|
24
23
|
export declare class LuxModule {
|
|
25
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<LuxModule, never>;
|
|
26
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<LuxModule, [typeof i1.AutocompleteComponent, typeof i2.AutocompleteListComponent, typeof i3.FilterComponent, typeof i4.CheckboxComponent, typeof i5.DatetimeComponent, typeof i6.InputComponent, typeof i7.GeolocationComponent, typeof i8.LuxTooltipDirective, typeof i9.LuxModalWindowComponent, typeof i10.LuxModalBackdropComponent, typeof i11.LuxBreadcrumbComponent, typeof i12.MapComponent, typeof i13.SelectComponent, typeof i14.TooltipComponent, typeof i15.PaginationComponent, typeof i16.RadiogroupComponent, typeof i17.VoiceRecognitionDirective], [typeof i18.
|
|
25
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<LuxModule, [typeof i1.AutocompleteComponent, typeof i2.AutocompleteListComponent, typeof i3.FilterComponent, typeof i4.CheckboxComponent, typeof i5.DatetimeComponent, typeof i6.InputComponent, typeof i7.GeolocationComponent, typeof i8.LuxTooltipDirective, typeof i9.LuxModalWindowComponent, typeof i10.LuxModalBackdropComponent, typeof i11.LuxBreadcrumbComponent, typeof i12.MapComponent, typeof i13.SelectComponent, typeof i14.TooltipComponent, typeof i15.PaginationComponent, typeof i16.RadiogroupComponent, typeof i17.VoiceRecognitionDirective], [typeof i18.FormsModule, typeof i19.HttpClientModule, typeof i18.ReactiveFormsModule, typeof i20.RouterModule, typeof i21.CommonModule], [typeof i1.AutocompleteComponent, typeof i2.AutocompleteListComponent, typeof i3.FilterComponent, typeof i4.CheckboxComponent, typeof i5.DatetimeComponent, typeof i6.InputComponent, typeof i7.GeolocationComponent, typeof i8.LuxTooltipDirective, typeof i11.LuxBreadcrumbComponent, typeof i11.LuxBreadcrumbComponent, typeof i12.MapComponent, typeof i13.SelectComponent, typeof i15.PaginationComponent, typeof i16.RadiogroupComponent, typeof i17.VoiceRecognitionDirective]>;
|
|
27
26
|
static ɵinj: i0.ɵɵInjectorDeclaration<LuxModule>;
|
|
28
27
|
}
|
|
@@ -35,5 +35,5 @@ export declare class MapComponent implements OnInit, AfterViewInit {
|
|
|
35
35
|
private getMarkerCoordinates;
|
|
36
36
|
onResize(): void;
|
|
37
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapComponent, never>;
|
|
38
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MapComponent, "lux-map", never, { "mapId": "mapId"; "zoom": "zoom"; "center": "center"; "readonly": "readonly"; "markerCoordinates": "markerCoordinates"; "markerPoint": "markerPoint"; }, { "valueChange": "valueChange"; }, never, never, false>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MapComponent, "lux-map", never, { "mapId": "mapId"; "zoom": "zoom"; "center": "center"; "readonly": "readonly"; "markerCoordinates": "markerCoordinates"; "markerPoint": "markerPoint"; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
|
39
39
|
}
|
|
@@ -4,5 +4,5 @@ export declare class LuxModalBackdropComponent {
|
|
|
4
4
|
class: string;
|
|
5
5
|
style: string;
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<LuxModalBackdropComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LuxModalBackdropComponent, "lux-modal-backdrop", never, { "backdropClass": "backdropClass"; }, {}, never, never, false>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LuxModalBackdropComponent, "lux-modal-backdrop", never, { "backdropClass": "backdropClass"; }, {}, never, never, false, never>;
|
|
8
8
|
}
|
|
@@ -24,5 +24,5 @@ export declare class LuxModalWindowComponent implements OnInit, AfterViewInit, O
|
|
|
24
24
|
ngAfterViewInit(): void;
|
|
25
25
|
ngOnDestroy(): void;
|
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<LuxModalWindowComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LuxModalWindowComponent, "lux-modal-window", never, { "ariaDescribedBy": "ariaDescribedBy"; "ariaLabelledBy": "ariaLabelledBy"; "backdrop": "backdrop"; "keyboard": "keyboard"; "windowClass": "windowClass"; }, { "dismissEvent": "dismissEvent"; }, never, ["*"], false>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LuxModalWindowComponent, "lux-modal-window", never, { "ariaDescribedBy": "ariaDescribedBy"; "ariaLabelledBy": "ariaLabelledBy"; "backdrop": "backdrop"; "keyboard": "keyboard"; "windowClass": "windowClass"; }, { "dismissEvent": "dismissEvent"; }, never, ["*"], false, never>;
|
|
28
28
|
}
|
|
@@ -48,5 +48,5 @@ export declare class PaginationComponent implements OnInit {
|
|
|
48
48
|
private calculatePages;
|
|
49
49
|
private loadLanguage;
|
|
50
50
|
static ɵfac: i0.ɵɵFactoryDeclaration<PaginationComponent, never>;
|
|
51
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PaginationComponent, "lux-pagination", never, { "lang": "lang"; "paginationInfo": "paginationInfo"; }, { "goToPage": "goToPage"; "pageSizeChange": "pageSizeChange"; }, never, never, false>;
|
|
51
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PaginationComponent, "lux-pagination", never, { "lang": "lang"; "paginationInfo": "paginationInfo"; }, { "goToPage": "goToPage"; "pageSizeChange": "pageSizeChange"; }, never, never, false, never>;
|
|
52
52
|
}
|
|
@@ -33,5 +33,5 @@ export declare class RadiogroupComponent implements ControlValueAccessor, Valida
|
|
|
33
33
|
setValue(event: MouseEvent, item: RadioItem): void;
|
|
34
34
|
ensureHasUniqueName(item: RadioItem, index: number): RadioItem;
|
|
35
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadiogroupComponent, never>;
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadiogroupComponent, "lux-radiogroup", never, { "name": "name"; "disabled": "disabled"; "readonly": "readonly"; "required": "required"; "items": "items"; "value": "value"; }, { "itemsChange": "itemsChange"; "valueChange": "valueChange"; }, never, never, false>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadiogroupComponent, "lux-radiogroup", never, { "name": "name"; "disabled": "disabled"; "readonly": "readonly"; "required": "required"; "items": "items"; "value": "value"; }, { "itemsChange": "itemsChange"; "valueChange": "valueChange"; }, never, never, false, never>;
|
|
37
37
|
}
|
|
@@ -34,5 +34,5 @@ export declare class SelectComponent implements ControlValueAccessor, Validator
|
|
|
34
34
|
onKeyPress(event: KeyboardEvent): void;
|
|
35
35
|
onChangeNewEntry(newValue: string): void;
|
|
36
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent, never>;
|
|
37
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "lux-select", never, { "id": "id"; "disabled": "disabled"; "required": "required"; "multiple": "multiple"; "value": "value"; "placeholder": "placeholder"; "unique": "unique"; "validateItem": "validateItem"; }, { "valueChange": "valueChange"; }, never, never, false>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "lux-select", never, { "id": "id"; "disabled": "disabled"; "required": "required"; "multiple": "multiple"; "value": "value"; "placeholder": "placeholder"; "unique": "unique"; "validateItem": "validateItem"; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
|
38
38
|
}
|
|
@@ -7,5 +7,5 @@ export declare class TooltipComponent {
|
|
|
7
7
|
context: LuxTooltipContext;
|
|
8
8
|
constructor();
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TooltipComponent, "ng-component", never, { "context": "context"; }, {}, never, never, false>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TooltipComponent, "ng-component", never, { "context": "context"; }, {}, never, never, false, never>;
|
|
11
11
|
}
|
|
@@ -23,5 +23,5 @@ export declare class LuxTooltipDirective {
|
|
|
23
23
|
show(component: any, elHost: ElementRef, placement: PlacementValue): TooltipContentRef;
|
|
24
24
|
remove(tooltipRef: TooltipContentRef): void;
|
|
25
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<LuxTooltipDirective, never>;
|
|
26
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<LuxTooltipDirective, "[luxTooltip]", never, { "luxTooltip": "luxTooltip"; "content": "content"; "placement": "placement"; }, {}, never, never, false>;
|
|
26
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LuxTooltipDirective, "[luxTooltip]", never, { "luxTooltip": "luxTooltip"; "content": "content"; "placement": "placement"; }, {}, never, never, false, never>;
|
|
27
27
|
}
|
|
@@ -12,5 +12,5 @@ export declare class VoiceRecognitionDirective implements OnInit {
|
|
|
12
12
|
microphoneClick(): void;
|
|
13
13
|
onRecognized(event: any): void;
|
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<VoiceRecognitionDirective, never>;
|
|
15
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<VoiceRecognitionDirective, "[luxVoiceRecognition]", never, { "language": "language"; }, {}, never, never, false>;
|
|
15
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<VoiceRecognitionDirective, "[luxVoiceRecognition]", never, { "language": "language"; }, {}, never, never, false, never>;
|
|
16
16
|
}
|
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.26.0",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Metadev S.L.",
|
|
7
7
|
"url": "https://metadev.pro"
|
|
@@ -25,12 +25,12 @@
|
|
|
25
25
|
],
|
|
26
26
|
"license": "MIT",
|
|
27
27
|
"peerDependencies": {
|
|
28
|
-
"@angular/common": "^
|
|
29
|
-
"@angular/core": "^
|
|
28
|
+
"@angular/common": "^15.0.0",
|
|
29
|
+
"@angular/core": "^15.0.0",
|
|
30
30
|
"ol": "^6.5.0"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"
|
|
33
|
+
"ngx-resize": "^1.0.6",
|
|
34
34
|
"tslib": "^2.3.0"
|
|
35
35
|
},
|
|
36
36
|
"module": "fesm2015/metadev-lux.mjs",
|