@allsorter/ui-components 0.0.410 → 0.0.412
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/fesm2022/allsorter-ui-components.mjs +9 -3
- package/fesm2022/allsorter-ui-components.mjs.map +1 -1
- package/lib/responsive-layout/responsive-layout.component.d.ts +1 -0
- package/package.json +1 -1
- package/src/lib/editable-form-wrapper/editable-form-wrapper.component.scss +226 -20
- package/src/lib/test-styling/test-styling.component.html +159 -1
|
@@ -3427,6 +3427,9 @@ class ResponsiveLayoutComponent {
|
|
|
3427
3427
|
get hasMinCols2() {
|
|
3428
3428
|
return this.minColumns === 2;
|
|
3429
3429
|
}
|
|
3430
|
+
get hasMinCols3() {
|
|
3431
|
+
return this.minColumns === 3;
|
|
3432
|
+
}
|
|
3430
3433
|
// Expose CSS variables on host for SCSS to pick up.
|
|
3431
3434
|
get cssGap() {
|
|
3432
3435
|
return typeof this.gap === 'string' ? this.gap : `$ {
|
|
@@ -3470,7 +3473,7 @@ class ResponsiveLayoutComponent {
|
|
|
3470
3473
|
return this.dataTestId || null;
|
|
3471
3474
|
}
|
|
3472
3475
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ResponsiveLayoutComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3473
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: ResponsiveLayoutComponent, isStandalone: true, selector: "app-flex-grid", inputs: { dataTestId: "dataTestId", type: "type", gap: "gap", marginBottom: "marginBottom", countMobile: "countMobile", countMobileSm: "countMobileSm", countTablet: "countTablet", countDesktop: "countDesktop", mobRow: "mobRow", mobCols: "mobCols", rows: "rows", tabRow: "tabRow", desktop: "desktop", minColumns: "minColumns" }, host: { properties: { "class.min-cols-2": "this.hasMinCols2", "style.--gap": "this.cssGap", "style.--count-mobile": "this.cssCountMobile", "style.--count-mobile-sm": "this.cssCountMobileSm", "style.--count-tablet": "this.cssCountTablet", "style.--count-desktop": "this.cssCountDesktop", "style.--mb": "this.cssMarginBottom", "class.row": "this.isRow", "class.col": "this.isCol", "attr.data-testid": "this.dataTestIdAttr" } }, ngImport: i0, template: "<ng-content></ng-content>", styles: [":host{display:grid;gap:var(--gap, 8px);width:100%;--current-count: var(--count-desktop, 4);container-type:inline-size;container-name:flex-grid}:host(.row){grid-auto-flow:row;grid-template-columns:repeat(var(--current-count),minmax(0,1fr));margin-bottom:var(--mb, 16px)}:host(.col){grid-auto-flow:row;grid-template-columns:repeat(var(--current-count),minmax(0,1fr))}@media (max-width: 767.98px){:host{--current-count: var(--count-mobile, 1)}}@media (min-width: 768px) and (max-width: 1023.98px){:host{--current-count: var(--count-tablet, 2)}}@media (min-width: 1024px){:host{--current-count: var(--count-desktop, 3)}}@container flex-grid (max-width: 600px){:host(.row),:host(.col){--current-count: 1 !important;grid-template-columns:1fr!important}}@container form-wrapper (max-width: 600px){:host(.row),:host(.col){--current-count: 1 !important;grid-template-columns:1fr!important}}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
3476
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: ResponsiveLayoutComponent, isStandalone: true, selector: "app-flex-grid", inputs: { dataTestId: "dataTestId", type: "type", gap: "gap", marginBottom: "marginBottom", countMobile: "countMobile", countMobileSm: "countMobileSm", countTablet: "countTablet", countDesktop: "countDesktop", mobRow: "mobRow", mobCols: "mobCols", rows: "rows", tabRow: "tabRow", desktop: "desktop", minColumns: "minColumns" }, host: { properties: { "class.min-cols-2": "this.hasMinCols2", "class.min-cols-3": "this.hasMinCols3", "style.--gap": "this.cssGap", "style.--count-mobile": "this.cssCountMobile", "style.--count-mobile-sm": "this.cssCountMobileSm", "style.--count-tablet": "this.cssCountTablet", "style.--count-desktop": "this.cssCountDesktop", "style.--mb": "this.cssMarginBottom", "class.row": "this.isRow", "class.col": "this.isCol", "attr.data-testid": "this.dataTestIdAttr" } }, ngImport: i0, template: "<ng-content></ng-content>", styles: [":host{display:grid;gap:var(--gap, 8px);width:100%;--current-count: var(--count-desktop, 4);container-type:inline-size;container-name:flex-grid}:host(.row){grid-auto-flow:row;grid-template-columns:repeat(var(--current-count),minmax(0,1fr));margin-bottom:var(--mb, 16px)}:host(.col){grid-auto-flow:row;grid-template-columns:repeat(var(--current-count),minmax(0,1fr))}@media (max-width: 767.98px){:host{--current-count: var(--count-mobile, 1)}}@media (min-width: 768px) and (max-width: 1023.98px){:host{--current-count: var(--count-tablet, 2)}}@media (min-width: 1024px){:host{--current-count: var(--count-desktop, 3)}}@container flex-grid (max-width: 600px){:host(.row),:host(.col){--current-count: 1 !important;grid-template-columns:1fr!important}}@container form-wrapper (max-width: 600px){:host(.row),:host(.col){--current-count: 1 !important;grid-template-columns:1fr!important}}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
3474
3477
|
}
|
|
3475
3478
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ResponsiveLayoutComponent, decorators: [{
|
|
3476
3479
|
type: Component,
|
|
@@ -3506,6 +3509,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
3506
3509
|
}], hasMinCols2: [{
|
|
3507
3510
|
type: HostBinding,
|
|
3508
3511
|
args: ['class.min-cols-2']
|
|
3512
|
+
}], hasMinCols3: [{
|
|
3513
|
+
type: HostBinding,
|
|
3514
|
+
args: ['class.min-cols-3']
|
|
3509
3515
|
}], cssGap: [{
|
|
3510
3516
|
type: HostBinding,
|
|
3511
3517
|
args: ['style.--gap']
|
|
@@ -6694,11 +6700,11 @@ class EditableFormWrapperComponent {
|
|
|
6694
6700
|
});
|
|
6695
6701
|
}
|
|
6696
6702
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: EditableFormWrapperComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6697
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: EditableFormWrapperComponent, isStandalone: true, selector: "al-form", inputs: { testId: "testId", showLeftButton: "showLeftButton", showSaveButton: "showSaveButton", showDeleteButton: "showDeleteButton", leftContainerClass: "leftContainerClass", leftContainerStyle: "leftContainerStyle", scrollContainer: "scrollContainer", clampPadding: "clampPadding" }, outputs: { leftButtonClick: "leftButtonClick", saveButtonClick: "saveButtonClick", deleteButtonClick: "deleteButtonClick" }, viewQueries: [{ propertyName: "wrapperRef", first: true, predicate: ["wrapper"], descendants: true }, { propertyName: "buttonGroupRef", first: true, predicate: ["buttonGroup"], descendants: true }, { propertyName: "leftButtonRef", first: true, predicate: ["leftButton"], descendants: true }], ngImport: i0, template: "<div class=\"al-form-wrapper\" #wrapper [attr.data-test-id]=\"testId\">\n <div *ngIf=\"showLeftButton\" #leftButton class=\"fab left\">\n <div\n class=\"left-button-container\"\n [ngClass]=\"leftContainerClass\"\n [ngStyle]=\"leftContainerStyle\">\n <ng-content select=\"[leftButtonContent]\"></ng-content>\n </div>\n </div>\n <div class=\"inner\"><ng-content></ng-content></div>\n <div class=\"fab-group right\" #buttonGroup><al-button *ngIf=\"showSaveButton\" class=\"fab\" [buttonType]=\"'icon-circle'\"\n [iconOnly]=\"true\" [leftIcon]=\"'save'\" [arialabel]=\"'Save'\" [size]=\"'base'\" iconOutlined=\"true\"\n [color]=\"'green'\" (onClick)=\"saveButtonClick.emit($event)\"></al-button><al-button *ngIf=\"showDeleteButton\" class=\"fab warn\" [buttonType]=\"'icon-circle'\"\n [iconOnly]=\"true\" [leftIcon]=\"'cancel'\" [arialabel]=\"'Delete'\" [size]=\"'base'\" [color]=\"'error'\" iconOutlined=\"true\"\n (onClick)=\"deleteButtonClick.emit($event)\"></al-button>\n </div>\n</div>\n", styles: ["@charset \"UTF-8\";@import\"https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap\";.weight-light{font-weight:300}.weight-regular{font-weight:400}.weight-medium{font-weight:500}.weight-semibold{font-weight:600}.weight-bold{font-weight:700}.line-height-none{line-height:1!important}.line-height-tight{line-height:1.2!important}.line-height-normal{line-height:1.4!important}.letter-spacing-normal{letter-spacing:0!important}.letter-spacing-wide{letter-spacing:.1em!important}.letter-spacing-wider{letter-spacing:.2em!important}.text-decoration-none{text-decoration:none!important;font-style:normal!important}.text-decoration-underline{text-decoration:underline!important;font-style:normal!important}.text-decoration-italic{text-decoration:none!important;font-style:italic!important}.text-decoration-strike{text-decoration:line-through!important;font-style:normal!important}.font-text-5xl{font-size:2rem;line-height:1.2;letter-spacing:-.1px;font-weight:400;color:#4b4f62}.font-text-5xl-medium{font-size:2rem;line-height:1.2;letter-spacing:-.1px;font-weight:500;color:#4b4f62}.font-text-5xl-bold{font-size:2rem;line-height:1.2;letter-spacing:-.1px;font-weight:700;color:#4b4f62}.font-text-4xl{font-size:1.75rem;line-height:1.2;letter-spacing:-.1px;font-weight:400;color:#4b4f62}.font-text-4xl-medium{font-size:1.75rem;line-height:1.2;letter-spacing:-.1px;font-weight:500;color:#4b4f62}.font-text-4xl-bold{font-size:1.75rem;line-height:1.2;letter-spacing:-.1px;font-weight:700;color:#4b4f62}.font-text-3xl{font-size:1.5rem;line-height:1.2;letter-spacing:-.1px;font-weight:400;color:#4b4f62}.font-text-3xl-medium{font-size:1.5rem;line-height:1.2;letter-spacing:-.1px;font-weight:500;color:#4b4f62}.font-text-3xl-bold{font-size:1.5rem;line-height:1.2;letter-spacing:-.1px;font-weight:700;color:#4b4f62}.font-text-2xl{font-size:1.375rem;line-height:1.2;letter-spacing:-.1px;font-weight:400;color:#4b4f62}.font-text-2xl-medium{font-size:1.375rem;line-height:1.2;letter-spacing:-.1px;font-weight:500;color:#4b4f62}.font-text-2xl-bold{font-size:1.375rem;line-height:1.2;letter-spacing:-.1px;font-weight:700;color:#4b4f62}.font-text-xl{font-size:1.25rem;line-height:1.2;letter-spacing:-.1px;font-weight:400;color:#4b4f62}.font-text-xl-medium{font-size:1.25rem;line-height:1.2;letter-spacing:-.1px;font-weight:500;color:#4b4f62}.font-text-xl-bold{font-size:1.25rem;line-height:1.2;letter-spacing:-.1px;font-weight:700;color:#4b4f62}.font-text-lg{font-size:1rem;line-height:1.4;letter-spacing:.25px;font-weight:400;color:#4b4f62}.font-text-lg-medium{font-size:1rem;line-height:1.4;letter-spacing:.25px;font-weight:500;color:#4b4f62}.font-text-lg-bold{font-size:1rem;line-height:1.4;letter-spacing:.25px;font-weight:700;color:#4b4f62}.font-text-base{font-size:.875rem;line-height:1.4;letter-spacing:.25px;font-weight:400;color:#4b4f62}.font-text-base-medium{font-size:.875rem;line-height:1.4;letter-spacing:.25px;font-weight:500;color:#4b4f62}.font-text-base-bold{font-size:.875rem;line-height:1.4;letter-spacing:.25px;font-weight:700;color:#4b4f62}.font-text-sm{font-size:.75rem;line-height:1.4;letter-spacing:.5px;font-weight:400;color:#4b4f62}.font-text-sm-medium{font-size:.75rem;line-height:1.4;letter-spacing:.5px;font-weight:500;color:#4b4f62}.font-text-sm-bold{font-size:.75rem;line-height:1.4;letter-spacing:.5px;font-weight:700;color:#4b4f62}.font-text-xs{font-size:.625rem;line-height:1.4;letter-spacing:.5px;font-weight:400;color:#4b4f62}.font-text-xs-medium{font-size:.625rem;line-height:1.4;letter-spacing:.5px;font-weight:500;color:#4b4f62}.font-text-xs-bold{font-size:.625rem;line-height:1.4;letter-spacing:.5px;font-weight:700;color:#4b4f62}.font-display-large{font-family:Roboto,sans-serif!important;font-size:57px;font-style:normal;font-weight:400;line-height:64px;letter-spacing:-.25px}.font-display-medium{font-family:Roboto,sans-serif!important;font-size:45px;font-style:normal;font-weight:400;line-height:52px}.font-display-small{font-family:Roboto,sans-serif!important;font-size:36px;font-style:normal;font-weight:400;line-height:44px}.font-headline-large{font-family:Roboto,sans-serif!important;font-size:32px;font-style:normal;font-weight:400;line-height:40px}.font-headline-medium{font-family:Roboto,sans-serif!important;font-size:28px;font-style:normal;font-weight:400;line-height:36px}.font-headline-small{font-family:Roboto,sans-serif!important;font-size:24px;font-style:normal;font-weight:400;line-height:32px}.font-title-large{font-family:Roboto,sans-serif!important;font-size:22px;font-style:normal;font-weight:400;line-height:28px}.font-title-medium{font-family:Roboto,sans-serif!important;font-size:16px;font-style:normal;font-weight:400;line-height:24px;letter-spacing:.15px}.font-title-small{font-family:Roboto,sans-serif!important;font-size:14px;font-style:normal;font-weight:400;line-height:20px;letter-spacing:.1px}.font-label-large{font-family:Roboto,sans-serif!important;font-size:14px;font-style:normal;font-weight:500;line-height:20px;letter-spacing:.1px}.font-label-medium{font-family:Roboto,sans-serif!important;font-size:12px;font-style:normal;font-weight:400;line-height:12px;letter-spacing:.5px}.font-label-small{font-family:Roboto,sans-serif!important;font-size:10px;font-style:normal;font-weight:400;line-height:10px;letter-spacing:.5px}.font-body-large{font-family:Roboto,sans-serif!important;font-size:16px;font-style:normal;font-weight:400;line-height:24px;letter-spacing:.5px}.font-body-medium{font-family:Roboto,sans-serif!important;font-size:14px;font-style:normal;font-weight:400;line-height:20px;letter-spacing:.25px}.font-body-small{font-family:Roboto,sans-serif!important;font-size:12px;font-style:normal;font-weight:400;line-height:16px;letter-spacing:.4px}.typo-medium-700{color:var(--Greys-700, #4B4F62);font-family:Roboto,sans-serif!important;font-size:14px;font-style:normal;font-weight:500;line-height:140%;letter-spacing:.035px}.typo-description{color:var(--Greys-700, #4B4F62);font-family:Roboto,sans-serif!important;font-size:14px;font-style:normal;font-weight:400;line-height:1.4;letter-spacing:.035px}.text-grey-500{color:#a2a6b8!important}.font-location-text{color:#717793;font-family:Roboto,sans-serif!important;font-size:16px;font-style:italic;font-weight:400;line-height:140%;letter-spacing:.04px}.font-title-text{color:#717793;font-family:Roboto,sans-serif!important;font-size:16px;font-style:normal;font-weight:700;line-height:140%;letter-spacing:.04px}:root{--color-blue-50: #E5E9FC;--color-blue-100: #BBC7F6;--color-blue-200: #98ABF1;--color-blue-300: #768FED;--color-blue-400: #6581EA;--color-blue-500: #5473E8;--color-blue-600: #1E46DF;--color-blue-700: #0F236F;--color-blue-800: #071238;--color-blue-900: #04091C;--color-green-50: #D7F3F5;--color-green-100: #AFE6EB;--color-green-200: #87DAE2;--color-green-300: #5FCDD8;--color-green-400: #4BC7D3;--color-green-500: #37C1CE;--color-green-600: #299DA8;--color-green-700: #1F767E;--color-green-800: #154E54;--color-green-900: #0A272A;--color-grey-50: #FAFBFB;--color-grey-100: #ECEDF1;--color-grey-200: #DEE0E6;--color-grey-300: #D1D3DB;--color-grey-400: #C3C5D1;--color-grey-500: #A2A6B8;--color-grey-600: #717793;--color-grey-700: #4B4F62;--color-grey-800: #383B4A;--color-grey-900: #252831;--color-error-50: #FDEEF6;--color-error-100: #F9D4E8;--color-error-200: #F6BBDB;--color-error-300: #F2A1CD;--color-error-400: #EF87BF;--color-error-500: #E854A4;--color-error-600: #E22A8E;--color-error-700: #C31A75;--color-error-800: #99155C;--color-error-900: #6F0F43;--color-success-50: #E9F9F3;--color-success-100: #C8F1E3;--color-success-200: #9EE7CE;--color-success-300: #6EDDB7;--color-success-400: #3DD3A0;--color-success-500: #00AD83;--color-success-600: #009873;--color-success-700: #007F61;--color-success-800: #00654F;--color-success-900: #003D30;--color-blue: #5473E8;--color-blue-hover: #6581EA;--color-blue-active: #1E46DF;--color-green: #37C1CE;--color-green-hover: #4BC7D3;--color-green-active: #299DA8;--color-grey: #383B4A;--color-grey-hover: #4B4F62;--color-grey-active: #252831;--color-error: #E854A4;--color-error-hover: #EF87BF;--color-error-active: #E22A8E;--color-success: #00AD83;--color-success-hover: #009873;--color-success-active: #007F61;--color-disabled-bg: #D1D3DB;--color-disabled-text: #A2A6B8}:host{display:block;position:relative;padding:0}:host ::ng-deep .al-form__grid{display:grid;gap:16px;margin-top:16px}:host ::ng-deep .al-form__grid.cols-1{grid-template-columns:1fr}:host ::ng-deep .al-form__grid.cols-2{grid-template-columns:1fr 1fr}:host ::ng-deep .al-form__grid.cols-3{grid-template-columns:1fr 1fr 1fr}:host ::ng-deep .al-form__grid .full{grid-column:1/-1}.al-form-wrapper{position:relative;border-radius:16px;background:transparent;width:100%;max-width:100%;box-sizing:border-box;overflow:visible;container-type:inline-size;container-name:form-wrapper;contain:layout style}.al-form-wrapper:before{content:\"\";position:absolute;inset:0;border:1px solid var(--Base-Blue, #6581EA);border-radius:10px;box-shadow:0 0 0 6px #5473e814;pointer-events:none;z-index:1}.al-form-wrapper>.inner{position:relative;padding:24px!important;border-radius:10px;background:#fff;box-sizing:border-box;z-index:0}.al-form-wrapper>.inner>:first-child{margin-top:0!important}.al-form-wrapper>.inner>:last-child{margin-bottom:0!important}.al-form__header{display:flex;gap:10px;align-items:baseline}.al-form__title{font-weight:600;color:#222}.al-form__hint{color:#7a818f}.al-form__paragraph{margin:6px 0 0;color:#3a3f4a}.al-form__demo-form{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:10px}@media (max-width: 767.98px){.al-form__demo-form{grid-template-columns:1fr}}.al-form__demo-form .full{grid-column:1/-1}.al-form__field{display:flex;flex-direction:column;gap:6px}.al-form__field label{font-size:12px;color:#5a6170}.al-form__control{width:100%;padding:10px 12px;border:1px solid #d9def4;border-radius:10px;background:#fff;color:#2a2f3a;outline:none;box-sizing:border-box;box-shadow:0 1px #5877ff0f,inset 0 0 0 2px #5877ff08;transition:box-shadow .15s ease,border-color .15s ease}.al-form__control:focus{border-color:#5877ff99;box-shadow:0 0 0 3px #5877ff24}select.al-form__control{appearance:none;background-image:linear-gradient(45deg,transparent 50%,#7a86ff 50%),linear-gradient(135deg,#7a86ff 50%,transparent 50%);background-position:calc(100% - 18px) calc(1em + 2px),calc(100% - 13px) calc(1em + 2px);background-size:5px 5px,5px 5px;background-repeat:no-repeat}.fab.left{position:absolute;left:-27px;top:36px;z-index:10;background-color:#fff;border-radius:50%;will-change:transform;transition:transform .1s ease-out;opacity:0;height:88px;display:flex;align-items:center}.fab.left .left-button-container{position:absolute;left:56px;top:50%;transform:translateY(-50%);z-index:1;pointer-events:auto}.fab-group.right{position:absolute;right:-16px;top:36px;display:flex;flex-direction:column;border-radius:50%;gap:8px;z-index:2;background-color:#fff;will-change:transform;transition:transform .1s ease-out;opacity:0;height:82px}.fab.left.positioned,.fab-group.right.positioned{opacity:1}:host ::ng-deep app-flex-grid+app-flex-grid{margin-top:16px}:host ::ng-deep app-flex-grid.row{align-items:center}:host ::ng-deep app-flex-grid al-checkbox .checkbox-label-wrapper{margin-top:0;justify-content:center}@media (max-width: 767.98px){:host ::ng-deep app-flex-grid.row.min-cols-2,:host ::ng-deep app-flex-grid.col.min-cols-2{--current-count: 2 !important;grid-template-columns:repeat(2,minmax(0,1fr))!important}:host ::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3){grid-column:1/-1!important}}@container form-wrapper (max-width: 600px){:host ::ng-deep app-flex-grid.row.min-cols-2,:host ::ng-deep app-flex-grid.col.min-cols-2{--current-count: 2 !important;grid-template-columns:repeat(2,minmax(0,1fr))!important}:host ::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3){grid-column:1/-1!important}}@container form-wrapper (min-width: 600px){:host ::ng-deep app-flex-grid.row.min-cols-2>*:nth-child(1){order:1}:host ::ng-deep app-flex-grid.row.min-cols-2>*:nth-child(2){order:4}:host ::ng-deep app-flex-grid.row.min-cols-2>*:nth-child(3){order:2}:host ::ng-deep app-flex-grid.row.min-cols-2>*:nth-child(4){order:3}:host ::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3){order:3}:host ::ng-deep app-flex-grid.row.min-cols-2>*:nth-child(2):nth-last-child(2){order:1}:host ::ng-deep app-flex-grid.row.min-cols-2>*:nth-child(3):last-child{order:2}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.fab.left,.fab-group.right{opacity:0;animation:fadeIn 1s ease-out forwards}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: ButtonComponent, selector: "al-button", inputs: ["state", "disabled", "color", "category", "outline", "labelText", "label", "arialabel", "iconOnly", "leftIcon", "rightIcon", "icon", "iconOutlined", "outlined", "size", "buttonType", "fontClass", "dataTestId", "tooltip", "tooltipPosition", "dropdownItems", "dropdownOptions", "hasDropDown", "dropdown", "hasDropdown", "isDropdown"], outputs: ["onClick", "onHover", "onMouseLeave", "optionSelect"] }], changeDetection: i0.ChangeDetectionStrategy.Default }); }
|
|
6703
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: EditableFormWrapperComponent, isStandalone: true, selector: "al-form", inputs: { testId: "testId", showLeftButton: "showLeftButton", showSaveButton: "showSaveButton", showDeleteButton: "showDeleteButton", leftContainerClass: "leftContainerClass", leftContainerStyle: "leftContainerStyle", scrollContainer: "scrollContainer", clampPadding: "clampPadding" }, outputs: { leftButtonClick: "leftButtonClick", saveButtonClick: "saveButtonClick", deleteButtonClick: "deleteButtonClick" }, viewQueries: [{ propertyName: "wrapperRef", first: true, predicate: ["wrapper"], descendants: true }, { propertyName: "buttonGroupRef", first: true, predicate: ["buttonGroup"], descendants: true }, { propertyName: "leftButtonRef", first: true, predicate: ["leftButton"], descendants: true }], ngImport: i0, template: "<div class=\"al-form-wrapper\" #wrapper [attr.data-test-id]=\"testId\">\n <div *ngIf=\"showLeftButton\" #leftButton class=\"fab left\">\n <div\n class=\"left-button-container\"\n [ngClass]=\"leftContainerClass\"\n [ngStyle]=\"leftContainerStyle\">\n <ng-content select=\"[leftButtonContent]\"></ng-content>\n </div>\n </div>\n <div class=\"inner\"><ng-content></ng-content></div>\n <div class=\"fab-group right\" #buttonGroup><al-button *ngIf=\"showSaveButton\" class=\"fab\" [buttonType]=\"'icon-circle'\"\n [iconOnly]=\"true\" [leftIcon]=\"'save'\" [arialabel]=\"'Save'\" [size]=\"'base'\" iconOutlined=\"true\"\n [color]=\"'green'\" (onClick)=\"saveButtonClick.emit($event)\"></al-button><al-button *ngIf=\"showDeleteButton\" class=\"fab warn\" [buttonType]=\"'icon-circle'\"\n [iconOnly]=\"true\" [leftIcon]=\"'cancel'\" [arialabel]=\"'Delete'\" [size]=\"'base'\" [color]=\"'error'\" iconOutlined=\"true\"\n (onClick)=\"deleteButtonClick.emit($event)\"></al-button>\n </div>\n</div>\n", styles: ["@charset \"UTF-8\";@import\"https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap\";.weight-light{font-weight:300}.weight-regular{font-weight:400}.weight-medium{font-weight:500}.weight-semibold{font-weight:600}.weight-bold{font-weight:700}.line-height-none{line-height:1!important}.line-height-tight{line-height:1.2!important}.line-height-normal{line-height:1.4!important}.letter-spacing-normal{letter-spacing:0!important}.letter-spacing-wide{letter-spacing:.1em!important}.letter-spacing-wider{letter-spacing:.2em!important}.text-decoration-none{text-decoration:none!important;font-style:normal!important}.text-decoration-underline{text-decoration:underline!important;font-style:normal!important}.text-decoration-italic{text-decoration:none!important;font-style:italic!important}.text-decoration-strike{text-decoration:line-through!important;font-style:normal!important}.font-text-5xl{font-size:2rem;line-height:1.2;letter-spacing:-.1px;font-weight:400;color:#4b4f62}.font-text-5xl-medium{font-size:2rem;line-height:1.2;letter-spacing:-.1px;font-weight:500;color:#4b4f62}.font-text-5xl-bold{font-size:2rem;line-height:1.2;letter-spacing:-.1px;font-weight:700;color:#4b4f62}.font-text-4xl{font-size:1.75rem;line-height:1.2;letter-spacing:-.1px;font-weight:400;color:#4b4f62}.font-text-4xl-medium{font-size:1.75rem;line-height:1.2;letter-spacing:-.1px;font-weight:500;color:#4b4f62}.font-text-4xl-bold{font-size:1.75rem;line-height:1.2;letter-spacing:-.1px;font-weight:700;color:#4b4f62}.font-text-3xl{font-size:1.5rem;line-height:1.2;letter-spacing:-.1px;font-weight:400;color:#4b4f62}.font-text-3xl-medium{font-size:1.5rem;line-height:1.2;letter-spacing:-.1px;font-weight:500;color:#4b4f62}.font-text-3xl-bold{font-size:1.5rem;line-height:1.2;letter-spacing:-.1px;font-weight:700;color:#4b4f62}.font-text-2xl{font-size:1.375rem;line-height:1.2;letter-spacing:-.1px;font-weight:400;color:#4b4f62}.font-text-2xl-medium{font-size:1.375rem;line-height:1.2;letter-spacing:-.1px;font-weight:500;color:#4b4f62}.font-text-2xl-bold{font-size:1.375rem;line-height:1.2;letter-spacing:-.1px;font-weight:700;color:#4b4f62}.font-text-xl{font-size:1.25rem;line-height:1.2;letter-spacing:-.1px;font-weight:400;color:#4b4f62}.font-text-xl-medium{font-size:1.25rem;line-height:1.2;letter-spacing:-.1px;font-weight:500;color:#4b4f62}.font-text-xl-bold{font-size:1.25rem;line-height:1.2;letter-spacing:-.1px;font-weight:700;color:#4b4f62}.font-text-lg{font-size:1rem;line-height:1.4;letter-spacing:.25px;font-weight:400;color:#4b4f62}.font-text-lg-medium{font-size:1rem;line-height:1.4;letter-spacing:.25px;font-weight:500;color:#4b4f62}.font-text-lg-bold{font-size:1rem;line-height:1.4;letter-spacing:.25px;font-weight:700;color:#4b4f62}.font-text-base{font-size:.875rem;line-height:1.4;letter-spacing:.25px;font-weight:400;color:#4b4f62}.font-text-base-medium{font-size:.875rem;line-height:1.4;letter-spacing:.25px;font-weight:500;color:#4b4f62}.font-text-base-bold{font-size:.875rem;line-height:1.4;letter-spacing:.25px;font-weight:700;color:#4b4f62}.font-text-sm{font-size:.75rem;line-height:1.4;letter-spacing:.5px;font-weight:400;color:#4b4f62}.font-text-sm-medium{font-size:.75rem;line-height:1.4;letter-spacing:.5px;font-weight:500;color:#4b4f62}.font-text-sm-bold{font-size:.75rem;line-height:1.4;letter-spacing:.5px;font-weight:700;color:#4b4f62}.font-text-xs{font-size:.625rem;line-height:1.4;letter-spacing:.5px;font-weight:400;color:#4b4f62}.font-text-xs-medium{font-size:.625rem;line-height:1.4;letter-spacing:.5px;font-weight:500;color:#4b4f62}.font-text-xs-bold{font-size:.625rem;line-height:1.4;letter-spacing:.5px;font-weight:700;color:#4b4f62}.font-display-large{font-family:Roboto,sans-serif!important;font-size:57px;font-style:normal;font-weight:400;line-height:64px;letter-spacing:-.25px}.font-display-medium{font-family:Roboto,sans-serif!important;font-size:45px;font-style:normal;font-weight:400;line-height:52px}.font-display-small{font-family:Roboto,sans-serif!important;font-size:36px;font-style:normal;font-weight:400;line-height:44px}.font-headline-large{font-family:Roboto,sans-serif!important;font-size:32px;font-style:normal;font-weight:400;line-height:40px}.font-headline-medium{font-family:Roboto,sans-serif!important;font-size:28px;font-style:normal;font-weight:400;line-height:36px}.font-headline-small{font-family:Roboto,sans-serif!important;font-size:24px;font-style:normal;font-weight:400;line-height:32px}.font-title-large{font-family:Roboto,sans-serif!important;font-size:22px;font-style:normal;font-weight:400;line-height:28px}.font-title-medium{font-family:Roboto,sans-serif!important;font-size:16px;font-style:normal;font-weight:400;line-height:24px;letter-spacing:.15px}.font-title-small{font-family:Roboto,sans-serif!important;font-size:14px;font-style:normal;font-weight:400;line-height:20px;letter-spacing:.1px}.font-label-large{font-family:Roboto,sans-serif!important;font-size:14px;font-style:normal;font-weight:500;line-height:20px;letter-spacing:.1px}.font-label-medium{font-family:Roboto,sans-serif!important;font-size:12px;font-style:normal;font-weight:400;line-height:12px;letter-spacing:.5px}.font-label-small{font-family:Roboto,sans-serif!important;font-size:10px;font-style:normal;font-weight:400;line-height:10px;letter-spacing:.5px}.font-body-large{font-family:Roboto,sans-serif!important;font-size:16px;font-style:normal;font-weight:400;line-height:24px;letter-spacing:.5px}.font-body-medium{font-family:Roboto,sans-serif!important;font-size:14px;font-style:normal;font-weight:400;line-height:20px;letter-spacing:.25px}.font-body-small{font-family:Roboto,sans-serif!important;font-size:12px;font-style:normal;font-weight:400;line-height:16px;letter-spacing:.4px}.typo-medium-700{color:var(--Greys-700, #4B4F62);font-family:Roboto,sans-serif!important;font-size:14px;font-style:normal;font-weight:500;line-height:140%;letter-spacing:.035px}.typo-description{color:var(--Greys-700, #4B4F62);font-family:Roboto,sans-serif!important;font-size:14px;font-style:normal;font-weight:400;line-height:1.4;letter-spacing:.035px}.text-grey-500{color:#a2a6b8!important}.font-location-text{color:#717793;font-family:Roboto,sans-serif!important;font-size:16px;font-style:italic;font-weight:400;line-height:140%;letter-spacing:.04px}.font-title-text{color:#717793;font-family:Roboto,sans-serif!important;font-size:16px;font-style:normal;font-weight:700;line-height:140%;letter-spacing:.04px}:root{--color-blue-50: #E5E9FC;--color-blue-100: #BBC7F6;--color-blue-200: #98ABF1;--color-blue-300: #768FED;--color-blue-400: #6581EA;--color-blue-500: #5473E8;--color-blue-600: #1E46DF;--color-blue-700: #0F236F;--color-blue-800: #071238;--color-blue-900: #04091C;--color-green-50: #D7F3F5;--color-green-100: #AFE6EB;--color-green-200: #87DAE2;--color-green-300: #5FCDD8;--color-green-400: #4BC7D3;--color-green-500: #37C1CE;--color-green-600: #299DA8;--color-green-700: #1F767E;--color-green-800: #154E54;--color-green-900: #0A272A;--color-grey-50: #FAFBFB;--color-grey-100: #ECEDF1;--color-grey-200: #DEE0E6;--color-grey-300: #D1D3DB;--color-grey-400: #C3C5D1;--color-grey-500: #A2A6B8;--color-grey-600: #717793;--color-grey-700: #4B4F62;--color-grey-800: #383B4A;--color-grey-900: #252831;--color-error-50: #FDEEF6;--color-error-100: #F9D4E8;--color-error-200: #F6BBDB;--color-error-300: #F2A1CD;--color-error-400: #EF87BF;--color-error-500: #E854A4;--color-error-600: #E22A8E;--color-error-700: #C31A75;--color-error-800: #99155C;--color-error-900: #6F0F43;--color-success-50: #E9F9F3;--color-success-100: #C8F1E3;--color-success-200: #9EE7CE;--color-success-300: #6EDDB7;--color-success-400: #3DD3A0;--color-success-500: #00AD83;--color-success-600: #009873;--color-success-700: #007F61;--color-success-800: #00654F;--color-success-900: #003D30;--color-blue: #5473E8;--color-blue-hover: #6581EA;--color-blue-active: #1E46DF;--color-green: #37C1CE;--color-green-hover: #4BC7D3;--color-green-active: #299DA8;--color-grey: #383B4A;--color-grey-hover: #4B4F62;--color-grey-active: #252831;--color-error: #E854A4;--color-error-hover: #EF87BF;--color-error-active: #E22A8E;--color-success: #00AD83;--color-success-hover: #009873;--color-success-active: #007F61;--color-disabled-bg: #D1D3DB;--color-disabled-text: #A2A6B8}:host{display:block;position:relative;padding:0}:host ::ng-deep .al-form__grid{display:grid;gap:16px;margin-top:16px}:host ::ng-deep .al-form__grid.cols-1{grid-template-columns:1fr}:host ::ng-deep .al-form__grid.cols-2{grid-template-columns:1fr 1fr}:host ::ng-deep .al-form__grid.cols-3{grid-template-columns:1fr 1fr 1fr}:host ::ng-deep .al-form__grid .full{grid-column:1/-1}.al-form-wrapper{position:relative;border-radius:16px;background:transparent;width:100%;max-width:100%;box-sizing:border-box;overflow:visible;container-type:inline-size;container-name:form-wrapper;contain:layout style}.al-form-wrapper:before{content:\"\";position:absolute;inset:0;border:1px solid var(--Base-Blue, #6581EA);border-radius:10px;box-shadow:0 0 0 6px #5473e814;pointer-events:none;z-index:1}.al-form-wrapper>.inner{position:relative;padding:24px!important;border-radius:10px;background:#fff;box-sizing:border-box;z-index:0;overflow:hidden}:host ::ng-deep .al-form-wrapper>.inner>*{max-width:100%;box-sizing:border-box}:host ::ng-deep .al-form-wrapper>.inner app-flex-grid{max-width:100%;box-sizing:border-box}.al-form-wrapper>.inner>:first-child{margin-top:0!important}.al-form-wrapper>.inner>:last-child{margin-bottom:0!important}.al-form__header{display:flex;gap:10px;align-items:baseline}.al-form__title{font-weight:600;color:#222}.al-form__hint{color:#7a818f}.al-form__paragraph{margin:6px 0 0;color:#3a3f4a}.al-form__demo-form{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:10px}@media (max-width: 767.98px){.al-form__demo-form{grid-template-columns:1fr}}.al-form__demo-form .full{grid-column:1/-1}.al-form__field{display:flex;flex-direction:column;gap:6px}.al-form__field label{font-size:12px;color:#5a6170}.al-form__control{width:100%;padding:10px 12px;border:1px solid #d9def4;border-radius:10px;background:#fff;color:#2a2f3a;outline:none;box-sizing:border-box;box-shadow:0 1px #5877ff0f,inset 0 0 0 2px #5877ff08;transition:box-shadow .15s ease,border-color .15s ease}.al-form__control:focus{border-color:#5877ff99;box-shadow:0 0 0 3px #5877ff24}select.al-form__control{appearance:none;background-image:linear-gradient(45deg,transparent 50%,#7a86ff 50%),linear-gradient(135deg,#7a86ff 50%,transparent 50%);background-position:calc(100% - 18px) calc(1em + 2px),calc(100% - 13px) calc(1em + 2px);background-size:5px 5px,5px 5px;background-repeat:no-repeat}.fab.left{position:absolute;left:-27px;top:36px;z-index:10;background-color:#fff;border-radius:50%;will-change:transform;transition:transform .1s ease-out;opacity:0;height:88px;display:flex;align-items:center}.fab.left .left-button-container{position:absolute;left:56px;top:50%;transform:translateY(-50%);z-index:1;pointer-events:auto}.fab-group.right{position:absolute;right:-16px;top:36px;display:flex;flex-direction:column;border-radius:50%;gap:8px;z-index:2;background-color:#fff;will-change:transform;transition:transform .1s ease-out;opacity:0;height:82px}.fab.left.positioned,.fab-group.right.positioned{opacity:1}:host ::ng-deep app-flex-grid+app-flex-grid{margin-top:16px}:host ::ng-deep app-flex-grid.row{align-items:center}:host ::ng-deep app-flex-grid al-checkbox .checkbox-label-wrapper{margin-top:0;justify-content:center}@media (max-width: 767.98px){:host ::ng-deep app-flex-grid.row.min-cols-2,:host ::ng-deep app-flex-grid.col.min-cols-2{--current-count: 2 !important;grid-template-columns:repeat(2,minmax(0,1fr))!important}:host ::ng-deep app-flex-grid.row.min-cols-2 al-checkbox,:host ::ng-deep app-flex-grid.row.min-cols-2 al-input,:host ::ng-deep app-flex-grid.col.min-cols-2 al-checkbox,:host ::ng-deep app-flex-grid.col.min-cols-2 al-input{grid-column:auto!important;width:100%!important;max-width:100%!important}:host ::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3):is(al-input){grid-column:auto!important}:host ::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3):is(al-checkbox),:host ::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3):is(al-checkbox)~*{grid-column:1/-1!important}}@container form-wrapper (max-width: 600px){:host ::ng-deep app-flex-grid.row.min-cols-2,:host ::ng-deep app-flex-grid.col.min-cols-2{--current-count: 2 !important;grid-template-columns:repeat(2,minmax(0,1fr))!important}:host ::ng-deep app-flex-grid.row.min-cols-2 al-checkbox,:host ::ng-deep app-flex-grid.row.min-cols-2 al-input,:host ::ng-deep app-flex-grid.col.min-cols-2 al-checkbox,:host ::ng-deep app-flex-grid.col.min-cols-2 al-input{grid-column:auto!important;width:100%!important;max-width:100%!important}:host ::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3):is(al-input){grid-column:auto!important}:host ::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3):is(al-checkbox),:host ::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3):is(al-checkbox)~*{grid-column:1/-1!important}}@container form-wrapper (min-width: 600px){::ng-deep app-flex-grid.row.min-cols-2>*:nth-child(1){order:1}::ng-deep app-flex-grid.row.min-cols-2>*:nth-child(2){order:4}::ng-deep app-flex-grid.row.min-cols-2>*:nth-child(3){order:2}::ng-deep app-flex-grid.row.min-cols-2>*:nth-child(4){order:3}::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3){order:1;grid-column:1/2!important}::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3)~*:nth-child(2){order:3;grid-column:4/5!important}::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3)~*:nth-child(3){order:2;grid-column:2/4!important}::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3):is(al-checkbox){order:3;grid-column:4/5!important}::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3):is(al-checkbox)~*:nth-child(2){order:1;grid-column:1/2!important}::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3):is(al-checkbox)~*:nth-child(3){order:2;grid-column:2/4!important}::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(2){order:2;grid-column:2/3!important}::ng-deep app-flex-grid.row.min-cols-2>*:nth-child(2):last-child{order:1;grid-column:1/2!important}}@media (max-width: 767.98px){:host ::ng-deep app-flex-grid.row.min-cols-3,:host ::ng-deep app-flex-grid.row[style*=\"--count-desktop: 3\"]{--current-count: 2 !important;grid-template-columns:repeat(2,1fr)!important}:host ::ng-deep app-flex-grid.row.min-cols-3 al-checkbox,:host ::ng-deep app-flex-grid.row[style*=\"--count-desktop: 3\"] al-checkbox{order:-1!important;grid-column:1/-1!important}}@media (max-width: 767.98px) and (max-width: 400.98px){:host ::ng-deep app-flex-grid.row.min-cols-3,:host ::ng-deep app-flex-grid.row[style*=\"--count-desktop: 3\"]{--current-count: 1 !important;grid-template-columns:1fr!important}:host ::ng-deep app-flex-grid.row.min-cols-3>*,:host ::ng-deep app-flex-grid.row[style*=\"--count-desktop: 3\"]>*{order:0!important;grid-column:auto!important}}@container form-wrapper (max-width: 600px){:host ::ng-deep app-flex-grid.row.min-cols-3,:host ::ng-deep app-flex-grid.row[style*=\"--count-desktop: 3\"]{--current-count: 2 !important;grid-template-columns:repeat(2,1fr)!important}:host ::ng-deep app-flex-grid.row.min-cols-3 al-checkbox,:host ::ng-deep app-flex-grid.row[style*=\"--count-desktop: 3\"] al-checkbox{order:-1!important;grid-column:1/-1!important}}@container form-wrapper (max-width: 400px){:host ::ng-deep app-flex-grid.row.min-cols-3,:host ::ng-deep app-flex-grid.row[style*=\"--count-desktop: 3\"]{--current-count: 1 !important;grid-template-columns:1fr!important}:host ::ng-deep app-flex-grid.row.min-cols-3>*,:host ::ng-deep app-flex-grid.row[style*=\"--count-desktop: 3\"]>*{order:0!important;grid-column:auto!important}}@container form-wrapper (min-width: 600px){::ng-deep app-flex-grid.row.min-cols-3,::ng-deep app-flex-grid.row[style*=\"--count-desktop: 3\"]{grid-template-columns:repeat(3,1fr)!important}::ng-deep app-flex-grid.row.min-cols-3>*:first-child:nth-last-child(3):is(al-checkbox),::ng-deep app-flex-grid.row[style*=\"--count-desktop: 3\"]>*:first-child:nth-last-child(3):is(al-checkbox){order:3!important;grid-column:auto!important}::ng-deep app-flex-grid.row.min-cols-3>*:first-child:nth-last-child(3):is(al-checkbox)~*:nth-child(2),::ng-deep app-flex-grid.row[style*=\"--count-desktop: 3\"]>*:first-child:nth-last-child(3):is(al-checkbox)~*:nth-child(2){order:1!important;grid-column:auto!important}::ng-deep app-flex-grid.row.min-cols-3>*:first-child:nth-last-child(3):is(al-checkbox)~*:nth-child(3),::ng-deep app-flex-grid.row[style*=\"--count-desktop: 3\"]>*:first-child:nth-last-child(3):is(al-checkbox)~*:nth-child(3){order:2!important;grid-column:auto!important}::ng-deep app-flex-grid.row.min-cols-3>*:first-child:nth-last-child(2):is(al-checkbox),::ng-deep app-flex-grid.row[style*=\"--count-desktop: 3\"]>*:first-child:nth-last-child(2):is(al-checkbox){order:2!important;grid-column:3/4!important}::ng-deep app-flex-grid.row.min-cols-3>*:first-child:nth-last-child(2):is(al-checkbox)~*:nth-child(2),::ng-deep app-flex-grid.row[style*=\"--count-desktop: 3\"]>*:first-child:nth-last-child(2):is(al-checkbox)~*:nth-child(2){order:1!important;grid-column:1/3!important}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.fab.left,.fab-group.right{opacity:0;animation:fadeIn 1s ease-out forwards}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: ButtonComponent, selector: "al-button", inputs: ["state", "disabled", "color", "category", "outline", "labelText", "label", "arialabel", "iconOnly", "leftIcon", "rightIcon", "icon", "iconOutlined", "outlined", "size", "buttonType", "fontClass", "dataTestId", "tooltip", "tooltipPosition", "dropdownItems", "dropdownOptions", "hasDropDown", "dropdown", "hasDropdown", "isDropdown"], outputs: ["onClick", "onHover", "onMouseLeave", "optionSelect"] }], changeDetection: i0.ChangeDetectionStrategy.Default }); }
|
|
6698
6704
|
}
|
|
6699
6705
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: EditableFormWrapperComponent, decorators: [{
|
|
6700
6706
|
type: Component,
|
|
6701
|
-
args: [{ selector: 'al-form', standalone: true, imports: [CommonModule, MatIconModule, MatButtonModule, ButtonComponent], changeDetection: ChangeDetectionStrategy.Default, template: "<div class=\"al-form-wrapper\" #wrapper [attr.data-test-id]=\"testId\">\n <div *ngIf=\"showLeftButton\" #leftButton class=\"fab left\">\n <div\n class=\"left-button-container\"\n [ngClass]=\"leftContainerClass\"\n [ngStyle]=\"leftContainerStyle\">\n <ng-content select=\"[leftButtonContent]\"></ng-content>\n </div>\n </div>\n <div class=\"inner\"><ng-content></ng-content></div>\n <div class=\"fab-group right\" #buttonGroup><al-button *ngIf=\"showSaveButton\" class=\"fab\" [buttonType]=\"'icon-circle'\"\n [iconOnly]=\"true\" [leftIcon]=\"'save'\" [arialabel]=\"'Save'\" [size]=\"'base'\" iconOutlined=\"true\"\n [color]=\"'green'\" (onClick)=\"saveButtonClick.emit($event)\"></al-button><al-button *ngIf=\"showDeleteButton\" class=\"fab warn\" [buttonType]=\"'icon-circle'\"\n [iconOnly]=\"true\" [leftIcon]=\"'cancel'\" [arialabel]=\"'Delete'\" [size]=\"'base'\" [color]=\"'error'\" iconOutlined=\"true\"\n (onClick)=\"deleteButtonClick.emit($event)\"></al-button>\n </div>\n</div>\n", styles: ["@charset \"UTF-8\";@import\"https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap\";.weight-light{font-weight:300}.weight-regular{font-weight:400}.weight-medium{font-weight:500}.weight-semibold{font-weight:600}.weight-bold{font-weight:700}.line-height-none{line-height:1!important}.line-height-tight{line-height:1.2!important}.line-height-normal{line-height:1.4!important}.letter-spacing-normal{letter-spacing:0!important}.letter-spacing-wide{letter-spacing:.1em!important}.letter-spacing-wider{letter-spacing:.2em!important}.text-decoration-none{text-decoration:none!important;font-style:normal!important}.text-decoration-underline{text-decoration:underline!important;font-style:normal!important}.text-decoration-italic{text-decoration:none!important;font-style:italic!important}.text-decoration-strike{text-decoration:line-through!important;font-style:normal!important}.font-text-5xl{font-size:2rem;line-height:1.2;letter-spacing:-.1px;font-weight:400;color:#4b4f62}.font-text-5xl-medium{font-size:2rem;line-height:1.2;letter-spacing:-.1px;font-weight:500;color:#4b4f62}.font-text-5xl-bold{font-size:2rem;line-height:1.2;letter-spacing:-.1px;font-weight:700;color:#4b4f62}.font-text-4xl{font-size:1.75rem;line-height:1.2;letter-spacing:-.1px;font-weight:400;color:#4b4f62}.font-text-4xl-medium{font-size:1.75rem;line-height:1.2;letter-spacing:-.1px;font-weight:500;color:#4b4f62}.font-text-4xl-bold{font-size:1.75rem;line-height:1.2;letter-spacing:-.1px;font-weight:700;color:#4b4f62}.font-text-3xl{font-size:1.5rem;line-height:1.2;letter-spacing:-.1px;font-weight:400;color:#4b4f62}.font-text-3xl-medium{font-size:1.5rem;line-height:1.2;letter-spacing:-.1px;font-weight:500;color:#4b4f62}.font-text-3xl-bold{font-size:1.5rem;line-height:1.2;letter-spacing:-.1px;font-weight:700;color:#4b4f62}.font-text-2xl{font-size:1.375rem;line-height:1.2;letter-spacing:-.1px;font-weight:400;color:#4b4f62}.font-text-2xl-medium{font-size:1.375rem;line-height:1.2;letter-spacing:-.1px;font-weight:500;color:#4b4f62}.font-text-2xl-bold{font-size:1.375rem;line-height:1.2;letter-spacing:-.1px;font-weight:700;color:#4b4f62}.font-text-xl{font-size:1.25rem;line-height:1.2;letter-spacing:-.1px;font-weight:400;color:#4b4f62}.font-text-xl-medium{font-size:1.25rem;line-height:1.2;letter-spacing:-.1px;font-weight:500;color:#4b4f62}.font-text-xl-bold{font-size:1.25rem;line-height:1.2;letter-spacing:-.1px;font-weight:700;color:#4b4f62}.font-text-lg{font-size:1rem;line-height:1.4;letter-spacing:.25px;font-weight:400;color:#4b4f62}.font-text-lg-medium{font-size:1rem;line-height:1.4;letter-spacing:.25px;font-weight:500;color:#4b4f62}.font-text-lg-bold{font-size:1rem;line-height:1.4;letter-spacing:.25px;font-weight:700;color:#4b4f62}.font-text-base{font-size:.875rem;line-height:1.4;letter-spacing:.25px;font-weight:400;color:#4b4f62}.font-text-base-medium{font-size:.875rem;line-height:1.4;letter-spacing:.25px;font-weight:500;color:#4b4f62}.font-text-base-bold{font-size:.875rem;line-height:1.4;letter-spacing:.25px;font-weight:700;color:#4b4f62}.font-text-sm{font-size:.75rem;line-height:1.4;letter-spacing:.5px;font-weight:400;color:#4b4f62}.font-text-sm-medium{font-size:.75rem;line-height:1.4;letter-spacing:.5px;font-weight:500;color:#4b4f62}.font-text-sm-bold{font-size:.75rem;line-height:1.4;letter-spacing:.5px;font-weight:700;color:#4b4f62}.font-text-xs{font-size:.625rem;line-height:1.4;letter-spacing:.5px;font-weight:400;color:#4b4f62}.font-text-xs-medium{font-size:.625rem;line-height:1.4;letter-spacing:.5px;font-weight:500;color:#4b4f62}.font-text-xs-bold{font-size:.625rem;line-height:1.4;letter-spacing:.5px;font-weight:700;color:#4b4f62}.font-display-large{font-family:Roboto,sans-serif!important;font-size:57px;font-style:normal;font-weight:400;line-height:64px;letter-spacing:-.25px}.font-display-medium{font-family:Roboto,sans-serif!important;font-size:45px;font-style:normal;font-weight:400;line-height:52px}.font-display-small{font-family:Roboto,sans-serif!important;font-size:36px;font-style:normal;font-weight:400;line-height:44px}.font-headline-large{font-family:Roboto,sans-serif!important;font-size:32px;font-style:normal;font-weight:400;line-height:40px}.font-headline-medium{font-family:Roboto,sans-serif!important;font-size:28px;font-style:normal;font-weight:400;line-height:36px}.font-headline-small{font-family:Roboto,sans-serif!important;font-size:24px;font-style:normal;font-weight:400;line-height:32px}.font-title-large{font-family:Roboto,sans-serif!important;font-size:22px;font-style:normal;font-weight:400;line-height:28px}.font-title-medium{font-family:Roboto,sans-serif!important;font-size:16px;font-style:normal;font-weight:400;line-height:24px;letter-spacing:.15px}.font-title-small{font-family:Roboto,sans-serif!important;font-size:14px;font-style:normal;font-weight:400;line-height:20px;letter-spacing:.1px}.font-label-large{font-family:Roboto,sans-serif!important;font-size:14px;font-style:normal;font-weight:500;line-height:20px;letter-spacing:.1px}.font-label-medium{font-family:Roboto,sans-serif!important;font-size:12px;font-style:normal;font-weight:400;line-height:12px;letter-spacing:.5px}.font-label-small{font-family:Roboto,sans-serif!important;font-size:10px;font-style:normal;font-weight:400;line-height:10px;letter-spacing:.5px}.font-body-large{font-family:Roboto,sans-serif!important;font-size:16px;font-style:normal;font-weight:400;line-height:24px;letter-spacing:.5px}.font-body-medium{font-family:Roboto,sans-serif!important;font-size:14px;font-style:normal;font-weight:400;line-height:20px;letter-spacing:.25px}.font-body-small{font-family:Roboto,sans-serif!important;font-size:12px;font-style:normal;font-weight:400;line-height:16px;letter-spacing:.4px}.typo-medium-700{color:var(--Greys-700, #4B4F62);font-family:Roboto,sans-serif!important;font-size:14px;font-style:normal;font-weight:500;line-height:140%;letter-spacing:.035px}.typo-description{color:var(--Greys-700, #4B4F62);font-family:Roboto,sans-serif!important;font-size:14px;font-style:normal;font-weight:400;line-height:1.4;letter-spacing:.035px}.text-grey-500{color:#a2a6b8!important}.font-location-text{color:#717793;font-family:Roboto,sans-serif!important;font-size:16px;font-style:italic;font-weight:400;line-height:140%;letter-spacing:.04px}.font-title-text{color:#717793;font-family:Roboto,sans-serif!important;font-size:16px;font-style:normal;font-weight:700;line-height:140%;letter-spacing:.04px}:root{--color-blue-50: #E5E9FC;--color-blue-100: #BBC7F6;--color-blue-200: #98ABF1;--color-blue-300: #768FED;--color-blue-400: #6581EA;--color-blue-500: #5473E8;--color-blue-600: #1E46DF;--color-blue-700: #0F236F;--color-blue-800: #071238;--color-blue-900: #04091C;--color-green-50: #D7F3F5;--color-green-100: #AFE6EB;--color-green-200: #87DAE2;--color-green-300: #5FCDD8;--color-green-400: #4BC7D3;--color-green-500: #37C1CE;--color-green-600: #299DA8;--color-green-700: #1F767E;--color-green-800: #154E54;--color-green-900: #0A272A;--color-grey-50: #FAFBFB;--color-grey-100: #ECEDF1;--color-grey-200: #DEE0E6;--color-grey-300: #D1D3DB;--color-grey-400: #C3C5D1;--color-grey-500: #A2A6B8;--color-grey-600: #717793;--color-grey-700: #4B4F62;--color-grey-800: #383B4A;--color-grey-900: #252831;--color-error-50: #FDEEF6;--color-error-100: #F9D4E8;--color-error-200: #F6BBDB;--color-error-300: #F2A1CD;--color-error-400: #EF87BF;--color-error-500: #E854A4;--color-error-600: #E22A8E;--color-error-700: #C31A75;--color-error-800: #99155C;--color-error-900: #6F0F43;--color-success-50: #E9F9F3;--color-success-100: #C8F1E3;--color-success-200: #9EE7CE;--color-success-300: #6EDDB7;--color-success-400: #3DD3A0;--color-success-500: #00AD83;--color-success-600: #009873;--color-success-700: #007F61;--color-success-800: #00654F;--color-success-900: #003D30;--color-blue: #5473E8;--color-blue-hover: #6581EA;--color-blue-active: #1E46DF;--color-green: #37C1CE;--color-green-hover: #4BC7D3;--color-green-active: #299DA8;--color-grey: #383B4A;--color-grey-hover: #4B4F62;--color-grey-active: #252831;--color-error: #E854A4;--color-error-hover: #EF87BF;--color-error-active: #E22A8E;--color-success: #00AD83;--color-success-hover: #009873;--color-success-active: #007F61;--color-disabled-bg: #D1D3DB;--color-disabled-text: #A2A6B8}:host{display:block;position:relative;padding:0}:host ::ng-deep .al-form__grid{display:grid;gap:16px;margin-top:16px}:host ::ng-deep .al-form__grid.cols-1{grid-template-columns:1fr}:host ::ng-deep .al-form__grid.cols-2{grid-template-columns:1fr 1fr}:host ::ng-deep .al-form__grid.cols-3{grid-template-columns:1fr 1fr 1fr}:host ::ng-deep .al-form__grid .full{grid-column:1/-1}.al-form-wrapper{position:relative;border-radius:16px;background:transparent;width:100%;max-width:100%;box-sizing:border-box;overflow:visible;container-type:inline-size;container-name:form-wrapper;contain:layout style}.al-form-wrapper:before{content:\"\";position:absolute;inset:0;border:1px solid var(--Base-Blue, #6581EA);border-radius:10px;box-shadow:0 0 0 6px #5473e814;pointer-events:none;z-index:1}.al-form-wrapper>.inner{position:relative;padding:24px!important;border-radius:10px;background:#fff;box-sizing:border-box;z-index:0}.al-form-wrapper>.inner>:first-child{margin-top:0!important}.al-form-wrapper>.inner>:last-child{margin-bottom:0!important}.al-form__header{display:flex;gap:10px;align-items:baseline}.al-form__title{font-weight:600;color:#222}.al-form__hint{color:#7a818f}.al-form__paragraph{margin:6px 0 0;color:#3a3f4a}.al-form__demo-form{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:10px}@media (max-width: 767.98px){.al-form__demo-form{grid-template-columns:1fr}}.al-form__demo-form .full{grid-column:1/-1}.al-form__field{display:flex;flex-direction:column;gap:6px}.al-form__field label{font-size:12px;color:#5a6170}.al-form__control{width:100%;padding:10px 12px;border:1px solid #d9def4;border-radius:10px;background:#fff;color:#2a2f3a;outline:none;box-sizing:border-box;box-shadow:0 1px #5877ff0f,inset 0 0 0 2px #5877ff08;transition:box-shadow .15s ease,border-color .15s ease}.al-form__control:focus{border-color:#5877ff99;box-shadow:0 0 0 3px #5877ff24}select.al-form__control{appearance:none;background-image:linear-gradient(45deg,transparent 50%,#7a86ff 50%),linear-gradient(135deg,#7a86ff 50%,transparent 50%);background-position:calc(100% - 18px) calc(1em + 2px),calc(100% - 13px) calc(1em + 2px);background-size:5px 5px,5px 5px;background-repeat:no-repeat}.fab.left{position:absolute;left:-27px;top:36px;z-index:10;background-color:#fff;border-radius:50%;will-change:transform;transition:transform .1s ease-out;opacity:0;height:88px;display:flex;align-items:center}.fab.left .left-button-container{position:absolute;left:56px;top:50%;transform:translateY(-50%);z-index:1;pointer-events:auto}.fab-group.right{position:absolute;right:-16px;top:36px;display:flex;flex-direction:column;border-radius:50%;gap:8px;z-index:2;background-color:#fff;will-change:transform;transition:transform .1s ease-out;opacity:0;height:82px}.fab.left.positioned,.fab-group.right.positioned{opacity:1}:host ::ng-deep app-flex-grid+app-flex-grid{margin-top:16px}:host ::ng-deep app-flex-grid.row{align-items:center}:host ::ng-deep app-flex-grid al-checkbox .checkbox-label-wrapper{margin-top:0;justify-content:center}@media (max-width: 767.98px){:host ::ng-deep app-flex-grid.row.min-cols-2,:host ::ng-deep app-flex-grid.col.min-cols-2{--current-count: 2 !important;grid-template-columns:repeat(2,minmax(0,1fr))!important}:host ::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3){grid-column:1/-1!important}}@container form-wrapper (max-width: 600px){:host ::ng-deep app-flex-grid.row.min-cols-2,:host ::ng-deep app-flex-grid.col.min-cols-2{--current-count: 2 !important;grid-template-columns:repeat(2,minmax(0,1fr))!important}:host ::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3){grid-column:1/-1!important}}@container form-wrapper (min-width: 600px){:host ::ng-deep app-flex-grid.row.min-cols-2>*:nth-child(1){order:1}:host ::ng-deep app-flex-grid.row.min-cols-2>*:nth-child(2){order:4}:host ::ng-deep app-flex-grid.row.min-cols-2>*:nth-child(3){order:2}:host ::ng-deep app-flex-grid.row.min-cols-2>*:nth-child(4){order:3}:host ::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3){order:3}:host ::ng-deep app-flex-grid.row.min-cols-2>*:nth-child(2):nth-last-child(2){order:1}:host ::ng-deep app-flex-grid.row.min-cols-2>*:nth-child(3):last-child{order:2}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.fab.left,.fab-group.right{opacity:0;animation:fadeIn 1s ease-out forwards}\n"] }]
|
|
6707
|
+
args: [{ selector: 'al-form', standalone: true, imports: [CommonModule, MatIconModule, MatButtonModule, ButtonComponent], changeDetection: ChangeDetectionStrategy.Default, template: "<div class=\"al-form-wrapper\" #wrapper [attr.data-test-id]=\"testId\">\n <div *ngIf=\"showLeftButton\" #leftButton class=\"fab left\">\n <div\n class=\"left-button-container\"\n [ngClass]=\"leftContainerClass\"\n [ngStyle]=\"leftContainerStyle\">\n <ng-content select=\"[leftButtonContent]\"></ng-content>\n </div>\n </div>\n <div class=\"inner\"><ng-content></ng-content></div>\n <div class=\"fab-group right\" #buttonGroup><al-button *ngIf=\"showSaveButton\" class=\"fab\" [buttonType]=\"'icon-circle'\"\n [iconOnly]=\"true\" [leftIcon]=\"'save'\" [arialabel]=\"'Save'\" [size]=\"'base'\" iconOutlined=\"true\"\n [color]=\"'green'\" (onClick)=\"saveButtonClick.emit($event)\"></al-button><al-button *ngIf=\"showDeleteButton\" class=\"fab warn\" [buttonType]=\"'icon-circle'\"\n [iconOnly]=\"true\" [leftIcon]=\"'cancel'\" [arialabel]=\"'Delete'\" [size]=\"'base'\" [color]=\"'error'\" iconOutlined=\"true\"\n (onClick)=\"deleteButtonClick.emit($event)\"></al-button>\n </div>\n</div>\n", styles: ["@charset \"UTF-8\";@import\"https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap\";.weight-light{font-weight:300}.weight-regular{font-weight:400}.weight-medium{font-weight:500}.weight-semibold{font-weight:600}.weight-bold{font-weight:700}.line-height-none{line-height:1!important}.line-height-tight{line-height:1.2!important}.line-height-normal{line-height:1.4!important}.letter-spacing-normal{letter-spacing:0!important}.letter-spacing-wide{letter-spacing:.1em!important}.letter-spacing-wider{letter-spacing:.2em!important}.text-decoration-none{text-decoration:none!important;font-style:normal!important}.text-decoration-underline{text-decoration:underline!important;font-style:normal!important}.text-decoration-italic{text-decoration:none!important;font-style:italic!important}.text-decoration-strike{text-decoration:line-through!important;font-style:normal!important}.font-text-5xl{font-size:2rem;line-height:1.2;letter-spacing:-.1px;font-weight:400;color:#4b4f62}.font-text-5xl-medium{font-size:2rem;line-height:1.2;letter-spacing:-.1px;font-weight:500;color:#4b4f62}.font-text-5xl-bold{font-size:2rem;line-height:1.2;letter-spacing:-.1px;font-weight:700;color:#4b4f62}.font-text-4xl{font-size:1.75rem;line-height:1.2;letter-spacing:-.1px;font-weight:400;color:#4b4f62}.font-text-4xl-medium{font-size:1.75rem;line-height:1.2;letter-spacing:-.1px;font-weight:500;color:#4b4f62}.font-text-4xl-bold{font-size:1.75rem;line-height:1.2;letter-spacing:-.1px;font-weight:700;color:#4b4f62}.font-text-3xl{font-size:1.5rem;line-height:1.2;letter-spacing:-.1px;font-weight:400;color:#4b4f62}.font-text-3xl-medium{font-size:1.5rem;line-height:1.2;letter-spacing:-.1px;font-weight:500;color:#4b4f62}.font-text-3xl-bold{font-size:1.5rem;line-height:1.2;letter-spacing:-.1px;font-weight:700;color:#4b4f62}.font-text-2xl{font-size:1.375rem;line-height:1.2;letter-spacing:-.1px;font-weight:400;color:#4b4f62}.font-text-2xl-medium{font-size:1.375rem;line-height:1.2;letter-spacing:-.1px;font-weight:500;color:#4b4f62}.font-text-2xl-bold{font-size:1.375rem;line-height:1.2;letter-spacing:-.1px;font-weight:700;color:#4b4f62}.font-text-xl{font-size:1.25rem;line-height:1.2;letter-spacing:-.1px;font-weight:400;color:#4b4f62}.font-text-xl-medium{font-size:1.25rem;line-height:1.2;letter-spacing:-.1px;font-weight:500;color:#4b4f62}.font-text-xl-bold{font-size:1.25rem;line-height:1.2;letter-spacing:-.1px;font-weight:700;color:#4b4f62}.font-text-lg{font-size:1rem;line-height:1.4;letter-spacing:.25px;font-weight:400;color:#4b4f62}.font-text-lg-medium{font-size:1rem;line-height:1.4;letter-spacing:.25px;font-weight:500;color:#4b4f62}.font-text-lg-bold{font-size:1rem;line-height:1.4;letter-spacing:.25px;font-weight:700;color:#4b4f62}.font-text-base{font-size:.875rem;line-height:1.4;letter-spacing:.25px;font-weight:400;color:#4b4f62}.font-text-base-medium{font-size:.875rem;line-height:1.4;letter-spacing:.25px;font-weight:500;color:#4b4f62}.font-text-base-bold{font-size:.875rem;line-height:1.4;letter-spacing:.25px;font-weight:700;color:#4b4f62}.font-text-sm{font-size:.75rem;line-height:1.4;letter-spacing:.5px;font-weight:400;color:#4b4f62}.font-text-sm-medium{font-size:.75rem;line-height:1.4;letter-spacing:.5px;font-weight:500;color:#4b4f62}.font-text-sm-bold{font-size:.75rem;line-height:1.4;letter-spacing:.5px;font-weight:700;color:#4b4f62}.font-text-xs{font-size:.625rem;line-height:1.4;letter-spacing:.5px;font-weight:400;color:#4b4f62}.font-text-xs-medium{font-size:.625rem;line-height:1.4;letter-spacing:.5px;font-weight:500;color:#4b4f62}.font-text-xs-bold{font-size:.625rem;line-height:1.4;letter-spacing:.5px;font-weight:700;color:#4b4f62}.font-display-large{font-family:Roboto,sans-serif!important;font-size:57px;font-style:normal;font-weight:400;line-height:64px;letter-spacing:-.25px}.font-display-medium{font-family:Roboto,sans-serif!important;font-size:45px;font-style:normal;font-weight:400;line-height:52px}.font-display-small{font-family:Roboto,sans-serif!important;font-size:36px;font-style:normal;font-weight:400;line-height:44px}.font-headline-large{font-family:Roboto,sans-serif!important;font-size:32px;font-style:normal;font-weight:400;line-height:40px}.font-headline-medium{font-family:Roboto,sans-serif!important;font-size:28px;font-style:normal;font-weight:400;line-height:36px}.font-headline-small{font-family:Roboto,sans-serif!important;font-size:24px;font-style:normal;font-weight:400;line-height:32px}.font-title-large{font-family:Roboto,sans-serif!important;font-size:22px;font-style:normal;font-weight:400;line-height:28px}.font-title-medium{font-family:Roboto,sans-serif!important;font-size:16px;font-style:normal;font-weight:400;line-height:24px;letter-spacing:.15px}.font-title-small{font-family:Roboto,sans-serif!important;font-size:14px;font-style:normal;font-weight:400;line-height:20px;letter-spacing:.1px}.font-label-large{font-family:Roboto,sans-serif!important;font-size:14px;font-style:normal;font-weight:500;line-height:20px;letter-spacing:.1px}.font-label-medium{font-family:Roboto,sans-serif!important;font-size:12px;font-style:normal;font-weight:400;line-height:12px;letter-spacing:.5px}.font-label-small{font-family:Roboto,sans-serif!important;font-size:10px;font-style:normal;font-weight:400;line-height:10px;letter-spacing:.5px}.font-body-large{font-family:Roboto,sans-serif!important;font-size:16px;font-style:normal;font-weight:400;line-height:24px;letter-spacing:.5px}.font-body-medium{font-family:Roboto,sans-serif!important;font-size:14px;font-style:normal;font-weight:400;line-height:20px;letter-spacing:.25px}.font-body-small{font-family:Roboto,sans-serif!important;font-size:12px;font-style:normal;font-weight:400;line-height:16px;letter-spacing:.4px}.typo-medium-700{color:var(--Greys-700, #4B4F62);font-family:Roboto,sans-serif!important;font-size:14px;font-style:normal;font-weight:500;line-height:140%;letter-spacing:.035px}.typo-description{color:var(--Greys-700, #4B4F62);font-family:Roboto,sans-serif!important;font-size:14px;font-style:normal;font-weight:400;line-height:1.4;letter-spacing:.035px}.text-grey-500{color:#a2a6b8!important}.font-location-text{color:#717793;font-family:Roboto,sans-serif!important;font-size:16px;font-style:italic;font-weight:400;line-height:140%;letter-spacing:.04px}.font-title-text{color:#717793;font-family:Roboto,sans-serif!important;font-size:16px;font-style:normal;font-weight:700;line-height:140%;letter-spacing:.04px}:root{--color-blue-50: #E5E9FC;--color-blue-100: #BBC7F6;--color-blue-200: #98ABF1;--color-blue-300: #768FED;--color-blue-400: #6581EA;--color-blue-500: #5473E8;--color-blue-600: #1E46DF;--color-blue-700: #0F236F;--color-blue-800: #071238;--color-blue-900: #04091C;--color-green-50: #D7F3F5;--color-green-100: #AFE6EB;--color-green-200: #87DAE2;--color-green-300: #5FCDD8;--color-green-400: #4BC7D3;--color-green-500: #37C1CE;--color-green-600: #299DA8;--color-green-700: #1F767E;--color-green-800: #154E54;--color-green-900: #0A272A;--color-grey-50: #FAFBFB;--color-grey-100: #ECEDF1;--color-grey-200: #DEE0E6;--color-grey-300: #D1D3DB;--color-grey-400: #C3C5D1;--color-grey-500: #A2A6B8;--color-grey-600: #717793;--color-grey-700: #4B4F62;--color-grey-800: #383B4A;--color-grey-900: #252831;--color-error-50: #FDEEF6;--color-error-100: #F9D4E8;--color-error-200: #F6BBDB;--color-error-300: #F2A1CD;--color-error-400: #EF87BF;--color-error-500: #E854A4;--color-error-600: #E22A8E;--color-error-700: #C31A75;--color-error-800: #99155C;--color-error-900: #6F0F43;--color-success-50: #E9F9F3;--color-success-100: #C8F1E3;--color-success-200: #9EE7CE;--color-success-300: #6EDDB7;--color-success-400: #3DD3A0;--color-success-500: #00AD83;--color-success-600: #009873;--color-success-700: #007F61;--color-success-800: #00654F;--color-success-900: #003D30;--color-blue: #5473E8;--color-blue-hover: #6581EA;--color-blue-active: #1E46DF;--color-green: #37C1CE;--color-green-hover: #4BC7D3;--color-green-active: #299DA8;--color-grey: #383B4A;--color-grey-hover: #4B4F62;--color-grey-active: #252831;--color-error: #E854A4;--color-error-hover: #EF87BF;--color-error-active: #E22A8E;--color-success: #00AD83;--color-success-hover: #009873;--color-success-active: #007F61;--color-disabled-bg: #D1D3DB;--color-disabled-text: #A2A6B8}:host{display:block;position:relative;padding:0}:host ::ng-deep .al-form__grid{display:grid;gap:16px;margin-top:16px}:host ::ng-deep .al-form__grid.cols-1{grid-template-columns:1fr}:host ::ng-deep .al-form__grid.cols-2{grid-template-columns:1fr 1fr}:host ::ng-deep .al-form__grid.cols-3{grid-template-columns:1fr 1fr 1fr}:host ::ng-deep .al-form__grid .full{grid-column:1/-1}.al-form-wrapper{position:relative;border-radius:16px;background:transparent;width:100%;max-width:100%;box-sizing:border-box;overflow:visible;container-type:inline-size;container-name:form-wrapper;contain:layout style}.al-form-wrapper:before{content:\"\";position:absolute;inset:0;border:1px solid var(--Base-Blue, #6581EA);border-radius:10px;box-shadow:0 0 0 6px #5473e814;pointer-events:none;z-index:1}.al-form-wrapper>.inner{position:relative;padding:24px!important;border-radius:10px;background:#fff;box-sizing:border-box;z-index:0;overflow:hidden}:host ::ng-deep .al-form-wrapper>.inner>*{max-width:100%;box-sizing:border-box}:host ::ng-deep .al-form-wrapper>.inner app-flex-grid{max-width:100%;box-sizing:border-box}.al-form-wrapper>.inner>:first-child{margin-top:0!important}.al-form-wrapper>.inner>:last-child{margin-bottom:0!important}.al-form__header{display:flex;gap:10px;align-items:baseline}.al-form__title{font-weight:600;color:#222}.al-form__hint{color:#7a818f}.al-form__paragraph{margin:6px 0 0;color:#3a3f4a}.al-form__demo-form{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:10px}@media (max-width: 767.98px){.al-form__demo-form{grid-template-columns:1fr}}.al-form__demo-form .full{grid-column:1/-1}.al-form__field{display:flex;flex-direction:column;gap:6px}.al-form__field label{font-size:12px;color:#5a6170}.al-form__control{width:100%;padding:10px 12px;border:1px solid #d9def4;border-radius:10px;background:#fff;color:#2a2f3a;outline:none;box-sizing:border-box;box-shadow:0 1px #5877ff0f,inset 0 0 0 2px #5877ff08;transition:box-shadow .15s ease,border-color .15s ease}.al-form__control:focus{border-color:#5877ff99;box-shadow:0 0 0 3px #5877ff24}select.al-form__control{appearance:none;background-image:linear-gradient(45deg,transparent 50%,#7a86ff 50%),linear-gradient(135deg,#7a86ff 50%,transparent 50%);background-position:calc(100% - 18px) calc(1em + 2px),calc(100% - 13px) calc(1em + 2px);background-size:5px 5px,5px 5px;background-repeat:no-repeat}.fab.left{position:absolute;left:-27px;top:36px;z-index:10;background-color:#fff;border-radius:50%;will-change:transform;transition:transform .1s ease-out;opacity:0;height:88px;display:flex;align-items:center}.fab.left .left-button-container{position:absolute;left:56px;top:50%;transform:translateY(-50%);z-index:1;pointer-events:auto}.fab-group.right{position:absolute;right:-16px;top:36px;display:flex;flex-direction:column;border-radius:50%;gap:8px;z-index:2;background-color:#fff;will-change:transform;transition:transform .1s ease-out;opacity:0;height:82px}.fab.left.positioned,.fab-group.right.positioned{opacity:1}:host ::ng-deep app-flex-grid+app-flex-grid{margin-top:16px}:host ::ng-deep app-flex-grid.row{align-items:center}:host ::ng-deep app-flex-grid al-checkbox .checkbox-label-wrapper{margin-top:0;justify-content:center}@media (max-width: 767.98px){:host ::ng-deep app-flex-grid.row.min-cols-2,:host ::ng-deep app-flex-grid.col.min-cols-2{--current-count: 2 !important;grid-template-columns:repeat(2,minmax(0,1fr))!important}:host ::ng-deep app-flex-grid.row.min-cols-2 al-checkbox,:host ::ng-deep app-flex-grid.row.min-cols-2 al-input,:host ::ng-deep app-flex-grid.col.min-cols-2 al-checkbox,:host ::ng-deep app-flex-grid.col.min-cols-2 al-input{grid-column:auto!important;width:100%!important;max-width:100%!important}:host ::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3):is(al-input){grid-column:auto!important}:host ::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3):is(al-checkbox),:host ::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3):is(al-checkbox)~*{grid-column:1/-1!important}}@container form-wrapper (max-width: 600px){:host ::ng-deep app-flex-grid.row.min-cols-2,:host ::ng-deep app-flex-grid.col.min-cols-2{--current-count: 2 !important;grid-template-columns:repeat(2,minmax(0,1fr))!important}:host ::ng-deep app-flex-grid.row.min-cols-2 al-checkbox,:host ::ng-deep app-flex-grid.row.min-cols-2 al-input,:host ::ng-deep app-flex-grid.col.min-cols-2 al-checkbox,:host ::ng-deep app-flex-grid.col.min-cols-2 al-input{grid-column:auto!important;width:100%!important;max-width:100%!important}:host ::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3):is(al-input){grid-column:auto!important}:host ::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3):is(al-checkbox),:host ::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3):is(al-checkbox)~*{grid-column:1/-1!important}}@container form-wrapper (min-width: 600px){::ng-deep app-flex-grid.row.min-cols-2>*:nth-child(1){order:1}::ng-deep app-flex-grid.row.min-cols-2>*:nth-child(2){order:4}::ng-deep app-flex-grid.row.min-cols-2>*:nth-child(3){order:2}::ng-deep app-flex-grid.row.min-cols-2>*:nth-child(4){order:3}::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3){order:1;grid-column:1/2!important}::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3)~*:nth-child(2){order:3;grid-column:4/5!important}::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3)~*:nth-child(3){order:2;grid-column:2/4!important}::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3):is(al-checkbox){order:3;grid-column:4/5!important}::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3):is(al-checkbox)~*:nth-child(2){order:1;grid-column:1/2!important}::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(3):is(al-checkbox)~*:nth-child(3){order:2;grid-column:2/4!important}::ng-deep app-flex-grid.row.min-cols-2>*:first-child:nth-last-child(2){order:2;grid-column:2/3!important}::ng-deep app-flex-grid.row.min-cols-2>*:nth-child(2):last-child{order:1;grid-column:1/2!important}}@media (max-width: 767.98px){:host ::ng-deep app-flex-grid.row.min-cols-3,:host ::ng-deep app-flex-grid.row[style*=\"--count-desktop: 3\"]{--current-count: 2 !important;grid-template-columns:repeat(2,1fr)!important}:host ::ng-deep app-flex-grid.row.min-cols-3 al-checkbox,:host ::ng-deep app-flex-grid.row[style*=\"--count-desktop: 3\"] al-checkbox{order:-1!important;grid-column:1/-1!important}}@media (max-width: 767.98px) and (max-width: 400.98px){:host ::ng-deep app-flex-grid.row.min-cols-3,:host ::ng-deep app-flex-grid.row[style*=\"--count-desktop: 3\"]{--current-count: 1 !important;grid-template-columns:1fr!important}:host ::ng-deep app-flex-grid.row.min-cols-3>*,:host ::ng-deep app-flex-grid.row[style*=\"--count-desktop: 3\"]>*{order:0!important;grid-column:auto!important}}@container form-wrapper (max-width: 600px){:host ::ng-deep app-flex-grid.row.min-cols-3,:host ::ng-deep app-flex-grid.row[style*=\"--count-desktop: 3\"]{--current-count: 2 !important;grid-template-columns:repeat(2,1fr)!important}:host ::ng-deep app-flex-grid.row.min-cols-3 al-checkbox,:host ::ng-deep app-flex-grid.row[style*=\"--count-desktop: 3\"] al-checkbox{order:-1!important;grid-column:1/-1!important}}@container form-wrapper (max-width: 400px){:host ::ng-deep app-flex-grid.row.min-cols-3,:host ::ng-deep app-flex-grid.row[style*=\"--count-desktop: 3\"]{--current-count: 1 !important;grid-template-columns:1fr!important}:host ::ng-deep app-flex-grid.row.min-cols-3>*,:host ::ng-deep app-flex-grid.row[style*=\"--count-desktop: 3\"]>*{order:0!important;grid-column:auto!important}}@container form-wrapper (min-width: 600px){::ng-deep app-flex-grid.row.min-cols-3,::ng-deep app-flex-grid.row[style*=\"--count-desktop: 3\"]{grid-template-columns:repeat(3,1fr)!important}::ng-deep app-flex-grid.row.min-cols-3>*:first-child:nth-last-child(3):is(al-checkbox),::ng-deep app-flex-grid.row[style*=\"--count-desktop: 3\"]>*:first-child:nth-last-child(3):is(al-checkbox){order:3!important;grid-column:auto!important}::ng-deep app-flex-grid.row.min-cols-3>*:first-child:nth-last-child(3):is(al-checkbox)~*:nth-child(2),::ng-deep app-flex-grid.row[style*=\"--count-desktop: 3\"]>*:first-child:nth-last-child(3):is(al-checkbox)~*:nth-child(2){order:1!important;grid-column:auto!important}::ng-deep app-flex-grid.row.min-cols-3>*:first-child:nth-last-child(3):is(al-checkbox)~*:nth-child(3),::ng-deep app-flex-grid.row[style*=\"--count-desktop: 3\"]>*:first-child:nth-last-child(3):is(al-checkbox)~*:nth-child(3){order:2!important;grid-column:auto!important}::ng-deep app-flex-grid.row.min-cols-3>*:first-child:nth-last-child(2):is(al-checkbox),::ng-deep app-flex-grid.row[style*=\"--count-desktop: 3\"]>*:first-child:nth-last-child(2):is(al-checkbox){order:2!important;grid-column:3/4!important}::ng-deep app-flex-grid.row.min-cols-3>*:first-child:nth-last-child(2):is(al-checkbox)~*:nth-child(2),::ng-deep app-flex-grid.row[style*=\"--count-desktop: 3\"]>*:first-child:nth-last-child(2):is(al-checkbox)~*:nth-child(2){order:1!important;grid-column:1/3!important}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.fab.left,.fab-group.right{opacity:0;animation:fadeIn 1s ease-out forwards}\n"] }]
|
|
6702
6708
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }], propDecorators: { testId: [{
|
|
6703
6709
|
type: Input
|
|
6704
6710
|
}], showLeftButton: [{
|