novo-elements 7.13.0 → 7.13.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.13.0",
3
+ "version": "7.13.1-next.2",
4
4
  "sideEffects": true,
5
5
  "peerDependencies": {
6
6
  "@angular/animations": ">=10",
@@ -24,6 +24,7 @@ export declare class NovoCheckboxElement implements ControlValueAccessor, OnInit
24
24
  /** The 'aria-describedby' attribute is read after the element's label and field type. */
25
25
  ariaDescribedby: string;
26
26
  private _uniqueId;
27
+ boxIcon: boolean;
27
28
  id: string;
28
29
  name: string;
29
30
  label: string;
@@ -38,14 +39,14 @@ export declare class NovoCheckboxElement implements ControlValueAccessor, OnInit
38
39
  /** Whether the checkbox is required. */
39
40
  get required(): boolean;
40
41
  set required(value: boolean);
41
- private _required;
42
+ _required: boolean;
42
43
  /** Whether the checkbox is checked. */
43
44
  get checked(): boolean;
44
45
  set checked(value: boolean);
45
- private _checked;
46
+ _checked: boolean;
46
47
  get indeterminate(): boolean;
47
48
  set indeterminate(value: boolean);
48
- private _indeterminate;
49
+ _indeterminate: boolean;
49
50
  /** The native `<input type="checkbox">` element */
50
51
  _inputElement: ElementRef<HTMLInputElement>;
51
52
  /** Event emitted when the checkbox's `checked` value changes. */
@@ -53,7 +54,6 @@ export declare class NovoCheckboxElement implements ControlValueAccessor, OnInit
53
54
  /** Event emitted when the checkbox's `indeterminate` value changes. */
54
55
  readonly indeterminateChange: EventEmitter<boolean>;
55
56
  onSelect: EventEmitter<any>;
56
- boxIcon: boolean;
57
57
  onModelChange: Function;
58
58
  onModelTouched: Function;
59
59
  constructor(_cdr: ChangeDetectorRef, _focusMonitor: FocusMonitor, tabIndex: string);
@@ -6,6 +6,8 @@ export declare class NovoRadioElement implements ControlValueAccessor, OnInit {
6
6
  radioGroup: RadioGroup;
7
7
  private ref;
8
8
  private _uniqueId;
9
+ private _value;
10
+ _checked: boolean;
9
11
  id: string;
10
12
  name: string;
11
13
  tabindex: number;
@@ -16,18 +18,14 @@ export declare class NovoRadioElement implements ControlValueAccessor, OnInit {
16
18
  size: string;
17
19
  icon: string;
18
20
  color: string;
21
+ disabled: boolean;
19
22
  change: EventEmitter<any>;
20
23
  blur: EventEmitter<any>;
21
24
  focus: EventEmitter<any>;
22
- private _checked;
23
- private _value;
24
- private _disabled;
25
25
  get checked(): boolean;
26
26
  set checked(value: boolean);
27
27
  get value(): boolean;
28
28
  set value(value: boolean);
29
- get disabled(): boolean;
30
- set disabled(value: boolean);
31
29
  constructor(radioGroup: RadioGroup, ref: ChangeDetectorRef);
32
30
  ngOnInit(): void;
33
31
  _onInputChange(event: Event): void;
@@ -38,5 +36,5 @@ export declare class NovoRadioElement implements ControlValueAccessor, OnInit {
38
36
  private onTouchedCallback;
39
37
  setDisabledState(disabled: boolean): void;
40
38
  static ɵfac: i0.ɵɵFactoryDeclaration<NovoRadioElement, [{ optional: true; }, null]>;
41
- static ɵcmp: i0.ɵɵComponentDeclaration<NovoRadioElement, "novo-radio", never, { "id": "id"; "name": "name"; "tabindex": "tabindex"; "vertical": "vertical"; "label": "label"; "button": "button"; "theme": "theme"; "size": "size"; "icon": "icon"; "color": "color"; "checked": "checked"; "value": "value"; "disabled": "disabled"; }, { "change": "change"; "blur": "blur"; "focus": "focus"; }, never, ["*"]>;
39
+ static ɵcmp: i0.ɵɵComponentDeclaration<NovoRadioElement, "novo-radio", never, { "id": "id"; "name": "name"; "tabindex": "tabindex"; "vertical": "vertical"; "label": "label"; "button": "button"; "theme": "theme"; "size": "size"; "icon": "icon"; "color": "color"; "disabled": "disabled"; "checked": "checked"; "value": "value"; }, { "change": "change"; "blur": "blur"; "focus": "focus"; }, never, ["*"]>;
42
40
  }