coer-elements 2.0.32 → 2.0.34

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.
@@ -2,7 +2,6 @@ import { AfterViewInit } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class CoerButton implements AfterViewInit {
4
4
  protected readonly _id: string;
5
- protected readonly _isReady: import("@angular/core").WritableSignal<boolean>;
6
5
  private _element;
7
6
  id: import("@angular/core").InputSignal<string>;
8
7
  color: import("@angular/core").InputSignal<"default" | "primary" | "secondary" | "success" | "warning" | "danger" | "navigation" | "information" | "dark" | "light">;
@@ -1,12 +1,15 @@
1
+ import { AfterViewInit } from '@angular/core';
1
2
  import { FormGroup } from '@angular/forms';
2
3
  import { CoerAlert } from 'coer-elements/tools';
3
4
  import * as i0 from "@angular/core";
4
- export declare class CoerForm {
5
+ export declare class CoerForm implements AfterViewInit {
5
6
  protected readonly _alert: CoerAlert;
7
+ protected readonly _isReady: import("@angular/core").WritableSignal<boolean>;
6
8
  formGroup: import("@angular/core").InputSignal<FormGroup<any>>;
7
9
  isLoading: import("@angular/core").InputSignal<boolean>;
8
10
  isDisabled: import("@angular/core").InputSignal<boolean>;
9
11
  isReadonly: import("@angular/core").InputSignal<boolean>;
12
+ ngAfterViewInit(): void;
10
13
  protected get _isDisabled(): boolean;
11
14
  /** Mark all controls as touched */
12
15
  TouchForm(): void;
@@ -12,6 +12,7 @@ export declare class CoerPageTitle {
12
12
  readonly onClickInformation: import("@angular/core").OutputEmitterRef<void>;
13
13
  constructor();
14
14
  protected _tooltip: import("@angular/core").Signal<string>;
15
+ protected _breadcrumbs: import("@angular/core").Signal<any[]>;
15
16
  /** */
16
17
  protected _ClickInformation(): void;
17
18
  static ɵfac: i0.ɵɵFactoryDeclaration<CoerPageTitle, never>;
@@ -1,8 +1,7 @@
1
- import { AfterContentInit } from '@angular/core';
2
1
  import { IMenu, IMenuOptionSelected } from 'coer-elements/interfaces';
3
2
  import { Router } from '@angular/router';
4
3
  import * as i0 from "@angular/core";
5
- export declare class CoerMenuOption implements AfterContentInit {
4
+ export declare class CoerMenuOption {
6
5
  protected readonly _router: Router;
7
6
  level: import("@angular/core").InputSignal<number>;
8
7
  label: import("@angular/core").InputSignal<string>;
@@ -10,7 +9,6 @@ export declare class CoerMenuOption implements AfterContentInit {
10
9
  path: import("@angular/core").InputSignal<string | undefined>;
11
10
  tree: import("@angular/core").InputSignal<IMenu[]>;
12
11
  clickMenuOption: import("@angular/core").OutputEmitterRef<IMenuOptionSelected>;
13
- ngAfterContentInit(): void;
14
12
  protected _icon: import("@angular/core").Signal<string>;
15
13
  protected _path: import("@angular/core").Signal<string>;
16
14
  protected _tree: import("@angular/core").Signal<IMenu[]>;
@@ -1,12 +1,11 @@
1
- import { OnDestroy, EffectRef, AfterViewInit } from '@angular/core';
1
+ import { OnDestroy, EffectRef } from '@angular/core';
2
2
  import { ControlValue } from 'coer-elements/tools';
3
3
  import { MatSlideToggle } from '@angular/material/slide-toggle';
4
4
  import * as i0 from "@angular/core";
5
- export declare class CoerSwitch extends ControlValue implements AfterViewInit, OnDestroy {
5
+ export declare class CoerSwitch extends ControlValue implements OnDestroy {
6
6
  protected coerSwitch: import("@angular/core").Signal<MatSlideToggle>;
7
7
  protected _value: boolean;
8
8
  protected readonly _id: string;
9
- protected readonly _isReady: import("@angular/core").WritableSignal<boolean>;
10
9
  protected readonly _effect: EffectRef;
11
10
  id: import("@angular/core").InputSignal<string>;
12
11
  value: import("@angular/core").InputSignal<boolean | null | undefined>;
@@ -20,7 +19,6 @@ export declare class CoerSwitch extends ControlValue implements AfterViewInit, O
20
19
  tooltipPosition: import("@angular/core").InputSignal<"left" | "right" | "top" | "bottom">;
21
20
  onChange: import("@angular/core").OutputEmitterRef<boolean>;
22
21
  constructor();
23
- ngAfterViewInit(): void;
24
22
  ngOnDestroy(): void;
25
23
  protected _tooltip: import("@angular/core").Signal<string>;
26
24
  protected _tooltipPosition: import("@angular/core").Signal<"left" | "right" | "above" | "below">;
@@ -9,7 +9,6 @@ export declare class CoerTextBox extends ControlValue implements AfterViewInit,
9
9
  protected readonly _id: string;
10
10
  protected readonly _isLoadingEvent: import("@angular/core").WritableSignal<boolean>;
11
11
  protected readonly _externalButton: import("@angular/core").WritableSignal<IBoxButton>;
12
- protected readonly _isReady: import("@angular/core").WritableSignal<boolean>;
13
12
  protected readonly _effectExternalButton: EffectRef;
14
13
  protected readonly _effectValue: EffectRef;
15
14
  private element;