@dev-tcloud/tcloud-ui 4.0.0 → 4.1.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/README.md +11 -0
- package/esm2022/lib/_directives/currency/currency.directive.mjs +7 -7
- package/esm2022/lib/_directives/directives.module.mjs +43 -7
- package/esm2022/lib/_directives/tcloud-access/tcloud-ui-check-access.directive.mjs +66 -0
- package/esm2022/lib/_directives/tcloud-access/tcloud-ui-ng-check-access.directive.mjs +50 -0
- package/esm2022/lib/_directives/tcloud-access/tcloud-ui-ng-feature-flags.directive.mjs +44 -0
- package/esm2022/lib/_directives/tcloud-ui-digit-only.directive.mjs +64 -0
- package/esm2022/lib/_directives/tcloud-ui-highlight.diretive.mjs +36 -0
- package/esm2022/lib/_directives/tcloud-ui-ip-mask.directive.mjs +54 -0
- package/esm2022/lib/_interfaces/user.service.interface.mjs +2 -0
- package/esm2022/lib/_modules/tcloud-ui-progress-bar/tcloud-ui-progress-bar.component.mjs +2 -2
- package/esm2022/lib/_modules/tcloud-ui-scroll-box/tcloud-ui-scroll-box.component.mjs +2 -2
- package/esm2022/lib/_services/tcloud-ui-check-access.service.mjs +170 -0
- package/esm2022/lib/tcloud-ui.config.mjs +2 -0
- package/esm2022/lib/tcloud-ui.module.mjs +13 -1
- package/esm2022/public-api.mjs +9 -1
- package/fesm2022/dev-tcloud-tcloud-ui.mjs +522 -15
- package/fesm2022/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/lib/_directives/currency/currency.directive.d.ts +3 -3
- package/lib/_directives/directives.module.d.ts +7 -1
- package/lib/_directives/tcloud-access/tcloud-ui-check-access.directive.d.ts +17 -0
- package/lib/_directives/tcloud-access/tcloud-ui-ng-check-access.directive.d.ts +15 -0
- package/lib/_directives/tcloud-access/tcloud-ui-ng-feature-flags.directive.d.ts +15 -0
- package/lib/_directives/tcloud-ui-digit-only.directive.d.ts +12 -0
- package/lib/_directives/tcloud-ui-highlight.diretive.d.ts +11 -0
- package/lib/_directives/tcloud-ui-ip-mask.directive.d.ts +10 -0
- package/lib/_interfaces/user.service.interface.d.ts +3 -0
- package/lib/_services/tcloud-ui-check-access.service.d.ts +15 -0
- package/lib/tcloud-ui.config.d.ts +7 -0
- package/lib/tcloud-ui.module.d.ts +3 -0
- package/package.json +1 -1
- package/public-api.d.ts +8 -0
- package/scss/tcloud/custom/buttons.scss +7 -3
- package/scss/tcloud/custom/colors.scss +8 -0
- package/scss/tcloud/custom/mixins.scss +143 -143
- package/scss/tcloud/custom/variables.scss +4 -1
- package/scss/tcloud/disaster-recovery/colors.scss +15 -0
- package/scss/tcloud/disaster-recovery/layout.scss +14 -0
- package/scss/tcloud/disaster-recovery/styles.scss +2 -0
- package/scss/tcloud/prime/cards-products.scss +332 -0
- package/scss/tcloud/prime/left-navigation.scss +328 -0
- package/scss/tcloud/prime/styles.scss +3 -0
- package/scss/tcloud/prime/tcloud-prime.scss +3872 -0
- package/scss/tcloud/standard/left-navigation.scss +48 -0
- package/scss/tcloud/standard/styles.scss +3 -0
- package/scss/tcloud/standard/tcloud-standard.scss +126 -0
- package/scss/tcloud/standard/top-navigation.scss +61 -0
- package/scss/tcloud/styles.scss +7 -5
- package/scss/tcloud/tcloud-ui.scss +8 -0
- package/scss/tcloud/iaas/forms.scss +0 -18
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ElementRef, Renderer2 } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class
|
|
4
|
+
export declare class TCloudUiCurrencyDirective implements ControlValueAccessor {
|
|
5
5
|
private el;
|
|
6
6
|
private renderer;
|
|
7
7
|
constructor(el: ElementRef, renderer: Renderer2);
|
|
@@ -19,6 +19,6 @@ export declare class TCloudCurrencyDirective implements ControlValueAccessor {
|
|
|
19
19
|
private formatarNumero;
|
|
20
20
|
private formatReal;
|
|
21
21
|
private toDecimal;
|
|
22
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
23
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiCurrencyDirective, never>;
|
|
23
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TCloudUiCurrencyDirective, "[TCcurrency]", never, {}, {}, never, never, false, never>;
|
|
24
24
|
}
|
|
@@ -4,8 +4,14 @@ import * as i2 from "./align/align.directive";
|
|
|
4
4
|
import * as i3 from "./hover-parent/hover-parent.directive";
|
|
5
5
|
import * as i4 from "./el-copy/el-copy.directive";
|
|
6
6
|
import * as i5 from "./currency/currency.directive";
|
|
7
|
+
import * as i6 from "./tcloud-access/tcloud-ui-check-access.directive";
|
|
8
|
+
import * as i7 from "./tcloud-access/tcloud-ui-ng-check-access.directive";
|
|
9
|
+
import * as i8 from "./tcloud-access/tcloud-ui-ng-feature-flags.directive";
|
|
10
|
+
import * as i9 from "./tcloud-ui-digit-only.directive";
|
|
11
|
+
import * as i10 from "./tcloud-ui-highlight.diretive";
|
|
12
|
+
import * as i11 from "./tcloud-ui-ip-mask.directive";
|
|
7
13
|
export declare class TCloudUiDirectiveModule {
|
|
8
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiDirectiveModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TCloudUiDirectiveModule, [typeof i1.TCloudUiTooltipDirective, typeof i2.TCloudUiAlignDirective, typeof i3.TCloudUiHoverParentDirective, typeof i4.TCloudUiElCopyDirective, typeof i5.
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TCloudUiDirectiveModule, [typeof i1.TCloudUiTooltipDirective, typeof i2.TCloudUiAlignDirective, typeof i3.TCloudUiHoverParentDirective, typeof i4.TCloudUiElCopyDirective, typeof i5.TCloudUiCurrencyDirective, typeof i6.TCloudUiCheckAccessDirective, typeof i7.TCloudUiNgCheckAccessDirective, typeof i8.TCloudUiNgFeatureFlagsDirective, typeof i9.TCloudUiDigitOnlyDirective, typeof i10.TCloudUiHighLightDirective, typeof i11.TCloudUiIpMaskDirective], never, [typeof i1.TCloudUiTooltipDirective, typeof i2.TCloudUiAlignDirective, typeof i3.TCloudUiHoverParentDirective, typeof i4.TCloudUiElCopyDirective, typeof i5.TCloudUiCurrencyDirective, typeof i6.TCloudUiCheckAccessDirective, typeof i7.TCloudUiNgCheckAccessDirective, typeof i8.TCloudUiNgFeatureFlagsDirective, typeof i9.TCloudUiDigitOnlyDirective, typeof i10.TCloudUiHighLightDirective, typeof i11.TCloudUiIpMaskDirective]>;
|
|
10
16
|
static ɵinj: i0.ɵɵInjectorDeclaration<TCloudUiDirectiveModule>;
|
|
11
17
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ElementRef, OnInit, Renderer2 } from '@angular/core';
|
|
2
|
+
import { TCloudUiCheckAccessService } from '../../_services/tcloud-ui-check-access.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TCloudUiCheckAccessDirective implements OnInit {
|
|
5
|
+
private el;
|
|
6
|
+
private renderer;
|
|
7
|
+
private checkAccessService;
|
|
8
|
+
set TCCheckAccess(checkAccess: any);
|
|
9
|
+
constructor(el: ElementRef, renderer: Renderer2, checkAccessService: TCloudUiCheckAccessService);
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
check(checkAccess: any): void;
|
|
12
|
+
setStyle(el: any): void;
|
|
13
|
+
normalStyle(el: any): void;
|
|
14
|
+
removeElement(el: any): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiCheckAccessDirective, never>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TCloudUiCheckAccessDirective, "[TCCheckAccess]", never, { "TCCheckAccess": { "alias": "TCCheckAccess"; "required": false; }; }, {}, never, never, false, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { TemplateRef, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { TCloudUiCheckAccessService } from '../../_services/tcloud-ui-check-access.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TCloudUiNgCheckAccessDirective {
|
|
5
|
+
private templateRef;
|
|
6
|
+
private viewContainer;
|
|
7
|
+
private checkAccessService;
|
|
8
|
+
constructor(templateRef: TemplateRef<any>, viewContainer: ViewContainerRef, checkAccessService: TCloudUiCheckAccessService);
|
|
9
|
+
private isCondition;
|
|
10
|
+
set ngTCCheckAccess(checkAccess: any | boolean);
|
|
11
|
+
set ngTCCheckAccessNgIf(check: boolean);
|
|
12
|
+
private check_view;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiNgCheckAccessDirective, never>;
|
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TCloudUiNgCheckAccessDirective, "[ngTCCheckAccess]", never, { "ngTCCheckAccess": { "alias": "ngTCCheckAccess"; "required": false; }; "ngTCCheckAccessNgIf": { "alias": "ngTCCheckAccessNgIf"; "required": false; }; }, {}, never, never, false, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { TemplateRef, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { TCloudUiCheckAccessService } from '../../_services/tcloud-ui-check-access.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TCloudUiNgFeatureFlagsDirective {
|
|
5
|
+
private templateRef;
|
|
6
|
+
private viewContainer;
|
|
7
|
+
private checkAccessService;
|
|
8
|
+
constructor(templateRef: TemplateRef<any>, viewContainer: ViewContainerRef, checkAccessService: TCloudUiCheckAccessService);
|
|
9
|
+
private isCondition;
|
|
10
|
+
set ngTCFeatureFlags(FeatureFlags: any | boolean);
|
|
11
|
+
set TCNgFeatureFlagsNgIf(check: boolean);
|
|
12
|
+
private check_view;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiNgFeatureFlagsDirective, never>;
|
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TCloudUiNgFeatureFlagsDirective, "[ngTCFeatureFlags]", never, { "ngTCFeatureFlags": { "alias": "ngTCFeatureFlags"; "required": false; }; "TCNgFeatureFlagsNgIf": { "alias": "TCNgFeatureFlagsNgIf"; "required": false; }; }, {}, never, never, false, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TCloudUiDigitOnlyDirective {
|
|
4
|
+
el: ElementRef;
|
|
5
|
+
inputElement: HTMLElement;
|
|
6
|
+
constructor(el: ElementRef);
|
|
7
|
+
onKeyDown(e: KeyboardEvent): void;
|
|
8
|
+
onPaste(event: ClipboardEvent): void;
|
|
9
|
+
onDrop(event: DragEvent): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiDigitOnlyDirective, never>;
|
|
11
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TCloudUiDigitOnlyDirective, "[TCDigitOnly]", never, {}, {}, never, never, false, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ElementRef, OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TCloudUiHighLightDirective implements OnInit {
|
|
4
|
+
el: ElementRef;
|
|
5
|
+
TCHighlight: string | undefined;
|
|
6
|
+
inputElement: HTMLElement;
|
|
7
|
+
constructor(el: ElementRef);
|
|
8
|
+
ngOnInit(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiHighLightDirective, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TCloudUiHighLightDirective, "[TCHighlight]", never, { "TCHighlight": { "alias": "TCHighlight"; "required": false; }; }, {}, never, never, false, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TCloudUiIpMaskDirective {
|
|
4
|
+
el: ElementRef;
|
|
5
|
+
constructor(el: ElementRef);
|
|
6
|
+
onKeyDown(e: any): void;
|
|
7
|
+
onPaste(event: ClipboardEvent): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiIpMaskDirective, never>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TCloudUiIpMaskDirective, "[TCIpMask]", never, {}, {}, never, never, false, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TCloudUiCheckAccessService {
|
|
3
|
+
private _UserService;
|
|
4
|
+
private userService;
|
|
5
|
+
constructor(_UserService: any);
|
|
6
|
+
check(checkAccess: any): boolean;
|
|
7
|
+
checkDefaultMode(checkAccess: any): boolean;
|
|
8
|
+
checkImpersonalizeMode(checkAccess: any, temp_user: any): boolean;
|
|
9
|
+
checkFeatureFlags(_feature: string | string[] | any): boolean;
|
|
10
|
+
private getImpersonalizeUserInfo;
|
|
11
|
+
private getLocalStorage;
|
|
12
|
+
private removeLocalStorage;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiCheckAccessService, [{ optional: true; }]>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TCloudUiCheckAccessService>;
|
|
15
|
+
}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
+
import { TCloudUiConfig } from './tcloud-ui.config';
|
|
1
3
|
import * as i0 from "@angular/core";
|
|
2
4
|
import * as i1 from "./_modules/tcloud-ui-modal/tcloud-ui-modal.module";
|
|
3
5
|
import * as i2 from "./_modules/tcloud-ui-tab-menu/tcloud-ui-tab-menu.module";
|
|
@@ -27,6 +29,7 @@ import * as i25 from "./_modules/tcloud-ui-line-step-title/tcloud-ui-line-step-t
|
|
|
27
29
|
import * as i26 from "./_directives/directives.module";
|
|
28
30
|
import * as i27 from "./_pipes/tcloud-pipes.module";
|
|
29
31
|
export declare class TCloudUiModule {
|
|
32
|
+
static forRoot(config: TCloudUiConfig): ModuleWithProviders<TCloudUiModule>;
|
|
30
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiModule, never>;
|
|
31
34
|
static ɵmod: i0.ɵɵNgModuleDeclaration<TCloudUiModule, never, [typeof i1.TCloudUiModalModule, typeof i2.TCloudUiTabMenuModule, typeof i3.TCloudUiLinhaLogoModule, typeof i4.TCloudUiLineStepCircleModule, typeof i5.TCloudUiMultiSelectModule, typeof i6.TCloudUiDataListModule, typeof i7.TCloudUiMultiInputModule, typeof i8.TCloudUiChoiceIssuesModule, typeof i9.TCloudUiInputSearchModule, typeof i10.TCloudUiNotFoundModule, typeof i11.TCloudUiTableModule, typeof i12.TCloudUiNumberStepModule, typeof i13.TCloudUiScrollBoxModule, typeof i14.TCloudUiFiltersModule, typeof i15.TCloudUiAccordionModule, typeof i16.TCloudUiDatepickerModule, typeof i17.TCloudUiDatepickerTimeModule, typeof i18.TCloudUiMultiplesValuesModule, typeof i19.TCloudUiWelcomeModule, typeof i20.TCloudUiInputPasswordModule, typeof i21.TCloudUiProgressBarModule, typeof i22.TCloudUiLoadingModule, typeof i23.TCloudUiReorderItemsModule, typeof i24.TCloudUiLabelTokenModule, typeof i25.TCloudUiLineStepTitleModule, typeof i26.TCloudUiDirectiveModule, typeof i27.TCloudUiPipesModule], [typeof i1.TCloudUiModalModule, typeof i2.TCloudUiTabMenuModule, typeof i3.TCloudUiLinhaLogoModule, typeof i4.TCloudUiLineStepCircleModule, typeof i5.TCloudUiMultiSelectModule, typeof i6.TCloudUiDataListModule, typeof i7.TCloudUiMultiInputModule, typeof i8.TCloudUiChoiceIssuesModule, typeof i9.TCloudUiInputSearchModule, typeof i10.TCloudUiNotFoundModule, typeof i11.TCloudUiTableModule, typeof i12.TCloudUiNumberStepModule, typeof i13.TCloudUiScrollBoxModule, typeof i14.TCloudUiFiltersModule, typeof i15.TCloudUiAccordionModule, typeof i16.TCloudUiDatepickerModule, typeof i17.TCloudUiDatepickerTimeModule, typeof i18.TCloudUiMultiplesValuesModule, typeof i19.TCloudUiWelcomeModule, typeof i20.TCloudUiInputPasswordModule, typeof i21.TCloudUiProgressBarModule, typeof i22.TCloudUiLoadingModule, typeof i23.TCloudUiReorderItemsModule, typeof i24.TCloudUiLabelTokenModule, typeof i25.TCloudUiLineStepTitleModule, typeof i26.TCloudUiDirectiveModule, typeof i27.TCloudUiPipesModule]>;
|
|
32
35
|
static ɵinj: i0.ɵɵInjectorDeclaration<TCloudUiModule>;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from './lib/tcloud-ui.module';
|
|
2
|
+
export * from './lib/tcloud-ui.config';
|
|
2
3
|
export * from './lib/_modules/tcloud-ui-modal/tcloud-ui-modal.module';
|
|
3
4
|
export * from './lib/_modules/tcloud-ui-modal/tcloud-ui-modal.component';
|
|
4
5
|
export * from './lib/_modules/tcloud-ui-modal/components/tcloud-ui-modal-header/tcloud-ui-modal-header.component';
|
|
@@ -70,7 +71,14 @@ export * from './lib/_directives/align/align.directive';
|
|
|
70
71
|
export * from './lib/_directives/hover-parent/hover-parent.directive';
|
|
71
72
|
export * from './lib/_directives/el-copy/el-copy.directive';
|
|
72
73
|
export * from './lib/_directives/currency/currency.directive';
|
|
74
|
+
export * from './lib/_directives/tcloud-access/tcloud-ui-check-access.directive';
|
|
75
|
+
export * from './lib/_directives/tcloud-access/tcloud-ui-ng-check-access.directive';
|
|
76
|
+
export * from './lib/_directives/tcloud-access/tcloud-ui-ng-feature-flags.directive';
|
|
77
|
+
export * from './lib/_directives/tcloud-ui-digit-only.directive';
|
|
78
|
+
export * from './lib/_directives/tcloud-ui-highlight.diretive';
|
|
79
|
+
export * from './lib/_directives/tcloud-ui-ip-mask.directive';
|
|
73
80
|
export * from './lib/_pipes/tcloud-pipes.module';
|
|
74
81
|
export * from './lib/_pipes/index';
|
|
75
82
|
export * from './lib/_services/loading-transitions.service';
|
|
76
83
|
export * from './lib/_services/search-in-object.service';
|
|
84
|
+
export * from './lib/_services/tcloud-ui-check-access.service';
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
color: var(--tc-gray-600);
|
|
5
5
|
cursor: pointer;
|
|
6
6
|
border-radius: 30px;
|
|
7
|
-
display: inline-flex
|
|
7
|
+
/*display: inline-flex;*/
|
|
8
8
|
align-items: center;
|
|
9
9
|
transition: all 0.25s;
|
|
10
10
|
padding: 0 25px;
|
|
@@ -269,7 +269,7 @@ margin: 0 0 0 10px;
|
|
|
269
269
|
|
|
270
270
|
.tc-btn-primary,
|
|
271
271
|
.btn-green-validate {
|
|
272
|
-
display: inline-flex
|
|
272
|
+
/*display: inline-flex;*/
|
|
273
273
|
align-items: center;
|
|
274
274
|
background: var(--tc-primary)!important;
|
|
275
275
|
color: var(--white) !important;
|
|
@@ -363,7 +363,7 @@ margin: 0;
|
|
|
363
363
|
}
|
|
364
364
|
|
|
365
365
|
.btn-disabled {
|
|
366
|
-
display: inline-flex
|
|
366
|
+
/*display: inline-flex;*/
|
|
367
367
|
align-items: center;
|
|
368
368
|
background: var(--tc-primary)!important;
|
|
369
369
|
color: var(--white) !important;
|
|
@@ -997,3 +997,7 @@ border-radius: 35px;
|
|
|
997
997
|
font-size: 24px;
|
|
998
998
|
line-height: 1.33;
|
|
999
999
|
}
|
|
1000
|
+
|
|
1001
|
+
.tc-display-inline-flex{
|
|
1002
|
+
display: inline-flex;
|
|
1003
|
+
}
|
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
|
|
50
50
|
// commons
|
|
51
51
|
--orange: orange;
|
|
52
|
+
--orange-lighten: #ffaf1a;
|
|
52
53
|
--red :#dc0217;
|
|
53
54
|
--azul: #1c84c6;
|
|
54
55
|
--green: #1E8E3E;
|
|
@@ -63,6 +64,7 @@
|
|
|
63
64
|
--danger: #D93025;
|
|
64
65
|
--success :#1E8E3E;
|
|
65
66
|
--complete :#039BE5;
|
|
67
|
+
--running :#2f0cf8;
|
|
66
68
|
|
|
67
69
|
--warning-lighten: #f3b137;
|
|
68
70
|
--danger-lighten: #eb5b50;
|
|
@@ -86,4 +88,10 @@
|
|
|
86
88
|
--cinza5: #f8f9fa;
|
|
87
89
|
|
|
88
90
|
--verde: #37b6c4;
|
|
91
|
+
|
|
92
|
+
//GoogleMap
|
|
93
|
+
--google-map-orange: #FF9800;
|
|
94
|
+
--google-map-blue: #0288D1;
|
|
95
|
+
--google-map-purple: #7B1FA2;
|
|
96
|
+
--google-map-green: #558B2F;
|
|
89
97
|
}
|