@covalent/components 10.4.1 → 10.4.3
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/index.scss +1 -0
- package/package.json +1 -1
- package/theme/_index.scss +46 -0
- package/theme/prebuilt/dark-theme.css +1 -0
- package/theme/prebuilt/dark-theme.css.map +1 -0
- package/theme/prebuilt/light-theme.css +1 -0
- package/theme/prebuilt/light-theme.css.map +1 -0
- package/tree-list/tree-list-item.d.ts +1 -0
- package/tree-list/tree-list-item.d.ts.map +1 -1
- package/tree-list-item.js +6 -6
- package/tree-list-item.mjs +24 -20
package/index.scss
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@forward './theme' show components-theme;
|
package/package.json
CHANGED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
@mixin css-variable-tokens($theme, $prefix: 'cv-theme') {
|
|
2
|
+
@each $key, $value in $theme {
|
|
3
|
+
--#{$prefix}-#{$key}: #{map-get($theme, $key)};
|
|
4
|
+
}
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
@mixin components-theme($theme, $typography) {
|
|
8
|
+
// Covalent theme tokens as css variables
|
|
9
|
+
@include css-variable-tokens($theme);
|
|
10
|
+
// Covalent typography tokens as css variables
|
|
11
|
+
@include css-variable-tokens($typography, 'cv-typography');
|
|
12
|
+
// Material tokens as css variables
|
|
13
|
+
@include css-variable-tokens($theme, 'mdc-theme');
|
|
14
|
+
// Material typography tokens as css variables
|
|
15
|
+
@include css-variable-tokens($typography, 'mdc-typography');
|
|
16
|
+
|
|
17
|
+
// Overrides that dont fit in the theme map
|
|
18
|
+
--mdc-theme-border: #{map-get($theme, divider)};
|
|
19
|
+
--mdc-theme-surface-accent: #{map-get($theme, surface-primary)};
|
|
20
|
+
--mdc-theme-surface-accent-highlight: #{map-get(
|
|
21
|
+
$theme,
|
|
22
|
+
surface-primary-highlight
|
|
23
|
+
)};
|
|
24
|
+
--mdc-theme-surface-accent-highlight-hover: #{map-get(
|
|
25
|
+
$theme,
|
|
26
|
+
surface-primary-highlight-hover
|
|
27
|
+
)};
|
|
28
|
+
--mdc-typography-button-letter-spacing: 0;
|
|
29
|
+
|
|
30
|
+
// Icons
|
|
31
|
+
--mdc-icon-font: 'Material Symbols Outlined';
|
|
32
|
+
|
|
33
|
+
// Ripple
|
|
34
|
+
--mdc-ripple-color: #{map-get($theme, on-surface)};
|
|
35
|
+
|
|
36
|
+
// Shape
|
|
37
|
+
--mdc-shape-small: 8px;
|
|
38
|
+
--mdc-shape-medium: 8px;
|
|
39
|
+
|
|
40
|
+
// Tooltip
|
|
41
|
+
--mdc-plain-tooltip-container-color: #{map-get($theme, inverse-surface)};
|
|
42
|
+
--mdc-plain-tooltip-supporting-text-color: #{map-get(
|
|
43
|
+
$theme,
|
|
44
|
+
inverse-on-surface
|
|
45
|
+
)};
|
|
46
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root{--cv-theme-primary: #bac3ff;--cv-theme-primary-container: #1d2c43;--cv-theme-on-primary: #111a28;--cv-theme-secondary: #c3c5dd;--cv-theme-secondary-container: #434659;--cv-theme-on-secondary: #171a2c;--cv-theme-on-secondary-container: #dfe1f9;--cv-theme-tertiary: #ff5f02;--cv-theme-tertiary-container: #c25d33;--cv-theme-on-tertiary: #612e1a;--cv-theme-on-tertiary-container: #fef1ec;--cv-theme-surface: #1e1d1e;--cv-theme-surface-dim: #161616;--cv-theme-surface-bright: #4a4a4d;--cv-theme-surface-container-lowest: #2c2b2d;--cv-theme-surface-container-low: #323134;--cv-theme-surface-container: #38383b;--cv-theme-surface-container-high: #3e3e41;--cv-theme-surface-container-highest: #444447;--cv-theme-on-surface: #ebe8ec;--cv-theme-on-surface-variant: #d5d3d8;--cv-theme-inverse-surface: #ebe8ec;--cv-theme-inverse-on-surface: #3e3e41;--cv-theme-negative: #fd7d69;--cv-theme-negative-container: #65322a;--cv-theme-on-negative: #331915;--cv-theme-on-negative-container: #ffac9f;--cv-theme-positive: #91d890;--cv-theme-positive-container: #224b22;--cv-theme-on-positive: #112611;--cv-theme-on-positive-container: #91d890;--cv-theme-caution: #ffcd9e;--cv-theme-caution-container: #66492f;--cv-theme-on-caution: #66492f;--cv-theme-on-caution-container: #ffcd9e;--cv-theme-outline: #8f8e97;--cv-theme-outline-variant: #3e3e41;--cv-theme-shadow: #000000;--cv-theme-scrim: rgba(0, 0, 0, 0.32);--cv-theme-primary-fixed: #dde1ff;--cv-theme-primary-fixed-dim: #bac3ff;--cv-theme-secondary-fixed: #dfe1f9;--cv-theme-secondary-fixed-dim: #c3c5dd;--cv-theme-tertiary-fixed: #f79e79;--cv-theme-tertiary-fixed-dim: #f37440;--cv-theme-primary-8: rgba(186, 195, 255, 0.08);--cv-theme-primary-12: rgba(186, 195, 255, 0.12);--cv-theme-on-surface-8: rgba(235, 232, 236, 0.08);--cv-theme-on-surface-12: rgba(235, 232, 236, 0.12);--cv-theme-on-primary-container: #dde1ff;--cv-theme-inverse-primary: #3053f4;--cv-theme-on-surface-38: rgba(235, 232, 236, 0.38);--cv-theme-on-surface-16: rgba(235, 232, 236, 0.16);--cv-theme-on-primary-12: rgba(17, 26, 40, 0.12);--cv-theme-on-primary-8: rgba(17, 26, 40, 0.08);--cv-theme-primary-16: rgba(186, 195, 255, 0.16);--cv-theme-on-surface-variant-8: rgba(213, 211, 216, 0.08);--cv-theme-on-tertiary-container-8: rgba(254, 241, 236, 0.08);--cv-theme-on-tertiary-container-12: rgba(254, 241, 236, 0.12);--cv-theme-on-primary-container-12: rgba(221, 225, 255, 0.12);--cv-theme-on-surface-variant-12: rgba(213, 211, 216, 0.12);--cv-theme-on-secondary-container-8: rgba(91, 93, 114, 0.08);--cv-theme-on-secondary-container-16: rgba(97, 99, 120, 0.16);--cv-theme-outline-8: rgba(143, 142, 151, 0.08);--cv-theme-outline-12: rgba(143, 142, 151, 0.12);--cv-theme-outline-16: rgba(143, 142, 151, 0.16);--cv-theme-surface-variant: #000000;--cv-theme-emphasis: #cc809c;--cv-theme-emphasis-container: #66404e;--cv-theme-on-emphasis: #191013;--cv-theme-on-emphasis-container: #ffd9e7;--cv-theme-positive-16: rgba(145, 216, 144, 0.16);--cv-theme-caution-16: rgba(255, 183, 117, 0.16);--cv-theme-negative-12: rgba(253, 125, 105, 0.12);--cv-theme-on-secondary-container-12: rgba(91, 93, 114, 0.12);--cv-theme-on-primary-16: rgba(17, 26, 40, 0.16);--cv-theme-on-primary-container-8: rgba(221, 225, 255, 0.08);--cv-theme-on-primary-container-16: rgba(221, 225, 255, 0.16);--cv-theme-on-secondary-8: rgba(23, 26, 44, 0.08);--cv-theme-on-secondary-12: rgba(23, 26, 44, 0.12);--cv-theme-on-secondary-16: rgba(23, 26, 44, 0.16);--cv-theme-on-tertiary-8: rgba(97, 46, 26, 0.08);--cv-theme-on-tertiary-12: rgba(97, 46, 26, 0.12);--cv-theme-on-tertiary-16: rgba(97, 46, 26, 0.16);--cv-theme-on-tertiary-container-16: rgba(254, 241, 236, 0.16);--cv-theme-on-surface-variant-16: rgba(213, 211, 216, 0.16);--cv-theme-negative-8: rgba(253, 125, 105, 0.08);--cv-theme-negative-16: rgba(253, 125, 105, 0.16);--cv-theme-positive-12: rgba(145, 216, 144, 0.12);--cv-theme-positive-8: rgba(145, 216, 144, 0.08);--cv-theme-on-positive-8: rgba(17, 38, 17, 0.08);--cv-theme-on-positive-12: rgba(17, 38, 17, 0.12);--cv-theme-on-positive-16: rgba(17, 38, 17, 0.16);--cv-theme-on-positive-container-8: rgba(145, 216, 144, 0.08);--cv-theme-on-positive-container-12: rgba(145, 216, 144, 0.12);--cv-theme-on-positive-container-16: rgba(145, 216, 144, 0.16);--cv-theme-caution-12: rgba(255, 183, 117, 0.12);--cv-theme-caution-8: rgba(255, 183, 117, 0.08);--cv-theme-on-caution-8: rgba(102, 73, 47, 0.08);--cv-theme-on-caution-12: rgba(102, 73, 47, 0.12);--cv-theme-on-caution-16: rgba(102, 73, 47, 0.16);--cv-theme-on-negative-8: rgba(51, 25, 21, 0.08);--cv-theme-on-negative-12: rgba(51, 25, 21, 0.12);--cv-theme-on-negative-16: rgba(51, 25, 21, 0.16);--cv-theme-on-caution-container-8: rgba(25, 18, 12, 0.08);--cv-theme-on-caution-container-12: rgba(25, 18, 12, 0.12);--cv-theme-on-caution-container-16: rgba(25, 18, 12, 0.16);--cv-theme-emphasis-8: rgba(204, 128, 156, 0.08);--cv-theme-emphasis-12: rgba(204, 128, 156, 0.12);--cv-theme-emphasis-16: rgba(204, 128, 156, 0.16);--cv-theme-on-emphasis-8: rgba(25, 16, 19, 0.08);--cv-theme-on-emphasis-12: rgba(25, 16, 19, 0.12);--cv-theme-on-emphasis-16: rgba(25, 16, 19, 0.16);--cv-theme-on-emphasis-container-8: rgba(255, 217, 231, 0.08);--cv-theme-on-emphasis-container-12: rgba(255, 217, 231, 0.12);--cv-theme-on-emphasis-container-16: rgba(255, 217, 231, 0.16);--cv-theme-inverse-on-surface-12: rgba(62, 62, 65, 0.12);--cv-theme-inverse-primary-12: rgba(48, 83, 244, 0.12);--cv-theme-inverse-on-surface-8: rgba(62, 62, 65, 0.08);--cv-theme-inverse-primary-8: rgba(48, 83, 244, 0.08);--cv-theme-inverse-primary-16: rgba(48, 83, 244, 0.16);--cv-theme-inverse-on-surface-16: rgba(62, 62, 65, 0.16);--cv-theme-on-primary-74: rgba(17, 26, 40, 0.74);--cv-theme-on-surface-74: rgba(235, 232, 236, 0.74);--cv-theme-tertiary-8: rgba(255, 95, 2, 0.08);--cv-theme-tertiary-12: rgba(255, 95, 2, 0.12);--cv-theme-tertiary-16: rgba(255, 95, 2, 0.16);--cv-theme-secondary-8: rgba(195, 197, 221, 0.08);--cv-theme-secondary-12: rgba(195, 197, 221, 0.12);--cv-theme-secondary-16: rgba(195, 197, 221, 0.16);--cv-theme-on-secondary-74: rgba(23, 26, 44, 0.74);--cv-theme-inverse-secondary: #5b5d72;--cv-theme-inverse-secondary-8: rgba(97, 99, 120, 0.08);--cv-theme-inverse-secondary-12: rgba(97, 99, 120, 0.12);--cv-theme-inverse-secondary-16: rgba(97, 99, 120, 0.16);--cv-theme-on-tertiary-74: rgba(97, 46, 26, 0.74);--cv-theme-inverse-tertiary: #612e1a;--cv-theme-inverse-tertiary-8: rgba(255, 95, 2, 0.08);--cv-theme-inverse-tertiary-12: rgba(255, 95, 2, 0.12);--cv-theme-inverse-tertiary-16: rgba(255, 95, 2, 0.16);--cv-theme-on-negative-container-8: rgba(255, 172, 159, 0.08);--cv-theme-on-negative-container-12: rgba(255, 172, 159, 0.12);--cv-theme-on-negative-container-16: rgba(255, 172, 159, 0.16);--cv-theme-on-surface-4: rgba(235, 232, 236, 0.04);--cv-theme-on-surface-variant-4: rgba(213, 211, 216, 0.04);--cv-theme-inverse-on-surface-4: rgba(62, 62, 65, 0.04);--cv-theme-primary-4: rgba(186, 195, 255, 0.04);--cv-theme-on-primary-4: rgba(17, 26, 40, 0.04);--cv-theme-on-primary-container-4: rgba(221, 225, 255, 0.04);--cv-theme-inverse-primary-4: rgba(48, 83, 244, 0.04);--cv-theme-secondary-4: rgba(195, 197, 221, 0.04);--cv-theme-on-secondary-4: rgba(23, 26, 44, 0.04);--cv-theme-on-secondary-container-4: rgba(91, 93, 114, 0.04);--cv-theme-inverse-secondary-4: rgba(97, 99, 120, 0.04);--cv-theme-tertiary-4: rgba(255, 95, 2, 0.04);--cv-theme-on-tertiary-4: rgba(97, 46, 26, 0.04);--cv-theme-on-tertiary-container-4: rgba(254, 241, 236, 0.04);--cv-theme-inverse-tertiary-4: rgba(255, 95, 2, 0.04);--cv-theme-negative-4: rgba(253, 125, 105, 0.04);--cv-theme-on-negative-4: rgba(51, 25, 21, 0.04);--cv-theme-on-negative-container-4: rgba(255, 172, 159, 0.04);--cv-theme-positive-4: rgba(145, 216, 144, 0.04);--cv-theme-on-positive-4: rgba(17, 38, 17, 0.04);--cv-theme-on-positive-container-4: rgba(145, 216, 144, 0.04);--cv-theme-caution-4: rgba(255, 183, 117, 0.04);--cv-theme-on-caution-4: rgba(102, 73, 47, 0.04);--cv-theme-on-caution-container-4: rgba(25, 18, 12, 0.04);--cv-theme-emphasis-4: rgba(204, 128, 156, 0.04);--cv-theme-on-emphasis-4: rgba(25, 16, 19, 0.04);--cv-theme-on-emphasis-container-4: rgba(255, 217, 231, 0.04);--cv-theme-on-surface-20: rgba(235, 232, 236, 0.2);--cv-theme-primary-20: rgba(186, 195, 255, 0.2);--cv-theme-negative-20: rgba(253, 125, 105, 0.2);--cv-theme-positive-20: rgba(145, 216, 144, 0.2);--cv-theme-caution-20: rgba(255, 183, 117, 0.2);--cv-theme-emphasis-20: rgba(204, 128, 156, 0.2);--cv-theme-primary-24: rgba(186, 195, 255, 0.24);--cv-theme-negative-24: rgba(253, 125, 105, 0.24);--cv-theme-positive-24: rgba(145, 216, 144, 0.24);--cv-theme-caution-24: rgba(255, 183, 117, 0.24);--cv-theme-emphasis-24: rgba(204, 128, 156, 0.24);--cv-theme-background: #1e1d1e;--cv-theme-surface-variant-8: rgba(0, 0, 0, 0.08);--cv-theme-surface-variant-12: rgba(0, 0, 0, 0.12);--cv-theme-surface-variant-16: rgba(0, 0, 0, 0.16);--cv-theme-logo: #ffffff;--cv-theme-on-surface-variant-38: rgba(213, 211, 216, 0.38);--cv-theme-on-primary-38: rgba(17, 26, 40, 0.38);--cv-theme-on-secondary-38: rgba(23, 26, 44, 0.38);--cv-theme-on-secondary-container-38: rgba(97, 99, 120, 0.38);--cv-theme-on-secondary-container-74: rgba(97, 99, 120, 0.74);--cv-theme-on-tertiary-38: rgba(97, 46, 26, 0.38);--cv-theme-on-tertiary-container-38: rgba(254, 241, 236, 0.38);--cv-theme-on-tertiary-container-74: rgba(254, 241, 236, 0.74);--cv-theme-inverse-tertiary-38: rgba(255, 95, 2, 0.38);--cv-theme-inverse-tertiary-74: rgba(255, 95, 2, 0.74);--cv-theme-negative-38: rgba(253, 125, 105, 0.38);--cv-theme-negative-74: rgba(253, 125, 105, 0.74);--cv-theme-on-negative-38: rgba(51, 25, 21, 0.38);--cv-theme-on-negative-74: rgba(51, 25, 21, 0.74);--cv-theme-on-negative-container-38: rgba(255, 172, 159, 0.38);--cv-theme-on-negative-container-74: rgba(255, 172, 159, 0.74);--cv-theme-positive-38: rgba(145, 216, 144, 0.38);--cv-theme-positive-74: rgba(145, 216, 144, 0.74);--cv-theme-on-positive-38: rgba(17, 38, 17, 0.38);--cv-theme-on-positive-74: rgba(17, 38, 17, 0.74);--cv-theme-on-positive-container-38: rgba(145, 216, 144, 0.38);--cv-theme-on-positive-container-74: rgba(145, 216, 144, 0.74);--cv-theme-caution-38: rgba(255, 183, 117, 0.38);--cv-theme-caution-74: rgba(255, 183, 117, 0.74);--cv-theme-on-caution-38: rgba(102, 73, 47, 0.38);--cv-theme-on-caution-74: rgba(102, 73, 47, 0.74);--cv-theme-on-caution-container-38: rgba(25, 18, 12, 0.38);--cv-theme-on-caution-container-74: rgba(25, 18, 12, 0.74);--cv-theme-emphasis-38: rgba(204, 128, 156, 0.38);--cv-theme-emphasis-74: rgba(204, 128, 156, 0.74);--cv-theme-on-emphasis-38: rgba(25, 16, 19, 0.38);--cv-theme-on-emphasis-74: rgba(25, 16, 19, 0.74);--cv-theme-on-emphasis-container-38: rgba(255, 217, 231, 0.38);--cv-theme-on-emphasis-container-74: rgba(255, 217, 231, 0.74);--cv-theme-on-primary-container-38: rgba(221, 225, 255, 0.38);--cv-theme-on-primary-container-74: rgba(221, 225, 255, 0.74);--cv-theme-primary-38: rgba(186, 195, 255, 0.38);--cv-theme-primary-74: rgba(186, 195, 255, 0.74);--cv-theme-brand: #ff5f02;--cv-theme-code-snippet-color: #abb2bf;--cv-theme-code-snippet-comment: #5c6370;--cv-theme-code-snippet-keyword: #c678dd;--cv-theme-code-snippet-selector: #e06c75;--cv-theme-code-snippet-literal: #56b6c2;--cv-theme-code-snippet-string: #98c379;--cv-theme-code-snippet-variable: #d19a66;--cv-theme-code-snippet-title: #61aeee;--cv-theme-code-snippet-class: #e6c07b;--cv-theme-error: #fd7d69;--cv-theme-on-background: #ebe8ec;--cv-theme-on-error: #331915;--cv-theme-divider: #3e3e41;--cv-theme-accent: #bac3ff;--cv-theme-surface-canvas: #38383b;--cv-theme-surface-primary: #1d2c43;--cv-theme-surface-primary-highlight: rgba(186, 195, 255, 0.08);--cv-theme-surface-primary-highlight-hover: rgba(186, 195, 255, 0.08);--cv-theme-surface-accent: #1d2c43;--cv-theme-surface-accent-highlight: rgba(186, 195, 255, 0.08);--cv-theme-surface-accent-highlight-hover: rgba(186, 195, 255, 0.08);--cv-theme-surface-secondary: #434659;--cv-theme-surface-secondary-highlight: rgba(195, 197, 221, 0.08);--cv-theme-surface-secondary-highlight-hover: rgba(195, 197, 221, 0.08);--cv-theme-surface-positive: #224b22;--cv-theme-surface-positive-highlight: rgba(145, 216, 144, 0.08);--cv-theme-surface-positive-highlight-hover: rgba(145, 216, 144, 0.08);--cv-theme-surface-caution: #66492f;--cv-theme-surface-caution-highlight: rgba(255, 183, 117, 0.08);--cv-theme-surface-caution-highlight-hover: rgba(255, 183, 117, 0.08);--cv-theme-surface-negative: #65322a;--cv-theme-surface-negative-highlight: rgba(253, 125, 105, 0.08);--cv-theme-surface-negative-highlight-hover: rgba(253, 125, 105, 0.08);--cv-theme-surface-neutral: #f3f5f9;--cv-theme-surface-neutral-highlight: rgba(243, 245, 249, 0.04);--cv-theme-surface-neutral-highlight-hover: rgba(243, 245, 249, 0.08);--cv-theme-surface-emphasis: #66404e;--cv-theme-surface-emphasis-highlight: rgba(204, 128, 156, 0.08);--cv-theme-surface-emphasis-highlight-hover: rgba(204, 128, 156, 0.08);--cv-theme-text-primary-on-background: #ebe8ec;--cv-theme-text-secondary-on-background: #d5d3d8;--cv-theme-text-hint-on-background: #d5d3d8;--cv-theme-text-disabled-on-background: rgba(235, 232, 236, 0.38);--cv-theme-text-icon-on-background: #d5d3d8;--cv-theme-text-logo-on-background: #ffffff;--cv-theme-text-primary-on-light: #00233c;--cv-theme-text-secondary-on-light: #59627b;--cv-theme-text-hint-on-light: #59627b;--cv-theme-text-disabled-on-light: rgba(0, 35, 60, 0.38);--cv-theme-text-icon-on-light: #59627b;--cv-theme-text-primary-on-dark: #ebe8ec;--cv-theme-text-secondary-on-dark: #d5d3d8;--cv-theme-text-hint-on-dark: #d5d3d8;--cv-theme-text-disabled-on-dark: rgba(235, 232, 236, 0.38);--cv-theme-text-icon-on-dark: #d5d3d8;--cv-typography-font-family: Inter, Arial, sans-serif;--cv-typography-headline1-font-family: Inter, Arial, sans-serif;--cv-typography-headline1-font-size: 96px;--cv-typography-headline1-font-weight: 300;--cv-typography-headline1-line-height: 112px;--cv-typography-headline1-letter-spacing: -1.5px;--cv-typography-headline2-font-family: Inter, Arial, sans-serif;--cv-typography-headline2-font-size: 60px;--cv-typography-headline2-font-weight: 300;--cv-typography-headline2-line-height: 72px;--cv-typography-headline2-letter-spacing: -0.5px;--cv-typography-headline3-font-family: Inter, Arial, sans-serif;--cv-typography-headline3-font-size: 48px;--cv-typography-headline3-font-weight: 400;--cv-typography-headline3-line-height: 56px;--cv-typography-headline3-letter-spacing: 0px;--cv-typography-headline4-font-family: Inter, Arial, sans-serif;--cv-typography-headline4-font-size: 34px;--cv-typography-headline4-font-weight: 400;--cv-typography-headline4-line-height: 42px;--cv-typography-headline4-letter-spacing: 0px;--cv-typography-headline5-font-family: Inter, Arial, sans-serif;--cv-typography-headline5-font-size: 24px;--cv-typography-headline5-font-weight: 400;--cv-typography-headline5-line-height: 36px;--cv-typography-headline5-letter-spacing: 0.18px;--cv-typography-headline6-font-family: Inter, Arial, sans-serif;--cv-typography-headline6-font-size: 20px;--cv-typography-headline6-font-weight: 500;--cv-typography-headline6-line-height: 24px;--cv-typography-headline6-letter-spacing: 0.15px;--cv-typography-subtitle1-font-family: Inter, Arial, sans-serif;--cv-typography-subtitle1-font-size: 16px;--cv-typography-subtitle1-font-weight: 500;--cv-typography-subtitle1-line-height: 28px;--cv-typography-subtitle1-letter-spacing: 0.15px;--cv-typography-subtitle2-font-family: Inter, Arial, sans-serif;--cv-typography-subtitle2-font-size: 14px;--cv-typography-subtitle2-font-weight: 500;--cv-typography-subtitle2-line-height: 22px;--cv-typography-subtitle2-letter-spacing: 0.1px;--cv-typography-body1-font-family: Inter, Arial, sans-serif;--cv-typography-body1-font-size: 16px;--cv-typography-body1-font-weight: 400;--cv-typography-body1-line-height: 24px;--cv-typography-body1-letter-spacing: 0px;--cv-typography-body2-font-family: Inter, Arial, sans-serif;--cv-typography-body2-font-size: 14px;--cv-typography-body2-font-weight: 400;--cv-typography-body2-line-height: 20px;--cv-typography-body2-letter-spacing: 0px;--cv-typography-button-font-family: Inter, Arial, sans-serif;--cv-typography-button-font-size: 14px;--cv-typography-button-font-weight: 500;--cv-typography-button-line-height: 16px;--cv-typography-button-letter-spacing: 0px;--cv-typography-caption-font-family: Inter, Arial, sans-serif;--cv-typography-caption-font-size: 12px;--cv-typography-caption-font-weight: 400;--cv-typography-caption-line-height: 16px;--cv-typography-caption-letter-spacing: 0px;--cv-typography-code-font-family: Roboto Mono, monospace;--cv-typography-code-font-size: 12px;--cv-typography-code-font-weight: 400;--cv-typography-code-line-height: 20px;--cv-typography-code-letter-spacing: 0px;--mdc-theme-primary: #bac3ff;--mdc-theme-primary-container: #1d2c43;--mdc-theme-on-primary: #111a28;--mdc-theme-secondary: #c3c5dd;--mdc-theme-secondary-container: #434659;--mdc-theme-on-secondary: #171a2c;--mdc-theme-on-secondary-container: #dfe1f9;--mdc-theme-tertiary: #ff5f02;--mdc-theme-tertiary-container: #c25d33;--mdc-theme-on-tertiary: #612e1a;--mdc-theme-on-tertiary-container: #fef1ec;--mdc-theme-surface: #1e1d1e;--mdc-theme-surface-dim: #161616;--mdc-theme-surface-bright: #4a4a4d;--mdc-theme-surface-container-lowest: #2c2b2d;--mdc-theme-surface-container-low: #323134;--mdc-theme-surface-container: #38383b;--mdc-theme-surface-container-high: #3e3e41;--mdc-theme-surface-container-highest: #444447;--mdc-theme-on-surface: #ebe8ec;--mdc-theme-on-surface-variant: #d5d3d8;--mdc-theme-inverse-surface: #ebe8ec;--mdc-theme-inverse-on-surface: #3e3e41;--mdc-theme-negative: #fd7d69;--mdc-theme-negative-container: #65322a;--mdc-theme-on-negative: #331915;--mdc-theme-on-negative-container: #ffac9f;--mdc-theme-positive: #91d890;--mdc-theme-positive-container: #224b22;--mdc-theme-on-positive: #112611;--mdc-theme-on-positive-container: #91d890;--mdc-theme-caution: #ffcd9e;--mdc-theme-caution-container: #66492f;--mdc-theme-on-caution: #66492f;--mdc-theme-on-caution-container: #ffcd9e;--mdc-theme-outline: #8f8e97;--mdc-theme-outline-variant: #3e3e41;--mdc-theme-shadow: #000000;--mdc-theme-scrim: rgba(0, 0, 0, 0.32);--mdc-theme-primary-fixed: #dde1ff;--mdc-theme-primary-fixed-dim: #bac3ff;--mdc-theme-secondary-fixed: #dfe1f9;--mdc-theme-secondary-fixed-dim: #c3c5dd;--mdc-theme-tertiary-fixed: #f79e79;--mdc-theme-tertiary-fixed-dim: #f37440;--mdc-theme-primary-8: rgba(186, 195, 255, 0.08);--mdc-theme-primary-12: rgba(186, 195, 255, 0.12);--mdc-theme-on-surface-8: rgba(235, 232, 236, 0.08);--mdc-theme-on-surface-12: rgba(235, 232, 236, 0.12);--mdc-theme-on-primary-container: #dde1ff;--mdc-theme-inverse-primary: #3053f4;--mdc-theme-on-surface-38: rgba(235, 232, 236, 0.38);--mdc-theme-on-surface-16: rgba(235, 232, 236, 0.16);--mdc-theme-on-primary-12: rgba(17, 26, 40, 0.12);--mdc-theme-on-primary-8: rgba(17, 26, 40, 0.08);--mdc-theme-primary-16: rgba(186, 195, 255, 0.16);--mdc-theme-on-surface-variant-8: rgba(213, 211, 216, 0.08);--mdc-theme-on-tertiary-container-8: rgba(254, 241, 236, 0.08);--mdc-theme-on-tertiary-container-12: rgba(254, 241, 236, 0.12);--mdc-theme-on-primary-container-12: rgba(221, 225, 255, 0.12);--mdc-theme-on-surface-variant-12: rgba(213, 211, 216, 0.12);--mdc-theme-on-secondary-container-8: rgba(91, 93, 114, 0.08);--mdc-theme-on-secondary-container-16: rgba(97, 99, 120, 0.16);--mdc-theme-outline-8: rgba(143, 142, 151, 0.08);--mdc-theme-outline-12: rgba(143, 142, 151, 0.12);--mdc-theme-outline-16: rgba(143, 142, 151, 0.16);--mdc-theme-surface-variant: #000000;--mdc-theme-emphasis: #cc809c;--mdc-theme-emphasis-container: #66404e;--mdc-theme-on-emphasis: #191013;--mdc-theme-on-emphasis-container: #ffd9e7;--mdc-theme-positive-16: rgba(145, 216, 144, 0.16);--mdc-theme-caution-16: rgba(255, 183, 117, 0.16);--mdc-theme-negative-12: rgba(253, 125, 105, 0.12);--mdc-theme-on-secondary-container-12: rgba(91, 93, 114, 0.12);--mdc-theme-on-primary-16: rgba(17, 26, 40, 0.16);--mdc-theme-on-primary-container-8: rgba(221, 225, 255, 0.08);--mdc-theme-on-primary-container-16: rgba(221, 225, 255, 0.16);--mdc-theme-on-secondary-8: rgba(23, 26, 44, 0.08);--mdc-theme-on-secondary-12: rgba(23, 26, 44, 0.12);--mdc-theme-on-secondary-16: rgba(23, 26, 44, 0.16);--mdc-theme-on-tertiary-8: rgba(97, 46, 26, 0.08);--mdc-theme-on-tertiary-12: rgba(97, 46, 26, 0.12);--mdc-theme-on-tertiary-16: rgba(97, 46, 26, 0.16);--mdc-theme-on-tertiary-container-16: rgba(254, 241, 236, 0.16);--mdc-theme-on-surface-variant-16: rgba(213, 211, 216, 0.16);--mdc-theme-negative-8: rgba(253, 125, 105, 0.08);--mdc-theme-negative-16: rgba(253, 125, 105, 0.16);--mdc-theme-positive-12: rgba(145, 216, 144, 0.12);--mdc-theme-positive-8: rgba(145, 216, 144, 0.08);--mdc-theme-on-positive-8: rgba(17, 38, 17, 0.08);--mdc-theme-on-positive-12: rgba(17, 38, 17, 0.12);--mdc-theme-on-positive-16: rgba(17, 38, 17, 0.16);--mdc-theme-on-positive-container-8: rgba(145, 216, 144, 0.08);--mdc-theme-on-positive-container-12: rgba(145, 216, 144, 0.12);--mdc-theme-on-positive-container-16: rgba(145, 216, 144, 0.16);--mdc-theme-caution-12: rgba(255, 183, 117, 0.12);--mdc-theme-caution-8: rgba(255, 183, 117, 0.08);--mdc-theme-on-caution-8: rgba(102, 73, 47, 0.08);--mdc-theme-on-caution-12: rgba(102, 73, 47, 0.12);--mdc-theme-on-caution-16: rgba(102, 73, 47, 0.16);--mdc-theme-on-negative-8: rgba(51, 25, 21, 0.08);--mdc-theme-on-negative-12: rgba(51, 25, 21, 0.12);--mdc-theme-on-negative-16: rgba(51, 25, 21, 0.16);--mdc-theme-on-caution-container-8: rgba(25, 18, 12, 0.08);--mdc-theme-on-caution-container-12: rgba(25, 18, 12, 0.12);--mdc-theme-on-caution-container-16: rgba(25, 18, 12, 0.16);--mdc-theme-emphasis-8: rgba(204, 128, 156, 0.08);--mdc-theme-emphasis-12: rgba(204, 128, 156, 0.12);--mdc-theme-emphasis-16: rgba(204, 128, 156, 0.16);--mdc-theme-on-emphasis-8: rgba(25, 16, 19, 0.08);--mdc-theme-on-emphasis-12: rgba(25, 16, 19, 0.12);--mdc-theme-on-emphasis-16: rgba(25, 16, 19, 0.16);--mdc-theme-on-emphasis-container-8: rgba(255, 217, 231, 0.08);--mdc-theme-on-emphasis-container-12: rgba(255, 217, 231, 0.12);--mdc-theme-on-emphasis-container-16: rgba(255, 217, 231, 0.16);--mdc-theme-inverse-on-surface-12: rgba(62, 62, 65, 0.12);--mdc-theme-inverse-primary-12: rgba(48, 83, 244, 0.12);--mdc-theme-inverse-on-surface-8: rgba(62, 62, 65, 0.08);--mdc-theme-inverse-primary-8: rgba(48, 83, 244, 0.08);--mdc-theme-inverse-primary-16: rgba(48, 83, 244, 0.16);--mdc-theme-inverse-on-surface-16: rgba(62, 62, 65, 0.16);--mdc-theme-on-primary-74: rgba(17, 26, 40, 0.74);--mdc-theme-on-surface-74: rgba(235, 232, 236, 0.74);--mdc-theme-tertiary-8: rgba(255, 95, 2, 0.08);--mdc-theme-tertiary-12: rgba(255, 95, 2, 0.12);--mdc-theme-tertiary-16: rgba(255, 95, 2, 0.16);--mdc-theme-secondary-8: rgba(195, 197, 221, 0.08);--mdc-theme-secondary-12: rgba(195, 197, 221, 0.12);--mdc-theme-secondary-16: rgba(195, 197, 221, 0.16);--mdc-theme-on-secondary-74: rgba(23, 26, 44, 0.74);--mdc-theme-inverse-secondary: #5b5d72;--mdc-theme-inverse-secondary-8: rgba(97, 99, 120, 0.08);--mdc-theme-inverse-secondary-12: rgba(97, 99, 120, 0.12);--mdc-theme-inverse-secondary-16: rgba(97, 99, 120, 0.16);--mdc-theme-on-tertiary-74: rgba(97, 46, 26, 0.74);--mdc-theme-inverse-tertiary: #612e1a;--mdc-theme-inverse-tertiary-8: rgba(255, 95, 2, 0.08);--mdc-theme-inverse-tertiary-12: rgba(255, 95, 2, 0.12);--mdc-theme-inverse-tertiary-16: rgba(255, 95, 2, 0.16);--mdc-theme-on-negative-container-8: rgba(255, 172, 159, 0.08);--mdc-theme-on-negative-container-12: rgba(255, 172, 159, 0.12);--mdc-theme-on-negative-container-16: rgba(255, 172, 159, 0.16);--mdc-theme-on-surface-4: rgba(235, 232, 236, 0.04);--mdc-theme-on-surface-variant-4: rgba(213, 211, 216, 0.04);--mdc-theme-inverse-on-surface-4: rgba(62, 62, 65, 0.04);--mdc-theme-primary-4: rgba(186, 195, 255, 0.04);--mdc-theme-on-primary-4: rgba(17, 26, 40, 0.04);--mdc-theme-on-primary-container-4: rgba(221, 225, 255, 0.04);--mdc-theme-inverse-primary-4: rgba(48, 83, 244, 0.04);--mdc-theme-secondary-4: rgba(195, 197, 221, 0.04);--mdc-theme-on-secondary-4: rgba(23, 26, 44, 0.04);--mdc-theme-on-secondary-container-4: rgba(91, 93, 114, 0.04);--mdc-theme-inverse-secondary-4: rgba(97, 99, 120, 0.04);--mdc-theme-tertiary-4: rgba(255, 95, 2, 0.04);--mdc-theme-on-tertiary-4: rgba(97, 46, 26, 0.04);--mdc-theme-on-tertiary-container-4: rgba(254, 241, 236, 0.04);--mdc-theme-inverse-tertiary-4: rgba(255, 95, 2, 0.04);--mdc-theme-negative-4: rgba(253, 125, 105, 0.04);--mdc-theme-on-negative-4: rgba(51, 25, 21, 0.04);--mdc-theme-on-negative-container-4: rgba(255, 172, 159, 0.04);--mdc-theme-positive-4: rgba(145, 216, 144, 0.04);--mdc-theme-on-positive-4: rgba(17, 38, 17, 0.04);--mdc-theme-on-positive-container-4: rgba(145, 216, 144, 0.04);--mdc-theme-caution-4: rgba(255, 183, 117, 0.04);--mdc-theme-on-caution-4: rgba(102, 73, 47, 0.04);--mdc-theme-on-caution-container-4: rgba(25, 18, 12, 0.04);--mdc-theme-emphasis-4: rgba(204, 128, 156, 0.04);--mdc-theme-on-emphasis-4: rgba(25, 16, 19, 0.04);--mdc-theme-on-emphasis-container-4: rgba(255, 217, 231, 0.04);--mdc-theme-on-surface-20: rgba(235, 232, 236, 0.2);--mdc-theme-primary-20: rgba(186, 195, 255, 0.2);--mdc-theme-negative-20: rgba(253, 125, 105, 0.2);--mdc-theme-positive-20: rgba(145, 216, 144, 0.2);--mdc-theme-caution-20: rgba(255, 183, 117, 0.2);--mdc-theme-emphasis-20: rgba(204, 128, 156, 0.2);--mdc-theme-primary-24: rgba(186, 195, 255, 0.24);--mdc-theme-negative-24: rgba(253, 125, 105, 0.24);--mdc-theme-positive-24: rgba(145, 216, 144, 0.24);--mdc-theme-caution-24: rgba(255, 183, 117, 0.24);--mdc-theme-emphasis-24: rgba(204, 128, 156, 0.24);--mdc-theme-background: #1e1d1e;--mdc-theme-surface-variant-8: rgba(0, 0, 0, 0.08);--mdc-theme-surface-variant-12: rgba(0, 0, 0, 0.12);--mdc-theme-surface-variant-16: rgba(0, 0, 0, 0.16);--mdc-theme-logo: #ffffff;--mdc-theme-on-surface-variant-38: rgba(213, 211, 216, 0.38);--mdc-theme-on-primary-38: rgba(17, 26, 40, 0.38);--mdc-theme-on-secondary-38: rgba(23, 26, 44, 0.38);--mdc-theme-on-secondary-container-38: rgba(97, 99, 120, 0.38);--mdc-theme-on-secondary-container-74: rgba(97, 99, 120, 0.74);--mdc-theme-on-tertiary-38: rgba(97, 46, 26, 0.38);--mdc-theme-on-tertiary-container-38: rgba(254, 241, 236, 0.38);--mdc-theme-on-tertiary-container-74: rgba(254, 241, 236, 0.74);--mdc-theme-inverse-tertiary-38: rgba(255, 95, 2, 0.38);--mdc-theme-inverse-tertiary-74: rgba(255, 95, 2, 0.74);--mdc-theme-negative-38: rgba(253, 125, 105, 0.38);--mdc-theme-negative-74: rgba(253, 125, 105, 0.74);--mdc-theme-on-negative-38: rgba(51, 25, 21, 0.38);--mdc-theme-on-negative-74: rgba(51, 25, 21, 0.74);--mdc-theme-on-negative-container-38: rgba(255, 172, 159, 0.38);--mdc-theme-on-negative-container-74: rgba(255, 172, 159, 0.74);--mdc-theme-positive-38: rgba(145, 216, 144, 0.38);--mdc-theme-positive-74: rgba(145, 216, 144, 0.74);--mdc-theme-on-positive-38: rgba(17, 38, 17, 0.38);--mdc-theme-on-positive-74: rgba(17, 38, 17, 0.74);--mdc-theme-on-positive-container-38: rgba(145, 216, 144, 0.38);--mdc-theme-on-positive-container-74: rgba(145, 216, 144, 0.74);--mdc-theme-caution-38: rgba(255, 183, 117, 0.38);--mdc-theme-caution-74: rgba(255, 183, 117, 0.74);--mdc-theme-on-caution-38: rgba(102, 73, 47, 0.38);--mdc-theme-on-caution-74: rgba(102, 73, 47, 0.74);--mdc-theme-on-caution-container-38: rgba(25, 18, 12, 0.38);--mdc-theme-on-caution-container-74: rgba(25, 18, 12, 0.74);--mdc-theme-emphasis-38: rgba(204, 128, 156, 0.38);--mdc-theme-emphasis-74: rgba(204, 128, 156, 0.74);--mdc-theme-on-emphasis-38: rgba(25, 16, 19, 0.38);--mdc-theme-on-emphasis-74: rgba(25, 16, 19, 0.74);--mdc-theme-on-emphasis-container-38: rgba(255, 217, 231, 0.38);--mdc-theme-on-emphasis-container-74: rgba(255, 217, 231, 0.74);--mdc-theme-on-primary-container-38: rgba(221, 225, 255, 0.38);--mdc-theme-on-primary-container-74: rgba(221, 225, 255, 0.74);--mdc-theme-primary-38: rgba(186, 195, 255, 0.38);--mdc-theme-primary-74: rgba(186, 195, 255, 0.74);--mdc-theme-brand: #ff5f02;--mdc-theme-code-snippet-color: #abb2bf;--mdc-theme-code-snippet-comment: #5c6370;--mdc-theme-code-snippet-keyword: #c678dd;--mdc-theme-code-snippet-selector: #e06c75;--mdc-theme-code-snippet-literal: #56b6c2;--mdc-theme-code-snippet-string: #98c379;--mdc-theme-code-snippet-variable: #d19a66;--mdc-theme-code-snippet-title: #61aeee;--mdc-theme-code-snippet-class: #e6c07b;--mdc-theme-error: #fd7d69;--mdc-theme-on-background: #ebe8ec;--mdc-theme-on-error: #331915;--mdc-theme-divider: #3e3e41;--mdc-theme-accent: #bac3ff;--mdc-theme-surface-canvas: #38383b;--mdc-theme-surface-primary: #1d2c43;--mdc-theme-surface-primary-highlight: rgba(186, 195, 255, 0.08);--mdc-theme-surface-primary-highlight-hover: rgba(186, 195, 255, 0.08);--mdc-theme-surface-accent: #1d2c43;--mdc-theme-surface-accent-highlight: rgba(186, 195, 255, 0.08);--mdc-theme-surface-accent-highlight-hover: rgba(186, 195, 255, 0.08);--mdc-theme-surface-secondary: #434659;--mdc-theme-surface-secondary-highlight: rgba(195, 197, 221, 0.08);--mdc-theme-surface-secondary-highlight-hover: rgba(195, 197, 221, 0.08);--mdc-theme-surface-positive: #224b22;--mdc-theme-surface-positive-highlight: rgba(145, 216, 144, 0.08);--mdc-theme-surface-positive-highlight-hover: rgba(145, 216, 144, 0.08);--mdc-theme-surface-caution: #66492f;--mdc-theme-surface-caution-highlight: rgba(255, 183, 117, 0.08);--mdc-theme-surface-caution-highlight-hover: rgba(255, 183, 117, 0.08);--mdc-theme-surface-negative: #65322a;--mdc-theme-surface-negative-highlight: rgba(253, 125, 105, 0.08);--mdc-theme-surface-negative-highlight-hover: rgba(253, 125, 105, 0.08);--mdc-theme-surface-neutral: #f3f5f9;--mdc-theme-surface-neutral-highlight: rgba(243, 245, 249, 0.04);--mdc-theme-surface-neutral-highlight-hover: rgba(243, 245, 249, 0.08);--mdc-theme-surface-emphasis: #66404e;--mdc-theme-surface-emphasis-highlight: rgba(204, 128, 156, 0.08);--mdc-theme-surface-emphasis-highlight-hover: rgba(204, 128, 156, 0.08);--mdc-theme-text-primary-on-background: #ebe8ec;--mdc-theme-text-secondary-on-background: #d5d3d8;--mdc-theme-text-hint-on-background: #d5d3d8;--mdc-theme-text-disabled-on-background: rgba(235, 232, 236, 0.38);--mdc-theme-text-icon-on-background: #d5d3d8;--mdc-theme-text-logo-on-background: #ffffff;--mdc-theme-text-primary-on-light: #00233c;--mdc-theme-text-secondary-on-light: #59627b;--mdc-theme-text-hint-on-light: #59627b;--mdc-theme-text-disabled-on-light: rgba(0, 35, 60, 0.38);--mdc-theme-text-icon-on-light: #59627b;--mdc-theme-text-primary-on-dark: #ebe8ec;--mdc-theme-text-secondary-on-dark: #d5d3d8;--mdc-theme-text-hint-on-dark: #d5d3d8;--mdc-theme-text-disabled-on-dark: rgba(235, 232, 236, 0.38);--mdc-theme-text-icon-on-dark: #d5d3d8;--mdc-typography-font-family: Inter, Arial, sans-serif;--mdc-typography-headline1-font-family: Inter, Arial, sans-serif;--mdc-typography-headline1-font-size: 96px;--mdc-typography-headline1-font-weight: 300;--mdc-typography-headline1-line-height: 112px;--mdc-typography-headline1-letter-spacing: -1.5px;--mdc-typography-headline2-font-family: Inter, Arial, sans-serif;--mdc-typography-headline2-font-size: 60px;--mdc-typography-headline2-font-weight: 300;--mdc-typography-headline2-line-height: 72px;--mdc-typography-headline2-letter-spacing: -0.5px;--mdc-typography-headline3-font-family: Inter, Arial, sans-serif;--mdc-typography-headline3-font-size: 48px;--mdc-typography-headline3-font-weight: 400;--mdc-typography-headline3-line-height: 56px;--mdc-typography-headline3-letter-spacing: 0px;--mdc-typography-headline4-font-family: Inter, Arial, sans-serif;--mdc-typography-headline4-font-size: 34px;--mdc-typography-headline4-font-weight: 400;--mdc-typography-headline4-line-height: 42px;--mdc-typography-headline4-letter-spacing: 0px;--mdc-typography-headline5-font-family: Inter, Arial, sans-serif;--mdc-typography-headline5-font-size: 24px;--mdc-typography-headline5-font-weight: 400;--mdc-typography-headline5-line-height: 36px;--mdc-typography-headline5-letter-spacing: 0.18px;--mdc-typography-headline6-font-family: Inter, Arial, sans-serif;--mdc-typography-headline6-font-size: 20px;--mdc-typography-headline6-font-weight: 500;--mdc-typography-headline6-line-height: 24px;--mdc-typography-headline6-letter-spacing: 0.15px;--mdc-typography-subtitle1-font-family: Inter, Arial, sans-serif;--mdc-typography-subtitle1-font-size: 16px;--mdc-typography-subtitle1-font-weight: 500;--mdc-typography-subtitle1-line-height: 28px;--mdc-typography-subtitle1-letter-spacing: 0.15px;--mdc-typography-subtitle2-font-family: Inter, Arial, sans-serif;--mdc-typography-subtitle2-font-size: 14px;--mdc-typography-subtitle2-font-weight: 500;--mdc-typography-subtitle2-line-height: 22px;--mdc-typography-subtitle2-letter-spacing: 0.1px;--mdc-typography-body1-font-family: Inter, Arial, sans-serif;--mdc-typography-body1-font-size: 16px;--mdc-typography-body1-font-weight: 400;--mdc-typography-body1-line-height: 24px;--mdc-typography-body1-letter-spacing: 0px;--mdc-typography-body2-font-family: Inter, Arial, sans-serif;--mdc-typography-body2-font-size: 14px;--mdc-typography-body2-font-weight: 400;--mdc-typography-body2-line-height: 20px;--mdc-typography-body2-letter-spacing: 0px;--mdc-typography-button-font-family: Inter, Arial, sans-serif;--mdc-typography-button-font-size: 14px;--mdc-typography-button-font-weight: 500;--mdc-typography-button-line-height: 16px;--mdc-typography-button-letter-spacing: 0px;--mdc-typography-caption-font-family: Inter, Arial, sans-serif;--mdc-typography-caption-font-size: 12px;--mdc-typography-caption-font-weight: 400;--mdc-typography-caption-line-height: 16px;--mdc-typography-caption-letter-spacing: 0px;--mdc-typography-code-font-family: Roboto Mono, monospace;--mdc-typography-code-font-size: 12px;--mdc-typography-code-font-weight: 400;--mdc-typography-code-line-height: 20px;--mdc-typography-code-letter-spacing: 0px;--mdc-theme-border: #3e3e41;--mdc-theme-surface-accent: #1d2c43;--mdc-theme-surface-accent-highlight: rgba(186, 195, 255, 0.08);--mdc-theme-surface-accent-highlight-hover: rgba(186, 195, 255, 0.08);--mdc-typography-button-letter-spacing: 0;--mdc-icon-font: 'Material Symbols Outlined';--mdc-ripple-color: #ebe8ec;--mdc-shape-small: 8px;--mdc-shape-medium: 8px;--mdc-plain-tooltip-container-color: #ebe8ec;--mdc-plain-tooltip-supporting-text-color: #3e3e41}:root .mdc-data-table__sort-icon-button{color:#d5d3d8}:root .mdc-data-table__sort-icon-button .mdc-icon-button__ripple::before,:root .mdc-data-table__sort-icon-button .mdc-icon-button__ripple::after{background-color:#d5d3d8;background-color:var(--mdc-ripple-color, #d5d3d8)}:root .mdc-data-table__sort-icon-button:hover .mdc-icon-button__ripple::before,:root .mdc-data-table__sort-icon-button.mdc-ripple-surface--hover .mdc-icon-button__ripple::before{opacity:0.08;opacity:var(--mdc-ripple-hover-opacity, 0.08)}:root .mdc-data-table__sort-icon-button.mdc-ripple-upgraded--background-focused .mdc-icon-button__ripple::before,:root .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded):focus .mdc-icon-button__ripple::before{transition-duration:75ms;opacity:0.24;opacity:var(--mdc-ripple-focus-opacity, 0.24)}:root .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded) .mdc-icon-button__ripple::after{transition:opacity 150ms linear}:root .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded):active .mdc-icon-button__ripple::after{transition-duration:75ms;opacity:0.24;opacity:var(--mdc-ripple-press-opacity, 0.24)}:root .mdc-data-table__sort-icon-button.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-ripple-press-opacity, 0.24)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button{color:#d5d3d8}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button .mdc-icon-button__ripple::before,:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button .mdc-icon-button__ripple::after{background-color:#d5d3d8;background-color:var(--mdc-ripple-color, #d5d3d8)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button:hover .mdc-icon-button__ripple::before,:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button.mdc-ripple-surface--hover .mdc-icon-button__ripple::before{opacity:0.08;opacity:var(--mdc-ripple-hover-opacity, 0.08)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button.mdc-ripple-upgraded--background-focused .mdc-icon-button__ripple::before,:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded):focus .mdc-icon-button__ripple::before{transition-duration:75ms;opacity:0.24;opacity:var(--mdc-ripple-focus-opacity, 0.24)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded) .mdc-icon-button__ripple::after{transition:opacity 150ms linear}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded):active .mdc-icon-button__ripple::after{transition-duration:75ms;opacity:0.24;opacity:var(--mdc-ripple-press-opacity, 0.24)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-ripple-press-opacity, 0.24)}:root .mdc-data-table__row--selected{background-color:rgba(243, 245, 249, 0.04)}:root .mdc-data-table__row:not(.mdc-data-table__row--selected):hover{background-color:rgba(243, 245, 249, 0.08)}:root .mdc-data-table__header-cell{color:#ebe8ec}:root .mdc-data-table__pagination-total,:root .mdc-data-table__pagination-rows-per-page-label,:root .mdc-data-table__cell{color:#ebe8ec}:root .mdc-data-table__pagination-rows-per-page-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__leading,:root .mdc-data-table__pagination-rows-per-page-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__notch,:root .mdc-data-table__pagination-rows-per-page-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__trailing{border-color:#3e3e41}:root .mdc-data-table__cell,:root .mdc-data-table__header-cell{border-bottom-color:#3e3e41}:root .mdc-data-table__pagination{border-top-color:#3e3e41}:root{border-width:0;border-style:solid}:root .mdc-data-table{width:100%;border-width:0;white-space:normal}:root .mdc-data-table__header-cell{font-family:var(--mdc-typography-font-family);font-size:var(--mdc-typography-body2-font-size);font-weight:600;line-height:var(--mdc-typography-body2-line-height)}:root .mdc-data-table__sort-icon-button{font-size:1rem}/*# sourceMappingURL=dark-theme.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../../../../libs/components/src/theme/prebuilt/dark-theme.scss","../../../../../libs/components/src/theme/_index.scss","../../../../../node_modules/@material/data-table/_data-table-theme.scss","../../../../../node_modules/@material/theme/_css.scss","../../../../../node_modules/@material/ripple/_ripple-theme.scss","../../../../../node_modules/@material/notched-outline/_mixins.scss","../../../../../libs/components/src/data-table/_data-table.theme.scss"],"names":[],"mappings":"AAYA,MCVI,gkiCAeF,4BACA,oCACA,gEAIA,sEAIA,0CAGA,6CAGA,4BAGA,uBACA,wBAGA,6CACA,mDC4PA,wCCvNE,cC8EA,iJD1FE,yBAYF,kDCyfF,kLDrgBI,aAYF,8CCyfF,0NApRI,yBDjPA,aAYF,8CC+fF,kGA/PQ,gCA+PR,yGAxPU,oBA7SO,KD0Bb,aAYF,8CCkRA,4DDlRA,8DDiOF,6ECjOE,cC8EA,2ND1FE,yBAYF,kDCyfF,4PDrgBI,aAYF,8CCyfF,oSApRI,yBDjPA,aAYF,8CC+fF,uIA/PQ,gCA+PR,8IAxPU,oBA7SO,KD0Bb,aAYF,8CCkRA,iGDlRA,8DDsQF,qCCtQE,2CD+UF,qEC/UE,2CDyVF,mCCzVE,cDuWF,0HCvWE,cEkDF,6WFlDE,qBDqSF,+DCrSE,4BD4SF,kCC5SE,yBHlEJ,MGkEI,eDqdA,mBI7gBF,sBACE,WACA,eACA,mBAGF,mCACE,8CACA,gDACA,gBACA,oDAGF,wCACE","file":"dark-theme.css"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root{--cv-theme-primary: #3053f4;--cv-theme-primary-container: #ececfe;--cv-theme-on-primary: #ffffff;--cv-theme-secondary: #00233c;--cv-theme-secondary-container: #deeafa;--cv-theme-on-secondary: #ffffff;--cv-theme-on-secondary-container: #001d33;--cv-theme-tertiary: #ff5f02;--cv-theme-tertiary-container: #ffdbce;--cv-theme-on-tertiary: #ffffff;--cv-theme-on-tertiary-container: #481300;--cv-theme-surface: #f8f9fb;--cv-theme-surface-dim: #f3f5f9;--cv-theme-surface-bright: #ffffff;--cv-theme-surface-container-lowest: #ffffff;--cv-theme-surface-container-low: #f3f5f9;--cv-theme-surface-container: #eff1f7;--cv-theme-surface-container-high: #ebedf5;--cv-theme-surface-container-highest: #e6e9f3;--cv-theme-on-surface: #00233c;--cv-theme-on-surface-variant: #59627b;--cv-theme-inverse-surface: #3e4557;--cv-theme-inverse-on-surface: #f1f3f8;--cv-theme-negative: #ae1209;--cv-theme-negative-container: #ffb2ae;--cv-theme-on-negative: #ffffff;--cv-theme-on-negative-container: #110201;--cv-theme-positive: #036600;--cv-theme-positive-container: #8fcc8e;--cv-theme-on-positive: #ffffff;--cv-theme-on-positive-container: #000a00;--cv-theme-caution: #f38800;--cv-theme-caution-container: #ffcc8c;--cv-theme-on-caution: #ffffff;--cv-theme-on-caution-container: #180e00;--cv-theme-outline: #727d9c;--cv-theme-outline-variant: #d1d5e7;--cv-theme-shadow: #000000;--cv-theme-scrim: rgba(0, 0, 0, 0.32);--cv-theme-primary-fixed: #dee0ff;--cv-theme-primary-fixed-dim: #bac3ff;--cv-theme-secondary-fixed: #deeafa;--cv-theme-secondary-fixed-dim: #bcd5f6;--cv-theme-tertiary-fixed: #ffdbce;--cv-theme-tertiary-fixed-dim: #ffc0a8;--cv-theme-primary-8: rgba(48, 83, 244, 0.08);--cv-theme-primary-12: rgba(48, 83, 244, 0.12);--cv-theme-on-surface-8: rgba(0, 35, 60, 0.08);--cv-theme-on-surface-12: rgba(0, 35, 60, 0.12);--cv-theme-on-primary-container: #00115a;--cv-theme-inverse-primary: #bac3ff;--cv-theme-on-surface-38: rgba(0, 35, 60, 0.38);--cv-theme-on-surface-16: rgba(0, 35, 60, 0.16);--cv-theme-on-primary-12: rgba(255, 255, 255, 0.12);--cv-theme-on-primary-8: rgba(255, 255, 255, 0.08);--cv-theme-primary-16: rgba(48, 83, 244, 0.16);--cv-theme-on-surface-variant-8: rgba(89, 98, 123, 0.08);--cv-theme-on-tertiary-container-8: rgba(72, 19, 0, 0.08);--cv-theme-on-tertiary-container-12: rgba(72, 19, 0, 0.12);--cv-theme-on-primary-container-12: rgba(0, 17, 90, 0.12);--cv-theme-on-surface-variant-12: rgba(89, 98, 123, 0.12);--cv-theme-on-secondary-container-8: rgba(0, 29, 51, 0.08);--cv-theme-on-secondary-container-16: rgba(0, 29, 51, 0.16);--cv-theme-outline-8: rgba(114, 125, 156, 0.08);--cv-theme-outline-12: rgba(114, 125, 156, 0.12);--cv-theme-outline-16: rgba(114, 125, 156, 0.16);--cv-theme-surface-variant: #f8f9fb;--cv-theme-emphasis: #b10142;--cv-theme-emphasis-container: #e8b3c6;--cv-theme-on-emphasis: #ffffff;--cv-theme-on-emphasis-container: #120007;--cv-theme-positive-16: rgba(3, 102, 0, 0.16);--cv-theme-caution-16: rgba(243, 136, 0, 0.16);--cv-theme-negative-12: rgba(174, 18, 9, 0.12);--cv-theme-on-secondary-container-12: rgba(0, 29, 51, 0.12);--cv-theme-on-primary-16: rgba(255, 255, 255, 0.16);--cv-theme-on-primary-container-8: rgba(0, 17, 90, 0.08);--cv-theme-on-primary-container-16: rgba(0, 17, 90, 0.16);--cv-theme-on-secondary-8: rgba(255, 255, 255, 0.08);--cv-theme-on-secondary-12: rgba(255, 255, 255, 0.12);--cv-theme-on-secondary-16: rgba(255, 255, 255, 0.16);--cv-theme-on-tertiary-8: rgba(255, 255, 255, 0.08);--cv-theme-on-tertiary-12: rgba(255, 255, 255, 0.12);--cv-theme-on-tertiary-16: rgba(255, 255, 255, 0.16);--cv-theme-on-tertiary-container-16: rgba(72, 19, 0, 0.16);--cv-theme-on-surface-variant-16: rgba(89, 98, 123, 0.16);--cv-theme-negative-8: rgba(174, 18, 9, 0.08);--cv-theme-negative-16: rgba(174, 18, 9, 0.16);--cv-theme-positive-12: rgba(3, 102, 0, 0.12);--cv-theme-positive-8: rgba(3, 102, 0, 0.08);--cv-theme-on-positive-8: rgba(255, 255, 255, 0.08);--cv-theme-on-positive-12: rgba(255, 255, 255, 0.12);--cv-theme-on-positive-16: rgba(255, 255, 255, 0.16);--cv-theme-on-positive-container-8: rgba(0, 10, 0, 0.08);--cv-theme-on-positive-container-12: rgba(0, 10, 0, 0.12);--cv-theme-on-positive-container-16: rgba(0, 10, 0, 0.16);--cv-theme-caution-12: rgba(243, 136, 0, 0.12);--cv-theme-caution-8: rgba(243, 136, 0, 0.08);--cv-theme-on-caution-8: rgba(255, 255, 255, 0.08);--cv-theme-on-caution-12: rgba(255, 255, 255, 0.12);--cv-theme-on-caution-16: rgba(255, 255, 255, 0.16);--cv-theme-on-negative-8: rgba(255, 255, 255, 0.08);--cv-theme-on-negative-12: rgba(255, 255, 255, 0.12);--cv-theme-on-negative-16: rgba(255, 255, 255, 0.16);--cv-theme-on-caution-container-8: rgba(24, 14, 0, 0.08);--cv-theme-on-caution-container-12: rgba(24, 14, 0, 0.12);--cv-theme-on-caution-container-16: rgba(24, 14, 0, 0.16);--cv-theme-emphasis-8: rgba(177, 1, 66, 0.08);--cv-theme-emphasis-12: rgba(177, 1, 66, 0.12);--cv-theme-emphasis-16: rgba(177, 1, 66, 0.16);--cv-theme-on-emphasis-8: rgba(255, 255, 255, 0.08);--cv-theme-on-emphasis-12: rgba(255, 255, 255, 0.12);--cv-theme-on-emphasis-16: rgba(255, 255, 255, 0.16);--cv-theme-on-emphasis-container-8: rgba(18, 0, 7, 0.08);--cv-theme-on-emphasis-container-12: rgba(18, 0, 7, 0.12);--cv-theme-on-emphasis-container-16: rgba(24, 14, 0, 0.16);--cv-theme-inverse-on-surface-12: rgba(246, 243, 246, 0.12);--cv-theme-inverse-primary-12: rgba(186, 195, 255, 0.12);--cv-theme-inverse-on-surface-8: rgba(246, 243, 246, 0.08);--cv-theme-inverse-primary-8: rgba(186, 195, 255, 0.08);--cv-theme-inverse-primary-16: rgba(186, 195, 255, 0.16);--cv-theme-inverse-on-surface-16: rgba(246, 243, 246, 0.12);--cv-theme-on-primary-74: rgba(255, 255, 255, 0.74);--cv-theme-on-surface-74: rgba(0, 35, 60, 0.74);--cv-theme-tertiary-8: rgba(255, 95, 2, 0.08);--cv-theme-tertiary-12: rgba(255, 95, 2, 0.12);--cv-theme-tertiary-16: rgba(255, 95, 2, 0.16);--cv-theme-secondary-8: rgba(0, 35, 60, 0.08);--cv-theme-secondary-12: rgba(0, 35, 60, 0.12);--cv-theme-secondary-16: rgba(0, 35, 60, 0.16);--cv-theme-on-secondary-74: rgba(255, 255, 255, 0.74);--cv-theme-inverse-secondary: #bcd5f6;--cv-theme-inverse-secondary-8: rgba(188, 213, 246, 0.08);--cv-theme-inverse-secondary-12: rgba(188, 213, 246, 0.12);--cv-theme-inverse-secondary-16: rgba(195, 197, 221, 0.16);--cv-theme-on-tertiary-74: rgba(255, 255, 255, 0.74);--cv-theme-inverse-tertiary: #ff5f02;--cv-theme-inverse-tertiary-8: rgba(255, 95, 2, 0.08);--cv-theme-inverse-tertiary-12: rgba(255, 95, 2, 0.12);--cv-theme-inverse-tertiary-16: rgba(255, 95, 2, 0.16);--cv-theme-on-negative-container-8: rgba(17, 2, 1, 0.08);--cv-theme-on-negative-container-12: rgba(17, 2, 1, 0.12);--cv-theme-on-negative-container-16: rgba(17, 2, 1, 0.16);--cv-theme-on-surface-4: rgba(0, 35, 60, 0.04);--cv-theme-on-surface-variant-4: rgba(89, 98, 123, 0.04);--cv-theme-inverse-on-surface-4: rgba(246, 243, 246, 0.04);--cv-theme-primary-4: rgba(48, 83, 244, 0.04);--cv-theme-on-primary-4: rgba(255, 255, 255, 0.04);--cv-theme-on-primary-container-4: rgba(0, 17, 90, 0.04);--cv-theme-inverse-primary-4: rgba(186, 195, 255, 0.04);--cv-theme-secondary-4: rgba(0, 35, 60, 0.04);--cv-theme-on-secondary-4: rgba(255, 255, 255, 0.04);--cv-theme-on-secondary-container-4: rgba(0, 29, 51, 0.04);--cv-theme-inverse-secondary-4: rgba(188, 213, 246, 0.04);--cv-theme-tertiary-4: rgba(255, 95, 2, 0.04);--cv-theme-on-tertiary-4: rgba(255, 255, 255, 0.04);--cv-theme-on-tertiary-container-4: rgba(72, 19, 0, 0.04);--cv-theme-inverse-tertiary-4: rgba(255, 95, 2, 0.04);--cv-theme-negative-4: rgba(174, 18, 9, 0.04);--cv-theme-on-negative-4: rgba(255, 255, 255, 0.04);--cv-theme-on-negative-container-4: rgba(17, 2, 1, 0.04);--cv-theme-positive-4: rgba(3, 102, 0, 0.04);--cv-theme-on-positive-4: rgba(255, 255, 255, 0.04);--cv-theme-on-positive-container-4: rgba(0, 10, 0, 0.04);--cv-theme-caution-4: rgba(243, 136, 0, 0.04);--cv-theme-on-caution-4: rgba(255, 255, 255, 0.04);--cv-theme-on-caution-container-4: rgba(24, 14, 0, 0.04);--cv-theme-emphasis-4: rgba(177, 1, 66, 0.04);--cv-theme-on-emphasis-4: rgba(255, 255, 255, 0.04);--cv-theme-on-emphasis-container-4: rgba(18, 0, 7, 0.04);--cv-theme-on-surface-20: rgba(0, 35, 60, 0.2);--cv-theme-primary-20: rgba(48, 83, 244, 0.2);--cv-theme-negative-20: rgba(174, 18, 9, 0.2);--cv-theme-positive-20: rgba(3, 102, 0, 0.2);--cv-theme-caution-20: rgba(243, 136, 0, 0.2);--cv-theme-emphasis-20: rgba(177, 1, 66, 0.2);--cv-theme-primary-24: rgba(48, 83, 244, 0.24);--cv-theme-negative-24: rgba(174, 18, 9, 0.24);--cv-theme-positive-24: rgba(3, 102, 0, 0.24);--cv-theme-caution-24: rgba(243, 136, 0, 0.24);--cv-theme-emphasis-24: rgba(177, 1, 66, 0.24);--cv-theme-background: #f8f9fb;--cv-theme-surface-variant-8: rgba(248, 249, 251, 0.08);--cv-theme-surface-variant-12: rgba(248, 249, 251, 0.12);--cv-theme-surface-variant-16: rgba(253, 249, 252, 0.16);--cv-theme-logo: #ff5f02;--cv-theme-on-surface-variant-38: rgba(89, 98, 123, 0.38);--cv-theme-on-primary-38: rgba(255, 255, 255, 0.38);--cv-theme-on-secondary-38: rgba(255, 255, 255, 0.38);--cv-theme-on-secondary-container-38: rgba(0, 29, 51, 0.38);--cv-theme-on-secondary-container-74: rgba(0, 29, 51, 0.74);--cv-theme-on-tertiary-38: rgba(255, 255, 255, 0.38);--cv-theme-on-tertiary-container-38: rgba(72, 19, 0, 0.38);--cv-theme-on-tertiary-container-74: rgba(72, 19, 0, 0.74);--cv-theme-inverse-tertiary-38: rgba(255, 95, 2, 0.38);--cv-theme-inverse-tertiary-74: rgba(255, 95, 2, 0.74);--cv-theme-negative-38: rgba(174, 18, 9, 0.38);--cv-theme-negative-74: rgba(174, 18, 9, 0.74);--cv-theme-on-negative-38: rgba(255, 255, 255, 0.38);--cv-theme-on-negative-74: rgba(255, 255, 255, 0.74);--cv-theme-on-negative-container-38: rgba(17, 2, 1, 0.38);--cv-theme-on-negative-container-74: rgba(17, 2, 1, 0.74);--cv-theme-positive-38: rgba(3, 102, 0, 0.38);--cv-theme-positive-74: rgba(3, 102, 0, 0.74);--cv-theme-on-positive-38: rgba(255, 255, 255, 0.38);--cv-theme-on-positive-74: rgba(255, 255, 255, 0.74);--cv-theme-on-positive-container-38: rgba(0, 10, 0, 0.38);--cv-theme-on-positive-container-74: rgba(0, 10, 0, 0.74);--cv-theme-caution-38: rgba(243, 136, 0, 0.38);--cv-theme-caution-74: rgba(243, 136, 0, 0.74);--cv-theme-on-caution-38: rgba(255, 255, 255, 0.38);--cv-theme-on-caution-74: rgba(255, 255, 255, 0.74);--cv-theme-on-caution-container-38: rgba(24, 14, 0, 0.38);--cv-theme-on-caution-container-74: rgba(24, 14, 0, 0.74);--cv-theme-emphasis-38: rgba(177, 1, 66, 0.38);--cv-theme-emphasis-74: rgba(177, 1, 66, 0.74);--cv-theme-on-emphasis-38: rgba(255, 255, 255, 0.38);--cv-theme-on-emphasis-74: rgba(255, 255, 255, 0.74);--cv-theme-on-emphasis-container-38: rgba(24, 14, 0, 0.38);--cv-theme-on-emphasis-container-74: rgba(24, 14, 0, 0.74);--cv-theme-on-primary-container-38: rgba(0, 17, 90, 0.38);--cv-theme-on-primary-container-74: rgba(0, 17, 90, 0.74);--cv-theme-primary-38: rgba(48, 83, 244, 0.38);--cv-theme-primary-74: rgba(48, 83, 244, 0.74);--cv-theme-brand: #ff5f02;--cv-theme-code-snippet-color: #383a42;--cv-theme-code-snippet-comment: #6c6c6c;--cv-theme-code-snippet-keyword: #a626a4;--cv-theme-code-snippet-selector: #ad0f00;--cv-theme-code-snippet-literal: #17749b;--cv-theme-code-snippet-string: #0a7c08;--cv-theme-code-snippet-variable: #8e6102;--cv-theme-code-snippet-title: #004ffd;--cv-theme-code-snippet-class: #6a6c02;--cv-theme-error: #ae1209;--cv-theme-on-background: #00233c;--cv-theme-on-error: #ffffff;--cv-theme-divider: #d1d5e7;--cv-theme-accent: #3053f4;--cv-theme-surface-canvas: #ffffff;--cv-theme-surface-primary: #ececfe;--cv-theme-surface-primary-highlight: rgba(48, 83, 244, 0.08);--cv-theme-surface-primary-highlight-hover: rgba(48, 83, 244, 0.08);--cv-theme-surface-accent: #ececfe;--cv-theme-surface-accent-highlight: rgba(48, 83, 244, 0.08);--cv-theme-surface-accent-highlight-hover: rgba(48, 83, 244, 0.12);--cv-theme-surface-secondary: #deeafa;--cv-theme-surface-secondary-highlight: rgba(0, 35, 60, 0.08);--cv-theme-surface-secondary-highlight-hover: rgba(0, 35, 60, 0.08);--cv-theme-surface-positive: #8fcc8e;--cv-theme-surface-positive-highlight: rgba(3, 102, 0, 0.08);--cv-theme-surface-positive-highlight-hover: rgba(3, 102, 0, 0.08);--cv-theme-surface-caution: #ffcc8c;--cv-theme-surface-caution-highlight: rgba(243, 136, 0, 0.08);--cv-theme-surface-caution-highlight-hover: rgba(243, 136, 0, 0.08);--cv-theme-surface-negative: #ffb2ae;--cv-theme-surface-negative-highlight: rgba(174, 18, 9, 0.08);--cv-theme-surface-negative-highlight-hover: rgba(174, 18, 9, 0.08);--cv-theme-surface-neutral: #f3f5f9;--cv-theme-surface-neutral-highlight: rgba(243, 245, 249, 0.04);--cv-theme-surface-neutral-highlight-hover: rgba(243, 245, 249, 0.08);--cv-theme-surface-emphasis: #e8b3c6;--cv-theme-surface-emphasis-highlight: rgba(177, 1, 66, 0.08);--cv-theme-surface-emphasis-highlight-hover: rgba(177, 1, 66, 0.08);--cv-theme-text-primary-on-background: #00233c;--cv-theme-text-secondary-on-background: #59627b;--cv-theme-text-hint-on-background: #59627b;--cv-theme-text-disabled-on-background: rgba(0, 35, 60, 0.38);--cv-theme-text-icon-on-background: #59627b;--cv-theme-text-logo-on-background: #ff5f02;--cv-theme-text-primary-on-light: #00233c;--cv-theme-text-secondary-on-light: #59627b;--cv-theme-text-hint-on-light: #59627b;--cv-theme-text-disabled-on-light: rgba(0, 35, 60, 0.38);--cv-theme-text-icon-on-light: #59627b;--cv-theme-text-primary-on-dark: #ebe8ec;--cv-theme-text-secondary-on-dark: #d5d3d8;--cv-theme-text-hint-on-dark: #d5d3d8;--cv-theme-text-disabled-on-dark: rgba(235, 232, 236, 0.38);--cv-theme-text-icon-on-dark: #d5d3d8;--cv-typography-font-family: Inter, Arial, sans-serif;--cv-typography-headline1-font-family: Inter, Arial, sans-serif;--cv-typography-headline1-font-size: 96px;--cv-typography-headline1-font-weight: 300;--cv-typography-headline1-line-height: 112px;--cv-typography-headline1-letter-spacing: -1.5px;--cv-typography-headline2-font-family: Inter, Arial, sans-serif;--cv-typography-headline2-font-size: 60px;--cv-typography-headline2-font-weight: 300;--cv-typography-headline2-line-height: 72px;--cv-typography-headline2-letter-spacing: -0.5px;--cv-typography-headline3-font-family: Inter, Arial, sans-serif;--cv-typography-headline3-font-size: 48px;--cv-typography-headline3-font-weight: 400;--cv-typography-headline3-line-height: 56px;--cv-typography-headline3-letter-spacing: 0px;--cv-typography-headline4-font-family: Inter, Arial, sans-serif;--cv-typography-headline4-font-size: 34px;--cv-typography-headline4-font-weight: 400;--cv-typography-headline4-line-height: 42px;--cv-typography-headline4-letter-spacing: 0px;--cv-typography-headline5-font-family: Inter, Arial, sans-serif;--cv-typography-headline5-font-size: 24px;--cv-typography-headline5-font-weight: 400;--cv-typography-headline5-line-height: 36px;--cv-typography-headline5-letter-spacing: 0.18px;--cv-typography-headline6-font-family: Inter, Arial, sans-serif;--cv-typography-headline6-font-size: 20px;--cv-typography-headline6-font-weight: 500;--cv-typography-headline6-line-height: 24px;--cv-typography-headline6-letter-spacing: 0.15px;--cv-typography-subtitle1-font-family: Inter, Arial, sans-serif;--cv-typography-subtitle1-font-size: 16px;--cv-typography-subtitle1-font-weight: 500;--cv-typography-subtitle1-line-height: 28px;--cv-typography-subtitle1-letter-spacing: 0.15px;--cv-typography-subtitle2-font-family: Inter, Arial, sans-serif;--cv-typography-subtitle2-font-size: 14px;--cv-typography-subtitle2-font-weight: 500;--cv-typography-subtitle2-line-height: 22px;--cv-typography-subtitle2-letter-spacing: 0.1px;--cv-typography-body1-font-family: Inter, Arial, sans-serif;--cv-typography-body1-font-size: 16px;--cv-typography-body1-font-weight: 400;--cv-typography-body1-line-height: 24px;--cv-typography-body1-letter-spacing: 0px;--cv-typography-body2-font-family: Inter, Arial, sans-serif;--cv-typography-body2-font-size: 14px;--cv-typography-body2-font-weight: 400;--cv-typography-body2-line-height: 20px;--cv-typography-body2-letter-spacing: 0px;--cv-typography-button-font-family: Inter, Arial, sans-serif;--cv-typography-button-font-size: 14px;--cv-typography-button-font-weight: 500;--cv-typography-button-line-height: 16px;--cv-typography-button-letter-spacing: 0px;--cv-typography-caption-font-family: Inter, Arial, sans-serif;--cv-typography-caption-font-size: 12px;--cv-typography-caption-font-weight: 400;--cv-typography-caption-line-height: 16px;--cv-typography-caption-letter-spacing: 0px;--cv-typography-code-font-family: Roboto Mono, monospace;--cv-typography-code-font-size: 12px;--cv-typography-code-font-weight: 400;--cv-typography-code-line-height: 20px;--cv-typography-code-letter-spacing: 0px;--mdc-theme-primary: #3053f4;--mdc-theme-primary-container: #ececfe;--mdc-theme-on-primary: #ffffff;--mdc-theme-secondary: #00233c;--mdc-theme-secondary-container: #deeafa;--mdc-theme-on-secondary: #ffffff;--mdc-theme-on-secondary-container: #001d33;--mdc-theme-tertiary: #ff5f02;--mdc-theme-tertiary-container: #ffdbce;--mdc-theme-on-tertiary: #ffffff;--mdc-theme-on-tertiary-container: #481300;--mdc-theme-surface: #f8f9fb;--mdc-theme-surface-dim: #f3f5f9;--mdc-theme-surface-bright: #ffffff;--mdc-theme-surface-container-lowest: #ffffff;--mdc-theme-surface-container-low: #f3f5f9;--mdc-theme-surface-container: #eff1f7;--mdc-theme-surface-container-high: #ebedf5;--mdc-theme-surface-container-highest: #e6e9f3;--mdc-theme-on-surface: #00233c;--mdc-theme-on-surface-variant: #59627b;--mdc-theme-inverse-surface: #3e4557;--mdc-theme-inverse-on-surface: #f1f3f8;--mdc-theme-negative: #ae1209;--mdc-theme-negative-container: #ffb2ae;--mdc-theme-on-negative: #ffffff;--mdc-theme-on-negative-container: #110201;--mdc-theme-positive: #036600;--mdc-theme-positive-container: #8fcc8e;--mdc-theme-on-positive: #ffffff;--mdc-theme-on-positive-container: #000a00;--mdc-theme-caution: #f38800;--mdc-theme-caution-container: #ffcc8c;--mdc-theme-on-caution: #ffffff;--mdc-theme-on-caution-container: #180e00;--mdc-theme-outline: #727d9c;--mdc-theme-outline-variant: #d1d5e7;--mdc-theme-shadow: #000000;--mdc-theme-scrim: rgba(0, 0, 0, 0.32);--mdc-theme-primary-fixed: #dee0ff;--mdc-theme-primary-fixed-dim: #bac3ff;--mdc-theme-secondary-fixed: #deeafa;--mdc-theme-secondary-fixed-dim: #bcd5f6;--mdc-theme-tertiary-fixed: #ffdbce;--mdc-theme-tertiary-fixed-dim: #ffc0a8;--mdc-theme-primary-8: rgba(48, 83, 244, 0.08);--mdc-theme-primary-12: rgba(48, 83, 244, 0.12);--mdc-theme-on-surface-8: rgba(0, 35, 60, 0.08);--mdc-theme-on-surface-12: rgba(0, 35, 60, 0.12);--mdc-theme-on-primary-container: #00115a;--mdc-theme-inverse-primary: #bac3ff;--mdc-theme-on-surface-38: rgba(0, 35, 60, 0.38);--mdc-theme-on-surface-16: rgba(0, 35, 60, 0.16);--mdc-theme-on-primary-12: rgba(255, 255, 255, 0.12);--mdc-theme-on-primary-8: rgba(255, 255, 255, 0.08);--mdc-theme-primary-16: rgba(48, 83, 244, 0.16);--mdc-theme-on-surface-variant-8: rgba(89, 98, 123, 0.08);--mdc-theme-on-tertiary-container-8: rgba(72, 19, 0, 0.08);--mdc-theme-on-tertiary-container-12: rgba(72, 19, 0, 0.12);--mdc-theme-on-primary-container-12: rgba(0, 17, 90, 0.12);--mdc-theme-on-surface-variant-12: rgba(89, 98, 123, 0.12);--mdc-theme-on-secondary-container-8: rgba(0, 29, 51, 0.08);--mdc-theme-on-secondary-container-16: rgba(0, 29, 51, 0.16);--mdc-theme-outline-8: rgba(114, 125, 156, 0.08);--mdc-theme-outline-12: rgba(114, 125, 156, 0.12);--mdc-theme-outline-16: rgba(114, 125, 156, 0.16);--mdc-theme-surface-variant: #f8f9fb;--mdc-theme-emphasis: #b10142;--mdc-theme-emphasis-container: #e8b3c6;--mdc-theme-on-emphasis: #ffffff;--mdc-theme-on-emphasis-container: #120007;--mdc-theme-positive-16: rgba(3, 102, 0, 0.16);--mdc-theme-caution-16: rgba(243, 136, 0, 0.16);--mdc-theme-negative-12: rgba(174, 18, 9, 0.12);--mdc-theme-on-secondary-container-12: rgba(0, 29, 51, 0.12);--mdc-theme-on-primary-16: rgba(255, 255, 255, 0.16);--mdc-theme-on-primary-container-8: rgba(0, 17, 90, 0.08);--mdc-theme-on-primary-container-16: rgba(0, 17, 90, 0.16);--mdc-theme-on-secondary-8: rgba(255, 255, 255, 0.08);--mdc-theme-on-secondary-12: rgba(255, 255, 255, 0.12);--mdc-theme-on-secondary-16: rgba(255, 255, 255, 0.16);--mdc-theme-on-tertiary-8: rgba(255, 255, 255, 0.08);--mdc-theme-on-tertiary-12: rgba(255, 255, 255, 0.12);--mdc-theme-on-tertiary-16: rgba(255, 255, 255, 0.16);--mdc-theme-on-tertiary-container-16: rgba(72, 19, 0, 0.16);--mdc-theme-on-surface-variant-16: rgba(89, 98, 123, 0.16);--mdc-theme-negative-8: rgba(174, 18, 9, 0.08);--mdc-theme-negative-16: rgba(174, 18, 9, 0.16);--mdc-theme-positive-12: rgba(3, 102, 0, 0.12);--mdc-theme-positive-8: rgba(3, 102, 0, 0.08);--mdc-theme-on-positive-8: rgba(255, 255, 255, 0.08);--mdc-theme-on-positive-12: rgba(255, 255, 255, 0.12);--mdc-theme-on-positive-16: rgba(255, 255, 255, 0.16);--mdc-theme-on-positive-container-8: rgba(0, 10, 0, 0.08);--mdc-theme-on-positive-container-12: rgba(0, 10, 0, 0.12);--mdc-theme-on-positive-container-16: rgba(0, 10, 0, 0.16);--mdc-theme-caution-12: rgba(243, 136, 0, 0.12);--mdc-theme-caution-8: rgba(243, 136, 0, 0.08);--mdc-theme-on-caution-8: rgba(255, 255, 255, 0.08);--mdc-theme-on-caution-12: rgba(255, 255, 255, 0.12);--mdc-theme-on-caution-16: rgba(255, 255, 255, 0.16);--mdc-theme-on-negative-8: rgba(255, 255, 255, 0.08);--mdc-theme-on-negative-12: rgba(255, 255, 255, 0.12);--mdc-theme-on-negative-16: rgba(255, 255, 255, 0.16);--mdc-theme-on-caution-container-8: rgba(24, 14, 0, 0.08);--mdc-theme-on-caution-container-12: rgba(24, 14, 0, 0.12);--mdc-theme-on-caution-container-16: rgba(24, 14, 0, 0.16);--mdc-theme-emphasis-8: rgba(177, 1, 66, 0.08);--mdc-theme-emphasis-12: rgba(177, 1, 66, 0.12);--mdc-theme-emphasis-16: rgba(177, 1, 66, 0.16);--mdc-theme-on-emphasis-8: rgba(255, 255, 255, 0.08);--mdc-theme-on-emphasis-12: rgba(255, 255, 255, 0.12);--mdc-theme-on-emphasis-16: rgba(255, 255, 255, 0.16);--mdc-theme-on-emphasis-container-8: rgba(18, 0, 7, 0.08);--mdc-theme-on-emphasis-container-12: rgba(18, 0, 7, 0.12);--mdc-theme-on-emphasis-container-16: rgba(24, 14, 0, 0.16);--mdc-theme-inverse-on-surface-12: rgba(246, 243, 246, 0.12);--mdc-theme-inverse-primary-12: rgba(186, 195, 255, 0.12);--mdc-theme-inverse-on-surface-8: rgba(246, 243, 246, 0.08);--mdc-theme-inverse-primary-8: rgba(186, 195, 255, 0.08);--mdc-theme-inverse-primary-16: rgba(186, 195, 255, 0.16);--mdc-theme-inverse-on-surface-16: rgba(246, 243, 246, 0.12);--mdc-theme-on-primary-74: rgba(255, 255, 255, 0.74);--mdc-theme-on-surface-74: rgba(0, 35, 60, 0.74);--mdc-theme-tertiary-8: rgba(255, 95, 2, 0.08);--mdc-theme-tertiary-12: rgba(255, 95, 2, 0.12);--mdc-theme-tertiary-16: rgba(255, 95, 2, 0.16);--mdc-theme-secondary-8: rgba(0, 35, 60, 0.08);--mdc-theme-secondary-12: rgba(0, 35, 60, 0.12);--mdc-theme-secondary-16: rgba(0, 35, 60, 0.16);--mdc-theme-on-secondary-74: rgba(255, 255, 255, 0.74);--mdc-theme-inverse-secondary: #bcd5f6;--mdc-theme-inverse-secondary-8: rgba(188, 213, 246, 0.08);--mdc-theme-inverse-secondary-12: rgba(188, 213, 246, 0.12);--mdc-theme-inverse-secondary-16: rgba(195, 197, 221, 0.16);--mdc-theme-on-tertiary-74: rgba(255, 255, 255, 0.74);--mdc-theme-inverse-tertiary: #ff5f02;--mdc-theme-inverse-tertiary-8: rgba(255, 95, 2, 0.08);--mdc-theme-inverse-tertiary-12: rgba(255, 95, 2, 0.12);--mdc-theme-inverse-tertiary-16: rgba(255, 95, 2, 0.16);--mdc-theme-on-negative-container-8: rgba(17, 2, 1, 0.08);--mdc-theme-on-negative-container-12: rgba(17, 2, 1, 0.12);--mdc-theme-on-negative-container-16: rgba(17, 2, 1, 0.16);--mdc-theme-on-surface-4: rgba(0, 35, 60, 0.04);--mdc-theme-on-surface-variant-4: rgba(89, 98, 123, 0.04);--mdc-theme-inverse-on-surface-4: rgba(246, 243, 246, 0.04);--mdc-theme-primary-4: rgba(48, 83, 244, 0.04);--mdc-theme-on-primary-4: rgba(255, 255, 255, 0.04);--mdc-theme-on-primary-container-4: rgba(0, 17, 90, 0.04);--mdc-theme-inverse-primary-4: rgba(186, 195, 255, 0.04);--mdc-theme-secondary-4: rgba(0, 35, 60, 0.04);--mdc-theme-on-secondary-4: rgba(255, 255, 255, 0.04);--mdc-theme-on-secondary-container-4: rgba(0, 29, 51, 0.04);--mdc-theme-inverse-secondary-4: rgba(188, 213, 246, 0.04);--mdc-theme-tertiary-4: rgba(255, 95, 2, 0.04);--mdc-theme-on-tertiary-4: rgba(255, 255, 255, 0.04);--mdc-theme-on-tertiary-container-4: rgba(72, 19, 0, 0.04);--mdc-theme-inverse-tertiary-4: rgba(255, 95, 2, 0.04);--mdc-theme-negative-4: rgba(174, 18, 9, 0.04);--mdc-theme-on-negative-4: rgba(255, 255, 255, 0.04);--mdc-theme-on-negative-container-4: rgba(17, 2, 1, 0.04);--mdc-theme-positive-4: rgba(3, 102, 0, 0.04);--mdc-theme-on-positive-4: rgba(255, 255, 255, 0.04);--mdc-theme-on-positive-container-4: rgba(0, 10, 0, 0.04);--mdc-theme-caution-4: rgba(243, 136, 0, 0.04);--mdc-theme-on-caution-4: rgba(255, 255, 255, 0.04);--mdc-theme-on-caution-container-4: rgba(24, 14, 0, 0.04);--mdc-theme-emphasis-4: rgba(177, 1, 66, 0.04);--mdc-theme-on-emphasis-4: rgba(255, 255, 255, 0.04);--mdc-theme-on-emphasis-container-4: rgba(18, 0, 7, 0.04);--mdc-theme-on-surface-20: rgba(0, 35, 60, 0.2);--mdc-theme-primary-20: rgba(48, 83, 244, 0.2);--mdc-theme-negative-20: rgba(174, 18, 9, 0.2);--mdc-theme-positive-20: rgba(3, 102, 0, 0.2);--mdc-theme-caution-20: rgba(243, 136, 0, 0.2);--mdc-theme-emphasis-20: rgba(177, 1, 66, 0.2);--mdc-theme-primary-24: rgba(48, 83, 244, 0.24);--mdc-theme-negative-24: rgba(174, 18, 9, 0.24);--mdc-theme-positive-24: rgba(3, 102, 0, 0.24);--mdc-theme-caution-24: rgba(243, 136, 0, 0.24);--mdc-theme-emphasis-24: rgba(177, 1, 66, 0.24);--mdc-theme-background: #f8f9fb;--mdc-theme-surface-variant-8: rgba(248, 249, 251, 0.08);--mdc-theme-surface-variant-12: rgba(248, 249, 251, 0.12);--mdc-theme-surface-variant-16: rgba(253, 249, 252, 0.16);--mdc-theme-logo: #ff5f02;--mdc-theme-on-surface-variant-38: rgba(89, 98, 123, 0.38);--mdc-theme-on-primary-38: rgba(255, 255, 255, 0.38);--mdc-theme-on-secondary-38: rgba(255, 255, 255, 0.38);--mdc-theme-on-secondary-container-38: rgba(0, 29, 51, 0.38);--mdc-theme-on-secondary-container-74: rgba(0, 29, 51, 0.74);--mdc-theme-on-tertiary-38: rgba(255, 255, 255, 0.38);--mdc-theme-on-tertiary-container-38: rgba(72, 19, 0, 0.38);--mdc-theme-on-tertiary-container-74: rgba(72, 19, 0, 0.74);--mdc-theme-inverse-tertiary-38: rgba(255, 95, 2, 0.38);--mdc-theme-inverse-tertiary-74: rgba(255, 95, 2, 0.74);--mdc-theme-negative-38: rgba(174, 18, 9, 0.38);--mdc-theme-negative-74: rgba(174, 18, 9, 0.74);--mdc-theme-on-negative-38: rgba(255, 255, 255, 0.38);--mdc-theme-on-negative-74: rgba(255, 255, 255, 0.74);--mdc-theme-on-negative-container-38: rgba(17, 2, 1, 0.38);--mdc-theme-on-negative-container-74: rgba(17, 2, 1, 0.74);--mdc-theme-positive-38: rgba(3, 102, 0, 0.38);--mdc-theme-positive-74: rgba(3, 102, 0, 0.74);--mdc-theme-on-positive-38: rgba(255, 255, 255, 0.38);--mdc-theme-on-positive-74: rgba(255, 255, 255, 0.74);--mdc-theme-on-positive-container-38: rgba(0, 10, 0, 0.38);--mdc-theme-on-positive-container-74: rgba(0, 10, 0, 0.74);--mdc-theme-caution-38: rgba(243, 136, 0, 0.38);--mdc-theme-caution-74: rgba(243, 136, 0, 0.74);--mdc-theme-on-caution-38: rgba(255, 255, 255, 0.38);--mdc-theme-on-caution-74: rgba(255, 255, 255, 0.74);--mdc-theme-on-caution-container-38: rgba(24, 14, 0, 0.38);--mdc-theme-on-caution-container-74: rgba(24, 14, 0, 0.74);--mdc-theme-emphasis-38: rgba(177, 1, 66, 0.38);--mdc-theme-emphasis-74: rgba(177, 1, 66, 0.74);--mdc-theme-on-emphasis-38: rgba(255, 255, 255, 0.38);--mdc-theme-on-emphasis-74: rgba(255, 255, 255, 0.74);--mdc-theme-on-emphasis-container-38: rgba(24, 14, 0, 0.38);--mdc-theme-on-emphasis-container-74: rgba(24, 14, 0, 0.74);--mdc-theme-on-primary-container-38: rgba(0, 17, 90, 0.38);--mdc-theme-on-primary-container-74: rgba(0, 17, 90, 0.74);--mdc-theme-primary-38: rgba(48, 83, 244, 0.38);--mdc-theme-primary-74: rgba(48, 83, 244, 0.74);--mdc-theme-brand: #ff5f02;--mdc-theme-code-snippet-color: #383a42;--mdc-theme-code-snippet-comment: #6c6c6c;--mdc-theme-code-snippet-keyword: #a626a4;--mdc-theme-code-snippet-selector: #ad0f00;--mdc-theme-code-snippet-literal: #17749b;--mdc-theme-code-snippet-string: #0a7c08;--mdc-theme-code-snippet-variable: #8e6102;--mdc-theme-code-snippet-title: #004ffd;--mdc-theme-code-snippet-class: #6a6c02;--mdc-theme-error: #ae1209;--mdc-theme-on-background: #00233c;--mdc-theme-on-error: #ffffff;--mdc-theme-divider: #d1d5e7;--mdc-theme-accent: #3053f4;--mdc-theme-surface-canvas: #ffffff;--mdc-theme-surface-primary: #ececfe;--mdc-theme-surface-primary-highlight: rgba(48, 83, 244, 0.08);--mdc-theme-surface-primary-highlight-hover: rgba(48, 83, 244, 0.08);--mdc-theme-surface-accent: #ececfe;--mdc-theme-surface-accent-highlight: rgba(48, 83, 244, 0.08);--mdc-theme-surface-accent-highlight-hover: rgba(48, 83, 244, 0.12);--mdc-theme-surface-secondary: #deeafa;--mdc-theme-surface-secondary-highlight: rgba(0, 35, 60, 0.08);--mdc-theme-surface-secondary-highlight-hover: rgba(0, 35, 60, 0.08);--mdc-theme-surface-positive: #8fcc8e;--mdc-theme-surface-positive-highlight: rgba(3, 102, 0, 0.08);--mdc-theme-surface-positive-highlight-hover: rgba(3, 102, 0, 0.08);--mdc-theme-surface-caution: #ffcc8c;--mdc-theme-surface-caution-highlight: rgba(243, 136, 0, 0.08);--mdc-theme-surface-caution-highlight-hover: rgba(243, 136, 0, 0.08);--mdc-theme-surface-negative: #ffb2ae;--mdc-theme-surface-negative-highlight: rgba(174, 18, 9, 0.08);--mdc-theme-surface-negative-highlight-hover: rgba(174, 18, 9, 0.08);--mdc-theme-surface-neutral: #f3f5f9;--mdc-theme-surface-neutral-highlight: rgba(243, 245, 249, 0.04);--mdc-theme-surface-neutral-highlight-hover: rgba(243, 245, 249, 0.08);--mdc-theme-surface-emphasis: #e8b3c6;--mdc-theme-surface-emphasis-highlight: rgba(177, 1, 66, 0.08);--mdc-theme-surface-emphasis-highlight-hover: rgba(177, 1, 66, 0.08);--mdc-theme-text-primary-on-background: #00233c;--mdc-theme-text-secondary-on-background: #59627b;--mdc-theme-text-hint-on-background: #59627b;--mdc-theme-text-disabled-on-background: rgba(0, 35, 60, 0.38);--mdc-theme-text-icon-on-background: #59627b;--mdc-theme-text-logo-on-background: #ff5f02;--mdc-theme-text-primary-on-light: #00233c;--mdc-theme-text-secondary-on-light: #59627b;--mdc-theme-text-hint-on-light: #59627b;--mdc-theme-text-disabled-on-light: rgba(0, 35, 60, 0.38);--mdc-theme-text-icon-on-light: #59627b;--mdc-theme-text-primary-on-dark: #ebe8ec;--mdc-theme-text-secondary-on-dark: #d5d3d8;--mdc-theme-text-hint-on-dark: #d5d3d8;--mdc-theme-text-disabled-on-dark: rgba(235, 232, 236, 0.38);--mdc-theme-text-icon-on-dark: #d5d3d8;--mdc-typography-font-family: Inter, Arial, sans-serif;--mdc-typography-headline1-font-family: Inter, Arial, sans-serif;--mdc-typography-headline1-font-size: 96px;--mdc-typography-headline1-font-weight: 300;--mdc-typography-headline1-line-height: 112px;--mdc-typography-headline1-letter-spacing: -1.5px;--mdc-typography-headline2-font-family: Inter, Arial, sans-serif;--mdc-typography-headline2-font-size: 60px;--mdc-typography-headline2-font-weight: 300;--mdc-typography-headline2-line-height: 72px;--mdc-typography-headline2-letter-spacing: -0.5px;--mdc-typography-headline3-font-family: Inter, Arial, sans-serif;--mdc-typography-headline3-font-size: 48px;--mdc-typography-headline3-font-weight: 400;--mdc-typography-headline3-line-height: 56px;--mdc-typography-headline3-letter-spacing: 0px;--mdc-typography-headline4-font-family: Inter, Arial, sans-serif;--mdc-typography-headline4-font-size: 34px;--mdc-typography-headline4-font-weight: 400;--mdc-typography-headline4-line-height: 42px;--mdc-typography-headline4-letter-spacing: 0px;--mdc-typography-headline5-font-family: Inter, Arial, sans-serif;--mdc-typography-headline5-font-size: 24px;--mdc-typography-headline5-font-weight: 400;--mdc-typography-headline5-line-height: 36px;--mdc-typography-headline5-letter-spacing: 0.18px;--mdc-typography-headline6-font-family: Inter, Arial, sans-serif;--mdc-typography-headline6-font-size: 20px;--mdc-typography-headline6-font-weight: 500;--mdc-typography-headline6-line-height: 24px;--mdc-typography-headline6-letter-spacing: 0.15px;--mdc-typography-subtitle1-font-family: Inter, Arial, sans-serif;--mdc-typography-subtitle1-font-size: 16px;--mdc-typography-subtitle1-font-weight: 500;--mdc-typography-subtitle1-line-height: 28px;--mdc-typography-subtitle1-letter-spacing: 0.15px;--mdc-typography-subtitle2-font-family: Inter, Arial, sans-serif;--mdc-typography-subtitle2-font-size: 14px;--mdc-typography-subtitle2-font-weight: 500;--mdc-typography-subtitle2-line-height: 22px;--mdc-typography-subtitle2-letter-spacing: 0.1px;--mdc-typography-body1-font-family: Inter, Arial, sans-serif;--mdc-typography-body1-font-size: 16px;--mdc-typography-body1-font-weight: 400;--mdc-typography-body1-line-height: 24px;--mdc-typography-body1-letter-spacing: 0px;--mdc-typography-body2-font-family: Inter, Arial, sans-serif;--mdc-typography-body2-font-size: 14px;--mdc-typography-body2-font-weight: 400;--mdc-typography-body2-line-height: 20px;--mdc-typography-body2-letter-spacing: 0px;--mdc-typography-button-font-family: Inter, Arial, sans-serif;--mdc-typography-button-font-size: 14px;--mdc-typography-button-font-weight: 500;--mdc-typography-button-line-height: 16px;--mdc-typography-button-letter-spacing: 0px;--mdc-typography-caption-font-family: Inter, Arial, sans-serif;--mdc-typography-caption-font-size: 12px;--mdc-typography-caption-font-weight: 400;--mdc-typography-caption-line-height: 16px;--mdc-typography-caption-letter-spacing: 0px;--mdc-typography-code-font-family: Roboto Mono, monospace;--mdc-typography-code-font-size: 12px;--mdc-typography-code-font-weight: 400;--mdc-typography-code-line-height: 20px;--mdc-typography-code-letter-spacing: 0px;--mdc-theme-border: #d1d5e7;--mdc-theme-surface-accent: #ececfe;--mdc-theme-surface-accent-highlight: rgba(48, 83, 244, 0.08);--mdc-theme-surface-accent-highlight-hover: rgba(48, 83, 244, 0.08);--mdc-typography-button-letter-spacing: 0;--mdc-icon-font: 'Material Symbols Outlined';--mdc-ripple-color: #00233c;--mdc-shape-small: 8px;--mdc-shape-medium: 8px;--mdc-plain-tooltip-container-color: #3e4557;--mdc-plain-tooltip-supporting-text-color: #f1f3f8}:root .mdc-data-table__sort-icon-button{color:#59627b}:root .mdc-data-table__sort-icon-button .mdc-icon-button__ripple::before,:root .mdc-data-table__sort-icon-button .mdc-icon-button__ripple::after{background-color:#59627b;background-color:var(--mdc-ripple-color, #59627b)}:root .mdc-data-table__sort-icon-button:hover .mdc-icon-button__ripple::before,:root .mdc-data-table__sort-icon-button.mdc-ripple-surface--hover .mdc-icon-button__ripple::before{opacity:0.04;opacity:var(--mdc-ripple-hover-opacity, 0.04)}:root .mdc-data-table__sort-icon-button.mdc-ripple-upgraded--background-focused .mdc-icon-button__ripple::before,:root .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded):focus .mdc-icon-button__ripple::before{transition-duration:75ms;opacity:0.12;opacity:var(--mdc-ripple-focus-opacity, 0.12)}:root .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded) .mdc-icon-button__ripple::after{transition:opacity 150ms linear}:root .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded):active .mdc-icon-button__ripple::after{transition-duration:75ms;opacity:0.12;opacity:var(--mdc-ripple-press-opacity, 0.12)}:root .mdc-data-table__sort-icon-button.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-ripple-press-opacity, 0.12)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button{color:#59627b}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button .mdc-icon-button__ripple::before,:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button .mdc-icon-button__ripple::after{background-color:#59627b;background-color:var(--mdc-ripple-color, #59627b)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button:hover .mdc-icon-button__ripple::before,:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button.mdc-ripple-surface--hover .mdc-icon-button__ripple::before{opacity:0.04;opacity:var(--mdc-ripple-hover-opacity, 0.04)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button.mdc-ripple-upgraded--background-focused .mdc-icon-button__ripple::before,:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded):focus .mdc-icon-button__ripple::before{transition-duration:75ms;opacity:0.12;opacity:var(--mdc-ripple-focus-opacity, 0.12)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded) .mdc-icon-button__ripple::after{transition:opacity 150ms linear}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded):active .mdc-icon-button__ripple::after{transition-duration:75ms;opacity:0.12;opacity:var(--mdc-ripple-press-opacity, 0.12)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-ripple-press-opacity, 0.12)}:root .mdc-data-table__row--selected{background-color:rgba(243, 245, 249, 0.04)}:root .mdc-data-table__row:not(.mdc-data-table__row--selected):hover{background-color:rgba(243, 245, 249, 0.08)}:root .mdc-data-table__header-cell{color:#00233c}:root .mdc-data-table__pagination-total,:root .mdc-data-table__pagination-rows-per-page-label,:root .mdc-data-table__cell{color:#00233c}:root .mdc-data-table__pagination-rows-per-page-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__leading,:root .mdc-data-table__pagination-rows-per-page-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__notch,:root .mdc-data-table__pagination-rows-per-page-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__trailing{border-color:#d1d5e7}:root .mdc-data-table__cell,:root .mdc-data-table__header-cell{border-bottom-color:#d1d5e7}:root .mdc-data-table__pagination{border-top-color:#d1d5e7}:root{border-width:0;border-style:solid}:root .mdc-data-table{width:100%;border-width:0;white-space:normal}:root .mdc-data-table__header-cell{font-family:var(--mdc-typography-font-family);font-size:var(--mdc-typography-body2-font-size);font-weight:600;line-height:var(--mdc-typography-body2-line-height)}:root .mdc-data-table__sort-icon-button{font-size:1rem}/*# sourceMappingURL=light-theme.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../../../../libs/components/src/theme/prebuilt/light-theme.scss","../../../../../libs/components/src/theme/_index.scss","../../../../../node_modules/@material/data-table/_data-table-theme.scss","../../../../../node_modules/@material/theme/_css.scss","../../../../../node_modules/@material/ripple/_ripple-theme.scss","../../../../../node_modules/@material/notched-outline/_mixins.scss","../../../../../libs/components/src/data-table/_data-table.theme.scss"],"names":[],"mappings":"AAYA,MCVI,srhCAeF,4BACA,oCACA,8DAIA,oEAIA,0CAGA,6CAGA,4BAGA,uBACA,wBAGA,6CACA,mDC4PA,wCCvNE,cC8EA,iJD1FE,yBAYF,kDCyfF,kLDrgBI,aAYF,8CCyfF,0NApRI,yBDjPA,aAYF,8CC+fF,kGA/PQ,gCA+PR,yGAxPU,oBA7SO,KD0Bb,aAYF,8CCkRA,4DDlRA,8DDiOF,6ECjOE,cC8EA,2ND1FE,yBAYF,kDCyfF,4PDrgBI,aAYF,8CCyfF,oSApRI,yBDjPA,aAYF,8CC+fF,uIA/PQ,gCA+PR,8IAxPU,oBA7SO,KD0Bb,aAYF,8CCkRA,iGDlRA,8DDsQF,qCCtQE,2CD+UF,qEC/UE,2CDyVF,mCCzVE,cDuWF,0HCvWE,cEkDF,6WFlDE,qBDqSF,+DCrSE,4BD4SF,kCC5SE,yBHlEJ,MGkEI,eDqdA,mBI7gBF,sBACE,WACA,eACA,mBAGF,mCACE,8CACA,gDACA,gBACA,oDAGF,wCACE","file":"light-theme.css"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tree-list-item.d.ts","sourceRoot":"","sources":["../../../../libs/components/src/tree-list/tree-list-item.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAa,MAAM,KAAK,CAAC;AAKvD,OAAO,cAAc,CAAC;AAEtB,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,mBAAmB,EAAE,oBAAoB,CAAC;KAC3C;CACF;AAED,qBACa,oBAAqB,SAAQ,UAAU;IAClD,OAAgB,MAAM,4BAIpB;IAE2B,MAAM,UAAS;IAEhB,IAAI,SAAM;IAEV,WAAW,SAAK;IAEhB,cAAc,SAAM;IACvC,MAAM;
|
|
1
|
+
{"version":3,"file":"tree-list-item.d.ts","sourceRoot":"","sources":["../../../../libs/components/src/tree-list/tree-list-item.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAa,MAAM,KAAK,CAAC;AAKvD,OAAO,cAAc,CAAC;AAEtB,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,mBAAmB,EAAE,oBAAoB,CAAC;KAC3C;CACF;AAED,qBACa,oBAAqB,SAAQ,UAAU;IAClD,OAAgB,MAAM,4BAIpB;IAE2B,MAAM,UAAS;IAEhB,IAAI,SAAM;IAEV,WAAW,SAAK;IAEhB,cAAc,SAAM;IAEnB,UAAU,UAAS;IACvC,MAAM;IA0Cf,OAAO,CAAC,YAAY;CAkBrB;AAED,eAAe,oBAAoB,CAAC"}
|
package/tree-list-item.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const r=require("./query-assigned-elements-8EurZY45.js"),n=require("./property-DYTC_2-m.js"),d=require("./class-map-DTzB8z-1.js");require("./icon.js");const l='.mdc-ripple-surface{--mdc-ripple-fg-size: 0;--mdc-ripple-left: 0;--mdc-ripple-top: 0;--mdc-ripple-fg-scale: 1;--mdc-ripple-fg-translate-end: 0;--mdc-ripple-fg-translate-start: 0;-webkit-tap-highlight-color:rgba(0,0,0,0);will-change:transform,opacity}.mdc-ripple-surface:before,.mdc-ripple-surface:after{position:absolute;border-radius:50%;opacity:0;pointer-events:none;content:""}.mdc-ripple-surface:before{transition:opacity 15ms linear,background-color 15ms linear;z-index:1;z-index:var(--mdc-ripple-z-index, 1)}.mdc-ripple-surface:after{z-index:0;z-index:var(--mdc-ripple-z-index, 0)}.mdc-ripple-surface.mdc-ripple-upgraded:before{transform:scale(var(--mdc-ripple-fg-scale, 1))}.mdc-ripple-surface.mdc-ripple-upgraded:after{top:0;left:0;transform:scale(0);transform-origin:center center}.mdc-ripple-surface.mdc-ripple-upgraded--unbounded:after{top:var(--mdc-ripple-top, 0);left:var(--mdc-ripple-left, 0)}.mdc-ripple-surface.mdc-ripple-upgraded--foreground-activation:after{animation:mdc-ripple-fg-radius-in 225ms forwards,mdc-ripple-fg-opacity-in 75ms forwards}.mdc-ripple-surface.mdc-ripple-upgraded--foreground-deactivation:after{animation:mdc-ripple-fg-opacity-out .15s;transform:translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1))}.mdc-ripple-surface:before,.mdc-ripple-surface:after{top:0%;left:0%;width:100%;height:100%}.mdc-ripple-surface.mdc-ripple-upgraded:after{width:var(--mdc-ripple-fg-size, 50%);height:var(--mdc-ripple-fg-size, 50%)}.mdc-ripple-surface:before,.mdc-ripple-surface:after{background-color:#000;background-color:var(--mdc-ripple-color, #000)}.mdc-ripple-surface:hover:before,.mdc-ripple-surface.mdc-ripple-surface--hover:before{opacity:.04;opacity:var(--mdc-ripple-hover-opacity, .04)}.mdc-ripple-surface.mdc-ripple-upgraded--background-focused:before,.mdc-ripple-surface:not(.mdc-ripple-upgraded):focus:before{transition-duration:75ms;opacity:.12;opacity:var(--mdc-ripple-focus-opacity, .12)}.mdc-ripple-surface:not(.mdc-ripple-upgraded):after{transition:opacity .15s linear}.mdc-ripple-surface:not(.mdc-ripple-upgraded):active:after{transition-duration:75ms;opacity:.12;opacity:var(--mdc-ripple-press-opacity, .12)}.mdc-ripple-surface.mdc-ripple-upgraded{--mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, .12)}.mdc-ripple-surface:after,.mdc-ripple-surface:before{border-radius:0 16px 16px 0}.itemContent{padding:0 32px 0 var(--indent);margin-right:16px}.itemContent:hover{cursor:pointer;background-color:var(--mdc-theme-surface-neutral-highlight-hover);border-radius:0 16px 16px 0}.selected{background-color:var(--mdc-theme-surface-primary-highlight);color:var(--mdc-theme-primary);border-radius:0 16px 16px 0}.selected:hover{background-color:var(--mdc-theme-surface-primary-highlight-hover)}.mainContent{display:flex;flex-direction:row;padding:4px 0}[name=label]::slotted(*){font-family:var(--mdc-typography-body1-font-family);font-size:var(--mdc-typography-body1-font-size);font-weight:var(--mdc-typography-body1-font-weight);line-height:var(--mdc-typography-body1-line-height);letter-spacing:.25px;padding-left:16px}[name=extraContent]::slotted(*){padding-left:64px;padding-bottom:4px;margin-top:-4px;letter-spacing:.4px;color:var(--mdc-theme-text-secondary-on-background);font-family:var(--mdc-typography-caption-font-family);font-size:var(--mdc-typography-caption-font-size);font-weight:var(--mdc-typography-caption-font-weight);line-height:var(--mdc-typography-caption-line-height)}.hidden{display:none}.visible{display:flex;flex-direction:column}.endOfNest{padding:8px;padding-left:calc(var(--indent) + 20px);letter-spacing:.4px;-webkit-user-select:none;user-select:none;color:var(--mdc-theme-text-disabled-on-background);font-family:var(--mdc-typography-caption-font-family);font-size:var(--mdc-typography-caption-font-size);font-weight:var(--mdc-typography-caption-font-weight);line-height:var(--mdc-typography-caption-line-height)}.arrowIcon{color:var(--mdc-theme-text-primary-on-background)}.arrowIcon.hidden-arrow{visibility:hidden}.open{transition:transform .1s ease-out;transform:rotate(90deg)}.close{transition:transform .1s ease-in;transform:rotate(0)}';var m=Object.defineProperty,f=Object.getOwnPropertyDescriptor,a=(c,t,o,i)=>{for(var e=i>1?void 0:i?f(t,o):t,p=c.length-1,s;p>=0;p--)(s=c[p])&&(e=(i?s(t,o,e):s(e))||e);return i&&e&&m(t,o,e),e};exports.CovalentTreeListItem=class extends r.s{constructor(){super(...arguments),this.isOpen=!1,this.icon="",this.indentLevel=0,this.indentMultiple=16,this.isLeafItem=!1}render(){const t={hidden:!this.isOpen,visible:this.isOpen},o={open:this.isOpen,close:!this.isOpen,"hidden-arrow":this.isLeafItem},i="arrow_right",e=r.x`<cv-icon>${this.icon}</cv-icon>`,p=r.x`<cv-icon class="${d.o(o)} arrowIcon"
|
|
2
2
|
>${i}</cv-icon
|
|
3
|
-
>`;return
|
|
3
|
+
>`;return r.x`
|
|
4
4
|
<div
|
|
5
5
|
class="itemContent mdc-ripple-surface"
|
|
6
6
|
@click="${this._handleClick}"
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
</div>
|
|
13
13
|
<slot name="extraContent"></slot>
|
|
14
14
|
</div>
|
|
15
|
-
<slot name="nest" class="${d.o(
|
|
15
|
+
<slot name="nest" class="${d.o(t)}">
|
|
16
16
|
<div
|
|
17
17
|
class="endOfNest"
|
|
18
18
|
style="--indent:${this.indentLevel*this.indentMultiple+this.indentMultiple}px"
|
|
@@ -20,6 +20,6 @@
|
|
|
20
20
|
No results
|
|
21
21
|
</div>
|
|
22
22
|
</slot>
|
|
23
|
-
`}_handleClick(){this.isOpen=!this.isOpen;const
|
|
24
|
-
${
|
|
25
|
-
`];
|
|
23
|
+
`}_handleClick(){this.isLeafItem||(this.isOpen=!this.isOpen);const t=new CustomEvent("select",{detail:{message:`Emitting an event from ${this}`},bubbles:!0,composed:!0});this.dispatchEvent(t)}};exports.CovalentTreeListItem.styles=[r.i`
|
|
24
|
+
${r.r(l)}
|
|
25
|
+
`];a([n.n({type:Boolean})],exports.CovalentTreeListItem.prototype,"isOpen",2);a([n.n({type:String})],exports.CovalentTreeListItem.prototype,"icon",2);a([n.n({type:Number})],exports.CovalentTreeListItem.prototype,"indentLevel",2);a([n.n({type:Number})],exports.CovalentTreeListItem.prototype,"indentMultiple",2);a([n.n({type:Boolean})],exports.CovalentTreeListItem.prototype,"isLeafItem",2);exports.CovalentTreeListItem=a([r.e("cv-tree-list-item")],exports.CovalentTreeListItem);const u=exports.CovalentTreeListItem;exports.default=u;
|
package/tree-list-item.mjs
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { r as m, i as f, s as
|
|
1
|
+
import { r as m, i as f, s as h, x as d, e as g } from "./query-assigned-elements-D930kELM.mjs";
|
|
2
2
|
import { n } from "./property-DJzm_oB9.mjs";
|
|
3
3
|
import { o as l } from "./class-map-DPUylGZM.mjs";
|
|
4
4
|
import "./icon.mjs";
|
|
5
|
-
const
|
|
6
|
-
var v = Object.defineProperty, y = Object.getOwnPropertyDescriptor,
|
|
7
|
-
for (var e = p > 1 ? void 0 : p ? y(i,
|
|
8
|
-
(
|
|
9
|
-
return p && e && v(i,
|
|
5
|
+
const u = '.mdc-ripple-surface{--mdc-ripple-fg-size: 0;--mdc-ripple-left: 0;--mdc-ripple-top: 0;--mdc-ripple-fg-scale: 1;--mdc-ripple-fg-translate-end: 0;--mdc-ripple-fg-translate-start: 0;-webkit-tap-highlight-color:rgba(0,0,0,0);will-change:transform,opacity}.mdc-ripple-surface:before,.mdc-ripple-surface:after{position:absolute;border-radius:50%;opacity:0;pointer-events:none;content:""}.mdc-ripple-surface:before{transition:opacity 15ms linear,background-color 15ms linear;z-index:1;z-index:var(--mdc-ripple-z-index, 1)}.mdc-ripple-surface:after{z-index:0;z-index:var(--mdc-ripple-z-index, 0)}.mdc-ripple-surface.mdc-ripple-upgraded:before{transform:scale(var(--mdc-ripple-fg-scale, 1))}.mdc-ripple-surface.mdc-ripple-upgraded:after{top:0;left:0;transform:scale(0);transform-origin:center center}.mdc-ripple-surface.mdc-ripple-upgraded--unbounded:after{top:var(--mdc-ripple-top, 0);left:var(--mdc-ripple-left, 0)}.mdc-ripple-surface.mdc-ripple-upgraded--foreground-activation:after{animation:mdc-ripple-fg-radius-in 225ms forwards,mdc-ripple-fg-opacity-in 75ms forwards}.mdc-ripple-surface.mdc-ripple-upgraded--foreground-deactivation:after{animation:mdc-ripple-fg-opacity-out .15s;transform:translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1))}.mdc-ripple-surface:before,.mdc-ripple-surface:after{top:0%;left:0%;width:100%;height:100%}.mdc-ripple-surface.mdc-ripple-upgraded:after{width:var(--mdc-ripple-fg-size, 50%);height:var(--mdc-ripple-fg-size, 50%)}.mdc-ripple-surface:before,.mdc-ripple-surface:after{background-color:#000;background-color:var(--mdc-ripple-color, #000)}.mdc-ripple-surface:hover:before,.mdc-ripple-surface.mdc-ripple-surface--hover:before{opacity:.04;opacity:var(--mdc-ripple-hover-opacity, .04)}.mdc-ripple-surface.mdc-ripple-upgraded--background-focused:before,.mdc-ripple-surface:not(.mdc-ripple-upgraded):focus:before{transition-duration:75ms;opacity:.12;opacity:var(--mdc-ripple-focus-opacity, .12)}.mdc-ripple-surface:not(.mdc-ripple-upgraded):after{transition:opacity .15s linear}.mdc-ripple-surface:not(.mdc-ripple-upgraded):active:after{transition-duration:75ms;opacity:.12;opacity:var(--mdc-ripple-press-opacity, .12)}.mdc-ripple-surface.mdc-ripple-upgraded{--mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, .12)}.mdc-ripple-surface:after,.mdc-ripple-surface:before{border-radius:0 16px 16px 0}.itemContent{padding:0 32px 0 var(--indent);margin-right:16px}.itemContent:hover{cursor:pointer;background-color:var(--mdc-theme-surface-neutral-highlight-hover);border-radius:0 16px 16px 0}.selected{background-color:var(--mdc-theme-surface-primary-highlight);color:var(--mdc-theme-primary);border-radius:0 16px 16px 0}.selected:hover{background-color:var(--mdc-theme-surface-primary-highlight-hover)}.mainContent{display:flex;flex-direction:row;padding:4px 0}[name=label]::slotted(*){font-family:var(--mdc-typography-body1-font-family);font-size:var(--mdc-typography-body1-font-size);font-weight:var(--mdc-typography-body1-font-weight);line-height:var(--mdc-typography-body1-line-height);letter-spacing:.25px;padding-left:16px}[name=extraContent]::slotted(*){padding-left:64px;padding-bottom:4px;margin-top:-4px;letter-spacing:.4px;color:var(--mdc-theme-text-secondary-on-background);font-family:var(--mdc-typography-caption-font-family);font-size:var(--mdc-typography-caption-font-size);font-weight:var(--mdc-typography-caption-font-weight);line-height:var(--mdc-typography-caption-line-height)}.hidden{display:none}.visible{display:flex;flex-direction:column}.endOfNest{padding:8px;padding-left:calc(var(--indent) + 20px);letter-spacing:.4px;-webkit-user-select:none;user-select:none;color:var(--mdc-theme-text-disabled-on-background);font-family:var(--mdc-typography-caption-font-family);font-size:var(--mdc-typography-caption-font-size);font-weight:var(--mdc-typography-caption-font-weight);line-height:var(--mdc-typography-caption-line-height)}.arrowIcon{color:var(--mdc-theme-text-primary-on-background)}.arrowIcon.hidden-arrow{visibility:hidden}.open{transition:transform .1s ease-out;transform:rotate(90deg)}.close{transition:transform .1s ease-in;transform:rotate(0)}';
|
|
6
|
+
var v = Object.defineProperty, y = Object.getOwnPropertyDescriptor, a = (t, i, o, p) => {
|
|
7
|
+
for (var e = p > 1 ? void 0 : p ? y(i, o) : i, c = t.length - 1, s; c >= 0; c--)
|
|
8
|
+
(s = t[c]) && (e = (p ? s(i, o, e) : s(e)) || e);
|
|
9
|
+
return p && e && v(i, o, e), e;
|
|
10
10
|
};
|
|
11
|
-
let r = class extends
|
|
11
|
+
let r = class extends h {
|
|
12
12
|
constructor() {
|
|
13
|
-
super(...arguments), this.isOpen = !1, this.icon = "", this.indentLevel = 0, this.indentMultiple = 16;
|
|
13
|
+
super(...arguments), this.isOpen = !1, this.icon = "", this.indentLevel = 0, this.indentMultiple = 16, this.isLeafItem = !1;
|
|
14
14
|
}
|
|
15
15
|
render() {
|
|
16
16
|
const t = {
|
|
@@ -18,11 +18,12 @@ let r = class extends g {
|
|
|
18
18
|
visible: this.isOpen
|
|
19
19
|
}, i = {
|
|
20
20
|
open: this.isOpen,
|
|
21
|
-
close: !this.isOpen
|
|
22
|
-
|
|
23
|
-
|
|
21
|
+
close: !this.isOpen,
|
|
22
|
+
"hidden-arrow": this.isLeafItem
|
|
23
|
+
}, o = "arrow_right", p = d`<cv-icon>${this.icon}</cv-icon>`, e = d`<cv-icon class="${l(i)} arrowIcon"
|
|
24
|
+
>${o}</cv-icon
|
|
24
25
|
>`;
|
|
25
|
-
return
|
|
26
|
+
return d`
|
|
26
27
|
<div
|
|
27
28
|
class="itemContent mdc-ripple-surface"
|
|
28
29
|
@click="${this._handleClick}"
|
|
@@ -45,7 +46,7 @@ let r = class extends g {
|
|
|
45
46
|
`;
|
|
46
47
|
}
|
|
47
48
|
_handleClick() {
|
|
48
|
-
this.isOpen = !this.isOpen;
|
|
49
|
+
this.isLeafItem || (this.isOpen = !this.isOpen);
|
|
49
50
|
const t = new CustomEvent("select", {
|
|
50
51
|
detail: {
|
|
51
52
|
message: `Emitting an event from ${this}`
|
|
@@ -59,23 +60,26 @@ let r = class extends g {
|
|
|
59
60
|
};
|
|
60
61
|
r.styles = [
|
|
61
62
|
f`
|
|
62
|
-
${m(
|
|
63
|
+
${m(u)}
|
|
63
64
|
`
|
|
64
65
|
];
|
|
65
|
-
|
|
66
|
+
a([
|
|
66
67
|
n({ type: Boolean })
|
|
67
68
|
], r.prototype, "isOpen", 2);
|
|
68
|
-
|
|
69
|
+
a([
|
|
69
70
|
n({ type: String })
|
|
70
71
|
], r.prototype, "icon", 2);
|
|
71
|
-
|
|
72
|
+
a([
|
|
72
73
|
n({ type: Number })
|
|
73
74
|
], r.prototype, "indentLevel", 2);
|
|
74
|
-
|
|
75
|
+
a([
|
|
75
76
|
n({ type: Number })
|
|
76
77
|
], r.prototype, "indentMultiple", 2);
|
|
77
|
-
|
|
78
|
-
|
|
78
|
+
a([
|
|
79
|
+
n({ type: Boolean })
|
|
80
|
+
], r.prototype, "isLeafItem", 2);
|
|
81
|
+
r = a([
|
|
82
|
+
g("cv-tree-list-item")
|
|
79
83
|
], r);
|
|
80
84
|
const O = r;
|
|
81
85
|
export {
|