@progressio_resources/gravity-design-system 3.0.1 → 3.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/components/gravity-card-list/gravity-card-list.component.mjs +50 -0
- package/esm2022/lib/gravity-design-system.module.mjs +7 -2
- package/esm2022/lib/vendor/gravity-tooltip/gravity-tooltip.component.mjs +55 -21
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/progressio_resources-gravity-design-system.mjs +109 -23
- package/fesm2022/progressio_resources-gravity-design-system.mjs.map +1 -1
- package/lib/components/gravity-card-list/gravity-card-list.component.d.ts +16 -0
- package/lib/gravity-design-system.module.d.ts +47 -46
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/src/lib/assets/icon-set/gt-icon-deposit/gt-icon-deposit-lg-24.svg +10 -0
- package/src/lib/assets/icon-set/gt-icon-deposit/gt-icon-deposit-md-16.svg +10 -0
- package/src/lib/assets/icon-set/gt-icon-deposit/gt-icon-deposit-sm-12.svg +10 -0
- package/src/lib/assets/icon-set/gt-icon-deposit/gt-icon-deposit-xl-32.svg +10 -0
- package/src/lib/assets/icon-set/gt-icon-exchange-provider/gt-icon-exchange-provider-lg-24.svg +5 -0
- package/src/lib/assets/icon-set/gt-icon-exchange-provider/gt-icon-exchange-provider-md-16.svg +5 -0
- package/src/lib/assets/icon-set/gt-icon-exchange-provider/gt-icon-exchange-provider-sm-12.svg +5 -0
- package/src/lib/assets/icon-set/gt-icon-exchange-provider/gt-icon-exchange-provider-xl-32.svg +5 -0
- package/src/lib/assets/icon-set/gt-icon-new-tab/gt-icon-new-tab-lg-24.svg +3 -0
- package/src/lib/assets/icon-set/gt-icon-new-tab/gt-icon-new-tab-md-16.svg +3 -0
- package/src/lib/assets/icon-set/gt-icon-new-tab/gt-icon-new-tab-sm-12.svg +3 -0
- package/src/lib/assets/icon-set/gt-icon-new-tab/gt-icon-new-tab-xl-32.svg +3 -0
- package/src/lib/assets/icon-set/gt-icon-payout/gt-icon-payout-lg-24.svg +10 -0
- package/src/lib/assets/icon-set/gt-icon-payout/gt-icon-payout-md-16.svg +10 -0
- package/src/lib/assets/icon-set/gt-icon-payout/gt-icon-payout-sm-12.svg +10 -0
- package/src/lib/assets/icon-set/gt-icon-payout/gt-icon-payout-xl-32.svg +10 -0
- package/src/lib/assets/icon-set/gt-icon-switch/gt-icon-switch-lg-24.svg +10 -0
- package/src/lib/assets/icon-set/gt-icon-switch/gt-icon-switch-md-16.svg +10 -0
- package/src/lib/assets/icon-set/gt-icon-switch/gt-icon-switch-sm-12.svg +10 -0
- package/src/lib/assets/icon-set/gt-icon-switch/gt-icon-switch-xl-32.svg +10 -0
- package/src/lib/assets/icon-set/gt-icon-tool/gt-icon-tool-lg-24.svg +10 -0
- package/src/lib/assets/icon-set/gt-icon-tool/gt-icon-tool-md-16.svg +10 -0
- package/src/lib/assets/icon-set/gt-icon-tool/gt-icon-tool-sm-12.svg +10 -0
- package/src/lib/assets/icon-set/gt-icon-tool/gt-icon-tool-xl-32.svg +10 -0
- package/src/lib/assets/json/icons.json +96 -0
- package/src/lib/styles/components/_link.scss +9 -1
- package/src/lib/styles/foundations/colors/themes/_hero.theme.scss +6 -6
- package/src/lib/styles/foundations/colors/tokens/_hero.tokens.scss +2 -2
- package/src/lib/vendor/gravity-tooltip/gravity-tooltip.component.sass +56 -0
- package/src/lib/vendor/gravity-tooltip/gravity-tooltip.component.ts +52 -23
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Component, Input, Pipe, EventEmitter, Output, ViewChild, HostListener, HostBinding, InjectionToken, Directive, Optional, Inject, NgModule, Injectable, ChangeDetectionStrategy, inject } from '@angular/core';
|
|
2
|
+
import { Component, Input, Pipe, EventEmitter, Output, ViewChild, HostListener, HostBinding, InjectionToken, Directive, Optional, Inject, NgModule, Injectable, ChangeDetectionStrategy, inject, ContentChildren } from '@angular/core';
|
|
3
3
|
import * as i1$1 from '@angular/common';
|
|
4
4
|
import { CommonModule } from '@angular/common';
|
|
5
5
|
import * as i2 from '@angular/forms';
|
|
@@ -676,7 +676,7 @@ class GravityTooltipComponent {
|
|
|
676
676
|
}
|
|
677
677
|
else {
|
|
678
678
|
/* Is tooltip outside the visible area */
|
|
679
|
-
const placements = ['top', 'right', 'bottom', 'left'];
|
|
679
|
+
const placements = ['top', 'top-left', 'top-right', 'right', 'right-top', 'right-bottom', 'bottom', 'bottom-right', 'bottom-left', 'left', 'left-top', 'left-bottom'];
|
|
680
680
|
let isPlacementSet;
|
|
681
681
|
for (const placement of placements) {
|
|
682
682
|
if (this.setHostStyle(placement)) {
|
|
@@ -710,23 +710,57 @@ class GravityTooltipComponent {
|
|
|
710
710
|
}
|
|
711
711
|
let topStyle;
|
|
712
712
|
let leftStyle;
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
713
|
+
switch (placement) {
|
|
714
|
+
case 'top':
|
|
715
|
+
topStyle = (this.elementPosition.top + scrollY) - (tooltipHeight + this.tooltipOffset);
|
|
716
|
+
leftStyle = (this.elementPosition.left + elementWidth / 2) - tooltipWidth / 2;
|
|
717
|
+
break;
|
|
718
|
+
case 'top-left':
|
|
719
|
+
topStyle = (this.elementPosition.top + scrollY) - (tooltipHeight + this.tooltipOffset);
|
|
720
|
+
leftStyle = (this.elementPosition.left + elementWidth / 2) - (tooltipWidth * 0.1);
|
|
721
|
+
break;
|
|
722
|
+
case 'top-right':
|
|
723
|
+
topStyle = (this.elementPosition.top + scrollY) - (tooltipHeight + this.tooltipOffset);
|
|
724
|
+
leftStyle = (this.elementPosition.left + elementWidth / 2) - (tooltipWidth * 0.9);
|
|
725
|
+
break;
|
|
726
|
+
case 'bottom':
|
|
727
|
+
topStyle = (this.elementPosition.top + scrollY) + elementHeight + this.tooltipOffset;
|
|
728
|
+
leftStyle = (this.elementPosition.left + elementWidth / 2) - tooltipWidth / 2;
|
|
729
|
+
break;
|
|
730
|
+
case 'bottom-left':
|
|
731
|
+
topStyle = (this.elementPosition.top + scrollY) + elementHeight + this.tooltipOffset;
|
|
732
|
+
leftStyle = (this.elementPosition.left + elementWidth / 2) - (tooltipWidth * 0.1);
|
|
733
|
+
break;
|
|
734
|
+
case 'bottom-right':
|
|
735
|
+
topStyle = (this.elementPosition.top + scrollY) + elementHeight + this.tooltipOffset;
|
|
736
|
+
leftStyle = (this.elementPosition.left + elementWidth / 2) - (tooltipWidth * 0.9);
|
|
737
|
+
break;
|
|
738
|
+
case 'left':
|
|
739
|
+
leftStyle = this.elementPosition.left - tooltipWidth - this.tooltipOffset;
|
|
740
|
+
topStyle = (this.elementPosition.top + scrollY) + elementHeight / 2 - tooltipHeight / 2;
|
|
741
|
+
break;
|
|
742
|
+
case 'left-top':
|
|
743
|
+
leftStyle = this.elementPosition.left - tooltipWidth - this.tooltipOffset;
|
|
744
|
+
topStyle = (this.elementPosition.top + scrollY + elementHeight / 2) - (tooltipHeight * 0.1);
|
|
745
|
+
break;
|
|
746
|
+
case 'left-bottom':
|
|
747
|
+
leftStyle = this.elementPosition.left - tooltipWidth - this.tooltipOffset;
|
|
748
|
+
topStyle = (this.elementPosition.top + scrollY + elementHeight / 2) - (tooltipHeight * 0.9);
|
|
749
|
+
break;
|
|
750
|
+
case 'right':
|
|
751
|
+
leftStyle = this.elementPosition.left + elementWidth + this.tooltipOffset;
|
|
752
|
+
topStyle = (this.elementPosition.top + scrollY) + elementHeight / 2 - tooltipHeight / 2;
|
|
753
|
+
break;
|
|
754
|
+
case 'right-top':
|
|
755
|
+
leftStyle = this.elementPosition.left + elementWidth + this.tooltipOffset;
|
|
756
|
+
topStyle = (this.elementPosition.top + scrollY + elementHeight / 2) - (tooltipHeight * 0.1);
|
|
757
|
+
break;
|
|
758
|
+
case 'right-bottom':
|
|
759
|
+
leftStyle = this.elementPosition.left + elementWidth + this.tooltipOffset;
|
|
760
|
+
topStyle = (this.elementPosition.top + scrollY + elementHeight / 2) - (tooltipHeight * 0.9);
|
|
761
|
+
break;
|
|
762
|
+
default:
|
|
763
|
+
return false;
|
|
730
764
|
}
|
|
731
765
|
/* Is tooltip outside the visible area */
|
|
732
766
|
if (this.autoPlacement && !disableAutoPlacement) {
|
|
@@ -776,11 +810,11 @@ class GravityTooltipComponent {
|
|
|
776
810
|
this.hostStyleWidth = this.options['width'] ? this.options['width'] : '';
|
|
777
811
|
}
|
|
778
812
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GravityTooltipComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
779
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: GravityTooltipComponent, selector: "tooltip", inputs: { data: "data", show: "show" }, host: { listeners: { "transitionend": "transitionEnd($event)" }, properties: { "style.top": "this.hostStyleTop", "style.left": "this.hostStyleLeft", "style.z-index": "this.hostStyleZIndex", "style.transition": "this.hostStyleTransition", "style.width": "this.hostStyleWidth", "style.max-width": "this.hostStyleMaxWidth", "style.pointer-events": "this.hostStylePointerEvents", "class.tooltip-show": "this.hostClassShow", "class.tooltip-shadow": "this.hostClassShadow", "class.tooltip-light": "this.hostClassLight" }, classAttribute: "tooltip" }, ngImport: i0, template: "<div *ngIf=\"isThemeLight\" class=\"tooltip-arrow\"></div>\n\n<div *ngIf=\"options['contentType'] === 'template' else htmlOrStringTemplate\">\n <ng-container *ngTemplateOutlet=\"value\"></ng-container>\n</div>\n\n<ng-template #htmlOrStringTemplate>\n <div [innerHTML]=\"value\"></div>\n</ng-template>\n", styles: [":host{max-width:200px;background-color:var(--bg-tooltip-primary);color:var(--on-bg-tooltip-primary);text-align:center;border-radius:6px;padding:5px 8px;position:absolute;pointer-events:none;z-index:1000;display:block;opacity:0;transition:opacity .3s;top:0;left:0}:host.tooltip-show{opacity:1}:host.tooltip-shadow{box-shadow:0 7px 15px -5px #0006}:host.tooltip-light.tooltip-shadow{box-shadow:0 5px 15px -5px #0006}:host.tooltip:after{content:\"\";position:absolute;border-style:solid}:host.tooltip-top:after{top:100%;left:50%;margin-left:-5px;border-width:5px;border-color:var(--bg-tooltip-primary) transparent transparent transparent}:host.tooltip-bottom:after{bottom:100%;left:50%;margin-left:-5px;border-width:5px;border-color:transparent transparent var(--bg-tooltip-primary) transparent}:host.tooltip-left:after{top:50%;left:100%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent var(--bg-tooltip-primary)}:host.tooltip-right:after{top:50%;right:100%;margin-top:-5px;border-width:5px;border-color:transparent var(--bg-tooltip-primary) transparent transparent}:host.tooltip-light:after{display:none}:host.tooltip-light{border:1px solid rgba(0,0,0,.06);background-color:#fff;color:#000}:host.tooltip-light .tooltip-arrow{position:absolute;width:10px;height:10px;transform:rotate(135deg);background-color:#00000012}:host.tooltip-light .tooltip-arrow:after{background-color:#fff;content:\"\";display:block;position:absolute;width:10px;height:10px}:host.tooltip-top.tooltip-light{margin-top:-2px}:host.tooltip-top.tooltip-light .tooltip-arrow{top:100%;left:50%;margin-top:-4px;margin-left:-5px;background:linear-gradient(to bottom left,rgba(0,0,0,.07) 50%,transparent 50%)}:host.tooltip-top.tooltip-light .tooltip-arrow:after{top:1px;right:1px}:host.tooltip-bottom.tooltip-light .tooltip-arrow{bottom:100%;left:50%;margin-bottom:-4px;margin-left:-5px;background:linear-gradient(to top right,rgba(0,0,0,.1) 50%,transparent 50%)}:host.tooltip-bottom.tooltip-light .tooltip-arrow:after{top:-1px;right:-1px}:host.tooltip-left.tooltip-light .tooltip-arrow{top:50%;left:100%;margin-top:-5px;margin-left:-4px;background:linear-gradient(to bottom right,rgba(0,0,0,.07) 50%,transparent 50%)}:host.tooltip-left.tooltip-light .tooltip-arrow:after{top:1px;right:-1px}:host.tooltip-right.tooltip-light .tooltip-arrow{top:50%;right:100%;margin-top:-5px;margin-right:-4px;background:linear-gradient(to top left,rgba(0,0,0,.07) 50%,transparent 50%)}:host.tooltip-right.tooltip-light .tooltip-arrow:after{top:-1px;right:1px}\n"], dependencies: [{ kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
813
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: GravityTooltipComponent, selector: "tooltip", inputs: { data: "data", show: "show" }, host: { listeners: { "transitionend": "transitionEnd($event)" }, properties: { "style.top": "this.hostStyleTop", "style.left": "this.hostStyleLeft", "style.z-index": "this.hostStyleZIndex", "style.transition": "this.hostStyleTransition", "style.width": "this.hostStyleWidth", "style.max-width": "this.hostStyleMaxWidth", "style.pointer-events": "this.hostStylePointerEvents", "class.tooltip-show": "this.hostClassShow", "class.tooltip-shadow": "this.hostClassShadow", "class.tooltip-light": "this.hostClassLight" }, classAttribute: "tooltip" }, ngImport: i0, template: "<div *ngIf=\"isThemeLight\" class=\"tooltip-arrow\"></div>\n\n<div *ngIf=\"options['contentType'] === 'template' else htmlOrStringTemplate\">\n <ng-container *ngTemplateOutlet=\"value\"></ng-container>\n</div>\n\n<ng-template #htmlOrStringTemplate>\n <div [innerHTML]=\"value\"></div>\n</ng-template>\n", styles: [":host{max-width:200px;background-color:var(--bg-tooltip-primary);color:var(--on-bg-tooltip-primary);text-align:center;border-radius:6px;padding:5px 8px;position:absolute;pointer-events:none;z-index:1000;display:block;opacity:0;transition:opacity .3s;top:0;left:0}:host.tooltip-show{opacity:1}:host.tooltip-shadow{box-shadow:0 7px 15px -5px #0006}:host.tooltip-light.tooltip-shadow{box-shadow:0 5px 15px -5px #0006}:host.tooltip:after{content:\"\";position:absolute;border-style:solid}:host.tooltip-top:after{top:100%;left:50%;margin-left:-5px;border-width:5px;border-color:var(--bg-tooltip-primary) transparent transparent transparent}:host.tooltip-top-left:after{top:100%;left:10%;margin-left:-5px;border-width:5px;border-color:var(--bg-tooltip-primary) transparent transparent transparent}:host.tooltip-top-right:after{top:100%;left:90%;margin-left:-5px;border-width:5px;border-color:var(--bg-tooltip-primary) transparent transparent transparent}:host.tooltip-bottom:after{bottom:100%;left:50%;margin-left:-5px;border-width:5px;border-color:transparent transparent var(--bg-tooltip-primary) transparent}:host.tooltip-bottom-left:after{bottom:100%;left:10%;margin-left:-5px;border-width:5px;border-color:transparent transparent var(--bg-tooltip-primary) transparent}:host.tooltip-bottom-right:after{bottom:100%;left:90%;margin-left:-5px;border-width:5px;border-color:transparent transparent var(--bg-tooltip-primary) transparent}:host.tooltip-left:after{top:50%;left:100%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent var(--bg-tooltip-primary)}:host.tooltip-left-top:after{top:10%;left:100%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent var(--bg-tooltip-primary)}:host.tooltip-left-bottom:after{top:90%;left:100%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent var(--bg-tooltip-primary)}:host.tooltip-right:after{top:50%;right:100%;margin-top:-5px;border-width:5px;border-color:transparent var(--bg-tooltip-primary) transparent transparent}:host.tooltip-right-top:after{top:10%;right:100%;margin-top:-5px;border-width:5px;border-color:transparent var(--bg-tooltip-primary) transparent transparent}:host.tooltip-right-bottom:after{top:90%;right:100%;margin-top:-5px;border-width:5px;border-color:transparent var(--bg-tooltip-primary) transparent transparent}:host.tooltip-light:after{display:none}:host.tooltip-light{border:1px solid rgba(0,0,0,.06);background-color:#fff;color:#000}:host.tooltip-light .tooltip-arrow{position:absolute;width:10px;height:10px;transform:rotate(135deg);background-color:#00000012}:host.tooltip-light .tooltip-arrow:after{background-color:#fff;content:\"\";display:block;position:absolute;width:10px;height:10px}:host.tooltip-top.tooltip-light{margin-top:-2px}:host.tooltip-top.tooltip-light .tooltip-arrow{top:100%;left:50%;margin-top:-4px;margin-left:-5px;background:linear-gradient(to bottom left,rgba(0,0,0,.07) 50%,transparent 50%)}:host.tooltip-top.tooltip-light .tooltip-arrow:after{top:1px;right:1px}:host.tooltip-bottom.tooltip-light .tooltip-arrow{bottom:100%;left:50%;margin-bottom:-4px;margin-left:-5px;background:linear-gradient(to top right,rgba(0,0,0,.1) 50%,transparent 50%)}:host.tooltip-bottom.tooltip-light .tooltip-arrow:after{top:-1px;right:-1px}:host.tooltip-left.tooltip-light .tooltip-arrow{top:50%;left:100%;margin-top:-5px;margin-left:-4px;background:linear-gradient(to bottom right,rgba(0,0,0,.07) 50%,transparent 50%)}:host.tooltip-left.tooltip-light .tooltip-arrow:after{top:1px;right:-1px}:host.tooltip-right.tooltip-light .tooltip-arrow{top:50%;right:100%;margin-top:-5px;margin-right:-4px;background:linear-gradient(to top left,rgba(0,0,0,.07) 50%,transparent 50%)}:host.tooltip-right.tooltip-light .tooltip-arrow:after{top:-1px;right:1px}\n"], dependencies: [{ kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
780
814
|
}
|
|
781
815
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GravityTooltipComponent, decorators: [{
|
|
782
816
|
type: Component,
|
|
783
|
-
args: [{ selector: 'tooltip', host: { 'class': 'tooltip' }, template: "<div *ngIf=\"isThemeLight\" class=\"tooltip-arrow\"></div>\n\n<div *ngIf=\"options['contentType'] === 'template' else htmlOrStringTemplate\">\n <ng-container *ngTemplateOutlet=\"value\"></ng-container>\n</div>\n\n<ng-template #htmlOrStringTemplate>\n <div [innerHTML]=\"value\"></div>\n</ng-template>\n", styles: [":host{max-width:200px;background-color:var(--bg-tooltip-primary);color:var(--on-bg-tooltip-primary);text-align:center;border-radius:6px;padding:5px 8px;position:absolute;pointer-events:none;z-index:1000;display:block;opacity:0;transition:opacity .3s;top:0;left:0}:host.tooltip-show{opacity:1}:host.tooltip-shadow{box-shadow:0 7px 15px -5px #0006}:host.tooltip-light.tooltip-shadow{box-shadow:0 5px 15px -5px #0006}:host.tooltip:after{content:\"\";position:absolute;border-style:solid}:host.tooltip-top:after{top:100%;left:50%;margin-left:-5px;border-width:5px;border-color:var(--bg-tooltip-primary) transparent transparent transparent}:host.tooltip-bottom:after{bottom:100%;left:50%;margin-left:-5px;border-width:5px;border-color:transparent transparent var(--bg-tooltip-primary) transparent}:host.tooltip-left:after{top:50%;left:100%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent var(--bg-tooltip-primary)}:host.tooltip-right:after{top:50%;right:100%;margin-top:-5px;border-width:5px;border-color:transparent var(--bg-tooltip-primary) transparent transparent}:host.tooltip-light:after{display:none}:host.tooltip-light{border:1px solid rgba(0,0,0,.06);background-color:#fff;color:#000}:host.tooltip-light .tooltip-arrow{position:absolute;width:10px;height:10px;transform:rotate(135deg);background-color:#00000012}:host.tooltip-light .tooltip-arrow:after{background-color:#fff;content:\"\";display:block;position:absolute;width:10px;height:10px}:host.tooltip-top.tooltip-light{margin-top:-2px}:host.tooltip-top.tooltip-light .tooltip-arrow{top:100%;left:50%;margin-top:-4px;margin-left:-5px;background:linear-gradient(to bottom left,rgba(0,0,0,.07) 50%,transparent 50%)}:host.tooltip-top.tooltip-light .tooltip-arrow:after{top:1px;right:1px}:host.tooltip-bottom.tooltip-light .tooltip-arrow{bottom:100%;left:50%;margin-bottom:-4px;margin-left:-5px;background:linear-gradient(to top right,rgba(0,0,0,.1) 50%,transparent 50%)}:host.tooltip-bottom.tooltip-light .tooltip-arrow:after{top:-1px;right:-1px}:host.tooltip-left.tooltip-light .tooltip-arrow{top:50%;left:100%;margin-top:-5px;margin-left:-4px;background:linear-gradient(to bottom right,rgba(0,0,0,.07) 50%,transparent 50%)}:host.tooltip-left.tooltip-light .tooltip-arrow:after{top:1px;right:-1px}:host.tooltip-right.tooltip-light .tooltip-arrow{top:50%;right:100%;margin-top:-5px;margin-right:-4px;background:linear-gradient(to top left,rgba(0,0,0,.07) 50%,transparent 50%)}:host.tooltip-right.tooltip-light .tooltip-arrow:after{top:-1px;right:1px}\n"] }]
|
|
817
|
+
args: [{ selector: 'tooltip', host: { 'class': 'tooltip' }, template: "<div *ngIf=\"isThemeLight\" class=\"tooltip-arrow\"></div>\n\n<div *ngIf=\"options['contentType'] === 'template' else htmlOrStringTemplate\">\n <ng-container *ngTemplateOutlet=\"value\"></ng-container>\n</div>\n\n<ng-template #htmlOrStringTemplate>\n <div [innerHTML]=\"value\"></div>\n</ng-template>\n", styles: [":host{max-width:200px;background-color:var(--bg-tooltip-primary);color:var(--on-bg-tooltip-primary);text-align:center;border-radius:6px;padding:5px 8px;position:absolute;pointer-events:none;z-index:1000;display:block;opacity:0;transition:opacity .3s;top:0;left:0}:host.tooltip-show{opacity:1}:host.tooltip-shadow{box-shadow:0 7px 15px -5px #0006}:host.tooltip-light.tooltip-shadow{box-shadow:0 5px 15px -5px #0006}:host.tooltip:after{content:\"\";position:absolute;border-style:solid}:host.tooltip-top:after{top:100%;left:50%;margin-left:-5px;border-width:5px;border-color:var(--bg-tooltip-primary) transparent transparent transparent}:host.tooltip-top-left:after{top:100%;left:10%;margin-left:-5px;border-width:5px;border-color:var(--bg-tooltip-primary) transparent transparent transparent}:host.tooltip-top-right:after{top:100%;left:90%;margin-left:-5px;border-width:5px;border-color:var(--bg-tooltip-primary) transparent transparent transparent}:host.tooltip-bottom:after{bottom:100%;left:50%;margin-left:-5px;border-width:5px;border-color:transparent transparent var(--bg-tooltip-primary) transparent}:host.tooltip-bottom-left:after{bottom:100%;left:10%;margin-left:-5px;border-width:5px;border-color:transparent transparent var(--bg-tooltip-primary) transparent}:host.tooltip-bottom-right:after{bottom:100%;left:90%;margin-left:-5px;border-width:5px;border-color:transparent transparent var(--bg-tooltip-primary) transparent}:host.tooltip-left:after{top:50%;left:100%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent var(--bg-tooltip-primary)}:host.tooltip-left-top:after{top:10%;left:100%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent var(--bg-tooltip-primary)}:host.tooltip-left-bottom:after{top:90%;left:100%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent var(--bg-tooltip-primary)}:host.tooltip-right:after{top:50%;right:100%;margin-top:-5px;border-width:5px;border-color:transparent var(--bg-tooltip-primary) transparent transparent}:host.tooltip-right-top:after{top:10%;right:100%;margin-top:-5px;border-width:5px;border-color:transparent var(--bg-tooltip-primary) transparent transparent}:host.tooltip-right-bottom:after{top:90%;right:100%;margin-top:-5px;border-width:5px;border-color:transparent var(--bg-tooltip-primary) transparent transparent}:host.tooltip-light:after{display:none}:host.tooltip-light{border:1px solid rgba(0,0,0,.06);background-color:#fff;color:#000}:host.tooltip-light .tooltip-arrow{position:absolute;width:10px;height:10px;transform:rotate(135deg);background-color:#00000012}:host.tooltip-light .tooltip-arrow:after{background-color:#fff;content:\"\";display:block;position:absolute;width:10px;height:10px}:host.tooltip-top.tooltip-light{margin-top:-2px}:host.tooltip-top.tooltip-light .tooltip-arrow{top:100%;left:50%;margin-top:-4px;margin-left:-5px;background:linear-gradient(to bottom left,rgba(0,0,0,.07) 50%,transparent 50%)}:host.tooltip-top.tooltip-light .tooltip-arrow:after{top:1px;right:1px}:host.tooltip-bottom.tooltip-light .tooltip-arrow{bottom:100%;left:50%;margin-bottom:-4px;margin-left:-5px;background:linear-gradient(to top right,rgba(0,0,0,.1) 50%,transparent 50%)}:host.tooltip-bottom.tooltip-light .tooltip-arrow:after{top:-1px;right:-1px}:host.tooltip-left.tooltip-light .tooltip-arrow{top:50%;left:100%;margin-top:-5px;margin-left:-4px;background:linear-gradient(to bottom right,rgba(0,0,0,.07) 50%,transparent 50%)}:host.tooltip-left.tooltip-light .tooltip-arrow:after{top:1px;right:-1px}:host.tooltip-right.tooltip-light .tooltip-arrow{top:50%;right:100%;margin-top:-5px;margin-right:-4px;background:linear-gradient(to top left,rgba(0,0,0,.07) 50%,transparent 50%)}:host.tooltip-right.tooltip-light .tooltip-arrow:after{top:-1px;right:1px}\n"] }]
|
|
784
818
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; }, propDecorators: { data: [{
|
|
785
819
|
type: Input
|
|
786
820
|
}], hostStyleTop: [{
|
|
@@ -4908,6 +4942,54 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
4908
4942
|
type: Input
|
|
4909
4943
|
}] } });
|
|
4910
4944
|
|
|
4945
|
+
class GravityCardListComponent {
|
|
4946
|
+
constructor(renderer, cdRef) {
|
|
4947
|
+
this.renderer = renderer;
|
|
4948
|
+
this.cdRef = cdRef;
|
|
4949
|
+
this.cardListSize = 'xl';
|
|
4950
|
+
}
|
|
4951
|
+
ngAfterViewInit() {
|
|
4952
|
+
this.initializeComponent();
|
|
4953
|
+
this.cdRef.detectChanges();
|
|
4954
|
+
}
|
|
4955
|
+
initializeComponent() {
|
|
4956
|
+
this.onResize();
|
|
4957
|
+
}
|
|
4958
|
+
onResize() {
|
|
4959
|
+
if (window.innerWidth <= 992) {
|
|
4960
|
+
this.cardListSize = 'sm';
|
|
4961
|
+
}
|
|
4962
|
+
else if (window.innerWidth <= 1440) {
|
|
4963
|
+
this.cardListSize = 'lg';
|
|
4964
|
+
}
|
|
4965
|
+
else {
|
|
4966
|
+
this.cardListSize = 'xl';
|
|
4967
|
+
}
|
|
4968
|
+
this.adjustSize();
|
|
4969
|
+
}
|
|
4970
|
+
adjustSize() {
|
|
4971
|
+
this.renderer.removeClass(this.cardListContainer, 'sm');
|
|
4972
|
+
this.renderer.removeClass(this.cardListContainer, 'lg');
|
|
4973
|
+
this.renderer.removeClass(this.cardListContainer, 'xl');
|
|
4974
|
+
this.renderer.addClass(this.cardListContainer, this.cardListSize);
|
|
4975
|
+
}
|
|
4976
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GravityCardListComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4977
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: GravityCardListComponent, selector: "gravity-card-list", host: { listeners: { "window:resize": "onResize($event)" } }, queries: [{ propertyName: "contentElements", predicate: ["th, td, p"], descendants: true }], viewQueries: [{ propertyName: "cardListContainer", first: true, predicate: ["cardListContainer"], descendants: true }], ngImport: i0, template: "<div class=\"card-list-container {{cardListSize}}\" #cardListContainer>\n <ng-content></ng-content>\n</div>\n", styles: [".border-radius-none{border-radius:0}.border-radius-xs{border-radius:.0625rem}.border-radius-sm{border-radius:.3125rem}.border-radius-md{border-radius:.625rem}.border-radius-lg{border-radius:.9375rem}.border-radius-xl{border-radius:1.25rem}.border-radius-xxl{border-radius:2rem}.border-radius-rounded{border-radius:6.25rem}.gravity-padding-none{padding:0!important}.gravity-padding-top-none{padding-top:0!important}.gravity-padding-bottom-none{padding-bottom:0!important}.gravity-padding-left-none{padding-left:0!important}.gravity-padding-right-none{padding-right:0!important}.gravity-padding-block-none{padding-block:0!important}.gravity-padding-inline-none{padding-inline:0!important}.gravity-padding-xs{padding:.5rem!important}.gravity-padding-top-xs{padding-top:.5rem!important}.gravity-padding-bottom-xs{padding-bottom:.5rem!important}.gravity-padding-left-xs{padding-left:.5rem!important}.gravity-padding-right-xs{padding-right:.5rem!important}.gravity-padding-block-xs{padding-block:.5rem!important}.gravity-padding-inline-xs{padding-inline:.5rem!important}.gravity-padding-sm{padding:1rem!important}.gravity-padding-top-sm{padding-top:1rem!important}.gravity-padding-bottom-sm{padding-bottom:1rem!important}.gravity-padding-left-sm{padding-left:1rem!important}.gravity-padding-right-sm{padding-right:1rem!important}.gravity-padding-block-sm{padding-block:1rem!important}.gravity-padding-inline-sm{padding-inline:1rem!important}.gravity-padding-md{padding:1.5rem!important}.gravity-padding-top-md{padding-top:1.5rem!important}.gravity-padding-bottom-md{padding-bottom:1.5rem!important}.gravity-padding-left-md{padding-left:1.5rem!important}.gravity-padding-right-md{padding-right:1.5rem!important}.gravity-padding-block-md{padding-block:1.5rem!important}.gravity-padding-inline-md{padding-inline:1.5rem!important}.gravity-padding-lg{padding:2rem!important}.gravity-padding-top-lg{padding-top:2rem!important}.gravity-padding-bottom-lg{padding-bottom:2rem!important}.gravity-padding-left-lg{padding-left:2rem!important}.gravity-padding-right-lg{padding-right:2rem!important}.gravity-padding-block-lg{padding-block:2rem!important}.gravity-padding-inline-lg{padding-inline:2rem!important}.gravity-padding-xl{padding:3rem!important}.gravity-padding-top-xl{padding-top:3rem!important}.gravity-padding-bottom-xl{padding-bottom:3rem!important}.gravity-padding-left-xl{padding-left:3rem!important}.gravity-padding-right-xl{padding-right:3rem!important}.gravity-padding-block-xl{padding-block:3rem!important}.gravity-padding-inline-xl{padding-inline:3rem!important}.gravity-padding-xxl{padding:4rem!important}.gravity-padding-top-xxl{padding-top:4rem!important}.gravity-padding-bottom-xxl{padding-bottom:4rem!important}.gravity-padding-left-xxl{padding-left:4rem!important}.gravity-padding-right-xxl{padding-right:4rem!important}.gravity-padding-block-xxl{padding-block:4rem!important}.gravity-padding-inline-xxl{padding-inline:4rem!important}.gravity-padding-xxxl{padding:6rem!important}.gravity-padding-top-xxxl{padding-top:6rem!important}.gravity-padding-bottom-xxxl{padding-bottom:6rem!important}.gravity-padding-left-xxxl{padding-left:6rem!important}.gravity-padding-right-xxxl{padding-right:6rem!important}.gravity-padding-block-xxxl{padding-block:6rem!important}.gravity-padding-inline-xxxl{padding-inline:6rem!important}.gravity-padding-xxxxl{padding:12rem!important}.gravity-padding-top-xxxxl{padding-top:12rem!important}.gravity-padding-bottom-xxxxl{padding-bottom:12rem!important}.gravity-padding-left-xxxxl{padding-left:12rem!important}.gravity-padding-right-xxxxl{padding-right:12rem!important}.gravity-padding-block-xxxxl{padding-block:12rem!important}.gravity-padding-inline-xxxxl{padding-inline:12rem!important}.gravity-margin-none{margin:0!important}.gravity-margin-top-none{margin-top:0!important}.gravity-margin-bottom-none{margin-bottom:0!important}.gravity-margin-left-none{margin-left:0!important}.gravity-margin-right-none{margin-right:0!important}.gravity-margin-block-none{margin-block:0!important}.gravity-margin-inline-none{margin-inline:0!important}.gravity-margin-xs{margin:.5rem!important}.gravity-margin-top-xs{margin-top:.5rem!important}.gravity-margin-bottom-xs{margin-bottom:.5rem!important}.gravity-margin-left-xs{margin-left:.5rem!important}.gravity-margin-right-xs{margin-right:.5rem!important}.gravity-margin-block-xs{margin-block:.5rem!important}.gravity-margin-inline-xs{margin-inline:.5rem!important}.gravity-margin-sm{margin:1rem!important}.gravity-margin-top-sm{margin-top:1rem!important}.gravity-margin-bottom-sm{margin-bottom:1rem!important}.gravity-margin-left-sm{margin-left:1rem!important}.gravity-margin-right-sm{margin-right:1rem!important}.gravity-margin-block-sm{margin-block:1rem!important}.gravity-margin-inline-sm{margin-inline:1rem!important}.gravity-margin-md{margin:1.5rem!important}.gravity-margin-top-md{margin-top:1.5rem!important}.gravity-margin-bottom-md{margin-bottom:1.5rem!important}.gravity-margin-left-md{margin-left:1.5rem!important}.gravity-margin-right-md{margin-right:1.5rem!important}.gravity-margin-block-md{margin-block:1.5rem!important}.gravity-margin-inline-md{margin-inline:1.5rem!important}.gravity-margin-lg{margin:2rem!important}.gravity-margin-top-lg{margin-top:2rem!important}.gravity-margin-bottom-lg{margin-bottom:2rem!important}.gravity-margin-left-lg{margin-left:2rem!important}.gravity-margin-right-lg{margin-right:2rem!important}.gravity-margin-block-lg{margin-block:2rem!important}.gravity-margin-inline-lg{margin-inline:2rem!important}.gravity-margin-xl{margin:3rem!important}.gravity-margin-top-xl{margin-top:3rem!important}.gravity-margin-bottom-xl{margin-bottom:3rem!important}.gravity-margin-left-xl{margin-left:3rem!important}.gravity-margin-right-xl{margin-right:3rem!important}.gravity-margin-block-xl{margin-block:3rem!important}.gravity-margin-inline-xl{margin-inline:3rem!important}.gravity-margin-xxl{margin:4rem!important}.gravity-margin-top-xxl{margin-top:4rem!important}.gravity-margin-bottom-xxl{margin-bottom:4rem!important}.gravity-margin-left-xxl{margin-left:4rem!important}.gravity-margin-right-xxl{margin-right:4rem!important}.gravity-margin-block-xxl{margin-block:4rem!important}.gravity-margin-inline-xxl{margin-inline:4rem!important}.gravity-margin-xxxl{margin:6rem!important}.gravity-margin-top-xxxl{margin-top:6rem!important}.gravity-margin-bottom-xxxl{margin-bottom:6rem!important}.gravity-margin-left-xxxl{margin-left:6rem!important}.gravity-margin-right-xxxl{margin-right:6rem!important}.gravity-margin-block-xxxl{margin-block:6rem!important}.gravity-margin-inline-xxxl{margin-inline:6rem!important}.gravity-margin-xxxxl{margin:12rem!important}.gravity-margin-top-xxxxl{margin-top:12rem!important}.gravity-margin-bottom-xxxxl{margin-bottom:12rem!important}.gravity-margin-left-xxxxl{margin-left:12rem!important}.gravity-margin-right-xxxxl{margin-right:12rem!important}.gravity-margin-block-xxxxl{margin-block:12rem!important}.gravity-margin-inline-xxxxl{margin-inline:12rem!important}body{font-family:Roboto Flex,sans-serif;color:var(--text-primary);leading-trim:both;text-edge:cap;font-style:normal;line-height:normal;font-optical-sizing:auto}.hr-body-text,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-bottom-content p,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-top-content p,:host ::ng-deep .card-list-container .card-list-table td p,:host ::ng-deep .card-list-container .card-list-table th,:host ::ng-deep .card-list-container .card-list-table td{font-family:Roboto Flex,sans-serif}.hr-body-text.sm-regular,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-bottom-content p,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-top-content p.sm-regular,:host ::ng-deep .card-list-container .card-list-table td p,:host ::ng-deep .card-list-container .card-list-table th,:host ::ng-deep .card-list-container .card-list-table td{font-size:.75rem;font-weight:400;line-height:1.17525rem;letter-spacing:.01875rem}.hr-body-text.sm-bold,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-bottom-content p.sm-bold,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-top-content p.sm-bold,:host ::ng-deep .card-list-container .card-list-table td p.sm-bold,:host ::ng-deep .card-list-container .card-list-table th.sm-bold,:host ::ng-deep .card-list-container .card-list-table td.sm-bold{font-size:.75rem;font-weight:650;line-height:1.17525rem;letter-spacing:.01875rem}.hr-body-text.md-regular,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-bottom-content p.md-regular,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-top-content p.md-regular,:host ::ng-deep .card-list-container .card-list-table td p.md-regular,:host ::ng-deep .card-list-container .card-list-table th.md-regular,:host ::ng-deep .card-list-container .card-list-table td.md-regular{font-size:1rem;font-weight:400;line-height:1.567rem;letter-spacing:.025rem}.hr-body-text.lg-regular,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-bottom-content p.lg-regular,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-top-content p.lg-regular,:host ::ng-deep .card-list-container .card-list-table td p.lg-regular,:host ::ng-deep .card-list-container .card-list-table th.lg-regular,:host ::ng-deep .card-list-container .card-list-table td.lg-regular{font-size:1.3325rem;font-weight:400;line-height:2.088rem;letter-spacing:.01969rem}.hr-body-text.lg-bold,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-bottom-content p.lg-bold,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-top-content p.lg-bold,:host ::ng-deep .card-list-container .card-list-table td p.lg-bold,:host ::ng-deep .card-list-container .card-list-table th.lg-bold,:host ::ng-deep .card-list-container .card-list-table td.lg-bold{font-size:1.3325rem;font-weight:700;line-height:1.99106rem;letter-spacing:.01969rem}.hr-title{font-family:Roboto Flex,sans-serif}.hr-title.sm-regular,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-bottom-content p.hr-title,:host ::ng-deep .card-list-container .card-list-table td p.hr-title,:host ::ng-deep .card-list-container .card-list-table th.hr-title,:host ::ng-deep .card-list-container .card-list-table td.hr-title{font-size:1rem;font-weight:420;letter-spacing:.02rem}.hr-title.sm-bold{font-size:1rem;font-weight:731;letter-spacing:.02rem}.hr-title.md-bold,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-top-content p.hr-title{font-size:1.3325rem;font-weight:745;letter-spacing:.02665rem}.hr-title.lg-regular{font-size:1.75rem;font-weight:480;letter-spacing:.02625rem}.hr-title.lg-bold{font-size:1.75rem;font-weight:760}.hr-label{font-family:Roboto Flex,sans-serif}.hr-label.sm-regular,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-bottom-content p.hr-label,:host ::ng-deep .card-list-container .card-list-table td p.hr-label,:host ::ng-deep .card-list-container .card-list-table th.hr-label,:host ::ng-deep .card-list-container .card-list-table td.hr-label{font-size:.75rem;font-weight:343;letter-spacing:.01875rem}.hr-label.sm-bold{font-size:.75rem;font-weight:730;letter-spacing:.01875rem}.hr-label.md-regular{font-size:1rem;font-weight:343;letter-spacing:.03rem}.hr-label.md-bold,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-top-content p.hr-label{font-size:1rem;font-weight:700;letter-spacing:.03rem}.hr-label.lg-regular{font-size:1.75rem;font-weight:343;letter-spacing:.04375rem}.hr-label.lg-bold{font-size:1.75rem;font-weight:700;letter-spacing:.04375rem}.hr-headline{font-family:Roboto Flex,sans-serif}.hr-headline.sm-bold{font-size:2rem;font-weight:700;letter-spacing:.02rem}.hr-headline.md-bold,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-top-content p.hr-headline{font-size:2.375rem;font-weight:700;letter-spacing:.02375rem}.hr-headline.lg-bold{font-size:2.875rem;font-weight:700;letter-spacing:.02875rem}.hr-display{font-family:Roboto Flex,sans-serif}.hr-display.sm-bold{font-size:3.125rem;font-weight:700;letter-spacing:.03125rem}.hr-display.md-bold,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-top-content p.hr-display{font-size:4.1875rem;font-weight:700;letter-spacing:.04188rem}.hr-display.lg-bold{font-size:5.625rem;font-weight:700;letter-spacing:.05625rem}.align-text-center{text-align:center}:host ::ng-deep .card-list-container .card-list-table{height:-moz-fit-content;height:fit-content;border-collapse:separate;border-spacing:0;width:100%;display:var(--card-list-table-display);margin-bottom:1.5rem}:host ::ng-deep .card-list-container .card-list-table th,:host ::ng-deep .card-list-container .card-list-table td{padding:1rem}:host ::ng-deep .card-list-container .card-list-table tr.card-list{background-color:var(--surface-secondary);border-top:1px solid var(--surface-primary);border-radius:.625rem;cursor:pointer}:host ::ng-deep .card-list-container .card-list-table tr.card-list:hover:not(.card-list-selected){outline:1px solid var(--cta-primary);outline-offset:-2px}:host ::ng-deep .card-list-container .card-list-table tr.card-list td:first-child{border-radius:.625rem 0 0 .625rem}:host ::ng-deep .card-list-container .card-list-table tr.card-list td:last-child{border-radius:0 .625rem .625rem 0}:host ::ng-deep .card-list-container .card-list-table tr.card-list-selected{background-color:var(--surface-primary)}:host ::ng-deep .card-list-container .card-list-table tr.card-list-selected td:first-child{border-radius:var(--td-selected-first-child)}:host ::ng-deep .card-list-container .card-list-table tr.card-list-selected td:last-child{border-radius:var(--td-selected-last-child)}:host ::ng-deep .card-list-container .card-list-table tr.card-list-detail{background-color:var(--surface-primary);display:var(--card-list-detail-display)}:host ::ng-deep .card-list-container .card-list-table tr.card-list-detail td:first-child{border-radius:var(--td-detail-first-child)}:host ::ng-deep .card-list-container .card-list-table tr.card-list-detail td:last-child{border-radius:var(--td-detail-last-child)}:host ::ng-deep .card-list-container .card-list-mobile{background-color:var(--surface-primary);border-radius:.3125rem;padding:12px 1rem;margin-bottom:.5rem;display:var(--card-list-mobile-display)}:host ::ng-deep .card-list-container .card-list-mobile:last-child{margin-bottom:.5rem}:host ::ng-deep .card-list-container .card-list-mobile hr{border-top:var(--surface-secondary) solid;opacity:1}:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-top-content{display:flex;justify-content:space-between}:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-bottom-content{display:flex;justify-content:space-between}.xl{--card-list-table-display: table;--card-list-mobile-display: none;--td-selected-first-child: .625rem 0 0 .625rem;--td-selected-last-child: 0 .625rem .625rem 0;--card-list-detail-display: none}.lg{--card-list-table-display: table;--card-list-mobile-display: none;--td-selected-first-child: .625rem 0 0 0;--td-selected-last-child: 0 .625rem 0 0;--card-list-detail-display: table-row;--td-detail-first-child: 0 0 0 .625rem;--td-detail-last-child: 0 0 .625rem 0}.sm{--card-list-table-display: none;--card-list-mobile-display: block}\n"] }); }
|
|
4978
|
+
}
|
|
4979
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GravityCardListComponent, decorators: [{
|
|
4980
|
+
type: Component,
|
|
4981
|
+
args: [{ selector: 'gravity-card-list', template: "<div class=\"card-list-container {{cardListSize}}\" #cardListContainer>\n <ng-content></ng-content>\n</div>\n", styles: [".border-radius-none{border-radius:0}.border-radius-xs{border-radius:.0625rem}.border-radius-sm{border-radius:.3125rem}.border-radius-md{border-radius:.625rem}.border-radius-lg{border-radius:.9375rem}.border-radius-xl{border-radius:1.25rem}.border-radius-xxl{border-radius:2rem}.border-radius-rounded{border-radius:6.25rem}.gravity-padding-none{padding:0!important}.gravity-padding-top-none{padding-top:0!important}.gravity-padding-bottom-none{padding-bottom:0!important}.gravity-padding-left-none{padding-left:0!important}.gravity-padding-right-none{padding-right:0!important}.gravity-padding-block-none{padding-block:0!important}.gravity-padding-inline-none{padding-inline:0!important}.gravity-padding-xs{padding:.5rem!important}.gravity-padding-top-xs{padding-top:.5rem!important}.gravity-padding-bottom-xs{padding-bottom:.5rem!important}.gravity-padding-left-xs{padding-left:.5rem!important}.gravity-padding-right-xs{padding-right:.5rem!important}.gravity-padding-block-xs{padding-block:.5rem!important}.gravity-padding-inline-xs{padding-inline:.5rem!important}.gravity-padding-sm{padding:1rem!important}.gravity-padding-top-sm{padding-top:1rem!important}.gravity-padding-bottom-sm{padding-bottom:1rem!important}.gravity-padding-left-sm{padding-left:1rem!important}.gravity-padding-right-sm{padding-right:1rem!important}.gravity-padding-block-sm{padding-block:1rem!important}.gravity-padding-inline-sm{padding-inline:1rem!important}.gravity-padding-md{padding:1.5rem!important}.gravity-padding-top-md{padding-top:1.5rem!important}.gravity-padding-bottom-md{padding-bottom:1.5rem!important}.gravity-padding-left-md{padding-left:1.5rem!important}.gravity-padding-right-md{padding-right:1.5rem!important}.gravity-padding-block-md{padding-block:1.5rem!important}.gravity-padding-inline-md{padding-inline:1.5rem!important}.gravity-padding-lg{padding:2rem!important}.gravity-padding-top-lg{padding-top:2rem!important}.gravity-padding-bottom-lg{padding-bottom:2rem!important}.gravity-padding-left-lg{padding-left:2rem!important}.gravity-padding-right-lg{padding-right:2rem!important}.gravity-padding-block-lg{padding-block:2rem!important}.gravity-padding-inline-lg{padding-inline:2rem!important}.gravity-padding-xl{padding:3rem!important}.gravity-padding-top-xl{padding-top:3rem!important}.gravity-padding-bottom-xl{padding-bottom:3rem!important}.gravity-padding-left-xl{padding-left:3rem!important}.gravity-padding-right-xl{padding-right:3rem!important}.gravity-padding-block-xl{padding-block:3rem!important}.gravity-padding-inline-xl{padding-inline:3rem!important}.gravity-padding-xxl{padding:4rem!important}.gravity-padding-top-xxl{padding-top:4rem!important}.gravity-padding-bottom-xxl{padding-bottom:4rem!important}.gravity-padding-left-xxl{padding-left:4rem!important}.gravity-padding-right-xxl{padding-right:4rem!important}.gravity-padding-block-xxl{padding-block:4rem!important}.gravity-padding-inline-xxl{padding-inline:4rem!important}.gravity-padding-xxxl{padding:6rem!important}.gravity-padding-top-xxxl{padding-top:6rem!important}.gravity-padding-bottom-xxxl{padding-bottom:6rem!important}.gravity-padding-left-xxxl{padding-left:6rem!important}.gravity-padding-right-xxxl{padding-right:6rem!important}.gravity-padding-block-xxxl{padding-block:6rem!important}.gravity-padding-inline-xxxl{padding-inline:6rem!important}.gravity-padding-xxxxl{padding:12rem!important}.gravity-padding-top-xxxxl{padding-top:12rem!important}.gravity-padding-bottom-xxxxl{padding-bottom:12rem!important}.gravity-padding-left-xxxxl{padding-left:12rem!important}.gravity-padding-right-xxxxl{padding-right:12rem!important}.gravity-padding-block-xxxxl{padding-block:12rem!important}.gravity-padding-inline-xxxxl{padding-inline:12rem!important}.gravity-margin-none{margin:0!important}.gravity-margin-top-none{margin-top:0!important}.gravity-margin-bottom-none{margin-bottom:0!important}.gravity-margin-left-none{margin-left:0!important}.gravity-margin-right-none{margin-right:0!important}.gravity-margin-block-none{margin-block:0!important}.gravity-margin-inline-none{margin-inline:0!important}.gravity-margin-xs{margin:.5rem!important}.gravity-margin-top-xs{margin-top:.5rem!important}.gravity-margin-bottom-xs{margin-bottom:.5rem!important}.gravity-margin-left-xs{margin-left:.5rem!important}.gravity-margin-right-xs{margin-right:.5rem!important}.gravity-margin-block-xs{margin-block:.5rem!important}.gravity-margin-inline-xs{margin-inline:.5rem!important}.gravity-margin-sm{margin:1rem!important}.gravity-margin-top-sm{margin-top:1rem!important}.gravity-margin-bottom-sm{margin-bottom:1rem!important}.gravity-margin-left-sm{margin-left:1rem!important}.gravity-margin-right-sm{margin-right:1rem!important}.gravity-margin-block-sm{margin-block:1rem!important}.gravity-margin-inline-sm{margin-inline:1rem!important}.gravity-margin-md{margin:1.5rem!important}.gravity-margin-top-md{margin-top:1.5rem!important}.gravity-margin-bottom-md{margin-bottom:1.5rem!important}.gravity-margin-left-md{margin-left:1.5rem!important}.gravity-margin-right-md{margin-right:1.5rem!important}.gravity-margin-block-md{margin-block:1.5rem!important}.gravity-margin-inline-md{margin-inline:1.5rem!important}.gravity-margin-lg{margin:2rem!important}.gravity-margin-top-lg{margin-top:2rem!important}.gravity-margin-bottom-lg{margin-bottom:2rem!important}.gravity-margin-left-lg{margin-left:2rem!important}.gravity-margin-right-lg{margin-right:2rem!important}.gravity-margin-block-lg{margin-block:2rem!important}.gravity-margin-inline-lg{margin-inline:2rem!important}.gravity-margin-xl{margin:3rem!important}.gravity-margin-top-xl{margin-top:3rem!important}.gravity-margin-bottom-xl{margin-bottom:3rem!important}.gravity-margin-left-xl{margin-left:3rem!important}.gravity-margin-right-xl{margin-right:3rem!important}.gravity-margin-block-xl{margin-block:3rem!important}.gravity-margin-inline-xl{margin-inline:3rem!important}.gravity-margin-xxl{margin:4rem!important}.gravity-margin-top-xxl{margin-top:4rem!important}.gravity-margin-bottom-xxl{margin-bottom:4rem!important}.gravity-margin-left-xxl{margin-left:4rem!important}.gravity-margin-right-xxl{margin-right:4rem!important}.gravity-margin-block-xxl{margin-block:4rem!important}.gravity-margin-inline-xxl{margin-inline:4rem!important}.gravity-margin-xxxl{margin:6rem!important}.gravity-margin-top-xxxl{margin-top:6rem!important}.gravity-margin-bottom-xxxl{margin-bottom:6rem!important}.gravity-margin-left-xxxl{margin-left:6rem!important}.gravity-margin-right-xxxl{margin-right:6rem!important}.gravity-margin-block-xxxl{margin-block:6rem!important}.gravity-margin-inline-xxxl{margin-inline:6rem!important}.gravity-margin-xxxxl{margin:12rem!important}.gravity-margin-top-xxxxl{margin-top:12rem!important}.gravity-margin-bottom-xxxxl{margin-bottom:12rem!important}.gravity-margin-left-xxxxl{margin-left:12rem!important}.gravity-margin-right-xxxxl{margin-right:12rem!important}.gravity-margin-block-xxxxl{margin-block:12rem!important}.gravity-margin-inline-xxxxl{margin-inline:12rem!important}body{font-family:Roboto Flex,sans-serif;color:var(--text-primary);leading-trim:both;text-edge:cap;font-style:normal;line-height:normal;font-optical-sizing:auto}.hr-body-text,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-bottom-content p,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-top-content p,:host ::ng-deep .card-list-container .card-list-table td p,:host ::ng-deep .card-list-container .card-list-table th,:host ::ng-deep .card-list-container .card-list-table td{font-family:Roboto Flex,sans-serif}.hr-body-text.sm-regular,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-bottom-content p,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-top-content p.sm-regular,:host ::ng-deep .card-list-container .card-list-table td p,:host ::ng-deep .card-list-container .card-list-table th,:host ::ng-deep .card-list-container .card-list-table td{font-size:.75rem;font-weight:400;line-height:1.17525rem;letter-spacing:.01875rem}.hr-body-text.sm-bold,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-bottom-content p.sm-bold,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-top-content p.sm-bold,:host ::ng-deep .card-list-container .card-list-table td p.sm-bold,:host ::ng-deep .card-list-container .card-list-table th.sm-bold,:host ::ng-deep .card-list-container .card-list-table td.sm-bold{font-size:.75rem;font-weight:650;line-height:1.17525rem;letter-spacing:.01875rem}.hr-body-text.md-regular,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-bottom-content p.md-regular,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-top-content p.md-regular,:host ::ng-deep .card-list-container .card-list-table td p.md-regular,:host ::ng-deep .card-list-container .card-list-table th.md-regular,:host ::ng-deep .card-list-container .card-list-table td.md-regular{font-size:1rem;font-weight:400;line-height:1.567rem;letter-spacing:.025rem}.hr-body-text.lg-regular,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-bottom-content p.lg-regular,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-top-content p.lg-regular,:host ::ng-deep .card-list-container .card-list-table td p.lg-regular,:host ::ng-deep .card-list-container .card-list-table th.lg-regular,:host ::ng-deep .card-list-container .card-list-table td.lg-regular{font-size:1.3325rem;font-weight:400;line-height:2.088rem;letter-spacing:.01969rem}.hr-body-text.lg-bold,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-bottom-content p.lg-bold,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-top-content p.lg-bold,:host ::ng-deep .card-list-container .card-list-table td p.lg-bold,:host ::ng-deep .card-list-container .card-list-table th.lg-bold,:host ::ng-deep .card-list-container .card-list-table td.lg-bold{font-size:1.3325rem;font-weight:700;line-height:1.99106rem;letter-spacing:.01969rem}.hr-title{font-family:Roboto Flex,sans-serif}.hr-title.sm-regular,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-bottom-content p.hr-title,:host ::ng-deep .card-list-container .card-list-table td p.hr-title,:host ::ng-deep .card-list-container .card-list-table th.hr-title,:host ::ng-deep .card-list-container .card-list-table td.hr-title{font-size:1rem;font-weight:420;letter-spacing:.02rem}.hr-title.sm-bold{font-size:1rem;font-weight:731;letter-spacing:.02rem}.hr-title.md-bold,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-top-content p.hr-title{font-size:1.3325rem;font-weight:745;letter-spacing:.02665rem}.hr-title.lg-regular{font-size:1.75rem;font-weight:480;letter-spacing:.02625rem}.hr-title.lg-bold{font-size:1.75rem;font-weight:760}.hr-label{font-family:Roboto Flex,sans-serif}.hr-label.sm-regular,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-bottom-content p.hr-label,:host ::ng-deep .card-list-container .card-list-table td p.hr-label,:host ::ng-deep .card-list-container .card-list-table th.hr-label,:host ::ng-deep .card-list-container .card-list-table td.hr-label{font-size:.75rem;font-weight:343;letter-spacing:.01875rem}.hr-label.sm-bold{font-size:.75rem;font-weight:730;letter-spacing:.01875rem}.hr-label.md-regular{font-size:1rem;font-weight:343;letter-spacing:.03rem}.hr-label.md-bold,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-top-content p.hr-label{font-size:1rem;font-weight:700;letter-spacing:.03rem}.hr-label.lg-regular{font-size:1.75rem;font-weight:343;letter-spacing:.04375rem}.hr-label.lg-bold{font-size:1.75rem;font-weight:700;letter-spacing:.04375rem}.hr-headline{font-family:Roboto Flex,sans-serif}.hr-headline.sm-bold{font-size:2rem;font-weight:700;letter-spacing:.02rem}.hr-headline.md-bold,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-top-content p.hr-headline{font-size:2.375rem;font-weight:700;letter-spacing:.02375rem}.hr-headline.lg-bold{font-size:2.875rem;font-weight:700;letter-spacing:.02875rem}.hr-display{font-family:Roboto Flex,sans-serif}.hr-display.sm-bold{font-size:3.125rem;font-weight:700;letter-spacing:.03125rem}.hr-display.md-bold,:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-top-content p.hr-display{font-size:4.1875rem;font-weight:700;letter-spacing:.04188rem}.hr-display.lg-bold{font-size:5.625rem;font-weight:700;letter-spacing:.05625rem}.align-text-center{text-align:center}:host ::ng-deep .card-list-container .card-list-table{height:-moz-fit-content;height:fit-content;border-collapse:separate;border-spacing:0;width:100%;display:var(--card-list-table-display);margin-bottom:1.5rem}:host ::ng-deep .card-list-container .card-list-table th,:host ::ng-deep .card-list-container .card-list-table td{padding:1rem}:host ::ng-deep .card-list-container .card-list-table tr.card-list{background-color:var(--surface-secondary);border-top:1px solid var(--surface-primary);border-radius:.625rem;cursor:pointer}:host ::ng-deep .card-list-container .card-list-table tr.card-list:hover:not(.card-list-selected){outline:1px solid var(--cta-primary);outline-offset:-2px}:host ::ng-deep .card-list-container .card-list-table tr.card-list td:first-child{border-radius:.625rem 0 0 .625rem}:host ::ng-deep .card-list-container .card-list-table tr.card-list td:last-child{border-radius:0 .625rem .625rem 0}:host ::ng-deep .card-list-container .card-list-table tr.card-list-selected{background-color:var(--surface-primary)}:host ::ng-deep .card-list-container .card-list-table tr.card-list-selected td:first-child{border-radius:var(--td-selected-first-child)}:host ::ng-deep .card-list-container .card-list-table tr.card-list-selected td:last-child{border-radius:var(--td-selected-last-child)}:host ::ng-deep .card-list-container .card-list-table tr.card-list-detail{background-color:var(--surface-primary);display:var(--card-list-detail-display)}:host ::ng-deep .card-list-container .card-list-table tr.card-list-detail td:first-child{border-radius:var(--td-detail-first-child)}:host ::ng-deep .card-list-container .card-list-table tr.card-list-detail td:last-child{border-radius:var(--td-detail-last-child)}:host ::ng-deep .card-list-container .card-list-mobile{background-color:var(--surface-primary);border-radius:.3125rem;padding:12px 1rem;margin-bottom:.5rem;display:var(--card-list-mobile-display)}:host ::ng-deep .card-list-container .card-list-mobile:last-child{margin-bottom:.5rem}:host ::ng-deep .card-list-container .card-list-mobile hr{border-top:var(--surface-secondary) solid;opacity:1}:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-top-content{display:flex;justify-content:space-between}:host ::ng-deep .card-list-container .card-list-mobile .card-list-mobile-bottom-content{display:flex;justify-content:space-between}.xl{--card-list-table-display: table;--card-list-mobile-display: none;--td-selected-first-child: .625rem 0 0 .625rem;--td-selected-last-child: 0 .625rem .625rem 0;--card-list-detail-display: none}.lg{--card-list-table-display: table;--card-list-mobile-display: none;--td-selected-first-child: .625rem 0 0 0;--td-selected-last-child: 0 .625rem 0 0;--card-list-detail-display: table-row;--td-detail-first-child: 0 0 0 .625rem;--td-detail-last-child: 0 0 .625rem 0}.sm{--card-list-table-display: none;--card-list-mobile-display: block}\n"] }]
|
|
4982
|
+
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { cardListContainer: [{
|
|
4983
|
+
type: ViewChild,
|
|
4984
|
+
args: ['cardListContainer']
|
|
4985
|
+
}], contentElements: [{
|
|
4986
|
+
type: ContentChildren,
|
|
4987
|
+
args: ['th, td, p', { descendants: true }]
|
|
4988
|
+
}], onResize: [{
|
|
4989
|
+
type: HostListener,
|
|
4990
|
+
args: ['window:resize', ['$event']]
|
|
4991
|
+
}] } });
|
|
4992
|
+
|
|
4911
4993
|
class GravityCurrencyComponent {
|
|
4912
4994
|
constructor() {
|
|
4913
4995
|
this.size = 'md-24';
|
|
@@ -4960,6 +5042,7 @@ class GravityDesignSystemModule {
|
|
|
4960
5042
|
GravityButtonComponent,
|
|
4961
5043
|
GravityCalendarComponent,
|
|
4962
5044
|
GravityCalendarV2Component,
|
|
5045
|
+
GravityCardListComponent,
|
|
4963
5046
|
GravityCheckboxComponent,
|
|
4964
5047
|
GravityCurrencyComponent,
|
|
4965
5048
|
GravityCurrencyDisplayComponent,
|
|
@@ -5008,6 +5091,7 @@ class GravityDesignSystemModule {
|
|
|
5008
5091
|
GravityButtonComponent,
|
|
5009
5092
|
GravityCalendarComponent,
|
|
5010
5093
|
GravityCalendarV2Component,
|
|
5094
|
+
GravityCardListComponent,
|
|
5011
5095
|
GravityCheckboxComponent,
|
|
5012
5096
|
GravityCurrencyComponent,
|
|
5013
5097
|
GravityCurrencyDisplayComponent,
|
|
@@ -5051,6 +5135,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
5051
5135
|
GravityButtonComponent,
|
|
5052
5136
|
GravityCalendarComponent,
|
|
5053
5137
|
GravityCalendarV2Component,
|
|
5138
|
+
GravityCardListComponent,
|
|
5054
5139
|
GravityCheckboxComponent,
|
|
5055
5140
|
GravityCurrencyComponent,
|
|
5056
5141
|
GravityCurrencyDisplayComponent,
|
|
@@ -5088,7 +5173,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
5088
5173
|
BsDaterangepickerContainerComponent,
|
|
5089
5174
|
BsDaterangepickerDirective,
|
|
5090
5175
|
BsDaterangepickerInlineContainerComponent,
|
|
5091
|
-
BsDaterangepickerInlineDirective
|
|
5176
|
+
BsDaterangepickerInlineDirective,
|
|
5092
5177
|
],
|
|
5093
5178
|
imports: [
|
|
5094
5179
|
AngularSvgIconModule.forRoot(),
|
|
@@ -5111,6 +5196,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
5111
5196
|
GravityButtonComponent,
|
|
5112
5197
|
GravityCalendarComponent,
|
|
5113
5198
|
GravityCalendarV2Component,
|
|
5199
|
+
GravityCardListComponent,
|
|
5114
5200
|
GravityCheckboxComponent,
|
|
5115
5201
|
GravityCurrencyComponent,
|
|
5116
5202
|
GravityCurrencyDisplayComponent,
|
|
@@ -5185,5 +5271,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
5185
5271
|
* Generated bundle index. Do not edit.
|
|
5186
5272
|
*/
|
|
5187
5273
|
|
|
5188
|
-
export { BsNavigationDirection, GravityAttachFileComponent, GravityAvatarStackComponent, GravityButtonComponent, GravityCalendarComponent, GravityCalendarV2Component, GravityCheckboxComponent, GravityCurrencyComponent, GravityCurrencyDisplayComponent, GravityDesignSystemModule, GravityDialogComponent, GravityDialogManagerService, GravityDropdownListComponent, GravityIconButtonComponent, GravityIconComponent, GravityMultiLanguageComponent, GravityNetworkPillComponent, GravityNotificationInstantContainerComponent, GravityOffcanvasComponent, GravityRadioButtonComponent, GravityStatusIndicatorComponent, GravityStepperComponent, GravitySwitchComponent, GravityTableComponent, GravityTextFieldComponent, GravityTextFieldNumberOnlyComponent, GravityTooltipComponent, GravityTooltipDirective, GravityTooltipModule, GravityTreeViewComponent, ICONS, OLD_ICONS };
|
|
5274
|
+
export { BsNavigationDirection, GravityAttachFileComponent, GravityAvatarStackComponent, GravityButtonComponent, GravityCalendarComponent, GravityCalendarV2Component, GravityCardListComponent, GravityCheckboxComponent, GravityCurrencyComponent, GravityCurrencyDisplayComponent, GravityDesignSystemModule, GravityDialogComponent, GravityDialogManagerService, GravityDropdownListComponent, GravityIconButtonComponent, GravityIconComponent, GravityMultiLanguageComponent, GravityNetworkPillComponent, GravityNotificationInstantContainerComponent, GravityOffcanvasComponent, GravityRadioButtonComponent, GravityStatusIndicatorComponent, GravityStepperComponent, GravitySwitchComponent, GravityTableComponent, GravityTextFieldComponent, GravityTextFieldNumberOnlyComponent, GravityTooltipComponent, GravityTooltipDirective, GravityTooltipModule, GravityTreeViewComponent, ICONS, OLD_ICONS };
|
|
5189
5275
|
//# sourceMappingURL=progressio_resources-gravity-design-system.mjs.map
|