@dev-tcloud/tcloud-ui 2.1.5 → 2.1.7

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<"open" | "close">;
15
+ onAction: EventEmitter<"close" | "open">;
16
16
  private _loading;
17
17
  /**
18
18
  * loading - boolean - Coloca o modal em modo de carregamento - default false
@@ -9,6 +9,7 @@ export declare class TCloudUiDataListOptionComponent implements OnInit, OnDestro
9
9
  actived_value: any;
10
10
  select_options: ISelectOptions;
11
11
  private subscription_active;
12
+ disabled: boolean | undefined;
12
13
  value: any | undefined;
13
14
  selected: EventEmitter<any>;
14
15
  constructor(dataListService: DataListService);
@@ -18,5 +19,5 @@ export declare class TCloudUiDataListOptionComponent implements OnInit, OnDestro
18
19
  setSelectOptions(): void;
19
20
  ngOnDestroy(): void;
20
21
  static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiDataListOptionComponent, never>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiDataListOptionComponent, "tcloud-ui-data-list-option", never, { "value": { "alias": "value"; "required": false; }; }, { "selected": "selected"; }, never, ["*"], false, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiDataListOptionComponent, "tcloud-ui-data-list-option", never, { "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "selected": "selected"; }, never, ["*"], false, never>;
22
23
  }
@@ -1,4 +1,5 @@
1
1
  export declare class ISelectOptions {
2
2
  description: any;
3
3
  value: any;
4
+ disabled?: boolean;
4
5
  }
@@ -19,7 +19,7 @@ export declare class TCloudUiRangeDateComponent implements OnInit {
19
19
  constructor();
20
20
  ngOnInit(): void;
21
21
  setOptionsDateTime(): void;
22
- onChangeOptionsDateTime(event: any): void;
22
+ onChangeOptionsDateTime(event?: any): void;
23
23
  getTransformDate(dt: any): any;
24
24
  onChangeStartDateTime(event: any): void;
25
25
  onChangeStopDateTime(event: any): void;
@@ -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<"close" | "confirmed" | "cancel">;
60
+ toAction: EventEmitter<"cancel" | "close" | "confirmed">;
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.1.5",
3
+ "version": "2.1.7",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^16.2.0",
6
6
  "@angular/core": "^16.2.0"
@@ -0,0 +1,3 @@
1
+ .tc-content-fixed-on-loading{
2
+
3
+ }
@@ -21,7 +21,7 @@
21
21
  appearance: none;
22
22
  border-radius: .25rem;
23
23
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
24
-
24
+ height: 40px;
25
25
 
26
26
  &:focus {
27
27
  border-color: var(--tc-primary);