@onemrvapublic/design-system-theme 17.2.63 → 17.2.67
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/components/_button.scss +0 -3
- package/components/_checkbox.scss +70 -22
- package/components/_datepicker.scss +1 -1
- package/components/_expansion.scss +51 -51
- package/components/_links.scss +1 -1
- package/components/_select.scss +3 -0
- package/components/_table.scss +9 -5
- package/components/_toolbar.scss +4 -2
- package/esm2022/lib/theme.module.mjs +5 -5
- package/fesm2022/onemrvapublic-design-system-theme.mjs +4 -4
- package/fesm2022/onemrvapublic-design-system-theme.mjs.map +1 -1
- package/fonts/_poppins.scss +489 -485
- package/fonts/_source-sans-pro.scss +129 -125
- package/package.json +27 -27
- package/utilities/_fonts.scss +7 -2
- package/utilities/_palettes.scss +1 -1
package/components/_button.scss
CHANGED
|
@@ -8,33 +8,81 @@
|
|
|
8
8
|
@include mat.checkbox-base($theme);
|
|
9
9
|
@include mat.checkbox-theme($theme);
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
background: $onemrva-accent-gradient-vertical;
|
|
19
|
-
border: none;
|
|
20
|
-
|
|
21
|
-
.mdc-checkbox__checkmark {
|
|
22
|
-
width: calc(100% - 4px);
|
|
23
|
-
top: 2px;
|
|
24
|
-
left: 2px;
|
|
11
|
+
.mat-mdc-checkbox {
|
|
12
|
+
&.mat-accent {
|
|
13
|
+
.mdc-checkbox__native-control:enabled:checked,
|
|
14
|
+
.mdc-checkbox__native-control:enabled:indeterminate {
|
|
15
|
+
~ .mdc-checkbox__background {
|
|
16
|
+
background: $onemrva-accent-gradient-vertical;
|
|
17
|
+
border: µ.accent($theme, 500);
|
|
25
18
|
}
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
&.mat-primary {
|
|
22
|
+
.mdc-checkbox__native-control:enabled:checked,
|
|
23
|
+
.mdc-checkbox__native-control:enabled:indeterminate {
|
|
24
|
+
~ .mdc-checkbox__background {
|
|
25
|
+
background: µ.primary($theme, 500);
|
|
26
|
+
border: µ.primary($theme, 500);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
&.mat-warn {
|
|
31
|
+
.mdc-checkbox__native-control:enabled:checked,
|
|
32
|
+
.mdc-checkbox__native-control:enabled:indeterminate {
|
|
33
|
+
~ .mdc-checkbox__background {
|
|
34
|
+
.mdc-checkbox__checkmark {
|
|
35
|
+
color: white;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
&.mat-success {
|
|
41
|
+
.mdc-checkbox__native-control:enabled:checked,
|
|
42
|
+
.mdc-checkbox__native-control:enabled:indeterminate {
|
|
43
|
+
~ .mdc-checkbox__background {
|
|
44
|
+
background: µ.success($theme, 600);
|
|
45
|
+
border: µ.success($theme, 600);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
&.mat-error {
|
|
50
|
+
.mdc-checkbox__native-control:enabled:checked,
|
|
51
|
+
.mdc-checkbox__native-control:enabled:indeterminate {
|
|
52
|
+
~ .mdc-checkbox__background {
|
|
53
|
+
background: µ.error($theme, 500);
|
|
54
|
+
border: µ.error($theme, 500);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
&.mat-info {
|
|
59
|
+
.mdc-checkbox__native-control:enabled:checked,
|
|
60
|
+
.mdc-checkbox__native-control:enabled:indeterminate {
|
|
61
|
+
~ .mdc-checkbox__background {
|
|
62
|
+
background: µ.info($theme, 500);
|
|
63
|
+
border: µ.info($theme, 500);
|
|
31
64
|
}
|
|
32
65
|
}
|
|
33
66
|
}
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.mat-mdc-checkbox {
|
|
37
67
|
.mdc-checkbox {
|
|
68
|
+
.mdc-checkbox__native-control:enabled:checked,
|
|
69
|
+
.mdc-checkbox__native-control:enabled:indeterminate {
|
|
70
|
+
~ .mdc-checkbox__background {
|
|
71
|
+
|
|
72
|
+
.mdc-checkbox__checkmark {
|
|
73
|
+
width: calc(100% - 4px);
|
|
74
|
+
top: 2px;
|
|
75
|
+
left: 2px;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.mdc-checkbox__mixedmark {
|
|
79
|
+
width: calc(100% - 6px);
|
|
80
|
+
top: 2px;
|
|
81
|
+
left: 2px;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
38
86
|
padding: 12px;
|
|
39
87
|
.mdc-checkbox__background {
|
|
40
88
|
width: 20px;
|
|
@@ -8,65 +8,65 @@
|
|
|
8
8
|
@include mat.expansion-base($theme);
|
|
9
9
|
@include mat.expansion-theme($theme);
|
|
10
10
|
|
|
11
|
-
.mat-expansion-panel
|
|
12
|
-
box-shadow: none;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.mat-expansion-indicator::after {
|
|
16
|
-
font-family: "Material Icons";
|
|
17
|
-
content: "\e5cf";
|
|
18
|
-
border: none;
|
|
19
|
-
transform: none;
|
|
20
|
-
font-size: 30px;
|
|
21
|
-
padding: 0;
|
|
22
|
-
width: 23px;
|
|
23
|
-
}
|
|
11
|
+
.mat-expansion-panel {
|
|
24
12
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
&:hover {
|
|
28
|
-
background: none;
|
|
13
|
+
&:not([class*="mat-elevation-z"]) {
|
|
14
|
+
box-shadow: none;
|
|
29
15
|
}
|
|
30
|
-
}
|
|
31
16
|
|
|
32
|
-
|
|
33
|
-
|
|
17
|
+
.mat-expansion-panel-header {
|
|
18
|
+
padding: 0;
|
|
34
19
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
&.mat-expanded {
|
|
40
|
-
.mat-expansion-indicator {
|
|
41
|
-
transform: rotate(180deg) translateY(10px);
|
|
20
|
+
&.mat-expanded {
|
|
21
|
+
height: auto;
|
|
42
22
|
}
|
|
43
|
-
}
|
|
44
23
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
h1,
|
|
51
|
-
h2,
|
|
52
|
-
h3,
|
|
53
|
-
h4,
|
|
54
|
-
h5,
|
|
55
|
-
h6 {
|
|
56
|
-
margin: 0;
|
|
24
|
+
&.mat-expanded {
|
|
25
|
+
.mat-expansion-indicator {
|
|
26
|
+
transform: rotate(180deg) translateY(10px);
|
|
27
|
+
}
|
|
57
28
|
}
|
|
29
|
+
.mat-expansion-panel-header-title {
|
|
30
|
+
align-items: center;
|
|
31
|
+
display: flex;
|
|
32
|
+
gap: 16px;
|
|
58
33
|
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
34
|
+
h1,
|
|
35
|
+
h2,
|
|
36
|
+
h3,
|
|
37
|
+
h4,
|
|
38
|
+
h5,
|
|
39
|
+
h6 {
|
|
40
|
+
margin: 0;
|
|
41
|
+
}
|
|
42
|
+
&:after {
|
|
43
|
+
content: "";
|
|
44
|
+
width: 130px;
|
|
45
|
+
height: 1px;
|
|
46
|
+
background: µ.grayscale($theme, 300);
|
|
47
|
+
flex: 1000000 0 10px;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
.mat-expansion-indicator {
|
|
51
|
+
&::after {
|
|
52
|
+
font-family: "Material Icons" !important;
|
|
53
|
+
content: "\e5cf" !important;
|
|
54
|
+
border: none !important;
|
|
55
|
+
transform: none !important;
|
|
56
|
+
font-size: 30px !important;
|
|
57
|
+
padding: 0 !important;
|
|
58
|
+
width: 23px !important;
|
|
59
|
+
}
|
|
65
60
|
}
|
|
66
61
|
}
|
|
62
|
+
&:not(.mat-expanded)
|
|
63
|
+
.mat-expansion-panel-header:hover:not([aria-disabled="true"]) {
|
|
64
|
+
&:hover {
|
|
65
|
+
background: none;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
.mat-expansion-panel-body {
|
|
69
|
+
padding: 0;
|
|
70
|
+
}
|
|
67
71
|
}
|
|
68
|
-
|
|
69
|
-
.mat-expansion-panel-body {
|
|
70
|
-
padding: 0;
|
|
71
|
-
}
|
|
72
|
-
}
|
|
72
|
+
}
|
package/components/_links.scss
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
map.get($theme, "typography"),
|
|
10
10
|
body-1
|
|
11
11
|
); // HWKTMP For some reason, the font family is not taken into account from configuration
|
|
12
|
-
color: µ.primary($theme);
|
|
12
|
+
color: µ.primary($theme, 500);
|
|
13
13
|
text-decoration: underline µ.primary($theme);
|
|
14
14
|
font-weight: 600;
|
|
15
15
|
|
package/components/_select.scss
CHANGED
package/components/_table.scss
CHANGED
|
@@ -7,8 +7,6 @@
|
|
|
7
7
|
@include mat.table-base($theme);
|
|
8
8
|
@include mat.table-theme($theme);
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
10
|
.mat-mdc-table {
|
|
13
11
|
th.mat-mdc-header-cell {
|
|
14
12
|
color: black;
|
|
@@ -33,14 +31,12 @@
|
|
|
33
31
|
}
|
|
34
32
|
}
|
|
35
33
|
}
|
|
34
|
+
|
|
36
35
|
tr {
|
|
37
36
|
transition: background-color 400ms ease-out;
|
|
38
37
|
padding: 16px;
|
|
39
38
|
line-height: 23px;
|
|
40
39
|
|
|
41
|
-
&:nth-child(even) {
|
|
42
|
-
background-color: µ.primary($theme, 50);
|
|
43
|
-
}
|
|
44
40
|
td.mat-mdc-cell {
|
|
45
41
|
line-height: 22px;
|
|
46
42
|
padding-top: 8px;
|
|
@@ -104,5 +100,13 @@
|
|
|
104
100
|
}
|
|
105
101
|
}
|
|
106
102
|
}
|
|
103
|
+
|
|
104
|
+
tbody {
|
|
105
|
+
tr {
|
|
106
|
+
&:nth-child(even) {
|
|
107
|
+
background-color: µ.primary($theme, 50);
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
}
|
|
107
111
|
}
|
|
108
112
|
}
|
package/components/_toolbar.scss
CHANGED
|
@@ -7,9 +7,11 @@
|
|
|
7
7
|
@include mat.toolbar-base($theme);
|
|
8
8
|
@include mat.toolbar-theme($theme);
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
10
|
.mat-toolbar{
|
|
11
|
+
--mat-toolbar-title-text-font: #{mat.get-theme-typography($theme,'button', font-family)};
|
|
12
|
+
--mat-toolbar-title-text-size: 16px;
|
|
13
|
+
--mat-toolbar-title-text-line-height: 16px;
|
|
14
|
+
--mat-toolbar-title-text-weight: 400;
|
|
13
15
|
&.sticky {
|
|
14
16
|
position: sticky !important;
|
|
15
17
|
bottom: 0 !important;
|
|
@@ -2,9 +2,9 @@ import { NgModule } from '@angular/core';
|
|
|
2
2
|
import { MAT_FORM_FIELD_DEFAULT_OPTIONS, } from '@angular/material/form-field';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export class OnemrvaThemeModule {
|
|
5
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
6
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.
|
|
7
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.
|
|
5
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.7", ngImport: i0, type: OnemrvaThemeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.7", ngImport: i0, type: OnemrvaThemeModule }); }
|
|
7
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.7", ngImport: i0, type: OnemrvaThemeModule, providers: [
|
|
8
8
|
{
|
|
9
9
|
provide: MAT_FORM_FIELD_DEFAULT_OPTIONS,
|
|
10
10
|
useValue: {
|
|
@@ -14,7 +14,7 @@ export class OnemrvaThemeModule {
|
|
|
14
14
|
},
|
|
15
15
|
] }); }
|
|
16
16
|
}
|
|
17
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
17
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.7", ngImport: i0, type: OnemrvaThemeModule, decorators: [{
|
|
18
18
|
type: NgModule,
|
|
19
19
|
args: [{
|
|
20
20
|
providers: [
|
|
@@ -29,4 +29,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.4", ngImpor
|
|
|
29
29
|
imports: []
|
|
30
30
|
}]
|
|
31
31
|
}] });
|
|
32
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
32
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGhlbWUubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvb25lbXJ2YS90aGVtZS9zcmMvbGliL3RoZW1lLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFFTCw4QkFBOEIsR0FDL0IsTUFBTSw4QkFBOEIsQ0FBQzs7QUFpQnRDLE1BQU0sT0FBTyxrQkFBa0I7OEdBQWxCLGtCQUFrQjsrR0FBbEIsa0JBQWtCOytHQUFsQixrQkFBa0IsYUFibEI7WUFDVDtnQkFDRSxPQUFPLEVBQUUsOEJBQThCO2dCQUN2QyxRQUFRLEVBQUU7b0JBQ1IsVUFBVSxFQUFFLFNBQVM7b0JBQ3JCLFVBQVUsRUFBRSxRQUFRO2lCQUNTO2FBQ2hDO1NBQ0Y7OzJGQUtVLGtCQUFrQjtrQkFkOUIsUUFBUTttQkFBQztvQkFDUixTQUFTLEVBQUU7d0JBQ1Q7NEJBQ0UsT0FBTyxFQUFFLDhCQUE4Qjs0QkFDdkMsUUFBUSxFQUFFO2dDQUNSLFVBQVUsRUFBRSxTQUFTO2dDQUNyQixVQUFVLEVBQUUsUUFBUTs2QkFDUzt5QkFDaEM7cUJBQ0Y7b0JBQ0QsT0FBTyxFQUFFLEVBRVI7aUJBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtcbiAgTWF0Rm9ybUZpZWxkRGVmYXVsdE9wdGlvbnMsXG4gIE1BVF9GT1JNX0ZJRUxEX0RFRkFVTFRfT1BUSU9OUyxcbn0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvZm9ybS1maWVsZCc7XG5pbXBvcnQge01BVF9FWFBBTlNJT05fUEFORUxfREVGQVVMVF9PUFRJT05TLCBNYXRFeHBhbnNpb25QYW5lbERlZmF1bHRPcHRpb25zfSBmcm9tIFwiQGFuZ3VsYXIvbWF0ZXJpYWwvZXhwYW5zaW9uXCI7XG5cbkBOZ01vZHVsZSh7XG4gIHByb3ZpZGVyczogW1xuICAgIHtcbiAgICAgIHByb3ZpZGU6IE1BVF9GT1JNX0ZJRUxEX0RFRkFVTFRfT1BUSU9OUyxcbiAgICAgIHVzZVZhbHVlOiB7XG4gICAgICAgIGFwcGVhcmFuY2U6ICdvdXRsaW5lJyxcbiAgICAgICAgZmxvYXRMYWJlbDogJ2Fsd2F5cycsXG4gICAgICB9IGFzIE1hdEZvcm1GaWVsZERlZmF1bHRPcHRpb25zLFxuICAgIH0sXG4gIF0sXG4gIGltcG9ydHM6IFtcblxuICBdXG59KVxuZXhwb3J0IGNsYXNzIE9uZW1ydmFUaGVtZU1vZHVsZSB7fVxuIl19
|
|
@@ -3,9 +3,9 @@ import { NgModule } from '@angular/core';
|
|
|
3
3
|
import { MAT_FORM_FIELD_DEFAULT_OPTIONS } from '@angular/material/form-field';
|
|
4
4
|
|
|
5
5
|
class OnemrvaThemeModule {
|
|
6
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.
|
|
7
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.
|
|
8
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.
|
|
6
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.7", ngImport: i0, type: OnemrvaThemeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
7
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.7", ngImport: i0, type: OnemrvaThemeModule }); }
|
|
8
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.7", ngImport: i0, type: OnemrvaThemeModule, providers: [
|
|
9
9
|
{
|
|
10
10
|
provide: MAT_FORM_FIELD_DEFAULT_OPTIONS,
|
|
11
11
|
useValue: {
|
|
@@ -15,7 +15,7 @@ class OnemrvaThemeModule {
|
|
|
15
15
|
},
|
|
16
16
|
] }); }
|
|
17
17
|
}
|
|
18
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.
|
|
18
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.7", ngImport: i0, type: OnemrvaThemeModule, decorators: [{
|
|
19
19
|
type: NgModule,
|
|
20
20
|
args: [{
|
|
21
21
|
providers: [
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"onemrvapublic-design-system-theme.mjs","sources":["../../../../projects/onemrva/theme/src/lib/theme.module.ts","../../../../projects/onemrva/theme/src/index.ts","../../../../projects/onemrva/theme/src/onemrvapublic-design-system-theme.ts"],"sourcesContent":["import { NgModule } from '@angular/core';\nimport {\n MatFormFieldDefaultOptions,\n MAT_FORM_FIELD_DEFAULT_OPTIONS,\n} from '@angular/material/form-field';\n\n@NgModule({\n providers: [\n {\n provide: MAT_FORM_FIELD_DEFAULT_OPTIONS,\n useValue: {\n appearance: 'outline',\n floatLabel: 'always',\n } as MatFormFieldDefaultOptions,\n },\n ],\n imports: [\n\n ]\n})\nexport class OnemrvaThemeModule {}\n","/*\n * Public API Surface of theme\n */\n\nexport * from './lib/theme.module';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;
|
|
1
|
+
{"version":3,"file":"onemrvapublic-design-system-theme.mjs","sources":["../../../../projects/onemrva/theme/src/lib/theme.module.ts","../../../../projects/onemrva/theme/src/index.ts","../../../../projects/onemrva/theme/src/onemrvapublic-design-system-theme.ts"],"sourcesContent":["import { NgModule } from '@angular/core';\nimport {\n MatFormFieldDefaultOptions,\n MAT_FORM_FIELD_DEFAULT_OPTIONS,\n} from '@angular/material/form-field';\nimport {MAT_EXPANSION_PANEL_DEFAULT_OPTIONS, MatExpansionPanelDefaultOptions} from \"@angular/material/expansion\";\n\n@NgModule({\n providers: [\n {\n provide: MAT_FORM_FIELD_DEFAULT_OPTIONS,\n useValue: {\n appearance: 'outline',\n floatLabel: 'always',\n } as MatFormFieldDefaultOptions,\n },\n ],\n imports: [\n\n ]\n})\nexport class OnemrvaThemeModule {}\n","/*\n * Public API Surface of theme\n */\n\nexport * from './lib/theme.module';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;MAqBa,kBAAkB,CAAA;8GAAlB,kBAAkB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA,EAAA;+GAAlB,kBAAkB,EAAA,CAAA,CAAA,EAAA;AAAlB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,kBAAkB,EAblB,SAAA,EAAA;AACT,YAAA;AACE,gBAAA,OAAO,EAAE,8BAA8B;AACvC,gBAAA,QAAQ,EAAE;AACR,oBAAA,UAAU,EAAE,SAAS;AACrB,oBAAA,UAAU,EAAE,QAAQ;AACS,iBAAA;AAChC,aAAA;AACF,SAAA,EAAA,CAAA,CAAA,EAAA;;2FAKU,kBAAkB,EAAA,UAAA,EAAA,CAAA;kBAd9B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,SAAS,EAAE;AACT,wBAAA;AACE,4BAAA,OAAO,EAAE,8BAA8B;AACvC,4BAAA,QAAQ,EAAE;AACR,gCAAA,UAAU,EAAE,SAAS;AACrB,gCAAA,UAAU,EAAE,QAAQ;AACS,6BAAA;AAChC,yBAAA;AACF,qBAAA;AACD,oBAAA,OAAO,EAAE,EAER;AACF,iBAAA,CAAA;;;ACpBD;;AAEG;;ACFH;;AAEG;;;;"}
|