@kms-ngx-ui/presentational 18.2.0 → 18.3.1

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.
@@ -1341,6 +1341,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1341
1341
  type: Input
1342
1342
  }] } });
1343
1343
 
1344
+ var RadioButtonSize;
1345
+ (function (RadioButtonSize) {
1346
+ RadioButtonSize["SM"] = "small";
1347
+ RadioButtonSize["MD"] = "medium";
1348
+ RadioButtonSize["LG"] = "large";
1349
+ })(RadioButtonSize || (RadioButtonSize = {}));
1350
+
1344
1351
  /**
1345
1352
  * @copyright KMS GmbH
1346
1353
  */
@@ -1349,9 +1356,10 @@ class RadioButtonComponent {
1349
1356
  this.label = '';
1350
1357
  this.checked = false;
1351
1358
  this.disabled = false;
1352
- this.size = 'medium';
1353
- this.color = 'primary';
1359
+ this.size = RadioButtonSize.MD;
1360
+ this.color = StylingTheme.PRIMARY;
1354
1361
  this.onChange = new EventEmitter();
1362
+ this.onTouched = () => { };
1355
1363
  }
1356
1364
  onRadioChange(event) {
1357
1365
  this.onChange.emit(event);
@@ -2296,12 +2304,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2296
2304
  args: ['window:scroll', []]
2297
2305
  }] } });
2298
2306
 
2299
- var ButtonType;
2300
- (function (ButtonType) {
2301
- ButtonType["BASIC"] = "mat-button";
2302
- ButtonType["FLAT"] = "mat-flat-button";
2303
- ButtonType["RAISED"] = "mat-raised-button";
2304
- })(ButtonType || (ButtonType = {}));
2307
+ var ButtonAppearance;
2308
+ (function (ButtonAppearance) {
2309
+ ButtonAppearance["BASIC"] = "mat-button";
2310
+ ButtonAppearance["FLAT"] = "mat-flat-button";
2311
+ ButtonAppearance["RAISED"] = "mat-raised-button";
2312
+ })(ButtonAppearance || (ButtonAppearance = {}));
2305
2313
 
2306
2314
  /**
2307
2315
  * @copyright KMS GmbH
@@ -2309,7 +2317,8 @@ var ButtonType;
2309
2317
  class ButtonComponent {
2310
2318
  constructor() {
2311
2319
  this.color = input(StylingTheme.PRIMARY);
2312
- this.type = input(ButtonType.FLAT);
2320
+ this.type = input('button');
2321
+ this.appearance = input(ButtonAppearance.FLAT);
2313
2322
  this.loading = input(false);
2314
2323
  this.label = input('');
2315
2324
  this.icon = input();
@@ -2317,9 +2326,9 @@ class ButtonComponent {
2317
2326
  this.click = output();
2318
2327
  this.StylingTheme = StylingTheme;
2319
2328
  this.IconSize = IconSizePx;
2320
- this.ButtonType = ButtonType;
2329
+ this.ButtonAppearance = ButtonAppearance;
2321
2330
  this.iconColor = computed(() => {
2322
- if (this.type() !== ButtonType.BASIC) {
2331
+ if (this.appearance() !== ButtonAppearance.BASIC) {
2323
2332
  return Color.WHITE;
2324
2333
  }
2325
2334
  switch (this.color()) {
@@ -2333,12 +2342,12 @@ class ButtonComponent {
2333
2342
  });
2334
2343
  }
2335
2344
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2336
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: ButtonComponent, selector: "kms-button", inputs: { color: { classPropertyName: "color", publicName: "color", isSignal: true, isRequired: false, transformFunction: null }, type: { classPropertyName: "type", publicName: "type", isSignal: true, isRequired: false, transformFunction: null }, loading: { classPropertyName: "loading", publicName: "loading", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { click: "click" }, ngImport: i0, template: "@if (type() == ButtonType.BASIC) {\n<button\n mat-button\n [color]=\"color()\"\n class=\"kms-button\"\n [ngClass]=\"{\n 'kms-button--basic-primary': color() === StylingTheme.PRIMARY,\n 'kms-button--basic-accent': color() === StylingTheme.SECONDARY,\n 'kms-button--basic-warn': color() === StylingTheme.WARN,\n }\"\n [disabled]=\"disabled()\"\n (click)=\"click.emit($event)\"\n>\n <ng-container *ngTemplateOutlet=\"buttonTemplate\"> </ng-container>\n</button>\n} @else if (type() == ButtonType.FLAT) {\n<button\n mat-flat-button\n [color]=\"color()\"\n class=\"kms-button\"\n [ngClass]=\"{\n 'kms-button--flat-primary': color() === StylingTheme.PRIMARY,\n 'kms-button--flat-accent': color() === StylingTheme.SECONDARY,\n 'kms-button--flat-warn': color() === StylingTheme.WARN,\n }\"\n [disabled]=\"disabled()\"\n (click)=\"click.emit($event)\"\n>\n <ng-container *ngTemplateOutlet=\"buttonTemplate\"> </ng-container>\n</button>\n} @else if (type() == ButtonType.RAISED) {\n<button\n mat-raised-button\n [color]=\"color()\"\n class=\"kms-button\"\n [ngClass]=\"{\n 'kms-button--raised-primary': color() === StylingTheme.PRIMARY,\n 'kms-button--raised-accent': color() === StylingTheme.SECONDARY,\n 'kms-button--raised-warn': color() === StylingTheme.WARN,\n }\"\n [disabled]=\"disabled()\"\n (click)=\"click.emit($event)\"\n>\n <ng-container *ngTemplateOutlet=\"buttonTemplate\"> </ng-container>\n</button>\n}\n\n<ng-template #buttonTemplate>\n @if(loading()){\n <mat-spinner diameter=\"22\"></mat-spinner>\n } @else { @if (icon()) {\n <kms-icon\n [color]=\"iconColor()\"\n [size]=\"IconSize.XXS\"\n [icon]=\"icon()\"\n ></kms-icon>\n }\n {{ label() }}\n }\n</ng-template>\n", dependencies: [{ kind: "directive", type: i1$2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: i2$2.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", exportAs: ["matButton"] }, { kind: "component", type: i2$3.MatProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "mode", "value", "diameter", "strokeWidth"], exportAs: ["matProgressSpinner"] }, { kind: "component", type: IconComponent, selector: "kms-icon", inputs: ["icon", "iconClass", "size", "dontUseSprite", "color"] }] }); }
2345
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: ButtonComponent, selector: "kms-button", inputs: { color: { classPropertyName: "color", publicName: "color", isSignal: true, isRequired: false, transformFunction: null }, type: { classPropertyName: "type", publicName: "type", isSignal: true, isRequired: false, transformFunction: null }, appearance: { classPropertyName: "appearance", publicName: "appearance", isSignal: true, isRequired: false, transformFunction: null }, loading: { classPropertyName: "loading", publicName: "loading", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { click: "click" }, ngImport: i0, template: "@if (appearance() == ButtonAppearance.BASIC) {\n<button\n mat-button\n [color]=\"color()\"\n class=\"kms-button\"\n [ngClass]=\"{\n 'kms-button--basic-primary': color() === StylingTheme.PRIMARY,\n 'kms-button--basic-accent': color() === StylingTheme.SECONDARY,\n 'kms-button--basic-warn': color() === StylingTheme.WARN,\n }\"\n [disabled]=\"disabled()\"\n (click)=\"click.emit($event)\"\n [type]=\"type()\"\n>\n <ng-container *ngTemplateOutlet=\"buttonTemplate\"> </ng-container>\n</button>\n} @else if (appearance() == ButtonAppearance.FLAT) {\n<button\n mat-flat-button\n [color]=\"color()\"\n class=\"kms-button\"\n [ngClass]=\"{\n 'kms-button--flat-primary': color() === StylingTheme.PRIMARY,\n 'kms-button--flat-accent': color() === StylingTheme.SECONDARY,\n 'kms-button--flat-warn': color() === StylingTheme.WARN,\n }\"\n [disabled]=\"disabled()\"\n (click)=\"click.emit($event)\"\n [type]=\"type()\"\n>\n <ng-container *ngTemplateOutlet=\"buttonTemplate\"> </ng-container>\n</button>\n} @else if (appearance() == ButtonAppearance.RAISED) {\n<button\n mat-raised-button\n [color]=\"color()\"\n class=\"kms-button\"\n [ngClass]=\"{\n 'kms-button--raised-primary': color() === StylingTheme.PRIMARY,\n 'kms-button--raised-accent': color() === StylingTheme.SECONDARY,\n 'kms-button--raised-warn': color() === StylingTheme.WARN,\n }\"\n [disabled]=\"disabled()\"\n (click)=\"click.emit($event)\"\n [type]=\"type()\"\n>\n <ng-container *ngTemplateOutlet=\"buttonTemplate\"> </ng-container>\n</button>\n}\n\n<ng-template #buttonTemplate>\n @if(loading()){\n <mat-spinner diameter=\"22\"></mat-spinner>\n } @else { @if (icon()) {\n <kms-icon\n [color]=\"iconColor()\"\n [size]=\"IconSize.XXS\"\n [icon]=\"icon()\"\n ></kms-icon>\n }\n {{ label() }}\n }\n</ng-template>\n", dependencies: [{ kind: "directive", type: i1$2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: i2$2.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", exportAs: ["matButton"] }, { kind: "component", type: i2$3.MatProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "mode", "value", "diameter", "strokeWidth"], exportAs: ["matProgressSpinner"] }, { kind: "component", type: IconComponent, selector: "kms-icon", inputs: ["icon", "iconClass", "size", "dontUseSprite", "color"] }] }); }
2337
2346
  }
2338
2347
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ButtonComponent, decorators: [{
2339
2348
  type: Component,
2340
- args: [{ selector: 'kms-button', template: "@if (type() == ButtonType.BASIC) {\n<button\n mat-button\n [color]=\"color()\"\n class=\"kms-button\"\n [ngClass]=\"{\n 'kms-button--basic-primary': color() === StylingTheme.PRIMARY,\n 'kms-button--basic-accent': color() === StylingTheme.SECONDARY,\n 'kms-button--basic-warn': color() === StylingTheme.WARN,\n }\"\n [disabled]=\"disabled()\"\n (click)=\"click.emit($event)\"\n>\n <ng-container *ngTemplateOutlet=\"buttonTemplate\"> </ng-container>\n</button>\n} @else if (type() == ButtonType.FLAT) {\n<button\n mat-flat-button\n [color]=\"color()\"\n class=\"kms-button\"\n [ngClass]=\"{\n 'kms-button--flat-primary': color() === StylingTheme.PRIMARY,\n 'kms-button--flat-accent': color() === StylingTheme.SECONDARY,\n 'kms-button--flat-warn': color() === StylingTheme.WARN,\n }\"\n [disabled]=\"disabled()\"\n (click)=\"click.emit($event)\"\n>\n <ng-container *ngTemplateOutlet=\"buttonTemplate\"> </ng-container>\n</button>\n} @else if (type() == ButtonType.RAISED) {\n<button\n mat-raised-button\n [color]=\"color()\"\n class=\"kms-button\"\n [ngClass]=\"{\n 'kms-button--raised-primary': color() === StylingTheme.PRIMARY,\n 'kms-button--raised-accent': color() === StylingTheme.SECONDARY,\n 'kms-button--raised-warn': color() === StylingTheme.WARN,\n }\"\n [disabled]=\"disabled()\"\n (click)=\"click.emit($event)\"\n>\n <ng-container *ngTemplateOutlet=\"buttonTemplate\"> </ng-container>\n</button>\n}\n\n<ng-template #buttonTemplate>\n @if(loading()){\n <mat-spinner diameter=\"22\"></mat-spinner>\n } @else { @if (icon()) {\n <kms-icon\n [color]=\"iconColor()\"\n [size]=\"IconSize.XXS\"\n [icon]=\"icon()\"\n ></kms-icon>\n }\n {{ label() }}\n }\n</ng-template>\n" }]
2341
- }], ctorParameters: () => [] });
2349
+ args: [{ selector: 'kms-button', template: "@if (appearance() == ButtonAppearance.BASIC) {\n<button\n mat-button\n [color]=\"color()\"\n class=\"kms-button\"\n [ngClass]=\"{\n 'kms-button--basic-primary': color() === StylingTheme.PRIMARY,\n 'kms-button--basic-accent': color() === StylingTheme.SECONDARY,\n 'kms-button--basic-warn': color() === StylingTheme.WARN,\n }\"\n [disabled]=\"disabled()\"\n (click)=\"click.emit($event)\"\n [type]=\"type()\"\n>\n <ng-container *ngTemplateOutlet=\"buttonTemplate\"> </ng-container>\n</button>\n} @else if (appearance() == ButtonAppearance.FLAT) {\n<button\n mat-flat-button\n [color]=\"color()\"\n class=\"kms-button\"\n [ngClass]=\"{\n 'kms-button--flat-primary': color() === StylingTheme.PRIMARY,\n 'kms-button--flat-accent': color() === StylingTheme.SECONDARY,\n 'kms-button--flat-warn': color() === StylingTheme.WARN,\n }\"\n [disabled]=\"disabled()\"\n (click)=\"click.emit($event)\"\n [type]=\"type()\"\n>\n <ng-container *ngTemplateOutlet=\"buttonTemplate\"> </ng-container>\n</button>\n} @else if (appearance() == ButtonAppearance.RAISED) {\n<button\n mat-raised-button\n [color]=\"color()\"\n class=\"kms-button\"\n [ngClass]=\"{\n 'kms-button--raised-primary': color() === StylingTheme.PRIMARY,\n 'kms-button--raised-accent': color() === StylingTheme.SECONDARY,\n 'kms-button--raised-warn': color() === StylingTheme.WARN,\n }\"\n [disabled]=\"disabled()\"\n (click)=\"click.emit($event)\"\n [type]=\"type()\"\n>\n <ng-container *ngTemplateOutlet=\"buttonTemplate\"> </ng-container>\n</button>\n}\n\n<ng-template #buttonTemplate>\n @if(loading()){\n <mat-spinner diameter=\"22\"></mat-spinner>\n } @else { @if (icon()) {\n <kms-icon\n [color]=\"iconColor()\"\n [size]=\"IconSize.XXS\"\n [icon]=\"icon()\"\n ></kms-icon>\n }\n {{ label() }}\n }\n</ng-template>\n" }]
2350
+ }] });
2342
2351
 
2343
2352
  class CardComponent {
2344
2353
  constructor() {
@@ -2888,6 +2897,54 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2888
2897
  type: Output
2889
2898
  }] } });
2890
2899
 
2900
+ class RadioGroupComponent {
2901
+ constructor() {
2902
+ this.options = input.required();
2903
+ this.disabled = input(false);
2904
+ this.value = input(null);
2905
+ this.infoText = input(undefined);
2906
+ this.color = input(StylingTheme.PRIMARY);
2907
+ this.size = input(RadioButtonSize.MD);
2908
+ this.direction = input('row');
2909
+ this.onChange = (value) => {
2910
+ this.value = value;
2911
+ };
2912
+ this.onTouched = () => { };
2913
+ }
2914
+ writeValue(value) {
2915
+ this.value = value;
2916
+ }
2917
+ registerOnChange(fn) {
2918
+ this.onChange = fn;
2919
+ }
2920
+ registerOnTouched(fn) {
2921
+ this.onTouched = fn;
2922
+ }
2923
+ handleChange(value) {
2924
+ this.value = value;
2925
+ this.onChange(value);
2926
+ this.onTouched();
2927
+ }
2928
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RadioGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2929
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: RadioGroupComponent, selector: "kms-radiogroup", inputs: { options: { classPropertyName: "options", publicName: "options", isSignal: true, isRequired: true, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, infoText: { classPropertyName: "infoText", publicName: "infoText", isSignal: true, isRequired: false, transformFunction: null }, color: { classPropertyName: "color", publicName: "color", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, direction: { classPropertyName: "direction", publicName: "direction", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
2930
+ {
2931
+ provide: NG_VALUE_ACCESSOR,
2932
+ useExisting: forwardRef(() => RadioGroupComponent),
2933
+ multi: true,
2934
+ },
2935
+ ], ngImport: i0, template: "@if (options() && options().length > 0) {\n<mat-radio-group\n class=\"radiogroup\"\n [value]=\"value()\"\n (change)=\"handleChange($event.value)\"\n [disabled]=\"disabled()\"\n [ngStyle]=\"{ 'flex-direction': direction() }\"\n>\n @if (infoText()) {\n <kms-tooltip-icon\n [class.margin-left]=\"direction() == 'column'\"\n [tooltipText]=\"infoText()\"\n ></kms-tooltip-icon>\n } @for (option of options(); track $index) {\n <div class=\"radiobutton-container\">\n <kms-radiobutton\n [label]=\"option.Text\"\n [value]=\"option.Value\"\n [checked]=\"value() === option.Value\"\n [disabled]=\"disabled() || option.Disabled\"\n [size]=\"size()\"\n [color]=\"color()\"\n ></kms-radiobutton>\n @if (option.InfoText) {\n <kms-tooltip-icon [tooltipText]=\"option.InfoText\"></kms-tooltip-icon>\n }\n </div>\n }\n</mat-radio-group>\n}\n", styles: [""], dependencies: [{ kind: "directive", type: i1$2.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: i2$1.MatRadioGroup, selector: "mat-radio-group", inputs: ["color", "name", "labelPosition", "value", "selected", "disabled", "required", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioGroup"] }, { kind: "component", type: RadioButtonComponent, selector: "kms-radiobutton", inputs: ["label", "checked", "disabled", "value", "size", "color"], outputs: ["onChange"] }, { kind: "component", type: TooltipIconComponent, selector: "kms-tooltip-icon", inputs: ["tooltipText", "placement", "delay", "iconSize", "tooltipAlwaysVisible"] }] }); }
2936
+ }
2937
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RadioGroupComponent, decorators: [{
2938
+ type: Component,
2939
+ args: [{ selector: 'kms-radiogroup', providers: [
2940
+ {
2941
+ provide: NG_VALUE_ACCESSOR,
2942
+ useExisting: forwardRef(() => RadioGroupComponent),
2943
+ multi: true,
2944
+ },
2945
+ ], template: "@if (options() && options().length > 0) {\n<mat-radio-group\n class=\"radiogroup\"\n [value]=\"value()\"\n (change)=\"handleChange($event.value)\"\n [disabled]=\"disabled()\"\n [ngStyle]=\"{ 'flex-direction': direction() }\"\n>\n @if (infoText()) {\n <kms-tooltip-icon\n [class.margin-left]=\"direction() == 'column'\"\n [tooltipText]=\"infoText()\"\n ></kms-tooltip-icon>\n } @for (option of options(); track $index) {\n <div class=\"radiobutton-container\">\n <kms-radiobutton\n [label]=\"option.Text\"\n [value]=\"option.Value\"\n [checked]=\"value() === option.Value\"\n [disabled]=\"disabled() || option.Disabled\"\n [size]=\"size()\"\n [color]=\"color()\"\n ></kms-radiobutton>\n @if (option.InfoText) {\n <kms-tooltip-icon [tooltipText]=\"option.InfoText\"></kms-tooltip-icon>\n }\n </div>\n }\n</mat-radio-group>\n}\n" }]
2946
+ }] });
2947
+
2891
2948
  /**
2892
2949
  * General Image Model
2893
2950
  */
@@ -2906,6 +2963,27 @@ var ImageSourceType;
2906
2963
  ImageSourceType["URL"] = "URL";
2907
2964
  })(ImageSourceType || (ImageSourceType = {}));
2908
2965
 
2966
+ class TextValuePairArray {
2967
+ }
2968
+ class TextValuePair {
2969
+ constructor(text, value) {
2970
+ this.Text = text;
2971
+ this.Value = value;
2972
+ }
2973
+ }
2974
+ class LabelValuePair {
2975
+ constructor(label, value) {
2976
+ this.Label = label;
2977
+ this.Value = value;
2978
+ }
2979
+ }
2980
+ class KeyValuePair {
2981
+ constructor(key, value) {
2982
+ this.Key = key;
2983
+ this.Value = value;
2984
+ }
2985
+ }
2986
+
2909
2987
  /**
2910
2988
  * Attached File DTO
2911
2989
  */
@@ -3111,6 +3189,7 @@ class KmsUiPresentationalModule {
3111
3189
  LoaderComponent,
3112
3190
  MapComponent,
3113
3191
  RadioButtonComponent,
3192
+ RadioGroupComponent,
3114
3193
  SalutationDropdownComponent,
3115
3194
  SalutationRadiogroupComponent,
3116
3195
  SlideToggleComponent,
@@ -3143,7 +3222,6 @@ class KmsUiPresentationalModule {
3143
3222
  MatTooltipModule,
3144
3223
  NgxSliderModule,
3145
3224
  MatAutocompleteModule,
3146
- MatRadioModule,
3147
3225
  MatListModule,
3148
3226
  MatCardModule], exports: [BackToTopComponent,
3149
3227
  CheckboxComponent,
@@ -3194,7 +3272,6 @@ class KmsUiPresentationalModule {
3194
3272
  MatTooltipModule,
3195
3273
  NgxSliderModule,
3196
3274
  MatAutocompleteModule,
3197
- MatRadioModule,
3198
3275
  MatListModule,
3199
3276
  MatCardModule] }); }
3200
3277
  }
@@ -3218,6 +3295,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
3218
3295
  LoaderComponent,
3219
3296
  MapComponent,
3220
3297
  RadioButtonComponent,
3298
+ RadioGroupComponent,
3221
3299
  SalutationDropdownComponent,
3222
3300
  SalutationRadiogroupComponent,
3223
3301
  SlideToggleComponent,
@@ -3253,7 +3331,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
3253
3331
  MatTooltipModule,
3254
3332
  NgxSliderModule,
3255
3333
  MatAutocompleteModule,
3256
- MatRadioModule,
3257
3334
  MatListModule,
3258
3335
  MatCardModule,
3259
3336
  ],
@@ -3320,5 +3397,5 @@ var ButtonResponseType;
3320
3397
  * Generated bundle index. Do not edit.
3321
3398
  */
3322
3399
 
3323
- export { BackToTopComponent, Breakpoint, ButtonComponent, ButtonResponseType, ButtonType, CardComponent, CheckboxComponent, Color, ColorInputComponent, ConfirmationDialogComponent, CustomPipesModule, DirectivesModule, DropdownFromDataComponent, EnumRadiogroupComponent, FileInputComponent, FlyoutComponent, FormParentComponent, GetMaxHeightDirective, IconComponent, IconSizePx, IconSizesArr, ImageSliderComponent, ImageSnippet, ImageSourceType, IntegerCurrency, KMSAccordionItemComponent, KmsUiPresentationalComponent, KmsUiPresentationalModule, KmsUiPresentationalService, LoaderComponent, MapComponent, Marker, MarkerLabel, MarkerOptions, NumericInputComponent, PasswordComponent, RadioButtonComponent, SafeHtmlPipe, SafeResourceUrlPipe, SafeUrlPipe, SalutationDropdownComponent, SalutationEnum, SalutationRadiogroupComponent, SimpleBreakpoint, SlideToggleComponent, SliderComponent, StylingTheme, SwipeDirective, TimeDirective, TimeInputComponent, TooltipDirective, TooltipIconComponent, TrimPipe, TypeofPipe, ViewportService, WindowDimensions, YesNoRadiogroupComponent };
3400
+ export { BackToTopComponent, Breakpoint, ButtonAppearance, ButtonComponent, ButtonResponseType, CardComponent, CheckboxComponent, Color, ColorInputComponent, ConfirmationDialogComponent, CustomPipesModule, DirectivesModule, DropdownFromDataComponent, EnumRadiogroupComponent, FileInputComponent, FlyoutComponent, FormParentComponent, GetMaxHeightDirective, IconComponent, IconSizePx, IconSizesArr, ImageSliderComponent, ImageSnippet, ImageSourceType, IntegerCurrency, KMSAccordionItemComponent, KeyValuePair, KmsUiPresentationalComponent, KmsUiPresentationalModule, KmsUiPresentationalService, LabelValuePair, LoaderComponent, MapComponent, Marker, MarkerLabel, MarkerOptions, NumericInputComponent, PasswordComponent, RadioButtonComponent, RadioButtonSize, RadioGroupComponent, SafeHtmlPipe, SafeResourceUrlPipe, SafeUrlPipe, SalutationDropdownComponent, SalutationEnum, SalutationRadiogroupComponent, SimpleBreakpoint, SlideToggleComponent, SliderComponent, StylingTheme, SwipeDirective, TextValuePair, TextValuePairArray, TimeDirective, TimeInputComponent, TooltipDirective, TooltipIconComponent, TrimPipe, TypeofPipe, ViewportService, WindowDimensions, YesNoRadiogroupComponent };
3324
3401
  //# sourceMappingURL=kms-ngx-ui-presentational.mjs.map