@rededor/site-front-end-lib 1.0.14 → 1.0.15
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/index.d.ts +5 -0
- package/lib/components/algolia/algolia.component.d.ts +46 -0
- package/lib/components/banner/content-banner/content-banner.component.d.ts +14 -0
- package/lib/components/breadcrumbs/breadcrumbs.component.d.ts +31 -0
- package/lib/components/cards/card-unidade-planos-convenios/card-unidade-planos-convenios.component.d.ts +41 -0
- package/lib/components/cards/expandable-card/expandable-card.component.d.ts +27 -0
- package/lib/components/cta-wrapper/cta-wrapper.component.d.ts +28 -0
- package/lib/components/error/error-service/error.service.d.ts +17 -0
- package/lib/components/error/error.component.d.ts +44 -0
- package/lib/components/filter-letter-and-terms/filter-letter-and-terms.component.d.ts +11 -0
- package/lib/components/filters/filter-planos-convenios/filter-planos-convenios.component.d.ts +41 -0
- package/lib/components/footer/components/footer-disclaimer/footer-disclaimer.component.d.ts +15 -0
- package/lib/components/footer/components/footer-menu/footer-menu.component.d.ts +11 -0
- package/lib/components/footer/components/footer-menu-item/footer-menu-item.component.d.ts +15 -0
- package/lib/components/footer/components/footer-social-medias/footer-social-medias.component.d.ts +17 -0
- package/lib/components/footer/footer.component.d.ts +17 -0
- package/lib/components/footer/helpers/footerTheme.func.d.ts +3 -0
- package/lib/components/footer/models/FooterTheme.model.d.ts +7 -0
- package/lib/components/header/components/header-action-menu/header-action-menu.component.d.ts +13 -0
- package/lib/components/header/components/header-aux-menu/header-aux-menu.component.d.ts +5 -0
- package/lib/components/header/components/header-aux-menu-container/header-aux-menu-container.component.d.ts +6 -0
- package/lib/components/header/components/header-aux-menu-item/header-aux-menu-item.component.d.ts +18 -0
- package/lib/components/header/components/header-aux-menu-item-dropdown/header-aux-menu-item-dropdown.component.d.ts +10 -0
- package/lib/components/header/components/header-logo/header-logo.component.d.ts +12 -0
- package/lib/components/header/components/header-main-menu/header-main-menu.component.d.ts +5 -0
- package/lib/components/header/components/header-main-menu-item/header-main-menu-item.component.d.ts +26 -0
- package/lib/components/header/components/header-main-menu-item-dropdown/header-main-menu-item-dropdown.component.d.ts +36 -0
- package/lib/components/header/components/header-side-menu/header-side-menu.component.d.ts +9 -0
- package/lib/components/header/components/header-side-menu-item/header-side-menu-item.component.d.ts +21 -0
- package/lib/components/header/header.component.d.ts +27 -0
- package/lib/components/header/helpers/headerTheme.func.d.ts +3 -0
- package/lib/components/header/models/HeaderTheme.model.d.ts +8 -0
- package/lib/components/header/services/header.service.d.ts +11 -0
- package/lib/components/image/image.component.d.ts +22 -0
- package/lib/components/index.d.ts +40 -0
- package/lib/components/load-screen/load-screen.component.d.ts +13 -0
- package/lib/components/overlay/overlay.component.d.ts +8 -0
- package/lib/components/page-header/page-header.component.d.ts +17 -0
- package/lib/components/page-template-sidebar/page-template-sidebar.component.d.ts +12 -0
- package/lib/components/search/search.component.d.ts +48 -0
- package/lib/components/section-navigation/section-navigation.component.d.ts +36 -0
- package/lib/components/side-ctas/components/side-ctas-bottom/side-ctas-bottom.component.d.ts +22 -0
- package/lib/components/side-ctas/components/side-ctas-right-bottom/side-ctas-right-bottom.component.d.ts +14 -0
- package/lib/components/side-ctas/components/side-ctas-right-middle/side-ctas-right-middle.component.d.ts +21 -0
- package/lib/components/side-ctas/components/side-ctas-right-top/side-ctas-right-top.component.d.ts +5 -0
- package/lib/components/side-ctas/models/SideCta.model.d.ts +5 -0
- package/lib/components/side-ctas/side-ctas.component.d.ts +11 -0
- package/lib/components/whatsapp/whatsapp.component.d.ts +26 -0
- package/lib/directives/index.d.ts +3 -0
- package/lib/directives/rdsite-click-outside/rdsite-click-outside.directive.d.ts +10 -0
- package/lib/directives/rdsite-link/rdsite-link.directive.d.ts +38 -0
- package/lib/directives/rdsite-phone-modal/rdsite-phone-modal.directive.d.ts +17 -0
- package/lib/enums/EnumDoencaTaxonomy.enum.d.ts +8 -0
- package/lib/enums/EnumError.enum.d.ts +4 -0
- package/lib/enums/EnumThemes.enum.d.ts +6 -0
- package/lib/enums/Estados.enum.d.ts +29 -0
- package/lib/enums/IconCuraDefaultType.enum.d.ts +119 -0
- package/lib/enums/ImageMimeType.enum.d.ts +5 -0
- package/lib/enums/RdsiteModalComponentStyle.enum.d.ts +11 -0
- package/lib/enums/RdsiteModalDrawerComponentStyle.enum.d.ts +5 -0
- package/lib/enums/UnidadeCoverageType.enum.d.ts +5 -0
- package/lib/enums/index.d.ts +9 -0
- package/lib/helpers/check-safari-agent.func.d.ts +2 -0
- package/lib/helpers/formatPhone.func.d.ts +1 -0
- package/lib/helpers/getSiteUrl.func.d.ts +2 -0
- package/lib/helpers/index.d.ts +7 -0
- package/lib/helpers/mediaQueries.d.ts +6 -0
- package/lib/helpers/removeDuplicateObjectsFromArray.func.d.ts +2 -0
- package/lib/helpers/removeDuplicateValuesFromArray.func.d.ts +2 -0
- package/lib/helpers/removeHtmlTags.func.d.ts +2 -0
- package/lib/helpers/toQueryParams.func.d.ts +5 -0
- package/lib/models/algolia-search-api.model.d.ts +167 -0
- package/lib/models/algolia.model.d.ts +12 -0
- package/lib/models/breadcrumbs/breadcrumbs-items.model.d.ts +10 -0
- package/lib/models/breadcrumbs/breadcrumbs-json-item.model.d.ts +8 -0
- package/lib/models/centro-estudos-backend.model.d.ts +8 -0
- package/lib/models/content-banner.model.d.ts +15 -0
- package/lib/models/cta-wrapper.model.d.ts +9 -0
- package/lib/models/doenca-backend.model.d.ts +25 -0
- package/lib/models/doenca-taxonomy.model.d.ts +11 -0
- package/lib/models/especialidade-backend.model.d.ts +24 -0
- package/lib/models/exame-backend.model.d.ts +25 -0
- package/lib/models/filters/filter-planos-convenios.model.d.ts +12 -0
- package/lib/models/images/rdsite-image.model.d.ts +5 -0
- package/lib/models/medico-cv.model.d.ts +10 -0
- package/lib/models/menu-de-unidade.model.d.ts +14 -0
- package/lib/models/menu-item.model.d.ts +67 -0
- package/lib/models/privacy-tools/privacy-tools.model.d.ts +8 -0
- package/lib/models/rdsl-cobertura.model.d.ts +71 -0
- package/lib/models/rdsl-convenio.model.d.ts +17 -0
- package/lib/models/rdsl-especialidade.model.d.ts +33 -0
- package/lib/models/rdsl-planos.model.d.ts +13 -0
- package/lib/models/rdsl-post-category.model.d.ts +8 -0
- package/lib/models/rdsl-unidade.model.d.ts +50 -0
- package/lib/models/section-navigation.model.d.ts +9 -0
- package/lib/models/seo/seo-data.model.d.ts +9 -0
- package/lib/models/seo/seo-unidade.model.d.ts +6 -0
- package/lib/models/social-meta-properties.model.d.ts +9 -0
- package/lib/models/wordpress/WpResponse.model.d.ts +31 -0
- package/lib/models/wordpress/category/wpCategory.model.d.ts +14 -0
- package/lib/models/wordpress/general/content.model.d.ts +4 -0
- package/lib/models/wordpress/general/excerpt.model.d.ts +4 -0
- package/lib/models/wordpress/general/featuredMedia.model.d.ts +26 -0
- package/lib/models/wordpress/general/guid.model.d.ts +3 -0
- package/lib/models/wordpress/general/index.d.ts +10 -0
- package/lib/models/wordpress/general/links.model.d.ts +47 -0
- package/lib/models/wordpress/general/meta.model.d.ts +3 -0
- package/lib/models/wordpress/general/title.model.d.ts +3 -0
- package/lib/models/wordpress/general/yoastData.model.d.ts +4 -0
- package/lib/models/wordpress/general/yoastHeadJson.model.d.ts +56 -0
- package/lib/models/wordpress/general/yoastMeta.model.d.ts +5 -0
- package/lib/models/wordpress/page/page.model.d.ts +10 -0
- package/lib/models/wordpress/post/post.model.d.ts +33 -0
- package/lib/models/wordpress/unidade/wp-unidade-onco.model.d.ts +55 -0
- package/lib/models/wordpress/unidade/wp-unidade-site-detalhe.model.d.ts +166 -0
- package/lib/models/wordpress/unidade/wp-unidade-site.model.d.ts +45 -0
- package/lib/pipes/index.d.ts +1 -0
- package/lib/pipes/phone/phone.pipe.d.ts +7 -0
- package/lib/services/algolia/algolia.service.d.ts +16 -0
- package/lib/services/algolia-search-api/algolia-search-api.service.d.ts +18 -0
- package/lib/services/cura/cura.service.d.ts +31 -0
- package/lib/services/http-client/http-client.service.d.ts +19 -0
- package/lib/services/index.d.ts +16 -0
- package/lib/services/log/log.service.d.ts +16 -0
- package/lib/services/modal/modal.service.d.ts +31 -0
- package/lib/services/modal-drawer/modal-drawer.service.d.ts +37 -0
- package/lib/services/ngu-carousel/ngu-carousel.service.d.ts +13 -0
- package/lib/services/phone/phone.service.d.ts +11 -0
- package/lib/services/privacy-tools/privacy-tools.service.d.ts +20 -0
- package/lib/services/seo/seo.service.d.ts +141 -0
- package/lib/services/server-response/server-response.service.d.ts +39 -0
- package/lib/services/site-back-end/site-back-end.service.d.ts +67 -0
- package/lib/services/ssr-loading/ssr-loading.service.d.ts +13 -0
- package/lib/services/transfer-state/transfer-state.service.d.ts +13 -0
- package/lib/tokens/CuraApi.d.ts +2 -0
- package/lib/tokens/LibConfig.d.ts +36 -0
- package/lib/tokens/express.tokens.d.ts +4 -0
- package/package.json +1 -1
- package/public-api.d.ts +9 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { CuraService } from '../../services';
|
|
3
|
+
import { HeaderTheme, HeaderThemeKeys } from './models/HeaderTheme.model';
|
|
4
|
+
import { HeaderService } from './services/header.service';
|
|
5
|
+
import { UntypedFormControl } from '@angular/forms';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class HeaderComponent {
|
|
8
|
+
private curaService;
|
|
9
|
+
headerService: HeaderService;
|
|
10
|
+
private document;
|
|
11
|
+
get project(): string;
|
|
12
|
+
set project(value: string);
|
|
13
|
+
private _project;
|
|
14
|
+
get theme(): string;
|
|
15
|
+
set theme(value: string);
|
|
16
|
+
private _theme;
|
|
17
|
+
headerTheme: HeaderTheme;
|
|
18
|
+
scrollTop: number;
|
|
19
|
+
searchControl: UntypedFormControl | null;
|
|
20
|
+
searchChange: EventEmitter<string>;
|
|
21
|
+
constructor(curaService: CuraService, headerService: HeaderService, document: Document, platformId: object);
|
|
22
|
+
getCuraCssVars(context: HeaderThemeKeys): Record<string, any>;
|
|
23
|
+
overlayClick(): void;
|
|
24
|
+
doSearch(event: any): void;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "rdsite-header", never, { "project": { "alias": "project"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "searchControl": { "alias": "searchControl"; "required": false; }; }, { "searchChange": "searchChange"; }, never, ["rdsite-header-logo", "rdsite-header-aux-menu", "rdsite-header-action-menu", "rdsite-header-main-menu", "#rdsite-header-side-menu"], true, never>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class HeaderService {
|
|
3
|
+
showSearch: import("@angular/core").WritableSignal<boolean>;
|
|
4
|
+
showSideMenu: import("@angular/core").WritableSignal<boolean>;
|
|
5
|
+
showSearchOpacity: import("@angular/core").WritableSignal<boolean>;
|
|
6
|
+
toggleShowSearch(value?: boolean): void;
|
|
7
|
+
toggleShowSearchOpacity(value?: boolean): void;
|
|
8
|
+
toggleShowSideMenu(value?: boolean): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<HeaderService>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ImageMimeType } from '../../enums/ImageMimeType.enum';
|
|
3
|
+
import { RdsiteImage } from '../../models/images/rdsite-image.model';
|
|
4
|
+
import { LibConfig } from '../../tokens/LibConfig';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ImageComponent implements OnInit {
|
|
7
|
+
private libConfig;
|
|
8
|
+
private readonly platformId;
|
|
9
|
+
imageWebpSrc: string;
|
|
10
|
+
imageDefaultSrc: string;
|
|
11
|
+
imageSizes: RdsiteImage[];
|
|
12
|
+
mimeType: ImageMimeType;
|
|
13
|
+
alt: string;
|
|
14
|
+
title: string;
|
|
15
|
+
loading: 'eager' | 'lazy';
|
|
16
|
+
constructor(libConfig: LibConfig, platformId: object);
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
private handleServerImageError;
|
|
19
|
+
handleImageError(): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ImageComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ImageComponent, "rdsite-image", never, { "imageWebpSrc": { "alias": "imageWebpSrc"; "required": false; }; "imageDefaultSrc": { "alias": "imageDefaultSrc"; "required": false; }; "imageSizes": { "alias": "imageSizes"; "required": false; }; "mimeType": { "alias": "mimeType"; "required": false; }; "alt": { "alias": "alt"; "required": false; }; "title": { "alias": "title"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; }, {}, never, never, true, never>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
export * from './footer/footer.component';
|
|
2
|
+
export * from './footer/components/footer-disclaimer/footer-disclaimer.component';
|
|
3
|
+
export * from './footer/components/footer-menu/footer-menu.component';
|
|
4
|
+
export * from './footer/components/footer-menu-item/footer-menu-item.component';
|
|
5
|
+
export * from './footer/components/footer-social-medias/footer-social-medias.component';
|
|
6
|
+
export * from './header/header.component';
|
|
7
|
+
export * from './header/components/header-action-menu/header-action-menu.component';
|
|
8
|
+
export * from './header/components/header-aux-menu/header-aux-menu.component';
|
|
9
|
+
export * from './header/components/header-aux-menu-container/header-aux-menu-container.component';
|
|
10
|
+
export * from './header/components/header-aux-menu-item/header-aux-menu-item.component';
|
|
11
|
+
export * from './header/components/header-aux-menu-item-dropdown/header-aux-menu-item-dropdown.component';
|
|
12
|
+
export * from './header/components/header-logo/header-logo.component';
|
|
13
|
+
export * from './header/components/header-main-menu/header-main-menu.component';
|
|
14
|
+
export * from './header/components/header-main-menu-item/header-main-menu-item.component';
|
|
15
|
+
export * from './header/components/header-main-menu-item-dropdown/header-main-menu-item-dropdown.component';
|
|
16
|
+
export * from './header/components/header-side-menu/header-side-menu.component';
|
|
17
|
+
export * from './header/components/header-side-menu-item/header-side-menu-item.component';
|
|
18
|
+
export * from './load-screen/load-screen.component';
|
|
19
|
+
export * from './overlay/overlay.component';
|
|
20
|
+
export * from './search/search.component';
|
|
21
|
+
export * from './side-ctas/side-ctas.component';
|
|
22
|
+
export * from './side-ctas/components/side-ctas-bottom/side-ctas-bottom.component';
|
|
23
|
+
export * from './side-ctas/components/side-ctas-right-bottom/side-ctas-right-bottom.component';
|
|
24
|
+
export * from './side-ctas/components/side-ctas-right-middle/side-ctas-right-middle.component';
|
|
25
|
+
export * from './side-ctas/components/side-ctas-right-top/side-ctas-right-top.component';
|
|
26
|
+
export * from './whatsapp/whatsapp.component';
|
|
27
|
+
export * from './algolia/algolia.component';
|
|
28
|
+
export * from './error/error.component';
|
|
29
|
+
export * from './error/error-service/error.service';
|
|
30
|
+
export * from './cta-wrapper/cta-wrapper.component';
|
|
31
|
+
export * from './page-header/page-header.component';
|
|
32
|
+
export * from './breadcrumbs/breadcrumbs.component';
|
|
33
|
+
export * from './page-template-sidebar/page-template-sidebar.component';
|
|
34
|
+
export * from './filters/filter-planos-convenios/filter-planos-convenios.component';
|
|
35
|
+
export * from './filter-letter-and-terms/filter-letter-and-terms.component';
|
|
36
|
+
export * from './section-navigation/section-navigation.component';
|
|
37
|
+
export * from './image/image.component';
|
|
38
|
+
export * from './cards/card-unidade-planos-convenios/card-unidade-planos-convenios.component';
|
|
39
|
+
export * from './cards/expandable-card/expandable-card.component';
|
|
40
|
+
export * from './banner/content-banner/content-banner.component';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { CuraService } from '../../services';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class LoadScreenComponent {
|
|
4
|
+
private curaService;
|
|
5
|
+
styleBinding: {
|
|
6
|
+
'--neutral-pale': string | null;
|
|
7
|
+
'--neutral-dark': string | null;
|
|
8
|
+
'--color-one-base': string | null;
|
|
9
|
+
};
|
|
10
|
+
constructor(curaService: CuraService);
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoadScreenComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoadScreenComponent, "rdsite-load-screen", never, {}, {}, never, never, true, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class OverlayComponent {
|
|
4
|
+
overlayClick: EventEmitter<any>;
|
|
5
|
+
overlayClicked(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OverlayComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OverlayComponent, "rdsite-overlay", never, {}, { "overlayClick": "overlayClick"; }, never, never, true, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { CuraService } from '../../services';
|
|
2
|
+
import { BreadcrumbsItems } from '../../models/breadcrumbs/breadcrumbs-items.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class PageHeaderComponent {
|
|
5
|
+
private readonly curaService;
|
|
6
|
+
pageTitle: string;
|
|
7
|
+
pageHeaderText: string;
|
|
8
|
+
hasPadding: boolean;
|
|
9
|
+
breadcrumbs: BreadcrumbsItems[];
|
|
10
|
+
bgColor: string;
|
|
11
|
+
get style(): {
|
|
12
|
+
'--bg-color': string | null;
|
|
13
|
+
};
|
|
14
|
+
constructor(curaService: CuraService);
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PageHeaderComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PageHeaderComponent, "rdsite-page-header", never, { "pageTitle": { "alias": "pageTitle"; "required": false; }; "pageHeaderText": { "alias": "pageHeaderText"; "required": false; }; "hasPadding": { "alias": "hasPadding"; "required": false; }; "breadcrumbs": { "alias": "breadcrumbs"; "required": false; }; "bgColor": { "alias": "bgColor"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PageTemplateSidebarComponent {
|
|
4
|
+
header: TemplateRef<any> | null;
|
|
5
|
+
stickyContent: TemplateRef<any> | null;
|
|
6
|
+
beforeContent: TemplateRef<any> | null;
|
|
7
|
+
content: TemplateRef<any> | null;
|
|
8
|
+
afterContent: TemplateRef<any> | null;
|
|
9
|
+
sidebarContent: TemplateRef<any> | null;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PageTemplateSidebarComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PageTemplateSidebarComponent, "rdsite-page-template-sidebar", never, { "header": { "alias": "header"; "required": false; }; "stickyContent": { "alias": "stickyContent"; "required": false; }; "beforeContent": { "alias": "beforeContent"; "required": false; }; "content": { "alias": "content"; "required": false; }; "afterContent": { "alias": "afterContent"; "required": false; }; "sidebarContent": { "alias": "sidebarContent"; "required": false; }; }, {}, never, never, true, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { UntypedFormControl } from '@angular/forms';
|
|
3
|
+
import { DeviceDetectorService } from 'ngx-device-detector';
|
|
4
|
+
import { Subscription } from 'rxjs';
|
|
5
|
+
import { CuraService } from '../../services';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class SearchComponent implements OnInit, OnDestroy, AfterViewInit {
|
|
8
|
+
private deviceService;
|
|
9
|
+
private curaService;
|
|
10
|
+
private platformId;
|
|
11
|
+
searchControl: UntypedFormControl;
|
|
12
|
+
showSearchButtonMobile: boolean;
|
|
13
|
+
debounceTime: number;
|
|
14
|
+
label: string;
|
|
15
|
+
canClean: boolean;
|
|
16
|
+
controlBlur: EventEmitter<any>;
|
|
17
|
+
controlFocus: EventEmitter<any>;
|
|
18
|
+
controlReset: EventEmitter<any>;
|
|
19
|
+
termChange: EventEmitter<string>;
|
|
20
|
+
enterPress: EventEmitter<string>;
|
|
21
|
+
_enable: boolean;
|
|
22
|
+
get enable(): boolean;
|
|
23
|
+
set enable(value: boolean);
|
|
24
|
+
_loading: boolean;
|
|
25
|
+
get loading(): boolean;
|
|
26
|
+
set loading(value: boolean);
|
|
27
|
+
setFocus: boolean;
|
|
28
|
+
focus: boolean;
|
|
29
|
+
controlSubscription: Subscription | null;
|
|
30
|
+
searchInput?: ElementRef<HTMLInputElement>;
|
|
31
|
+
style: {
|
|
32
|
+
'--color': string | null;
|
|
33
|
+
};
|
|
34
|
+
constructor(deviceService: DeviceDetectorService, curaService: CuraService, platformId: object);
|
|
35
|
+
ngAfterViewInit(): void;
|
|
36
|
+
ngOnInit(): void;
|
|
37
|
+
setInitialFocus(): void;
|
|
38
|
+
onChange(term: string): void;
|
|
39
|
+
onFocus(): void;
|
|
40
|
+
onBlur(): void;
|
|
41
|
+
onSubmit($event: any): void;
|
|
42
|
+
onSubmitByClick(): void;
|
|
43
|
+
setControlState(): void;
|
|
44
|
+
clean(): void;
|
|
45
|
+
ngOnDestroy(): void;
|
|
46
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SearchComponent, never>;
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SearchComponent, "rdsite-search", never, { "searchControl": { "alias": "searchControl"; "required": false; }; "showSearchButtonMobile": { "alias": "showSearchButtonMobile"; "required": false; }; "debounceTime": { "alias": "debounceTime"; "required": false; }; "label": { "alias": "label"; "required": false; }; "canClean": { "alias": "canClean"; "required": false; }; "enable": { "alias": "enable"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "setFocus": { "alias": "setFocus"; "required": false; }; }, { "controlBlur": "controlBlur"; "controlFocus": "controlFocus"; "controlReset": "controlReset"; "termChange": "termChange"; "enterPress": "enterPress"; }, never, never, true, never>;
|
|
48
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { EventEmitter, OnInit, ElementRef, QueryList, OnDestroy } from '@angular/core';
|
|
2
|
+
import { SectionNavigationData, SectionNavigationConfig } from '../../models/section-navigation.model';
|
|
3
|
+
import { BehaviorSubject, Subscription } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class SectionNavigationComponent implements OnInit, OnDestroy {
|
|
6
|
+
private readonly curaService;
|
|
7
|
+
readonly sections: import("@angular/core").WritableSignal<SectionNavigationData[]>;
|
|
8
|
+
readonly config: import("@angular/core").WritableSignal<SectionNavigationConfig | undefined>;
|
|
9
|
+
readonly activeSection: import("@angular/core").WritableSignal<string>;
|
|
10
|
+
isMobile: boolean;
|
|
11
|
+
scrollToMenuAnchorSubscription: Subscription | null;
|
|
12
|
+
scrollToMenuAnchorSubject: BehaviorSubject<string>;
|
|
13
|
+
containerEl: ElementRef<HTMLDivElement>;
|
|
14
|
+
anchorsEl: QueryList<ElementRef<HTMLAnchorElement>>;
|
|
15
|
+
onWindowResize(): void;
|
|
16
|
+
onWindowScroll(): void;
|
|
17
|
+
set navigationSections(value: SectionNavigationData[]);
|
|
18
|
+
set navigationConfig(value: SectionNavigationConfig);
|
|
19
|
+
ariaLabel: string;
|
|
20
|
+
sectionChange: EventEmitter<SectionNavigationData>;
|
|
21
|
+
styleBinding: {
|
|
22
|
+
'--color-base': string | null;
|
|
23
|
+
'--color-text': string | null;
|
|
24
|
+
'--color-active-text': string | null;
|
|
25
|
+
'--font-size': string;
|
|
26
|
+
'--font-weight-active': string;
|
|
27
|
+
};
|
|
28
|
+
navigationMenu: ElementRef<HTMLUListElement>;
|
|
29
|
+
constructor();
|
|
30
|
+
ngOnInit(): void;
|
|
31
|
+
private windowScroll;
|
|
32
|
+
scrollToMenuAnchor(anchorId: string): void;
|
|
33
|
+
ngOnDestroy(): void;
|
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SectionNavigationComponent, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SectionNavigationComponent, "nav[rdsite-section-navigation]", never, { "navigationSections": { "alias": "navigationSections"; "required": true; }; "navigationConfig": { "alias": "navigationConfig"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, { "sectionChange": "sectionChange"; }, never, never, true, never>;
|
|
36
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { SideCta } from '../../models/SideCta.model';
|
|
3
|
+
import { CuraService } from '../../../../services';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class SideCtasBottomComponent {
|
|
6
|
+
private curaService;
|
|
7
|
+
private _ctas;
|
|
8
|
+
set ctas(value: SideCta[]);
|
|
9
|
+
get ctas(): SideCta[];
|
|
10
|
+
sideCtaBottomItemClick: EventEmitter<Event>;
|
|
11
|
+
style: {
|
|
12
|
+
'--font-color': string | null;
|
|
13
|
+
'--bg-color': string | null;
|
|
14
|
+
'--bg-cta-color': string | null;
|
|
15
|
+
'--bg-cta-hover-color': string | null;
|
|
16
|
+
'--bg-cta-active-color': string | null;
|
|
17
|
+
};
|
|
18
|
+
constructor(curaService: CuraService);
|
|
19
|
+
sideCtaBottomItemClicked(event: Event): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SideCtasBottomComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SideCtasBottomComponent, "rdsite-side-ctas-bottom", never, { "ctas": { "alias": "ctas"; "required": false; }; }, { "sideCtaBottomItemClick": "sideCtaBottomItemClick"; }, never, never, true, never>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SideCtasRightBottomComponent {
|
|
4
|
+
link: string;
|
|
5
|
+
imgUrl: string;
|
|
6
|
+
text: string;
|
|
7
|
+
bgColor: string;
|
|
8
|
+
bgHover: string;
|
|
9
|
+
borderTop: boolean;
|
|
10
|
+
sideCtaRightBottomItemClick: EventEmitter<Event>;
|
|
11
|
+
whatsappClicked(event: Event): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SideCtasRightBottomComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SideCtasRightBottomComponent, "rdsite-side-ctas-right-bottom", never, { "link": { "alias": "link"; "required": false; }; "imgUrl": { "alias": "imgUrl"; "required": false; }; "text": { "alias": "text"; "required": false; }; "bgColor": { "alias": "bgColor"; "required": false; }; "bgHover": { "alias": "bgHover"; "required": false; }; "borderTop": { "alias": "borderTop"; "required": false; }; }, { "sideCtaRightBottomItemClick": "sideCtaRightBottomItemClick"; }, never, never, true, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { SideCta } from '../../models/SideCta.model';
|
|
3
|
+
import { CuraService } from '../../../../services';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class SideCtasRightMiddleComponent {
|
|
6
|
+
private curaService;
|
|
7
|
+
private _ctas;
|
|
8
|
+
set ctas(value: SideCta[]);
|
|
9
|
+
get ctas(): SideCta[];
|
|
10
|
+
sideCtaRightMiddleItemClick: EventEmitter<Event>;
|
|
11
|
+
style: {
|
|
12
|
+
'--icon-bg-color': string | null;
|
|
13
|
+
'--font-color': string | null;
|
|
14
|
+
'--font-hover': string | null;
|
|
15
|
+
'--font-active': string | null;
|
|
16
|
+
};
|
|
17
|
+
constructor(curaService: CuraService);
|
|
18
|
+
sideCtaRightMiddleItemClicked(event: Event): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SideCtasRightMiddleComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SideCtasRightMiddleComponent, "rdsite-side-ctas-right-middle", never, { "ctas": { "alias": "ctas"; "required": false; }; }, { "sideCtaRightMiddleItemClick": "sideCtaRightMiddleItemClick"; }, never, never, true, never>;
|
|
21
|
+
}
|
package/lib/components/side-ctas/components/side-ctas-right-top/side-ctas-right-top.component.d.ts
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class SideCtasRightTopComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SideCtasRightTopComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SideCtasRightTopComponent, "rdsite-side-ctas-right-top", never, {}, {}, never, ["*"], true, never>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { CuraService } from '../../services';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SideCtasComponent {
|
|
4
|
+
private curaService;
|
|
5
|
+
style: {
|
|
6
|
+
'--color-right': string | null;
|
|
7
|
+
};
|
|
8
|
+
constructor(curaService: CuraService);
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SideCtasComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SideCtasComponent, "rdsite-side-ctas", never, {}, {}, never, ["rdsite-side-ctas-right-top", "rdsite-side-ctas-right-middle", "rdsite-side-ctas-right-bottom", "rdsite-side-ctas-bottom"], true, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { CuraService } from '../../services';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class WhatsappComponent {
|
|
5
|
+
private curaService;
|
|
6
|
+
link: string;
|
|
7
|
+
imgUrl: string;
|
|
8
|
+
text: string;
|
|
9
|
+
bgColor: string;
|
|
10
|
+
bgHover: string;
|
|
11
|
+
borderTop: boolean;
|
|
12
|
+
whatsappClick: EventEmitter<Event>;
|
|
13
|
+
active: boolean;
|
|
14
|
+
style: {
|
|
15
|
+
'--border-top-color': string | null;
|
|
16
|
+
'--bg-color': string | null;
|
|
17
|
+
'--bg-button': string;
|
|
18
|
+
'--bg-button-hover': string;
|
|
19
|
+
'--color-button': string | null;
|
|
20
|
+
'--color-button-hover': string | null;
|
|
21
|
+
};
|
|
22
|
+
constructor(curaService: CuraService);
|
|
23
|
+
whatsappClicked(event: Event): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WhatsappComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WhatsappComponent, "rdsite-whatsapp", never, { "link": { "alias": "link"; "required": false; }; "imgUrl": { "alias": "imgUrl"; "required": false; }; "text": { "alias": "text"; "required": false; }; "bgColor": { "alias": "bgColor"; "required": false; }; "bgHover": { "alias": "bgHover"; "required": false; }; "borderTop": { "alias": "borderTop"; "required": false; }; }, { "whatsappClick": "whatsappClick"; }, never, never, true, never>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ElementRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class RdsiteClickOutsideDirective {
|
|
4
|
+
private elementRef;
|
|
5
|
+
constructor(elementRef: ElementRef);
|
|
6
|
+
rdsiteclickoutside: EventEmitter<void>;
|
|
7
|
+
onClick(event: Event): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RdsiteClickOutsideDirective, never>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RdsiteClickOutsideDirective, "[rdsiteclickoutside]", never, {}, { "rdsiteclickoutside": "rdsiteclickoutside"; }, never, never, true, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { ElementRef, TemplateRef } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { LibConfig } from '../../tokens/LibConfig';
|
|
4
|
+
import { PhoneService } from '../../services/phone/phone.service';
|
|
5
|
+
import { RdsitePhoneModalDirective } from '../rdsite-phone-modal/rdsite-phone-modal.directive';
|
|
6
|
+
import { DeviceDetectorService } from 'ngx-device-detector';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class RdsiteLinkDirective {
|
|
9
|
+
private router;
|
|
10
|
+
private platformId;
|
|
11
|
+
private document;
|
|
12
|
+
private libConfig;
|
|
13
|
+
private element;
|
|
14
|
+
private phoneService;
|
|
15
|
+
private rdsitePhoneModalDirective;
|
|
16
|
+
private deviceDetectorService;
|
|
17
|
+
private externalRegex;
|
|
18
|
+
private telRegex;
|
|
19
|
+
private mailRegex;
|
|
20
|
+
private siteUrlList;
|
|
21
|
+
private allowedTags;
|
|
22
|
+
anchorAdjustment: number | null;
|
|
23
|
+
anchorExtraAdjustment: number | null;
|
|
24
|
+
phonemodal: TemplateRef<HTMLElement> | null;
|
|
25
|
+
constructor(router: Router, platformId: object, document: Document, libConfig: LibConfig, element: ElementRef<any>, phoneService: PhoneService, rdsitePhoneModalDirective: RdsitePhoneModalDirective, deviceDetectorService: DeviceDetectorService);
|
|
26
|
+
onClick(event: Event): void;
|
|
27
|
+
private isPhone;
|
|
28
|
+
private isMail;
|
|
29
|
+
private phoneClicked;
|
|
30
|
+
private setPhoneModal;
|
|
31
|
+
private isExternalUrl;
|
|
32
|
+
private isSiteUrl;
|
|
33
|
+
private isAnchor;
|
|
34
|
+
private scrollToAnchor;
|
|
35
|
+
private navigateTo;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RdsiteLinkDirective, never>;
|
|
37
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RdsiteLinkDirective, "[rdsitelink]", never, { "anchorAdjustment": { "alias": "anchorAdjustment"; "required": false; }; "anchorExtraAdjustment": { "alias": "anchorExtraAdjustment"; "required": false; }; "phonemodal": { "alias": "phonemodal"; "required": false; }; }, {}, never, never, true, never>;
|
|
38
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ElementRef, TemplateRef } from '@angular/core';
|
|
2
|
+
import { PhoneService } from '../../services/phone/phone.service';
|
|
3
|
+
import { ModalService } from '../../services/modal/modal.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class RdsitePhoneModalDirective {
|
|
6
|
+
private modalService;
|
|
7
|
+
private platformId;
|
|
8
|
+
private element;
|
|
9
|
+
private phoneService;
|
|
10
|
+
rdsitephonemodal: TemplateRef<HTMLElement> | null;
|
|
11
|
+
private allowedTags;
|
|
12
|
+
constructor(modalService: ModalService, platformId: object, element: ElementRef<Element>, phoneService: PhoneService);
|
|
13
|
+
onClick(event: Event): void;
|
|
14
|
+
openPhoneModal(event: Event, href: string): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RdsitePhoneModalDirective, never>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RdsitePhoneModalDirective, "[rdsitephonemodal]", never, { "rdsitephonemodal": { "alias": "rdsitephonemodal"; "required": false; }; }, {}, never, never, true, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export declare enum Estados {
|
|
2
|
+
AC = "Acre",
|
|
3
|
+
AL = "Alagoas",
|
|
4
|
+
AP = "Amap\u00E1",
|
|
5
|
+
AM = "Amazonas",
|
|
6
|
+
BA = "Bahia",
|
|
7
|
+
CE = "Cear\u00E1",
|
|
8
|
+
DF = "Distrito Federal",
|
|
9
|
+
ES = "Esp\u00EDrito Santo",
|
|
10
|
+
GO = "Go\u00EDas",
|
|
11
|
+
MA = "Maranh\u00E3o",
|
|
12
|
+
MT = "Mato Grosso",
|
|
13
|
+
MS = "Mato Grosso do Sul",
|
|
14
|
+
MG = "Minas Gerais",
|
|
15
|
+
PA = "Par\u00E1",
|
|
16
|
+
PB = "Para\u00EDba",
|
|
17
|
+
PR = "Paran\u00E1",
|
|
18
|
+
PE = "Pernambuco",
|
|
19
|
+
PI = "Piau\u00ED",
|
|
20
|
+
RJ = "Rio de Janeiro",
|
|
21
|
+
RN = "Rio Grande do Norte",
|
|
22
|
+
RS = "Rio Grande do Sul",
|
|
23
|
+
RO = "Rond\u00F4nia",
|
|
24
|
+
RR = "Rora\u00EDma",
|
|
25
|
+
SC = "Santa Catarina",
|
|
26
|
+
SP = "S\u00E3o Paulo",
|
|
27
|
+
SE = "Sergipe",
|
|
28
|
+
TO = "Tocantins"
|
|
29
|
+
}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
export declare enum IconCuraDefaultType {
|
|
2
|
+
'icon-360' = "360",
|
|
3
|
+
'accessibility' = "accessibility",
|
|
4
|
+
'icon-alerta-circ' = "alertCircle",
|
|
5
|
+
'icon-alerta-tri' = "alertTriangle",
|
|
6
|
+
'icon-seta-baixo' = "arrowDown",
|
|
7
|
+
'icon-circle-chevron-down' = "arrowDownCircle",
|
|
8
|
+
'icon-seta-esquerda' = "arrowLeft",
|
|
9
|
+
'icon-circle-chevron-left' = "arrowLeftCircle",
|
|
10
|
+
'icon-seta-direita' = "arrowRight",
|
|
11
|
+
'icon-circle-chevron-right' = "arrowRightCircle",
|
|
12
|
+
'icon-seta-cima' = "arrowUp",
|
|
13
|
+
'icon-circle-chevron-up' = "arrowUpCircle",
|
|
14
|
+
'icon-anexo' = "attach",
|
|
15
|
+
'icon-avatar-f' = "avatarF",
|
|
16
|
+
'icon-avatar-m' = "avatarM",
|
|
17
|
+
'icon-hematologia' = "bloodGroup",
|
|
18
|
+
'icon-agm-agendar' = "calendar",
|
|
19
|
+
'icon-ouvidoria' = "central",
|
|
20
|
+
'icon-chat-circle' = "chatCircle",
|
|
21
|
+
'icon-check' = "check",
|
|
22
|
+
'icon-parceria' = "checkBadge",
|
|
23
|
+
'icon-check-sucesso' = "checkCircle",
|
|
24
|
+
'icon-check-hard' = "checkDouble",
|
|
25
|
+
'icon-hora' = "clock",
|
|
26
|
+
'icon-fechar' = "close",
|
|
27
|
+
'icon-collapse' = "collapse",
|
|
28
|
+
'icon-configuracoes' = "config",
|
|
29
|
+
'icon-nps-dislike' = "npsDeslike",
|
|
30
|
+
'icon-download' = "download",
|
|
31
|
+
'icon-duplicar' = "duplicate",
|
|
32
|
+
'icon-editar' = "edit",
|
|
33
|
+
'icon-exame' = "exam",
|
|
34
|
+
'icon-expand' = "expand",
|
|
35
|
+
'icon-facebook-2' = "facebook",
|
|
36
|
+
'icon-facebook' = "facebook",
|
|
37
|
+
'icon-pdf' = "filePdf",
|
|
38
|
+
'icon-xls' = "fileXls",
|
|
39
|
+
'icon-filter' = "filter",
|
|
40
|
+
'icon-unidade' = "geotag",
|
|
41
|
+
'icon-geotag' = "geotag",
|
|
42
|
+
'icon-google' = "google",
|
|
43
|
+
'icon-google-2' = "google",
|
|
44
|
+
'icon-endereco-hospital' = "geotagUnity",
|
|
45
|
+
'icon-nps-hate' = "npsHate",
|
|
46
|
+
'icon-plano' = "healthPlan",
|
|
47
|
+
'icon-height' = "height",
|
|
48
|
+
'icon-altura' = "height2",
|
|
49
|
+
'icon-home' = "home",
|
|
50
|
+
'icon-enviar-foto' = "imageUp",
|
|
51
|
+
'icon-info-2' = "lamp",
|
|
52
|
+
'icon-info' = "infoCircle",
|
|
53
|
+
'icon-key-lock' = "key",
|
|
54
|
+
'icon-idioma' = "language",
|
|
55
|
+
'icon-idioma-2' = "language2",
|
|
56
|
+
'icon-idioma-en' = "languageEN",
|
|
57
|
+
'icon-idioma-pt' = "languagePT",
|
|
58
|
+
'icon-nps-like' = "npsLike",
|
|
59
|
+
'icon-link' = "link",
|
|
60
|
+
'icon-link-externo' = "linkExternal",
|
|
61
|
+
'icon-lista' = "list",
|
|
62
|
+
'icon-login' = "login",
|
|
63
|
+
'icon-logout' = "logout",
|
|
64
|
+
'icon-nps-love' = "npsLove",
|
|
65
|
+
'icon-mail' = "mail",
|
|
66
|
+
'icon-mail-2' = "mail",
|
|
67
|
+
'icon-mail-input' = "mail",
|
|
68
|
+
'icon-exame-resultado' = "medDoc",
|
|
69
|
+
'icon-exame-imagem' = "medImg",
|
|
70
|
+
'icon-medico' = "medUser",
|
|
71
|
+
'icon-menu' = "menuHamburguer",
|
|
72
|
+
'icon-minus' = "minus",
|
|
73
|
+
'icon-minus-circle' = "minusCircle",
|
|
74
|
+
'icon-minus-square' = "minusSquare",
|
|
75
|
+
'icon-nps-neutral' = "npsNeutral",
|
|
76
|
+
'icon-news' = "news",
|
|
77
|
+
'icon-alert' = "notification",
|
|
78
|
+
'icon-telefone' = "phone",
|
|
79
|
+
'icon-plus' = "plus",
|
|
80
|
+
'icon-plus-circle' = "plusCircle",
|
|
81
|
+
'icon-plus-square' = "plusSquare",
|
|
82
|
+
'icon-print' = "print",
|
|
83
|
+
'icon-perfil' = "profileCircle",
|
|
84
|
+
'icon-perfil-2' = "profile",
|
|
85
|
+
'icon-pulldown' = "down",
|
|
86
|
+
'icon-pulldown-small' = "down",
|
|
87
|
+
'pullupG' = "up",
|
|
88
|
+
'pullupP' = "up",
|
|
89
|
+
'icon-tooltip' = "questionCircle",
|
|
90
|
+
'icon-help' = "questionSquare",
|
|
91
|
+
'icon-date-range' = "range",
|
|
92
|
+
'icon-reload' = "reload",
|
|
93
|
+
'icon-agendamento' = "schedule",
|
|
94
|
+
'icon-agm-ok' = "scheduleCheck",
|
|
95
|
+
'icon-buscar' = "search",
|
|
96
|
+
'icon-secure' = "secure",
|
|
97
|
+
'icon-share' = "share",
|
|
98
|
+
'icon-share-2' = "share",
|
|
99
|
+
'icon-sub-item' = "subItem",
|
|
100
|
+
'icon-geotag-2' = "target",
|
|
101
|
+
'icon-unlink' = "unLink",
|
|
102
|
+
'icon-unsecure' = "unSecure",
|
|
103
|
+
'icon-infraestrutura-idor' = "unity",
|
|
104
|
+
'icon-upload' = "upload",
|
|
105
|
+
'icon-view-off' = "viewFalse",
|
|
106
|
+
'icon-view-on' = "viewTrue",
|
|
107
|
+
'icon-zoom-in' = "zoomIn",
|
|
108
|
+
'icon-zoom-out' = "zoomOut",
|
|
109
|
+
'icon-twitter' = "twitter",
|
|
110
|
+
'icon-twitter-2' = "twitter",
|
|
111
|
+
'icon-x' = "twitter",
|
|
112
|
+
'icon-instagram-2' = "instagram",
|
|
113
|
+
'icon-instagram' = "instagram",
|
|
114
|
+
'icon-whatsapp' = "whatsapp",
|
|
115
|
+
'icon-whatsapp-2' = "whatsapp",
|
|
116
|
+
'icon-linkedin' = "linkedin",
|
|
117
|
+
'icon-linkedin-2' = "linkedin",
|
|
118
|
+
'icon-telegram' = "telegram"
|
|
119
|
+
}
|