@dev-tcloud/tcloud-ui 5.3.2 → 5.4.0

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.
@@ -30,6 +30,12 @@ export declare class TcRevDropdownComponent {
30
30
  ngOnInit(): void;
31
31
  toggleDropdown(): void;
32
32
  selectOption(option: DropdownOption): void;
33
+ /**
34
+ * Verifica se o texto de uma opção na lista está elipsado
35
+ * @param text - Texto a ser verificado
36
+ * @returns true se o texto estiver elipsado
37
+ */
38
+ isOptionEllipsed(text: string): boolean;
33
39
  static ɵfac: i0.ɵɵFactoryDeclaration<TcRevDropdownComponent, never>;
34
40
  static ɵcmp: i0.ɵɵComponentDeclaration<TcRevDropdownComponent, "tc-rev-dropdown", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": true; "isSignal": true; }; "initialValue": { "alias": "initialValue"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "optionSelected": "optionSelected"; }, never, never, true, never>;
35
41
  }
@@ -7,6 +7,7 @@ export declare class TcRevTabGroupComponent {
7
7
  ngOnInit(): void;
8
8
  private checkCarouselOverflow;
9
9
  scrollTabsCarousel(direction: 'left' | 'right'): void;
10
+ private checkResponsiveMode;
10
11
  static ɵfac: i0.ɵɵFactoryDeclaration<TcRevTabGroupComponent, never>;
11
12
  static ɵcmp: i0.ɵɵComponentDeclaration<TcRevTabGroupComponent, "tc-rev-tab-group", never, {}, {}, never, ["*"], true, never>;
12
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dev-tcloud/tcloud-ui",
3
- "version": "5.3.2",
3
+ "version": "5.4.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.2.14",
6
6
  "@angular/core": "^19.2.14"
@@ -1,3 +1,8 @@
1
+
2
+ :root{
3
+ --breakpoint-mobile: 480px;
4
+ }
5
+
1
6
  .cursor-pointer
2
7
  {
3
8
  cursor: pointer;