@dev-tcloud/tcloud-ui 6.28.3-beta.0 → 6.28.3
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/docs/tcloud-ui-dialog.md +20 -1
- package/docs/tcloud-ui-el-copy.md +10 -0
- package/fesm2022/dev-tcloud-tcloud-ui.mjs +2090 -127
- package/fesm2022/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/js/tcloud-ui-app.js +1 -1
- package/lib/_modules/tcloud-ui-dialog/models/tcloud-ui-dialog.model.d.ts +3 -1
- package/lib/_modules/tcloud-ui-dialog/tcloud-ui-dialog.component.d.ts +2 -0
- package/lib/revitalizacao/components/tc-rev-breadcrumb/tc-rev-breadcrumb.component.d.ts +12 -0
- package/lib/revitalizacao/components/tc-rev-breadcrumb/tc-rev-breadcrumb.service.d.ts +16 -0
- package/lib/revitalizacao/components/tc-rev-button/tc-rev-button.directive.d.ts +13 -0
- package/lib/revitalizacao/components/tc-rev-calendar/tc-rev-calendar.component.d.ts +43 -0
- package/lib/revitalizacao/components/tc-rev-card/tc-rev-card.component.d.ts +12 -0
- package/lib/revitalizacao/components/tc-rev-card-accordion/tc-rev-card-accordion.component.d.ts +23 -0
- package/lib/revitalizacao/components/tc-rev-card-title/tc-rev-card-title.component.d.ts +6 -0
- package/lib/revitalizacao/components/tc-rev-checkbox/tc-rev-checkbox.directive.d.ts +6 -0
- package/lib/revitalizacao/components/tc-rev-components.module.d.ts +41 -0
- package/lib/revitalizacao/components/tc-rev-dropdown/tc-rev-dropdown.component.d.ts +46 -0
- package/lib/revitalizacao/components/tc-rev-dropdown-grouped/tc-rev-dropdown-grouped.component.d.ts +54 -0
- package/lib/revitalizacao/components/tc-rev-dropdown-multi/tc-rev-dropdown-multi.component.d.ts +44 -0
- package/lib/revitalizacao/components/tc-rev-dropdown-multi-level/tc-rev-dropdown-multi-level.component.d.ts +42 -0
- package/lib/revitalizacao/components/tc-rev-dropdown-multi-level/tc-rev-dropdown-sub-menu/tc-rev-dropdown-sub-menu.component.d.ts +17 -0
- package/lib/revitalizacao/components/tc-rev-empty-content/tc-rev-empty-content.component.d.ts +5 -0
- package/lib/revitalizacao/components/tc-rev-faq/tc-rev-faq.component.d.ts +12 -0
- package/lib/revitalizacao/components/tc-rev-icon-button/tc-rev-icon-button.directive.d.ts +12 -0
- package/lib/revitalizacao/components/tc-rev-input/tc-rev-input.directive.d.ts +10 -0
- package/lib/revitalizacao/components/tc-rev-input-container/tc-rev-input-container.component.d.ts +10 -0
- package/lib/revitalizacao/components/tc-rev-loading/tc-rev-loading.component.d.ts +6 -0
- package/lib/revitalizacao/components/tc-rev-message/tc-rev-message.component.d.ts +7 -0
- package/lib/revitalizacao/components/tc-rev-multi-input/tc-rev-multi-input.component.d.ts +24 -0
- package/lib/revitalizacao/components/tc-rev-pagination/tc-rev-pagination.component.d.ts +14 -0
- package/lib/revitalizacao/components/tc-rev-progress-status-bar/tc-rev-progress-status-bar.component.d.ts +23 -0
- package/lib/revitalizacao/components/tc-rev-radio/tc-rev-radio.directive.d.ts +6 -0
- package/lib/revitalizacao/components/tc-rev-search-input/tc-rev-search-input.component.d.ts +17 -0
- package/lib/revitalizacao/components/tc-rev-side-drawer/tc-rev-side-drawer.component.d.ts +24 -0
- package/lib/revitalizacao/components/tc-rev-skeleton-loading/tc-rev-skeleton-loading.component.d.ts +17 -0
- package/lib/revitalizacao/components/tc-rev-slide-toggle/tc-rev-slide-toggle.directive.d.ts +5 -0
- package/lib/revitalizacao/components/tc-rev-small-loading/tc-rev-small-loading.component.d.ts +26 -0
- package/lib/revitalizacao/components/tc-rev-tab-group/tc-rev-tab-group.component.d.ts +12 -0
- package/lib/revitalizacao/components/tc-rev-tab-group/tc-rev-tab-item/tc-rev-tab-item.component.d.ts +10 -0
- package/lib/revitalizacao/components/tc-rev-tag/tag-colors.enum.d.ts +29 -0
- package/lib/revitalizacao/components/tc-rev-tag/tc-rev-tag.component.d.ts +10 -0
- package/lib/revitalizacao/components/tc-rev-toast/tc-rev-toast.component.d.ts +8 -0
- package/lib/revitalizacao/components/tc-rev-tooltip/tc-rev-tooltip.directive.d.ts +19 -0
- package/lib/revitalizacao/components/tc-rev-wizard-steps/tc-rev-wizard-steps.component.d.ts +19 -0
- package/lib/revitalizacao/components/tc-sub-navbar/component/tc-sub-navbar-item/tc-sub-navbar-item.component.d.ts +13 -0
- package/lib/revitalizacao/components/tc-sub-navbar/tc-sub-navbar.component.d.ts +12 -0
- package/package.json +1 -1
- package/public-api.d.ts +38 -2
- /package/lib/{util → revitalizacao/charts}/echarts.d.ts +0 -0
- /package/lib/{util → revitalizacao/util}/ellipsed-text.d.ts +0 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { ElementRef, OnDestroy, Renderer2 } from '@angular/core';
|
|
2
|
+
import { TCloudUiDeviceUtilsService } from '../../../_services/tcloud-ui-device-utils.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TcRevSideDrawerComponent implements OnDestroy {
|
|
5
|
+
private document;
|
|
6
|
+
private el;
|
|
7
|
+
private renderer;
|
|
8
|
+
loading: import("@angular/core").InputSignal<boolean>;
|
|
9
|
+
position: import("@angular/core").InputSignal<"right" | "left">;
|
|
10
|
+
title: import("@angular/core").InputSignal<string>;
|
|
11
|
+
xAxis: import("@angular/core").Signal<"left: 0" | "right: 0">;
|
|
12
|
+
onCloseDrawer: import("@angular/core").OutputEmitterRef<void>;
|
|
13
|
+
isOpen: boolean;
|
|
14
|
+
_deviceService: TCloudUiDeviceUtilsService;
|
|
15
|
+
isDesktop: import("@angular/core").Signal<boolean>;
|
|
16
|
+
isMobile: import("@angular/core").Signal<boolean>;
|
|
17
|
+
constructor(document: Document, el: ElementRef, renderer: Renderer2);
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
ngOnDestroy(): void;
|
|
20
|
+
handleClickOverlay(): void;
|
|
21
|
+
handleClickContent(_ev: MouseEvent): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TcRevSideDrawerComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TcRevSideDrawerComponent, "tc-rev-side-drawer", never, { "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": true; "isSignal": true; }; }, { "onCloseDrawer": "onCloseDrawer"; }, never, ["*"], true, never>;
|
|
24
|
+
}
|
package/lib/revitalizacao/components/tc-rev-skeleton-loading/tc-rev-skeleton-loading.component.d.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TcRevSkeletonLoadingComponent implements OnInit {
|
|
4
|
+
/** Params of the loading skeleton accepts string with CSS units (px, rem, em) */
|
|
5
|
+
width: import("@angular/core").InputSignal<string>;
|
|
6
|
+
height: import("@angular/core").InputSignal<string>;
|
|
7
|
+
borderRadius: import("@angular/core").InputSignal<string>;
|
|
8
|
+
style: TcRevSkeletonLoadingComponentStyle;
|
|
9
|
+
ngOnInit(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TcRevSkeletonLoadingComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TcRevSkeletonLoadingComponent, "tc-rev-skeleton-loading", never, { "width": { "alias": "width"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "borderRadius": { "alias": "borderRadius"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
12
|
+
}
|
|
13
|
+
export declare class TcRevSkeletonLoadingComponentStyle {
|
|
14
|
+
width: string;
|
|
15
|
+
height: string;
|
|
16
|
+
borderRadius: string;
|
|
17
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TcRevSlideToggleDirective {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TcRevSlideToggleDirective, never>;
|
|
4
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TcRevSlideToggleDirective, "input[type=\"checkbox\"][tcRevSlideToggle]", never, {}, {}, never, never, true, never>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TcRevSmallLoadingComponent implements OnInit {
|
|
4
|
+
/** Width of the loading spinner accepts string with CSS units (px, rem, em) */
|
|
5
|
+
width: import("@angular/core").InputSignal<string>;
|
|
6
|
+
/** Margin top in pixels */
|
|
7
|
+
marginTop: import("@angular/core").InputSignal<number>;
|
|
8
|
+
/** Margin bottom in pixels */
|
|
9
|
+
marginBottom: import("@angular/core").InputSignal<number>;
|
|
10
|
+
/** Margin right in pixels */
|
|
11
|
+
marginRight: import("@angular/core").InputSignal<number>;
|
|
12
|
+
/** Margin left in pixels */
|
|
13
|
+
marginLeft: import("@angular/core").InputSignal<number>;
|
|
14
|
+
style: TcRevSmallLoadingComponentStyle;
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TcRevSmallLoadingComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TcRevSmallLoadingComponent, "tc-rev-small-loading", never, { "width": { "alias": "width"; "required": false; "isSignal": true; }; "marginTop": { "alias": "marginTop"; "required": false; "isSignal": true; }; "marginBottom": { "alias": "marginBottom"; "required": false; "isSignal": true; }; "marginRight": { "alias": "marginRight"; "required": false; "isSignal": true; }; "marginLeft": { "alias": "marginLeft"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
18
|
+
}
|
|
19
|
+
export declare class TcRevSmallLoadingComponentStyle {
|
|
20
|
+
marginTop: string;
|
|
21
|
+
marginBottom: string;
|
|
22
|
+
marginRight: string;
|
|
23
|
+
marginLeft: string;
|
|
24
|
+
width: string;
|
|
25
|
+
height: string;
|
|
26
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TcRevTabGroupComponent {
|
|
4
|
+
onResize(): void;
|
|
5
|
+
tabGroupCarousel: ElementRef<HTMLDivElement>;
|
|
6
|
+
isCarouselOverflowed: boolean;
|
|
7
|
+
ngOnInit(): void;
|
|
8
|
+
private checkCarouselOverflow;
|
|
9
|
+
scrollTabsCarousel(direction: 'left' | 'right'): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TcRevTabGroupComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TcRevTabGroupComponent, "tc-rev-tab-group", never, {}, {}, never, ["*"], true, never>;
|
|
12
|
+
}
|
package/lib/revitalizacao/components/tc-rev-tab-group/tc-rev-tab-item/tc-rev-tab-item.component.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TcRevTabItemComponent {
|
|
3
|
+
onClick: import("@angular/core").OutputEmitterRef<MouseEvent>;
|
|
4
|
+
active: import("@angular/core").InputSignal<boolean>;
|
|
5
|
+
url: import("@angular/core").InputSignal<string>;
|
|
6
|
+
disabled: import("@angular/core").InputSignal<boolean>;
|
|
7
|
+
fullWidth: import("@angular/core").InputSignal<boolean>;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TcRevTabItemComponent, 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>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export declare enum TagColorsEnum {
|
|
2
|
+
'neutral-50' = "neutral-50",
|
|
3
|
+
'neutral-100' = "neutral-100",
|
|
4
|
+
'neutral-200' = "neutral-200",
|
|
5
|
+
'neutral-300' = "neutral-300",
|
|
6
|
+
'neutral-400' = "neutral-400",
|
|
7
|
+
'neutral-500' = "neutral-500",
|
|
8
|
+
'neutral-600' = "neutral-600",
|
|
9
|
+
'neutral-700' = "neutral-700",
|
|
10
|
+
'neutral-800' = "neutral-800",
|
|
11
|
+
'neutral-900' = "neutral-900",
|
|
12
|
+
'primary-300' = "primary-300",
|
|
13
|
+
'primary-400' = "primary-400",
|
|
14
|
+
'primary-500' = "primary-500",
|
|
15
|
+
'primary-600' = "primary-600",
|
|
16
|
+
'primary-700' = "primary-700",
|
|
17
|
+
'danger-300' = "danger-300",
|
|
18
|
+
'danger-400' = "danger-400",
|
|
19
|
+
'danger-500' = "danger-500",
|
|
20
|
+
'alert-300' = "alert-300",
|
|
21
|
+
'alert-400' = "alert-400",
|
|
22
|
+
'alert-500' = "alert-500",
|
|
23
|
+
'info-300' = "info-300",
|
|
24
|
+
'info-400' = "info-400",
|
|
25
|
+
'info-500' = "info-500",
|
|
26
|
+
'success-300' = "success-300",
|
|
27
|
+
'success-400' = "success-400",
|
|
28
|
+
'success-500' = "success-500"
|
|
29
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TcRevTagComponent {
|
|
3
|
+
size: import("@angular/core").InputSignal<"lg" | "md" | "sm" | "regular">;
|
|
4
|
+
color: import("@angular/core").InputSignal<string>;
|
|
5
|
+
variant: import("@angular/core").InputSignal<"" | "filled" | "outline">;
|
|
6
|
+
shape: import("@angular/core").InputSignal<"pill" | "rectangle">;
|
|
7
|
+
fullWidth: import("@angular/core").InputSignal<boolean>;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TcRevTagComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TcRevTagComponent, "tc-rev-tag", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "shape": { "alias": "shape"; "required": false; "isSignal": true; }; "fullWidth": { "alias": "fullWidth"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TcRevToastComponent {
|
|
3
|
+
type: import("@angular/core").InputSignal<"info" | "success" | "danger" | "alert">;
|
|
4
|
+
fullWidth: import("@angular/core").InputSignal<boolean>;
|
|
5
|
+
size: import("@angular/core").InputSignal<"lg" | "md" | "sm">;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TcRevToastComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TcRevToastComponent, "tc-rev-toast", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; "fullWidth": { "alias": "fullWidth"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, ["[icon]", "*"], true, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ElementRef, Renderer2, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TcRevTooltipDirective {
|
|
4
|
+
private _el;
|
|
5
|
+
private _renderer;
|
|
6
|
+
private _vcr;
|
|
7
|
+
tcRevTooltip: import("@angular/core").InputSignal<string>;
|
|
8
|
+
position: import("@angular/core").InputSignal<"top" | "right" | "bottom" | "left">;
|
|
9
|
+
private tooltipElement;
|
|
10
|
+
constructor(_el: ElementRef, _renderer: Renderer2, _vcr: ViewContainerRef);
|
|
11
|
+
onMouseEnter(): void;
|
|
12
|
+
onMouseLeave(): void;
|
|
13
|
+
private isValidTooltipText;
|
|
14
|
+
private showTooltip;
|
|
15
|
+
private hideTooltip;
|
|
16
|
+
private positionTooltip;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TcRevTooltipDirective, never>;
|
|
18
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TcRevTooltipDirective, "[tcRevTooltip]", never, { "tcRevTooltip": { "alias": "tcRevTooltip"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export type WizardStep = {
|
|
3
|
+
title: string;
|
|
4
|
+
description?: string;
|
|
5
|
+
completed?: boolean;
|
|
6
|
+
};
|
|
7
|
+
export declare class TcRevWizardStepsComponent {
|
|
8
|
+
onStepClick: import("@angular/core").OutputEmitterRef<{
|
|
9
|
+
step: WizardStep;
|
|
10
|
+
index: number;
|
|
11
|
+
}>;
|
|
12
|
+
direction: import("@angular/core").InputSignal<"horizontal" | "vertical">;
|
|
13
|
+
currentStep: import("@angular/core").InputSignal<number>;
|
|
14
|
+
stepClickable: import("@angular/core").InputSignal<boolean>;
|
|
15
|
+
steps: import("@angular/core").InputSignal<WizardStep[]>;
|
|
16
|
+
handleStepClick(step: WizardStep, isNext: boolean, index: number): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TcRevWizardStepsComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TcRevWizardStepsComponent, "tc-rev-wizard-steps", never, { "direction": { "alias": "direction"; "required": false; "isSignal": true; }; "currentStep": { "alias": "currentStep"; "required": false; "isSignal": true; }; "stepClickable": { "alias": "stepClickable"; "required": false; "isSignal": true; }; "steps": { "alias": "steps"; "required": true; "isSignal": true; }; }, { "onStepClick": "onStepClick"; }, never, never, true, never>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Params } from '@angular/router';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TcRevSubNavbarItemComponent {
|
|
4
|
+
isMenuExpanded: boolean;
|
|
5
|
+
label: import("@angular/core").InputSignal<string>;
|
|
6
|
+
onClick: import("@angular/core").OutputEmitterRef<MouseEvent>;
|
|
7
|
+
active: import("@angular/core").InputSignal<boolean>;
|
|
8
|
+
routerLink: import("@angular/core").InputSignal<string>;
|
|
9
|
+
queryParams: import("@angular/core").InputSignal<Params>;
|
|
10
|
+
handleClick(_ev: MouseEvent): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TcRevSubNavbarItemComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TcRevSubNavbarItemComponent, "tc-rev-sub-navbar-item", never, { "isMenuExpanded": { "alias": "isMenuExpanded"; "required": false; }; "label": { "alias": "label"; "required": true; "isSignal": true; }; "active": { "alias": "active"; "required": false; "isSignal": true; }; "routerLink": { "alias": "routerLink"; "required": false; "isSignal": true; }; "queryParams": { "alias": "queryParams"; "required": false; "isSignal": true; }; }, { "onClick": "onClick"; }, never, ["[icon]"], true, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { TcRevSubNavbarItemComponent } from './component/tc-sub-navbar-item/tc-sub-navbar-item.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TcRevSubNavbarComponent {
|
|
4
|
+
subNavbarItems: TcRevSubNavbarItemComponent[];
|
|
5
|
+
isMenuExpanded: import("@angular/core").WritableSignal<boolean>;
|
|
6
|
+
onSubMenuExpandChange: import("@angular/core").OutputEmitterRef<boolean>;
|
|
7
|
+
ngAfterContentInit(): void;
|
|
8
|
+
handleExpandMenu(): void;
|
|
9
|
+
private setExpandedMenuValueToChildrend;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TcRevSubNavbarComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TcRevSubNavbarComponent, "tc-rev-sub-navbar", never, {}, { "onSubMenuExpandChange": "onSubMenuExpandChange"; }, ["subNavbarItems"], ["*"], true, never>;
|
|
12
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -110,5 +110,41 @@ export * from './lib/_modules/tcloud-ui-container/components/tcloud-ui-container
|
|
|
110
110
|
export * from './lib/_modules/tcloud-ui-pagination/pipes/tcloud-ui-pagination.pipe';
|
|
111
111
|
export * from './lib/_modules/tcloud-ui-pagination/tcloud-ui-pagination.component';
|
|
112
112
|
export { TCloudUiCalendarComponent, CalendarAppointment } from './lib/_modules/tcloud-ui-calendar/tcloud-ui-calendar.component';
|
|
113
|
-
export * from './lib/
|
|
114
|
-
export
|
|
113
|
+
export * from './lib/revitalizacao/components/tc-rev-button/tc-rev-button.directive';
|
|
114
|
+
export { TcRevCalendarComponent } from './lib/revitalizacao/components/tc-rev-calendar/tc-rev-calendar.component';
|
|
115
|
+
export * from './lib/revitalizacao/components/tc-rev-card-accordion/tc-rev-card-accordion.component';
|
|
116
|
+
export * from './lib/revitalizacao/components/tc-rev-card-title/tc-rev-card-title.component';
|
|
117
|
+
export * from './lib/revitalizacao/components/tc-rev-card/tc-rev-card.component';
|
|
118
|
+
export * from './lib/revitalizacao/components/tc-rev-checkbox/tc-rev-checkbox.directive';
|
|
119
|
+
export { TcRevDropdownComponent } from './lib/revitalizacao/components/tc-rev-dropdown/tc-rev-dropdown.component';
|
|
120
|
+
export * from './lib/revitalizacao/components/tc-rev-dropdown-grouped/tc-rev-dropdown-grouped.component';
|
|
121
|
+
export { TcRevDropdownMultiComponent } from './lib/revitalizacao/components/tc-rev-dropdown-multi/tc-rev-dropdown-multi.component';
|
|
122
|
+
export * from './lib/revitalizacao/components/tc-rev-dropdown-multi-level/tc-rev-dropdown-multi-level.component';
|
|
123
|
+
export * from './lib/revitalizacao/charts/echarts';
|
|
124
|
+
export * from './lib/revitalizacao/components/tc-rev-empty-content/tc-rev-empty-content.component';
|
|
125
|
+
export * from './lib/revitalizacao/components/tc-rev-faq/tc-rev-faq.component';
|
|
126
|
+
export * from './lib/revitalizacao/components/tc-rev-icon-button/tc-rev-icon-button.directive';
|
|
127
|
+
export * from './lib/revitalizacao/components/tc-rev-input-container/tc-rev-input-container.component';
|
|
128
|
+
export * from './lib/revitalizacao/components/tc-rev-input/tc-rev-input.directive';
|
|
129
|
+
export * from './lib/revitalizacao/components/tc-rev-loading/tc-rev-loading.component';
|
|
130
|
+
export * from './lib/revitalizacao/components/tc-rev-message/tc-rev-message.component';
|
|
131
|
+
export * from './lib/revitalizacao/components/tc-rev-multi-input/tc-rev-multi-input.component';
|
|
132
|
+
export * from './lib/revitalizacao/components/tc-rev-pagination/tc-rev-pagination.component';
|
|
133
|
+
export * from './lib/revitalizacao/components/tc-rev-progress-status-bar/tc-rev-progress-status-bar.component';
|
|
134
|
+
export * from './lib/revitalizacao/components/tc-rev-radio/tc-rev-radio.directive';
|
|
135
|
+
export * from './lib/revitalizacao/components/tc-rev-search-input/tc-rev-search-input.component';
|
|
136
|
+
export * from './lib/revitalizacao/components/tc-rev-side-drawer/tc-rev-side-drawer.component';
|
|
137
|
+
export * from './lib/revitalizacao/components/tc-rev-skeleton-loading/tc-rev-skeleton-loading.component';
|
|
138
|
+
export * from './lib/revitalizacao/components/tc-rev-slide-toggle/tc-rev-slide-toggle.directive';
|
|
139
|
+
export * from './lib/revitalizacao/components/tc-rev-small-loading/tc-rev-small-loading.component';
|
|
140
|
+
export * from './lib/revitalizacao/components/tc-rev-tab-group/tc-rev-tab-group.component';
|
|
141
|
+
export * from './lib/revitalizacao/components/tc-rev-tab-group/tc-rev-tab-item/tc-rev-tab-item.component';
|
|
142
|
+
export * from './lib/revitalizacao/components/tc-rev-tag/tag-colors.enum';
|
|
143
|
+
export * from './lib/revitalizacao/components/tc-rev-tag/tc-rev-tag.component';
|
|
144
|
+
export * from './lib/revitalizacao/components/tc-rev-toast/tc-rev-toast.component';
|
|
145
|
+
export * from './lib/revitalizacao/components/tc-rev-tooltip/tc-rev-tooltip.directive';
|
|
146
|
+
export * from './lib/revitalizacao/components/tc-sub-navbar/component/tc-sub-navbar-item/tc-sub-navbar-item.component';
|
|
147
|
+
export * from './lib/revitalizacao/components/tc-sub-navbar/tc-sub-navbar.component';
|
|
148
|
+
export * from './lib/revitalizacao/util/ellipsed-text';
|
|
149
|
+
export { TcRevWizardStepsComponent } from './lib/revitalizacao/components/tc-rev-wizard-steps/tc-rev-wizard-steps.component';
|
|
150
|
+
export * from './lib/revitalizacao/components/tc-rev-components.module';
|
|
File without changes
|
|
File without changes
|