@dev-tcloud/tcloud-ui 5.3.0 → 5.3.1
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 +92 -3
- package/fesm2022/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/lib/revitalizacao/charts/echarts.d.ts +18 -0
- package/lib/revitalizacao/components/tc-rev-tab-group/tc-rev-tab-item/tc-rev-tab-item.component.d.ts +2 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export type BarChartData = {
|
|
2
|
+
xAxisName: string;
|
|
3
|
+
xAxisLabels: string[] | number[];
|
|
4
|
+
seriesData: {
|
|
5
|
+
serieName: string;
|
|
6
|
+
values: any[];
|
|
7
|
+
}[];
|
|
8
|
+
tooltipFormatter?: Function;
|
|
9
|
+
yAxisLabelFormatter?: Function;
|
|
10
|
+
xAxisLabelFormatter?: (value: any) => string;
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @param echarts echars instance
|
|
15
|
+
* @param chartData chart info to build the config
|
|
16
|
+
* @returns a bar chart config for echarts with the given data
|
|
17
|
+
*/
|
|
18
|
+
export declare function echartBarConfig(echarts: any, chartData: BarChartData): any;
|
package/lib/revitalizacao/components/tc-rev-tab-group/tc-rev-tab-item/tc-rev-tab-item.component.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export declare class TcRevTabItemComponent {
|
|
|
4
4
|
active: import("@angular/core").InputSignal<boolean>;
|
|
5
5
|
url: import("@angular/core").InputSignal<string>;
|
|
6
6
|
disabled: import("@angular/core").InputSignal<boolean>;
|
|
7
|
+
fullWidth: import("@angular/core").InputSignal<boolean>;
|
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<TcRevTabItemComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TcRevTabItemComponent, "tc-rev-tab-item", never, { "active": { "alias": "active"; "required": false; "isSignal": true; }; "url": { "alias": "url"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "onClick": "onClick"; }, never, ["*"], true, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TcRevTabItemComponent, "tc-rev-tab-item", never, { "active": { "alias": "active"; "required": false; "isSignal": true; }; "url": { "alias": "url"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "fullWidth": { "alias": "fullWidth"; "required": false; "isSignal": true; }; }, { "onClick": "onClick"; }, never, ["*"], true, never>;
|
|
9
10
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -92,6 +92,7 @@ export * from './lib/revitalizacao/components/tc-rev-dropdown-grouped/tc-rev-dro
|
|
|
92
92
|
export * from './lib/revitalizacao/components/tc-rev-dropdown-multi-level/tc-rev-dropdown-multi-level.component';
|
|
93
93
|
export * from './lib/revitalizacao/components/tc-rev-dropdown-multi/tc-rev-dropdown-multi.component';
|
|
94
94
|
export * from './lib/revitalizacao/components/tc-rev-dropdown/tc-rev-dropdown.component';
|
|
95
|
+
export * from './lib/revitalizacao/charts/echarts';
|
|
95
96
|
export * from './lib/revitalizacao/components/tc-rev-empty-content/tc-rev-empty-content.component';
|
|
96
97
|
export * from './lib/revitalizacao/components/tc-rev-faq/tc-rev-faq.component';
|
|
97
98
|
export * from './lib/revitalizacao/components/tc-rev-icon-button/tc-rev-icon-button.directive';
|