@gravitee/ui-particles-angular 12.4.1 → 12.5.0-add-gio-description-list-791a2b6
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/gio-asciidoctor/gio-asciidoctor.component.mjs +2 -2
- package/esm2022/lib/gio-form-file-picker/gio-form-file-picker-add-button/gio-form-file-picker-add-button.component.mjs +3 -3
- package/esm2022/lib/gio-form-file-picker/gio-form-file-picker.component.mjs +2 -2
- package/esm2022/lib/gio-form-selection-inline/gio-form-selection-inline-card-content/gio-form-selection-inline-card-content.component.mjs +68 -0
- package/esm2022/lib/gio-form-selection-inline/gio-form-selection-inline-card.component.mjs +85 -0
- package/esm2022/lib/gio-form-selection-inline/gio-form-selection-inline-card.harness.mjs +44 -0
- package/esm2022/lib/gio-form-selection-inline/gio-form-selection-inline.component.mjs +103 -0
- package/esm2022/lib/gio-form-selection-inline/gio-form-selection-inline.harness.mjs +65 -0
- package/esm2022/lib/gio-form-selection-inline/gio-form-selection-inline.module.mjs +59 -0
- package/esm2022/lib/gio-form-selection-inline/public-api.mjs +22 -0
- package/esm2022/lib/gio-prismjs/gio-prismjs.service.mjs +4 -2
- package/esm2022/lib/public-api.mjs +2 -3
- package/fesm2022/gravitee-ui-particles-angular-gio-asciidoctor.mjs +1 -1
- package/fesm2022/gravitee-ui-particles-angular-gio-asciidoctor.mjs.map +1 -1
- package/fesm2022/gravitee-ui-particles-angular.mjs +382 -44
- package/fesm2022/gravitee-ui-particles-angular.mjs.map +1 -1
- package/lib/gio-form-selection-inline/gio-form-selection-inline-card-content/gio-form-selection-inline-card-content.component.d.ts +14 -0
- package/lib/gio-form-selection-inline/gio-form-selection-inline-card.component.d.ts +17 -0
- package/lib/gio-form-selection-inline/gio-form-selection-inline-card.harness.d.ts +19 -0
- package/lib/gio-form-selection-inline/gio-form-selection-inline.component.d.ts +20 -0
- package/lib/gio-form-selection-inline/gio-form-selection-inline.harness.d.ts +26 -0
- package/lib/gio-form-selection-inline/gio-form-selection-inline.module.d.ts +14 -0
- package/lib/gio-form-selection-inline/public-api.d.ts +6 -0
- package/lib/public-api.d.ts +1 -2
- package/package.json +1 -1
- package/src/lib/gio-description-list/gio-description-list.scss +34 -0
- package/src/lib/gio-scss-components.scss +2 -2
- package/esm2022/lib/gio-radio-button/gio-radio-button-content.component.mjs +0 -52
- package/esm2022/lib/gio-radio-button/gio-radio-button.module.mjs +0 -35
- package/lib/gio-radio-button/gio-radio-button-content.component.d.ts +0 -14
- package/lib/gio-radio-button/gio-radio-button.module.d.ts +0 -10
- package/src/lib/gio-radio-button/gio-radio-button.scss +0 -90
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class GioFormSelectionInlineCardContentComponent {
|
|
3
|
+
icon: string | undefined;
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GioFormSelectionInlineCardContentComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GioFormSelectionInlineCardContentComponent, "gio-form-selection-inline-card-content", never, { "icon": { "alias": "icon"; "required": false; }; }, {}, never, ["gio-card-content-title", "gio-card-content-subtitle"], false, never>;
|
|
6
|
+
}
|
|
7
|
+
export declare class GioFormSelectionInlineCardTitleComponent {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GioFormSelectionInlineCardTitleComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GioFormSelectionInlineCardTitleComponent, "gio-card-content-title", never, {}, {}, never, ["*"], false, never>;
|
|
10
|
+
}
|
|
11
|
+
export declare class GioFormSelectionInlineCardSubtitleComponent {
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GioFormSelectionInlineCardSubtitleComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GioFormSelectionInlineCardSubtitleComponent, "gio-card-content-subtitle", never, {}, {}, never, ["*"], false, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class GioFormSelectionInlineCardComponent {
|
|
4
|
+
private readonly changeDetector;
|
|
5
|
+
value?: string;
|
|
6
|
+
lock: boolean;
|
|
7
|
+
disabled: boolean;
|
|
8
|
+
get _disabled(): boolean;
|
|
9
|
+
selected: boolean;
|
|
10
|
+
_parendDisabled: boolean;
|
|
11
|
+
onSelectFn?: (value?: string) => void;
|
|
12
|
+
constructor(changeDetector: ChangeDetectorRef);
|
|
13
|
+
onSelectCard(): void;
|
|
14
|
+
_markForCheck(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GioFormSelectionInlineCardComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GioFormSelectionInlineCardComponent, "gio-form-selection-inline-card", never, { "value": { "alias": "value"; "required": false; }; "lock": { "alias": "lock"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { BaseHarnessFilters, ComponentHarness, HarnessPredicate } from '@angular/cdk/testing';
|
|
2
|
+
export type GioFormSelectionInlineCardHarnessFilters = BaseHarnessFilters & {
|
|
3
|
+
value?: string;
|
|
4
|
+
};
|
|
5
|
+
export declare class GioFormSelectionInlineCardHarness extends ComponentHarness {
|
|
6
|
+
static hostSelector: string;
|
|
7
|
+
/**
|
|
8
|
+
* Gets a `HarnessPredicate` that can be used to search for a `GioFormSelectionInlineCardHarness` that meets
|
|
9
|
+
* certain criteria.
|
|
10
|
+
*
|
|
11
|
+
* @param options Options for filtering which input instances are considered a match.
|
|
12
|
+
* @return a `HarnessPredicate` configured with the given options.
|
|
13
|
+
*/
|
|
14
|
+
static with(options?: GioFormSelectionInlineCardHarnessFilters): HarnessPredicate<GioFormSelectionInlineCardHarness>;
|
|
15
|
+
getValue(): Promise<string | null>;
|
|
16
|
+
isSelected(): Promise<boolean>;
|
|
17
|
+
isDisabled(): Promise<boolean>;
|
|
18
|
+
getContentText(): Promise<string>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { AfterContentInit, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class GioFormSelectionInlineComponent implements ControlValueAccessor, AfterContentInit {
|
|
5
|
+
private readonly changeDetector;
|
|
6
|
+
private selectCardsList?;
|
|
7
|
+
selection?: string;
|
|
8
|
+
disabled: boolean;
|
|
9
|
+
private _onChange;
|
|
10
|
+
private _onTouched;
|
|
11
|
+
constructor(changeDetector: ChangeDetectorRef);
|
|
12
|
+
ngAfterContentInit(): void;
|
|
13
|
+
writeValue(value: string): void;
|
|
14
|
+
registerOnChange(fn: (value?: string) => void): void;
|
|
15
|
+
registerOnTouched(fn: () => void): void;
|
|
16
|
+
setDisabledState(isDisabled: boolean): void;
|
|
17
|
+
private updateCardsSelection;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GioFormSelectionInlineComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GioFormSelectionInlineComponent, "gio-form-selection-inline", never, {}, {}, ["selectCardsList"], ["gio-form-selection-inline-card"], false, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { BaseHarnessFilters, ComponentHarness, HarnessPredicate } from '@angular/cdk/testing';
|
|
2
|
+
import { GioFormSelectionInlineCardHarness } from './gio-form-selection-inline-card.harness';
|
|
3
|
+
export type GioFormSelectionInlineHarnessFilters = BaseHarnessFilters;
|
|
4
|
+
export declare class GioFormSelectionInlineHarness extends ComponentHarness {
|
|
5
|
+
static hostSelector: string;
|
|
6
|
+
/**
|
|
7
|
+
* Gets a `HarnessPredicate` that can be used to search for a `GioFormSelectionInlineHarness` that meets
|
|
8
|
+
* certain criteria.
|
|
9
|
+
*
|
|
10
|
+
* @param options Options for filtering which input instances are considered a match.
|
|
11
|
+
* @return a `HarnessPredicate` configured with the given options.
|
|
12
|
+
*/
|
|
13
|
+
static with(options?: GioFormSelectionInlineHarnessFilters): HarnessPredicate<GioFormSelectionInlineHarness>;
|
|
14
|
+
protected getCards: import("@angular/cdk/testing").AsyncFactoryFn<GioFormSelectionInlineCardHarness[]>;
|
|
15
|
+
protected getCardByValue: (value: string) => Promise<import("@angular/cdk/testing").TestElement>;
|
|
16
|
+
getSelectedValue(): Promise<string | undefined>;
|
|
17
|
+
getUnselectedValues(): Promise<(string | undefined)[]>;
|
|
18
|
+
getSelectionCards(): Promise<{
|
|
19
|
+
text: string;
|
|
20
|
+
value: string | undefined;
|
|
21
|
+
selected: boolean;
|
|
22
|
+
disabled: boolean;
|
|
23
|
+
}[]>;
|
|
24
|
+
select(value: string): Promise<void>;
|
|
25
|
+
isDisabled(): Promise<boolean>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./gio-form-selection-inline.component";
|
|
3
|
+
import * as i2 from "./gio-form-selection-inline-card.component";
|
|
4
|
+
import * as i3 from "./gio-form-selection-inline-card-content/gio-form-selection-inline-card-content.component";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
import * as i5 from "@angular/material/card";
|
|
7
|
+
import * as i6 from "@angular/material/icon";
|
|
8
|
+
import * as i7 from "@angular/material/core";
|
|
9
|
+
import * as i8 from "../gio-icons/gio-icons.module";
|
|
10
|
+
export declare class GioFormSelectionInlineModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GioFormSelectionInlineModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<GioFormSelectionInlineModule, [typeof i1.GioFormSelectionInlineComponent, typeof i2.GioFormSelectionInlineCardComponent, typeof i3.GioFormSelectionInlineCardSubtitleComponent, typeof i3.GioFormSelectionInlineCardTitleComponent, typeof i3.GioFormSelectionInlineCardContentComponent], [typeof i4.CommonModule, typeof i5.MatCardModule, typeof i6.MatIconModule, typeof i7.MatRippleModule, typeof i8.GioIconsModule], [typeof i1.GioFormSelectionInlineComponent, typeof i2.GioFormSelectionInlineCardComponent, typeof i3.GioFormSelectionInlineCardSubtitleComponent, typeof i3.GioFormSelectionInlineCardTitleComponent, typeof i3.GioFormSelectionInlineCardContentComponent]>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<GioFormSelectionInlineModule>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export * from './gio-form-selection-inline.module';
|
|
2
|
+
export * from './gio-form-selection-inline.component';
|
|
3
|
+
export * from './gio-form-selection-inline-card.component';
|
|
4
|
+
export * from './gio-form-selection-inline-card-content/gio-form-selection-inline-card-content.component';
|
|
5
|
+
export * from './gio-form-selection-inline.harness';
|
|
6
|
+
export * from './gio-form-selection-inline-card.harness';
|
package/lib/public-api.d.ts
CHANGED
|
@@ -57,7 +57,6 @@ export * from './gio-form-cron/gio-form-cron-label.component';
|
|
|
57
57
|
export * from './gio-form-cron/gio-form-cron-hint.component';
|
|
58
58
|
export * from './gio-form-cron/gio-form-cron.module';
|
|
59
59
|
export * from './gio-form-cron/gio-form-cron.harness';
|
|
60
|
-
export * from './gio-
|
|
61
|
-
export * from './gio-radio-button/gio-radio-button.module';
|
|
60
|
+
export * from './gio-form-selection-inline/public-api';
|
|
62
61
|
export * from './oem-theme/public-api';
|
|
63
62
|
export * from './gio-card-empty-state';
|
package/package.json
CHANGED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
@use 'sass:map';
|
|
2
|
+
@use '@angular/material' as mat;
|
|
3
|
+
|
|
4
|
+
@use '../../scss/gio-mat-palettes' as palettes;
|
|
5
|
+
@use '../../scss/gio-mat-theme-variable' as theme;
|
|
6
|
+
|
|
7
|
+
$foreground: map.get(theme.$mat-theme, foreground);
|
|
8
|
+
$typography: map.get(theme.$mat-theme, typography);
|
|
9
|
+
|
|
10
|
+
@mixin theme() {
|
|
11
|
+
dl.gio-description-list {
|
|
12
|
+
display: flex;
|
|
13
|
+
flex-flow: row wrap;
|
|
14
|
+
|
|
15
|
+
dt {
|
|
16
|
+
flex: 1 1 30%;
|
|
17
|
+
padding: 6px 8px;
|
|
18
|
+
color: mat.get-color-from-palette(palettes.$mat-space-palette, 'lighter40');
|
|
19
|
+
@include mat.typography-level($typography, body-1);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
dd {
|
|
23
|
+
flex: 1 1 70%;
|
|
24
|
+
padding: 6px 8px;
|
|
25
|
+
margin: 0;
|
|
26
|
+
@include mat.typography-level($typography, subtitle-2);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
dd ~ dd,
|
|
30
|
+
dd ~ dt {
|
|
31
|
+
border-top: 1px solid mat.get-color-from-palette($foreground, divider);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
@use './gio-link/gio-link';
|
|
21
21
|
@use './gio-caption-2/gio-caption-2';
|
|
22
22
|
@use './gio-button-toggle-group/gio-button-toggle-group';
|
|
23
|
-
@use './gio-
|
|
23
|
+
@use './gio-description-list/gio-description-list';
|
|
24
24
|
|
|
25
25
|
// All Gravitee.io SCSS components to add globally in main.scss
|
|
26
26
|
@mixin all-components() {
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
@include gio-link.theme;
|
|
32
32
|
@include gio-caption-2.theme;
|
|
33
33
|
@include gio-button-toggle-group.theme;
|
|
34
|
-
@include gio-
|
|
34
|
+
@include gio-description-list.theme;
|
|
35
35
|
}
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
|
|
3
|
-
*
|
|
4
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
-
* you may not use this file except in compliance with the License.
|
|
6
|
-
* You may obtain a copy of the License at
|
|
7
|
-
*
|
|
8
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
*
|
|
10
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
* See the License for the specific language governing permissions and
|
|
14
|
-
* limitations under the License.
|
|
15
|
-
*/
|
|
16
|
-
import { Component, Input } from '@angular/core';
|
|
17
|
-
import * as i0 from "@angular/core";
|
|
18
|
-
import * as i1 from "@angular/common";
|
|
19
|
-
import * as i2 from "@angular/material/icon";
|
|
20
|
-
export class GioRadioButtonTitleComponent {
|
|
21
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.3", ngImport: i0, type: GioRadioButtonTitleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
22
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.3", type: GioRadioButtonTitleComponent, selector: "gio-radio-button-title", ngImport: i0, template: `<ng-content></ng-content>`, isInline: true }); }
|
|
23
|
-
}
|
|
24
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.3", ngImport: i0, type: GioRadioButtonTitleComponent, decorators: [{
|
|
25
|
-
type: Component,
|
|
26
|
-
args: [{
|
|
27
|
-
selector: 'gio-radio-button-title',
|
|
28
|
-
template: `<ng-content></ng-content>`,
|
|
29
|
-
}]
|
|
30
|
-
}] });
|
|
31
|
-
export class GioRadioButtonSubitleComponent {
|
|
32
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.3", ngImport: i0, type: GioRadioButtonSubitleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
33
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.3", type: GioRadioButtonSubitleComponent, selector: "gio-radio-button-subtitle", ngImport: i0, template: `<ng-content></ng-content>`, isInline: true }); }
|
|
34
|
-
}
|
|
35
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.3", ngImport: i0, type: GioRadioButtonSubitleComponent, decorators: [{
|
|
36
|
-
type: Component,
|
|
37
|
-
args: [{
|
|
38
|
-
selector: 'gio-radio-button-subtitle',
|
|
39
|
-
template: `<ng-content></ng-content>`,
|
|
40
|
-
}]
|
|
41
|
-
}] });
|
|
42
|
-
export class GioRadioButtonContentComponent {
|
|
43
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.3", ngImport: i0, type: GioRadioButtonContentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
44
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.3", type: GioRadioButtonContentComponent, selector: "gio-radio-button-content", inputs: { icon: "icon" }, ngImport: i0, template: "<!--\n\n Copyright (C) 2022 The Gravitee team (http://gravitee.io)\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n-->\n<div class=\"gio-radio-button__content\">\n <div class=\"gio-radio-button__content__icon\">\n <mat-icon [svgIcon]=\"icon\" *ngIf=\"icon\"></mat-icon>\n </div>\n <div class=\"gio-radio-button__content__title\">\n <ng-content select=\"gio-radio-button-title\"></ng-content>\n </div>\n <div class=\"gio-radio-button__content__subtitle\">\n <ng-content select=\"gio-radio-button-subtitle\"></ng-content>\n </div>\n</div>\n", styles: ["@charset \"UTF-8\";\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); }
|
|
45
|
-
}
|
|
46
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.3", ngImport: i0, type: GioRadioButtonContentComponent, decorators: [{
|
|
47
|
-
type: Component,
|
|
48
|
-
args: [{ selector: 'gio-radio-button-content', template: "<!--\n\n Copyright (C) 2022 The Gravitee team (http://gravitee.io)\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n-->\n<div class=\"gio-radio-button__content\">\n <div class=\"gio-radio-button__content__icon\">\n <mat-icon [svgIcon]=\"icon\" *ngIf=\"icon\"></mat-icon>\n </div>\n <div class=\"gio-radio-button__content__title\">\n <ng-content select=\"gio-radio-button-title\"></ng-content>\n </div>\n <div class=\"gio-radio-button__content__subtitle\">\n <ng-content select=\"gio-radio-button-subtitle\"></ng-content>\n </div>\n</div>\n", styles: ["@charset \"UTF-8\";\n"] }]
|
|
49
|
-
}], propDecorators: { icon: [{
|
|
50
|
-
type: Input
|
|
51
|
-
}] } });
|
|
52
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2lvLXJhZGlvLWJ1dHRvbi1jb250ZW50LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3VpLXBhcnRpY2xlcy1hbmd1bGFyL3NyYy9saWIvZ2lvLXJhZGlvLWJ1dHRvbi9naW8tcmFkaW8tYnV0dG9uLWNvbnRlbnQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdWktcGFydGljbGVzLWFuZ3VsYXIvc3JjL2xpYi9naW8tcmFkaW8tYnV0dG9uL2dpby1yYWRpby1idXR0b24tY29udGVudC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7Ozs7Ozs7R0FjRztBQUNILE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7O0FBTWpELE1BQU0sT0FBTyw0QkFBNEI7OEdBQTVCLDRCQUE0QjtrR0FBNUIsNEJBQTRCLDhEQUY3QiwyQkFBMkI7OzJGQUUxQiw0QkFBNEI7a0JBSnhDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLHdCQUF3QjtvQkFDbEMsUUFBUSxFQUFFLDJCQUEyQjtpQkFDdEM7O0FBT0QsTUFBTSxPQUFPLDhCQUE4Qjs4R0FBOUIsOEJBQThCO2tHQUE5Qiw4QkFBOEIsaUVBRi9CLDJCQUEyQjs7MkZBRTFCLDhCQUE4QjtrQkFKMUMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsMkJBQTJCO29CQUNyQyxRQUFRLEVBQUUsMkJBQTJCO2lCQUN0Qzs7QUFRRCxNQUFNLE9BQU8sOEJBQThCOzhHQUE5Qiw4QkFBOEI7a0dBQTlCLDhCQUE4QiwwRkNsQzNDLHNrQ0E0QkE7OzJGRE1hLDhCQUE4QjtrQkFMMUMsU0FBUzsrQkFDRSwwQkFBMEI7OEJBTTdCLElBQUk7c0JBRFYsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbIi8qXG4gKiBDb3B5cmlnaHQgKEMpIDIwMTUgVGhlIEdyYXZpdGVlIHRlYW0gKGh0dHA6Ly9ncmF2aXRlZS5pbylcbiAqXG4gKiBMaWNlbnNlZCB1bmRlciB0aGUgQXBhY2hlIExpY2Vuc2UsIFZlcnNpb24gMi4wICh0aGUgXCJMaWNlbnNlXCIpO1xuICogeW91IG1heSBub3QgdXNlIHRoaXMgZmlsZSBleGNlcHQgaW4gY29tcGxpYW5jZSB3aXRoIHRoZSBMaWNlbnNlLlxuICogWW91IG1heSBvYnRhaW4gYSBjb3B5IG9mIHRoZSBMaWNlbnNlIGF0XG4gKlxuICogICAgICAgICBodHRwOi8vd3d3LmFwYWNoZS5vcmcvbGljZW5zZXMvTElDRU5TRS0yLjBcbiAqXG4gKiBVbmxlc3MgcmVxdWlyZWQgYnkgYXBwbGljYWJsZSBsYXcgb3IgYWdyZWVkIHRvIGluIHdyaXRpbmcsIHNvZnR3YXJlXG4gKiBkaXN0cmlidXRlZCB1bmRlciB0aGUgTGljZW5zZSBpcyBkaXN0cmlidXRlZCBvbiBhbiBcIkFTIElTXCIgQkFTSVMsXG4gKiBXSVRIT1VUIFdBUlJBTlRJRVMgT1IgQ09ORElUSU9OUyBPRiBBTlkgS0lORCwgZWl0aGVyIGV4cHJlc3Mgb3IgaW1wbGllZC5cbiAqIFNlZSB0aGUgTGljZW5zZSBmb3IgdGhlIHNwZWNpZmljIGxhbmd1YWdlIGdvdmVybmluZyBwZXJtaXNzaW9ucyBhbmRcbiAqIGxpbWl0YXRpb25zIHVuZGVyIHRoZSBMaWNlbnNlLlxuICovXG5pbXBvcnQgeyBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2dpby1yYWRpby1idXR0b24tdGl0bGUnLFxuICB0ZW1wbGF0ZTogYDxuZy1jb250ZW50PjwvbmctY29udGVudD5gLFxufSlcbmV4cG9ydCBjbGFzcyBHaW9SYWRpb0J1dHRvblRpdGxlQ29tcG9uZW50IHt9XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2dpby1yYWRpby1idXR0b24tc3VidGl0bGUnLFxuICB0ZW1wbGF0ZTogYDxuZy1jb250ZW50PjwvbmctY29udGVudD5gLFxufSlcbmV4cG9ydCBjbGFzcyBHaW9SYWRpb0J1dHRvblN1Yml0bGVDb21wb25lbnQge31cblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZ2lvLXJhZGlvLWJ1dHRvbi1jb250ZW50JyxcbiAgdGVtcGxhdGVVcmw6ICcuL2dpby1yYWRpby1idXR0b24tY29udGVudC5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2dpby1yYWRpby1idXR0b24uc2NzcyddLFxufSlcbmV4cG9ydCBjbGFzcyBHaW9SYWRpb0J1dHRvbkNvbnRlbnRDb21wb25lbnQge1xuICBASW5wdXQoKVxuICBwdWJsaWMgaWNvbjogc3RyaW5nIHwgdW5kZWZpbmVkO1xufVxuIiwiPCEtLVxuXG4gICAgQ29weXJpZ2h0IChDKSAyMDIyIFRoZSBHcmF2aXRlZSB0ZWFtIChodHRwOi8vZ3Jhdml0ZWUuaW8pXG5cbiAgICBMaWNlbnNlZCB1bmRlciB0aGUgQXBhY2hlIExpY2Vuc2UsIFZlcnNpb24gMi4wICh0aGUgXCJMaWNlbnNlXCIpO1xuICAgIHlvdSBtYXkgbm90IHVzZSB0aGlzIGZpbGUgZXhjZXB0IGluIGNvbXBsaWFuY2Ugd2l0aCB0aGUgTGljZW5zZS5cbiAgICBZb3UgbWF5IG9idGFpbiBhIGNvcHkgb2YgdGhlIExpY2Vuc2UgYXRcblxuICAgICAgICAgICAgaHR0cDovL3d3dy5hcGFjaGUub3JnL2xpY2Vuc2VzL0xJQ0VOU0UtMi4wXG5cbiAgICBVbmxlc3MgcmVxdWlyZWQgYnkgYXBwbGljYWJsZSBsYXcgb3IgYWdyZWVkIHRvIGluIHdyaXRpbmcsIHNvZnR3YXJlXG4gICAgZGlzdHJpYnV0ZWQgdW5kZXIgdGhlIExpY2Vuc2UgaXMgZGlzdHJpYnV0ZWQgb24gYW4gXCJBUyBJU1wiIEJBU0lTLFxuICAgIFdJVEhPVVQgV0FSUkFOVElFUyBPUiBDT05ESVRJT05TIE9GIEFOWSBLSU5ELCBlaXRoZXIgZXhwcmVzcyBvciBpbXBsaWVkLlxuICAgIFNlZSB0aGUgTGljZW5zZSBmb3IgdGhlIHNwZWNpZmljIGxhbmd1YWdlIGdvdmVybmluZyBwZXJtaXNzaW9ucyBhbmRcbiAgICBsaW1pdGF0aW9ucyB1bmRlciB0aGUgTGljZW5zZS5cblxuLS0+XG48ZGl2IGNsYXNzPVwiZ2lvLXJhZGlvLWJ1dHRvbl9fY29udGVudFwiPlxuICA8ZGl2IGNsYXNzPVwiZ2lvLXJhZGlvLWJ1dHRvbl9fY29udGVudF9faWNvblwiPlxuICAgIDxtYXQtaWNvbiBbc3ZnSWNvbl09XCJpY29uXCIgKm5nSWY9XCJpY29uXCI+PC9tYXQtaWNvbj5cbiAgPC9kaXY+XG4gIDxkaXYgY2xhc3M9XCJnaW8tcmFkaW8tYnV0dG9uX19jb250ZW50X190aXRsZVwiPlxuICAgIDxuZy1jb250ZW50IHNlbGVjdD1cImdpby1yYWRpby1idXR0b24tdGl0bGVcIj48L25nLWNvbnRlbnQ+XG4gIDwvZGl2PlxuICA8ZGl2IGNsYXNzPVwiZ2lvLXJhZGlvLWJ1dHRvbl9fY29udGVudF9fc3VidGl0bGVcIj5cbiAgICA8bmctY29udGVudCBzZWxlY3Q9XCJnaW8tcmFkaW8tYnV0dG9uLXN1YnRpdGxlXCI+PC9uZy1jb250ZW50PlxuICA8L2Rpdj5cbjwvZGl2PlxuIl19
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
|
|
3
|
-
*
|
|
4
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
-
* you may not use this file except in compliance with the License.
|
|
6
|
-
* You may obtain a copy of the License at
|
|
7
|
-
*
|
|
8
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
*
|
|
10
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
* See the License for the specific language governing permissions and
|
|
14
|
-
* limitations under the License.
|
|
15
|
-
*/
|
|
16
|
-
import { CommonModule } from '@angular/common';
|
|
17
|
-
import { NgModule } from '@angular/core';
|
|
18
|
-
import { MatRadioModule } from '@angular/material/radio';
|
|
19
|
-
import { GioIconsModule } from '../gio-icons/gio-icons.module';
|
|
20
|
-
import { GioRadioButtonContentComponent, GioRadioButtonSubitleComponent, GioRadioButtonTitleComponent, } from './gio-radio-button-content.component';
|
|
21
|
-
import * as i0 from "@angular/core";
|
|
22
|
-
export class GioRadioButtonModule {
|
|
23
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.3", ngImport: i0, type: GioRadioButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
24
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.2.3", ngImport: i0, type: GioRadioButtonModule, declarations: [GioRadioButtonContentComponent, GioRadioButtonTitleComponent, GioRadioButtonSubitleComponent], imports: [CommonModule, MatRadioModule, GioIconsModule], exports: [GioRadioButtonContentComponent, GioRadioButtonTitleComponent, GioRadioButtonSubitleComponent] }); }
|
|
25
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.2.3", ngImport: i0, type: GioRadioButtonModule, imports: [CommonModule, MatRadioModule, GioIconsModule] }); }
|
|
26
|
-
}
|
|
27
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.3", ngImport: i0, type: GioRadioButtonModule, decorators: [{
|
|
28
|
-
type: NgModule,
|
|
29
|
-
args: [{
|
|
30
|
-
declarations: [GioRadioButtonContentComponent, GioRadioButtonTitleComponent, GioRadioButtonSubitleComponent],
|
|
31
|
-
exports: [GioRadioButtonContentComponent, GioRadioButtonTitleComponent, GioRadioButtonSubitleComponent],
|
|
32
|
-
imports: [CommonModule, MatRadioModule, GioIconsModule],
|
|
33
|
-
}]
|
|
34
|
-
}] });
|
|
35
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2lvLXJhZGlvLWJ1dHRvbi5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy91aS1wYXJ0aWNsZXMtYW5ndWxhci9zcmMvbGliL2dpby1yYWRpby1idXR0b24vZ2lvLXJhZGlvLWJ1dHRvbi5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7Ozs7Ozs7O0dBY0c7QUFDSCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0seUJBQXlCLENBQUM7QUFFekQsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLCtCQUErQixDQUFDO0FBRS9ELE9BQU8sRUFDTCw4QkFBOEIsRUFDOUIsOEJBQThCLEVBQzlCLDRCQUE0QixHQUM3QixNQUFNLHNDQUFzQyxDQUFDOztBQU85QyxNQUFNLE9BQU8sb0JBQW9COzhHQUFwQixvQkFBb0I7K0dBQXBCLG9CQUFvQixpQkFKaEIsOEJBQThCLEVBQUUsNEJBQTRCLEVBQUUsOEJBQThCLGFBRWpHLFlBQVksRUFBRSxjQUFjLEVBQUUsY0FBYyxhQUQ1Qyw4QkFBOEIsRUFBRSw0QkFBNEIsRUFBRSw4QkFBOEI7K0dBRzNGLG9CQUFvQixZQUZyQixZQUFZLEVBQUUsY0FBYyxFQUFFLGNBQWM7OzJGQUUzQyxvQkFBb0I7a0JBTGhDLFFBQVE7bUJBQUM7b0JBQ1IsWUFBWSxFQUFFLENBQUMsOEJBQThCLEVBQUUsNEJBQTRCLEVBQUUsOEJBQThCLENBQUM7b0JBQzVHLE9BQU8sRUFBRSxDQUFDLDhCQUE4QixFQUFFLDRCQUE0QixFQUFFLDhCQUE4QixDQUFDO29CQUN2RyxPQUFPLEVBQUUsQ0FBQyxZQUFZLEVBQUUsY0FBYyxFQUFFLGNBQWMsQ0FBQztpQkFDeEQiLCJzb3VyY2VzQ29udGVudCI6WyIvKlxuICogQ29weXJpZ2h0IChDKSAyMDE1IFRoZSBHcmF2aXRlZSB0ZWFtIChodHRwOi8vZ3Jhdml0ZWUuaW8pXG4gKlxuICogTGljZW5zZWQgdW5kZXIgdGhlIEFwYWNoZSBMaWNlbnNlLCBWZXJzaW9uIDIuMCAodGhlIFwiTGljZW5zZVwiKTtcbiAqIHlvdSBtYXkgbm90IHVzZSB0aGlzIGZpbGUgZXhjZXB0IGluIGNvbXBsaWFuY2Ugd2l0aCB0aGUgTGljZW5zZS5cbiAqIFlvdSBtYXkgb2J0YWluIGEgY29weSBvZiB0aGUgTGljZW5zZSBhdFxuICpcbiAqICAgICAgICAgaHR0cDovL3d3dy5hcGFjaGUub3JnL2xpY2Vuc2VzL0xJQ0VOU0UtMi4wXG4gKlxuICogVW5sZXNzIHJlcXVpcmVkIGJ5IGFwcGxpY2FibGUgbGF3IG9yIGFncmVlZCB0byBpbiB3cml0aW5nLCBzb2Z0d2FyZVxuICogZGlzdHJpYnV0ZWQgdW5kZXIgdGhlIExpY2Vuc2UgaXMgZGlzdHJpYnV0ZWQgb24gYW4gXCJBUyBJU1wiIEJBU0lTLFxuICogV0lUSE9VVCBXQVJSQU5USUVTIE9SIENPTkRJVElPTlMgT0YgQU5ZIEtJTkQsIGVpdGhlciBleHByZXNzIG9yIGltcGxpZWQuXG4gKiBTZWUgdGhlIExpY2Vuc2UgZm9yIHRoZSBzcGVjaWZpYyBsYW5ndWFnZSBnb3Zlcm5pbmcgcGVybWlzc2lvbnMgYW5kXG4gKiBsaW1pdGF0aW9ucyB1bmRlciB0aGUgTGljZW5zZS5cbiAqL1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBNYXRSYWRpb01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL3JhZGlvJztcblxuaW1wb3J0IHsgR2lvSWNvbnNNb2R1bGUgfSBmcm9tICcuLi9naW8taWNvbnMvZ2lvLWljb25zLm1vZHVsZSc7XG5cbmltcG9ydCB7XG4gIEdpb1JhZGlvQnV0dG9uQ29udGVudENvbXBvbmVudCxcbiAgR2lvUmFkaW9CdXR0b25TdWJpdGxlQ29tcG9uZW50LFxuICBHaW9SYWRpb0J1dHRvblRpdGxlQ29tcG9uZW50LFxufSBmcm9tICcuL2dpby1yYWRpby1idXR0b24tY29udGVudC5jb21wb25lbnQnO1xuXG5ATmdNb2R1bGUoe1xuICBkZWNsYXJhdGlvbnM6IFtHaW9SYWRpb0J1dHRvbkNvbnRlbnRDb21wb25lbnQsIEdpb1JhZGlvQnV0dG9uVGl0bGVDb21wb25lbnQsIEdpb1JhZGlvQnV0dG9uU3ViaXRsZUNvbXBvbmVudF0sXG4gIGV4cG9ydHM6IFtHaW9SYWRpb0J1dHRvbkNvbnRlbnRDb21wb25lbnQsIEdpb1JhZGlvQnV0dG9uVGl0bGVDb21wb25lbnQsIEdpb1JhZGlvQnV0dG9uU3ViaXRsZUNvbXBvbmVudF0sXG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGUsIE1hdFJhZGlvTW9kdWxlLCBHaW9JY29uc01vZHVsZV0sXG59KVxuZXhwb3J0IGNsYXNzIEdpb1JhZGlvQnV0dG9uTW9kdWxlIHt9XG4iXX0=
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class GioRadioButtonTitleComponent {
|
|
3
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GioRadioButtonTitleComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GioRadioButtonTitleComponent, "gio-radio-button-title", never, {}, {}, never, ["*"], false, never>;
|
|
5
|
-
}
|
|
6
|
-
export declare class GioRadioButtonSubitleComponent {
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GioRadioButtonSubitleComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GioRadioButtonSubitleComponent, "gio-radio-button-subtitle", never, {}, {}, never, ["*"], false, never>;
|
|
9
|
-
}
|
|
10
|
-
export declare class GioRadioButtonContentComponent {
|
|
11
|
-
icon: string | undefined;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GioRadioButtonContentComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GioRadioButtonContentComponent, "gio-radio-button-content", never, { "icon": { "alias": "icon"; "required": false; }; }, {}, never, ["gio-radio-button-title", "gio-radio-button-subtitle"], false, never>;
|
|
14
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./gio-radio-button-content.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/material/radio";
|
|
5
|
-
import * as i4 from "../gio-icons/gio-icons.module";
|
|
6
|
-
export declare class GioRadioButtonModule {
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GioRadioButtonModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<GioRadioButtonModule, [typeof i1.GioRadioButtonContentComponent, typeof i1.GioRadioButtonTitleComponent, typeof i1.GioRadioButtonSubitleComponent], [typeof i2.CommonModule, typeof i3.MatRadioModule, typeof i4.GioIconsModule], [typeof i1.GioRadioButtonContentComponent, typeof i1.GioRadioButtonTitleComponent, typeof i1.GioRadioButtonSubitleComponent]>;
|
|
9
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<GioRadioButtonModule>;
|
|
10
|
-
}
|
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (C) 2021 The Gravitee team (http://gravitee.io)
|
|
3
|
-
*
|
|
4
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
-
* you may not use this file except in compliance with the License.
|
|
6
|
-
* You may obtain a copy of the License at
|
|
7
|
-
*
|
|
8
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
*
|
|
10
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
* See the License for the specific language governing permissions and
|
|
14
|
-
* limitations under the License.
|
|
15
|
-
*/
|
|
16
|
-
@use 'sass:map';
|
|
17
|
-
@use '@angular/material' as mat;
|
|
18
|
-
@use '../../scss/gio-mat-palettes' as palettes;
|
|
19
|
-
@use '../../scss/gio-mat-theme-variable' as theme;
|
|
20
|
-
|
|
21
|
-
$typography: map.get(theme.$mat-theme, typography);
|
|
22
|
-
|
|
23
|
-
@mixin gio-radio-group {
|
|
24
|
-
display: grid;
|
|
25
|
-
gap: 24px;
|
|
26
|
-
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
@mixin gio-radio-button {
|
|
30
|
-
padding: 24px 32px;
|
|
31
|
-
border: 2px solid mat.get-color-from-palette(palettes.$mat-dove-palette, 'darker20');
|
|
32
|
-
border-radius: 4px;
|
|
33
|
-
|
|
34
|
-
&__content {
|
|
35
|
-
padding-left: 24px;
|
|
36
|
-
cursor: pointer;
|
|
37
|
-
|
|
38
|
-
&__icon {
|
|
39
|
-
margin-bottom: 24px;
|
|
40
|
-
|
|
41
|
-
&__selected {
|
|
42
|
-
color: mat.get-color-from-palette(palettes.$mat-accent-palette, 'default');
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
.mat-icon {
|
|
46
|
-
width: 32px;
|
|
47
|
-
height: 32px;
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
&__title {
|
|
52
|
-
@include mat.typography-level($typography, subtitle-1);
|
|
53
|
-
|
|
54
|
-
margin-bottom: 8px;
|
|
55
|
-
text-wrap: initial;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
&__subtitle {
|
|
59
|
-
@include mat.typography-level($typography, body-2);
|
|
60
|
-
|
|
61
|
-
text-wrap: initial;
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
.gio-radio-button.mat-mdc-radio-checked {
|
|
66
|
-
border: 2px solid mat.get-color-from-palette(palettes.$mat-accent-palette, 'default');
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
.mat-mdc-radio-checked .mat-icon {
|
|
70
|
-
color: mat.get-color-from-palette(palettes.$mat-accent-palette, 'default');
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
@mixin theme() {
|
|
75
|
-
.gio-radio-group {
|
|
76
|
-
@include gio-radio-group;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.gio-radio-button {
|
|
80
|
-
@include gio-radio-button;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
.gio-radio-button.mat-mdc-radio-checked {
|
|
84
|
-
border: 2px solid mat.get-color-from-palette(palettes.$mat-accent-palette, 'default');
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
.gio-radio-button.mat-mdc-radio-checked .mat-icon {
|
|
88
|
-
color: mat.get-color-from-palette(palettes.$mat-accent-palette, 'default');
|
|
89
|
-
}
|
|
90
|
-
}
|