@dev-tcloud/tcloud-ui 2.4.11 → 2.4.12

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.
@@ -12,7 +12,7 @@ export declare class TCloudUiAccordionComponent implements OnInit, OnDestroy {
12
12
  private _show;
13
13
  set show(v: boolean);
14
14
  get show(): boolean;
15
- onAction: EventEmitter<"close" | "open">;
15
+ onAction: EventEmitter<"open" | "close">;
16
16
  private _loading;
17
17
  /**
18
18
  * loading - boolean - Coloca o modal em modo de carregamento - default false
@@ -1,6 +1,7 @@
1
1
  export interface TCDataFilters {
2
2
  description: string;
3
3
  searchIn: string;
4
+ notIn?: boolean;
4
5
  type?: TCFiltersType;
5
6
  name?: string;
6
7
  id?: string;
@@ -33,5 +34,6 @@ export declare enum TCCondition {
33
34
  gte = "gte",
34
35
  lte = "lte",
35
36
  lt = "lt",
36
- gt = "gt"
37
+ gt = "gt",
38
+ notEqual = "notEqual"
37
39
  }
@@ -57,7 +57,7 @@ export declare class TCloudUiModalComponent implements OnInit, OnDestroy {
57
57
  openChange: EventEmitter<boolean>;
58
58
  toConfirm: EventEmitter<boolean>;
59
59
  toCancel: EventEmitter<boolean>;
60
- toAction: EventEmitter<"cancel" | "close" | "confirmed">;
60
+ toAction: EventEmitter<"close" | "confirmed" | "cancel">;
61
61
  constructor(tcloudModalService: TcloudModalService);
62
62
  ngOnInit(): void;
63
63
  toClose(action?: any | undefined): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dev-tcloud/tcloud-ui",
3
- "version": "2.4.11",
3
+ "version": "2.4.12",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^16.2.0",
6
6
  "@angular/core": "^16.2.0"