@enigmatry/entry-components 1.2.84 → 1.14.5
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/dialog/README.md +2 -2
- package/esm2020/search-filter/entry-search-filter.component.mjs +6 -6
- package/esm2020/search-filter/entry-search-filter.module.mjs +6 -6
- package/esm2020/search-filter/public-api.mjs +5 -3
- package/esm2020/search-filter/search-filter-config.model.mjs +2 -1
- package/esm2020/search-filter/search-filter-input/control-type.model.mjs +5 -0
- package/esm2020/search-filter/search-filter-input/inputs/select-filter-option.model.mjs +12 -0
- package/esm2020/search-filter/search-filter-input/inputs/select-search-filter.model.mjs +23 -0
- package/esm2020/search-filter/search-filter-input/inputs/text-search-filter.model.mjs +12 -0
- package/esm2020/search-filter/search-filter-input/search-filter-base.model.mjs +25 -0
- package/esm2020/search-filter/search-filter-input/search-filter-input.component.mjs +31 -0
- package/esm2020/search-filter/search-filter-params.type.mjs +2 -0
- package/fesm2015/enigmatry-entry-components-search-filter.mjs +73 -18
- package/fesm2015/enigmatry-entry-components-search-filter.mjs.map +1 -1
- package/fesm2020/enigmatry-entry-components-search-filter.mjs +70 -17
- package/fesm2020/enigmatry-entry-components-search-filter.mjs.map +1 -1
- package/header/README.md +2 -3
- package/package.json +8 -6
- package/search-filter/README.md +8 -4
- package/search-filter/entry-search-filter.component.d.ts +4 -4
- package/search-filter/entry-search-filter.module.d.ts +3 -3
- package/search-filter/public-api.d.ts +5 -3
- package/search-filter/search-filter-config.model.d.ts +2 -0
- package/search-filter/search-filter-input/control-type.model.d.ts +4 -0
- package/search-filter/search-filter-input/inputs/select-filter-option.model.d.ts +12 -0
- package/search-filter/search-filter-input/inputs/select-search-filter.model.d.ts +20 -0
- package/search-filter/search-filter-input/inputs/text-search-filter.model.d.ts +7 -0
- package/search-filter/{search-filter-base.d.ts → search-filter-input/search-filter-base.model.d.ts} +6 -5
- package/search-filter/search-filter-input/search-filter-input.component.d.ts +16 -0
- package/toolbar/README.md +2 -2
- package/esm2020/search-filter/search-filter-base.mjs +0 -22
- package/esm2020/search-filter/search-filter-input.component.mjs +0 -19
- package/esm2020/search-filter/search-filter-params.mjs +0 -2
- package/esm2020/search-filter/search-filter-textbox.mjs +0 -8
- package/search-filter/search-filter-input.component.d.ts +0 -11
- package/search-filter/search-filter-textbox.d.ts +0 -4
- /package/search-filter/{search-filter-params.d.ts → search-filter-params.type.d.ts} +0 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { UntypedFormGroup } from '@angular/forms';
|
|
2
|
+
import { ControlType } from './control-type.model';
|
|
3
|
+
import { EntrySearchFilterConfig } from '../search-filter-config.model';
|
|
4
|
+
import { SearchFilterBase } from './search-filter-base.model';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class EntrySearchFilterInputComponent<T> {
|
|
7
|
+
config: EntrySearchFilterConfig;
|
|
8
|
+
/** Configuration of the search filters inputs that will be displayed in the search-filter component. */
|
|
9
|
+
searchFilter: SearchFilterBase<T>;
|
|
10
|
+
/** Form group to which the search-filter input component will be added. */
|
|
11
|
+
form: UntypedFormGroup;
|
|
12
|
+
controlType: typeof ControlType;
|
|
13
|
+
constructor(config: EntrySearchFilterConfig);
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EntrySearchFilterInputComponent<any>, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EntrySearchFilterInputComponent<any>, "entry-search-filter-input", never, { "searchFilter": "searchFilter"; "form": "form"; }, {}, never, never, false>;
|
|
16
|
+
}
|
package/toolbar/README.md
CHANGED
|
@@ -10,8 +10,8 @@ import { EntryDialogModule } from '@enigmatry/entry-components/toolbar';
|
|
|
10
10
|
|
|
11
11
|
Styles import:
|
|
12
12
|
|
|
13
|
-
```
|
|
14
|
-
@use '
|
|
13
|
+
```scss
|
|
14
|
+
@use 'entry-components/styles/generate' as entry;
|
|
15
15
|
|
|
16
16
|
@include entry.generate(APP_THEME, APP_TYPOGRAPHY);
|
|
17
17
|
```
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Base Entry search filter input component.
|
|
3
|
-
*/
|
|
4
|
-
export class SearchFilterBase {
|
|
5
|
-
constructor(options = {}) {
|
|
6
|
-
this.value = options.value;
|
|
7
|
-
this.key = options.key || '';
|
|
8
|
-
this.label = options.label || '';
|
|
9
|
-
this.placeholder = options.placeholder || '';
|
|
10
|
-
this.order = options.order === undefined ? 1 : options.order;
|
|
11
|
-
this.controlType = options.controlType || '';
|
|
12
|
-
this.type = options.type || '';
|
|
13
|
-
this.maxLength = options.maxLength || 256;
|
|
14
|
-
}
|
|
15
|
-
setValue(value) {
|
|
16
|
-
this.value = value;
|
|
17
|
-
if (this.formControl) {
|
|
18
|
-
this.formControl.patchValue(value);
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VhcmNoLWZpbHRlci1iYXNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbGlicy9lbnRyeS1jb21wb25lbnRzL3NlYXJjaC1maWx0ZXIvc2VhcmNoLWZpbHRlci1iYXNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUVBOztHQUVHO0FBQ0gsTUFBTSxPQUFPLGdCQUFnQjtJQWtCM0IsWUFBWSxVQUF3QyxFQUFFO1FBQ3BELElBQUksQ0FBQyxLQUFLLEdBQUcsT0FBTyxDQUFDLEtBQUssQ0FBQztRQUMzQixJQUFJLENBQUMsR0FBRyxHQUFHLE9BQU8sQ0FBQyxHQUFHLElBQUksRUFBRSxDQUFDO1FBQzdCLElBQUksQ0FBQyxLQUFLLEdBQUcsT0FBTyxDQUFDLEtBQUssSUFBSSxFQUFFLENBQUM7UUFDakMsSUFBSSxDQUFDLFdBQVcsR0FBRyxPQUFPLENBQUMsV0FBVyxJQUFJLEVBQUUsQ0FBQztRQUM3QyxJQUFJLENBQUMsS0FBSyxHQUFHLE9BQU8sQ0FBQyxLQUFLLEtBQUssU0FBUyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLE9BQU8sQ0FBQyxLQUFLLENBQUM7UUFDN0QsSUFBSSxDQUFDLFdBQVcsR0FBRyxPQUFPLENBQUMsV0FBVyxJQUFJLEVBQUUsQ0FBQztRQUM3QyxJQUFJLENBQUMsSUFBSSxHQUFHLE9BQU8sQ0FBQyxJQUFJLElBQUksRUFBRSxDQUFDO1FBQy9CLElBQUksQ0FBQyxTQUFTLEdBQUcsT0FBTyxDQUFDLFNBQVMsSUFBSSxHQUFHLENBQUM7SUFDNUMsQ0FBQztJQUVELFFBQVEsQ0FBQyxLQUFvQjtRQUMzQixJQUFJLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQztRQUNuQixJQUFJLElBQUksQ0FBQyxXQUFXLEVBQUU7WUFDcEIsSUFBSSxDQUFDLFdBQVcsQ0FBQyxVQUFVLENBQUMsS0FBSyxDQUFDLENBQUM7U0FDcEM7SUFDSCxDQUFDO0NBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBGb3JtQ29udHJvbCB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcclxuXHJcbi8qKlxyXG4gKiBCYXNlIEVudHJ5IHNlYXJjaCBmaWx0ZXIgaW5wdXQgY29tcG9uZW50LlxyXG4gKi9cclxuZXhwb3J0IGNsYXNzIFNlYXJjaEZpbHRlckJhc2U8VD4ge1xyXG4gIC8qKiBVbmlxdWUgc2VhcmNoLWZpbHRlciBpbnB1dCBrZXkgKi9cclxuICBrZXk6IHN0cmluZztcclxuICAvKiogRGVmYXVsdCB2YWx1ZSB0byBiZSBkaXNwbGF5ZWQvc2VsZWN0ZWQgaW4gdGhlIGlucHV0IGNvbnRyb2wgKi9cclxuICB2YWx1ZTogVCB8IHVuZGVmaW5lZDtcclxuICAvKiogRGVmYXVsdCAqL1xyXG4gIGxhYmVsOiBzdHJpbmc7XHJcbiAgLyoqIExhYmVsIHRleHQgdG8gYmUgZGlzcGxheWVkIGZvciB0aGUgc2VhcmNoLWZpbHRlciBpbnB1dCBjb250cm9sICovXHJcbiAgcGxhY2Vob2xkZXI6IHN0cmluZztcclxuICAvKiogVHlwZSBvZiBpbnB1dCBjb250cm9sIGUuZy4gJ2VtYWlsJyAqL1xyXG4gIHR5cGU6IHN0cmluZztcclxuICBvcmRlcjogbnVtYmVyO1xyXG4gIC8qKiBDb250cm9sIHR5cGUgdG8gYmUgb3ZlcnJpZGVuIGluIGltcGxlbWVudGluZyBjbGFzcywgdXNlZCB0byByZW5kZXIgdGhlIHByb3BlciBpbnB1dCB0eXBlIGUuZy4gJ3RleHRib3gnICovXHJcbiAgY29udHJvbFR5cGU6IHN0cmluZztcclxuICAvKiogTWF4IHRleHQgbGVuZ3RoIHRvIGJlIGVudGVyZCBpbiB0aGUgaW5wdXQgY29tcG9uZW50IChkZWZhdWx0IGlzIDI1NikgKi9cclxuICBtYXhMZW5ndGg6IG51bWJlcjtcclxuICBmb3JtQ29udHJvbDogRm9ybUNvbnRyb2w8VD47XHJcblxyXG4gIGNvbnN0cnVjdG9yKG9wdGlvbnM6IFBhcnRpYWw8U2VhcmNoRmlsdGVyQmFzZTxUPj4gPSB7fSkge1xyXG4gICAgdGhpcy52YWx1ZSA9IG9wdGlvbnMudmFsdWU7XHJcbiAgICB0aGlzLmtleSA9IG9wdGlvbnMua2V5IHx8ICcnO1xyXG4gICAgdGhpcy5sYWJlbCA9IG9wdGlvbnMubGFiZWwgfHwgJyc7XHJcbiAgICB0aGlzLnBsYWNlaG9sZGVyID0gb3B0aW9ucy5wbGFjZWhvbGRlciB8fCAnJztcclxuICAgIHRoaXMub3JkZXIgPSBvcHRpb25zLm9yZGVyID09PSB1bmRlZmluZWQgPyAxIDogb3B0aW9ucy5vcmRlcjtcclxuICAgIHRoaXMuY29udHJvbFR5cGUgPSBvcHRpb25zLmNvbnRyb2xUeXBlIHx8ICcnO1xyXG4gICAgdGhpcy50eXBlID0gb3B0aW9ucy50eXBlIHx8ICcnO1xyXG4gICAgdGhpcy5tYXhMZW5ndGggPSBvcHRpb25zLm1heExlbmd0aCB8fCAyNTY7XHJcbiAgfVxyXG5cclxuICBzZXRWYWx1ZSh2YWx1ZTogVCB8IHVuZGVmaW5lZCkge1xyXG4gICAgdGhpcy52YWx1ZSA9IHZhbHVlO1xyXG4gICAgaWYgKHRoaXMuZm9ybUNvbnRyb2wpIHtcclxuICAgICAgdGhpcy5mb3JtQ29udHJvbC5wYXRjaFZhbHVlKHZhbHVlKTtcclxuICAgIH1cclxuICB9XHJcbn1cclxuIl19
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "@angular/common";
|
|
4
|
-
import * as i2 from "@angular/forms";
|
|
5
|
-
import * as i3 from "@angular/material/form-field";
|
|
6
|
-
import * as i4 from "@angular/material/input";
|
|
7
|
-
export class EntrySearchFilterInputComponent {
|
|
8
|
-
}
|
|
9
|
-
EntrySearchFilterInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: EntrySearchFilterInputComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
10
|
-
EntrySearchFilterInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: EntrySearchFilterInputComponent, selector: "entry-search-filter-input", inputs: { searchFilter: "searchFilter", form: "form" }, ngImport: i0, template: "<mat-form-field [formGroup]=\"form\">\r\n <mat-label [attr.for]=\"searchFilter.key\">{{searchFilter.label}}</mat-label>\r\n\r\n <div [ngSwitch]=\"searchFilter.controlType\">\r\n\r\n <input *ngSwitchCase=\"'textbox'\" [formControlName]=\"searchFilter.key\" [id]=\"searchFilter.key\"\r\n [type]=\"searchFilter.type\" matInput [placeholder]=\"searchFilter.placeholder\" [maxlength]=\"searchFilter.maxLength\">\r\n\r\n </div>\r\n</mat-form-field>", dependencies: [{ kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.MaxLengthValidator, selector: "[maxlength][formControlName],[maxlength][formControl],[maxlength][ngModel]", inputs: ["maxlength"] }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "component", type: i3.MatFormField, selector: "mat-form-field", inputs: ["color", "appearance", "hideRequiredMarker", "hintLabel", "floatLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i3.MatLabel, selector: "mat-label" }, { kind: "directive", type: i4.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly"], exportAs: ["matInput"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
11
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: EntrySearchFilterInputComponent, decorators: [{
|
|
12
|
-
type: Component,
|
|
13
|
-
args: [{ selector: 'entry-search-filter-input', changeDetection: ChangeDetectionStrategy.OnPush, template: "<mat-form-field [formGroup]=\"form\">\r\n <mat-label [attr.for]=\"searchFilter.key\">{{searchFilter.label}}</mat-label>\r\n\r\n <div [ngSwitch]=\"searchFilter.controlType\">\r\n\r\n <input *ngSwitchCase=\"'textbox'\" [formControlName]=\"searchFilter.key\" [id]=\"searchFilter.key\"\r\n [type]=\"searchFilter.type\" matInput [placeholder]=\"searchFilter.placeholder\" [maxlength]=\"searchFilter.maxLength\">\r\n\r\n </div>\r\n</mat-form-field>" }]
|
|
14
|
-
}], propDecorators: { searchFilter: [{
|
|
15
|
-
type: Input
|
|
16
|
-
}], form: [{
|
|
17
|
-
type: Input
|
|
18
|
-
}] } });
|
|
19
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VhcmNoLWZpbHRlci1pbnB1dC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL2VudHJ5LWNvbXBvbmVudHMvc2VhcmNoLWZpbHRlci9zZWFyY2gtZmlsdGVyLWlucHV0LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL2xpYnMvZW50cnktY29tcG9uZW50cy9zZWFyY2gtZmlsdGVyL3NlYXJjaC1maWx0ZXItaW5wdXQuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7Ozs7OztBQVMxRSxNQUFNLE9BQU8sK0JBQStCOzs0SEFBL0IsK0JBQStCO2dIQUEvQiwrQkFBK0IseUhDVDVDLHVjQVNpQjsyRkRBSiwrQkFBK0I7a0JBTDNDLFNBQVM7K0JBQ0UsMkJBQTJCLG1CQUVwQix1QkFBdUIsQ0FBQyxNQUFNOzhCQUl0QyxZQUFZO3NCQUFwQixLQUFLO2dCQUVHLElBQUk7c0JBQVosS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IFVudHlwZWRGb3JtR3JvdXAgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XHJcbmltcG9ydCB7IFNlYXJjaEZpbHRlckJhc2UgfSBmcm9tICcuL3NlYXJjaC1maWx0ZXItYmFzZSc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2VudHJ5LXNlYXJjaC1maWx0ZXItaW5wdXQnLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9zZWFyY2gtZmlsdGVyLWlucHV0LmNvbXBvbmVudC5odG1sJyxcclxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaFxyXG59KVxyXG5leHBvcnQgY2xhc3MgRW50cnlTZWFyY2hGaWx0ZXJJbnB1dENvbXBvbmVudCB7XHJcbiAgLyoqIENvbmZpZ3VyYXRpb24gb2YgdGhlIHNlYXJjaCBmaWx0ZXJzIGlucHV0cyB0aGF0IHdpbGwgYmUgZGlzcGxheWVkIGluIHRoZSBzZWFyY2gtZmlsdGVyIGNvbXBvbmVudC4gKi9cclxuICBASW5wdXQoKSBzZWFyY2hGaWx0ZXIhOiBTZWFyY2hGaWx0ZXJCYXNlPHN0cmluZz47XHJcbiAgLyoqIEZvcm0gZ3JvdXAgdG8gd2hpY2ggdGhlIHNlYXJjaC1maWx0ZXIgaW5wdXQgY29tcG9uZW50IHdpbGwgYmUgYWRkZWQuICovXHJcbiAgQElucHV0KCkgZm9ybSE6IFVudHlwZWRGb3JtR3JvdXA7XHJcbn1cclxuIiwiPG1hdC1mb3JtLWZpZWxkIFtmb3JtR3JvdXBdPVwiZm9ybVwiPlxyXG4gIDxtYXQtbGFiZWwgW2F0dHIuZm9yXT1cInNlYXJjaEZpbHRlci5rZXlcIj57e3NlYXJjaEZpbHRlci5sYWJlbH19PC9tYXQtbGFiZWw+XHJcblxyXG4gIDxkaXYgW25nU3dpdGNoXT1cInNlYXJjaEZpbHRlci5jb250cm9sVHlwZVwiPlxyXG5cclxuICAgIDxpbnB1dCAqbmdTd2l0Y2hDYXNlPVwiJ3RleHRib3gnXCIgW2Zvcm1Db250cm9sTmFtZV09XCJzZWFyY2hGaWx0ZXIua2V5XCIgW2lkXT1cInNlYXJjaEZpbHRlci5rZXlcIlxyXG4gICAgICBbdHlwZV09XCJzZWFyY2hGaWx0ZXIudHlwZVwiIG1hdElucHV0IFtwbGFjZWhvbGRlcl09XCJzZWFyY2hGaWx0ZXIucGxhY2Vob2xkZXJcIiBbbWF4bGVuZ3RoXT1cInNlYXJjaEZpbHRlci5tYXhMZW5ndGhcIj5cclxuXHJcbiAgPC9kaXY+XHJcbjwvbWF0LWZvcm0tZmllbGQ+Il19
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VhcmNoLWZpbHRlci1wYXJhbXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL2VudHJ5LWNvbXBvbmVudHMvc2VhcmNoLWZpbHRlci9zZWFyY2gtZmlsdGVyLXBhcmFtcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXHJcbiAqIFNlYXJjaEZpbHRlclBhcmFtcyBhcmUgdGhlIHNhbWUgdHlwZSBhcyBAYW5ndWxhci9yb3V0ZXIgdHlwZSBQYXJhbXMsXHJcbiAqIGNvbnRhaW5pbmcgYSBjb2xsZWN0aW9uIG9mIHF1ZXJ5IFVSTCBwYXJhbWV0ZXJzIGZvciBlYXN5IGludGVncmF0aW9uLlxyXG4gKi9cclxuZXhwb3J0IHR5cGUgU2VhcmNoRmlsdGVyUGFyYW1zID0ge1xyXG4gIFtrZXk6IHN0cmluZ106IGFueTtcclxufTtcclxuIl19
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { SearchFilterBase } from './search-filter-base';
|
|
2
|
-
export class SearchFilterInput extends SearchFilterBase {
|
|
3
|
-
constructor() {
|
|
4
|
-
super(...arguments);
|
|
5
|
-
this.controlType = 'textbox';
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VhcmNoLWZpbHRlci10ZXh0Ym94LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbGlicy9lbnRyeS1jb21wb25lbnRzL3NlYXJjaC1maWx0ZXIvc2VhcmNoLWZpbHRlci10ZXh0Ym94LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLHNCQUFzQixDQUFDO0FBRXhELE1BQU0sT0FBTyxpQkFBa0IsU0FBUSxnQkFBd0I7SUFBL0Q7O1FBQ1csZ0JBQVcsR0FBRyxTQUFTLENBQUM7SUFDbkMsQ0FBQztDQUFBIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgU2VhcmNoRmlsdGVyQmFzZSB9IGZyb20gJy4vc2VhcmNoLWZpbHRlci1iYXNlJztcclxuXHJcbmV4cG9ydCBjbGFzcyBTZWFyY2hGaWx0ZXJJbnB1dCBleHRlbmRzIFNlYXJjaEZpbHRlckJhc2U8c3RyaW5nPiB7XHJcbiAgb3ZlcnJpZGUgY29udHJvbFR5cGUgPSAndGV4dGJveCc7XHJcbn1cclxuIl19
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { UntypedFormGroup } from '@angular/forms';
|
|
2
|
-
import { SearchFilterBase } from './search-filter-base';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class EntrySearchFilterInputComponent {
|
|
5
|
-
/** Configuration of the search filters inputs that will be displayed in the search-filter component. */
|
|
6
|
-
searchFilter: SearchFilterBase<string>;
|
|
7
|
-
/** Form group to which the search-filter input component will be added. */
|
|
8
|
-
form: UntypedFormGroup;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EntrySearchFilterInputComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EntrySearchFilterInputComponent, "entry-search-filter-input", never, { "searchFilter": "searchFilter"; "form": "form"; }, {}, never, never, false>;
|
|
11
|
-
}
|
|
File without changes
|