primekit 0.0.12 → 0.0.14
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/lib/lib/atomix-calendar/atomix-calendar.component.mjs +90 -0
- package/esm2022/lib/lib/atomix-card/atomix-card.component.mjs +24 -0
- package/esm2022/lib/lib/atomix-confirmation-dialog/atomix-confirmation-dialog.component.mjs +36 -0
- package/esm2022/lib/lib/atomix-dropdown/atomix-dropdown.component.mjs +105 -0
- package/esm2022/lib/lib/atomix-input/atomix-input.component.mjs +67 -0
- package/esm2022/lib/primekit.module.mjs +41 -19
- package/esm2022/public-api.mjs +6 -4
- package/fesm2022/primekit.mjs +240 -31
- package/fesm2022/primekit.mjs.map +1 -1
- package/lib/lib/atomix-calendar/atomix-calendar.component.d.ts +27 -0
- package/lib/lib/atomix-card/atomix-card.component.d.ts +9 -0
- package/lib/lib/atomix-confirmation-dialog/atomix-confirmation-dialog.component.d.ts +15 -0
- package/lib/lib/atomix-dropdown/atomix-dropdown.component.d.ts +50 -0
- package/lib/lib/atomix-input/atomix-input.component.d.ts +23 -0
- package/lib/primekit.module.d.ts +14 -9
- package/package.json +1 -1
- package/public-api.d.ts +5 -3
- package/esm2022/lib/lib/p-card/p-card.component.mjs +0 -24
- package/esm2022/lib/lib/p-confirmation-dialog/p-confirmation-dialog.component.mjs +0 -36
- package/esm2022/lib/lib/p-input/p-input.component.mjs +0 -67
- package/lib/lib/p-card/p-card.component.d.ts +0 -9
- package/lib/lib/p-confirmation-dialog/p-confirmation-dialog.component.d.ts +0 -15
- package/lib/lib/p-input/p-input.component.d.ts +0 -23
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { EventEmitter, NgZone, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { DropdownFilterEvent } from 'primeng/dropdown';
|
|
3
|
+
import { Subject, Subscription } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AtomixDropdownComponent {
|
|
6
|
+
private cdr;
|
|
7
|
+
private ngZone;
|
|
8
|
+
options: any[];
|
|
9
|
+
selectedValues: any;
|
|
10
|
+
optionValue: string;
|
|
11
|
+
placeholder: string;
|
|
12
|
+
optionLabel: string;
|
|
13
|
+
filter: boolean;
|
|
14
|
+
name: string;
|
|
15
|
+
dropDownStyleClass: string;
|
|
16
|
+
withIcon: boolean;
|
|
17
|
+
disabled: boolean;
|
|
18
|
+
showClear: boolean;
|
|
19
|
+
iconName: string;
|
|
20
|
+
containerClass: string;
|
|
21
|
+
label: string;
|
|
22
|
+
isLabelRequired: boolean;
|
|
23
|
+
handleDropdownValueChange: EventEmitter<any>;
|
|
24
|
+
handleOnFilter: EventEmitter<DropdownFilterEvent>;
|
|
25
|
+
/**
|
|
26
|
+
* The input from the user used to search list
|
|
27
|
+
*/
|
|
28
|
+
filerValue: Subject<DropdownFilterEvent>;
|
|
29
|
+
/**
|
|
30
|
+
* The time in ms that it takes to register when user is done typing
|
|
31
|
+
*/
|
|
32
|
+
debounceTime: number;
|
|
33
|
+
/**
|
|
34
|
+
* The trigger that uses the debounce time to create delay of when user types to actual filtering
|
|
35
|
+
*/
|
|
36
|
+
trigger: import("rxjs").Observable<DropdownFilterEvent>;
|
|
37
|
+
/**
|
|
38
|
+
* Subscription to trigger
|
|
39
|
+
*/
|
|
40
|
+
subscription: Subscription;
|
|
41
|
+
constructor(cdr: ChangeDetectorRef, ngZone: NgZone);
|
|
42
|
+
onChange(event: any): void;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @param event
|
|
46
|
+
*/
|
|
47
|
+
onFilter(event: DropdownFilterEvent): void;
|
|
48
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AtomixDropdownComponent, never>;
|
|
49
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AtomixDropdownComponent, "atomix-dropdown", never, { "options": { "alias": "options"; "required": false; }; "selectedValues": { "alias": "selectedValues"; "required": false; }; "optionValue": { "alias": "optionValue"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "optionLabel": { "alias": "optionLabel"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "name": { "alias": "name"; "required": false; }; "dropDownStyleClass": { "alias": "dropDownStyleClass"; "required": false; }; "withIcon": { "alias": "withIcon"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "showClear": { "alias": "showClear"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "containerClass": { "alias": "containerClass"; "required": false; }; "label": { "alias": "label"; "required": false; }; "isLabelRequired": { "alias": "isLabelRequired"; "required": false; }; }, { "handleDropdownValueChange": "handleDropdownValueChange"; "handleOnFilter": "handleOnFilter"; }, never, never, false, never>;
|
|
50
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AtomixInputComponent {
|
|
4
|
+
value: string;
|
|
5
|
+
name: string;
|
|
6
|
+
type: string;
|
|
7
|
+
placeholder: string;
|
|
8
|
+
valueChange: EventEmitter<string>;
|
|
9
|
+
withIcon: boolean;
|
|
10
|
+
iconName: string;
|
|
11
|
+
containerClass: string;
|
|
12
|
+
class: string;
|
|
13
|
+
disabled: boolean;
|
|
14
|
+
isCrossRequired: boolean;
|
|
15
|
+
label: string;
|
|
16
|
+
isLabelRequired: boolean;
|
|
17
|
+
changeValueHandler: EventEmitter<string>;
|
|
18
|
+
onInput(event: Event): void;
|
|
19
|
+
onEnter(): void;
|
|
20
|
+
clearValue(): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AtomixInputComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AtomixInputComponent, "atomix-input", never, { "value": { "alias": "value"; "required": false; }; "name": { "alias": "name"; "required": false; }; "type": { "alias": "type"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "withIcon": { "alias": "withIcon"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "containerClass": { "alias": "containerClass"; "required": false; }; "class": { "alias": "class"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "isCrossRequired": { "alias": "isCrossRequired"; "required": false; }; "label": { "alias": "label"; "required": false; }; "isLabelRequired": { "alias": "isLabelRequired"; "required": false; }; }, { "valueChange": "valueChange"; "changeValueHandler": "changeValueHandler"; }, never, never, false, never>;
|
|
23
|
+
}
|
package/lib/primekit.module.d.ts
CHANGED
|
@@ -1,15 +1,20 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./lib/atomix-button/atomix-button.component";
|
|
3
|
-
import * as i2 from "./lib/
|
|
4
|
-
import * as i3 from "./lib/
|
|
5
|
-
import * as i4 from "./lib/
|
|
6
|
-
import * as i5 from "
|
|
7
|
-
import * as i6 from "
|
|
8
|
-
import * as i7 from "
|
|
9
|
-
import * as i8 from "primeng/
|
|
10
|
-
import * as i9 from "primeng/
|
|
3
|
+
import * as i2 from "./lib/atomix-card/atomix-card.component";
|
|
4
|
+
import * as i3 from "./lib/atomix-confirmation-dialog/atomix-confirmation-dialog.component";
|
|
5
|
+
import * as i4 from "./lib/atomix-input/atomix-input.component";
|
|
6
|
+
import * as i5 from "./lib/atomix-calendar/atomix-calendar.component";
|
|
7
|
+
import * as i6 from "./lib/atomix-dropdown/atomix-dropdown.component";
|
|
8
|
+
import * as i7 from "@angular/common";
|
|
9
|
+
import * as i8 from "primeng/button";
|
|
10
|
+
import * as i9 from "primeng/card";
|
|
11
|
+
import * as i10 from "primeng/dialog";
|
|
12
|
+
import * as i11 from "primeng/inputtext";
|
|
13
|
+
import * as i12 from "primeng/calendar";
|
|
14
|
+
import * as i13 from "primeng/dropdown";
|
|
15
|
+
import * as i14 from "@angular/forms";
|
|
11
16
|
export declare class PrimekitModule {
|
|
12
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<PrimekitModule, never>;
|
|
13
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PrimekitModule, [typeof i1.AtomixButtonComponent, typeof i2.
|
|
18
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PrimekitModule, [typeof i1.AtomixButtonComponent, typeof i2.AtomixCardComponent, typeof i3.AtomixConfirmationDialogComponent, typeof i4.AtomixInputComponent, typeof i5.AtomixCalendarComponent, typeof i6.AtomixDropdownComponent], [typeof i7.CommonModule, typeof i8.ButtonModule, typeof i9.CardModule, typeof i10.DialogModule, typeof i11.InputTextModule, typeof i12.CalendarModule, typeof i13.DropdownModule, typeof i14.FormsModule], [typeof i1.AtomixButtonComponent, typeof i2.AtomixCardComponent, typeof i3.AtomixConfirmationDialogComponent, typeof i4.AtomixInputComponent, typeof i5.AtomixCalendarComponent, typeof i6.AtomixDropdownComponent]>;
|
|
14
19
|
static ɵinj: i0.ɵɵInjectorDeclaration<PrimekitModule>;
|
|
15
20
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -2,6 +2,8 @@ export * from './lib/primekit.service';
|
|
|
2
2
|
export * from './lib/primekit.component';
|
|
3
3
|
export * from './lib/primekit.module';
|
|
4
4
|
export * from './lib/lib/atomix-button/atomix-button.component';
|
|
5
|
-
export * from './lib/lib/
|
|
6
|
-
export * from './lib/lib/
|
|
7
|
-
export * from './lib/lib/
|
|
5
|
+
export * from './lib/lib/atomix-card/atomix-card.component';
|
|
6
|
+
export * from './lib/lib/atomix-confirmation-dialog/atomix-confirmation-dialog.component';
|
|
7
|
+
export * from './lib/lib/atomix-input/atomix-input.component';
|
|
8
|
+
export * from './lib/lib/atomix-calendar/atomix-calendar.component';
|
|
9
|
+
export * from './lib/lib/atomix-dropdown/atomix-dropdown.component';
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { Component, Input } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "primeng/card";
|
|
4
|
-
export class PCardComponent {
|
|
5
|
-
header;
|
|
6
|
-
footer;
|
|
7
|
-
content;
|
|
8
|
-
class;
|
|
9
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
10
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PCardComponent, selector: "lib-p-card", inputs: { header: "header", footer: "footer", content: "content", class: "class" }, ngImport: i0, template: "<p-card [class]=\"class\">\n <ng-content></ng-content>\n</p-card>\n", styles: ["::ng-deep .p-card{box-shadow:0 2px 4px #0000001a;border-radius:12px}\n"], dependencies: [{ kind: "component", type: i1.Card, selector: "p-card", inputs: ["header", "subheader", "style", "styleClass"] }] });
|
|
11
|
-
}
|
|
12
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PCardComponent, decorators: [{
|
|
13
|
-
type: Component,
|
|
14
|
-
args: [{ selector: 'lib-p-card', template: "<p-card [class]=\"class\">\n <ng-content></ng-content>\n</p-card>\n", styles: ["::ng-deep .p-card{box-shadow:0 2px 4px #0000001a;border-radius:12px}\n"] }]
|
|
15
|
-
}], propDecorators: { header: [{
|
|
16
|
-
type: Input
|
|
17
|
-
}], footer: [{
|
|
18
|
-
type: Input
|
|
19
|
-
}], content: [{
|
|
20
|
-
type: Input
|
|
21
|
-
}], class: [{
|
|
22
|
-
type: Input
|
|
23
|
-
}] } });
|
|
24
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicC1jYXJkLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3ByaW1la2l0L3NyYy9saWIvbGliL3AtY2FyZC9wLWNhcmQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvcHJpbWVraXQvc3JjL2xpYi9saWIvcC1jYXJkL3AtY2FyZC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQzs7O0FBT2pELE1BQU0sT0FBTyxjQUFjO0lBQ2hCLE1BQU0sQ0FBcUI7SUFDM0IsTUFBTSxDQUFxQjtJQUMzQixPQUFPLENBQXFCO0lBQzVCLEtBQUssQ0FBcUI7d0dBSnhCLGNBQWM7NEZBQWQsY0FBYyxzSUNQM0Isc0VBR0E7OzRGRElhLGNBQWM7a0JBTDFCLFNBQVM7K0JBQ0UsWUFBWTs4QkFLYixNQUFNO3NCQUFkLEtBQUs7Z0JBQ0csTUFBTTtzQkFBZCxLQUFLO2dCQUNHLE9BQU87c0JBQWYsS0FBSztnQkFDRyxLQUFLO3NCQUFiLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2xpYi1wLWNhcmQnLFxuICB0ZW1wbGF0ZVVybDogJy4vcC1jYXJkLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vcC1jYXJkLmNvbXBvbmVudC5jc3MnXSxcbn0pXG5leHBvcnQgY2xhc3MgUENhcmRDb21wb25lbnQge1xuICBASW5wdXQoKSBoZWFkZXI6IHN0cmluZyB8IHVuZGVmaW5lZDtcbiAgQElucHV0KCkgZm9vdGVyOiBzdHJpbmcgfCB1bmRlZmluZWQ7XG4gIEBJbnB1dCgpIGNvbnRlbnQ6IHN0cmluZyB8IHVuZGVmaW5lZDtcbiAgQElucHV0KCkgY2xhc3M6IHN0cmluZyB8IHVuZGVmaW5lZDtcbn1cbiIsIjxwLWNhcmQgW2NsYXNzXT1cImNsYXNzXCI+XG4gIDxuZy1jb250ZW50PjwvbmctY29udGVudD5cbjwvcC1jYXJkPlxuIl19
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "primeng/button";
|
|
4
|
-
import * as i2 from "primeng/dialog";
|
|
5
|
-
export class PConfirmationDialogComponent {
|
|
6
|
-
header = '';
|
|
7
|
-
message = '';
|
|
8
|
-
dialogVisible = false;
|
|
9
|
-
constructor() { }
|
|
10
|
-
onConfirm = new EventEmitter();
|
|
11
|
-
onYesClick() {
|
|
12
|
-
this.onConfirm.emit({
|
|
13
|
-
confirmation: true,
|
|
14
|
-
});
|
|
15
|
-
}
|
|
16
|
-
onNoClick() {
|
|
17
|
-
this.onConfirm.emit({
|
|
18
|
-
confirmation: false,
|
|
19
|
-
});
|
|
20
|
-
}
|
|
21
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PConfirmationDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
22
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PConfirmationDialogComponent, selector: "lib-p-confirmation-dialog", inputs: { header: "header", message: "message", dialogVisible: "dialogVisible" }, outputs: { onConfirm: "onConfirm" }, ngImport: i0, template: "<p-dialog\n [(visible)]=\"dialogVisible\"\n [header]=\"header\"\n [modal]=\"true\"\n [closable]=\"true\"\n styleClass=\"dialog-width\"\n [style]=\"{\n width: 'fit-content',\n height: 'fit-content',\n maxWidth: '25rem',\n }\"\n [maximizable]=\"true\"\n [baseZIndex]=\"9999999999\"\n>\n <p class=\"global-sub-heading\">\n {{ message }}\n </p>\n\n <div class=\"action-button-container\">\n <button\n pButton\n class=\"p-button-outlined\"\n (click)=\"onNoClick()\"\n style=\"margin-top: 0px\"\n >\n No\n </button>\n <button pButton class=\"p-button-primary\" (click)=\"onYesClick()\">Yes</button>\n </div>\n</p-dialog>\n", styles: [".action-button-container{margin-top:1.5rem;display:flex;justify-content:flex-end;gap:.5rem}\n"], dependencies: [{ kind: "directive", type: i1.ButtonDirective, selector: "[pButton]", inputs: ["iconPos", "loadingIcon", "label", "icon", "loading", "severity", "raised", "rounded", "text", "outlined", "size", "plain"] }, { kind: "component", type: i2.Dialog, selector: "p-dialog", inputs: ["header", "draggable", "resizable", "positionLeft", "positionTop", "contentStyle", "contentStyleClass", "modal", "closeOnEscape", "dismissableMask", "rtl", "closable", "responsive", "appendTo", "breakpoints", "styleClass", "maskStyleClass", "maskStyle", "showHeader", "breakpoint", "blockScroll", "autoZIndex", "baseZIndex", "minX", "minY", "focusOnShow", "maximizable", "keepInViewport", "focusTrap", "transitionOptions", "closeIcon", "closeAriaLabel", "closeTabindex", "minimizeIcon", "maximizeIcon", "visible", "style", "position"], outputs: ["onShow", "onHide", "visibleChange", "onResizeInit", "onResizeEnd", "onDragEnd", "onMaximize"] }] });
|
|
23
|
-
}
|
|
24
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PConfirmationDialogComponent, decorators: [{
|
|
25
|
-
type: Component,
|
|
26
|
-
args: [{ selector: 'lib-p-confirmation-dialog', template: "<p-dialog\n [(visible)]=\"dialogVisible\"\n [header]=\"header\"\n [modal]=\"true\"\n [closable]=\"true\"\n styleClass=\"dialog-width\"\n [style]=\"{\n width: 'fit-content',\n height: 'fit-content',\n maxWidth: '25rem',\n }\"\n [maximizable]=\"true\"\n [baseZIndex]=\"9999999999\"\n>\n <p class=\"global-sub-heading\">\n {{ message }}\n </p>\n\n <div class=\"action-button-container\">\n <button\n pButton\n class=\"p-button-outlined\"\n (click)=\"onNoClick()\"\n style=\"margin-top: 0px\"\n >\n No\n </button>\n <button pButton class=\"p-button-primary\" (click)=\"onYesClick()\">Yes</button>\n </div>\n</p-dialog>\n", styles: [".action-button-container{margin-top:1.5rem;display:flex;justify-content:flex-end;gap:.5rem}\n"] }]
|
|
27
|
-
}], ctorParameters: () => [], propDecorators: { header: [{
|
|
28
|
-
type: Input
|
|
29
|
-
}], message: [{
|
|
30
|
-
type: Input
|
|
31
|
-
}], dialogVisible: [{
|
|
32
|
-
type: Input
|
|
33
|
-
}], onConfirm: [{
|
|
34
|
-
type: Output
|
|
35
|
-
}] } });
|
|
36
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicC1jb25maXJtYXRpb24tZGlhbG9nLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3ByaW1la2l0L3NyYy9saWIvbGliL3AtY29uZmlybWF0aW9uLWRpYWxvZy9wLWNvbmZpcm1hdGlvbi1kaWFsb2cuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvcHJpbWVraXQvc3JjL2xpYi9saWIvcC1jb25maXJtYXRpb24tZGlhbG9nL3AtY29uZmlybWF0aW9uLWRpYWxvZy5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFlBQVksRUFBRSxLQUFLLEVBQUUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7O0FBT3ZFLE1BQU0sT0FBTyw0QkFBNEI7SUFDOUIsTUFBTSxHQUFXLEVBQUUsQ0FBQztJQUNwQixPQUFPLEdBQVcsRUFBRSxDQUFDO0lBQ3JCLGFBQWEsR0FBWSxLQUFLLENBQUM7SUFDeEMsZ0JBQWUsQ0FBQztJQUNOLFNBQVMsR0FBRyxJQUFJLFlBQVksRUFBNkIsQ0FBQztJQUNwRSxVQUFVO1FBQ1IsSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUM7WUFDbEIsWUFBWSxFQUFFLElBQUk7U0FDbkIsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUVELFNBQVM7UUFDUCxJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQztZQUNsQixZQUFZLEVBQUUsS0FBSztTQUNwQixDQUFDLENBQUM7SUFDTCxDQUFDO3dHQWhCVSw0QkFBNEI7NEZBQTVCLDRCQUE0Qix3TENQekMsd3FCQThCQTs7NEZEdkJhLDRCQUE0QjtrQkFMeEMsU0FBUzsrQkFDRSwyQkFBMkI7d0RBSzVCLE1BQU07c0JBQWQsS0FBSztnQkFDRyxPQUFPO3NCQUFmLEtBQUs7Z0JBQ0csYUFBYTtzQkFBckIsS0FBSztnQkFFSSxTQUFTO3NCQUFsQixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBFdmVudEVtaXR0ZXIsIElucHV0LCBPdXRwdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnbGliLXAtY29uZmlybWF0aW9uLWRpYWxvZycsXG4gIHRlbXBsYXRlVXJsOiAnLi9wLWNvbmZpcm1hdGlvbi1kaWFsb2cuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9wLWNvbmZpcm1hdGlvbi1kaWFsb2cuY29tcG9uZW50LmNzcyddLFxufSlcbmV4cG9ydCBjbGFzcyBQQ29uZmlybWF0aW9uRGlhbG9nQ29tcG9uZW50IHtcbiAgQElucHV0KCkgaGVhZGVyOiBzdHJpbmcgPSAnJztcbiAgQElucHV0KCkgbWVzc2FnZTogc3RyaW5nID0gJyc7XG4gIEBJbnB1dCgpIGRpYWxvZ1Zpc2libGU6IGJvb2xlYW4gPSBmYWxzZTtcbiAgY29uc3RydWN0b3IoKSB7fVxuICBAT3V0cHV0KCkgb25Db25maXJtID0gbmV3IEV2ZW50RW1pdHRlcjx7IGNvbmZpcm1hdGlvbjogYm9vbGVhbiB9PigpO1xuICBvblllc0NsaWNrKCk6IHZvaWQge1xuICAgIHRoaXMub25Db25maXJtLmVtaXQoe1xuICAgICAgY29uZmlybWF0aW9uOiB0cnVlLFxuICAgIH0pO1xuICB9XG5cbiAgb25Ob0NsaWNrKCk6IHZvaWQge1xuICAgIHRoaXMub25Db25maXJtLmVtaXQoe1xuICAgICAgY29uZmlybWF0aW9uOiBmYWxzZSxcbiAgICB9KTtcbiAgfVxufVxuIiwiPHAtZGlhbG9nXG4gIFsodmlzaWJsZSldPVwiZGlhbG9nVmlzaWJsZVwiXG4gIFtoZWFkZXJdPVwiaGVhZGVyXCJcbiAgW21vZGFsXT1cInRydWVcIlxuICBbY2xvc2FibGVdPVwidHJ1ZVwiXG4gIHN0eWxlQ2xhc3M9XCJkaWFsb2ctd2lkdGhcIlxuICBbc3R5bGVdPVwie1xuICAgIHdpZHRoOiAnZml0LWNvbnRlbnQnLFxuICAgIGhlaWdodDogJ2ZpdC1jb250ZW50JyxcbiAgICBtYXhXaWR0aDogJzI1cmVtJyxcbiAgfVwiXG4gIFttYXhpbWl6YWJsZV09XCJ0cnVlXCJcbiAgW2Jhc2VaSW5kZXhdPVwiOTk5OTk5OTk5OVwiXG4+XG4gIDxwIGNsYXNzPVwiZ2xvYmFsLXN1Yi1oZWFkaW5nXCI+XG4gICAge3sgbWVzc2FnZSB9fVxuICA8L3A+XG5cbiAgPGRpdiBjbGFzcz1cImFjdGlvbi1idXR0b24tY29udGFpbmVyXCI+XG4gICAgPGJ1dHRvblxuICAgICAgcEJ1dHRvblxuICAgICAgY2xhc3M9XCJwLWJ1dHRvbi1vdXRsaW5lZFwiXG4gICAgICAoY2xpY2spPVwib25Ob0NsaWNrKClcIlxuICAgICAgc3R5bGU9XCJtYXJnaW4tdG9wOiAwcHhcIlxuICAgID5cbiAgICAgIE5vXG4gICAgPC9idXR0b24+XG4gICAgPGJ1dHRvbiBwQnV0dG9uIGNsYXNzPVwicC1idXR0b24tcHJpbWFyeVwiIChjbGljayk9XCJvblllc0NsaWNrKClcIj5ZZXM8L2J1dHRvbj5cbiAgPC9kaXY+XG48L3AtZGlhbG9nPlxuIl19
|
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
import { Component, Input, Output, EventEmitter } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "@angular/common";
|
|
4
|
-
import * as i2 from "primeng/inputtext";
|
|
5
|
-
export class PInputComponent {
|
|
6
|
-
value = '';
|
|
7
|
-
name = '';
|
|
8
|
-
type = 'text';
|
|
9
|
-
placeholder = '';
|
|
10
|
-
valueChange = new EventEmitter();
|
|
11
|
-
withIcon = false;
|
|
12
|
-
iconName = '';
|
|
13
|
-
containerClass = '';
|
|
14
|
-
class = '';
|
|
15
|
-
disabled = false;
|
|
16
|
-
isCrossRequired = true;
|
|
17
|
-
label = '';
|
|
18
|
-
isLabelRequired = false;
|
|
19
|
-
changeValueHandler = new EventEmitter();
|
|
20
|
-
onInput(event) {
|
|
21
|
-
const input = event.target;
|
|
22
|
-
this.value = input.value;
|
|
23
|
-
this.changeValueHandler.emit(this.value);
|
|
24
|
-
}
|
|
25
|
-
onEnter() {
|
|
26
|
-
this.valueChange.emit(this.value);
|
|
27
|
-
}
|
|
28
|
-
clearValue() {
|
|
29
|
-
this.value = '';
|
|
30
|
-
this.onEnter();
|
|
31
|
-
}
|
|
32
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PInputComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
33
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: PInputComponent, selector: "lib-p-input", inputs: { value: "value", name: "name", type: "type", placeholder: "placeholder", withIcon: "withIcon", iconName: "iconName", containerClass: "containerClass", class: "class", disabled: "disabled", isCrossRequired: "isCrossRequired", label: "label", isLabelRequired: "isLabelRequired" }, outputs: { valueChange: "valueChange", changeValueHandler: "changeValueHandler" }, ngImport: i0, template: "<label *ngIf=\"label\" for=\"name\"\n >{{ label }}\n <span *ngIf=\"isLabelRequired\" class=\"lib-error-asterisk\">*</span></label\n>\n\n<input\n[id]=\"name\"\n type=\"text\"\n pInputText\n [value]=\"value\"\n [attr.placeholder]=\"placeholder\"\n (input)=\"onInput($event)\"\n (keydown.enter)=\"onEnter()\"\n [ngClass]=\"class+ ' lib-input-field'\"\n autocomplete=\"new-password\"\n [disabled]=\"disabled\"\n [type]=\"type\"\n/>\n<i\n class=\"pi pi-times filter-dropdown-icon\"\n style=\"cursor: pointer\"\n (click)=\"clearValue()\"\n *ngIf=\"isCrossRequired && value !== ''\"\n></i>\n", styles: [".lib-error-asterisk{color:red}.filter-dropdown-icon{position:absolute;top:50%;padding-left:.8rem;transform:translateY(-50%);z-index:1;pointer-events:none}::ng-deep .lib-input-field{border-radius:30px;margin-top:.5rem}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.InputText, selector: "[pInputText]", inputs: ["variant"] }] });
|
|
34
|
-
}
|
|
35
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PInputComponent, decorators: [{
|
|
36
|
-
type: Component,
|
|
37
|
-
args: [{ selector: 'lib-p-input', template: "<label *ngIf=\"label\" for=\"name\"\n >{{ label }}\n <span *ngIf=\"isLabelRequired\" class=\"lib-error-asterisk\">*</span></label\n>\n\n<input\n[id]=\"name\"\n type=\"text\"\n pInputText\n [value]=\"value\"\n [attr.placeholder]=\"placeholder\"\n (input)=\"onInput($event)\"\n (keydown.enter)=\"onEnter()\"\n [ngClass]=\"class+ ' lib-input-field'\"\n autocomplete=\"new-password\"\n [disabled]=\"disabled\"\n [type]=\"type\"\n/>\n<i\n class=\"pi pi-times filter-dropdown-icon\"\n style=\"cursor: pointer\"\n (click)=\"clearValue()\"\n *ngIf=\"isCrossRequired && value !== ''\"\n></i>\n", styles: [".lib-error-asterisk{color:red}.filter-dropdown-icon{position:absolute;top:50%;padding-left:.8rem;transform:translateY(-50%);z-index:1;pointer-events:none}::ng-deep .lib-input-field{border-radius:30px;margin-top:.5rem}\n"] }]
|
|
38
|
-
}], propDecorators: { value: [{
|
|
39
|
-
type: Input
|
|
40
|
-
}], name: [{
|
|
41
|
-
type: Input
|
|
42
|
-
}], type: [{
|
|
43
|
-
type: Input
|
|
44
|
-
}], placeholder: [{
|
|
45
|
-
type: Input
|
|
46
|
-
}], valueChange: [{
|
|
47
|
-
type: Output
|
|
48
|
-
}], withIcon: [{
|
|
49
|
-
type: Input
|
|
50
|
-
}], iconName: [{
|
|
51
|
-
type: Input
|
|
52
|
-
}], containerClass: [{
|
|
53
|
-
type: Input
|
|
54
|
-
}], class: [{
|
|
55
|
-
type: Input
|
|
56
|
-
}], disabled: [{
|
|
57
|
-
type: Input
|
|
58
|
-
}], isCrossRequired: [{
|
|
59
|
-
type: Input
|
|
60
|
-
}], label: [{
|
|
61
|
-
type: Input
|
|
62
|
-
}], isLabelRequired: [{
|
|
63
|
-
type: Input
|
|
64
|
-
}], changeValueHandler: [{
|
|
65
|
-
type: Output
|
|
66
|
-
}] } });
|
|
67
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicC1pbnB1dC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wcmltZWtpdC9zcmMvbGliL2xpYi9wLWlucHV0L3AtaW5wdXQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvcHJpbWVraXQvc3JjL2xpYi9saWIvcC1pbnB1dC9wLWlucHV0LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sRUFBRSxZQUFZLEVBQUUsTUFBTSxlQUFlLENBQUM7Ozs7QUFPdkUsTUFBTSxPQUFPLGVBQWU7SUFDakIsS0FBSyxHQUFXLEVBQUUsQ0FBQztJQUNuQixJQUFJLEdBQVcsRUFBRSxDQUFDO0lBQ2xCLElBQUksR0FBVyxNQUFNLENBQUM7SUFDdEIsV0FBVyxHQUFXLEVBQUUsQ0FBQztJQUN4QixXQUFXLEdBQUcsSUFBSSxZQUFZLEVBQVUsQ0FBQztJQUMxQyxRQUFRLEdBQVksS0FBSyxDQUFDO0lBQzFCLFFBQVEsR0FBVyxFQUFFLENBQUM7SUFDdEIsY0FBYyxHQUFXLEVBQUUsQ0FBQztJQUM1QixLQUFLLEdBQVcsRUFBRSxDQUFDO0lBQ25CLFFBQVEsR0FBWSxLQUFLLENBQUM7SUFDMUIsZUFBZSxHQUFZLElBQUksQ0FBQztJQUNoQyxLQUFLLEdBQVcsRUFBRSxDQUFDO0lBQ25CLGVBQWUsR0FBWSxLQUFLLENBQUM7SUFFaEMsa0JBQWtCLEdBQUcsSUFBSSxZQUFZLEVBQVUsQ0FBQztJQUUxRCxPQUFPLENBQUMsS0FBWTtRQUNsQixNQUFNLEtBQUssR0FBRyxLQUFLLENBQUMsTUFBMEIsQ0FBQztRQUMvQyxJQUFJLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQyxLQUFLLENBQUM7UUFDekIsSUFBSSxDQUFDLGtCQUFrQixDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDM0MsQ0FBQztJQUNELE9BQU87UUFDTCxJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDcEMsQ0FBQztJQUNELFVBQVU7UUFDUixJQUFJLENBQUMsS0FBSyxHQUFHLEVBQUUsQ0FBQztRQUNoQixJQUFJLENBQUMsT0FBTyxFQUFFLENBQUM7SUFDakIsQ0FBQzt3R0E1QlUsZUFBZTs0RkFBZixlQUFlLHNhQ1A1QiwybEJBd0JBOzs0RkRqQmEsZUFBZTtrQkFMM0IsU0FBUzsrQkFDRSxhQUFhOzhCQUtkLEtBQUs7c0JBQWIsS0FBSztnQkFDRyxJQUFJO3NCQUFaLEtBQUs7Z0JBQ0csSUFBSTtzQkFBWixLQUFLO2dCQUNHLFdBQVc7c0JBQW5CLEtBQUs7Z0JBQ0ksV0FBVztzQkFBcEIsTUFBTTtnQkFDRSxRQUFRO3NCQUFoQixLQUFLO2dCQUNHLFFBQVE7c0JBQWhCLEtBQUs7Z0JBQ0csY0FBYztzQkFBdEIsS0FBSztnQkFDRyxLQUFLO3NCQUFiLEtBQUs7Z0JBQ0csUUFBUTtzQkFBaEIsS0FBSztnQkFDRyxlQUFlO3NCQUF2QixLQUFLO2dCQUNHLEtBQUs7c0JBQWIsS0FBSztnQkFDRyxlQUFlO3NCQUF2QixLQUFLO2dCQUVJLGtCQUFrQjtzQkFBM0IsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQsIE91dHB1dCwgRXZlbnRFbWl0dGVyIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2xpYi1wLWlucHV0JyxcbiAgdGVtcGxhdGVVcmw6ICcuL3AtaW5wdXQuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9wLWlucHV0LmNvbXBvbmVudC5jc3MnXSxcbn0pXG5leHBvcnQgY2xhc3MgUElucHV0Q29tcG9uZW50IHtcbiAgQElucHV0KCkgdmFsdWU6IHN0cmluZyA9ICcnO1xuICBASW5wdXQoKSBuYW1lOiBzdHJpbmcgPSAnJztcbiAgQElucHV0KCkgdHlwZTogc3RyaW5nID0gJ3RleHQnO1xuICBASW5wdXQoKSBwbGFjZWhvbGRlcjogc3RyaW5nID0gJyc7XG4gIEBPdXRwdXQoKSB2YWx1ZUNoYW5nZSA9IG5ldyBFdmVudEVtaXR0ZXI8c3RyaW5nPigpO1xuICBASW5wdXQoKSB3aXRoSWNvbjogYm9vbGVhbiA9IGZhbHNlO1xuICBASW5wdXQoKSBpY29uTmFtZTogc3RyaW5nID0gJyc7XG4gIEBJbnB1dCgpIGNvbnRhaW5lckNsYXNzOiBzdHJpbmcgPSAnJztcbiAgQElucHV0KCkgY2xhc3M6IHN0cmluZyA9ICcnO1xuICBASW5wdXQoKSBkaXNhYmxlZDogYm9vbGVhbiA9IGZhbHNlO1xuICBASW5wdXQoKSBpc0Nyb3NzUmVxdWlyZWQ6IGJvb2xlYW4gPSB0cnVlO1xuICBASW5wdXQoKSBsYWJlbDogc3RyaW5nID0gJyc7XG4gIEBJbnB1dCgpIGlzTGFiZWxSZXF1aXJlZDogYm9vbGVhbiA9IGZhbHNlO1xuXG4gIEBPdXRwdXQoKSBjaGFuZ2VWYWx1ZUhhbmRsZXIgPSBuZXcgRXZlbnRFbWl0dGVyPHN0cmluZz4oKTtcblxuICBvbklucHV0KGV2ZW50OiBFdmVudCk6IHZvaWQge1xuICAgIGNvbnN0IGlucHV0ID0gZXZlbnQudGFyZ2V0IGFzIEhUTUxJbnB1dEVsZW1lbnQ7XG4gICAgdGhpcy52YWx1ZSA9IGlucHV0LnZhbHVlO1xuICAgIHRoaXMuY2hhbmdlVmFsdWVIYW5kbGVyLmVtaXQodGhpcy52YWx1ZSk7XG4gIH1cbiAgb25FbnRlcigpOiB2b2lkIHtcbiAgICB0aGlzLnZhbHVlQ2hhbmdlLmVtaXQodGhpcy52YWx1ZSk7XG4gIH1cbiAgY2xlYXJWYWx1ZSgpOiB2b2lkIHtcbiAgICB0aGlzLnZhbHVlID0gJyc7XG4gICAgdGhpcy5vbkVudGVyKCk7XG4gIH1cbn1cbiIsIjxsYWJlbCAqbmdJZj1cImxhYmVsXCIgZm9yPVwibmFtZVwiXG4gID57eyBsYWJlbCB9fVxuICA8c3BhbiAqbmdJZj1cImlzTGFiZWxSZXF1aXJlZFwiIGNsYXNzPVwibGliLWVycm9yLWFzdGVyaXNrXCI+Kjwvc3Bhbj48L2xhYmVsXG4+XG5cbjxpbnB1dFxuW2lkXT1cIm5hbWVcIlxuICB0eXBlPVwidGV4dFwiXG4gIHBJbnB1dFRleHRcbiAgW3ZhbHVlXT1cInZhbHVlXCJcbiAgW2F0dHIucGxhY2Vob2xkZXJdPVwicGxhY2Vob2xkZXJcIlxuICAoaW5wdXQpPVwib25JbnB1dCgkZXZlbnQpXCJcbiAgKGtleWRvd24uZW50ZXIpPVwib25FbnRlcigpXCJcbiAgW25nQ2xhc3NdPVwiY2xhc3MrICcgIGxpYi1pbnB1dC1maWVsZCdcIlxuICBhdXRvY29tcGxldGU9XCJuZXctcGFzc3dvcmRcIlxuICBbZGlzYWJsZWRdPVwiZGlzYWJsZWRcIlxuICBbdHlwZV09XCJ0eXBlXCJcbi8+XG48aVxuICBjbGFzcz1cInBpIHBpLXRpbWVzIGZpbHRlci1kcm9wZG93bi1pY29uXCJcbiAgc3R5bGU9XCJjdXJzb3I6IHBvaW50ZXJcIlxuICAoY2xpY2spPVwiY2xlYXJWYWx1ZSgpXCJcbiAgKm5nSWY9XCJpc0Nyb3NzUmVxdWlyZWQgJiYgdmFsdWUgIT09ICcnXCJcbj48L2k+XG4iXX0=
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class PCardComponent {
|
|
3
|
-
header: string | undefined;
|
|
4
|
-
footer: string | undefined;
|
|
5
|
-
content: string | undefined;
|
|
6
|
-
class: string | undefined;
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PCardComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PCardComponent, "lib-p-card", never, { "header": { "alias": "header"; "required": false; }; "footer": { "alias": "footer"; "required": false; }; "content": { "alias": "content"; "required": false; }; "class": { "alias": "class"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
9
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class PConfirmationDialogComponent {
|
|
4
|
-
header: string;
|
|
5
|
-
message: string;
|
|
6
|
-
dialogVisible: boolean;
|
|
7
|
-
constructor();
|
|
8
|
-
onConfirm: EventEmitter<{
|
|
9
|
-
confirmation: boolean;
|
|
10
|
-
}>;
|
|
11
|
-
onYesClick(): void;
|
|
12
|
-
onNoClick(): void;
|
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PConfirmationDialogComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PConfirmationDialogComponent, "lib-p-confirmation-dialog", never, { "header": { "alias": "header"; "required": false; }; "message": { "alias": "message"; "required": false; }; "dialogVisible": { "alias": "dialogVisible"; "required": false; }; }, { "onConfirm": "onConfirm"; }, never, never, false, never>;
|
|
15
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class PInputComponent {
|
|
4
|
-
value: string;
|
|
5
|
-
name: string;
|
|
6
|
-
type: string;
|
|
7
|
-
placeholder: string;
|
|
8
|
-
valueChange: EventEmitter<string>;
|
|
9
|
-
withIcon: boolean;
|
|
10
|
-
iconName: string;
|
|
11
|
-
containerClass: string;
|
|
12
|
-
class: string;
|
|
13
|
-
disabled: boolean;
|
|
14
|
-
isCrossRequired: boolean;
|
|
15
|
-
label: string;
|
|
16
|
-
isLabelRequired: boolean;
|
|
17
|
-
changeValueHandler: EventEmitter<string>;
|
|
18
|
-
onInput(event: Event): void;
|
|
19
|
-
onEnter(): void;
|
|
20
|
-
clearValue(): void;
|
|
21
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PInputComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PInputComponent, "lib-p-input", never, { "value": { "alias": "value"; "required": false; }; "name": { "alias": "name"; "required": false; }; "type": { "alias": "type"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "withIcon": { "alias": "withIcon"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "containerClass": { "alias": "containerClass"; "required": false; }; "class": { "alias": "class"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "isCrossRequired": { "alias": "isCrossRequired"; "required": false; }; "label": { "alias": "label"; "required": false; }; "isLabelRequired": { "alias": "isLabelRequired"; "required": false; }; }, { "valueChange": "valueChange"; "changeValueHandler": "changeValueHandler"; }, never, never, false, never>;
|
|
23
|
-
}
|