@onemrvapublic/design-system-theme 17.3.1 → 17.3.6
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 +1 -24
- package/components/_button.scss +18 -18
- package/components/_container.scss +35 -41
- package/components/_table.scss +10 -5
- 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/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,24 +1 @@
|
|
|
1
|
-
# Theme
|
|
2
|
-
|
|
3
|
-
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 14.1.0.
|
|
4
|
-
|
|
5
|
-
## Code scaffolding
|
|
6
|
-
|
|
7
|
-
Run `ng generate component component-name --project theme` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project theme`.
|
|
8
|
-
> Note: Don't forget to add `--project theme` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
-
|
|
10
|
-
## Build
|
|
11
|
-
|
|
12
|
-
Run `ng build theme` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
-
|
|
14
|
-
## Publishing
|
|
15
|
-
|
|
16
|
-
After building your library with `ng build theme`, go to the dist folder `cd dist/theme` and run `npm publish`.
|
|
17
|
-
|
|
18
|
-
## Running unit tests
|
|
19
|
-
|
|
20
|
-
Run `ng test theme` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
-
|
|
22
|
-
## Further help
|
|
23
|
-
|
|
24
|
-
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
1
|
+
# Design System Theme
|
package/components/_button.scss
CHANGED
|
@@ -1,21 +1,19 @@
|
|
|
1
|
-
@use
|
|
2
|
-
@use
|
|
3
|
-
@use
|
|
4
|
-
@import
|
|
1
|
+
@use '@angular/material' as mat;
|
|
2
|
+
@use 'sass:map';
|
|
3
|
+
@use './µ';
|
|
4
|
+
@import '../utilities/variables';
|
|
5
5
|
|
|
6
6
|
@mixin theme($theme) {
|
|
7
|
-
|
|
8
7
|
@include mat.button-base($theme);
|
|
9
8
|
@include mat.button-theme($theme);
|
|
10
9
|
|
|
11
|
-
$spacer: map-get($theme,
|
|
10
|
+
$spacer: map-get($theme, 'spacer');
|
|
12
11
|
$accent400: µ.accent($theme, 400);
|
|
13
12
|
$accent500: µ.accent($theme, 500);
|
|
14
13
|
$accent-gradient: transparent
|
|
15
14
|
linear-gradient(90deg, $accent400 0%, $accent500 100%) 0% 0% no-repeat
|
|
16
15
|
padding-box;
|
|
17
16
|
.mat-mdc-button-base {
|
|
18
|
-
|
|
19
17
|
&.mat-error {
|
|
20
18
|
color: µ.error($theme);
|
|
21
19
|
}
|
|
@@ -33,10 +31,11 @@
|
|
|
33
31
|
}
|
|
34
32
|
&:hover:not(:disabled):not(.mdc-icon-button) {
|
|
35
33
|
mat-icon {
|
|
36
|
-
font-variation-settings:
|
|
34
|
+
font-variation-settings: 'FILL' 1;
|
|
37
35
|
}
|
|
38
36
|
}
|
|
39
37
|
}
|
|
38
|
+
|
|
40
39
|
.mat-mdc-icon-button.onemrva-icon-button {
|
|
41
40
|
outline: 1px solid µ.primary($theme);
|
|
42
41
|
border: 3px solid white;
|
|
@@ -78,9 +77,7 @@
|
|
|
78
77
|
.mat-mdc-button-base:not(.mat-mdc-icon-button):not(
|
|
79
78
|
.mat-mdc-datepicker-close-button
|
|
80
79
|
):not(.mat-mdc-mini-fab) {
|
|
81
|
-
|
|
82
|
-
-moz-box-sizing: border-box; /* Firefox, other Gecko */
|
|
83
|
-
box-sizing: border-box; /* Opera/IE 8+ */
|
|
80
|
+
box-sizing: border-box;
|
|
84
81
|
position: relative;
|
|
85
82
|
|
|
86
83
|
&:not(.mat-mdc-fab):not(.mat-mdc-mini-fab) {
|
|
@@ -89,6 +86,9 @@
|
|
|
89
86
|
|
|
90
87
|
&.mat-mdc-outlined-button {
|
|
91
88
|
padding: $spacer 2 * $spacer;
|
|
89
|
+
.mat-mdc-button-persistent-ripple::before {
|
|
90
|
+
--mat-outlined-button-state-layer-color: µ.primary('500-contrast');
|
|
91
|
+
}
|
|
92
92
|
}
|
|
93
93
|
|
|
94
94
|
vertical-align: middle;
|
|
@@ -131,8 +131,8 @@
|
|
|
131
131
|
|
|
132
132
|
> :first-child::before {
|
|
133
133
|
//noinspection CssNoGenericFontName
|
|
134
|
-
font-family:
|
|
135
|
-
content:
|
|
134
|
+
font-family: 'Material Icons';
|
|
135
|
+
content: '\e876';
|
|
136
136
|
font-size: 16px;
|
|
137
137
|
margin-right: 8px;
|
|
138
138
|
vertical-align: bottom;
|
|
@@ -262,22 +262,22 @@
|
|
|
262
262
|
|
|
263
263
|
&.mat-error {
|
|
264
264
|
background: µ.error($theme);
|
|
265
|
-
color: µ.error($theme,
|
|
265
|
+
color: µ.error($theme, '500-contrast');
|
|
266
266
|
}
|
|
267
267
|
|
|
268
268
|
&.mat-success {
|
|
269
269
|
background: µ.success($theme);
|
|
270
|
-
color: µ.success($theme,
|
|
270
|
+
color: µ.success($theme, '500-contrast');
|
|
271
271
|
}
|
|
272
272
|
|
|
273
273
|
&.mat-info {
|
|
274
274
|
background: µ.info($theme);
|
|
275
|
-
color: µ.info($theme,
|
|
275
|
+
color: µ.info($theme, '500-contrast');
|
|
276
276
|
}
|
|
277
277
|
|
|
278
278
|
&.mat-grayscale {
|
|
279
279
|
background: µ.grayscale($theme);
|
|
280
|
-
color: µ.grayscale($theme,
|
|
280
|
+
color: µ.grayscale($theme, '500-contrast');
|
|
281
281
|
}
|
|
282
282
|
|
|
283
283
|
&:disabled {
|
|
@@ -291,7 +291,7 @@
|
|
|
291
291
|
@mixin nsOutline($shift) {
|
|
292
292
|
&:after {
|
|
293
293
|
position: absolute;
|
|
294
|
-
content:
|
|
294
|
+
content: '';
|
|
295
295
|
top: $shift;
|
|
296
296
|
left: $shift;
|
|
297
297
|
right: $shift;
|
|
@@ -1,47 +1,41 @@
|
|
|
1
1
|
@use '../utilities/media';
|
|
2
2
|
|
|
3
3
|
@mixin theme($theme, $breakpoints) {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
padding-right: 16px;
|
|
12
|
-
padding-left: 16px;
|
|
13
|
-
margin-right: auto;
|
|
14
|
-
margin-left: auto;
|
|
15
|
-
box-sizing: border-box;
|
|
4
|
+
.container {
|
|
5
|
+
width: 100%;
|
|
6
|
+
padding-right: 8px;
|
|
7
|
+
padding-left: 8px;
|
|
8
|
+
margin-right: auto;
|
|
9
|
+
margin-left: auto;
|
|
10
|
+
box-sizing: border-box;
|
|
16
11
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
max-width: #{map-get(map-get($breakpoints, medium), min)}px;
|
|
25
|
-
}
|
|
26
|
-
@include media.media($breakpoints, large) {
|
|
27
|
-
max-width: #{map-get(map-get($breakpoints, large), min)}px;
|
|
28
|
-
}
|
|
29
|
-
@include media.media($breakpoints, xlarge) {
|
|
30
|
-
max-width: calc(100% - 112px);
|
|
31
|
-
margin-left: 56px;
|
|
32
|
-
margin-right: 56px;
|
|
33
|
-
}
|
|
34
|
-
@include media.media($breakpoints, xxlarge) {
|
|
35
|
-
margin-right: auto;
|
|
36
|
-
margin-left: auto;
|
|
37
|
-
max-width: #{map-get(map-get($breakpoints, xxlarge), min) - 112}px;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
//
|
|
41
|
-
// DO NOT UNCOMMENT
|
|
42
|
-
//
|
|
43
|
-
// @include media.media(xlarge) {
|
|
44
|
-
// max-width: #{map-get(map-get($breakpoints, xlarge), min) - 16}px;
|
|
45
|
-
// }
|
|
12
|
+
@include media.media($breakpoints, small) {
|
|
13
|
+
padding-right: 16px;
|
|
14
|
+
padding-left: 16px;
|
|
15
|
+
}
|
|
16
|
+
@include media.media($breakpoints, medium) {
|
|
17
|
+
padding-right: 24px;
|
|
18
|
+
padding-left: 24px;
|
|
46
19
|
}
|
|
20
|
+
@include media.media($breakpoints, large) {
|
|
21
|
+
padding-right: 48px;
|
|
22
|
+
padding-left: 48px;
|
|
23
|
+
}
|
|
24
|
+
@include media.media($breakpoints, xlarge) {
|
|
25
|
+
padding-right: 56px;
|
|
26
|
+
padding-left: 56px;
|
|
27
|
+
}
|
|
28
|
+
@include media.media($breakpoints, xxlarge) {
|
|
29
|
+
margin-right: auto;
|
|
30
|
+
margin-left: auto;
|
|
31
|
+
max-width: #{map-get(map-get($breakpoints, xxlarge), min) - 112}px;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
//
|
|
35
|
+
// DO NOT UNCOMMENT
|
|
36
|
+
//
|
|
37
|
+
// @include media.media(xlarge) {
|
|
38
|
+
// max-width: #{map-get(map-get($breakpoints, xlarge), min) - 16}px;
|
|
39
|
+
// }
|
|
40
|
+
}
|
|
47
41
|
}
|
package/components/_table.scss
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
@use
|
|
2
|
-
@use
|
|
3
|
-
@use
|
|
4
|
-
@import
|
|
1
|
+
@use '@angular/material' as mat;
|
|
2
|
+
@use 'sass:map';
|
|
3
|
+
@use './µ';
|
|
4
|
+
@import '../utilities/variables';
|
|
5
5
|
|
|
6
6
|
@mixin theme($theme) {
|
|
7
7
|
@include mat.table-base($theme);
|
|
@@ -9,10 +9,15 @@
|
|
|
9
9
|
|
|
10
10
|
.mat-mdc-table {
|
|
11
11
|
th.mat-mdc-header-cell {
|
|
12
|
-
color: black;
|
|
13
12
|
font-weight: 600;
|
|
14
13
|
border-bottom: 2px solid µ.grayscale($theme, 200);
|
|
15
14
|
font-size: 16px;
|
|
15
|
+
color: µ.grayscale($theme, 700);
|
|
16
|
+
font-family: mat.get-theme-typography($theme, 'headline-1', font-family);
|
|
17
|
+
font-style: normal;
|
|
18
|
+
line-height: 16px; /* 162.5% */
|
|
19
|
+
vertical-align: bottom;
|
|
20
|
+
padding-bottom: 16px;
|
|
16
21
|
}
|
|
17
22
|
|
|
18
23
|
.mat-mdc-row:last-child {
|
|
@@ -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.3.
|
|
6
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.
|
|
7
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.
|
|
5
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: OnemrvaThemeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.10", ngImport: i0, type: OnemrvaThemeModule }); }
|
|
7
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.10", 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.3.
|
|
17
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", 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.3.8", ngImpor
|
|
|
29
29
|
imports: []
|
|
30
30
|
}]
|
|
31
31
|
}] });
|
|
32
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
32
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGhlbWUubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvb25lbXJ2YS90aGVtZS9zcmMvbGliL3RoZW1lLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFFTCw4QkFBOEIsR0FDL0IsTUFBTSw4QkFBOEIsQ0FBQzs7QUFpQnRDLE1BQU0sT0FBTyxrQkFBa0I7K0dBQWxCLGtCQUFrQjtnSEFBbEIsa0JBQWtCO2dIQUFsQixrQkFBa0IsYUFibEI7WUFDVDtnQkFDRSxPQUFPLEVBQUUsOEJBQThCO2dCQUN2QyxRQUFRLEVBQUU7b0JBQ1IsVUFBVSxFQUFFLFNBQVM7b0JBQ3JCLFVBQVUsRUFBRSxRQUFRO2lCQUNTO2FBQ2hDO1NBQ0Y7OzRGQUtVLGtCQUFrQjtrQkFkOUIsUUFBUTttQkFBQztvQkFDUixTQUFTLEVBQUU7d0JBQ1Q7NEJBQ0UsT0FBTyxFQUFFLDhCQUE4Qjs0QkFDdkMsUUFBUSxFQUFFO2dDQUNSLFVBQVUsRUFBRSxTQUFTO2dDQUNyQixVQUFVLEVBQUUsUUFBUTs2QkFDUzt5QkFDaEM7cUJBQ0Y7b0JBQ0QsT0FBTyxFQUFFLEVBRVI7aUJBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtcbiAgTWF0Rm9ybUZpZWxkRGVmYXVsdE9wdGlvbnMsXG4gIE1BVF9GT1JNX0ZJRUxEX0RFRkFVTFRfT1BUSU9OUyxcbn0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvZm9ybS1maWVsZCc7XG5pbXBvcnQge01BVF9FWFBBTlNJT05fUEFORUxfREVGQVVMVF9PUFRJT05TLCBNYXRFeHBhbnNpb25QYW5lbERlZmF1bHRPcHRpb25zfSBmcm9tIFwiQGFuZ3VsYXIvbWF0ZXJpYWwvZXhwYW5zaW9uXCI7XG5cbkBOZ01vZHVsZSh7XG4gIHByb3ZpZGVyczogW1xuICAgIHtcbiAgICAgIHByb3ZpZGU6IE1BVF9GT1JNX0ZJRUxEX0RFRkFVTFRfT1BUSU9OUyxcbiAgICAgIHVzZVZhbHVlOiB7XG4gICAgICAgIGFwcGVhcmFuY2U6ICdvdXRsaW5lJyxcbiAgICAgICAgZmxvYXRMYWJlbDogJ2Fsd2F5cycsXG4gICAgICB9IGFzIE1hdEZvcm1GaWVsZERlZmF1bHRPcHRpb25zLFxuICAgIH0sXG4gIF0sXG4gIGltcG9ydHM6IFtcblxuICBdXG59KVxuZXhwb3J0IGNsYXNzIE9uZW1ydmFUaGVtZU1vZHVsZSB7fVxuIl19
|
|
@@ -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.3.
|
|
7
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.
|
|
8
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.
|
|
6
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: OnemrvaThemeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
7
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.10", ngImport: i0, type: OnemrvaThemeModule }); }
|
|
8
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.10", 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.3.
|
|
18
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", 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';\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
|
|
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;+GAAlB,kBAAkB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA,EAAA;gHAAlB,kBAAkB,EAAA,CAAA,CAAA,EAAA;AAAlB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,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;;4FAKU,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;;;;"}
|