keevo-components 0.0.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.
Files changed (98) hide show
  1. package/README.md +24 -0
  2. package/esm2020/keevo-components.mjs +5 -0
  3. package/esm2020/lib/api/base-components/base-component-button.mjs +33 -0
  4. package/esm2020/lib/api/base-components/base-component-dropdown.mjs +115 -0
  5. package/esm2020/lib/api/base-components/base-component-input.mjs +77 -0
  6. package/esm2020/lib/api/base-components/base-component.mjs +49 -0
  7. package/esm2020/lib/api/components/error/error.component.mjs +26 -0
  8. package/esm2020/lib/api/components/error/kverror.module.mjs +35 -0
  9. package/esm2020/lib/api/helpers/component-providers.mjs +16 -0
  10. package/esm2020/lib/api/helpers/translate-primeng.mjs +23 -0
  11. package/esm2020/lib/api/index.mjs +2 -0
  12. package/esm2020/lib/api/modules/primeng.module.mjs +187 -0
  13. package/esm2020/lib/api/public-api.mjs +12 -0
  14. package/esm2020/lib/api/services/component.service.mjs +27 -0
  15. package/esm2020/lib/api/services/object.service.mjs +26 -0
  16. package/esm2020/lib/buttons/button-secondary/button-secondary.component.mjs +17 -0
  17. package/esm2020/lib/buttons/button-success/button-success.component.mjs +17 -0
  18. package/esm2020/lib/buttons/kvbutton.module.mjs +29 -0
  19. package/esm2020/lib/inputs/check/check.component.mjs +25 -0
  20. package/esm2020/lib/inputs/dropdown/dropdown.component.mjs +25 -0
  21. package/esm2020/lib/inputs/input-calendar/input-calendar.component.mjs +61 -0
  22. package/esm2020/lib/inputs/input-mask/input-mask.component.mjs +21 -0
  23. package/esm2020/lib/inputs/input-number/input-number.component.mjs +55 -0
  24. package/esm2020/lib/inputs/input-password/input-password.component.mjs +31 -0
  25. package/esm2020/lib/inputs/input-text/input-text.component.mjs +19 -0
  26. package/esm2020/lib/inputs/input-textarea/input-textarea.component.mjs +41 -0
  27. package/esm2020/lib/inputs/input-time/input-time.component.mjs +22 -0
  28. package/esm2020/lib/inputs/kvinputs.module.mjs +88 -0
  29. package/esm2020/lib/inputs/multi-select/multi-select.component.mjs +49 -0
  30. package/esm2020/lib/inputs/switch/switch.component.mjs +25 -0
  31. package/esm2020/lib/keevo-components.module.mjs +27 -0
  32. package/esm2020/public-api.mjs +25 -0
  33. package/esm2020/src/lib/api/base-components/base-component-button.mjs +33 -0
  34. package/esm2020/src/lib/api/base-components/base-component-dropdown.mjs +115 -0
  35. package/esm2020/src/lib/api/base-components/base-component-input.mjs +77 -0
  36. package/esm2020/src/lib/api/base-components/base-component.mjs +49 -0
  37. package/esm2020/src/lib/api/components/error/error.component.mjs +26 -0
  38. package/esm2020/src/lib/api/components/error/kverror.module.mjs +35 -0
  39. package/esm2020/src/lib/api/helpers/component-providers.mjs +16 -0
  40. package/esm2020/src/lib/api/helpers/translate-primeng.mjs +23 -0
  41. package/esm2020/src/lib/api/keevo-components-src-lib-api.mjs +5 -0
  42. package/esm2020/src/lib/api/modules/primeng.module.mjs +187 -0
  43. package/esm2020/src/lib/api/public-api.mjs +12 -0
  44. package/esm2020/src/lib/api/services/component.service.mjs +27 -0
  45. package/esm2020/src/lib/api/services/object.service.mjs +26 -0
  46. package/fesm2015/keevo-components-src-lib-api.mjs +594 -0
  47. package/fesm2015/keevo-components-src-lib-api.mjs.map +1 -0
  48. package/fesm2015/keevo-components.mjs +1050 -0
  49. package/fesm2015/keevo-components.mjs.map +1 -0
  50. package/fesm2020/keevo-components-src-lib-api.mjs +591 -0
  51. package/fesm2020/keevo-components-src-lib-api.mjs.map +1 -0
  52. package/fesm2020/keevo-components.mjs +1046 -0
  53. package/fesm2020/keevo-components.mjs.map +1 -0
  54. package/index.d.ts +5 -0
  55. package/lib/api/base-components/base-component-button.d.ts +13 -0
  56. package/lib/api/base-components/base-component-dropdown.d.ts +31 -0
  57. package/lib/api/base-components/base-component-input.d.ts +26 -0
  58. package/lib/api/base-components/base-component.d.ts +21 -0
  59. package/lib/api/components/error/error.component.d.ts +12 -0
  60. package/lib/api/components/error/kverror.module.d.ts +10 -0
  61. package/lib/api/helpers/component-providers.d.ts +2 -0
  62. package/lib/api/helpers/translate-primeng.d.ts +4 -0
  63. package/lib/api/index.d.ts +1 -0
  64. package/lib/api/modules/primeng.module.d.ts +45 -0
  65. package/lib/api/public-api.d.ts +11 -0
  66. package/lib/api/services/component.service.d.ts +11 -0
  67. package/lib/api/services/object.service.d.ts +8 -0
  68. package/lib/buttons/button-secondary/button-secondary.component.d.ts +7 -0
  69. package/lib/buttons/button-success/button-success.component.d.ts +7 -0
  70. package/lib/buttons/kvbutton.module.d.ts +9 -0
  71. package/lib/inputs/check/check.component.d.ts +10 -0
  72. package/lib/inputs/dropdown/dropdown.component.d.ts +8 -0
  73. package/lib/inputs/input-calendar/input-calendar.component.d.ts +20 -0
  74. package/lib/inputs/input-mask/input-mask.component.d.ts +9 -0
  75. package/lib/inputs/input-number/input-number.component.d.ts +17 -0
  76. package/lib/inputs/input-password/input-password.component.d.ts +11 -0
  77. package/lib/inputs/input-text/input-text.component.d.ts +8 -0
  78. package/lib/inputs/input-textarea/input-textarea.component.d.ts +15 -0
  79. package/lib/inputs/input-time/input-time.component.d.ts +9 -0
  80. package/lib/inputs/kvinputs.module.d.ts +21 -0
  81. package/lib/inputs/multi-select/multi-select.component.d.ts +19 -0
  82. package/lib/inputs/switch/switch.component.d.ts +10 -0
  83. package/lib/keevo-components.module.d.ts +8 -0
  84. package/package.json +47 -0
  85. package/public-api.d.ts +21 -0
  86. package/src/lib/api/base-components/base-component-button.d.ts +13 -0
  87. package/src/lib/api/base-components/base-component-dropdown.d.ts +31 -0
  88. package/src/lib/api/base-components/base-component-input.d.ts +26 -0
  89. package/src/lib/api/base-components/base-component.d.ts +21 -0
  90. package/src/lib/api/components/error/error.component.d.ts +12 -0
  91. package/src/lib/api/components/error/kverror.module.d.ts +10 -0
  92. package/src/lib/api/helpers/component-providers.d.ts +2 -0
  93. package/src/lib/api/helpers/translate-primeng.d.ts +4 -0
  94. package/src/lib/api/index.d.ts +5 -0
  95. package/src/lib/api/modules/primeng.module.d.ts +45 -0
  96. package/src/lib/api/public-api.d.ts +11 -0
  97. package/src/lib/api/services/component.service.d.ts +11 -0
  98. package/src/lib/api/services/object.service.d.ts +8 -0
@@ -0,0 +1,21 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./check/check.component";
3
+ import * as i2 from "./dropdown/dropdown.component";
4
+ import * as i3 from "./input-calendar/input-calendar.component";
5
+ import * as i4 from "./input-mask/input-mask.component";
6
+ import * as i5 from "./input-number/input-number.component";
7
+ import * as i6 from "./input-password/input-password.component";
8
+ import * as i7 from "./input-text/input-text.component";
9
+ import * as i8 from "./input-textarea/input-textarea.component";
10
+ import * as i9 from "./input-time/input-time.component";
11
+ import * as i10 from "./multi-select/multi-select.component";
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";
17
+ export declare class KvInputsModule {
18
+ 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 ɵinj: i0.ɵɵInjectorDeclaration<KvInputsModule>;
21
+ }
@@ -0,0 +1,19 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { BaseComponentInput, ComponentService } from '../../api';
3
+ import * as i0 from "@angular/core";
4
+ export declare class MultiSelectComponent extends BaseComponentInput<any> implements OnInit {
5
+ options: any;
6
+ optionLabel: string;
7
+ optionValue: string;
8
+ filter: boolean;
9
+ showClear: boolean;
10
+ onSelectionChange: EventEmitter<any>;
11
+ onPanelHide: EventEmitter<any>;
12
+ constructor(componentService: ComponentService);
13
+ ngOnInit(): void;
14
+ get baseInputClass(): string;
15
+ selectionChange(event: Event): void;
16
+ panelHide(event: Event): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectComponent, "kv-multi-select", never, { "options": "options"; "optionLabel": "optionLabel"; "optionValue": "optionValue"; "filter": "filter"; "showClear": "showClear"; }, { "onSelectionChange": "onSelectionChange"; "onPanelHide": "onPanelHide"; }, never, ["*"], false, never>;
19
+ }
@@ -0,0 +1,10 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { BaseComponentInput, ComponentService } from '../../api';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SwitchComponent extends BaseComponentInput<boolean> implements OnInit {
5
+ onSwitchChange: EventEmitter<any>;
6
+ constructor(componentService: ComponentService);
7
+ emitOnSwitchChange(event: any): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<SwitchComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<SwitchComponent, "kv-switch", never, {}, { "onSwitchChange": "onSwitchChange"; }, never, never, false, never>;
10
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./inputs/kvinputs.module";
3
+ import * as i2 from "./buttons/kvbutton.module";
4
+ export declare class KeevoComponentsModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<KeevoComponentsModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<KeevoComponentsModule, never, [typeof i1.KvInputsModule, typeof i2.KvButtonsModule], [typeof i1.KvInputsModule, typeof i2.KvButtonsModule]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<KeevoComponentsModule>;
8
+ }
package/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "keevo-components",
3
+ "version": "0.0.1",
4
+ "peerDependencies": {
5
+ "@angular/common": "^15.2.0",
6
+ "@angular/core": "^15.2.0"
7
+ },
8
+ "dependencies": {
9
+ "tslib": "^2.3.0"
10
+ },
11
+ "sideEffects": false,
12
+ "description": "Componentes utilizados no frontend dos sistemas da Keevo Software.",
13
+ "author": {
14
+ "name": "Rafael",
15
+ "url": "https://github.com/rafaelalvesmds"
16
+ },
17
+ "keywords": [
18
+ "keevo components library"
19
+ ],
20
+ "module": "fesm2015/keevo-components.mjs",
21
+ "es2020": "fesm2020/keevo-components.mjs",
22
+ "esm2020": "esm2020/keevo-components.mjs",
23
+ "fesm2020": "fesm2020/keevo-components.mjs",
24
+ "fesm2015": "fesm2015/keevo-components.mjs",
25
+ "typings": "index.d.ts",
26
+ "exports": {
27
+ "./package.json": {
28
+ "default": "./package.json"
29
+ },
30
+ ".": {
31
+ "types": "./index.d.ts",
32
+ "esm2020": "./esm2020/keevo-components.mjs",
33
+ "es2020": "./fesm2020/keevo-components.mjs",
34
+ "es2015": "./fesm2015/keevo-components.mjs",
35
+ "node": "./fesm2015/keevo-components.mjs",
36
+ "default": "./fesm2020/keevo-components.mjs"
37
+ },
38
+ "./src/lib/api": {
39
+ "types": "./src/lib/api/index.d.ts",
40
+ "esm2020": "./esm2020/src/lib/api/keevo-components-src-lib-api.mjs",
41
+ "es2020": "./fesm2020/keevo-components-src-lib-api.mjs",
42
+ "es2015": "./fesm2015/keevo-components-src-lib-api.mjs",
43
+ "node": "./fesm2015/keevo-components-src-lib-api.mjs",
44
+ "default": "./fesm2020/keevo-components-src-lib-api.mjs"
45
+ }
46
+ }
47
+ }
@@ -0,0 +1,21 @@
1
+ export * from './lib/inputs/check/check.component';
2
+ export * from './lib/inputs/dropdown/dropdown.component';
3
+ export * from './lib/inputs/input-calendar/input-calendar.component';
4
+ export * from './lib/inputs/input-mask/input-mask.component';
5
+ export * from './lib/inputs/input-number/input-number.component';
6
+ export * from './lib/inputs/input-password/input-password.component';
7
+ export * from './lib/inputs/input-text/input-text.component';
8
+ export * from './lib/inputs/input-textarea/input-textarea.component';
9
+ export * from './lib/inputs/input-time/input-time.component';
10
+ export * from './lib/inputs/multi-select/multi-select.component';
11
+ export * from './lib/inputs/switch/switch.component';
12
+ export * from './lib/buttons/button-secondary/button-secondary.component';
13
+ export * from './lib/buttons/button-success/button-success.component';
14
+ export * from './lib/api/components/error/error.component';
15
+ export * from './lib/api/services/component.service';
16
+ export * from './lib/api/services/object.service';
17
+ export * from './lib/api/components/error/kverror.module';
18
+ export * from './lib/keevo-components.module';
19
+ export * from './lib/buttons/kvbutton.module';
20
+ export * from './lib/inputs/kvinputs.module';
21
+ export * from './lib/api/components/error/kverror.module';
@@ -0,0 +1,13 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class BaseComponentButton {
4
+ icon: string;
5
+ label: string;
6
+ loading: boolean;
7
+ disabled: boolean;
8
+ onClick: EventEmitter<any>;
9
+ constructor();
10
+ click(event: any): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<BaseComponentButton, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<BaseComponentButton, "ng-component", never, { "icon": "icon"; "label": "label"; "loading": "loading"; "disabled": "disabled"; }, { "onClick": "onClick"; }, never, never, false, never>;
13
+ }
@@ -0,0 +1,31 @@
1
+ import { EventEmitter, OnInit, Type } from '@angular/core';
2
+ import { DialogService } from 'primeng/dynamicdialog';
3
+ import { BaseComponentInput } from './base-component-input';
4
+ import { ComponentService } from '../services/component.service';
5
+ import * as i0 from "@angular/core";
6
+ export declare abstract class BaseComponentDropDown extends BaseComponentInput<any> implements OnInit {
7
+ private dialogService;
8
+ options: any[];
9
+ filteredOptions: any[];
10
+ optionLabel: string;
11
+ optionValue: string;
12
+ addButton: boolean;
13
+ filter: boolean;
14
+ showClear: boolean;
15
+ onAddClick: EventEmitter<any>;
16
+ onSelectionChange: EventEmitter<any>;
17
+ onSelectionValue: EventEmitter<any>;
18
+ onClick: EventEmitter<any>;
19
+ constructor(componentService: ComponentService, dialogService: DialogService);
20
+ ngOnInit(): void;
21
+ protected addClick(event: Event): void;
22
+ private carregarCombo;
23
+ filterOptions(field: string, value: any): void;
24
+ protected listar(): any;
25
+ onInputClick(event: any): void;
26
+ protected openDialog(componentType: Type<any>, width?: string, height?: string): void;
27
+ protected selectionValue(event: any): void;
28
+ protected setPlaceHolder(p: string): void;
29
+ static ɵfac: i0.ɵɵFactoryDeclaration<BaseComponentDropDown, never>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<BaseComponentDropDown, "ng-component", never, { "options": "options"; "filteredOptions": "filteredOptions"; "optionLabel": "optionLabel"; "optionValue": "optionValue"; "addButton": "addButton"; "filter": "filter"; "showClear": "showClear"; }, { "onAddClick": "onAddClick"; "onSelectionChange": "onSelectionChange"; "onSelectionValue": "onSelectionValue"; "onClick": "onClick"; }, never, never, false, never>;
31
+ }
@@ -0,0 +1,26 @@
1
+ import { AfterContentInit, AfterViewInit, EventEmitter, OnInit, QueryList } from "@angular/core";
2
+ import { FormControl } from '@angular/forms';
3
+ import { BaseComponent } from './base-component';
4
+ import { ComponentService } from '../services/component.service';
5
+ import { ErrorComponent } from '../components/error/error.component';
6
+ import * as i0 from "@angular/core";
7
+ export declare abstract class BaseComponentInput<T> extends BaseComponent<T> implements OnInit, AfterContentInit, AfterViewInit {
8
+ protected readonly componentService: ComponentService;
9
+ protected formControl: FormControl | undefined;
10
+ protected hasError: boolean | undefined;
11
+ placeholder: string;
12
+ onBlur: EventEmitter<any>;
13
+ viewErrors: QueryList<ErrorComponent>;
14
+ contentErrors: QueryList<ErrorComponent>;
15
+ constructor(componentService: ComponentService);
16
+ get baseInputClass(): string;
17
+ erroMessage(): string | undefined;
18
+ getName(control: FormControl): string | null;
19
+ hasControlError(): boolean;
20
+ ngAfterViewInit(): void;
21
+ ngAfterContentInit(): void;
22
+ ngOnInit(): void;
23
+ onInputBlur(event: Event): void;
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<BaseComponentInput<any>, never>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<BaseComponentInput<any>, "ng-component", never, { "placeholder": "placeholder"; }, { "onBlur": "onBlur"; }, ["contentErrors"], never, false, never>;
26
+ }
@@ -0,0 +1,21 @@
1
+ import { ControlValueAccessor } from "@angular/forms";
2
+ import { Subject } from "rxjs";
3
+ import * as i0 from "@angular/core";
4
+ export declare abstract class BaseComponent<T> implements ControlValueAccessor {
5
+ protected stateChanges: Subject<void>;
6
+ protected onChange: (value: T) => void;
7
+ protected onTouched: () => void;
8
+ protected _value: T;
9
+ isRequired: boolean;
10
+ set value(value: T);
11
+ get value(): T;
12
+ componentId: string;
13
+ label: string;
14
+ disabled: boolean;
15
+ registerOnChange(fn: any): void;
16
+ registerOnTouched(fn: any): void;
17
+ setDisabledState?(isDisabled: boolean): void;
18
+ writeValue(value: T): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<BaseComponent<any>, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<BaseComponent<any>, "ng-component", never, { "isRequired": "required"; "componentId": "componentId"; "label": "label"; "disabled": "disabled"; }, {}, never, never, false, never>;
21
+ }
@@ -0,0 +1,12 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { FormControl } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ErrorComponent {
5
+ hasError: boolean | undefined;
6
+ formControl: FormControl;
7
+ set setHasError(value: boolean | undefined);
8
+ emitError: EventEmitter<boolean>;
9
+ constructor();
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<ErrorComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<ErrorComponent, "kv-error", never, { "formControl": "formControl"; "setHasError": "hasError"; }, {}, never, ["*"], false, never>;
12
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./error.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/forms";
5
+ import * as i4 from "../../modules/primeng.module";
6
+ export declare class kvErrorModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<kvErrorModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<kvErrorModule, [typeof i1.ErrorComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.PrimeNgModule, typeof i3.ReactiveFormsModule], [typeof i1.ErrorComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<kvErrorModule>;
10
+ }
@@ -0,0 +1,2 @@
1
+ import { Provider } from "@angular/core";
2
+ export declare function ComponentProviders(ref: any): Provider[];
@@ -0,0 +1,4 @@
1
+ import { PrimeNGConfig } from 'primeng/api';
2
+ export declare class TranslatePrimeng {
3
+ config(config: PrimeNGConfig): void;
4
+ }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="keevo-components/src/lib/api" />
5
+ export * from './public-api';
@@ -0,0 +1,45 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "primeng/accordion";
3
+ import * as i2 from "primeng/autofocus";
4
+ import * as i3 from "primeng/badge";
5
+ import * as i4 from "primeng/button";
6
+ import * as i5 from "primeng/calendar";
7
+ import * as i6 from "primeng/card";
8
+ import * as i7 from "primeng/carousel";
9
+ import * as i8 from "primeng/checkbox";
10
+ import * as i9 from "primeng/confirmdialog";
11
+ import * as i10 from "primeng/contextmenu";
12
+ import * as i11 from "primeng/dialog";
13
+ import * as i12 from "primeng/divider";
14
+ import * as i13 from "primeng/dropdown";
15
+ import * as i14 from "primeng/dynamicdialog";
16
+ import * as i15 from "primeng/inputmask";
17
+ import * as i16 from "primeng/inputnumber";
18
+ import * as i17 from "primeng/inputswitch";
19
+ import * as i18 from "primeng/inputtext";
20
+ import * as i19 from "primeng/inputtextarea";
21
+ import * as i20 from "primeng/menu";
22
+ import * as i21 from "primeng/message";
23
+ import * as i22 from "primeng/messages";
24
+ import * as i23 from "primeng/multiselect";
25
+ import * as i24 from "primeng/overlaypanel";
26
+ import * as i25 from "primeng/panel";
27
+ import * as i26 from "primeng/password";
28
+ import * as i27 from "primeng/picklist";
29
+ import * as i28 from "primeng/radiobutton";
30
+ import * as i29 from "primeng/rating";
31
+ import * as i30 from "primeng/ripple";
32
+ import * as i31 from "primeng/sidebar";
33
+ import * as i32 from "primeng/skeleton";
34
+ import * as i33 from "primeng/speeddial";
35
+ import * as i34 from "primeng/splitbutton";
36
+ import * as i35 from "primeng/steps";
37
+ import * as i36 from "primeng/table";
38
+ import * as i37 from "primeng/toast";
39
+ import * as i38 from "primeng/toolbar";
40
+ import * as i39 from "primeng/tooltip";
41
+ export declare class PrimeNgModule {
42
+ static ɵfac: i0.ɵɵFactoryDeclaration<PrimeNgModule, never>;
43
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PrimeNgModule, never, never, [typeof i1.AccordionModule, typeof i2.AutoFocusModule, typeof i3.BadgeModule, typeof i4.ButtonModule, typeof i5.CalendarModule, typeof i6.CardModule, typeof i7.CarouselModule, typeof i8.CheckboxModule, typeof i9.ConfirmDialogModule, typeof i10.ContextMenuModule, typeof i11.DialogModule, typeof i12.DividerModule, typeof i13.DropdownModule, typeof i14.DynamicDialogModule, typeof i15.InputMaskModule, typeof i16.InputNumberModule, typeof i17.InputSwitchModule, typeof i18.InputTextModule, typeof i19.InputTextareaModule, typeof i20.MenuModule, typeof i21.MessageModule, typeof i22.MessagesModule, typeof i23.MultiSelectModule, typeof i24.OverlayPanelModule, typeof i24.OverlayPanelModule, typeof i25.PanelModule, typeof i26.PasswordModule, typeof i27.PickListModule, typeof i28.RadioButtonModule, typeof i29.RatingModule, typeof i30.RippleModule, typeof i31.SidebarModule, typeof i32.SkeletonModule, typeof i33.SpeedDialModule, typeof i34.SplitButtonModule, typeof i35.StepsModule, typeof i36.TableModule, typeof i37.ToastModule, typeof i38.ToolbarModule, typeof i39.TooltipModule]>;
44
+ static ɵinj: i0.ɵɵInjectorDeclaration<PrimeNgModule>;
45
+ }
@@ -0,0 +1,11 @@
1
+ export * from './base-components/base-component';
2
+ export * from './base-components/base-component-button';
3
+ export * from './base-components/base-component-dropdown';
4
+ export * from './base-components/base-component-input';
5
+ export * from './helpers/component-providers';
6
+ export * from './helpers/translate-primeng';
7
+ export * from './modules/primeng.module';
8
+ export * from './services/component.service';
9
+ export * from './services/object.service';
10
+ export * from './components/error/error.component';
11
+ export * from './components/error/kverror.module';
@@ -0,0 +1,11 @@
1
+ import { ChangeDetectorRef, Injector } from '@angular/core';
2
+ import { FormControl } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ComponentService {
5
+ readonly injector: Injector;
6
+ changeDetectorRef: ChangeDetectorRef;
7
+ constructor(injector: Injector, changeDetectorRef: ChangeDetectorRef);
8
+ getFormControl(): FormControl<any> | undefined;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<ComponentService, never>;
10
+ static ɵprov: i0.ɵɵInjectableDeclaration<ComponentService>;
11
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ObjectService {
3
+ static filterObject(array: any, propertyName: string, value: any): any;
4
+ static findObject(array: any, propertyName: string, value: any): any;
5
+ static getProperty<T>(obj: T, propertyName: string): T[keyof T];
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<ObjectService, never>;
7
+ static ɵprov: i0.ɵɵInjectableDeclaration<ObjectService>;
8
+ }