keevo-components 1.5.77 → 1.5.79

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.
@@ -10,6 +10,7 @@ export declare class InputCalendarComponent extends BaseComponentInput<Date> imp
10
10
  maxDate: Date;
11
11
  showButtonBar: boolean;
12
12
  showIcon: boolean;
13
+ showTime: boolean;
13
14
  selectionMode: 'single' | 'multiple' | 'range';
14
15
  onSelectionChange: EventEmitter<any>;
15
16
  onSelectionValue: EventEmitter<any>;
@@ -22,5 +23,5 @@ export declare class InputCalendarComponent extends BaseComponentInput<Date> imp
22
23
  protected onInputChange(event: any): void;
23
24
  hideOnRangeMode(): void;
24
25
  static ɵfac: i0.ɵɵFactoryDeclaration<InputCalendarComponent, never>;
25
- static ɵcmp: i0.ɵɵComponentDeclaration<InputCalendarComponent, "kv-input-calendar", never, { "isYear": "isYear"; "isMonthYear": "isMonthYear"; "minDate": "minDate"; "maxDate": "maxDate"; "showButtonBar": "showButtonBar"; "showIcon": "showIcon"; "selectionMode": "selectionMode"; }, { "onSelectionChange": "onSelectionChange"; "onSelectionValue": "onSelectionValue"; }, never, ["*"], false, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<InputCalendarComponent, "kv-input-calendar", never, { "isYear": "isYear"; "isMonthYear": "isMonthYear"; "minDate": "minDate"; "maxDate": "maxDate"; "showButtonBar": "showButtonBar"; "showIcon": "showIcon"; "showTime": "showTime"; "selectionMode": "selectionMode"; }, { "onSelectionChange": "onSelectionChange"; "onSelectionValue": "onSelectionValue"; }, never, ["*"], false, never>;
26
27
  }
@@ -10,12 +10,13 @@ import * as i8 from "./input-textarea/input-textarea.component";
10
10
  import * as i9 from "./input-time/input-time.component";
11
11
  import * as i10 from "./multi-select/multi-select.component";
12
12
  import * as i11 from "./switch/switch.component";
13
- import * as i12 from "@angular/common";
14
- import * as i13 from "@angular/forms";
15
- import * as i14 from "../api/components/error/kverror.module";
16
- import * as i15 from "../api/modules/primeng.module";
13
+ import * as i12 from "./radio-group/radio-group.component";
14
+ import * as i13 from "@angular/common";
15
+ import * as i14 from "@angular/forms";
16
+ import * as i15 from "../api/components/error/kverror.module";
17
+ import * as i16 from "../api/modules/primeng.module";
17
18
  export declare class KvInputsModule {
18
19
  static ɵfac: i0.ɵɵFactoryDeclaration<KvInputsModule, never>;
19
- static ɵmod: i0.ɵɵNgModuleDeclaration<KvInputsModule, [typeof i1.CheckComponent, typeof i2.DropdownComponent, typeof i3.InputCalendarComponent, typeof i4.InputMaskComponent, typeof i5.InputNumberComponent, typeof i6.InputPasswordComponent, typeof i7.InputTextComponent, typeof i8.InputTextareaComponent, typeof i9.InputTimeComponent, typeof i10.MultiSelectComponent, typeof i11.SwitchComponent], [typeof i12.CommonModule, typeof i13.FormsModule, typeof i14.kvErrorModule, typeof i15.PrimeNgModule, typeof i13.ReactiveFormsModule], [typeof i1.CheckComponent, typeof i2.DropdownComponent, typeof i3.InputCalendarComponent, typeof i4.InputMaskComponent, typeof i5.InputNumberComponent, typeof i6.InputPasswordComponent, typeof i7.InputTextComponent, typeof i8.InputTextareaComponent, typeof i9.InputTimeComponent, typeof i10.MultiSelectComponent, typeof i11.SwitchComponent]>;
20
+ static ɵmod: i0.ɵɵNgModuleDeclaration<KvInputsModule, [typeof i1.CheckComponent, typeof i2.DropdownComponent, typeof i3.InputCalendarComponent, typeof i4.InputMaskComponent, typeof i5.InputNumberComponent, typeof i6.InputPasswordComponent, typeof i7.InputTextComponent, typeof i8.InputTextareaComponent, typeof i9.InputTimeComponent, typeof i10.MultiSelectComponent, typeof i11.SwitchComponent, typeof i12.RadioGroupComponent], [typeof i13.CommonModule, typeof i14.FormsModule, typeof i15.kvErrorModule, typeof i16.PrimeNgModule, typeof i14.ReactiveFormsModule], [typeof i1.CheckComponent, typeof i2.DropdownComponent, typeof i3.InputCalendarComponent, typeof i4.InputMaskComponent, typeof i5.InputNumberComponent, typeof i6.InputPasswordComponent, typeof i7.InputTextComponent, typeof i8.InputTextareaComponent, typeof i9.InputTimeComponent, typeof i10.MultiSelectComponent, typeof i11.SwitchComponent, typeof i12.RadioGroupComponent]>;
20
21
  static ɵinj: i0.ɵɵInjectorDeclaration<KvInputsModule>;
21
22
  }
@@ -0,0 +1,13 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { BaseComponentInput } from '../../api/base-components/base-component-input';
3
+ import { ComponentService } from '../../api/services/component.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class RadioGroupComponent extends BaseComponentInput<any> implements OnInit {
6
+ options: any[];
7
+ onSelectedOption: EventEmitter<any>;
8
+ selectedOpt: null;
9
+ constructor(componentService: ComponentService);
10
+ selectedOption(event: any): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<RadioGroupComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<RadioGroupComponent, "kv-radio-group", never, { "options": "options"; }, { "onSelectedOption": "onSelectedOption"; }, never, never, false, never>;
13
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keevo-components",
3
- "version": "1.5.77",
3
+ "version": "1.5.79",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.2.0",
6
6
  "@angular/core": "^15.2.0"
package/public-api.d.ts CHANGED
@@ -8,6 +8,7 @@ export * from './lib/inputs/input-text/input-text.component';
8
8
  export * from './lib/inputs/input-textarea/input-textarea.component';
9
9
  export * from './lib/inputs/input-time/input-time.component';
10
10
  export * from './lib/inputs/multi-select/multi-select.component';
11
+ export * from './lib/inputs/radio-group/radio-group.component';
11
12
  export * from './lib/inputs/switch/switch.component';
12
13
  export * from './lib/buttons/button-secondary/button-secondary.component';
13
14
  export * from './lib/buttons/button-success/button-success.component';