oip-common 0.6.4 → 0.6.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +68 -68
- package/assets/demo/code.scss +17 -17
- package/assets/demo/demo.scss +2 -2
- package/assets/demo/flags/flags.scss +984 -984
- package/assets/i18n/extensions.en.json +1 -1
- package/assets/layout/_core.scss +30 -30
- package/assets/layout/_footer.scss +8 -8
- package/assets/layout/_main.scss +12 -12
- package/assets/layout/_menu.scss +148 -148
- package/assets/layout/_mixins.scss +15 -15
- package/assets/layout/_preloading.scss +49 -49
- package/assets/layout/_responsive.scss +108 -108
- package/assets/layout/_topbar.scss +168 -168
- package/assets/layout/_typography.scss +68 -68
- package/assets/layout/_utils.scss +25 -25
- package/assets/layout/layout.scss +13 -13
- package/assets/layout/variables/_common.scss +20 -20
- package/assets/layout/variables/_dark.scss +5 -5
- package/assets/layout/variables/_light.scss +5 -5
- package/assets/oip-common.scss +6 -6
- package/assets/tailwind.css +3 -3
- package/fesm2022/oip-common.mjs +160 -160
- package/fesm2022/oip-common.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
/* Utils */
|
|
2
|
-
.clearfix:after {
|
|
3
|
-
content: " ";
|
|
4
|
-
display: block;
|
|
5
|
-
clear: both;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.card {
|
|
9
|
-
background: var(--surface-card);
|
|
10
|
-
padding: 1rem;
|
|
11
|
-
margin-bottom: 1rem;
|
|
12
|
-
border-radius: var(--content-border-radius);
|
|
13
|
-
|
|
14
|
-
&:last-child {
|
|
15
|
-
margin-bottom: 0;
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.p-toast {
|
|
20
|
-
&.p-toast-top-right,
|
|
21
|
-
&.p-toast-top-left,
|
|
22
|
-
&.p-toast-top-center {
|
|
23
|
-
top: 100px;
|
|
24
|
-
}
|
|
25
|
-
}
|
|
1
|
+
/* Utils */
|
|
2
|
+
.clearfix:after {
|
|
3
|
+
content: " ";
|
|
4
|
+
display: block;
|
|
5
|
+
clear: both;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.card {
|
|
9
|
+
background: var(--surface-card);
|
|
10
|
+
padding: 1rem;
|
|
11
|
+
margin-bottom: 1rem;
|
|
12
|
+
border-radius: var(--content-border-radius);
|
|
13
|
+
|
|
14
|
+
&:last-child {
|
|
15
|
+
margin-bottom: 0;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.p-toast {
|
|
20
|
+
&.p-toast-top-right,
|
|
21
|
+
&.p-toast-top-left,
|
|
22
|
+
&.p-toast-top-center {
|
|
23
|
+
top: 100px;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
@use "./variables/_common";
|
|
2
|
-
@use "./variables/_light";
|
|
3
|
-
@use "./variables/_dark";
|
|
4
|
-
@use "./_mixins";
|
|
5
|
-
@use "./_preloading";
|
|
6
|
-
@use "./_core";
|
|
7
|
-
@use "./_main";
|
|
8
|
-
@use "./_topbar";
|
|
9
|
-
@use "./_menu";
|
|
10
|
-
@use "./_footer";
|
|
11
|
-
@use "./_responsive";
|
|
12
|
-
@use "./_utils";
|
|
13
|
-
@use "./_typography";
|
|
1
|
+
@use "./variables/_common";
|
|
2
|
+
@use "./variables/_light";
|
|
3
|
+
@use "./variables/_dark";
|
|
4
|
+
@use "./_mixins";
|
|
5
|
+
@use "./_preloading";
|
|
6
|
+
@use "./_core";
|
|
7
|
+
@use "./_main";
|
|
8
|
+
@use "./_topbar";
|
|
9
|
+
@use "./_menu";
|
|
10
|
+
@use "./_footer";
|
|
11
|
+
@use "./_responsive";
|
|
12
|
+
@use "./_utils";
|
|
13
|
+
@use "./_typography";
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
--primary-color: var(--p-primary-color);
|
|
3
|
-
--primary-contrast-color: var(--p-primary-contrast-color);
|
|
4
|
-
--text-color: var(--p-text-color);
|
|
5
|
-
--text-color-secondary: var(--p-text-muted-color);
|
|
6
|
-
--surface-border: var(--p-content-border-color);
|
|
7
|
-
--surface-card: var(--p-content-background);
|
|
8
|
-
--surface-hover: var(--p-content-hover-background);
|
|
9
|
-
--surface-overlay: var(--p-overlay-popover-background);
|
|
10
|
-
--transition-duration: var(--p-transition-duration);
|
|
11
|
-
--maskbg: var(--p-mask-background);
|
|
12
|
-
--content-border-radius: var(--p-content-border-radius);
|
|
13
|
-
--layout-section-transition-duration: 0.2s;
|
|
14
|
-
--element-transition-duration: var(--p-transition-duration);
|
|
15
|
-
--focus-ring-width: var(--p-focus-ring-width);
|
|
16
|
-
--focus-ring-style: var(--p-focus-ring-style);
|
|
17
|
-
--focus-ring-color: var(--p-focus-ring-color);
|
|
18
|
-
--focus-ring-offset: var(--p-focus-ring-offset);
|
|
19
|
-
--focus-ring-shadow: var(--p-focus-ring-shadow);
|
|
20
|
-
}
|
|
1
|
+
:root {
|
|
2
|
+
--primary-color: var(--p-primary-color);
|
|
3
|
+
--primary-contrast-color: var(--p-primary-contrast-color);
|
|
4
|
+
--text-color: var(--p-text-color);
|
|
5
|
+
--text-color-secondary: var(--p-text-muted-color);
|
|
6
|
+
--surface-border: var(--p-content-border-color);
|
|
7
|
+
--surface-card: var(--p-content-background);
|
|
8
|
+
--surface-hover: var(--p-content-hover-background);
|
|
9
|
+
--surface-overlay: var(--p-overlay-popover-background);
|
|
10
|
+
--transition-duration: var(--p-transition-duration);
|
|
11
|
+
--maskbg: var(--p-mask-background);
|
|
12
|
+
--content-border-radius: var(--p-content-border-radius);
|
|
13
|
+
--layout-section-transition-duration: 0.2s;
|
|
14
|
+
--element-transition-duration: var(--p-transition-duration);
|
|
15
|
+
--focus-ring-width: var(--p-focus-ring-width);
|
|
16
|
+
--focus-ring-style: var(--p-focus-ring-style);
|
|
17
|
+
--focus-ring-color: var(--p-focus-ring-color);
|
|
18
|
+
--focus-ring-offset: var(--p-focus-ring-offset);
|
|
19
|
+
--focus-ring-shadow: var(--p-focus-ring-shadow);
|
|
20
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
:root[class*="app-dark"] {
|
|
2
|
-
--surface-ground: var(--p-surface-950);
|
|
3
|
-
--code-background: var(--p-surface-800);
|
|
4
|
-
--code-color: var(--p-surface-100);
|
|
5
|
-
}
|
|
1
|
+
:root[class*="app-dark"] {
|
|
2
|
+
--surface-ground: var(--p-surface-950);
|
|
3
|
+
--code-background: var(--p-surface-800);
|
|
4
|
+
--code-color: var(--p-surface-100);
|
|
5
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
--surface-ground: var(--p-surface-100);
|
|
3
|
-
--code-background: var(--p-surface-900);
|
|
4
|
-
--code-color: var(--p-surface-200);
|
|
5
|
-
}
|
|
1
|
+
:root {
|
|
2
|
+
--surface-ground: var(--p-surface-100);
|
|
3
|
+
--code-background: var(--p-surface-900);
|
|
4
|
+
--code-color: var(--p-surface-200);
|
|
5
|
+
}
|
package/assets/oip-common.scss
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
/* You can add global styles to this file, and also import other style files */
|
|
2
|
-
@use "./tailwind.css";
|
|
3
|
-
@use "./layout/layout.scss";
|
|
4
|
-
@use "primeicons/primeicons.css";
|
|
5
|
-
@use "@fortawesome/fontawesome-free/css/all.css";
|
|
6
|
-
@use "./demo/demo.scss";
|
|
1
|
+
/* You can add global styles to this file, and also import other style files */
|
|
2
|
+
@use "./tailwind.css";
|
|
3
|
+
@use "./layout/layout.scss";
|
|
4
|
+
@use "primeicons/primeicons.css";
|
|
5
|
+
@use "@fortawesome/fontawesome-free/css/all.css";
|
|
6
|
+
@use "./demo/demo.scss";
|
package/assets/tailwind.css
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
@tailwind base;
|
|
2
|
-
@tailwind components;
|
|
3
|
-
@tailwind utilities;
|
|
1
|
+
@tailwind base;
|
|
2
|
+
@tailwind components;
|
|
3
|
+
@tailwind utilities;
|
package/fesm2022/oip-common.mjs
CHANGED
|
@@ -2800,56 +2800,56 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
2800
2800
|
|
|
2801
2801
|
class LogoComponent {
|
|
2802
2802
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: LogoComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2803
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: LogoComponent, isStandalone: true, selector: "logo", inputs: { width: "width", height: "height" }, ngImport: i0, template: `
|
|
2804
|
-
<svg
|
|
2805
|
-
viewBox="0.8516 1.7159 60.0074 64.7142"
|
|
2806
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
2807
|
-
[attr.height]="height + 'px'"
|
|
2808
|
-
[attr.width]="width + 'px'">
|
|
2809
|
-
<path
|
|
2810
|
-
class="primary-logo-color"
|
|
2811
|
-
d="M -130.45 -104.78 C -130.45 -105.9 -130.43 -107.01 -130.45 -108.13 C -130.49 -108.52 -130.28 -108.9 -129.92 -109.07 C -125.87 -111.4 -121.82 -113.74 -117.77 -116.08 C -115.7 -117.26 -113.63 -118.45 -111.58 -119.67 C -111.26 -119.89 -110.83 -119.89 -110.51 -119.67 C -101.66 -114.53 -92.787 -109.41 -83.915 -104.29 C -83.752 -104.2 -83.479 -104.16 -83.475 -103.94 C -83.472 -103.72 -83.766 -103.65 -83.947 -103.54 C -86.326 -102.16 -88.716 -100.79 -91.092 -99.39 C -91.377 -99.18 -91.761 -99.18 -92.046 -99.39 C -98.211 -102.98 -104.38 -106.55 -110.56 -110.12 C -110.85 -110.33 -111.23 -110.33 -111.52 -110.12 C -114.88 -108.16 -118.25 -106.22 -121.63 -104.28 C -122.01 -104.11 -122.24 -103.71 -122.2 -103.3 C -122.18 -101.11 -122.2 -98.922 -122.2 -96.736 C -122.19 -95.98 -122.21 -95.98 -122.84 -96.335 C -125.2 -97.7 -127.57 -99.07 -129.93 -100.42 C -130.27 -100.57 -130.49 -100.92 -130.46 -101.3 C -130.43 -102.46 -130.45 -103.62 -130.45 -104.78 Z"
|
|
2812
|
-
transform="matrix(1, 0, 0, 1, 131.35482788085938, 125.0257797241211)" />
|
|
2813
|
-
<path
|
|
2814
|
-
class="primary-logo-color"
|
|
2815
|
-
d="M -70.504 -100.94 L -70.504 -90.438 C -70.447 -89.98 -70.692 -89.537 -71.11 -89.342 C -78.942 -84.839 -86.769 -80.325 -94.592 -75.8 C -95.635 -75.2 -96.684 -74.612 -97.713 -73.988 C -98.17 -73.708 -98.255 -73.846 -98.255 -74.314 L -98.255 -82.785 C -98.268 -83.116 -98.07 -83.419 -97.762 -83.541 C -92.003 -86.86 -86.269 -90.236 -80.468 -93.47 C -79.181 -94.179 -78.667 -94.934 -78.731 -96.441 C -78.869 -99.76 -78.791 -103.09 -78.755 -106.42 C -78.694 -107 -79.02 -107.56 -79.56 -107.8 C -81.436 -108.83 -83.28 -109.93 -85.138 -110.99 C -85.734 -111.34 -85.734 -111.34 -85.113 -111.7 C -82.748 -113.07 -80.379 -114.43 -78.021 -115.82 C -77.707 -116.05 -77.283 -116.06 -76.957 -115.84 C -74.962 -114.66 -72.953 -113.5 -70.929 -112.37 C -70.62 -112.19 -70.456 -111.84 -70.521 -111.49 C -70.514 -107.99 -70.508 -104.48 -70.504 -100.94 Z"
|
|
2816
|
-
transform="matrix(1, 0, 0, 1, 131.35482788085938, 125.0257797241211)" />
|
|
2817
|
-
<path
|
|
2818
|
-
class="primary-logo-color"
|
|
2819
|
-
d="M -108.68 -85.743 L -108.68 -75.169 C -108.72 -74.754 -108.5 -74.358 -108.12 -74.179 C -104.77 -72.267 -101.44 -70.339 -98.117 -68.396 C -97.762 -68.141 -97.284 -68.141 -96.929 -68.396 C -95.028 -69.527 -93.096 -70.598 -91.195 -71.725 C -90.667 -72.041 -90.581 -71.892 -90.581 -71.371 C -90.596 -68.591 -90.596 -65.811 -90.581 -63.03 C -90.551 -62.7 -90.729 -62.386 -91.028 -62.243 C -93.083 -61.073 -95.13 -59.891 -97.17 -58.697 C -97.436 -58.537 -97.775 -58.569 -98.007 -58.775 C -102.74 -61.517 -107.47 -64.254 -112.22 -66.984 C -113.63 -67.796 -115.01 -68.615 -116.42 -69.406 C -116.77 -69.561 -116.97 -69.913 -116.94 -70.286 C -116.93 -80.555 -116.93 -90.823 -116.94 -101.09 C -116.94 -101.63 -116.86 -101.75 -116.35 -101.44 C -113.98 -100.05 -111.59 -98.667 -109.19 -97.303 C -108.84 -97.135 -108.62 -96.76 -108.66 -96.367 C -108.68 -92.833 -108.69 -89.291 -108.68 -85.743 Z"
|
|
2820
|
-
transform="matrix(1, 0, 0, 1, 131.35482788085938, 125.0257797241211)" />
|
|
2821
|
-
<path
|
|
2822
|
-
class="secondary-logo-color"
|
|
2823
|
-
d="M -122.18 -85.807 L -122.18 -82.129 C -122.18 -81.637 -122.34 -81.615 -122.72 -81.839 C -125.16 -83.257 -127.6 -84.667 -130.05 -86.069 C -130.35 -86.219 -130.53 -86.535 -130.5 -86.867 L -130.5 -94.09 C -130.5 -94.64 -130.34 -94.679 -129.89 -94.417 C -127.49 -92.998 -125.09 -91.607 -122.67 -90.243 C -122.35 -90.103 -122.15 -89.772 -122.18 -89.42 C -122.21 -88.214 -122.18 -87.012 -122.18 -85.807 Z M -82.688 -119.15 C -83.954 -118.41 -85.17 -117.7 -86.365 -117.02 C -87.748 -116.22 -89.138 -115.44 -90.514 -114.63 C -90.761 -114.45 -91.093 -114.45 -91.34 -114.63 C -93.432 -115.86 -95.535 -117.07 -97.649 -118.27 C -98.053 -118.5 -98.191 -118.63 -97.67 -118.93 C -95.216 -120.32 -92.776 -121.74 -90.337 -123.15 C -90.134 -123.33 -89.845 -123.36 -89.61 -123.23 L -82.918 -119.33 C -82.862 -119.28 -82.812 -119.24 -82.688 -119.15 Z M -85.365 -65.616 L -85.365 -72.062 L -85.365 -74.622 C -85.403 -74.928 -85.24 -75.223 -84.961 -75.353 C -82.886 -76.534 -80.83 -77.736 -78.77 -78.931 C -78.174 -79.286 -78.135 -79.257 -78.135 -78.576 L -78.135 -70.303 C -78.135 -69.991 -78.135 -69.711 -78.468 -69.52 C -80.656 -68.275 -82.833 -67.013 -85.014 -65.761 C -85.127 -65.704 -85.245 -65.655 -85.365 -65.616 Z"
|
|
2824
|
-
transform="matrix(1, 0, 0, 1, 131.35482788085938, 125.0257797241211)" />
|
|
2825
|
-
</svg>
|
|
2803
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: LogoComponent, isStandalone: true, selector: "logo", inputs: { width: "width", height: "height" }, ngImport: i0, template: `
|
|
2804
|
+
<svg
|
|
2805
|
+
viewBox="0.8516 1.7159 60.0074 64.7142"
|
|
2806
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2807
|
+
[attr.height]="height + 'px'"
|
|
2808
|
+
[attr.width]="width + 'px'">
|
|
2809
|
+
<path
|
|
2810
|
+
class="primary-logo-color"
|
|
2811
|
+
d="M -130.45 -104.78 C -130.45 -105.9 -130.43 -107.01 -130.45 -108.13 C -130.49 -108.52 -130.28 -108.9 -129.92 -109.07 C -125.87 -111.4 -121.82 -113.74 -117.77 -116.08 C -115.7 -117.26 -113.63 -118.45 -111.58 -119.67 C -111.26 -119.89 -110.83 -119.89 -110.51 -119.67 C -101.66 -114.53 -92.787 -109.41 -83.915 -104.29 C -83.752 -104.2 -83.479 -104.16 -83.475 -103.94 C -83.472 -103.72 -83.766 -103.65 -83.947 -103.54 C -86.326 -102.16 -88.716 -100.79 -91.092 -99.39 C -91.377 -99.18 -91.761 -99.18 -92.046 -99.39 C -98.211 -102.98 -104.38 -106.55 -110.56 -110.12 C -110.85 -110.33 -111.23 -110.33 -111.52 -110.12 C -114.88 -108.16 -118.25 -106.22 -121.63 -104.28 C -122.01 -104.11 -122.24 -103.71 -122.2 -103.3 C -122.18 -101.11 -122.2 -98.922 -122.2 -96.736 C -122.19 -95.98 -122.21 -95.98 -122.84 -96.335 C -125.2 -97.7 -127.57 -99.07 -129.93 -100.42 C -130.27 -100.57 -130.49 -100.92 -130.46 -101.3 C -130.43 -102.46 -130.45 -103.62 -130.45 -104.78 Z"
|
|
2812
|
+
transform="matrix(1, 0, 0, 1, 131.35482788085938, 125.0257797241211)" />
|
|
2813
|
+
<path
|
|
2814
|
+
class="primary-logo-color"
|
|
2815
|
+
d="M -70.504 -100.94 L -70.504 -90.438 C -70.447 -89.98 -70.692 -89.537 -71.11 -89.342 C -78.942 -84.839 -86.769 -80.325 -94.592 -75.8 C -95.635 -75.2 -96.684 -74.612 -97.713 -73.988 C -98.17 -73.708 -98.255 -73.846 -98.255 -74.314 L -98.255 -82.785 C -98.268 -83.116 -98.07 -83.419 -97.762 -83.541 C -92.003 -86.86 -86.269 -90.236 -80.468 -93.47 C -79.181 -94.179 -78.667 -94.934 -78.731 -96.441 C -78.869 -99.76 -78.791 -103.09 -78.755 -106.42 C -78.694 -107 -79.02 -107.56 -79.56 -107.8 C -81.436 -108.83 -83.28 -109.93 -85.138 -110.99 C -85.734 -111.34 -85.734 -111.34 -85.113 -111.7 C -82.748 -113.07 -80.379 -114.43 -78.021 -115.82 C -77.707 -116.05 -77.283 -116.06 -76.957 -115.84 C -74.962 -114.66 -72.953 -113.5 -70.929 -112.37 C -70.62 -112.19 -70.456 -111.84 -70.521 -111.49 C -70.514 -107.99 -70.508 -104.48 -70.504 -100.94 Z"
|
|
2816
|
+
transform="matrix(1, 0, 0, 1, 131.35482788085938, 125.0257797241211)" />
|
|
2817
|
+
<path
|
|
2818
|
+
class="primary-logo-color"
|
|
2819
|
+
d="M -108.68 -85.743 L -108.68 -75.169 C -108.72 -74.754 -108.5 -74.358 -108.12 -74.179 C -104.77 -72.267 -101.44 -70.339 -98.117 -68.396 C -97.762 -68.141 -97.284 -68.141 -96.929 -68.396 C -95.028 -69.527 -93.096 -70.598 -91.195 -71.725 C -90.667 -72.041 -90.581 -71.892 -90.581 -71.371 C -90.596 -68.591 -90.596 -65.811 -90.581 -63.03 C -90.551 -62.7 -90.729 -62.386 -91.028 -62.243 C -93.083 -61.073 -95.13 -59.891 -97.17 -58.697 C -97.436 -58.537 -97.775 -58.569 -98.007 -58.775 C -102.74 -61.517 -107.47 -64.254 -112.22 -66.984 C -113.63 -67.796 -115.01 -68.615 -116.42 -69.406 C -116.77 -69.561 -116.97 -69.913 -116.94 -70.286 C -116.93 -80.555 -116.93 -90.823 -116.94 -101.09 C -116.94 -101.63 -116.86 -101.75 -116.35 -101.44 C -113.98 -100.05 -111.59 -98.667 -109.19 -97.303 C -108.84 -97.135 -108.62 -96.76 -108.66 -96.367 C -108.68 -92.833 -108.69 -89.291 -108.68 -85.743 Z"
|
|
2820
|
+
transform="matrix(1, 0, 0, 1, 131.35482788085938, 125.0257797241211)" />
|
|
2821
|
+
<path
|
|
2822
|
+
class="secondary-logo-color"
|
|
2823
|
+
d="M -122.18 -85.807 L -122.18 -82.129 C -122.18 -81.637 -122.34 -81.615 -122.72 -81.839 C -125.16 -83.257 -127.6 -84.667 -130.05 -86.069 C -130.35 -86.219 -130.53 -86.535 -130.5 -86.867 L -130.5 -94.09 C -130.5 -94.64 -130.34 -94.679 -129.89 -94.417 C -127.49 -92.998 -125.09 -91.607 -122.67 -90.243 C -122.35 -90.103 -122.15 -89.772 -122.18 -89.42 C -122.21 -88.214 -122.18 -87.012 -122.18 -85.807 Z M -82.688 -119.15 C -83.954 -118.41 -85.17 -117.7 -86.365 -117.02 C -87.748 -116.22 -89.138 -115.44 -90.514 -114.63 C -90.761 -114.45 -91.093 -114.45 -91.34 -114.63 C -93.432 -115.86 -95.535 -117.07 -97.649 -118.27 C -98.053 -118.5 -98.191 -118.63 -97.67 -118.93 C -95.216 -120.32 -92.776 -121.74 -90.337 -123.15 C -90.134 -123.33 -89.845 -123.36 -89.61 -123.23 L -82.918 -119.33 C -82.862 -119.28 -82.812 -119.24 -82.688 -119.15 Z M -85.365 -65.616 L -85.365 -72.062 L -85.365 -74.622 C -85.403 -74.928 -85.24 -75.223 -84.961 -75.353 C -82.886 -76.534 -80.83 -77.736 -78.77 -78.931 C -78.174 -79.286 -78.135 -79.257 -78.135 -78.576 L -78.135 -70.303 C -78.135 -69.991 -78.135 -69.711 -78.468 -69.52 C -80.656 -68.275 -82.833 -67.013 -85.014 -65.761 C -85.127 -65.704 -85.245 -65.655 -85.365 -65.616 Z"
|
|
2824
|
+
transform="matrix(1, 0, 0, 1, 131.35482788085938, 125.0257797241211)" />
|
|
2825
|
+
</svg>
|
|
2826
2826
|
`, isInline: true, styles: [".primary-logo-color{fill:var(--primary-color)}.secondary-logo-color{fill:var(--p-primary-600)}\n"] }); }
|
|
2827
2827
|
}
|
|
2828
2828
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: LogoComponent, decorators: [{
|
|
2829
2829
|
type: Component,
|
|
2830
|
-
args: [{ selector: 'logo', standalone: true, template: `
|
|
2831
|
-
<svg
|
|
2832
|
-
viewBox="0.8516 1.7159 60.0074 64.7142"
|
|
2833
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
2834
|
-
[attr.height]="height + 'px'"
|
|
2835
|
-
[attr.width]="width + 'px'">
|
|
2836
|
-
<path
|
|
2837
|
-
class="primary-logo-color"
|
|
2838
|
-
d="M -130.45 -104.78 C -130.45 -105.9 -130.43 -107.01 -130.45 -108.13 C -130.49 -108.52 -130.28 -108.9 -129.92 -109.07 C -125.87 -111.4 -121.82 -113.74 -117.77 -116.08 C -115.7 -117.26 -113.63 -118.45 -111.58 -119.67 C -111.26 -119.89 -110.83 -119.89 -110.51 -119.67 C -101.66 -114.53 -92.787 -109.41 -83.915 -104.29 C -83.752 -104.2 -83.479 -104.16 -83.475 -103.94 C -83.472 -103.72 -83.766 -103.65 -83.947 -103.54 C -86.326 -102.16 -88.716 -100.79 -91.092 -99.39 C -91.377 -99.18 -91.761 -99.18 -92.046 -99.39 C -98.211 -102.98 -104.38 -106.55 -110.56 -110.12 C -110.85 -110.33 -111.23 -110.33 -111.52 -110.12 C -114.88 -108.16 -118.25 -106.22 -121.63 -104.28 C -122.01 -104.11 -122.24 -103.71 -122.2 -103.3 C -122.18 -101.11 -122.2 -98.922 -122.2 -96.736 C -122.19 -95.98 -122.21 -95.98 -122.84 -96.335 C -125.2 -97.7 -127.57 -99.07 -129.93 -100.42 C -130.27 -100.57 -130.49 -100.92 -130.46 -101.3 C -130.43 -102.46 -130.45 -103.62 -130.45 -104.78 Z"
|
|
2839
|
-
transform="matrix(1, 0, 0, 1, 131.35482788085938, 125.0257797241211)" />
|
|
2840
|
-
<path
|
|
2841
|
-
class="primary-logo-color"
|
|
2842
|
-
d="M -70.504 -100.94 L -70.504 -90.438 C -70.447 -89.98 -70.692 -89.537 -71.11 -89.342 C -78.942 -84.839 -86.769 -80.325 -94.592 -75.8 C -95.635 -75.2 -96.684 -74.612 -97.713 -73.988 C -98.17 -73.708 -98.255 -73.846 -98.255 -74.314 L -98.255 -82.785 C -98.268 -83.116 -98.07 -83.419 -97.762 -83.541 C -92.003 -86.86 -86.269 -90.236 -80.468 -93.47 C -79.181 -94.179 -78.667 -94.934 -78.731 -96.441 C -78.869 -99.76 -78.791 -103.09 -78.755 -106.42 C -78.694 -107 -79.02 -107.56 -79.56 -107.8 C -81.436 -108.83 -83.28 -109.93 -85.138 -110.99 C -85.734 -111.34 -85.734 -111.34 -85.113 -111.7 C -82.748 -113.07 -80.379 -114.43 -78.021 -115.82 C -77.707 -116.05 -77.283 -116.06 -76.957 -115.84 C -74.962 -114.66 -72.953 -113.5 -70.929 -112.37 C -70.62 -112.19 -70.456 -111.84 -70.521 -111.49 C -70.514 -107.99 -70.508 -104.48 -70.504 -100.94 Z"
|
|
2843
|
-
transform="matrix(1, 0, 0, 1, 131.35482788085938, 125.0257797241211)" />
|
|
2844
|
-
<path
|
|
2845
|
-
class="primary-logo-color"
|
|
2846
|
-
d="M -108.68 -85.743 L -108.68 -75.169 C -108.72 -74.754 -108.5 -74.358 -108.12 -74.179 C -104.77 -72.267 -101.44 -70.339 -98.117 -68.396 C -97.762 -68.141 -97.284 -68.141 -96.929 -68.396 C -95.028 -69.527 -93.096 -70.598 -91.195 -71.725 C -90.667 -72.041 -90.581 -71.892 -90.581 -71.371 C -90.596 -68.591 -90.596 -65.811 -90.581 -63.03 C -90.551 -62.7 -90.729 -62.386 -91.028 -62.243 C -93.083 -61.073 -95.13 -59.891 -97.17 -58.697 C -97.436 -58.537 -97.775 -58.569 -98.007 -58.775 C -102.74 -61.517 -107.47 -64.254 -112.22 -66.984 C -113.63 -67.796 -115.01 -68.615 -116.42 -69.406 C -116.77 -69.561 -116.97 -69.913 -116.94 -70.286 C -116.93 -80.555 -116.93 -90.823 -116.94 -101.09 C -116.94 -101.63 -116.86 -101.75 -116.35 -101.44 C -113.98 -100.05 -111.59 -98.667 -109.19 -97.303 C -108.84 -97.135 -108.62 -96.76 -108.66 -96.367 C -108.68 -92.833 -108.69 -89.291 -108.68 -85.743 Z"
|
|
2847
|
-
transform="matrix(1, 0, 0, 1, 131.35482788085938, 125.0257797241211)" />
|
|
2848
|
-
<path
|
|
2849
|
-
class="secondary-logo-color"
|
|
2850
|
-
d="M -122.18 -85.807 L -122.18 -82.129 C -122.18 -81.637 -122.34 -81.615 -122.72 -81.839 C -125.16 -83.257 -127.6 -84.667 -130.05 -86.069 C -130.35 -86.219 -130.53 -86.535 -130.5 -86.867 L -130.5 -94.09 C -130.5 -94.64 -130.34 -94.679 -129.89 -94.417 C -127.49 -92.998 -125.09 -91.607 -122.67 -90.243 C -122.35 -90.103 -122.15 -89.772 -122.18 -89.42 C -122.21 -88.214 -122.18 -87.012 -122.18 -85.807 Z M -82.688 -119.15 C -83.954 -118.41 -85.17 -117.7 -86.365 -117.02 C -87.748 -116.22 -89.138 -115.44 -90.514 -114.63 C -90.761 -114.45 -91.093 -114.45 -91.34 -114.63 C -93.432 -115.86 -95.535 -117.07 -97.649 -118.27 C -98.053 -118.5 -98.191 -118.63 -97.67 -118.93 C -95.216 -120.32 -92.776 -121.74 -90.337 -123.15 C -90.134 -123.33 -89.845 -123.36 -89.61 -123.23 L -82.918 -119.33 C -82.862 -119.28 -82.812 -119.24 -82.688 -119.15 Z M -85.365 -65.616 L -85.365 -72.062 L -85.365 -74.622 C -85.403 -74.928 -85.24 -75.223 -84.961 -75.353 C -82.886 -76.534 -80.83 -77.736 -78.77 -78.931 C -78.174 -79.286 -78.135 -79.257 -78.135 -78.576 L -78.135 -70.303 C -78.135 -69.991 -78.135 -69.711 -78.468 -69.52 C -80.656 -68.275 -82.833 -67.013 -85.014 -65.761 C -85.127 -65.704 -85.245 -65.655 -85.365 -65.616 Z"
|
|
2851
|
-
transform="matrix(1, 0, 0, 1, 131.35482788085938, 125.0257797241211)" />
|
|
2852
|
-
</svg>
|
|
2830
|
+
args: [{ selector: 'logo', standalone: true, template: `
|
|
2831
|
+
<svg
|
|
2832
|
+
viewBox="0.8516 1.7159 60.0074 64.7142"
|
|
2833
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2834
|
+
[attr.height]="height + 'px'"
|
|
2835
|
+
[attr.width]="width + 'px'">
|
|
2836
|
+
<path
|
|
2837
|
+
class="primary-logo-color"
|
|
2838
|
+
d="M -130.45 -104.78 C -130.45 -105.9 -130.43 -107.01 -130.45 -108.13 C -130.49 -108.52 -130.28 -108.9 -129.92 -109.07 C -125.87 -111.4 -121.82 -113.74 -117.77 -116.08 C -115.7 -117.26 -113.63 -118.45 -111.58 -119.67 C -111.26 -119.89 -110.83 -119.89 -110.51 -119.67 C -101.66 -114.53 -92.787 -109.41 -83.915 -104.29 C -83.752 -104.2 -83.479 -104.16 -83.475 -103.94 C -83.472 -103.72 -83.766 -103.65 -83.947 -103.54 C -86.326 -102.16 -88.716 -100.79 -91.092 -99.39 C -91.377 -99.18 -91.761 -99.18 -92.046 -99.39 C -98.211 -102.98 -104.38 -106.55 -110.56 -110.12 C -110.85 -110.33 -111.23 -110.33 -111.52 -110.12 C -114.88 -108.16 -118.25 -106.22 -121.63 -104.28 C -122.01 -104.11 -122.24 -103.71 -122.2 -103.3 C -122.18 -101.11 -122.2 -98.922 -122.2 -96.736 C -122.19 -95.98 -122.21 -95.98 -122.84 -96.335 C -125.2 -97.7 -127.57 -99.07 -129.93 -100.42 C -130.27 -100.57 -130.49 -100.92 -130.46 -101.3 C -130.43 -102.46 -130.45 -103.62 -130.45 -104.78 Z"
|
|
2839
|
+
transform="matrix(1, 0, 0, 1, 131.35482788085938, 125.0257797241211)" />
|
|
2840
|
+
<path
|
|
2841
|
+
class="primary-logo-color"
|
|
2842
|
+
d="M -70.504 -100.94 L -70.504 -90.438 C -70.447 -89.98 -70.692 -89.537 -71.11 -89.342 C -78.942 -84.839 -86.769 -80.325 -94.592 -75.8 C -95.635 -75.2 -96.684 -74.612 -97.713 -73.988 C -98.17 -73.708 -98.255 -73.846 -98.255 -74.314 L -98.255 -82.785 C -98.268 -83.116 -98.07 -83.419 -97.762 -83.541 C -92.003 -86.86 -86.269 -90.236 -80.468 -93.47 C -79.181 -94.179 -78.667 -94.934 -78.731 -96.441 C -78.869 -99.76 -78.791 -103.09 -78.755 -106.42 C -78.694 -107 -79.02 -107.56 -79.56 -107.8 C -81.436 -108.83 -83.28 -109.93 -85.138 -110.99 C -85.734 -111.34 -85.734 -111.34 -85.113 -111.7 C -82.748 -113.07 -80.379 -114.43 -78.021 -115.82 C -77.707 -116.05 -77.283 -116.06 -76.957 -115.84 C -74.962 -114.66 -72.953 -113.5 -70.929 -112.37 C -70.62 -112.19 -70.456 -111.84 -70.521 -111.49 C -70.514 -107.99 -70.508 -104.48 -70.504 -100.94 Z"
|
|
2843
|
+
transform="matrix(1, 0, 0, 1, 131.35482788085938, 125.0257797241211)" />
|
|
2844
|
+
<path
|
|
2845
|
+
class="primary-logo-color"
|
|
2846
|
+
d="M -108.68 -85.743 L -108.68 -75.169 C -108.72 -74.754 -108.5 -74.358 -108.12 -74.179 C -104.77 -72.267 -101.44 -70.339 -98.117 -68.396 C -97.762 -68.141 -97.284 -68.141 -96.929 -68.396 C -95.028 -69.527 -93.096 -70.598 -91.195 -71.725 C -90.667 -72.041 -90.581 -71.892 -90.581 -71.371 C -90.596 -68.591 -90.596 -65.811 -90.581 -63.03 C -90.551 -62.7 -90.729 -62.386 -91.028 -62.243 C -93.083 -61.073 -95.13 -59.891 -97.17 -58.697 C -97.436 -58.537 -97.775 -58.569 -98.007 -58.775 C -102.74 -61.517 -107.47 -64.254 -112.22 -66.984 C -113.63 -67.796 -115.01 -68.615 -116.42 -69.406 C -116.77 -69.561 -116.97 -69.913 -116.94 -70.286 C -116.93 -80.555 -116.93 -90.823 -116.94 -101.09 C -116.94 -101.63 -116.86 -101.75 -116.35 -101.44 C -113.98 -100.05 -111.59 -98.667 -109.19 -97.303 C -108.84 -97.135 -108.62 -96.76 -108.66 -96.367 C -108.68 -92.833 -108.69 -89.291 -108.68 -85.743 Z"
|
|
2847
|
+
transform="matrix(1, 0, 0, 1, 131.35482788085938, 125.0257797241211)" />
|
|
2848
|
+
<path
|
|
2849
|
+
class="secondary-logo-color"
|
|
2850
|
+
d="M -122.18 -85.807 L -122.18 -82.129 C -122.18 -81.637 -122.34 -81.615 -122.72 -81.839 C -125.16 -83.257 -127.6 -84.667 -130.05 -86.069 C -130.35 -86.219 -130.53 -86.535 -130.5 -86.867 L -130.5 -94.09 C -130.5 -94.64 -130.34 -94.679 -129.89 -94.417 C -127.49 -92.998 -125.09 -91.607 -122.67 -90.243 C -122.35 -90.103 -122.15 -89.772 -122.18 -89.42 C -122.21 -88.214 -122.18 -87.012 -122.18 -85.807 Z M -82.688 -119.15 C -83.954 -118.41 -85.17 -117.7 -86.365 -117.02 C -87.748 -116.22 -89.138 -115.44 -90.514 -114.63 C -90.761 -114.45 -91.093 -114.45 -91.34 -114.63 C -93.432 -115.86 -95.535 -117.07 -97.649 -118.27 C -98.053 -118.5 -98.191 -118.63 -97.67 -118.93 C -95.216 -120.32 -92.776 -121.74 -90.337 -123.15 C -90.134 -123.33 -89.845 -123.36 -89.61 -123.23 L -82.918 -119.33 C -82.862 -119.28 -82.812 -119.24 -82.688 -119.15 Z M -85.365 -65.616 L -85.365 -72.062 L -85.365 -74.622 C -85.403 -74.928 -85.24 -75.223 -84.961 -75.353 C -82.886 -76.534 -80.83 -77.736 -78.77 -78.931 C -78.174 -79.286 -78.135 -79.257 -78.135 -78.576 L -78.135 -70.303 C -78.135 -69.991 -78.135 -69.711 -78.468 -69.52 C -80.656 -68.275 -82.833 -67.013 -85.014 -65.761 C -85.127 -65.704 -85.245 -65.655 -85.365 -65.616 Z"
|
|
2851
|
+
transform="matrix(1, 0, 0, 1, 131.35482788085938, 125.0257797241211)" />
|
|
2852
|
+
</svg>
|
|
2853
2853
|
`, styles: [".primary-logo-color{fill:var(--primary-color)}.secondary-logo-color{fill:var(--p-primary-600)}\n"] }]
|
|
2854
2854
|
}], propDecorators: { width: [{
|
|
2855
2855
|
type: Input
|
|
@@ -3418,23 +3418,23 @@ class AppTopbarApplicationSwitcherComponent {
|
|
|
3418
3418
|
};
|
|
3419
3419
|
}
|
|
3420
3420
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AppTopbarApplicationSwitcherComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3421
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.16", type: AppTopbarApplicationSwitcherComponent, isStandalone: true, selector: "app-topbar-application-switcher", providers: [ApplicationsApi, ApplicationRegistryService], ngImport: i0, template: `
|
|
3422
|
-
@if (applicationRegistryService.applications.length > 1) {
|
|
3423
|
-
<p-button
|
|
3424
|
-
class="layout-topbar-action"
|
|
3425
|
-
id="oip-app-topbar-application-switcher-button"
|
|
3426
|
-
severity="secondary"
|
|
3427
|
-
type="button"
|
|
3428
|
-
[rounded]="true"
|
|
3429
|
-
[text]="true"
|
|
3430
|
-
(click)="applicationMenu.toggle($event)">
|
|
3431
|
-
<i [ngClass]="applicationRegistryService.currentApplication?.icon || 'pi pi-th-large'"></i>
|
|
3432
|
-
<span class="ml-2 hidden md:inline">
|
|
3433
|
-
{{ applicationRegistryService.currentApplication?.displayName || ('topbar.applications' | translate) }}
|
|
3434
|
-
</span>
|
|
3435
|
-
</p-button>
|
|
3436
|
-
<p-menu #applicationMenu [model]="applicationMenuItems" [popup]="true" />
|
|
3437
|
-
}
|
|
3421
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.16", type: AppTopbarApplicationSwitcherComponent, isStandalone: true, selector: "app-topbar-application-switcher", providers: [ApplicationsApi, ApplicationRegistryService], ngImport: i0, template: `
|
|
3422
|
+
@if (applicationRegistryService.applications.length > 1) {
|
|
3423
|
+
<p-button
|
|
3424
|
+
class="layout-topbar-action"
|
|
3425
|
+
id="oip-app-topbar-application-switcher-button"
|
|
3426
|
+
severity="secondary"
|
|
3427
|
+
type="button"
|
|
3428
|
+
[rounded]="true"
|
|
3429
|
+
[text]="true"
|
|
3430
|
+
(click)="applicationMenu.toggle($event)">
|
|
3431
|
+
<i [ngClass]="applicationRegistryService.currentApplication?.icon || 'pi pi-th-large'"></i>
|
|
3432
|
+
<span class="ml-2 hidden md:inline">
|
|
3433
|
+
{{ applicationRegistryService.currentApplication?.displayName || ('topbar.applications' | translate) }}
|
|
3434
|
+
</span>
|
|
3435
|
+
</p-button>
|
|
3436
|
+
<p-menu #applicationMenu [model]="applicationMenuItems" [popup]="true" />
|
|
3437
|
+
}
|
|
3438
3438
|
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: ButtonModule }, { kind: "component", type: i1$2.Button, selector: "p-button", inputs: ["hostName", "type", "badge", "disabled", "raised", "rounded", "text", "plain", "outlined", "link", "tabindex", "size", "variant", "style", "styleClass", "badgeClass", "badgeSeverity", "ariaLabel", "autofocus", "iconPos", "icon", "label", "loading", "loadingIcon", "severity", "buttonProps", "fluid"], outputs: ["onClick", "onFocus", "onBlur"] }, { kind: "ngmodule", type: MenuModule }, { kind: "component", type: i3$2.Menu, selector: "p-menu", inputs: ["model", "popup", "style", "styleClass", "autoZIndex", "baseZIndex", "showTransitionOptions", "hideTransitionOptions", "ariaLabel", "ariaLabelledBy", "id", "tabindex", "appendTo"], outputs: ["onShow", "onHide", "onBlur", "onFocus"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }] }); }
|
|
3439
3439
|
}
|
|
3440
3440
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AppTopbarApplicationSwitcherComponent, decorators: [{
|
|
@@ -3443,23 +3443,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
3443
3443
|
selector: 'app-topbar-application-switcher',
|
|
3444
3444
|
standalone: true,
|
|
3445
3445
|
imports: [CommonModule, ButtonModule, MenuModule, TranslatePipe],
|
|
3446
|
-
template: `
|
|
3447
|
-
@if (applicationRegistryService.applications.length > 1) {
|
|
3448
|
-
<p-button
|
|
3449
|
-
class="layout-topbar-action"
|
|
3450
|
-
id="oip-app-topbar-application-switcher-button"
|
|
3451
|
-
severity="secondary"
|
|
3452
|
-
type="button"
|
|
3453
|
-
[rounded]="true"
|
|
3454
|
-
[text]="true"
|
|
3455
|
-
(click)="applicationMenu.toggle($event)">
|
|
3456
|
-
<i [ngClass]="applicationRegistryService.currentApplication?.icon || 'pi pi-th-large'"></i>
|
|
3457
|
-
<span class="ml-2 hidden md:inline">
|
|
3458
|
-
{{ applicationRegistryService.currentApplication?.displayName || ('topbar.applications' | translate) }}
|
|
3459
|
-
</span>
|
|
3460
|
-
</p-button>
|
|
3461
|
-
<p-menu #applicationMenu [model]="applicationMenuItems" [popup]="true" />
|
|
3462
|
-
}
|
|
3446
|
+
template: `
|
|
3447
|
+
@if (applicationRegistryService.applications.length > 1) {
|
|
3448
|
+
<p-button
|
|
3449
|
+
class="layout-topbar-action"
|
|
3450
|
+
id="oip-app-topbar-application-switcher-button"
|
|
3451
|
+
severity="secondary"
|
|
3452
|
+
type="button"
|
|
3453
|
+
[rounded]="true"
|
|
3454
|
+
[text]="true"
|
|
3455
|
+
(click)="applicationMenu.toggle($event)">
|
|
3456
|
+
<i [ngClass]="applicationRegistryService.currentApplication?.icon || 'pi pi-th-large'"></i>
|
|
3457
|
+
<span class="ml-2 hidden md:inline">
|
|
3458
|
+
{{ applicationRegistryService.currentApplication?.displayName || ('topbar.applications' | translate) }}
|
|
3459
|
+
</span>
|
|
3460
|
+
</p-button>
|
|
3461
|
+
<p-menu #applicationMenu [model]="applicationMenuItems" [popup]="true" />
|
|
3462
|
+
}
|
|
3463
3463
|
`,
|
|
3464
3464
|
providers: [ApplicationsApi, ApplicationRegistryService]
|
|
3465
3465
|
}]
|
|
@@ -5136,18 +5136,18 @@ class AppLayoutComponent {
|
|
|
5136
5136
|
}
|
|
5137
5137
|
}
|
|
5138
5138
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AppLayoutComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5139
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: AppLayoutComponent, isStandalone: true, selector: "app-layout", providers: [MenuService, MenuApi], viewQueries: [{ propertyName: "appSidebar", first: true, predicate: SidebarComponent, descendants: true }, { propertyName: "appTopBar", first: true, predicate: AppTopbar, descendants: true }], ngImport: i0, template: `
|
|
5140
|
-
<div class="layout-wrapper" [ngClass]="containerClass">
|
|
5141
|
-
<app-topbar></app-topbar>
|
|
5142
|
-
<app-sidebar></app-sidebar>
|
|
5143
|
-
<div class="layout-main-container">
|
|
5144
|
-
<div class="layout-main">
|
|
5145
|
-
<router-outlet></router-outlet>
|
|
5146
|
-
</div>
|
|
5147
|
-
<app-footer></app-footer>
|
|
5148
|
-
</div>
|
|
5149
|
-
<div class="layout-mask animate-fadein"></div>
|
|
5150
|
-
</div>
|
|
5139
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: AppLayoutComponent, isStandalone: true, selector: "app-layout", providers: [MenuService, MenuApi], viewQueries: [{ propertyName: "appSidebar", first: true, predicate: SidebarComponent, descendants: true }, { propertyName: "appTopBar", first: true, predicate: AppTopbar, descendants: true }], ngImport: i0, template: `
|
|
5140
|
+
<div class="layout-wrapper" [ngClass]="containerClass">
|
|
5141
|
+
<app-topbar></app-topbar>
|
|
5142
|
+
<app-sidebar></app-sidebar>
|
|
5143
|
+
<div class="layout-main-container">
|
|
5144
|
+
<div class="layout-main">
|
|
5145
|
+
<router-outlet></router-outlet>
|
|
5146
|
+
</div>
|
|
5147
|
+
<app-footer></app-footer>
|
|
5148
|
+
</div>
|
|
5149
|
+
<div class="layout-mask animate-fadein"></div>
|
|
5150
|
+
</div>
|
|
5151
5151
|
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: AppTopbar, selector: "app-topbar" }, { kind: "component", type: SidebarComponent, selector: "app-sidebar" }, { kind: "ngmodule", type: RouterModule }, { kind: "directive", type: i1$5.RouterOutlet, selector: "router-outlet", inputs: ["name", "routerOutletData"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }, { kind: "component", type: FooterComponent, selector: "app-footer" }] }); }
|
|
5152
5152
|
}
|
|
5153
5153
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AppLayoutComponent, decorators: [{
|
|
@@ -5156,18 +5156,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
5156
5156
|
selector: 'app-layout',
|
|
5157
5157
|
standalone: true,
|
|
5158
5158
|
imports: [CommonModule, AppTopbar, SidebarComponent, RouterModule, FooterComponent],
|
|
5159
|
-
template: `
|
|
5160
|
-
<div class="layout-wrapper" [ngClass]="containerClass">
|
|
5161
|
-
<app-topbar></app-topbar>
|
|
5162
|
-
<app-sidebar></app-sidebar>
|
|
5163
|
-
<div class="layout-main-container">
|
|
5164
|
-
<div class="layout-main">
|
|
5165
|
-
<router-outlet></router-outlet>
|
|
5166
|
-
</div>
|
|
5167
|
-
<app-footer></app-footer>
|
|
5168
|
-
</div>
|
|
5169
|
-
<div class="layout-mask animate-fadein"></div>
|
|
5170
|
-
</div>
|
|
5159
|
+
template: `
|
|
5160
|
+
<div class="layout-wrapper" [ngClass]="containerClass">
|
|
5161
|
+
<app-topbar></app-topbar>
|
|
5162
|
+
<app-sidebar></app-sidebar>
|
|
5163
|
+
<div class="layout-main-container">
|
|
5164
|
+
<div class="layout-main">
|
|
5165
|
+
<router-outlet></router-outlet>
|
|
5166
|
+
</div>
|
|
5167
|
+
<app-footer></app-footer>
|
|
5168
|
+
</div>
|
|
5169
|
+
<div class="layout-mask animate-fadein"></div>
|
|
5170
|
+
</div>
|
|
5171
5171
|
`,
|
|
5172
5172
|
providers: [MenuService, MenuApi]
|
|
5173
5173
|
}]
|
|
@@ -5364,67 +5364,67 @@ class UnauthorizedComponent {
|
|
|
5364
5364
|
this.securityService.authorize(returnUrl);
|
|
5365
5365
|
}
|
|
5366
5366
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: UnauthorizedComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5367
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: UnauthorizedComponent, isStandalone: true, selector: "ng-component", ngImport: i0, template: `
|
|
5368
|
-
<app-floating-configurator />
|
|
5369
|
-
<div
|
|
5370
|
-
class="bg-surface-50 dark:bg-surface-950 flex items-center justify-center min-h-screen min-w-[100vw] overflow-hidden">
|
|
5371
|
-
<div class="flex flex-col items-center justify-center">
|
|
5372
|
-
<div
|
|
5373
|
-
style="border-radius: 56px; padding: 0.3rem; background: linear-gradient(180deg, var(--primary-color) 10%, rgba(33, 150, 243, 0) 30%)">
|
|
5374
|
-
<div class="w-full bg-surface-0 dark:bg-surface-900 py-20 px-8 sm:px-20" style="border-radius: 53px">
|
|
5375
|
-
<div class="flex flex-col items-center justify-center">
|
|
5376
|
-
<logo [height]="96" [width]="96" />
|
|
5377
|
-
</div>
|
|
5378
|
-
<div class="text-center mb-8">
|
|
5379
|
-
<div class="text-surface-900 dark:text-surface-0 text-3xl font-medium mb-4">
|
|
5380
|
-
{{ 'unauthorized.welcomeToOip' | translate }}
|
|
5381
|
-
</div>
|
|
5382
|
-
<span class="text-muted-color font-medium">{{ 'unauthorized.signInToContinue' | translate }}</span>
|
|
5383
|
-
</div>
|
|
5384
|
-
<div>
|
|
5385
|
-
<p-button
|
|
5386
|
-
id="oip-unauthorized-error-sign-in-button"
|
|
5387
|
-
label="{{ 'unauthorized.signIn' | translate }}"
|
|
5388
|
-
styleClass="w-full"
|
|
5389
|
-
(click)="signIn()"></p-button>
|
|
5390
|
-
</div>
|
|
5391
|
-
</div>
|
|
5392
|
-
</div>
|
|
5393
|
-
</div>
|
|
5394
|
-
</div>
|
|
5367
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: UnauthorizedComponent, isStandalone: true, selector: "ng-component", ngImport: i0, template: `
|
|
5368
|
+
<app-floating-configurator />
|
|
5369
|
+
<div
|
|
5370
|
+
class="bg-surface-50 dark:bg-surface-950 flex items-center justify-center min-h-screen min-w-[100vw] overflow-hidden">
|
|
5371
|
+
<div class="flex flex-col items-center justify-center">
|
|
5372
|
+
<div
|
|
5373
|
+
style="border-radius: 56px; padding: 0.3rem; background: linear-gradient(180deg, var(--primary-color) 10%, rgba(33, 150, 243, 0) 30%)">
|
|
5374
|
+
<div class="w-full bg-surface-0 dark:bg-surface-900 py-20 px-8 sm:px-20" style="border-radius: 53px">
|
|
5375
|
+
<div class="flex flex-col items-center justify-center">
|
|
5376
|
+
<logo [height]="96" [width]="96" />
|
|
5377
|
+
</div>
|
|
5378
|
+
<div class="text-center mb-8">
|
|
5379
|
+
<div class="text-surface-900 dark:text-surface-0 text-3xl font-medium mb-4">
|
|
5380
|
+
{{ 'unauthorized.welcomeToOip' | translate }}
|
|
5381
|
+
</div>
|
|
5382
|
+
<span class="text-muted-color font-medium">{{ 'unauthorized.signInToContinue' | translate }}</span>
|
|
5383
|
+
</div>
|
|
5384
|
+
<div>
|
|
5385
|
+
<p-button
|
|
5386
|
+
id="oip-unauthorized-error-sign-in-button"
|
|
5387
|
+
label="{{ 'unauthorized.signIn' | translate }}"
|
|
5388
|
+
styleClass="w-full"
|
|
5389
|
+
(click)="signIn()"></p-button>
|
|
5390
|
+
</div>
|
|
5391
|
+
</div>
|
|
5392
|
+
</div>
|
|
5393
|
+
</div>
|
|
5394
|
+
</div>
|
|
5395
5395
|
`, isInline: true, dependencies: [{ kind: "ngmodule", type: ButtonModule }, { kind: "component", type: i1$2.Button, selector: "p-button", inputs: ["hostName", "type", "badge", "disabled", "raised", "rounded", "text", "plain", "outlined", "link", "tabindex", "size", "variant", "style", "styleClass", "badgeClass", "badgeSeverity", "ariaLabel", "autofocus", "iconPos", "icon", "label", "loading", "loadingIcon", "severity", "buttonProps", "fluid"], outputs: ["onClick", "onFocus", "onBlur"] }, { kind: "ngmodule", type: RippleModule }, { kind: "component", type: LogoComponent, selector: "logo", inputs: ["width", "height"] }, { kind: "component", type: AppFloatingConfiguratorComponent, selector: "app-floating-configurator" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "pipe", type: TranslatePipe, name: "translate" }] }); }
|
|
5396
5396
|
}
|
|
5397
5397
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: UnauthorizedComponent, decorators: [{
|
|
5398
5398
|
type: Component,
|
|
5399
5399
|
args: [{
|
|
5400
|
-
template: `
|
|
5401
|
-
<app-floating-configurator />
|
|
5402
|
-
<div
|
|
5403
|
-
class="bg-surface-50 dark:bg-surface-950 flex items-center justify-center min-h-screen min-w-[100vw] overflow-hidden">
|
|
5404
|
-
<div class="flex flex-col items-center justify-center">
|
|
5405
|
-
<div
|
|
5406
|
-
style="border-radius: 56px; padding: 0.3rem; background: linear-gradient(180deg, var(--primary-color) 10%, rgba(33, 150, 243, 0) 30%)">
|
|
5407
|
-
<div class="w-full bg-surface-0 dark:bg-surface-900 py-20 px-8 sm:px-20" style="border-radius: 53px">
|
|
5408
|
-
<div class="flex flex-col items-center justify-center">
|
|
5409
|
-
<logo [height]="96" [width]="96" />
|
|
5410
|
-
</div>
|
|
5411
|
-
<div class="text-center mb-8">
|
|
5412
|
-
<div class="text-surface-900 dark:text-surface-0 text-3xl font-medium mb-4">
|
|
5413
|
-
{{ 'unauthorized.welcomeToOip' | translate }}
|
|
5414
|
-
</div>
|
|
5415
|
-
<span class="text-muted-color font-medium">{{ 'unauthorized.signInToContinue' | translate }}</span>
|
|
5416
|
-
</div>
|
|
5417
|
-
<div>
|
|
5418
|
-
<p-button
|
|
5419
|
-
id="oip-unauthorized-error-sign-in-button"
|
|
5420
|
-
label="{{ 'unauthorized.signIn' | translate }}"
|
|
5421
|
-
styleClass="w-full"
|
|
5422
|
-
(click)="signIn()"></p-button>
|
|
5423
|
-
</div>
|
|
5424
|
-
</div>
|
|
5425
|
-
</div>
|
|
5426
|
-
</div>
|
|
5427
|
-
</div>
|
|
5400
|
+
template: `
|
|
5401
|
+
<app-floating-configurator />
|
|
5402
|
+
<div
|
|
5403
|
+
class="bg-surface-50 dark:bg-surface-950 flex items-center justify-center min-h-screen min-w-[100vw] overflow-hidden">
|
|
5404
|
+
<div class="flex flex-col items-center justify-center">
|
|
5405
|
+
<div
|
|
5406
|
+
style="border-radius: 56px; padding: 0.3rem; background: linear-gradient(180deg, var(--primary-color) 10%, rgba(33, 150, 243, 0) 30%)">
|
|
5407
|
+
<div class="w-full bg-surface-0 dark:bg-surface-900 py-20 px-8 sm:px-20" style="border-radius: 53px">
|
|
5408
|
+
<div class="flex flex-col items-center justify-center">
|
|
5409
|
+
<logo [height]="96" [width]="96" />
|
|
5410
|
+
</div>
|
|
5411
|
+
<div class="text-center mb-8">
|
|
5412
|
+
<div class="text-surface-900 dark:text-surface-0 text-3xl font-medium mb-4">
|
|
5413
|
+
{{ 'unauthorized.welcomeToOip' | translate }}
|
|
5414
|
+
</div>
|
|
5415
|
+
<span class="text-muted-color font-medium">{{ 'unauthorized.signInToContinue' | translate }}</span>
|
|
5416
|
+
</div>
|
|
5417
|
+
<div>
|
|
5418
|
+
<p-button
|
|
5419
|
+
id="oip-unauthorized-error-sign-in-button"
|
|
5420
|
+
label="{{ 'unauthorized.signIn' | translate }}"
|
|
5421
|
+
styleClass="w-full"
|
|
5422
|
+
(click)="signIn()"></p-button>
|
|
5423
|
+
</div>
|
|
5424
|
+
</div>
|
|
5425
|
+
</div>
|
|
5426
|
+
</div>
|
|
5427
|
+
</div>
|
|
5428
5428
|
`,
|
|
5429
5429
|
imports: [
|
|
5430
5430
|
ButtonModule,
|