@verisoft/ui-core 21.0.8 → 21.0.9

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/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@verisoft/ui-core",
3
- "version": "21.0.8",
3
+ "version": "21.0.9",
4
4
  "peerDependencies": {
5
- "@verisoft/core": "~21.0.0",
6
- "@verisoft/store": "~21.0.0",
7
- "@angular/core": "~21.0.6",
8
- "@angular/common": "~21.0.6",
9
- "@angular/forms": "~21.0.6",
10
- "@angular/platform-browser": "~21.0.6",
11
- "@angular/router": "~21.0.6",
5
+ "@verisoft/core": "^21.0.0",
6
+ "@verisoft/store": "^21.0.0",
7
+ "@angular/core": "^21.1.0",
8
+ "@angular/common": "^21.1.0",
9
+ "@angular/forms": "^21.1.0",
10
+ "@angular/platform-browser": "^21.1.0",
11
+ "@angular/router": "^21.1.0",
12
12
  "@ngrx/store": "~21.0.0",
13
13
  "@ngx-translate/core": "^17.0.0",
14
14
  "rxjs": "~7.8.0"
@@ -1,10 +1,10 @@
1
1
  import * as i0 from '@angular/core';
2
2
  import { SimpleChanges, EventEmitter, QueryList, InjectionToken, OnInit, OnChanges, OnDestroy, AfterViewInit, ChangeDetectorRef, ViewChild, InputSignal, Type, TemplateRef, Signal, PipeTransform } from '@angular/core';
3
3
  import * as _verisoft_core from '@verisoft/core';
4
- import { FilterEvent, LazyLoadEvent, RequestParams, DatasourceType, Sort, SortDirectionType } from '@verisoft/core';
4
+ import { FilterEvent, LazyLoadEvent, RequestParams, DatasourceType, SortDirectionType, Sort } from '@verisoft/core';
5
5
  import * as rxjs from 'rxjs';
6
6
  import { Observable, BehaviorSubject, Subject } from 'rxjs';
7
- import { NgControl, ControlValueAccessor, FormControl, FormGroup, ValidatorFn, AbstractControl, ValidationErrors } from '@angular/forms';
7
+ import { NgControl, ControlValueAccessor, FormControl, FormGroup, ValidatorFn, ValidationErrors, AbstractControl } from '@angular/forms';
8
8
  import { CanDeactivate, ActivatedRoute, Router, Params } from '@angular/router';
9
9
  import { Store } from '@ngrx/store';
10
10
  import { SafeHtml } from '@angular/platform-browser';
@@ -145,12 +145,6 @@ interface CommonIcons {
145
145
  check: string;
146
146
  envelope: string;
147
147
  loader: string;
148
- file: string;
149
- map: string;
150
- arrowCounterclockwise: string;
151
- folder: string;
152
- eye: string;
153
- box: string;
154
148
  }
155
149
 
156
150
  declare function downloadText(filename: string, text: string, mimeType?: string | undefined): void;
@@ -181,6 +175,7 @@ interface ActionButtonGroupCore {
181
175
  menuIconPos: IconPositionType;
182
176
  menuIcon: string;
183
177
  label?: string;
178
+ showLabels: boolean;
184
179
  }
185
180
 
186
181
  declare abstract class BaseInputControls<T> {
@@ -589,6 +584,9 @@ interface FilterCore extends ControlValueAccessor {
589
584
  showFilters: boolean;
590
585
  autoBind: boolean;
591
586
  debounceTime?: number;
587
+ filterDetailTitle?: string;
588
+ applyButtonLabel?: string;
589
+ clearButtonLabel?: string;
592
590
  }
593
591
 
594
592
  declare const FORM_FIELD_COMPONENT_TOKEN: InjectionToken<FormFieldCore>;