@sarasanalytics-com/design-system 0.0.49 → 0.0.51
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/assets/analysis.svg +1 -0
- package/assets/arrowRightOutlined.svg +1 -0
- package/assets/avatar.svg +1 -0
- package/assets/bpn.svg +1 -0
- package/assets/businessStatsFilled.svg +1 -0
- package/assets/channelkey.svg +1 -0
- package/assets/chatHelpOutlined.svg +1 -0
- package/assets/checkCircleFilled.svg +1 -0
- package/assets/checkCircleOutlined.svg +1 -0
- package/assets/checkOutlined.svg +1 -0
- package/assets/circleFilled.svg +1 -0
- package/assets/closeBlueOutlined.svg +1 -0
- package/assets/closeCircleFilled.svg +1 -0
- package/assets/closeOutlined.svg +1 -0
- package/assets/dataonavatar.svg +1 -0
- package/assets/desktopSpeakerOutlined.svg +1 -0
- package/assets/disabledCheckboxFilled.svg +1 -0
- package/assets/doubleDownOutlined.svg +1 -0
- package/assets/downChevronOutlined.svg +3 -0
- package/assets/downOutlined.svg +1 -0
- package/assets/errorCircleOutlined.svg +1 -0
- package/assets/errorCrossOutlined.svg +3 -0
- package/assets/eyeFilled.svg +1 -0
- package/assets/eyeOff.svg +3 -0
- package/assets/eyeOutlined.svg +1 -0
- package/assets/formDetailsOutlined.svg +1 -0
- package/assets/gridViewOutlined.svg +1 -0
- package/assets/headsetOutlined.svg +3 -0
- package/assets/homeOutlined.svg +1 -0
- package/assets/infoCircleOutlined.svg +3 -0
- package/assets/infoTriangleFilled.svg +1 -0
- package/assets/infoTriangleOutlined.svg +1 -0
- package/assets/innosupps.svg +1 -0
- package/assets/leftChevronCircle.svg +2 -0
- package/assets/locationOutlined.svg +1 -0
- package/assets/mailOutlined.svg +1 -0
- package/assets/multiConnectionHub.svg +1 -0
- package/assets/murad.svg +1 -0
- package/assets/peopleAudience.svg +1 -0
- package/assets/personOutlined.svg +1 -0
- package/assets/pricingIcon.svg +3 -0
- package/assets/refresh.svg +3 -0
- package/assets/rightChevronCircle.svg +1 -0
- package/assets/rightChevronOutlined.svg +1 -0
- package/assets/sarasFullLogo.svg +13 -0
- package/assets/sarasWhite.svg +1 -0
- package/assets/screenPerson.svg +1 -0
- package/assets/settingsOutlined.svg +1 -0
- package/assets/slideSettings.svg +1 -0
- package/assets/sourcesOutlined.svg +1 -0
- package/assets/tabDesktopArrowClockwiseOutlined.svg +1 -0
- package/assets/targetScanOutlined.svg +1 -0
- package/assets/timerOutlined.svg +5 -0
- package/assets/upwardTriangleFilled.svg +1 -0
- package/esm2022/interfaces/scrolling-card-interface.mjs +2 -0
- package/esm2022/lib/accordion/accordion.component.mjs +5 -3
- package/esm2022/lib/scrolling-cards/scrolling-cards.component.mjs +1 -1
- package/esm2022/public-api.mjs +3 -2
- package/fesm2022/sarasanalytics-com-design-system.mjs +76 -74
- package/fesm2022/sarasanalytics-com-design-system.mjs.map +1 -1
- package/interfaces/scrolling-card-interface.d.ts +15 -0
- package/lib/scrolling-cards/scrolling-cards.component.d.ts +3 -18
- package/package.json +2 -2
- package/public-api.d.ts +2 -1
- package/styles/styles.css +532 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export interface IScrollingCardData {
|
|
2
|
+
title: string;
|
|
3
|
+
body: string;
|
|
4
|
+
icon?: string;
|
|
5
|
+
iconSize?: string;
|
|
6
|
+
customWrapperClass?: string;
|
|
7
|
+
width?: string;
|
|
8
|
+
column?: string;
|
|
9
|
+
showCardBody?: boolean;
|
|
10
|
+
showCardHeader?: boolean;
|
|
11
|
+
subtitle?: string;
|
|
12
|
+
logoIcon?: string;
|
|
13
|
+
avatar?: string;
|
|
14
|
+
avatarIcon?: string;
|
|
15
|
+
}
|
|
@@ -1,27 +1,13 @@
|
|
|
1
1
|
import { OnInit, AfterViewInit, ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { IScrollingCardData } from '../../interfaces/scrolling-card-interface';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
|
-
interface CardData {
|
|
4
|
-
title: string;
|
|
5
|
-
body: string;
|
|
6
|
-
icon?: string;
|
|
7
|
-
iconSize?: string;
|
|
8
|
-
customWrapperClass?: string;
|
|
9
|
-
width?: string;
|
|
10
|
-
column?: string;
|
|
11
|
-
showCardBody?: boolean;
|
|
12
|
-
showCardHeader?: boolean;
|
|
13
|
-
subtitle?: string;
|
|
14
|
-
logoIcon?: string;
|
|
15
|
-
avatar?: string;
|
|
16
|
-
avatarIcon?: string;
|
|
17
|
-
}
|
|
18
4
|
export declare class ScrollingCardsComponent implements OnInit, AfterViewInit {
|
|
19
5
|
private cdr;
|
|
20
|
-
cards:
|
|
6
|
+
cards: IScrollingCardData[];
|
|
21
7
|
duration: number;
|
|
22
8
|
direction: 'up' | 'down' | 'left' | 'right';
|
|
23
9
|
cardContainer: ElementRef;
|
|
24
|
-
displayCards:
|
|
10
|
+
displayCards: IScrollingCardData[];
|
|
25
11
|
animationPaused: boolean;
|
|
26
12
|
isVertical: boolean;
|
|
27
13
|
constructor(cdr: ChangeDetectorRef);
|
|
@@ -33,4 +19,3 @@ export declare class ScrollingCardsComponent implements OnInit, AfterViewInit {
|
|
|
33
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScrollingCardsComponent, never>;
|
|
34
20
|
static ɵcmp: i0.ɵɵComponentDeclaration<ScrollingCardsComponent, "sa-scrolling-cards", never, { "cards": { "alias": "cards"; "required": true; }; "duration": { "alias": "duration"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; }, {}, never, never, true, never>;
|
|
35
21
|
}
|
|
36
|
-
export {};
|
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.51",
|
|
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/public-api.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export * from './lib/icon/icon.component';
|
|
|
23
23
|
export * from './lib/left-nav/left-nav.component';
|
|
24
24
|
export * from './lib/list/list.component';
|
|
25
25
|
export * from './lib/message-banner/message-banner.component';
|
|
26
|
+
export * from './lib/message-banner-v2/message-banner-v2.component';
|
|
26
27
|
export * from './lib/page-layout/page-layout.component';
|
|
27
28
|
export * from './lib/progress-bar/progress-bar.component';
|
|
28
29
|
export * from './lib/radio-button/radio-button.component';
|
|
@@ -32,7 +33,6 @@ export * from './lib/stepper/stepper.component';
|
|
|
32
33
|
export * from './lib/tabs/tabs.component';
|
|
33
34
|
export * from './lib/toast/toast.component';
|
|
34
35
|
export * from './lib/tool-tip/tool-tip.component';
|
|
35
|
-
export * from './lib/message-banner-v2/message-banner-v2.component';
|
|
36
36
|
export * from './lib/component-library.service';
|
|
37
37
|
export * from './lib/icon/icon.service';
|
|
38
38
|
export * from './interfaces/avatar-interface';
|
|
@@ -44,6 +44,7 @@ export * from './interfaces/guide-card-interface';
|
|
|
44
44
|
export * from './interfaces/icon-interface';
|
|
45
45
|
export * from './interfaces/message-banner';
|
|
46
46
|
export * from './interfaces/option-interface';
|
|
47
|
+
export * from './interfaces/scrolling-card-interface';
|
|
47
48
|
export * from './interfaces/select-interface';
|
|
48
49
|
export * from './interfaces/tab-interface';
|
|
49
50
|
export * from './interfaces/toast-interface';
|
|
@@ -0,0 +1,532 @@
|
|
|
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-roboto: 'Roboto';
|
|
25
|
+
--font-inter: 'Inter';
|
|
26
|
+
--font-poppins: "Poppins";
|
|
27
|
+
--font-helvetica: "Helvetica";
|
|
28
|
+
--small-2px: 2px;
|
|
29
|
+
--small-4px: 4px;
|
|
30
|
+
--small-6px: 6px;
|
|
31
|
+
--small-8px: 8px;
|
|
32
|
+
--small-12px: 12px;
|
|
33
|
+
--small-14px: 14px;
|
|
34
|
+
--small-16px: 16px;
|
|
35
|
+
--small-18px: 18px;
|
|
36
|
+
--medium-20px: 20px;
|
|
37
|
+
--medium-22px: 22px;
|
|
38
|
+
--medium-24px: 24px;
|
|
39
|
+
--medium-28px: 28px;
|
|
40
|
+
--medium-32px: 32px;
|
|
41
|
+
--medium-36px: 36px;
|
|
42
|
+
--large-40px: 40px;
|
|
43
|
+
--large-42px: 42px;
|
|
44
|
+
--large-44px: 44px;
|
|
45
|
+
--large-48px: 48px;
|
|
46
|
+
--large-56px: 56px;
|
|
47
|
+
--large-64px: 64px;
|
|
48
|
+
--form-email-icon-color: #33961F;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.insights-theme {
|
|
52
|
+
--primary-50: #EAFFFD;
|
|
53
|
+
--primary-100: #CAFFFB;
|
|
54
|
+
--primary-200: #9CFFFA;
|
|
55
|
+
--primary-300: #00DDEA;
|
|
56
|
+
--primary-400: #00AFC4;
|
|
57
|
+
--primary-500: #008597;
|
|
58
|
+
--primary-600: #0B6E7F;
|
|
59
|
+
--primary-700: #0E5B6B;
|
|
60
|
+
--primary-800: #023D4A;
|
|
61
|
+
--primary-900: #01303A;
|
|
62
|
+
--secondary-50: #FFF3EB;
|
|
63
|
+
--secondary-100: #FFD8C0;
|
|
64
|
+
--secondary-200: #FFC6A2;
|
|
65
|
+
--secondary-300: #FEAB78;
|
|
66
|
+
--secondary-400: #FE9B5D;
|
|
67
|
+
--secondary-500: #FE8235;
|
|
68
|
+
--secondary-600: #E77630;
|
|
69
|
+
--secondary-700: #B45C26;
|
|
70
|
+
--secondary-800: #8C481D;
|
|
71
|
+
--secondary-900: #6B3716;
|
|
72
|
+
--grey-50: #E9EAEB;
|
|
73
|
+
--grey-100: #BAC0C1;
|
|
74
|
+
--grey-200: #98A1A3;
|
|
75
|
+
--grey-300: #697779;
|
|
76
|
+
--grey-400: #4C5C5F;
|
|
77
|
+
--grey-500: #1F3437;
|
|
78
|
+
--grey-600: #1C2F32;
|
|
79
|
+
--grey-700: #162527;
|
|
80
|
+
--grey-800: #111C1E;
|
|
81
|
+
--grey-900: #0D1517;
|
|
82
|
+
--semantic-success-50: #EBF5E9;
|
|
83
|
+
--semantic-success-100: #C0DEBA;
|
|
84
|
+
--semantic-success-200: #A1CF98;
|
|
85
|
+
--semantic-success-300: #76B969;
|
|
86
|
+
--semantic-success-400: #5CAB4C;
|
|
87
|
+
--semantic-success-500: #33961F;
|
|
88
|
+
--semantic-success-600: #2E891C;
|
|
89
|
+
--semantic-success-700: #246B16;
|
|
90
|
+
--semantic-success-800: #1C5311;
|
|
91
|
+
--semantic-success-900: #153F0D;
|
|
92
|
+
--semantic-error-50: #F8E9E9;
|
|
93
|
+
--semantic-error-100: #EBBCB9;
|
|
94
|
+
--semantic-error-200: #E19C98;
|
|
95
|
+
--semantic-error-300: #D36E68;
|
|
96
|
+
--semantic-error-400: #CA524B;
|
|
97
|
+
--semantic-error-500: #BD271E;
|
|
98
|
+
--semantic-error-600: #AC231B;
|
|
99
|
+
--semantic-error-700: #861C15;
|
|
100
|
+
--semantic-error-800: #681511;
|
|
101
|
+
--semantic-error-900: #4F100D;
|
|
102
|
+
--semantic-purple-50: #F3EFFD;
|
|
103
|
+
--semantic-purple-100: #D8CCFA;
|
|
104
|
+
--semantic-purple-200: #C6B4F7;
|
|
105
|
+
--semantic-purple-300: #AB92F4;
|
|
106
|
+
--semantic-purple-400: #9B7DF1;
|
|
107
|
+
--semantic-purple-500: #815BED;
|
|
108
|
+
--semantic-purple-600: #7654D9;
|
|
109
|
+
--semantic-purple-700: #5C41A9;
|
|
110
|
+
--semantic-purple-800: #483383;
|
|
111
|
+
--semantic-purple-900: #372764;
|
|
112
|
+
--semantic-yellow-50: #FEF6E6;
|
|
113
|
+
--semantic-yellow-100: #FBE2B3;
|
|
114
|
+
--semantic-yellow-200: #F9D58E;
|
|
115
|
+
--semantic-yellow-300: #F6C15A;
|
|
116
|
+
--semantic-yellow-400: #F5B53A;
|
|
117
|
+
--text-highemphasis: #1B1F20;
|
|
118
|
+
--text-mediumemphasis: #697779;
|
|
119
|
+
--text-lowemphasis: #98A2A3;
|
|
120
|
+
--text-white: #FFFFFF;
|
|
121
|
+
--text-primary: #008597;
|
|
122
|
+
--text-success: #33961F;
|
|
123
|
+
--text-error: #BD271E;
|
|
124
|
+
--icon-white: #FFFFFF;
|
|
125
|
+
--semantic-yellow-500: #F2A209;
|
|
126
|
+
--semantic-yellow-600: #DC9408;
|
|
127
|
+
--semantic-yellow-700: #AC7406;
|
|
128
|
+
--semantic-yellow-800: #855A05;
|
|
129
|
+
--semantic-yellow-900: #664404;
|
|
130
|
+
--structural-white: #FFFFFF;
|
|
131
|
+
--icon-grey1: #757575;
|
|
132
|
+
--structural-primarytint: #F5F9FA;
|
|
133
|
+
--structural-neutral1: #F9F9F9;
|
|
134
|
+
--structural-neutral2: #FFFAFA;
|
|
135
|
+
--structural-neutral3: #FAFAFA;
|
|
136
|
+
--logo-color-primary: #008597;
|
|
137
|
+
--logo-color-secondary: #9CFFFA;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.saras-theme {
|
|
141
|
+
--primary-50: #E8F1FC;
|
|
142
|
+
--primary-100: #B8D4F7;
|
|
143
|
+
--primary-200: #96C0F3;
|
|
144
|
+
--primary-300: #66A2ED;
|
|
145
|
+
--primary-400: #4992E9;
|
|
146
|
+
--primary-500: #1B77E4;
|
|
147
|
+
--primary-600: #196CCF;
|
|
148
|
+
--primary-700: #1354A2;
|
|
149
|
+
--primary-800: #0F417D;
|
|
150
|
+
--primary-900: #0B3160;
|
|
151
|
+
--secondary-50: #FFF3EB;
|
|
152
|
+
--secondary-100: #FFD8C0;
|
|
153
|
+
--secondary-200: #FFC6A2;
|
|
154
|
+
--secondary-300: #FEAB78;
|
|
155
|
+
--secondary-400: #FE9B5D;
|
|
156
|
+
--secondary-500: #FE8235;
|
|
157
|
+
--secondary-600: #E77630;
|
|
158
|
+
--secondary-700: #B45C26;
|
|
159
|
+
--secondary-800: #8C481D;
|
|
160
|
+
--secondary-900: #6B3716;
|
|
161
|
+
--grey-50: #E9E9EB;
|
|
162
|
+
--grey-100: #BABDC1;
|
|
163
|
+
--grey-200: #989CA3;
|
|
164
|
+
--grey-300: #697079;
|
|
165
|
+
--grey-400: #4C545F;
|
|
166
|
+
--grey-500: #1F2937;
|
|
167
|
+
--grey-600: #1C2532;
|
|
168
|
+
--grey-700: #161D27;
|
|
169
|
+
--grey-800: #11161E;
|
|
170
|
+
--grey-900: #0D1117;
|
|
171
|
+
--semantic-success-50: #EBF5E9;
|
|
172
|
+
--semantic-success-100: #C0DEBA;
|
|
173
|
+
--semantic-success-200: #A1CF98;
|
|
174
|
+
--semantic-success-300: #76B969;
|
|
175
|
+
--semantic-success-400: #5CAB4C;
|
|
176
|
+
--semantic-success-500: #33961F;
|
|
177
|
+
--semantic-success-600: #2E891C;
|
|
178
|
+
--semantic-success-700: #246B16;
|
|
179
|
+
--semantic-success-800: #1C5311;
|
|
180
|
+
--semantic-success-900: #153F0D;
|
|
181
|
+
--semantic-error-50: #F8E9E9;
|
|
182
|
+
--semantic-error-100: #EBBCB9;
|
|
183
|
+
--semantic-error-200: #E19C98;
|
|
184
|
+
--semantic-error-300: #D36E68;
|
|
185
|
+
--semantic-error-400: #CA524B;
|
|
186
|
+
--semantic-error-500: #BD271E;
|
|
187
|
+
--semantic-error-600: #AC231B;
|
|
188
|
+
--semantic-error-700: #861C15;
|
|
189
|
+
--semantic-error-800: #681511;
|
|
190
|
+
--semantic-error-900: #4F100D;
|
|
191
|
+
--semantic-purple-50: #F3EFFD;
|
|
192
|
+
--semantic-purple-100: #D8CCFA;
|
|
193
|
+
--semantic-purple-200: #C6B4F7;
|
|
194
|
+
--semantic-purple-300: #AB92F4;
|
|
195
|
+
--semantic-purple-400: #9B7DF1;
|
|
196
|
+
--semantic-purple-500: #815BED;
|
|
197
|
+
--semantic-purple-600: #7654D9;
|
|
198
|
+
--semantic-purple-700: #5C41A9;
|
|
199
|
+
--semantic-purple-800: #483383;
|
|
200
|
+
--semantic-purple-900: #372764;
|
|
201
|
+
--semantic-yellow-50: #FEF6E6;
|
|
202
|
+
--semantic-yellow-100: #FBE2B3;
|
|
203
|
+
--semantic-yellow-200: #F9D58E;
|
|
204
|
+
--semantic-yellow-300: #F6C15A;
|
|
205
|
+
--semantic-yellow-400: #F5B53A;
|
|
206
|
+
--text-highemphasis: #1B1D20;
|
|
207
|
+
--text-mediumemphasis: #697079;
|
|
208
|
+
--text-lowemphasis: #989CA3;
|
|
209
|
+
--text-white: #FFFFFF;
|
|
210
|
+
--text-primary: #1B77E4;
|
|
211
|
+
--text-success: #33961F;
|
|
212
|
+
--text-error: #BD271E;
|
|
213
|
+
--icon-white: #FFFFFF;
|
|
214
|
+
--semantic-yellow-500: #F2A209;
|
|
215
|
+
--semantic-yellow-600: #DC9408;
|
|
216
|
+
--semantic-yellow-700: #AC7406;
|
|
217
|
+
--semantic-yellow-800: #855A05;
|
|
218
|
+
--semantic-yellow-900: #664404;
|
|
219
|
+
--structural-white: #FFFFFF;
|
|
220
|
+
--icon-grey1: #757575;
|
|
221
|
+
--structural-primarytint: #FAFCFF;
|
|
222
|
+
--structural-neutral1: #F9F9F9;
|
|
223
|
+
--structural-neutral2: #FFFAFA;
|
|
224
|
+
--structural-neutral3: #FAFAFA;
|
|
225
|
+
--logo-color-primary: #1B77E4;
|
|
226
|
+
--logo-color-secondary: #96C0F3;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.purple-theme {
|
|
230
|
+
--primary-50: #F4EBFF;
|
|
231
|
+
--primary-100: #E9D7FE;
|
|
232
|
+
--primary-200: #D6BBFB;
|
|
233
|
+
--primary-300: #B692F6;
|
|
234
|
+
--primary-400: #9E77ED;
|
|
235
|
+
--primary-500: #7F56D9;
|
|
236
|
+
--primary-600: #53389E;
|
|
237
|
+
--primary-700: #53389E;
|
|
238
|
+
--primary-800: #42307D;
|
|
239
|
+
--primary-900: #2C1C5F;
|
|
240
|
+
--secondary-50: #FFF3EB;
|
|
241
|
+
--secondary-100: #FFD8C0;
|
|
242
|
+
--secondary-200: #FFC6A2;
|
|
243
|
+
--secondary-300: #FEAB78;
|
|
244
|
+
--secondary-400: #FE9B5D;
|
|
245
|
+
--secondary-500: #FE8235;
|
|
246
|
+
--secondary-600: #E77630;
|
|
247
|
+
--secondary-700: #B45C26;
|
|
248
|
+
--secondary-800: #8C481D;
|
|
249
|
+
--secondary-900: #6B3716;
|
|
250
|
+
--grey-50: #F2F4F7;
|
|
251
|
+
--grey-100: #EAECF0;
|
|
252
|
+
--grey-200: #D0D5DD;
|
|
253
|
+
--grey-300: #98A2B3;
|
|
254
|
+
--grey-400: #475467;
|
|
255
|
+
--grey-500: #344054;
|
|
256
|
+
--grey-600: #1D2939;
|
|
257
|
+
--grey-700: #1D2939;
|
|
258
|
+
--grey-800: #101828;
|
|
259
|
+
--grey-900: #0C111D;
|
|
260
|
+
--semantic-success-50: #EBF5E9;
|
|
261
|
+
--semantic-success-100: #C0DEBA;
|
|
262
|
+
--semantic-success-200: #A1CF98;
|
|
263
|
+
--semantic-success-300: #76B969;
|
|
264
|
+
--semantic-success-400: #5CAB4C;
|
|
265
|
+
--semantic-success-500: #33961F;
|
|
266
|
+
--semantic-success-600: #2E891C;
|
|
267
|
+
--semantic-success-700: #246B16;
|
|
268
|
+
--semantic-success-800: #1C5311;
|
|
269
|
+
--semantic-success-900: #153F0D;
|
|
270
|
+
--semantic-error-50: #F8E9E9;
|
|
271
|
+
--semantic-error-100: #EBBCB9;
|
|
272
|
+
--semantic-error-200: #E19C98;
|
|
273
|
+
--semantic-error-300: #D36E68;
|
|
274
|
+
--semantic-error-400: #CA524B;
|
|
275
|
+
--semantic-error-500: #BD271E;
|
|
276
|
+
--semantic-error-600: #AC231B;
|
|
277
|
+
--semantic-error-700: #861C15;
|
|
278
|
+
--semantic-error-800: #681511;
|
|
279
|
+
--semantic-error-900: #4F100D;
|
|
280
|
+
--semantic-purple-50: #F3EFFD;
|
|
281
|
+
--semantic-purple-100: #D8CCFA;
|
|
282
|
+
--semantic-purple-200: #C6B4F7;
|
|
283
|
+
--semantic-purple-300: #AB92F4;
|
|
284
|
+
--semantic-purple-400: #9B7DF1;
|
|
285
|
+
--semantic-purple-500: #815BED;
|
|
286
|
+
--semantic-purple-600: #7654D9;
|
|
287
|
+
--semantic-purple-700: #5C41A9;
|
|
288
|
+
--semantic-purple-800: #483383;
|
|
289
|
+
--semantic-purple-900: #372764;
|
|
290
|
+
--semantic-yellow-50: #FEF6E6;
|
|
291
|
+
--semantic-yellow-100: #FBE2B3;
|
|
292
|
+
--semantic-yellow-200: #F9D58E;
|
|
293
|
+
--semantic-yellow-300: #F6C15A;
|
|
294
|
+
--semantic-yellow-400: #F5B53A;
|
|
295
|
+
--text-highemphasis: #1C1B20;
|
|
296
|
+
--text-mediumemphasis: #6D6979;
|
|
297
|
+
--text-lowemphasis: #9A98A3;
|
|
298
|
+
--text-white: #FFFFFF;
|
|
299
|
+
--text-primary: #815BED;
|
|
300
|
+
--text-success: #33961F;
|
|
301
|
+
--text-error: #BD271E;
|
|
302
|
+
--icon-white: #FFFFFF;
|
|
303
|
+
--semantic-yellow-500: #F2A209;
|
|
304
|
+
--semantic-yellow-600: #DC9408;
|
|
305
|
+
--semantic-yellow-700: #AC7406;
|
|
306
|
+
--semantic-yellow-800: #855A05;
|
|
307
|
+
--semantic-yellow-900: #664404;
|
|
308
|
+
--structural-white: #FFFFFF;
|
|
309
|
+
--icon-grey1: #757575;
|
|
310
|
+
--structural-primarytint: #FBFAFF;
|
|
311
|
+
--structural-neutral1: #F9F9F9;
|
|
312
|
+
--structural-neutral2: #FFFAFA;
|
|
313
|
+
--structural-neutral3: #FAFAFA;
|
|
314
|
+
--logo-color-primary: #7F56D9;
|
|
315
|
+
--logo-color-secondary: #D6BBFB;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.holiday-theme {
|
|
319
|
+
/* Primary (Christmas Green) */
|
|
320
|
+
--primary-50: #E8F5ED;
|
|
321
|
+
--primary-100: #C2E3CF;
|
|
322
|
+
--primary-200: #9AD2B1;
|
|
323
|
+
--primary-300: #72C093;
|
|
324
|
+
--primary-400: #4AAE75;
|
|
325
|
+
--primary-500: #165B33; /* Traditional Christmas Green */
|
|
326
|
+
--primary-600: #14532E;
|
|
327
|
+
--primary-700: #104026;
|
|
328
|
+
--primary-800: #0C2D1C;
|
|
329
|
+
--primary-900: #081912;
|
|
330
|
+
|
|
331
|
+
/* Secondary (Christmas Red) */
|
|
332
|
+
--secondary-50: #FEE7E7;
|
|
333
|
+
--secondary-100: #FCC8C8;
|
|
334
|
+
--secondary-200: #FAA9A9;
|
|
335
|
+
--secondary-300: #F78A8A;
|
|
336
|
+
--secondary-400: #F56B6B;
|
|
337
|
+
--secondary-500: #CC0000; /* Traditional Christmas Red */
|
|
338
|
+
--secondary-600: #B80000;
|
|
339
|
+
--secondary-700: #8F0000;
|
|
340
|
+
--secondary-800: #660000;
|
|
341
|
+
--secondary-900: #3D0000;
|
|
342
|
+
|
|
343
|
+
/* Grey Scale */
|
|
344
|
+
--grey-50: #F8FAFC;
|
|
345
|
+
--grey-100: #E8EDF3;
|
|
346
|
+
--grey-200: #D1DBE8;
|
|
347
|
+
--grey-300: #B3C2D4;
|
|
348
|
+
--grey-400: #8496AF;
|
|
349
|
+
--grey-500: #556B8C;
|
|
350
|
+
--grey-600: #405169;
|
|
351
|
+
--grey-700: #2C3A4F;
|
|
352
|
+
--grey-800: #1A2435;
|
|
353
|
+
--grey-900: #0B1219;
|
|
354
|
+
|
|
355
|
+
/* Semantic Colors */
|
|
356
|
+
--semantic-success-50: #E6F4E6;
|
|
357
|
+
--semantic-success-500: #2D5A27; /* Holly Green */
|
|
358
|
+
--semantic-success-900: #1C3619;
|
|
359
|
+
|
|
360
|
+
--semantic-error-50: #FFEAEA;
|
|
361
|
+
--semantic-error-500: #CC0000; /* Bright Red */
|
|
362
|
+
--semantic-error-900: #660000;
|
|
363
|
+
|
|
364
|
+
/* Accent Colors */
|
|
365
|
+
--semantic-gold-50: #FFF8E6;
|
|
366
|
+
--semantic-gold-500: #FFD700; /* Christmas Gold */
|
|
367
|
+
--semantic-gold-900: #665600;
|
|
368
|
+
|
|
369
|
+
/* Text Colors */
|
|
370
|
+
--text-highemphasis: #0B1219;
|
|
371
|
+
--text-mediumemphasis: #556B8C;
|
|
372
|
+
--text-lowemphasis: #8496AF;
|
|
373
|
+
--text-white: #FFFFFF;
|
|
374
|
+
--text-primary: #165B33;
|
|
375
|
+
--text-success: #2D5A27;
|
|
376
|
+
--text-error: #CC0000;
|
|
377
|
+
|
|
378
|
+
/* Structural Colors */
|
|
379
|
+
--structural-white: #FFFFFF;
|
|
380
|
+
--structural-primarytint: #F5FAF7;
|
|
381
|
+
--structural-neutral1: #F8FAFC;
|
|
382
|
+
--structural-neutral2: #FFFAFA;
|
|
383
|
+
--structural-neutral3: #FAFAFA;
|
|
384
|
+
|
|
385
|
+
/* Logo Colors */
|
|
386
|
+
--logo-color-primary: #165B33;
|
|
387
|
+
--logo-color-secondary: #CC0000;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.new-year-theme {
|
|
391
|
+
/* Primary (Midnight Blue) */
|
|
392
|
+
--primary-50: #E6E9F4;
|
|
393
|
+
--primary-100: #BCC5E4;
|
|
394
|
+
--primary-200: #929FD3;
|
|
395
|
+
--primary-300: #6779C2;
|
|
396
|
+
--primary-400: #3D53B1;
|
|
397
|
+
--primary-500: #132D70; /* Midnight Blue */
|
|
398
|
+
--primary-600: #112966;
|
|
399
|
+
--primary-700: #0D2052;
|
|
400
|
+
--primary-800: #09173D;
|
|
401
|
+
--primary-900: #050E29;
|
|
402
|
+
|
|
403
|
+
/* Secondary (Champagne Gold) */
|
|
404
|
+
--secondary-50: #FFF9E6;
|
|
405
|
+
--secondary-100: #FFEFC0;
|
|
406
|
+
--secondary-200: #FFE599;
|
|
407
|
+
--secondary-300: #FFDB73;
|
|
408
|
+
--secondary-400: #FFD14C;
|
|
409
|
+
--secondary-500: #F9C846; /* Champagne Gold */
|
|
410
|
+
--secondary-600: #E5B840;
|
|
411
|
+
--secondary-700: #B38F32;
|
|
412
|
+
--secondary-800: #806624;
|
|
413
|
+
--secondary-900: #4C3C16;
|
|
414
|
+
|
|
415
|
+
/* Grey Scale */
|
|
416
|
+
--grey-50: #F8FAFC;
|
|
417
|
+
--grey-100: #E2E8F0;
|
|
418
|
+
--grey-200: #CBD5E1;
|
|
419
|
+
--grey-300: #94A3B8;
|
|
420
|
+
--grey-400: #64748B;
|
|
421
|
+
--grey-500: #475569;
|
|
422
|
+
--grey-600: #334155;
|
|
423
|
+
--grey-700: #1E293B;
|
|
424
|
+
--grey-800: #0F172A;
|
|
425
|
+
--grey-900: #020617;
|
|
426
|
+
|
|
427
|
+
/* Semantic Colors */
|
|
428
|
+
--semantic-success-50: #E6F4E6;
|
|
429
|
+
--semantic-success-500: #2D5A27;
|
|
430
|
+
--semantic-success-900: #1C3619;
|
|
431
|
+
|
|
432
|
+
--semantic-error-50: #FFEAEA;
|
|
433
|
+
--semantic-error-500: #DC2626;
|
|
434
|
+
--semantic-error-900: #7F1D1D;
|
|
435
|
+
|
|
436
|
+
/* Accent Colors (Silver) */
|
|
437
|
+
--semantic-silver-50: #F8FAFC;
|
|
438
|
+
--semantic-silver-500: #C0C0C0; /* Silver */
|
|
439
|
+
--semantic-silver-900: #1E293B;
|
|
440
|
+
|
|
441
|
+
/* Text Colors */
|
|
442
|
+
--text-highemphasis: #0F172A;
|
|
443
|
+
--text-mediumemphasis: #475569;
|
|
444
|
+
--text-lowemphasis: #94A3B8;
|
|
445
|
+
--text-white: #FFFFFF;
|
|
446
|
+
--text-primary: #132D70;
|
|
447
|
+
--text-success: #2D5A27;
|
|
448
|
+
--text-error: #DC2626;
|
|
449
|
+
|
|
450
|
+
/* Structural Colors */
|
|
451
|
+
--structural-white: #FFFFFF;
|
|
452
|
+
--structural-primarytint: #F8FAFF;
|
|
453
|
+
--structural-neutral1: #F8FAFC;
|
|
454
|
+
--structural-neutral2: #FFFAFA;
|
|
455
|
+
--structural-neutral3: #FAFAFA;
|
|
456
|
+
|
|
457
|
+
/* Logo Colors */
|
|
458
|
+
--logo-color-primary: #132D70;
|
|
459
|
+
--logo-color-secondary: #F9C846;
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
.ag-header {
|
|
463
|
+
font-family: var(--font);
|
|
464
|
+
font-size: 14px;
|
|
465
|
+
font-weight: 400;
|
|
466
|
+
height: 20px;
|
|
467
|
+
line-height: 20px;
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
.ag-header-cell lib-grid-cell {
|
|
471
|
+
width: 100%;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
.ag-header-cell-label {
|
|
475
|
+
font-family: var(--font);
|
|
476
|
+
font-size: 14px;
|
|
477
|
+
font-weight: 400;
|
|
478
|
+
line-height: 20px;
|
|
479
|
+
margin-left: 10px;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
.checkbox-card-group {
|
|
483
|
+
display: grid;
|
|
484
|
+
grid-template-columns: repeat(auto-fill, 38.875rem);
|
|
485
|
+
gap: 1.75rem 2rem;
|
|
486
|
+
max-width: -webkit-fill-available;
|
|
487
|
+
margin-bottom: 1.5rem;
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
.form-field-helpText,
|
|
491
|
+
.form-field-description {
|
|
492
|
+
color: var(--text-mediumemphasis, #6D6979);
|
|
493
|
+
font-family: var(--font);
|
|
494
|
+
font-size: var(--small-14px);
|
|
495
|
+
font-style: normal;
|
|
496
|
+
font-weight: 400;
|
|
497
|
+
line-height: var(--medium-20px);
|
|
498
|
+
letter-spacing: 0.25px;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
.form-field-title {
|
|
502
|
+
color: var(--text-highemphasis, #1C1B20);
|
|
503
|
+
font-family: var(--font);
|
|
504
|
+
font-size: var(--medium-20px);
|
|
505
|
+
font-style: normal;
|
|
506
|
+
font-weight: 500;
|
|
507
|
+
line-height: var(--medium-28px);
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
.title-container {
|
|
511
|
+
display: flex;
|
|
512
|
+
flex-direction: column;
|
|
513
|
+
gap: var(--small-8px);
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
.formly-field-container {
|
|
517
|
+
display: flex;
|
|
518
|
+
flex-direction: column;
|
|
519
|
+
gap: var(--medium-24px);
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
.accordion-group-container {
|
|
523
|
+
display: flex;
|
|
524
|
+
flex-direction: column;
|
|
525
|
+
gap: var(--small-16px);
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
.accordions-group-container {
|
|
529
|
+
display: flex;
|
|
530
|
+
flex-direction: column;
|
|
531
|
+
gap: var(--small-16px);
|
|
532
|
+
}
|