@sarasanalytics-com/design-system 0.0.113 → 0.0.115
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/esm2022/lib/card/menu-card/menu-card.component.mjs +3 -3
- package/esm2022/lib/chips/chips.component.mjs +1 -1
- package/esm2022/lib/icon/icon.component.mjs +1 -1
- package/esm2022/lib/left-nav/left-nav.component.mjs +38 -7
- package/esm2022/lib/menu/menu-list/menu-item.component.mjs +18 -0
- package/esm2022/lib/menu/menu.component.mjs +100 -0
- package/esm2022/lib/menu/menu.directive.mjs +116 -0
- package/fesm2022/sarasanalytics-com-design-system.mjs +260 -15
- package/fesm2022/sarasanalytics-com-design-system.mjs.map +1 -1
- package/lib/chips/chips.component.d.ts +8 -0
- package/lib/icon/icon.component.d.ts +8 -0
- package/lib/left-nav/left-nav.component.d.ts +9 -1
- package/lib/menu/menu-list/menu-item.component.d.ts +7 -0
- package/lib/menu/menu.component.d.ts +22 -0
- package/lib/menu/menu.directive.d.ts +50 -0
- package/package.json +2 -2
- package/styles/styles.css +0 -428
|
@@ -21,3 +21,11 @@ export declare class ChipsComponent {
|
|
|
21
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChipsComponent, never>;
|
|
22
22
|
static ɵcmp: i0.ɵɵComponentDeclaration<ChipsComponent, "sa-chip", never, { "id": { "alias": "id"; "required": false; }; "iconPath": { "alias": "iconPath"; "required": false; }; "text": { "alias": "text"; "required": false; }; "type": { "alias": "type"; "required": false; }; "state": { "alias": "state"; "required": false; }; "filling": { "alias": "filling"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "largeStateIcon": { "alias": "largeStateIcon"; "required": false; }; "largeStateText": { "alias": "largeStateText"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; }, { "onClickEvent": "onClickEvent"; }, never, never, true, never>;
|
|
23
23
|
}
|
|
24
|
+
export interface IChip {
|
|
25
|
+
id?: string | number;
|
|
26
|
+
text: string;
|
|
27
|
+
status?: 'active' | 'inactive' | 'disabled';
|
|
28
|
+
type?: 'small' | 'regular' | 'large';
|
|
29
|
+
state?: 'primary' | 'secondary' | 'neutral' | 'error' | 'warning' | 'success';
|
|
30
|
+
filling?: 'filled' | 'outline';
|
|
31
|
+
}
|
|
@@ -27,3 +27,11 @@ export declare class IconComponent {
|
|
|
27
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
28
28
|
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "sa-icon", never, { "img": { "alias": "img"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "size": { "alias": "size"; "required": false; }; "color": { "alias": "color"; "required": false; }; "iconPath": { "alias": "iconPath"; "required": false; }; "iconUrl": { "alias": "iconUrl"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "href": { "alias": "href"; "required": false; }; "hrefTarget": { "alias": "hrefTarget"; "required": false; }; }, { "onClickEvent": "onClickEvent"; }, never, never, true, never>;
|
|
29
29
|
}
|
|
30
|
+
export interface saIcon {
|
|
31
|
+
icon?: IconName;
|
|
32
|
+
iconPath?: string;
|
|
33
|
+
iconUrl?: string;
|
|
34
|
+
size?: string;
|
|
35
|
+
color?: string;
|
|
36
|
+
customClass?: string;
|
|
37
|
+
}
|
|
@@ -1,26 +1,32 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
3
|
import { MatTooltip } from '@angular/material/tooltip';
|
|
4
|
+
import { IMenu } from '../menu/menu.directive';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class LeftNavComponent {
|
|
6
7
|
private route;
|
|
7
8
|
private router;
|
|
9
|
+
templateItemContainer: any;
|
|
8
10
|
data: ILeftNav;
|
|
9
11
|
clickEvent: EventEmitter<ILeftNavClickEvent>;
|
|
10
12
|
hoverEvent: EventEmitter<ILeftNavBlurEvent>;
|
|
13
|
+
onEvent: EventEmitter<any>;
|
|
11
14
|
private activeItem;
|
|
12
15
|
constructor(route: ActivatedRoute, router: Router);
|
|
13
16
|
ngOnInit(): void;
|
|
17
|
+
ngAfterViewInit(): void;
|
|
14
18
|
setItemActive(index: number): void;
|
|
15
19
|
onNavItemClick(item: ILeftNavItem, index: number, event?: any): void;
|
|
16
20
|
onFooterItemClick(item: ILeftNavItem, index: number, event?: any): void;
|
|
17
21
|
onFooterItemBlur(item: ILeftNavItem, index: number, event: any, tooltip: MatTooltip): void;
|
|
18
22
|
onNavItemBlur(item: ILeftNavItem, index: number, event: any, tooltip: MatTooltip): void;
|
|
23
|
+
onMenuEvent(event: any): void;
|
|
19
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<LeftNavComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LeftNavComponent, "sa-left-nav", never, { "data": { "alias": "data"; "required": false; }; }, { "clickEvent": "clickEvent"; "hoverEvent": "hoverEvent"; }, never, ["*"], true, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LeftNavComponent, "sa-left-nav", never, { "data": { "alias": "data"; "required": false; }; }, { "clickEvent": "clickEvent"; "hoverEvent": "hoverEvent"; "onEvent": "onEvent"; }, never, ["*"], true, never>;
|
|
21
26
|
}
|
|
22
27
|
export interface ILeftNav {
|
|
23
28
|
items?: ILeftNavItem[];
|
|
29
|
+
templateItems?: Array<any>;
|
|
24
30
|
footerItems?: ILeftNavItem[];
|
|
25
31
|
}
|
|
26
32
|
export interface ILeftNavItem {
|
|
@@ -32,7 +38,9 @@ export interface ILeftNavItem {
|
|
|
32
38
|
path?: string;
|
|
33
39
|
active?: boolean;
|
|
34
40
|
type?: 'ICON' | 'AVATAR';
|
|
41
|
+
menu?: IMenu;
|
|
35
42
|
altText?: string;
|
|
43
|
+
ShowSearch?: boolean;
|
|
36
44
|
iconLabel?: string;
|
|
37
45
|
}
|
|
38
46
|
export interface ILeftNavClickEvent {
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { IMenuItem } from '../menu.directive';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SAMenuItemComponent {
|
|
4
|
+
item: IMenuItem;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SAMenuItemComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SAMenuItemComponent, "sa-menu-item", never, { "item": { "alias": "item"; "required": false; }; }, {}, never, never, true, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { SimpleChanges, EventEmitter } from '@angular/core';
|
|
2
|
+
import { Overlay } from '@angular/cdk/overlay';
|
|
3
|
+
import { IMenu, IMenuItem } from './menu.directive';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class SAMenuComponent {
|
|
6
|
+
private overlay;
|
|
7
|
+
position: 'left' | 'right' | 'top' | 'bottom';
|
|
8
|
+
menu: IMenu;
|
|
9
|
+
hostEl: any;
|
|
10
|
+
onEvent: EventEmitter<any>;
|
|
11
|
+
onKeyUpEvent: EventEmitter<any>;
|
|
12
|
+
closeEvent: EventEmitter<any>;
|
|
13
|
+
isExpanded: boolean;
|
|
14
|
+
constructor(overlay: Overlay);
|
|
15
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
16
|
+
ngAfterViewInit(): void;
|
|
17
|
+
setPosition(): void;
|
|
18
|
+
onMenuItemClick(event: any, item: IMenuItem): void;
|
|
19
|
+
onSearch(event: any): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SAMenuComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SAMenuComponent, "sa-menu", never, { "position": { "alias": "position"; "required": false; }; "menu": { "alias": "menu"; "required": false; }; "hostEl": { "alias": "hostEl"; "required": false; }; }, { "onEvent": "onEvent"; "onKeyUpEvent": "onKeyUpEvent"; "closeEvent": "closeEvent"; }, never, never, true, never>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Overlay } from '@angular/cdk/overlay';
|
|
2
|
+
import { ElementRef, EventEmitter, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
3
|
+
import { IChip } from '../chips/chips.component';
|
|
4
|
+
import { saIcon } from '../icon/icon.component';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class MenuDirective {
|
|
7
|
+
private overlay;
|
|
8
|
+
private elRef;
|
|
9
|
+
saMenuRef: ViewContainerRef | TemplateRef<ElementRef> | null;
|
|
10
|
+
onMenuEvent: EventEmitter<any>;
|
|
11
|
+
onEvent: EventEmitter<any>;
|
|
12
|
+
_saMenu: IMenu;
|
|
13
|
+
_position: 'left' | 'right' | 'top' | 'bottom';
|
|
14
|
+
get saMenu(): IMenu;
|
|
15
|
+
set saMenu(value: IMenu);
|
|
16
|
+
get position(): 'left' | 'right' | 'top' | 'bottom';
|
|
17
|
+
set position(value: 'left' | 'right' | 'top' | 'bottom');
|
|
18
|
+
constructor(overlay: Overlay, elRef: ElementRef);
|
|
19
|
+
onClick(e: any): void;
|
|
20
|
+
ngAfterViewInit(): void;
|
|
21
|
+
attachMenu(): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MenuDirective, never>;
|
|
23
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MenuDirective, "[saMenu]", never, { "saMenuRef": { "alias": "saMenuRef"; "required": false; }; "saMenu": { "alias": "saMenu"; "required": false; }; "position": { "alias": "saManuPosition"; "required": false; }; }, { "onMenuEvent": "onMenuEvent"; "onEvent": "onEvent"; }, never, never, true, never>;
|
|
24
|
+
}
|
|
25
|
+
export interface IMenu {
|
|
26
|
+
width?: string;
|
|
27
|
+
title?: string;
|
|
28
|
+
showTray?: boolean;
|
|
29
|
+
items?: IMenuItem[];
|
|
30
|
+
showSearch?: boolean;
|
|
31
|
+
showAddIcon?: boolean;
|
|
32
|
+
searchPlaceholder?: string;
|
|
33
|
+
itemGroups?: IMenuGroup[];
|
|
34
|
+
overlayConfig?: {
|
|
35
|
+
offsetX?: number;
|
|
36
|
+
offsetY?: number;
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
export interface IMenuItem {
|
|
40
|
+
label?: string;
|
|
41
|
+
isSelected?: boolean;
|
|
42
|
+
id?: string | number;
|
|
43
|
+
status?: 'active' | 'inactive' | 'disabled';
|
|
44
|
+
chips?: Array<IChip>;
|
|
45
|
+
icon?: saIcon;
|
|
46
|
+
}
|
|
47
|
+
export interface IMenuGroup {
|
|
48
|
+
groupTitle?: string;
|
|
49
|
+
items?: IMenuItem[];
|
|
50
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sarasanalytics-com/design-system",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.115",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^17.2.0",
|
|
6
6
|
"@angular/core": "^17.2.0"
|
|
@@ -22,4 +22,4 @@
|
|
|
22
22
|
"default": "./fesm2022/sarasanalytics-com-design-system.mjs"
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
|
-
}
|
|
25
|
+
}
|
package/styles/styles.css
DELETED
|
@@ -1,428 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
1. Use a more-intuitive box-sizing model.
|
|
3
|
-
*/
|
|
4
|
-
*,
|
|
5
|
-
*::before,
|
|
6
|
-
*::after {
|
|
7
|
-
box-sizing: border-box;
|
|
8
|
-
-webkit-font-smoothing: antialiased;
|
|
9
|
-
-moz-osx-font-smoothing: grayscale;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
html,
|
|
13
|
-
body {
|
|
14
|
-
height: 100%;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
body {
|
|
18
|
-
margin: 0;
|
|
19
|
-
font-family: Roboto, "Helvetica Neue", sans-serif;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
:root {
|
|
23
|
-
--font: 'Roboto';
|
|
24
|
-
--font-family: 'Roboto';
|
|
25
|
-
--font-roboto: 'Roboto';
|
|
26
|
-
--font-inter: 'Inter';
|
|
27
|
-
--font-poppins: "Poppins";
|
|
28
|
-
--font-helvetica: "Helvetica";
|
|
29
|
-
--small-2px: 2px;
|
|
30
|
-
--small-3px: 3px;
|
|
31
|
-
--small-4px: 4px;
|
|
32
|
-
--small-6px: 6px;
|
|
33
|
-
--small-8px: 8px;
|
|
34
|
-
--small-10px: 10px;
|
|
35
|
-
--small-12px: 12px;
|
|
36
|
-
--small-14px: 14px;
|
|
37
|
-
--small-16px: 16px;
|
|
38
|
-
--small-18px: 18px;
|
|
39
|
-
--medium-20px: 20px;
|
|
40
|
-
--medium-22px: 22px;
|
|
41
|
-
--medium-24px: 24px;
|
|
42
|
-
--medium-28px: 28px;
|
|
43
|
-
--medium-32px: 32px;
|
|
44
|
-
--medium-36px: 36px;
|
|
45
|
-
--large-40px: 40px;
|
|
46
|
-
--large-42px: 42px;
|
|
47
|
-
--large-44px: 44px;
|
|
48
|
-
--large-48px: 48px;
|
|
49
|
-
--large-56px: 56px;
|
|
50
|
-
--large-64px: 64px;
|
|
51
|
-
--form-email-icon-color: #33961F;
|
|
52
|
-
|
|
53
|
-
--sa-skeleton-background: #e9ecef;
|
|
54
|
-
--sa-skeleton-shine: rgba(255, 255, 255, 0.3);
|
|
55
|
-
--sa-skeleton-radius: 4px;
|
|
56
|
-
--sa-skeleton-animation-duration: 1.5s;
|
|
57
|
-
--sa-skeleton-gap: 1rem;
|
|
58
|
-
--sa-skeleton-padding: 1rem;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
.insights-theme {
|
|
62
|
-
--primary-50: #EAFFFD;
|
|
63
|
-
--primary-100: #CAFFFB;
|
|
64
|
-
--primary-200: #9CFFFA;
|
|
65
|
-
--primary-300: #00DDEA;
|
|
66
|
-
--primary-400: #00AFC4;
|
|
67
|
-
--primary-500: #008597;
|
|
68
|
-
--primary-600: #0B6E7F;
|
|
69
|
-
--primary-700: #0E5B6B;
|
|
70
|
-
--primary-800: #023D4A;
|
|
71
|
-
--primary-900: #01303A;
|
|
72
|
-
--secondary-50: #FFF3EB;
|
|
73
|
-
--secondary-100: #FFD8C0;
|
|
74
|
-
--secondary-200: #FFC6A2;
|
|
75
|
-
--secondary-300: #FEAB78;
|
|
76
|
-
--secondary-400: #FE9B5D;
|
|
77
|
-
--secondary-500: #FE8235;
|
|
78
|
-
--secondary-600: #E77630;
|
|
79
|
-
--secondary-700: #B45C26;
|
|
80
|
-
--secondary-800: #8C481D;
|
|
81
|
-
--secondary-900: #6B3716;
|
|
82
|
-
--grey-50: #E9EAEB;
|
|
83
|
-
--grey-100: #BAC0C1;
|
|
84
|
-
--grey-200: #98A1A3;
|
|
85
|
-
--grey-300: #697779;
|
|
86
|
-
--grey-400: #4C5C5F;
|
|
87
|
-
--grey-500: #1F3437;
|
|
88
|
-
--grey-600: #1C2F32;
|
|
89
|
-
--grey-700: #162527;
|
|
90
|
-
--grey-800: #111C1E;
|
|
91
|
-
--grey-900: #0D1517;
|
|
92
|
-
--semantic-success-50: #EBF5E9;
|
|
93
|
-
--semantic-success-100: #C0DEBA;
|
|
94
|
-
--semantic-success-200: #A1CF98;
|
|
95
|
-
--semantic-success-300: #76B969;
|
|
96
|
-
--semantic-success-400: #5CAB4C;
|
|
97
|
-
--semantic-success-500: #33961F;
|
|
98
|
-
--semantic-success-600: #2E891C;
|
|
99
|
-
--semantic-success-700: #246B16;
|
|
100
|
-
--semantic-success-800: #1C5311;
|
|
101
|
-
--semantic-success-900: #153F0D;
|
|
102
|
-
--semantic-error-50: #F8E9E9;
|
|
103
|
-
--semantic-error-100: #EBBCB9;
|
|
104
|
-
--semantic-error-200: #E19C98;
|
|
105
|
-
--semantic-error-300: #D36E68;
|
|
106
|
-
--semantic-error-400: #CA524B;
|
|
107
|
-
--semantic-error-500: #BD271E;
|
|
108
|
-
--semantic-error-600: #AC231B;
|
|
109
|
-
--semantic-error-700: #861C15;
|
|
110
|
-
--semantic-error-800: #681511;
|
|
111
|
-
--semantic-error-900: #4F100D;
|
|
112
|
-
--semantic-purple-50: #F3EFFD;
|
|
113
|
-
--semantic-purple-100: #D8CCFA;
|
|
114
|
-
--semantic-purple-200: #C6B4F7;
|
|
115
|
-
--semantic-purple-300: #AB92F4;
|
|
116
|
-
--semantic-purple-400: #9B7DF1;
|
|
117
|
-
--semantic-purple-500: #815BED;
|
|
118
|
-
--semantic-purple-600: #7654D9;
|
|
119
|
-
--semantic-purple-700: #5C41A9;
|
|
120
|
-
--semantic-purple-800: #483383;
|
|
121
|
-
--semantic-purple-900: #372764;
|
|
122
|
-
--semantic-yellow-50: #FEF6E6;
|
|
123
|
-
--semantic-yellow-100: #FBE2B3;
|
|
124
|
-
--semantic-yellow-200: #F9D58E;
|
|
125
|
-
--semantic-yellow-300: #F6C15A;
|
|
126
|
-
--semantic-yellow-400: #F5B53A;
|
|
127
|
-
--text-highemphasis: #1B1F20;
|
|
128
|
-
--text-mediumemphasis: #697779;
|
|
129
|
-
--text-lowemphasis: #98A2A3;
|
|
130
|
-
--text-white: #FFFFFF;
|
|
131
|
-
--text-primary: #008597;
|
|
132
|
-
--text-success: #33961F;
|
|
133
|
-
--text-error: #BD271E;
|
|
134
|
-
--icon-white: #FFFFFF;
|
|
135
|
-
--semantic-yellow-500: #F2A209;
|
|
136
|
-
--semantic-yellow-600: #DC9408;
|
|
137
|
-
--semantic-yellow-700: #AC7406;
|
|
138
|
-
--semantic-yellow-800: #855A05;
|
|
139
|
-
--semantic-yellow-900: #664404;
|
|
140
|
-
--structural-white: #FFFFFF;
|
|
141
|
-
--icon-grey1: #757575;
|
|
142
|
-
--structural-primarytint: #F5F9FA;
|
|
143
|
-
--structural-neutral1: #F9F9F9;
|
|
144
|
-
--structural-neutral2: #FFFAFA;
|
|
145
|
-
--structural-neutral3: #FAFAFA;
|
|
146
|
-
--logo-color-primary: #008597;
|
|
147
|
-
--logo-color-secondary: #9CFFFA;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
.saras-theme {
|
|
151
|
-
--primary-50: #E8F1FC;
|
|
152
|
-
--primary-100: #B8D4F7;
|
|
153
|
-
--primary-200: #96C0F3;
|
|
154
|
-
--primary-300: #66A2ED;
|
|
155
|
-
--primary-400: #4992E9;
|
|
156
|
-
--primary-500: #1B77E4;
|
|
157
|
-
--primary-600: #196CCF;
|
|
158
|
-
--primary-700: #1354A2;
|
|
159
|
-
--primary-800: #0F417D;
|
|
160
|
-
--primary-900: #0B3160;
|
|
161
|
-
--secondary-50: #FFF3EB;
|
|
162
|
-
--secondary-100: #FFD8C0;
|
|
163
|
-
--secondary-200: #FFC6A2;
|
|
164
|
-
--secondary-300: #FEAB78;
|
|
165
|
-
--secondary-400: #FE9B5D;
|
|
166
|
-
--secondary-500: #FE8235;
|
|
167
|
-
--secondary-600: #E77630;
|
|
168
|
-
--secondary-700: #B45C26;
|
|
169
|
-
--secondary-800: #8C481D;
|
|
170
|
-
--secondary-900: #6B3716;
|
|
171
|
-
--grey-50: #E9E9EB;
|
|
172
|
-
--grey-100: #BABDC1;
|
|
173
|
-
--grey-200: #989CA3;
|
|
174
|
-
--grey-300: #697079;
|
|
175
|
-
--grey-400: #4C545F;
|
|
176
|
-
--grey-500: #1F2937;
|
|
177
|
-
--grey-600: #1C2532;
|
|
178
|
-
--grey-700: #161D27;
|
|
179
|
-
--grey-800: #11161E;
|
|
180
|
-
--grey-900: #0D1117;
|
|
181
|
-
--semantic-success-50: #EBF5E9;
|
|
182
|
-
--semantic-success-100: #C0DEBA;
|
|
183
|
-
--semantic-success-200: #A1CF98;
|
|
184
|
-
--semantic-success-300: #76B969;
|
|
185
|
-
--semantic-success-400: #5CAB4C;
|
|
186
|
-
--semantic-success-500: #33961F;
|
|
187
|
-
--semantic-success-600: #2E891C;
|
|
188
|
-
--semantic-success-700: #246B16;
|
|
189
|
-
--semantic-success-800: #1C5311;
|
|
190
|
-
--semantic-success-900: #153F0D;
|
|
191
|
-
--semantic-error-50: #F8E9E9;
|
|
192
|
-
--semantic-error-100: #EBBCB9;
|
|
193
|
-
--semantic-error-200: #E19C98;
|
|
194
|
-
--semantic-error-300: #D36E68;
|
|
195
|
-
--semantic-error-400: #CA524B;
|
|
196
|
-
--semantic-error-500: #BD271E;
|
|
197
|
-
--semantic-error-600: #AC231B;
|
|
198
|
-
--semantic-error-700: #861C15;
|
|
199
|
-
--semantic-error-800: #681511;
|
|
200
|
-
--semantic-error-900: #4F100D;
|
|
201
|
-
--semantic-purple-50: #F3EFFD;
|
|
202
|
-
--semantic-purple-100: #D8CCFA;
|
|
203
|
-
--semantic-purple-200: #C6B4F7;
|
|
204
|
-
--semantic-purple-300: #AB92F4;
|
|
205
|
-
--semantic-purple-400: #9B7DF1;
|
|
206
|
-
--semantic-purple-500: #815BED;
|
|
207
|
-
--semantic-purple-600: #7654D9;
|
|
208
|
-
--semantic-purple-700: #5C41A9;
|
|
209
|
-
--semantic-purple-800: #483383;
|
|
210
|
-
--semantic-purple-900: #372764;
|
|
211
|
-
--semantic-yellow-50: #FEF6E6;
|
|
212
|
-
--semantic-yellow-100: #FBE2B3;
|
|
213
|
-
--semantic-yellow-200: #F9D58E;
|
|
214
|
-
--semantic-yellow-300: #F6C15A;
|
|
215
|
-
--semantic-yellow-400: #F5B53A;
|
|
216
|
-
--text-highemphasis: #1B1D20;
|
|
217
|
-
--text-mediumemphasis: #697079;
|
|
218
|
-
--text-lowemphasis: #989CA3;
|
|
219
|
-
--text-white: #FFFFFF;
|
|
220
|
-
--text-primary: #1B77E4;
|
|
221
|
-
--text-success: #33961F;
|
|
222
|
-
--text-error: #BD271E;
|
|
223
|
-
--icon-white: #FFFFFF;
|
|
224
|
-
--semantic-yellow-500: #F2A209;
|
|
225
|
-
--semantic-yellow-600: #DC9408;
|
|
226
|
-
--semantic-yellow-700: #AC7406;
|
|
227
|
-
--semantic-yellow-800: #855A05;
|
|
228
|
-
--semantic-yellow-900: #664404;
|
|
229
|
-
--structural-white: #FFFFFF;
|
|
230
|
-
--icon-grey1: #757575;
|
|
231
|
-
--structural-primarytint: #FAFCFF;
|
|
232
|
-
--structural-neutral1: #F9F9F9;
|
|
233
|
-
--structural-neutral2: #FFFAFA;
|
|
234
|
-
--structural-neutral3: #FAFAFA;
|
|
235
|
-
--logo-color-primary: #1B77E4;
|
|
236
|
-
--logo-color-secondary: #96C0F3;
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
.purple-theme {
|
|
240
|
-
--primary-50: #F4EBFF;
|
|
241
|
-
--primary-100: #E9D7FE;
|
|
242
|
-
--primary-200: #D6BBFB;
|
|
243
|
-
--primary-300: #B692F6;
|
|
244
|
-
--primary-400: #9E77ED;
|
|
245
|
-
--primary-500: #7F56D9;
|
|
246
|
-
--primary-600: #53389E;
|
|
247
|
-
--primary-700: #53389E;
|
|
248
|
-
--primary-800: #42307D;
|
|
249
|
-
--primary-900: #2C1C5F;
|
|
250
|
-
--secondary-50: #FFF3EB;
|
|
251
|
-
--secondary-100: #FFD8C0;
|
|
252
|
-
--secondary-200: #FFC6A2;
|
|
253
|
-
--secondary-300: #FEAB78;
|
|
254
|
-
--secondary-400: #FE9B5D;
|
|
255
|
-
--secondary-500: #FE8235;
|
|
256
|
-
--secondary-600: #E77630;
|
|
257
|
-
--secondary-700: #B45C26;
|
|
258
|
-
--secondary-800: #8C481D;
|
|
259
|
-
--secondary-900: #6B3716;
|
|
260
|
-
--grey-50: #F2F4F7;
|
|
261
|
-
--grey-100: #EAECF0;
|
|
262
|
-
--grey-200: #D0D5DD;
|
|
263
|
-
--grey-300: #98A2B3;
|
|
264
|
-
--grey-400: #475467;
|
|
265
|
-
--grey-500: #344054;
|
|
266
|
-
--grey-600: #1D2939;
|
|
267
|
-
--grey-700: #1D2939;
|
|
268
|
-
--grey-800: #101828;
|
|
269
|
-
--grey-900: #0C111D;
|
|
270
|
-
--semantic-success-50: #EBF5E9;
|
|
271
|
-
--semantic-success-100: #C0DEBA;
|
|
272
|
-
--semantic-success-200: #A1CF98;
|
|
273
|
-
--semantic-success-300: #76B969;
|
|
274
|
-
--semantic-success-400: #5CAB4C;
|
|
275
|
-
--semantic-success-500: #33961F;
|
|
276
|
-
--semantic-success-600: #2E891C;
|
|
277
|
-
--semantic-success-700: #246B16;
|
|
278
|
-
--semantic-success-800: #1C5311;
|
|
279
|
-
--semantic-success-900: #153F0D;
|
|
280
|
-
--semantic-error-50: #F8E9E9;
|
|
281
|
-
--semantic-error-100: #EBBCB9;
|
|
282
|
-
--semantic-error-200: #E19C98;
|
|
283
|
-
--semantic-error-300: #D36E68;
|
|
284
|
-
--semantic-error-400: #CA524B;
|
|
285
|
-
--semantic-error-500: #BD271E;
|
|
286
|
-
--semantic-error-600: #AC231B;
|
|
287
|
-
--semantic-error-700: #861C15;
|
|
288
|
-
--semantic-error-800: #681511;
|
|
289
|
-
--semantic-error-900: #4F100D;
|
|
290
|
-
--semantic-purple-50: #F3EFFD;
|
|
291
|
-
--semantic-purple-100: #D8CCFA;
|
|
292
|
-
--semantic-purple-200: #C6B4F7;
|
|
293
|
-
--semantic-purple-300: #AB92F4;
|
|
294
|
-
--semantic-purple-400: #9B7DF1;
|
|
295
|
-
--semantic-purple-500: #815BED;
|
|
296
|
-
--semantic-purple-600: #7654D9;
|
|
297
|
-
--semantic-purple-700: #5C41A9;
|
|
298
|
-
--semantic-purple-800: #483383;
|
|
299
|
-
--semantic-purple-900: #372764;
|
|
300
|
-
--semantic-yellow-50: #FEF6E6;
|
|
301
|
-
--semantic-yellow-100: #FBE2B3;
|
|
302
|
-
--semantic-yellow-200: #F9D58E;
|
|
303
|
-
--semantic-yellow-300: #F6C15A;
|
|
304
|
-
--semantic-yellow-400: #F5B53A;
|
|
305
|
-
--text-highemphasis: #1C1B20;
|
|
306
|
-
--text-mediumemphasis: #6D6979;
|
|
307
|
-
--text-lowemphasis: #9A98A3;
|
|
308
|
-
--text-white: #FFFFFF;
|
|
309
|
-
--text-primary: #815BED;
|
|
310
|
-
--text-success: #33961F;
|
|
311
|
-
--text-error: #BD271E;
|
|
312
|
-
--icon-white: #FFFFFF;
|
|
313
|
-
--semantic-yellow-500: #F2A209;
|
|
314
|
-
--semantic-yellow-600: #DC9408;
|
|
315
|
-
--semantic-yellow-700: #AC7406;
|
|
316
|
-
--semantic-yellow-800: #855A05;
|
|
317
|
-
--semantic-yellow-900: #664404;
|
|
318
|
-
--structural-white: #FFFFFF;
|
|
319
|
-
--icon-grey1: #757575;
|
|
320
|
-
--structural-primarytint: #FBFAFF;
|
|
321
|
-
--structural-neutral1: #F9F9F9;
|
|
322
|
-
--structural-neutral2: #FFFAFA;
|
|
323
|
-
--structural-neutral3: #FAFAFA;
|
|
324
|
-
--logo-color-primary: #7F56D9;
|
|
325
|
-
--logo-color-secondary: #D6BBFB;
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
.ag-header {
|
|
329
|
-
font-family: var(--font);
|
|
330
|
-
font-size: 14px;
|
|
331
|
-
font-weight: 400;
|
|
332
|
-
height: 20px;
|
|
333
|
-
line-height: 20px;
|
|
334
|
-
}
|
|
335
|
-
|
|
336
|
-
.ag-header-cell lib-grid-cell {
|
|
337
|
-
width: 100%;
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
.ag-header-cell-label {
|
|
341
|
-
font-family: var(--font);
|
|
342
|
-
font-size: 14px;
|
|
343
|
-
font-weight: 400;
|
|
344
|
-
line-height: 20px;
|
|
345
|
-
margin-left: 10px;
|
|
346
|
-
}
|
|
347
|
-
|
|
348
|
-
.checkbox-card-group {
|
|
349
|
-
display: grid;
|
|
350
|
-
grid-template-columns: repeat(auto-fill, 38.875rem);
|
|
351
|
-
gap: 1.75rem 2rem;
|
|
352
|
-
max-width: -webkit-fill-available;
|
|
353
|
-
margin-bottom: 1.5rem;
|
|
354
|
-
}
|
|
355
|
-
|
|
356
|
-
.form-field-helpText,
|
|
357
|
-
.form-field-description {
|
|
358
|
-
color: var(--text-mediumemphasis, #6D6979);
|
|
359
|
-
font-family: var(--font-roboto, Roboto);
|
|
360
|
-
font-size: var(--small-14px);
|
|
361
|
-
font-style: normal;
|
|
362
|
-
font-weight: 400;
|
|
363
|
-
line-height: var(--medium-24px);
|
|
364
|
-
letter-spacing: 0.5px;
|
|
365
|
-
margin: 0px;
|
|
366
|
-
}
|
|
367
|
-
|
|
368
|
-
.form-field-title {
|
|
369
|
-
color: var(--text-highemphasis, #1C1B20);
|
|
370
|
-
font-family: var(--font-roboto, Roboto);
|
|
371
|
-
font-size: var(--medium-22px);
|
|
372
|
-
font-style: normal;
|
|
373
|
-
font-weight: 500;
|
|
374
|
-
line-height: var(--medium-36px);
|
|
375
|
-
margin: 0px;
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
.title-container {
|
|
379
|
-
display: flex;
|
|
380
|
-
flex-direction: column;
|
|
381
|
-
gap: var(--small-8px);
|
|
382
|
-
}
|
|
383
|
-
|
|
384
|
-
.formly-field-container {
|
|
385
|
-
display: flex;
|
|
386
|
-
flex-direction: column;
|
|
387
|
-
gap: var(--medium-24px);
|
|
388
|
-
}
|
|
389
|
-
|
|
390
|
-
.accordion-group-container {
|
|
391
|
-
display: flex;
|
|
392
|
-
flex-direction: column;
|
|
393
|
-
gap: var(--small-16px);
|
|
394
|
-
}
|
|
395
|
-
|
|
396
|
-
.accordions-group-container {
|
|
397
|
-
display: flex;
|
|
398
|
-
flex-direction: column;
|
|
399
|
-
gap: var(--small-16px);
|
|
400
|
-
}
|
|
401
|
-
|
|
402
|
-
/* for invalid input field color */
|
|
403
|
-
.sa-input-container .support-label.customValidationWrapper {
|
|
404
|
-
color: var(--semantic-error-500, #BD271E);
|
|
405
|
-
font-family: var(--font);
|
|
406
|
-
font-size: 11px;
|
|
407
|
-
font-style: normal;
|
|
408
|
-
font-weight: 400;
|
|
409
|
-
line-height: var(--small-16px);
|
|
410
|
-
letter-spacing: 0.5px;
|
|
411
|
-
padding: var(--small-4px) var(--small-16px) 0px 0px;
|
|
412
|
-
}
|
|
413
|
-
|
|
414
|
-
.sa-input-container .support-label.invalid.customValidationWrapper {
|
|
415
|
-
color: var(--semantic-error-500, #BD271E);
|
|
416
|
-
}
|
|
417
|
-
|
|
418
|
-
.customField .customInputContainer .sa-input .sa-input-field.invalid>input,
|
|
419
|
-
.customField .customInputContainer .sa-input .sa-input-field.invalid sa-icon,
|
|
420
|
-
.customField .customInputContainer .sa-input .sa-input-field.invalid .sa-input-pretext {
|
|
421
|
-
color: var(--semantic-error-500, #BD271E);
|
|
422
|
-
}
|
|
423
|
-
|
|
424
|
-
.customInputContainer .sa-input .sa-input-field.invalid {
|
|
425
|
-
--border: 1px solid var(--semantic-error-500, #BD271E);
|
|
426
|
-
}
|
|
427
|
-
|
|
428
|
-
/* end */
|