structra-ui 0.1.22 → 0.1.23

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": "structra-ui",
3
- "version": "0.1.22",
3
+ "version": "0.1.23",
4
4
  "description": "Biblioteca de componentes Angular da StructraLab (UI reutilizável).",
5
5
  "homepage": "https://structralab.com/",
6
6
  "license": "MIT",
@@ -1,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
- import { ChangeDetectorRef, Injector, DestroyRef, EventEmitter, OnChanges, OnInit, SimpleChanges, DoCheck, TemplateRef, OnDestroy, AfterContentInit, QueryList, AfterViewInit, ElementRef } from '@angular/core';
2
+ import { ChangeDetectorRef, Injector, DestroyRef, EventEmitter, OnChanges, OnInit, SimpleChanges, DoCheck, TemplateRef, OnDestroy, AfterContentInit, QueryList, AfterViewInit, Signal, ElementRef } from '@angular/core';
3
3
  import { ControlValueAccessor, AbstractControl, NgControl, ValidatorFn } from '@angular/forms';
4
4
  import { MatDatepicker } from '@angular/material/datepicker';
5
5
  import * as _angular_cdk_overlay from '@angular/cdk/overlay';
@@ -8,7 +8,6 @@ import { ICellRendererParams, ColDef, GetRowIdParams, GridReadyEvent } from 'ag-
8
8
  import { ICellRendererAngularComp } from 'ag-grid-angular';
9
9
  import { DialogRef } from '@angular/cdk/dialog';
10
10
  import { Observable } from 'rxjs';
11
- import * as structra_ui from 'structra-ui';
12
11
 
13
12
  /** Marcador de pacote publicado como `structra-ui`. */
14
13
  declare const STRUCTRA_UI: "structra-ui";
@@ -2337,8 +2336,8 @@ declare class ToastService {
2337
2336
  declare class ToastHostComponent {
2338
2337
  readonly toastService: ToastService;
2339
2338
  readonly theme: AppThemeService;
2340
- readonly topToasts: i0.Signal<structra_ui.ToastInstance[]>;
2341
- readonly bottomToasts: i0.Signal<structra_ui.ToastInstance[]>;
2339
+ readonly topToasts: Signal<ToastInstance[]>;
2340
+ readonly bottomToasts: Signal<ToastInstance[]>;
2342
2341
  dismiss(id: string): void;
2343
2342
  action(id: string): void;
2344
2343
  static ɵfac: i0.ɵɵFactoryDeclaration<ToastHostComponent, never>;