novo-elements 6.0.0 → 6.0.1

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": "6.0.0",
3
+ "version": "6.0.1",
4
4
  "sideEffects": true,
5
5
  "peerDependencies": {
6
6
  "@angular/animations": ">=10",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "schematics",
3
- "version": "6.0.0",
3
+ "version": "6.0.1",
4
4
  "description": "A novo-element schematics",
5
5
  "scripts": {
6
6
  "build": "tsc -p tsconfig.json",
@@ -14,8 +14,6 @@ export declare class NovoFormGroup extends FormGroup {
14
14
  [key: string]: any;
15
15
  };
16
16
  novoControls: any[];
17
- get value(): any;
18
- set value(v: any);
19
17
  enableAllControls(): void;
20
18
  disableAllControls(): void;
21
19
  }
@@ -9,7 +9,6 @@ import { NovoControlConfig } from '../../../form/controls/BaseControl';
9
9
  export declare class BasePickerResults {
10
10
  _term: string;
11
11
  selected: Array<any>;
12
- matches: any;
13
12
  hasError: boolean;
14
13
  isLoading: boolean;
15
14
  isStatic: boolean;
@@ -25,6 +24,9 @@ export declare class BasePickerResults {
25
24
  optionsFunctionHasChanged: boolean;
26
25
  private selectingMatches;
27
26
  private scrollHandler;
27
+ _matches: Array<any>;
28
+ set matches(m: Array<any>);
29
+ get matches(): Array<any>;
28
30
  constructor(element: ElementRef, ref: ChangeDetectorRef);
29
31
  cleanUp(): void;
30
32
  onScrollDown(event: WheelEvent): void;
@@ -16,10 +16,7 @@ export declare class NovoStepper extends CdkStepper implements AfterContentInit
16
16
  /** The list of step headers of the steps in the stepper. */
17
17
  _stepHeader: QueryList<FocusableOption>;
18
18
  /** Steps that the stepper holds. */
19
- _steps: QueryList<NovoStep>;
20
- /** Steps that belong to the current stepper, excluding ones from nested steppers. */
21
- get steps(): QueryList<NovoStep>;
22
- set steps(value: QueryList<NovoStep>);
19
+ steps: QueryList<NovoStep>;
23
20
  /** Custom icon overrides passed in by the consumer. */
24
21
  _icons: QueryList<NovoIconComponent>;
25
22
  /** Consumer-specified template-refs to be used to override the header icons. */
@@ -1,5 +1,9 @@
1
1
  export declare class BaseRenderer {
2
- data: any;
3
- value: any;
2
+ _data: any;
3
+ _value: any;
4
4
  meta: any;
5
+ get data(): any;
6
+ set data(d: any);
7
+ get value(): any;
8
+ set value(v: any);
5
9
  }
@@ -2,7 +2,7 @@ import { NovoLabelService } from '../../../../services/novo-label-service';
2
2
  import { BaseRenderer } from '../base-renderer/BaseRenderer';
3
3
  export declare class DateCell extends BaseRenderer {
4
4
  labels: NovoLabelService;
5
- value: any;
5
+ set value(v: any);
6
6
  constructor(labels: NovoLabelService);
7
7
  getFormattedDate(): string;
8
8
  }
@@ -11,7 +11,7 @@ export interface INovoDropdownCellConfig {
11
11
  }
12
12
  export declare class NovoDropdownCell extends BaseRenderer implements OnInit {
13
13
  meta: any;
14
- value: any;
14
+ set value(v: any);
15
15
  ngOnInit(): void;
16
16
  onClick(config: any, option: any, value: any): void;
17
17
  }