novo-elements 7.4.0-next.3 → 7.4.1-next.2

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,6 +1,6 @@
1
1
  {
2
2
  "name": "novo-elements",
3
- "version": "7.4.0-next.3",
3
+ "version": "7.4.1-next.2",
4
4
  "sideEffects": true,
5
5
  "peerDependencies": {
6
6
  "@angular/animations": ">=10",
@@ -61,7 +61,7 @@ export declare class NovoChipInput implements NovoChipTextControl, OnChanges {
61
61
  _onInput(): void;
62
62
  /** Focuses the input. */
63
63
  focus(options?: FocusOptions): void;
64
- /** Focuses the input. */
64
+ /** Clears the input. */
65
65
  clearValue(): void;
66
66
  /** Checks whether a keycode is one of the configured separators. */
67
67
  private _isSeparatorKey;
@@ -1,15 +1,12 @@
1
1
  import { ChangeDetectorRef, ElementRef } from '@angular/core';
2
2
  import { DomSanitizer } from '@angular/platform-browser';
3
3
  import { NovoLabelService } from '../../../../services/novo-label-service';
4
- import { BasePickerResults } from '../base-picker-results/BasePickerResults';
4
+ import { PickerResults } from '../picker-results';
5
5
  import * as i0 from "@angular/core";
6
- export declare class WorkersCompCodesPickerResults extends BasePickerResults {
6
+ export declare class WorkersCompCodesPickerResults extends PickerResults {
7
7
  private sanitizer;
8
8
  labels: NovoLabelService;
9
- active: boolean;
10
- get isHidden(): boolean;
11
9
  constructor(element: ElementRef, sanitizer: DomSanitizer, labels: NovoLabelService, ref: ChangeDetectorRef);
12
- getListElement(): any;
13
10
  sanitizeHTML(compCode: string, name: string): import("@angular/platform-browser").SafeHtml;
14
11
  static ɵfac: i0.ɵɵFactoryDeclaration<WorkersCompCodesPickerResults, never>;
15
12
  static ɵcmp: i0.ɵɵComponentDeclaration<WorkersCompCodesPickerResults, "workers-comp-codes-picker-results", never, {}, {}, never, never>;
@@ -2,15 +2,14 @@ import { AbstractControl } from '@angular/forms';
2
2
  import { AbstractConditionFieldDef } from './abstract-condition.definition';
3
3
  import * as i0 from "@angular/core";
4
4
  /**
5
- * Contruction filters against String fields can be complex. Each "chip" added to the
6
- * condition can be used to indendantly used to query a database. Not all systems support
7
- * quering within a text column, ie sql unless LIKE is enabled. This could result in a
5
+ * Constructing filters against String fields can be complex. Each "chip" added to the
6
+ * condition can be independently used to query a database. Not all systems support
7
+ * querying within a text column, ie sql unless LIKE is enabled. This could result in a
8
8
  * performance penalty.
9
9
  */
10
10
  export declare class NovoDefaultStringConditionDef extends AbstractConditionFieldDef {
11
11
  separatorKeysCodes: number[];
12
12
  defaultOperator: string;
13
- model: string;
14
13
  getValue(formGroup: AbstractControl): any[];
15
14
  add(event: any, formGroup: AbstractControl): void;
16
15
  remove(valueToRemove: string, formGroup: AbstractControl): void;