coer-elements 2.0.4 → 2.0.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/components/lib/coer-accordion/coer-accordion.component.d.ts +4 -4
- package/components/lib/coer-button/coer-button.component.d.ts +7 -7
- package/components/lib/coer-checkbox/coer-checkbox.component.d.ts +1 -1
- package/components/lib/coer-datebox/coer-datebox.component.d.ts +8 -7
- package/components/lib/coer-dropdown/coer-dropdown.component.d.ts +12 -12
- package/components/lib/coer-filebox/coer-filebox.component.d.ts +7 -7
- package/components/lib/coer-form/coer-form.component.d.ts +1 -1
- package/components/lib/coer-grid/coer-grid.component.d.ts +9 -9
- package/components/lib/coer-grid/coer-grid.extension.d.ts +19 -15
- package/components/lib/coer-list/coer-list.component.d.ts +9 -9
- package/components/lib/coer-modal/coer-modal.component.d.ts +1 -1
- package/components/lib/coer-numberbox/coer-numberbox.component.d.ts +1 -1
- package/components/lib/coer-secretbox/coer-secretbox.component.d.ts +1 -1
- package/components/lib/coer-sidenav/coer-toolbar/coer-toolbar.component.d.ts +8 -7
- package/components/lib/coer-switch/coer-switch.component.d.ts +1 -1
- package/components/lib/coer-textarea/coer-textarea.component.d.ts +1 -1
- package/components/lib/coer-textbox/coer-textbox.component.d.ts +1 -1
- package/fesm2022/coer-elements-components.mjs +216 -218
- package/fesm2022/coer-elements-components.mjs.map +1 -1
- package/fesm2022/coer-elements-guards.mjs +6 -6
- package/fesm2022/coer-elements-guards.mjs.map +1 -1
- package/fesm2022/coer-elements-interceptors.mjs +1 -1
- package/fesm2022/coer-elements-interceptors.mjs.map +1 -1
- package/fesm2022/coer-elements-interfaces.mjs.map +1 -1
- package/fesm2022/coer-elements-pages.mjs +215 -176
- package/fesm2022/coer-elements-pages.mjs.map +1 -1
- package/fesm2022/coer-elements-services.mjs +1 -1
- package/fesm2022/coer-elements-services.mjs.map +1 -1
- package/fesm2022/coer-elements-signals.mjs.map +1 -1
- package/fesm2022/coer-elements-tools.mjs +13 -1
- package/fesm2022/coer-elements-tools.mjs.map +1 -1
- package/fesm2022/coer-elements.mjs.map +1 -1
- package/interfaces/lib/coer-grid/grid-button-by-row.interface.d.ts +3 -0
- package/interfaces/lib/coer-grid/grid-header-button.interface.d.ts +1 -0
- package/interfaces/lib/coer-grid/grid-header-export-button.interface.d.ts +1 -0
- package/interfaces/lib/coer-grid/grid-header-import-button.interface.d.ts +1 -0
- package/interfaces/lib/coer-menu/menu-toolbar.interface.d.ts +6 -0
- package/interfaces/lib/login/user-login-response.interface.d.ts +12 -0
- package/interfaces/lib/login/user-login.interface.d.ts +10 -0
- package/interfaces/public-api.d.ts +4 -4
- package/package.json +12 -12
- package/pages/lib/coer-system/coer-system.component.d.ts +53 -34
- package/pages/lib/coer-system/login/login.component.d.ts +15 -15
- package/styles/angular-material.scss +3 -1
- package/styles/coer-elements.css +42 -43
- package/tools/lib/user.class.d.ts +3 -2
- package/interfaces/lib/image.interface.d.ts +0 -11
- package/interfaces/lib/login-response.interface.d.ts +0 -10
- package/interfaces/lib/toolbar-menu.interface.d.ts +0 -5
- /package/interfaces/lib/{login.interface.d.ts → login/login.interface.d.ts} +0 -0
package/styles/coer-elements.css
CHANGED
@@ -4,11 +4,11 @@ mat-expansion-panel.coer-accordion {
|
|
4
4
|
}
|
5
5
|
mat-expansion-panel.coer-accordion mat-expansion-panel-header {
|
6
6
|
height: 35px !important;
|
7
|
-
background-color:
|
7
|
+
background-color: var(--smoke) !important;
|
8
8
|
padding-left: 12px !important;
|
9
9
|
}
|
10
10
|
mat-expansion-panel.coer-accordion mat-expansion-panel-header span {
|
11
|
-
color: black !important;
|
11
|
+
color: var(--black) !important;
|
12
12
|
font-size: 16px !important;
|
13
13
|
}
|
14
14
|
mat-expansion-panel.coer-accordion mat-expansion-panel-header mat-panel-title {
|
@@ -18,7 +18,6 @@ mat-expansion-panel.coer-accordion mat-expansion-panel-header mat-panel-title {
|
|
18
18
|
}
|
19
19
|
mat-expansion-panel.coer-accordion div.mat-expansion-panel-body {
|
20
20
|
padding: 0px !important;
|
21
|
-
color: #ffd106;
|
22
21
|
}
|
23
22
|
|
24
23
|
:root {
|
@@ -481,7 +480,7 @@ div.coer-button button.danger-filled {
|
|
481
480
|
color: var(--smoke) !important;
|
482
481
|
}
|
483
482
|
div.coer-button button.navigation-filled {
|
484
|
-
background-color: var(--
|
483
|
+
background-color: var(--navigation-inner) !important;
|
485
484
|
color: var(--smoke) !important;
|
486
485
|
}
|
487
486
|
div.coer-button button.dark-filled {
|
@@ -489,37 +488,37 @@ div.coer-button button.dark-filled {
|
|
489
488
|
color: var(--smoke) !important;
|
490
489
|
}
|
491
490
|
div.coer-button button.primary-outline {
|
492
|
-
background-color: white !important;
|
491
|
+
background-color: var(--white) !important;
|
493
492
|
border: 1px solid var(--primary-inner) !important;
|
494
493
|
color: var(--primary-inner) !important;
|
495
494
|
}
|
496
495
|
div.coer-button button.secondary-outline {
|
497
|
-
background-color: white !important;
|
496
|
+
background-color: var(--white) !important;
|
498
497
|
border: 1px solid var(--secondary-inner) !important;
|
499
498
|
color: var(--secondary-inner) !important;
|
500
499
|
}
|
501
500
|
div.coer-button button.success-outline {
|
502
|
-
background-color: white !important;
|
501
|
+
background-color: var(--white) !important;
|
503
502
|
border: 1px solid var(--success-inner) !important;
|
504
503
|
color: var(--success-inner) !important;
|
505
504
|
}
|
506
505
|
div.coer-button button.warning-outline {
|
507
|
-
background-color: white !important;
|
506
|
+
background-color: var(--white) !important;
|
508
507
|
border: 1px solid var(--warning-inner) !important;
|
509
508
|
color: var(--warning-inner) !important;
|
510
509
|
}
|
511
510
|
div.coer-button button.danger-outline {
|
512
|
-
background-color: white !important;
|
511
|
+
background-color: var(--white) !important;
|
513
512
|
border: 1px solid var(--danger-inner) !important;
|
514
513
|
color: var(--danger-inner) !important;
|
515
514
|
}
|
516
515
|
div.coer-button button.navigation-outline {
|
517
|
-
background-color: white !important;
|
516
|
+
background-color: var(--white) !important;
|
518
517
|
border: 1px solid var(--navigation-inner) !important;
|
519
|
-
color: var(
|
518
|
+
color: var(--navigation-inner) !important;
|
520
519
|
}
|
521
520
|
div.coer-button button.dark-outline {
|
522
|
-
background-color: white !important;
|
521
|
+
background-color: var(--white) !important;
|
523
522
|
border: 1px solid var(--black) !important;
|
524
523
|
color: var(--black) !important;
|
525
524
|
}
|
@@ -591,7 +590,7 @@ div.coer-button button.readonly:hover,
|
|
591
590
|
div.coer-button button.readonly:focus {
|
592
591
|
background-color: rgb(223, 222, 222) !important;
|
593
592
|
border-color: rgb(223, 222, 222) !important;
|
594
|
-
color: white !important;
|
593
|
+
color: var(--white) !important;
|
595
594
|
}
|
596
595
|
div.coer-button coer-button[ishidden=true],
|
597
596
|
div.coer-button coer-button[ng-reflect-invisible=true] {
|
@@ -645,8 +644,8 @@ div.coer-checkbox mat-checkbox div.mdc-form-field.mat-internal-form-field label.
|
|
645
644
|
background-color: transparent !important;
|
646
645
|
}
|
647
646
|
div.coer-checkbox mat-checkbox.mat-mdc-checkbox-checked div.mdc-form-field.mat-internal-form-field div.mdc-checkbox div.mdc-checkbox__background {
|
648
|
-
background-color: var(--
|
649
|
-
border-color: var(--
|
647
|
+
background-color: var(--primary-inner) !important;
|
648
|
+
border-color: var(--primary-inner) !important;
|
650
649
|
}
|
651
650
|
|
652
651
|
coer-grid table tbody tr td.check-box mat-checkbox div.mdc-form-field.mat-internal-form-field div.mdc-checkbox,
|
@@ -699,7 +698,7 @@ div.coer-date-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field d
|
|
699
698
|
top: 20px !important;
|
700
699
|
}
|
701
700
|
div.coer-date-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix label.mdc-floating-label--float-above mat-label {
|
702
|
-
color: var(--
|
701
|
+
color: var(--primary-inner);
|
703
702
|
font-weight: bold;
|
704
703
|
position: relative;
|
705
704
|
left: -10px;
|
@@ -713,7 +712,7 @@ div.coer-date-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field d
|
|
713
712
|
div.coer-date-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active,
|
714
713
|
div.coer-date-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active::before,
|
715
714
|
div.coer-date-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active::after {
|
716
|
-
border-bottom-color: var(--
|
715
|
+
border-bottom-color: var(--primary-inner) !important;
|
717
716
|
}
|
718
717
|
div.coer-date-box mat-form-field div.mat-mdc-form-field-subscript-wrapper.mat-mdc-form-field-bottom-align {
|
719
718
|
height: 0px !important;
|
@@ -772,7 +771,7 @@ div.coer-date-box div.button-container {
|
|
772
771
|
background-color: rgb(229.517167382, 231.3519313305, 232.982832618) !important;
|
773
772
|
}
|
774
773
|
div.coer-date-box .mat-datepicker-toggle-active * {
|
775
|
-
color: var(--
|
774
|
+
color: var(--primary-inner) !important;
|
776
775
|
}
|
777
776
|
|
778
777
|
coer-grid table tbody tr td.coer-textbox mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field {
|
@@ -913,7 +912,7 @@ div.coer-grid tr.loading {
|
|
913
912
|
background-color: rgba(187, 187, 187, 0.5137254902) !important;
|
914
913
|
}
|
915
914
|
div.coer-grid div.loading i.spinner-border {
|
916
|
-
color: var(--
|
915
|
+
color: var(--primary-inner) !important;
|
917
916
|
width: 70px !important;
|
918
917
|
height: 70px !important;
|
919
918
|
font-size: 20px !important;
|
@@ -926,7 +925,7 @@ div.coer-grid td.check-box div.spinner-border-container {
|
|
926
925
|
div.coer-grid td.check-box div.spinner-border-container i.spinner-border {
|
927
926
|
width: 15px !important;
|
928
927
|
height: 15px !important;
|
929
|
-
color: var(--
|
928
|
+
color: var(--primary-inner) !important;
|
930
929
|
}
|
931
930
|
div.coer-grid table thead tr th.check-box > div,
|
932
931
|
div.coer-grid table tbody tr td.check-box > div {
|
@@ -987,7 +986,7 @@ div.coer-list ul.coer-list {
|
|
987
986
|
width: 100%;
|
988
987
|
border: solid 1px #ccc;
|
989
988
|
display: block;
|
990
|
-
background: white;
|
989
|
+
background: var(--white);
|
991
990
|
border-radius: 4px;
|
992
991
|
overflow: auto;
|
993
992
|
}
|
@@ -1000,7 +999,7 @@ div.coer-list li.coer-list-box {
|
|
1000
999
|
align-items: center;
|
1001
1000
|
justify-content: space-between;
|
1002
1001
|
box-sizing: border-box;
|
1003
|
-
background: white;
|
1002
|
+
background: var(--white);
|
1004
1003
|
font-size: 14px;
|
1005
1004
|
}
|
1006
1005
|
div.coer-list li.coer-list-box div.coer-list-content {
|
@@ -1043,7 +1042,7 @@ div.coer-list div.no-data {
|
|
1043
1042
|
width: 100%;
|
1044
1043
|
height: 100%;
|
1045
1044
|
font-size: 25px;
|
1046
|
-
color: gray;
|
1045
|
+
color: var(--gray);
|
1047
1046
|
z-index: 1;
|
1048
1047
|
}
|
1049
1048
|
div.coer-list div.loading {
|
@@ -1129,7 +1128,7 @@ div.coer-number-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field
|
|
1129
1128
|
top: 20px !important;
|
1130
1129
|
}
|
1131
1130
|
div.coer-number-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix label.mdc-floating-label--float-above mat-label {
|
1132
|
-
color: var(--
|
1131
|
+
color: var(--primary-inner);
|
1133
1132
|
font-weight: bold;
|
1134
1133
|
position: relative;
|
1135
1134
|
left: -10px;
|
@@ -1146,7 +1145,7 @@ div.coer-number-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field
|
|
1146
1145
|
div.coer-number-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active,
|
1147
1146
|
div.coer-number-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active::before,
|
1148
1147
|
div.coer-number-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active::after {
|
1149
|
-
border-bottom-color: var(--
|
1148
|
+
border-bottom-color: var(--primary-inner) !important;
|
1150
1149
|
}
|
1151
1150
|
div.coer-number-box mat-form-field div.mat-mdc-form-field-subscript-wrapper.mat-mdc-form-field-bottom-align {
|
1152
1151
|
height: 0px !important;
|
@@ -1238,7 +1237,7 @@ header.coer-page-title nav {
|
|
1238
1237
|
height: auto;
|
1239
1238
|
min-height: 25px;
|
1240
1239
|
font-size: small;
|
1241
|
-
background-color:
|
1240
|
+
background-color: rgb(239.05, 239.05, 239.05) !important;
|
1242
1241
|
display: flex;
|
1243
1242
|
align-items: center;
|
1244
1243
|
justify-content: space-between;
|
@@ -1273,7 +1272,7 @@ div.coer-dropdown .btn-group {
|
|
1273
1272
|
width: 100% !important;
|
1274
1273
|
}
|
1275
1274
|
div.coer-dropdown ul.dropdown-menu {
|
1276
|
-
background-color: white !important;
|
1275
|
+
background-color: var(--white) !important;
|
1277
1276
|
border-top-left-radius: 0px !important;
|
1278
1277
|
border-top-right-radius: 0px !important;
|
1279
1278
|
max-height: 205px !important;
|
@@ -1283,13 +1282,13 @@ div.coer-dropdown ul.dropdown-menu {
|
|
1283
1282
|
}
|
1284
1283
|
div.coer-dropdown .dropdown-divider {
|
1285
1284
|
margin: 0px !important;
|
1286
|
-
background-color: white !important;
|
1285
|
+
background-color: var(--white) !important;
|
1287
1286
|
}
|
1288
1287
|
div.coer-dropdown ul.dropdown-menu li:not(.no-options):hover,
|
1289
1288
|
div.coer-dropdown ul.dropdown-menu li > div:not(.no-options):hover,
|
1290
1289
|
div.coer-dropdown ul.dropdown-menu li:not(.dropdown-item-focus):hover,
|
1291
1290
|
div.coer-dropdown ul.dropdown-menu li > div:not(.dropdown-item-focus):hover {
|
1292
|
-
color: black !important;
|
1291
|
+
color: var(--black) !important;
|
1293
1292
|
background-color: rgb(240.618852459, 246.3831967213, 254.881147541) !important;
|
1294
1293
|
}
|
1295
1294
|
div.coer-dropdown ul.dropdown-menu li:last-child hr.dropdown-divider,
|
@@ -1332,7 +1331,7 @@ div.coer-select-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field
|
|
1332
1331
|
top: 20px !important;
|
1333
1332
|
}
|
1334
1333
|
div.coer-select-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix label.mdc-floating-label--float-above mat-label {
|
1335
|
-
color: var(--
|
1334
|
+
color: var(--primary-inner);
|
1336
1335
|
font-weight: bold;
|
1337
1336
|
position: relative;
|
1338
1337
|
left: -10px;
|
@@ -1346,7 +1345,7 @@ div.coer-select-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field
|
|
1346
1345
|
div.coer-select-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active,
|
1347
1346
|
div.coer-select-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active::before,
|
1348
1347
|
div.coer-select-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active::after {
|
1349
|
-
border-bottom-color: var(--
|
1348
|
+
border-bottom-color: var(--primary-inner) !important;
|
1350
1349
|
}
|
1351
1350
|
div.coer-select-box mat-form-field div.mat-mdc-form-field-subscript-wrapper.mat-mdc-form-field-bottom-align {
|
1352
1351
|
height: 0px !important;
|
@@ -1404,7 +1403,7 @@ div.coer-select-box .btn-group {
|
|
1404
1403
|
width: 100% !important;
|
1405
1404
|
}
|
1406
1405
|
div.coer-select-box ul.dropdown-menu {
|
1407
|
-
background-color: white !important;
|
1406
|
+
background-color: var(--white) !important;
|
1408
1407
|
border-top-left-radius: 0px !important;
|
1409
1408
|
border-top-right-radius: 0px !important;
|
1410
1409
|
max-height: 205px !important;
|
@@ -1413,11 +1412,11 @@ div.coer-select-box ul.dropdown-menu {
|
|
1413
1412
|
}
|
1414
1413
|
div.coer-select-box .dropdown-divider {
|
1415
1414
|
margin: 0px !important;
|
1416
|
-
background-color: white !important;
|
1415
|
+
background-color: var(--white) !important;
|
1417
1416
|
}
|
1418
1417
|
div.coer-select-box ul.dropdown-menu li:not(.dropdown-item-focus):hover,
|
1419
1418
|
div.coer-select-box ul.dropdown-menu li > div:not(.dropdown-item-focus):hover {
|
1420
|
-
color: black !important;
|
1419
|
+
color: var(--black) !important;
|
1421
1420
|
background-color: rgb(240.618852459, 246.3831967213, 254.881147541) !important;
|
1422
1421
|
}
|
1423
1422
|
div.coer-select-box ul.dropdown-menu li:last-child hr.dropdown-divider,
|
@@ -1641,7 +1640,7 @@ div.coer-switch {
|
|
1641
1640
|
position: relative !important;
|
1642
1641
|
}
|
1643
1642
|
div.coer-switch mat-slide-toggle div.mdc-form-field.mat-internal-form-field button .mdc-switch__track::after {
|
1644
|
-
background-color: var(--
|
1643
|
+
background-color: var(--primary-inner) !important;
|
1645
1644
|
filter: opacity(0.6) !important;
|
1646
1645
|
}
|
1647
1646
|
div.coer-switch mat-slide-toggle div.mdc-form-field.mat-internal-form-field button .mdc-switch__handle-track .mdc-switch__ripple {
|
@@ -1649,7 +1648,7 @@ div.coer-switch mat-slide-toggle div.mdc-form-field.mat-internal-form-field butt
|
|
1649
1648
|
height: 30px !important;
|
1650
1649
|
}
|
1651
1650
|
div.coer-switch mat-slide-toggle div.mdc-form-field.mat-internal-form-field button.mdc-switch.mdc-switch--selected.mdc-switch--checked .mdc-switch__handle-track .mdc-switch__handle .mdc-switch__icons {
|
1652
|
-
background-color: var(--
|
1651
|
+
background-color: var(--primary-inner) !important;
|
1653
1652
|
border-radius: 20px !important;
|
1654
1653
|
}
|
1655
1654
|
div.coer-switch mat-slide-toggle div.mdc-form-field.mat-internal-form-field label,
|
@@ -1674,15 +1673,15 @@ coer-grid div.coer-switch {
|
|
1674
1673
|
|
1675
1674
|
div.coer-tab mat-tab-group mat-tab-header.mat-mdc-tab-header {
|
1676
1675
|
background-color: rgba(245, 245, 245, 0.384) !important;
|
1677
|
-
border-bottom: 1px solid
|
1676
|
+
border-bottom: 1px solid var(--smoke) !important;
|
1678
1677
|
}
|
1679
1678
|
div.coer-tab mat-tab-group mat-tab-header.mat-mdc-tab-header div.mat-mdc-tab-label-container div.mat-mdc-tab-list div.mat-mdc-tab-labels div.mdc-tab.mat-mdc-tab {
|
1680
1679
|
padding: 0px !important;
|
1681
1680
|
height: 35px !important;
|
1682
1681
|
}
|
1683
1682
|
div.coer-tab mat-tab-group mat-tab-header.mat-mdc-tab-header div.mat-mdc-tab-label-container div.mat-mdc-tab-list div.mat-mdc-tab-labels div.mdc-tab--active.mdc-tab-indicator--active * {
|
1684
|
-
color: var(--
|
1685
|
-
border-color: var(--
|
1683
|
+
color: var(--primary-inner) !important;
|
1684
|
+
border-color: var(--primary-inner) !important;
|
1686
1685
|
}
|
1687
1686
|
div.coer-tab mat-tab-group mat-tab-header.mat-mdc-tab-header span.tab {
|
1688
1687
|
padding: 10px 20px !important;
|
@@ -1715,7 +1714,7 @@ div.coer-textarea mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field d
|
|
1715
1714
|
top: 20px !important;
|
1716
1715
|
}
|
1717
1716
|
div.coer-textarea mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix label.mdc-floating-label--float-above mat-label {
|
1718
|
-
color: var(--
|
1717
|
+
color: var(--primary-inner);
|
1719
1718
|
font-weight: bold;
|
1720
1719
|
position: relative;
|
1721
1720
|
left: -10px;
|
@@ -1730,7 +1729,7 @@ div.coer-textarea mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field d
|
|
1730
1729
|
div.coer-textarea mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active,
|
1731
1730
|
div.coer-textarea mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active::before,
|
1732
1731
|
div.coer-textarea mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active::after {
|
1733
|
-
border-bottom-color: var(--
|
1732
|
+
border-bottom-color: var(--primary-inner) !important;
|
1734
1733
|
}
|
1735
1734
|
div.coer-textarea mat-form-field div.mat-mdc-form-field-subscript-wrapper.mat-mdc-form-field-bottom-align {
|
1736
1735
|
height: 0px !important;
|
@@ -1808,7 +1807,7 @@ div.coer-text-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field d
|
|
1808
1807
|
top: 20px !important;
|
1809
1808
|
}
|
1810
1809
|
div.coer-text-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mat-mdc-form-field-flex div.mat-mdc-form-field-infix label.mdc-floating-label--float-above mat-label {
|
1811
|
-
color: var(--
|
1810
|
+
color: var(--primary-inner);
|
1812
1811
|
font-weight: bold;
|
1813
1812
|
position: relative;
|
1814
1813
|
left: -10px;
|
@@ -1822,7 +1821,7 @@ div.coer-text-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field d
|
|
1822
1821
|
div.coer-text-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active,
|
1823
1822
|
div.coer-text-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active::before,
|
1824
1823
|
div.coer-text-box mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field div.mdc-line-ripple.mdc-line-ripple--active::after {
|
1825
|
-
border-bottom-color: var(--
|
1824
|
+
border-bottom-color: var(--primary-inner) !important;
|
1826
1825
|
}
|
1827
1826
|
div.coer-text-box mat-form-field div.mat-mdc-form-field-subscript-wrapper.mat-mdc-form-field-bottom-align {
|
1828
1827
|
height: 0px !important;
|
@@ -1,9 +1,10 @@
|
|
1
|
+
import { IUserLoginResponse } from "coer-elements/interfaces";
|
1
2
|
export declare class User {
|
2
3
|
private static readonly storage;
|
3
4
|
/** */
|
4
|
-
static Set
|
5
|
+
static Set(user: IUserLoginResponse): void;
|
5
6
|
/** */
|
6
|
-
static Get
|
7
|
+
static Get(): IUserLoginResponse | null;
|
7
8
|
/** */
|
8
9
|
static LogIn(): boolean;
|
9
10
|
/** */
|
File without changes
|