@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.
- package/fesm2022/dev-tcloud-tcloud-ui.mjs +127 -93
- package/fesm2022/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/lib/revitalizacao/components/tc-rev-dropdown/tc-rev-dropdown.component.d.ts +6 -0
- package/lib/revitalizacao/components/tc-rev-tab-group/tc-rev-tab-group.component.d.ts +1 -0
- package/package.json +1 -1
- package/scss/tcloud-revitalizacao/components/_tc-rev-util.scss +5 -0
|
@@ -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