@sarasanalytics-com/design-system 0.0.59 → 0.0.60

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.
@@ -19,4 +19,9 @@ export type ButtonIconPosition = PredefinedButtonPositions | string;
19
19
  export declare const buttonType: readonly ["primary", "outline", "transparent"];
20
20
  type PredefinedButtonType = typeof buttonType[number];
21
21
  export type ButtonType = PredefinedButtonType | string;
22
+ export interface ButtonClickEvent {
23
+ type: 'helper' | 'main';
24
+ button: ButtonInterface;
25
+ originalEvent: Event;
26
+ }
22
27
  export {};
@@ -0,0 +1,17 @@
1
+ import { SafeHtml } from "@angular/platform-browser";
2
+ import { ChipInterface } from "./chip-interface";
3
+ export interface HeaderChipConfig extends ChipInterface {
4
+ }
5
+ export interface HeaderIcon {
6
+ iconUrl: string;
7
+ size?: string;
8
+ }
9
+ export interface HeaderInfoItem {
10
+ text: string;
11
+ icon?: string;
12
+ }
13
+ export interface HeaderConfig {
14
+ text?: string;
15
+ icon?: HeaderIcon;
16
+ html?: string | SafeHtml;
17
+ }
@@ -1,4 +1,4 @@
1
- export declare const iconNames: readonly ["analysis", "arrowRightOutlined", "avatar", "businessStatsFilled", "chatHelpOutlined", "checkCircleFilled", "checkCircleOutlined", "checkOutlined", "circleFilled", "closeBlueOutlined", "closeCircleFilled", "closeOutlined", "doubleDownOutlined", "eyeFilled", "eyeOutlined", "formDetailsOutlined", "gridViewOutlined", "homeOutlined", "infoCircleOutlined", "infoTriangleFilled", "infoTriangleOutlined", "innosupps", "locationOutlined", "mailOutlined", "multiConnectionHub", "personOutlined", "rightChevronOutlined", "sarasWhite", "settingsOutlined", "sourcesOutlined", "targetScanOutlined", "upwardTriangleFilled", "headsetOutlined", "sarasFullLogo", "leftChevronCircle", "rightChevronCircle", "errorCircleOutlined", "errorCrossOutlined", "downChevronOutlined", "peopleAudience", "screenPerson", "slideSettings", "desktopSpeakerOutlined", "tabDesktopArrowClockwiseOutlined", "disabledCheckboxFilled", "timerOutlined", "refresh"];
1
+ export declare const iconNames: readonly ["analysis", "arrowRightOutlined", "avatar", "businessStatsFilled", "chatHelpOutlined", "checkCircleFilled", "checkCircleOutlined", "checkOutlined", "circleFilled", "closeBlueOutlined", "closeCircleFilled", "closeOutlined", "doubleDownOutlined", "eyeFilled", "eyeOutlined", "formDetailsOutlined", "gridViewOutlined", "homeOutlined", "infoCircleOutlined", "infoTriangleFilled", "infoTriangleOutlined", "innosupps", "locationOutlined", "mailOutlined", "multiConnectionHub", "personOutlined", "rightChevronOutlined", "sarasWhite", "settingsOutlined", "sourcesOutlined", "targetScanOutlined", "upwardTriangleFilled", "headsetOutlined", "sarasFullLogo", "leftChevronCircle", "rightChevronCircle", "errorCircleOutlined", "errorCrossOutlined", "downChevronOutlined", "peopleAudience", "screenPerson", "slideSettings", "desktopSpeakerOutlined", "tabDesktopArrowClockwiseOutlined", "disabledCheckboxFilled", "timerOutlined", "refresh", "chatIcon", "add", "calendar"];
2
2
  type PredefinedIconName = typeof iconNames[number];
3
3
  export type IconName = PredefinedIconName | string;
4
4
  export {};
@@ -0,0 +1,25 @@
1
+ import * as i0 from "@angular/core";
2
+ export interface CohortStatus {
3
+ text: string;
4
+ type: 'regular' | 'small' | 'large';
5
+ state: 'primary' | 'secondary' | 'neutral' | 'error' | 'warning' | 'success';
6
+ filling: 'outline' | 'filled';
7
+ iconPath?: string;
8
+ iconPosition?: 'left' | 'right' | 'both' | '';
9
+ largeStateIcon?: string;
10
+ largeStateText?: string;
11
+ }
12
+ export interface CohortData {
13
+ title: string;
14
+ subtitle: string;
15
+ description: string;
16
+ thumbnailUrl: string;
17
+ statuses: CohortStatus[];
18
+ }
19
+ export declare class CohortCardComponent {
20
+ data: CohortData;
21
+ size: 'small' | 'medium' | 'large';
22
+ getChipConfig(status: string): Partial<CohortStatus>;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<CohortCardComponent, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<CohortCardComponent, "sa-cohort-card", never, { "data": { "alias": "data"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
25
+ }
@@ -1,7 +1,8 @@
1
- import { OnInit, OnDestroy } from '@angular/core';
1
+ import { OnInit, OnDestroy, SimpleChanges, OnChanges } from '@angular/core';
2
2
  import { CardCarousel } from '../../interfaces/card-carousel-interface';
3
3
  import * as i0 from "@angular/core";
4
- export declare class CardCarouselComponent implements OnInit, OnDestroy {
4
+ export declare class CardCarouselComponent implements OnInit, OnDestroy, OnChanges {
5
+ protected Math: Math;
5
6
  cards: CardCarousel[];
6
7
  interval: number;
7
8
  autoPlay: boolean;
@@ -10,10 +11,12 @@ export declare class CardCarouselComponent implements OnInit, OnDestroy {
10
11
  showBrandFooter: boolean;
11
12
  visibleLogos: (CardCarousel & {
12
13
  index: number;
14
+ isActive: boolean;
13
15
  })[];
14
16
  currentIndex: number;
15
17
  private timer;
16
18
  ngOnInit(): void;
19
+ ngOnChanges(changes: SimpleChanges): void;
17
20
  ngOnDestroy(): void;
18
21
  startTimer(): void;
19
22
  stopTimer(): void;
@@ -1,14 +1,18 @@
1
1
  import { EventEmitter } from '@angular/core';
2
+ import { ButtonClickEvent, ButtonInterface } from '../../interfaces/button-interface';
3
+ import { DomSanitizer } from '@angular/platform-browser';
4
+ import { HeaderChipConfig, HeaderConfig, HeaderInfoItem } from '../../interfaces/header-interface';
2
5
  import * as i0 from "@angular/core";
3
6
  export declare class HeaderComponent {
4
- info: string[][];
5
- headerName: string;
6
- chipConfig: string[][];
7
- buttonHelper: string;
8
- buttonMain: string;
9
- mainButtonClicked: EventEmitter<any>;
10
- helperButtonClicked: EventEmitter<any>;
11
- clicked(num: number): void;
7
+ private sanitizer;
8
+ header: HeaderConfig;
9
+ chipConfig: HeaderChipConfig[];
10
+ info: HeaderInfoItem[];
11
+ buttonHelper?: ButtonInterface;
12
+ buttonMain?: ButtonInterface;
13
+ buttonClick: EventEmitter<ButtonClickEvent>;
14
+ constructor(sanitizer: DomSanitizer);
15
+ onButtonClick(type: 'helper' | 'main', event: Event): void;
12
16
  static ɵfac: i0.ɵɵFactoryDeclaration<HeaderComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "sa-header", never, { "info": { "alias": "info"; "required": false; }; "headerName": { "alias": "headerName"; "required": false; }; "chipConfig": { "alias": "chipConfig"; "required": false; }; "buttonHelper": { "alias": "buttonHelper"; "required": false; }; "buttonMain": { "alias": "buttonMain"; "required": false; }; }, { "mainButtonClicked": "mainButtonClicked"; "helperButtonClicked": "helperButtonClicked"; }, never, never, true, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "sa-header", never, { "header": { "alias": "header"; "required": false; }; "chipConfig": { "alias": "chipConfig"; "required": false; }; "info": { "alias": "info"; "required": false; }; "buttonHelper": { "alias": "buttonHelper"; "required": false; }; "buttonMain": { "alias": "buttonMain"; "required": false; }; }, { "buttonClick": "buttonClick"; }, never, never, true, never>;
14
18
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sarasanalytics-com/design-system",
3
- "version": "0.0.59",
3
+ "version": "0.0.60",
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
@@ -9,6 +9,7 @@ export * from './lib/card/card-icon/card-icon.component';
9
9
  export * from './lib/card/card-title-actions/card-title-actions.component';
10
10
  export * from './lib/card/card.component';
11
11
  export * from './lib/card/checkbox-card/checkbox-card.component';
12
+ export * from './lib/card/cohort-card/cohort-card.component';
12
13
  export * from './lib/card/guide-card/guide-card.component';
13
14
  export * from './lib/card/menu-card/menu-card.component';
14
15
  export * from './lib/card-carousel/card-carousel.component';
@@ -46,6 +47,7 @@ export * from './interfaces/card-carousel-interface';
46
47
  export * from './interfaces/chip-interface';
47
48
  export * from './interfaces/grid-interface';
48
49
  export * from './interfaces/guide-card-interface';
50
+ export * from './interfaces/header-interface';
49
51
  export * from './interfaces/icon-interface';
50
52
  export * from './interfaces/message-banner';
51
53
  export * from './interfaces/option-interface';
@@ -0,0 +1,398 @@
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-3px: 3px;
30
+ --small-4px: 4px;
31
+ --small-6px: 6px;
32
+ --small-8px: 8px;
33
+ --small-12px: 12px;
34
+ --small-14px: 14px;
35
+ --small-16px: 16px;
36
+ --small-18px: 18px;
37
+ --medium-20px: 20px;
38
+ --medium-22px: 22px;
39
+ --medium-24px: 24px;
40
+ --medium-28px: 28px;
41
+ --medium-32px: 32px;
42
+ --medium-36px: 36px;
43
+ --large-40px: 40px;
44
+ --large-42px: 42px;
45
+ --large-44px: 44px;
46
+ --large-48px: 48px;
47
+ --large-56px: 56px;
48
+ --large-64px: 64px;
49
+ --form-email-icon-color: #33961F;
50
+
51
+ --sa-skeleton-background: #e9ecef;
52
+ --sa-skeleton-shine: rgba(255, 255, 255, 0.3);
53
+ --sa-skeleton-radius: 4px;
54
+ --sa-skeleton-animation-duration: 1.5s;
55
+ --sa-skeleton-gap: 1rem;
56
+ --sa-skeleton-padding: 1rem;
57
+ }
58
+
59
+ .insights-theme {
60
+ --primary-50: #EAFFFD;
61
+ --primary-100: #CAFFFB;
62
+ --primary-200: #9CFFFA;
63
+ --primary-300: #00DDEA;
64
+ --primary-400: #00AFC4;
65
+ --primary-500: #008597;
66
+ --primary-600: #0B6E7F;
67
+ --primary-700: #0E5B6B;
68
+ --primary-800: #023D4A;
69
+ --primary-900: #01303A;
70
+ --secondary-50: #FFF3EB;
71
+ --secondary-100: #FFD8C0;
72
+ --secondary-200: #FFC6A2;
73
+ --secondary-300: #FEAB78;
74
+ --secondary-400: #FE9B5D;
75
+ --secondary-500: #FE8235;
76
+ --secondary-600: #E77630;
77
+ --secondary-700: #B45C26;
78
+ --secondary-800: #8C481D;
79
+ --secondary-900: #6B3716;
80
+ --grey-50: #E9EAEB;
81
+ --grey-100: #BAC0C1;
82
+ --grey-200: #98A1A3;
83
+ --grey-300: #697779;
84
+ --grey-400: #4C5C5F;
85
+ --grey-500: #1F3437;
86
+ --grey-600: #1C2F32;
87
+ --grey-700: #162527;
88
+ --grey-800: #111C1E;
89
+ --grey-900: #0D1517;
90
+ --semantic-success-50: #EBF5E9;
91
+ --semantic-success-100: #C0DEBA;
92
+ --semantic-success-200: #A1CF98;
93
+ --semantic-success-300: #76B969;
94
+ --semantic-success-400: #5CAB4C;
95
+ --semantic-success-500: #33961F;
96
+ --semantic-success-600: #2E891C;
97
+ --semantic-success-700: #246B16;
98
+ --semantic-success-800: #1C5311;
99
+ --semantic-success-900: #153F0D;
100
+ --semantic-error-50: #F8E9E9;
101
+ --semantic-error-100: #EBBCB9;
102
+ --semantic-error-200: #E19C98;
103
+ --semantic-error-300: #D36E68;
104
+ --semantic-error-400: #CA524B;
105
+ --semantic-error-500: #BD271E;
106
+ --semantic-error-600: #AC231B;
107
+ --semantic-error-700: #861C15;
108
+ --semantic-error-800: #681511;
109
+ --semantic-error-900: #4F100D;
110
+ --semantic-purple-50: #F3EFFD;
111
+ --semantic-purple-100: #D8CCFA;
112
+ --semantic-purple-200: #C6B4F7;
113
+ --semantic-purple-300: #AB92F4;
114
+ --semantic-purple-400: #9B7DF1;
115
+ --semantic-purple-500: #815BED;
116
+ --semantic-purple-600: #7654D9;
117
+ --semantic-purple-700: #5C41A9;
118
+ --semantic-purple-800: #483383;
119
+ --semantic-purple-900: #372764;
120
+ --semantic-yellow-50: #FEF6E6;
121
+ --semantic-yellow-100: #FBE2B3;
122
+ --semantic-yellow-200: #F9D58E;
123
+ --semantic-yellow-300: #F6C15A;
124
+ --semantic-yellow-400: #F5B53A;
125
+ --text-highemphasis: #1B1F20;
126
+ --text-mediumemphasis: #697779;
127
+ --text-lowemphasis: #98A2A3;
128
+ --text-white: #FFFFFF;
129
+ --text-primary: #008597;
130
+ --text-success: #33961F;
131
+ --text-error: #BD271E;
132
+ --icon-white: #FFFFFF;
133
+ --semantic-yellow-500: #F2A209;
134
+ --semantic-yellow-600: #DC9408;
135
+ --semantic-yellow-700: #AC7406;
136
+ --semantic-yellow-800: #855A05;
137
+ --semantic-yellow-900: #664404;
138
+ --structural-white: #FFFFFF;
139
+ --icon-grey1: #757575;
140
+ --structural-primarytint: #F5F9FA;
141
+ --structural-neutral1: #F9F9F9;
142
+ --structural-neutral2: #FFFAFA;
143
+ --structural-neutral3: #FAFAFA;
144
+ --logo-color-primary: #008597;
145
+ --logo-color-secondary: #9CFFFA;
146
+ }
147
+
148
+ .saras-theme {
149
+ --primary-50: #E8F1FC;
150
+ --primary-100: #B8D4F7;
151
+ --primary-200: #96C0F3;
152
+ --primary-300: #66A2ED;
153
+ --primary-400: #4992E9;
154
+ --primary-500: #1B77E4;
155
+ --primary-600: #196CCF;
156
+ --primary-700: #1354A2;
157
+ --primary-800: #0F417D;
158
+ --primary-900: #0B3160;
159
+ --secondary-50: #FFF3EB;
160
+ --secondary-100: #FFD8C0;
161
+ --secondary-200: #FFC6A2;
162
+ --secondary-300: #FEAB78;
163
+ --secondary-400: #FE9B5D;
164
+ --secondary-500: #FE8235;
165
+ --secondary-600: #E77630;
166
+ --secondary-700: #B45C26;
167
+ --secondary-800: #8C481D;
168
+ --secondary-900: #6B3716;
169
+ --grey-50: #E9E9EB;
170
+ --grey-100: #BABDC1;
171
+ --grey-200: #989CA3;
172
+ --grey-300: #697079;
173
+ --grey-400: #4C545F;
174
+ --grey-500: #1F2937;
175
+ --grey-600: #1C2532;
176
+ --grey-700: #161D27;
177
+ --grey-800: #11161E;
178
+ --grey-900: #0D1117;
179
+ --semantic-success-50: #EBF5E9;
180
+ --semantic-success-100: #C0DEBA;
181
+ --semantic-success-200: #A1CF98;
182
+ --semantic-success-300: #76B969;
183
+ --semantic-success-400: #5CAB4C;
184
+ --semantic-success-500: #33961F;
185
+ --semantic-success-600: #2E891C;
186
+ --semantic-success-700: #246B16;
187
+ --semantic-success-800: #1C5311;
188
+ --semantic-success-900: #153F0D;
189
+ --semantic-error-50: #F8E9E9;
190
+ --semantic-error-100: #EBBCB9;
191
+ --semantic-error-200: #E19C98;
192
+ --semantic-error-300: #D36E68;
193
+ --semantic-error-400: #CA524B;
194
+ --semantic-error-500: #BD271E;
195
+ --semantic-error-600: #AC231B;
196
+ --semantic-error-700: #861C15;
197
+ --semantic-error-800: #681511;
198
+ --semantic-error-900: #4F100D;
199
+ --semantic-purple-50: #F3EFFD;
200
+ --semantic-purple-100: #D8CCFA;
201
+ --semantic-purple-200: #C6B4F7;
202
+ --semantic-purple-300: #AB92F4;
203
+ --semantic-purple-400: #9B7DF1;
204
+ --semantic-purple-500: #815BED;
205
+ --semantic-purple-600: #7654D9;
206
+ --semantic-purple-700: #5C41A9;
207
+ --semantic-purple-800: #483383;
208
+ --semantic-purple-900: #372764;
209
+ --semantic-yellow-50: #FEF6E6;
210
+ --semantic-yellow-100: #FBE2B3;
211
+ --semantic-yellow-200: #F9D58E;
212
+ --semantic-yellow-300: #F6C15A;
213
+ --semantic-yellow-400: #F5B53A;
214
+ --text-highemphasis: #1B1D20;
215
+ --text-mediumemphasis: #697079;
216
+ --text-lowemphasis: #989CA3;
217
+ --text-white: #FFFFFF;
218
+ --text-primary: #1B77E4;
219
+ --text-success: #33961F;
220
+ --text-error: #BD271E;
221
+ --icon-white: #FFFFFF;
222
+ --semantic-yellow-500: #F2A209;
223
+ --semantic-yellow-600: #DC9408;
224
+ --semantic-yellow-700: #AC7406;
225
+ --semantic-yellow-800: #855A05;
226
+ --semantic-yellow-900: #664404;
227
+ --structural-white: #FFFFFF;
228
+ --icon-grey1: #757575;
229
+ --structural-primarytint: #FAFCFF;
230
+ --structural-neutral1: #F9F9F9;
231
+ --structural-neutral2: #FFFAFA;
232
+ --structural-neutral3: #FAFAFA;
233
+ --logo-color-primary: #1B77E4;
234
+ --logo-color-secondary: #96C0F3;
235
+ }
236
+
237
+ .purple-theme {
238
+ --primary-50: #F4EBFF;
239
+ --primary-100: #E9D7FE;
240
+ --primary-200: #D6BBFB;
241
+ --primary-300: #B692F6;
242
+ --primary-400: #9E77ED;
243
+ --primary-500: #7F56D9;
244
+ --primary-600: #53389E;
245
+ --primary-700: #53389E;
246
+ --primary-800: #42307D;
247
+ --primary-900: #2C1C5F;
248
+ --secondary-50: #FFF3EB;
249
+ --secondary-100: #FFD8C0;
250
+ --secondary-200: #FFC6A2;
251
+ --secondary-300: #FEAB78;
252
+ --secondary-400: #FE9B5D;
253
+ --secondary-500: #FE8235;
254
+ --secondary-600: #E77630;
255
+ --secondary-700: #B45C26;
256
+ --secondary-800: #8C481D;
257
+ --secondary-900: #6B3716;
258
+ --grey-50: #F2F4F7;
259
+ --grey-100: #EAECF0;
260
+ --grey-200: #D0D5DD;
261
+ --grey-300: #98A2B3;
262
+ --grey-400: #475467;
263
+ --grey-500: #344054;
264
+ --grey-600: #1D2939;
265
+ --grey-700: #1D2939;
266
+ --grey-800: #101828;
267
+ --grey-900: #0C111D;
268
+ --semantic-success-50: #EBF5E9;
269
+ --semantic-success-100: #C0DEBA;
270
+ --semantic-success-200: #A1CF98;
271
+ --semantic-success-300: #76B969;
272
+ --semantic-success-400: #5CAB4C;
273
+ --semantic-success-500: #33961F;
274
+ --semantic-success-600: #2E891C;
275
+ --semantic-success-700: #246B16;
276
+ --semantic-success-800: #1C5311;
277
+ --semantic-success-900: #153F0D;
278
+ --semantic-error-50: #F8E9E9;
279
+ --semantic-error-100: #EBBCB9;
280
+ --semantic-error-200: #E19C98;
281
+ --semantic-error-300: #D36E68;
282
+ --semantic-error-400: #CA524B;
283
+ --semantic-error-500: #BD271E;
284
+ --semantic-error-600: #AC231B;
285
+ --semantic-error-700: #861C15;
286
+ --semantic-error-800: #681511;
287
+ --semantic-error-900: #4F100D;
288
+ --semantic-purple-50: #F3EFFD;
289
+ --semantic-purple-100: #D8CCFA;
290
+ --semantic-purple-200: #C6B4F7;
291
+ --semantic-purple-300: #AB92F4;
292
+ --semantic-purple-400: #9B7DF1;
293
+ --semantic-purple-500: #815BED;
294
+ --semantic-purple-600: #7654D9;
295
+ --semantic-purple-700: #5C41A9;
296
+ --semantic-purple-800: #483383;
297
+ --semantic-purple-900: #372764;
298
+ --semantic-yellow-50: #FEF6E6;
299
+ --semantic-yellow-100: #FBE2B3;
300
+ --semantic-yellow-200: #F9D58E;
301
+ --semantic-yellow-300: #F6C15A;
302
+ --semantic-yellow-400: #F5B53A;
303
+ --text-highemphasis: #1C1B20;
304
+ --text-mediumemphasis: #6D6979;
305
+ --text-lowemphasis: #9A98A3;
306
+ --text-white: #FFFFFF;
307
+ --text-primary: #815BED;
308
+ --text-success: #33961F;
309
+ --text-error: #BD271E;
310
+ --icon-white: #FFFFFF;
311
+ --semantic-yellow-500: #F2A209;
312
+ --semantic-yellow-600: #DC9408;
313
+ --semantic-yellow-700: #AC7406;
314
+ --semantic-yellow-800: #855A05;
315
+ --semantic-yellow-900: #664404;
316
+ --structural-white: #FFFFFF;
317
+ --icon-grey1: #757575;
318
+ --structural-primarytint: #FBFAFF;
319
+ --structural-neutral1: #F9F9F9;
320
+ --structural-neutral2: #FFFAFA;
321
+ --structural-neutral3: #FAFAFA;
322
+ --logo-color-primary: #7F56D9;
323
+ --logo-color-secondary: #D6BBFB;
324
+ }
325
+
326
+ .ag-header {
327
+ font-family: var(--font);
328
+ font-size: 14px;
329
+ font-weight: 400;
330
+ height: 20px;
331
+ line-height: 20px;
332
+ }
333
+
334
+ .ag-header-cell lib-grid-cell {
335
+ width: 100%;
336
+ }
337
+
338
+ .ag-header-cell-label {
339
+ font-family: var(--font);
340
+ font-size: 14px;
341
+ font-weight: 400;
342
+ line-height: 20px;
343
+ margin-left: 10px;
344
+ }
345
+
346
+ .checkbox-card-group {
347
+ display: grid;
348
+ grid-template-columns: repeat(auto-fill, 38.875rem);
349
+ gap: 1.75rem 2rem;
350
+ max-width: -webkit-fill-available;
351
+ margin-bottom: 1.5rem;
352
+ }
353
+
354
+ .form-field-helpText,
355
+ .form-field-description {
356
+ color: var(--text-mediumemphasis, #6D6979);
357
+ font-family: var(--font-roboto, Roboto);
358
+ font-size: var(--small-14px);
359
+ font-style: normal;
360
+ font-weight: 400;
361
+ line-height: var(--medium-24px);
362
+ letter-spacing: 0.5px;
363
+ margin: 0px;
364
+ }
365
+
366
+ .form-field-title {
367
+ color: var(--text-highemphasis, #1C1B20);
368
+ font-family: var(--font-roboto, Roboto);
369
+ font-size: var(--medium-22px);
370
+ font-style: normal;
371
+ font-weight: 500;
372
+ line-height: var(--medium-36px);
373
+ margin: 0px;
374
+ }
375
+
376
+ .title-container {
377
+ display: flex;
378
+ flex-direction: column;
379
+ gap: var(--small-8px);
380
+ }
381
+
382
+ .formly-field-container {
383
+ display: flex;
384
+ flex-direction: column;
385
+ gap: var(--medium-24px);
386
+ }
387
+
388
+ .accordion-group-container {
389
+ display: flex;
390
+ flex-direction: column;
391
+ gap: var(--small-16px);
392
+ }
393
+
394
+ .accordions-group-container {
395
+ display: flex;
396
+ flex-direction: column;
397
+ gap: var(--small-16px);
398
+ }