@resolveio/client-lib-core 1.2.5 → 1.2.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.
@@ -3653,10 +3653,10 @@ class CollapseTableComponent {
3653
3653
  }
3654
3654
  }
3655
3655
  CollapseTableComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.9", ngImport: i0, type: CollapseTableComponent, deps: [{ token: ResizeService }, { token: AccountManagerService }], target: i0.ɵɵFactoryTarget.Component });
3656
- CollapseTableComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.9", type: CollapseTableComponent, selector: "collapse-table", inputs: { collapseSize: "collapseSize", tableFixed: "tableFixed", headerFixed: "headerFixed", secondaryColor: "secondaryColor", tertiaryColor: "tertiaryColor" }, ngImport: i0, template: "<style>\n ::ng-deep :root {\n --primary-table-color: #3b3ee3;\n --primary-table-font-color: white;\n --font-size: 12px;\n --secondary-table-color: #87ceeb;\n --secondary-table-font-color: #000000;\n --tertiary-table-color: #ff4500;\n --tertiary-table-font-color: #000000;\n }\n\n\t:host /deep/ .collapseTable {\n border: 1px solid #ccc;\n margin: 0;\n padding: 0;\n width: 100%;\n /*table-layout: fixed;*/ \n }\n :host /deep/ .collapseTable tr {\n border: 1px solid #ddd;\n padding: 0.35em;\n }\n :host /deep/ .collapseTable th, :host /deep/ .collapseTable td {\n padding: 0.625em;\n text-align: center;\n vertical-align: middle;\n }\n :host /deep/ .collapseTable th {\n letter-spacing: 0.1em;\n text-transform: uppercase;\n background-color: var(--primary-table-color);\n color: var(--primary-table-font-color);\n font-size: var(--font-size);\n position: sticky;\n z-index: 10;\n top: 0;\n } \n :host /deep/ .collapseTable-sec {\n border: 1px solid #ccc;\n margin: 0;\n padding: 0;\n width: 100%;\n }\n :host /deep/ .collapseTable-sec tr {\n border: 1px solid #ddd;\n padding: 0.35em;\n }\n :host /deep/ .collapseTable-sec th, :host /deep/ .collapseTable-sec td {\n padding: 0.625em;\n text-align: center;\n }\n :host /deep/ .collapseTable-sec th {\n letter-spacing: 0.1em;\n text-transform: uppercase;\n background-color: var(--secondary-table-color);\n color: var(--secondary-table-font-color);\n font-size: var(--font-size);\n position: sticky;\n z-index: 10;\n top: 0;\n } \n :host /deep/ .collapseTable-tert {\n border: 1px solid #ccc;\n margin: 0;\n padding: 0;\n width: 100%;\n }\n :host /deep/ .collapseTable-tert tr {\n border: 1px solid #ddd;\n padding: 0.35em;\n }\n :host /deep/ .collapseTable-tert th, :host /deep/ .collapseTable-tert td {\n padding: 0.625em;\n text-align: center;\n }\n :host /deep/ .collapseTable-tert th {\n letter-spacing: 0.1em;\n text-transform: uppercase;\n background-color: var(--tertiary-table-color);\n color: var(--tertiary-table-font-color);\n font-size: var(--font-size);\n position: sticky;\n z-index: 10;\n top: 0;\n }\n \n .fixed {\n table-layout: fixed;\n }\n\n :host /deep/ .headerFixed thead, :host /deep/ .headerFixed tbody tr {\n display:table;\n width:100%;\n table-layout:fixed;\n }\n\n :host /deep/ .collapseTable,\n :host /deep/ .collapseTable-sec,\n :host /deep/ .collapseTable-tert {\n box-shadow: 0 0 15px rgba(0,0,0,0.3); \n }\n \n :host /deep/ .collapseTable > thead tr:first-child th:first-child,\n :host /deep/ .collapseTable-sec > thead tr:first-child th:first-child,\n :host /deep/ .collapseTable-tert > thead tr:first-child th:first-child {\n border-top-left-radius: 10px;\n }\n\n :host /deep/ .collapseTable > thead tr:first-child th:last-child,\n :host /deep/ .collapseTable-sec > thead tr:first-child th:last-child,\n :host /deep/ .collapseTable-tert > thead tr:first-child th:last-child {\n border-top-right-radius: 10px;\n }\n \n @keyframes fadeIn {\n to {\n opacity: 1;\n transform: translateY(0);\n }\n }\n\n :host /deep/ .collapseTable tr,\n :host /deep/ .collapseTable-sec tr,\n :host /deep/ .collapseTable-tert tr {\n opacity: 0;\n transform: translateY(-20px);\n animation: fadeIn 0.5s forwards;\n }\n\n \n\n @keyframes shimmer {\n 0%, 90% {\n background-position: 120% 0;\n }\n 100% {\n background-position: -80% 0;\n }\n }\n\n :host /deep/ .collapseTable > thead {\n position: relative;\n background-color: var(--primary-table-color); \n z-index: 10;\n }\n\n :host /deep/ .collapseTable > thead::before {\n content: \"\";\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n background: linear-gradient(\n -75deg,\n rgba(255, 255, 255, 0) 40%, \n rgba(255, 255, 255, 0.7) 50%, \n rgba(255, 255, 255, 0) 60%\n );\n background-size: 200% 100%;\n animation: shimmer 15s linear infinite;\n animation-fill-mode: forwards;\n z-index: 11;\n } \n\n /* :host /deep/ .collapseTable .collapseTable-sec > thead,\n :host /deep/ .collapseTable .collapseTable-tert > thead {\n position: static; \n background: none;\n } */\n\n /* :host /deep/ .collapseTable .collapseTable-sec > thead::before,\n :host /deep/ .collapseTable .collapseTable-tert > thead::before {\n content: none; \n } */\n\n\n .hide {\n display: none;\n }\n</style>\n\n<div class=\"table-responsive-xl\">\n <table [ngClass]=\"getCollapseClass()\" style=\"border: none\" cellspacing=\"0\" cellpadding=\"0\">\n <ng-content></ng-content>\n </table>\n</div>", styles: ["\n ::ng-deep :root {\n --primary-table-color: #3b3ee3;\n --primary-table-font-color: white;\n --font-size: 12px;\n --secondary-table-color: #87ceeb;\n --secondary-table-font-color: #000000;\n --tertiary-table-color: #ff4500;\n --tertiary-table-font-color: #000000;\n }\n\n\t:host /deep/ .collapseTable {\n border: 1px solid #ccc;\n margin: 0;\n padding: 0;\n width: 100%;\n /*table-layout: fixed;*/ \n }\n :host /deep/ .collapseTable tr {\n border: 1px solid #ddd;\n padding: 0.35em;\n }\n :host /deep/ .collapseTable th, :host /deep/ .collapseTable td {\n padding: 0.625em;\n text-align: center;\n vertical-align: middle;\n }\n :host /deep/ .collapseTable th {\n letter-spacing: 0.1em;\n text-transform: uppercase;\n background-color: var(--primary-table-color);\n color: var(--primary-table-font-color);\n font-size: var(--font-size);\n position: sticky;\n z-index: 10;\n top: 0;\n } \n :host /deep/ .collapseTable-sec {\n border: 1px solid #ccc;\n margin: 0;\n padding: 0;\n width: 100%;\n }\n :host /deep/ .collapseTable-sec tr {\n border: 1px solid #ddd;\n padding: 0.35em;\n }\n :host /deep/ .collapseTable-sec th, :host /deep/ .collapseTable-sec td {\n padding: 0.625em;\n text-align: center;\n }\n :host /deep/ .collapseTable-sec th {\n letter-spacing: 0.1em;\n text-transform: uppercase;\n background-color: var(--secondary-table-color);\n color: var(--secondary-table-font-color);\n font-size: var(--font-size);\n position: sticky;\n z-index: 10;\n top: 0;\n } \n :host /deep/ .collapseTable-tert {\n border: 1px solid #ccc;\n margin: 0;\n padding: 0;\n width: 100%;\n }\n :host /deep/ .collapseTable-tert tr {\n border: 1px solid #ddd;\n padding: 0.35em;\n }\n :host /deep/ .collapseTable-tert th, :host /deep/ .collapseTable-tert td {\n padding: 0.625em;\n text-align: center;\n }\n :host /deep/ .collapseTable-tert th {\n letter-spacing: 0.1em;\n text-transform: uppercase;\n background-color: var(--tertiary-table-color);\n color: var(--tertiary-table-font-color);\n font-size: var(--font-size);\n position: sticky;\n z-index: 10;\n top: 0;\n }\n \n .fixed {\n table-layout: fixed;\n }\n\n :host /deep/ .headerFixed thead, :host /deep/ .headerFixed tbody tr {\n display:table;\n width:100%;\n table-layout:fixed;\n }\n\n :host /deep/ .collapseTable,\n :host /deep/ .collapseTable-sec,\n :host /deep/ .collapseTable-tert {\n box-shadow: 0 0 15px rgba(0,0,0,0.3); \n }\n \n :host /deep/ .collapseTable > thead tr:first-child th:first-child,\n :host /deep/ .collapseTable-sec > thead tr:first-child th:first-child,\n :host /deep/ .collapseTable-tert > thead tr:first-child th:first-child {\n border-top-left-radius: 10px;\n }\n\n :host /deep/ .collapseTable > thead tr:first-child th:last-child,\n :host /deep/ .collapseTable-sec > thead tr:first-child th:last-child,\n :host /deep/ .collapseTable-tert > thead tr:first-child th:last-child {\n border-top-right-radius: 10px;\n }\n \n @keyframes fadeIn {\n to {\n opacity: 1;\n transform: translateY(0);\n }\n }\n\n :host /deep/ .collapseTable tr,\n :host /deep/ .collapseTable-sec tr,\n :host /deep/ .collapseTable-tert tr {\n opacity: 0;\n transform: translateY(-20px);\n animation: fadeIn 0.5s forwards;\n }\n\n \n\n @keyframes shimmer {\n 0%, 90% {\n background-position: 120% 0;\n }\n 100% {\n background-position: -80% 0;\n }\n }\n\n :host /deep/ .collapseTable > thead {\n position: relative;\n background-color: var(--primary-table-color); \n z-index: 10;\n }\n\n :host /deep/ .collapseTable > thead::before {\n content: \"\";\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n background: linear-gradient(\n -75deg,\n rgba(255, 255, 255, 0) 40%, \n rgba(255, 255, 255, 0.7) 50%, \n rgba(255, 255, 255, 0) 60%\n );\n background-size: 200% 100%;\n animation: shimmer 15s linear infinite;\n animation-fill-mode: forwards;\n z-index: 11;\n } \n\n /* :host /deep/ .collapseTable .collapseTable-sec > thead,\n :host /deep/ .collapseTable .collapseTable-tert > thead {\n position: static; \n background: none;\n } */\n\n /* :host /deep/ .collapseTable .collapseTable-sec > thead::before,\n :host /deep/ .collapseTable .collapseTable-tert > thead::before {\n content: none; \n } */\n\n\n .hide {\n display: none;\n }\n"], dependencies: [{ kind: "directive", type: i7.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
3656
+ CollapseTableComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.9", type: CollapseTableComponent, selector: "collapse-table", inputs: { collapseSize: "collapseSize", tableFixed: "tableFixed", headerFixed: "headerFixed", secondaryColor: "secondaryColor", tertiaryColor: "tertiaryColor" }, ngImport: i0, template: "<style>\n ::ng-deep :root {\n --primary-table-color: #3b3ee3;\n --primary-table-font-color: white;\n --font-size: 12px;\n --secondary-table-color: #87ceeb;\n --secondary-table-font-color: #000000;\n --tertiary-table-color: #ff4500;\n --tertiary-table-font-color: #000000;\n }\n\n\t:host /deep/ .collapseTable {\n border: 1px solid #ccc;\n margin: 0;\n padding: 0;\n width: 100%;\n /*table-layout: fixed;*/ \n }\n :host /deep/ .collapseTable tr {\n border: 1px solid #ddd;\n padding: 0.35em;\n }\n :host /deep/ .collapseTable th, :host /deep/ .collapseTable td {\n padding: 0.625em;\n text-align: center;\n vertical-align: middle;\n }\n :host /deep/ .collapseTable th {\n letter-spacing: 0.1em;\n text-transform: uppercase;\n background-color: var(--primary-table-color);\n color: var(--primary-table-font-color);\n font-size: var(--font-size);\n position: sticky;\n z-index: 10;\n top: 0;\n } \n :host /deep/ .collapseTable-sec {\n border: 1px solid #ccc;\n margin: 0;\n padding: 0;\n width: 100%;\n }\n :host /deep/ .collapseTable-sec tr {\n border: 1px solid #ddd;\n padding: 0.35em;\n }\n :host /deep/ .collapseTable-sec th, :host /deep/ .collapseTable-sec td {\n padding: 0.625em;\n text-align: center;\n }\n :host /deep/ .collapseTable-sec th {\n letter-spacing: 0.1em;\n text-transform: uppercase;\n background-color: var(--secondary-table-color);\n color: var(--secondary-table-font-color);\n font-size: var(--font-size);\n position: sticky;\n z-index: 10;\n top: 0;\n } \n :host /deep/ .collapseTable-tert {\n border: 1px solid #ccc;\n margin: 0;\n padding: 0;\n width: 100%;\n }\n :host /deep/ .collapseTable-tert tr {\n border: 1px solid #ddd;\n padding: 0.35em;\n }\n :host /deep/ .collapseTable-tert th, :host /deep/ .collapseTable-tert td {\n padding: 0.625em;\n text-align: center;\n }\n :host /deep/ .collapseTable-tert th {\n letter-spacing: 0.1em;\n text-transform: uppercase;\n background-color: var(--tertiary-table-color);\n color: var(--tertiary-table-font-color);\n font-size: var(--font-size);\n position: sticky;\n z-index: 10;\n top: 0;\n }\n \n .fixed {\n table-layout: fixed;\n }\n\n :host /deep/ .headerFixed thead, :host /deep/ .headerFixed tbody tr {\n display:table;\n width:100%;\n table-layout:fixed;\n }\n\n :host /deep/ .collapseTable,\n :host /deep/ .collapseTable-sec,\n :host /deep/ .collapseTable-tert {\n box-shadow: 0 0 15px rgba(0,0,0,0.3); \n }\n \n :host /deep/ .collapseTable > thead tr:first-child th:first-child,\n :host /deep/ .collapseTable-sec > thead tr:first-child th:first-child,\n :host /deep/ .collapseTable-tert > thead tr:first-child th:first-child {\n border-top-left-radius: 10px;\n }\n\n :host /deep/ .collapseTable > thead tr:first-child th:last-child,\n :host /deep/ .collapseTable-sec > thead tr:first-child th:last-child,\n :host /deep/ .collapseTable-tert > thead tr:first-child th:last-child {\n border-top-right-radius: 10px;\n }\n \n /* @keyframes fadeIn {\n to {\n opacity: 1;\n transform: translateY(0);\n }\n }\n\n :host /deep/ .collapseTable tr,\n :host /deep/ .collapseTable-sec tr,\n :host /deep/ .collapseTable-tert tr {\n opacity: 0;\n transform: translateY(-20px);\n animation: fadeIn 0.5s forwards;\n }\n\n \n\n @keyframes shimmer {\n 0%, 90% {\n background-position: 120% 0;\n }\n 100% {\n background-position: -80% 0;\n }\n }\n\n :host /deep/ .collapseTable > thead {\n position: relative;\n background-color: var(--primary-table-color); \n z-index: 10;\n }\n\n :host /deep/ .collapseTable > thead::before {\n content: \"\";\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n background: linear-gradient(\n -75deg,\n rgba(255, 255, 255, 0) 40%, \n rgba(255, 255, 255, 0.7) 50%, \n rgba(255, 255, 255, 0) 60%\n );\n background-size: 200% 100%;\n animation: shimmer 15s linear infinite;\n animation-fill-mode: forwards;\n z-index: 11;\n } */\n\n /* :host /deep/ .collapseTable .collapseTable-sec > thead,\n :host /deep/ .collapseTable .collapseTable-tert > thead {\n position: static; \n background: none;\n } */\n\n /* :host /deep/ .collapseTable .collapseTable-sec > thead::before,\n :host /deep/ .collapseTable .collapseTable-tert > thead::before {\n content: none; \n } */\n\n\n .hide {\n display: none;\n }\n</style>\n\n<div class=\"table-responsive-xl\">\n <table [ngClass]=\"getCollapseClass()\" style=\"border: none\" cellspacing=\"0\" cellpadding=\"0\">\n <ng-content></ng-content>\n </table>\n</div>", styles: ["\n ::ng-deep :root {\n --primary-table-color: #3b3ee3;\n --primary-table-font-color: white;\n --font-size: 12px;\n --secondary-table-color: #87ceeb;\n --secondary-table-font-color: #000000;\n --tertiary-table-color: #ff4500;\n --tertiary-table-font-color: #000000;\n }\n\n\t:host /deep/ .collapseTable {\n border: 1px solid #ccc;\n margin: 0;\n padding: 0;\n width: 100%;\n /*table-layout: fixed;*/ \n }\n :host /deep/ .collapseTable tr {\n border: 1px solid #ddd;\n padding: 0.35em;\n }\n :host /deep/ .collapseTable th, :host /deep/ .collapseTable td {\n padding: 0.625em;\n text-align: center;\n vertical-align: middle;\n }\n :host /deep/ .collapseTable th {\n letter-spacing: 0.1em;\n text-transform: uppercase;\n background-color: var(--primary-table-color);\n color: var(--primary-table-font-color);\n font-size: var(--font-size);\n position: sticky;\n z-index: 10;\n top: 0;\n } \n :host /deep/ .collapseTable-sec {\n border: 1px solid #ccc;\n margin: 0;\n padding: 0;\n width: 100%;\n }\n :host /deep/ .collapseTable-sec tr {\n border: 1px solid #ddd;\n padding: 0.35em;\n }\n :host /deep/ .collapseTable-sec th, :host /deep/ .collapseTable-sec td {\n padding: 0.625em;\n text-align: center;\n }\n :host /deep/ .collapseTable-sec th {\n letter-spacing: 0.1em;\n text-transform: uppercase;\n background-color: var(--secondary-table-color);\n color: var(--secondary-table-font-color);\n font-size: var(--font-size);\n position: sticky;\n z-index: 10;\n top: 0;\n } \n :host /deep/ .collapseTable-tert {\n border: 1px solid #ccc;\n margin: 0;\n padding: 0;\n width: 100%;\n }\n :host /deep/ .collapseTable-tert tr {\n border: 1px solid #ddd;\n padding: 0.35em;\n }\n :host /deep/ .collapseTable-tert th, :host /deep/ .collapseTable-tert td {\n padding: 0.625em;\n text-align: center;\n }\n :host /deep/ .collapseTable-tert th {\n letter-spacing: 0.1em;\n text-transform: uppercase;\n background-color: var(--tertiary-table-color);\n color: var(--tertiary-table-font-color);\n font-size: var(--font-size);\n position: sticky;\n z-index: 10;\n top: 0;\n }\n \n .fixed {\n table-layout: fixed;\n }\n\n :host /deep/ .headerFixed thead, :host /deep/ .headerFixed tbody tr {\n display:table;\n width:100%;\n table-layout:fixed;\n }\n\n :host /deep/ .collapseTable,\n :host /deep/ .collapseTable-sec,\n :host /deep/ .collapseTable-tert {\n box-shadow: 0 0 15px rgba(0,0,0,0.3); \n }\n \n :host /deep/ .collapseTable > thead tr:first-child th:first-child,\n :host /deep/ .collapseTable-sec > thead tr:first-child th:first-child,\n :host /deep/ .collapseTable-tert > thead tr:first-child th:first-child {\n border-top-left-radius: 10px;\n }\n\n :host /deep/ .collapseTable > thead tr:first-child th:last-child,\n :host /deep/ .collapseTable-sec > thead tr:first-child th:last-child,\n :host /deep/ .collapseTable-tert > thead tr:first-child th:last-child {\n border-top-right-radius: 10px;\n }\n \n /* @keyframes fadeIn {\n to {\n opacity: 1;\n transform: translateY(0);\n }\n }\n\n :host /deep/ .collapseTable tr,\n :host /deep/ .collapseTable-sec tr,\n :host /deep/ .collapseTable-tert tr {\n opacity: 0;\n transform: translateY(-20px);\n animation: fadeIn 0.5s forwards;\n }\n\n \n\n @keyframes shimmer {\n 0%, 90% {\n background-position: 120% 0;\n }\n 100% {\n background-position: -80% 0;\n }\n }\n\n :host /deep/ .collapseTable > thead {\n position: relative;\n background-color: var(--primary-table-color); \n z-index: 10;\n }\n\n :host /deep/ .collapseTable > thead::before {\n content: \"\";\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n background: linear-gradient(\n -75deg,\n rgba(255, 255, 255, 0) 40%, \n rgba(255, 255, 255, 0.7) 50%, \n rgba(255, 255, 255, 0) 60%\n );\n background-size: 200% 100%;\n animation: shimmer 15s linear infinite;\n animation-fill-mode: forwards;\n z-index: 11;\n } */\n\n /* :host /deep/ .collapseTable .collapseTable-sec > thead,\n :host /deep/ .collapseTable .collapseTable-tert > thead {\n position: static; \n background: none;\n } */\n\n /* :host /deep/ .collapseTable .collapseTable-sec > thead::before,\n :host /deep/ .collapseTable .collapseTable-tert > thead::before {\n content: none; \n } */\n\n\n .hide {\n display: none;\n }\n"], dependencies: [{ kind: "directive", type: i7.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
3657
3657
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.9", ngImport: i0, type: CollapseTableComponent, decorators: [{
3658
3658
  type: Component,
3659
- args: [{ selector: 'collapse-table', template: "<style>\n ::ng-deep :root {\n --primary-table-color: #3b3ee3;\n --primary-table-font-color: white;\n --font-size: 12px;\n --secondary-table-color: #87ceeb;\n --secondary-table-font-color: #000000;\n --tertiary-table-color: #ff4500;\n --tertiary-table-font-color: #000000;\n }\n\n\t:host /deep/ .collapseTable {\n border: 1px solid #ccc;\n margin: 0;\n padding: 0;\n width: 100%;\n /*table-layout: fixed;*/ \n }\n :host /deep/ .collapseTable tr {\n border: 1px solid #ddd;\n padding: 0.35em;\n }\n :host /deep/ .collapseTable th, :host /deep/ .collapseTable td {\n padding: 0.625em;\n text-align: center;\n vertical-align: middle;\n }\n :host /deep/ .collapseTable th {\n letter-spacing: 0.1em;\n text-transform: uppercase;\n background-color: var(--primary-table-color);\n color: var(--primary-table-font-color);\n font-size: var(--font-size);\n position: sticky;\n z-index: 10;\n top: 0;\n } \n :host /deep/ .collapseTable-sec {\n border: 1px solid #ccc;\n margin: 0;\n padding: 0;\n width: 100%;\n }\n :host /deep/ .collapseTable-sec tr {\n border: 1px solid #ddd;\n padding: 0.35em;\n }\n :host /deep/ .collapseTable-sec th, :host /deep/ .collapseTable-sec td {\n padding: 0.625em;\n text-align: center;\n }\n :host /deep/ .collapseTable-sec th {\n letter-spacing: 0.1em;\n text-transform: uppercase;\n background-color: var(--secondary-table-color);\n color: var(--secondary-table-font-color);\n font-size: var(--font-size);\n position: sticky;\n z-index: 10;\n top: 0;\n } \n :host /deep/ .collapseTable-tert {\n border: 1px solid #ccc;\n margin: 0;\n padding: 0;\n width: 100%;\n }\n :host /deep/ .collapseTable-tert tr {\n border: 1px solid #ddd;\n padding: 0.35em;\n }\n :host /deep/ .collapseTable-tert th, :host /deep/ .collapseTable-tert td {\n padding: 0.625em;\n text-align: center;\n }\n :host /deep/ .collapseTable-tert th {\n letter-spacing: 0.1em;\n text-transform: uppercase;\n background-color: var(--tertiary-table-color);\n color: var(--tertiary-table-font-color);\n font-size: var(--font-size);\n position: sticky;\n z-index: 10;\n top: 0;\n }\n \n .fixed {\n table-layout: fixed;\n }\n\n :host /deep/ .headerFixed thead, :host /deep/ .headerFixed tbody tr {\n display:table;\n width:100%;\n table-layout:fixed;\n }\n\n :host /deep/ .collapseTable,\n :host /deep/ .collapseTable-sec,\n :host /deep/ .collapseTable-tert {\n box-shadow: 0 0 15px rgba(0,0,0,0.3); \n }\n \n :host /deep/ .collapseTable > thead tr:first-child th:first-child,\n :host /deep/ .collapseTable-sec > thead tr:first-child th:first-child,\n :host /deep/ .collapseTable-tert > thead tr:first-child th:first-child {\n border-top-left-radius: 10px;\n }\n\n :host /deep/ .collapseTable > thead tr:first-child th:last-child,\n :host /deep/ .collapseTable-sec > thead tr:first-child th:last-child,\n :host /deep/ .collapseTable-tert > thead tr:first-child th:last-child {\n border-top-right-radius: 10px;\n }\n \n @keyframes fadeIn {\n to {\n opacity: 1;\n transform: translateY(0);\n }\n }\n\n :host /deep/ .collapseTable tr,\n :host /deep/ .collapseTable-sec tr,\n :host /deep/ .collapseTable-tert tr {\n opacity: 0;\n transform: translateY(-20px);\n animation: fadeIn 0.5s forwards;\n }\n\n \n\n @keyframes shimmer {\n 0%, 90% {\n background-position: 120% 0;\n }\n 100% {\n background-position: -80% 0;\n }\n }\n\n :host /deep/ .collapseTable > thead {\n position: relative;\n background-color: var(--primary-table-color); \n z-index: 10;\n }\n\n :host /deep/ .collapseTable > thead::before {\n content: \"\";\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n background: linear-gradient(\n -75deg,\n rgba(255, 255, 255, 0) 40%, \n rgba(255, 255, 255, 0.7) 50%, \n rgba(255, 255, 255, 0) 60%\n );\n background-size: 200% 100%;\n animation: shimmer 15s linear infinite;\n animation-fill-mode: forwards;\n z-index: 11;\n } \n\n /* :host /deep/ .collapseTable .collapseTable-sec > thead,\n :host /deep/ .collapseTable .collapseTable-tert > thead {\n position: static; \n background: none;\n } */\n\n /* :host /deep/ .collapseTable .collapseTable-sec > thead::before,\n :host /deep/ .collapseTable .collapseTable-tert > thead::before {\n content: none; \n } */\n\n\n .hide {\n display: none;\n }\n</style>\n\n<div class=\"table-responsive-xl\">\n <table [ngClass]=\"getCollapseClass()\" style=\"border: none\" cellspacing=\"0\" cellpadding=\"0\">\n <ng-content></ng-content>\n </table>\n</div>" }]
3659
+ args: [{ selector: 'collapse-table', template: "<style>\n ::ng-deep :root {\n --primary-table-color: #3b3ee3;\n --primary-table-font-color: white;\n --font-size: 12px;\n --secondary-table-color: #87ceeb;\n --secondary-table-font-color: #000000;\n --tertiary-table-color: #ff4500;\n --tertiary-table-font-color: #000000;\n }\n\n\t:host /deep/ .collapseTable {\n border: 1px solid #ccc;\n margin: 0;\n padding: 0;\n width: 100%;\n /*table-layout: fixed;*/ \n }\n :host /deep/ .collapseTable tr {\n border: 1px solid #ddd;\n padding: 0.35em;\n }\n :host /deep/ .collapseTable th, :host /deep/ .collapseTable td {\n padding: 0.625em;\n text-align: center;\n vertical-align: middle;\n }\n :host /deep/ .collapseTable th {\n letter-spacing: 0.1em;\n text-transform: uppercase;\n background-color: var(--primary-table-color);\n color: var(--primary-table-font-color);\n font-size: var(--font-size);\n position: sticky;\n z-index: 10;\n top: 0;\n } \n :host /deep/ .collapseTable-sec {\n border: 1px solid #ccc;\n margin: 0;\n padding: 0;\n width: 100%;\n }\n :host /deep/ .collapseTable-sec tr {\n border: 1px solid #ddd;\n padding: 0.35em;\n }\n :host /deep/ .collapseTable-sec th, :host /deep/ .collapseTable-sec td {\n padding: 0.625em;\n text-align: center;\n }\n :host /deep/ .collapseTable-sec th {\n letter-spacing: 0.1em;\n text-transform: uppercase;\n background-color: var(--secondary-table-color);\n color: var(--secondary-table-font-color);\n font-size: var(--font-size);\n position: sticky;\n z-index: 10;\n top: 0;\n } \n :host /deep/ .collapseTable-tert {\n border: 1px solid #ccc;\n margin: 0;\n padding: 0;\n width: 100%;\n }\n :host /deep/ .collapseTable-tert tr {\n border: 1px solid #ddd;\n padding: 0.35em;\n }\n :host /deep/ .collapseTable-tert th, :host /deep/ .collapseTable-tert td {\n padding: 0.625em;\n text-align: center;\n }\n :host /deep/ .collapseTable-tert th {\n letter-spacing: 0.1em;\n text-transform: uppercase;\n background-color: var(--tertiary-table-color);\n color: var(--tertiary-table-font-color);\n font-size: var(--font-size);\n position: sticky;\n z-index: 10;\n top: 0;\n }\n \n .fixed {\n table-layout: fixed;\n }\n\n :host /deep/ .headerFixed thead, :host /deep/ .headerFixed tbody tr {\n display:table;\n width:100%;\n table-layout:fixed;\n }\n\n :host /deep/ .collapseTable,\n :host /deep/ .collapseTable-sec,\n :host /deep/ .collapseTable-tert {\n box-shadow: 0 0 15px rgba(0,0,0,0.3); \n }\n \n :host /deep/ .collapseTable > thead tr:first-child th:first-child,\n :host /deep/ .collapseTable-sec > thead tr:first-child th:first-child,\n :host /deep/ .collapseTable-tert > thead tr:first-child th:first-child {\n border-top-left-radius: 10px;\n }\n\n :host /deep/ .collapseTable > thead tr:first-child th:last-child,\n :host /deep/ .collapseTable-sec > thead tr:first-child th:last-child,\n :host /deep/ .collapseTable-tert > thead tr:first-child th:last-child {\n border-top-right-radius: 10px;\n }\n \n /* @keyframes fadeIn {\n to {\n opacity: 1;\n transform: translateY(0);\n }\n }\n\n :host /deep/ .collapseTable tr,\n :host /deep/ .collapseTable-sec tr,\n :host /deep/ .collapseTable-tert tr {\n opacity: 0;\n transform: translateY(-20px);\n animation: fadeIn 0.5s forwards;\n }\n\n \n\n @keyframes shimmer {\n 0%, 90% {\n background-position: 120% 0;\n }\n 100% {\n background-position: -80% 0;\n }\n }\n\n :host /deep/ .collapseTable > thead {\n position: relative;\n background-color: var(--primary-table-color); \n z-index: 10;\n }\n\n :host /deep/ .collapseTable > thead::before {\n content: \"\";\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n background: linear-gradient(\n -75deg,\n rgba(255, 255, 255, 0) 40%, \n rgba(255, 255, 255, 0.7) 50%, \n rgba(255, 255, 255, 0) 60%\n );\n background-size: 200% 100%;\n animation: shimmer 15s linear infinite;\n animation-fill-mode: forwards;\n z-index: 11;\n } */\n\n /* :host /deep/ .collapseTable .collapseTable-sec > thead,\n :host /deep/ .collapseTable .collapseTable-tert > thead {\n position: static; \n background: none;\n } */\n\n /* :host /deep/ .collapseTable .collapseTable-sec > thead::before,\n :host /deep/ .collapseTable .collapseTable-tert > thead::before {\n content: none; \n } */\n\n\n .hide {\n display: none;\n }\n</style>\n\n<div class=\"table-responsive-xl\">\n <table [ngClass]=\"getCollapseClass()\" style=\"border: none\" cellspacing=\"0\" cellpadding=\"0\">\n <ng-content></ng-content>\n </table>\n</div>" }]
3660
3660
  }], ctorParameters: function () { return [{ type: ResizeService }, { type: AccountManagerService }]; }, propDecorators: { collapseSize: [{
3661
3661
  type: Input
3662
3662
  }], tableFixed: [{