primekit 0.0.0-watch
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/README.md +25 -0
- package/esm2022/lib/lib/atomix-alert/atomix-alert.component.mjs +55 -0
- package/esm2022/lib/lib/atomix-button/atomix-button.component.mjs +49 -0
- package/esm2022/lib/lib/atomix-button/atomix-button.models.mjs +2 -0
- 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 +28 -0
- package/esm2022/lib/lib/atomix-dropdown/atomix-dropdown.component.mjs +105 -0
- package/esm2022/lib/lib/atomix-dynamic-dialog/atomix-dynamic-dialog.component.mjs +38 -0
- package/esm2022/lib/lib/atomix-dynamic-dialog/atomix-dynamic-dialog.models.mjs +2 -0
- package/esm2022/lib/lib/atomix-form/atomix-form-autocomplete/atomix-form-autocomplete.component.mjs +67 -0
- package/esm2022/lib/lib/atomix-form/atomix-form-calendar/atomix-form-calendar.component.mjs +59 -0
- package/esm2022/lib/lib/atomix-form/atomix-form-checkbox/atomix-form-checkbox.component.mjs +48 -0
- package/esm2022/lib/lib/atomix-form/atomix-form-chips/atomix-form-chips.component.mjs +54 -0
- package/esm2022/lib/lib/atomix-form/atomix-form-chips/form.chips.models.mjs +2 -0
- package/esm2022/lib/lib/atomix-form/atomix-form-dropdown/atomix-form-dropdown.component.mjs +70 -0
- package/esm2022/lib/lib/atomix-form/atomix-form-input-component/atomix-form-input-component.component.mjs +70 -0
- package/esm2022/lib/lib/atomix-form/atomix-form-inputmask-component/atomix-form-inputmask-component.component.mjs +48 -0
- package/esm2022/lib/lib/atomix-form/atomix-form-password-component/atomix-form-password-component.component.mjs +48 -0
- package/esm2022/lib/lib/atomix-form/atomix-form-radio-button/atomix-radio-button.component.mjs +46 -0
- package/esm2022/lib/lib/atomix-form/atomix-form-textarea/atomix-form-textarea.component.mjs +43 -0
- package/esm2022/lib/lib/atomix-input/atomix-input.component.mjs +90 -0
- package/esm2022/lib/lib/atomix-messages/messages.component.mjs +33 -0
- package/esm2022/lib/lib/atomix-pagination/atomix-pagination.component.mjs +48 -0
- package/esm2022/lib/lib/atomix-radio-button/atomix-radio-button.component.mjs +50 -0
- package/esm2022/lib/lib/atomix-select-button/atomix-select-button-models.mjs +2 -0
- package/esm2022/lib/lib/atomix-select-button/atomix-select-button.component.mjs +25 -0
- package/esm2022/lib/lib/atomix-snackbar/atomix-snackbar.component.mjs +29 -0
- package/esm2022/lib/lib/atomix-spinner/atomix-spinner.component.mjs +24 -0
- package/esm2022/lib/lib/atomix-table/atomix-table.component.mjs +340 -0
- package/esm2022/lib/lib/atomix-table/atomix-table.models.mjs +2 -0
- package/esm2022/lib/lib/atomix-tag/atomix-tag.component.mjs +24 -0
- package/esm2022/lib/lib/utils/prime-icons.util.mjs +10 -0
- package/esm2022/lib/primekit.component.mjs +11 -0
- package/esm2022/lib/primekit.module.mjs +248 -0
- package/esm2022/lib/primekit.service.mjs +14 -0
- package/esm2022/primekit.mjs +5 -0
- package/esm2022/public-api.mjs +36 -0
- package/fesm2022/primekit.mjs +1760 -0
- package/fesm2022/primekit.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/lib/atomix-alert/atomix-alert.component.d.ts +17 -0
- package/lib/lib/atomix-button/atomix-button.component.d.ts +19 -0
- package/lib/lib/atomix-button/atomix-button.models.d.ts +2 -0
- 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 +12 -0
- package/lib/lib/atomix-dropdown/atomix-dropdown.component.d.ts +50 -0
- package/lib/lib/atomix-dynamic-dialog/atomix-dynamic-dialog.component.d.ts +15 -0
- package/lib/lib/atomix-dynamic-dialog/atomix-dynamic-dialog.models.d.ts +11 -0
- package/lib/lib/atomix-form/atomix-form-autocomplete/atomix-form-autocomplete.component.d.ts +25 -0
- package/lib/lib/atomix-form/atomix-form-calendar/atomix-form-calendar.component.d.ts +23 -0
- package/lib/lib/atomix-form/atomix-form-checkbox/atomix-form-checkbox.component.d.ts +18 -0
- package/lib/lib/atomix-form/atomix-form-chips/atomix-form-chips.component.d.ts +19 -0
- package/lib/lib/atomix-form/atomix-form-chips/form.chips.models.d.ts +5 -0
- package/lib/lib/atomix-form/atomix-form-dropdown/atomix-form-dropdown.component.d.ts +25 -0
- package/lib/lib/atomix-form/atomix-form-input-component/atomix-form-input-component.component.d.ts +25 -0
- package/lib/lib/atomix-form/atomix-form-inputmask-component/atomix-form-inputmask-component.component.d.ts +17 -0
- package/lib/lib/atomix-form/atomix-form-password-component/atomix-form-password-component.component.d.ts +17 -0
- package/lib/lib/atomix-form/atomix-form-radio-button/atomix-radio-button.component.d.ts +19 -0
- package/lib/lib/atomix-form/atomix-form-textarea/atomix-form-textarea.component.d.ts +16 -0
- package/lib/lib/atomix-input/atomix-input.component.d.ts +28 -0
- package/lib/lib/atomix-messages/messages.component.d.ts +13 -0
- package/lib/lib/atomix-pagination/atomix-pagination.component.d.ts +19 -0
- package/lib/lib/atomix-radio-button/atomix-radio-button.component.d.ts +15 -0
- package/lib/lib/atomix-select-button/atomix-select-button-models.d.ts +4 -0
- package/lib/lib/atomix-select-button/atomix-select-button.component.d.ts +12 -0
- package/lib/lib/atomix-snackbar/atomix-snackbar.component.d.ts +12 -0
- package/lib/lib/atomix-spinner/atomix-spinner.component.d.ts +9 -0
- package/lib/lib/atomix-table/atomix-table.component.d.ts +106 -0
- package/lib/lib/atomix-table/atomix-table.models.d.ts +32 -0
- package/lib/lib/atomix-tag/atomix-tag.component.d.ts +9 -0
- package/lib/lib/utils/prime-icons.util.d.ts +3 -0
- package/lib/primekit.component.d.ts +5 -0
- package/lib/primekit.module.d.ts +56 -0
- package/lib/primekit.service.d.ts +6 -0
- package/package.json +25 -0
- package/public-api.d.ts +30 -0
- package/src/assets/images/empty-table.svg +25 -0
- package/src/assets/images/logistics.png +0 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { FormControl, FormGroup } from '@angular/forms';
|
|
3
|
+
import { CalendarTypeView } from 'primeng/calendar';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AtomixFormCalendarComponent {
|
|
6
|
+
controlName: string;
|
|
7
|
+
form: FormGroup;
|
|
8
|
+
view: CalendarTypeView;
|
|
9
|
+
dateFormat: string;
|
|
10
|
+
label: string;
|
|
11
|
+
isLabelRequired: boolean;
|
|
12
|
+
maxDate: Date;
|
|
13
|
+
minDate: Date;
|
|
14
|
+
selectionMode: 'single' | 'multiple' | 'range' | undefined;
|
|
15
|
+
placeholder: string;
|
|
16
|
+
styleClass: string;
|
|
17
|
+
inputStyleClass: string;
|
|
18
|
+
dateSelectHandler: EventEmitter<any>;
|
|
19
|
+
dateChangeHandler: EventEmitter<any>;
|
|
20
|
+
get control(): FormControl;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AtomixFormCalendarComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AtomixFormCalendarComponent, "atomix-form-calendar", never, { "controlName": { "alias": "controlName"; "required": false; }; "form": { "alias": "form"; "required": false; }; "view": { "alias": "view"; "required": false; }; "dateFormat": { "alias": "dateFormat"; "required": false; }; "label": { "alias": "label"; "required": false; }; "isLabelRequired": { "alias": "isLabelRequired"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "selectionMode": { "alias": "selectionMode"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "inputStyleClass": { "alias": "inputStyleClass"; "required": false; }; }, { "dateSelectHandler": "dateSelectHandler"; "dateChangeHandler": "dateChangeHandler"; }, never, never, false, never>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { FormControl, FormGroup } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AtomixFormCheckboxComponent {
|
|
5
|
+
binary: boolean;
|
|
6
|
+
controlName: string;
|
|
7
|
+
form: FormGroup;
|
|
8
|
+
inline: boolean;
|
|
9
|
+
label: string;
|
|
10
|
+
tooltip: string;
|
|
11
|
+
tooltipPosition: 'right' | 'left' | 'top' | 'bottom';
|
|
12
|
+
value: string;
|
|
13
|
+
valueChange: EventEmitter<any>;
|
|
14
|
+
get control(): FormControl;
|
|
15
|
+
onChange(event: any): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AtomixFormCheckboxComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AtomixFormCheckboxComponent, "atomix-form-checkbox", never, { "binary": { "alias": "binary"; "required": false; }; "controlName": { "alias": "controlName"; "required": false; }; "form": { "alias": "form"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; "label": { "alias": "label"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { FormControl, FormGroup } from '@angular/forms';
|
|
2
|
+
import { LabelIconData } from './form.chips.models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AtomixFormChipsComponent {
|
|
5
|
+
controlName: string;
|
|
6
|
+
form: FormGroup;
|
|
7
|
+
label: string;
|
|
8
|
+
placeholder: string;
|
|
9
|
+
tooltip: string;
|
|
10
|
+
tooltipPosition: 'right' | 'left' | 'top' | 'bottom';
|
|
11
|
+
type: string;
|
|
12
|
+
styleClass: string;
|
|
13
|
+
allowDuplicate: boolean;
|
|
14
|
+
isLabelIconData: LabelIconData;
|
|
15
|
+
isLabelIconRequired: boolean;
|
|
16
|
+
get control(): FormControl;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AtomixFormChipsComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AtomixFormChipsComponent, "atomix-form-chips", never, { "controlName": { "alias": "controlName"; "required": false; }; "form": { "alias": "form"; "required": false; }; "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; "type": { "alias": "type"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "allowDuplicate": { "alias": "allowDuplicate"; "required": false; }; "isLabelIconData": { "alias": "isLabelIconData"; "required": false; }; "isLabelIconRequired": { "alias": "isLabelIconRequired"; "required": false; }; }, {}, never, never, false, never>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { FormControl, FormGroup } from '@angular/forms';
|
|
3
|
+
import { LabelIconData } from '../atomix-form-chips/form.chips.models';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AtomixFormDropdownComponent {
|
|
6
|
+
controlName: string;
|
|
7
|
+
filterResults: boolean;
|
|
8
|
+
form: FormGroup;
|
|
9
|
+
label: string;
|
|
10
|
+
optionLabel: string;
|
|
11
|
+
optionValue: string;
|
|
12
|
+
options: any;
|
|
13
|
+
placeholder: string;
|
|
14
|
+
showClear: boolean;
|
|
15
|
+
tooltip: string;
|
|
16
|
+
tooltipPosition: 'right' | 'left' | 'top' | 'bottom';
|
|
17
|
+
isLabelRequired: boolean;
|
|
18
|
+
styleClass: string;
|
|
19
|
+
isLabelIconData: LabelIconData;
|
|
20
|
+
selectionChange: EventEmitter<any>;
|
|
21
|
+
filterEvent: EventEmitter<string>;
|
|
22
|
+
get control(): FormControl;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AtomixFormDropdownComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AtomixFormDropdownComponent, "atomix-form-dropdown", never, { "controlName": { "alias": "controlName"; "required": false; }; "filterResults": { "alias": "filterResults"; "required": false; }; "form": { "alias": "form"; "required": false; }; "label": { "alias": "label"; "required": false; }; "optionLabel": { "alias": "optionLabel"; "required": false; }; "optionValue": { "alias": "optionValue"; "required": false; }; "options": { "alias": "options"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "showClear": { "alias": "showClear"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; "isLabelRequired": { "alias": "isLabelRequired"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "isLabelIconData": { "alias": "isLabelIconData"; "required": false; }; }, { "selectionChange": "selectionChange"; "filterEvent": "filterEvent"; }, never, never, false, never>;
|
|
25
|
+
}
|
package/lib/lib/atomix-form/atomix-form-input-component/atomix-form-input-component.component.d.ts
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { FormControl, FormGroup } from '@angular/forms';
|
|
3
|
+
import { LabelIconData } from '../atomix-form-chips/form.chips.models';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AtomixFormInputComponent {
|
|
6
|
+
controlName: string;
|
|
7
|
+
form: FormGroup;
|
|
8
|
+
label: string;
|
|
9
|
+
max: number | null;
|
|
10
|
+
min: number;
|
|
11
|
+
placeholder: string;
|
|
12
|
+
type: string;
|
|
13
|
+
tooltip: string;
|
|
14
|
+
class: string;
|
|
15
|
+
style: any;
|
|
16
|
+
isLabelIconData: LabelIconData;
|
|
17
|
+
isLabelIconRequired: boolean;
|
|
18
|
+
isLabelRequired: boolean;
|
|
19
|
+
tooltipPosition: 'right' | 'left' | 'top' | 'bottom';
|
|
20
|
+
changeValueHandler: EventEmitter<string>;
|
|
21
|
+
get control(): FormControl;
|
|
22
|
+
onInput(event: Event): void;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AtomixFormInputComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AtomixFormInputComponent, "atomix-form-input", never, { "controlName": { "alias": "controlName"; "required": false; }; "form": { "alias": "form"; "required": false; }; "label": { "alias": "label"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "type": { "alias": "type"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "class": { "alias": "class"; "required": false; }; "style": { "alias": "style"; "required": false; }; "isLabelIconData": { "alias": "isLabelIconData"; "required": false; }; "isLabelIconRequired": { "alias": "isLabelIconRequired"; "required": false; }; "isLabelRequired": { "alias": "isLabelRequired"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; }, { "changeValueHandler": "changeValueHandler"; }, never, never, false, never>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { FormControl, FormGroup } from '@angular/forms';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AtomixFormInputmaskComponent {
|
|
4
|
+
controlName: string;
|
|
5
|
+
form: FormGroup;
|
|
6
|
+
mask: string;
|
|
7
|
+
label: string;
|
|
8
|
+
placeholder: string;
|
|
9
|
+
slotChar: string;
|
|
10
|
+
tooltip: string;
|
|
11
|
+
tooltipPosition: 'right' | 'left' | 'top' | 'bottom';
|
|
12
|
+
isLabelRequired: boolean;
|
|
13
|
+
class: string;
|
|
14
|
+
get control(): FormControl;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AtomixFormInputmaskComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AtomixFormInputmaskComponent, "atomix-form-inputmask", never, { "controlName": { "alias": "controlName"; "required": false; }; "form": { "alias": "form"; "required": false; }; "mask": { "alias": "mask"; "required": false; }; "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "slotChar": { "alias": "slotChar"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; "isLabelRequired": { "alias": "isLabelRequired"; "required": false; }; "class": { "alias": "class"; "required": false; }; }, {}, never, never, false, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { FormControl, FormGroup } from '@angular/forms';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AtomixFormPasswordComponent {
|
|
4
|
+
controlName: string;
|
|
5
|
+
form: FormGroup;
|
|
6
|
+
label: string;
|
|
7
|
+
placeholder: string;
|
|
8
|
+
type: string;
|
|
9
|
+
tooltip: string;
|
|
10
|
+
class: string;
|
|
11
|
+
feedback: boolean;
|
|
12
|
+
isLabelRequired: boolean;
|
|
13
|
+
tooltipPosition: 'right' | 'left' | 'top' | 'bottom';
|
|
14
|
+
get control(): FormControl;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AtomixFormPasswordComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AtomixFormPasswordComponent, "atomix-form-password", never, { "controlName": { "alias": "controlName"; "required": false; }; "form": { "alias": "form"; "required": false; }; "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "type": { "alias": "type"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "class": { "alias": "class"; "required": false; }; "feedback": { "alias": "feedback"; "required": false; }; "isLabelRequired": { "alias": "isLabelRequired"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; }, {}, never, never, false, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { FormControl, FormGroup } from '@angular/forms';
|
|
2
|
+
import { LabelIconData } from '../atomix-form-chips/form.chips.models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AtomixFormRadioButtonComponent {
|
|
5
|
+
controlName: string;
|
|
6
|
+
form: FormGroup;
|
|
7
|
+
value: {
|
|
8
|
+
name: string;
|
|
9
|
+
key: string;
|
|
10
|
+
};
|
|
11
|
+
label: string;
|
|
12
|
+
isLabelRequired: boolean;
|
|
13
|
+
radioGroupOptions: any;
|
|
14
|
+
labelIconData: LabelIconData;
|
|
15
|
+
radioButtonContainerClass: string;
|
|
16
|
+
get control(): FormControl;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AtomixFormRadioButtonComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AtomixFormRadioButtonComponent, "atomix-form-radio-group", never, { "controlName": { "alias": "controlName"; "required": false; }; "form": { "alias": "form"; "required": false; }; "value": { "alias": "value"; "required": false; }; "label": { "alias": "label"; "required": false; }; "isLabelRequired": { "alias": "isLabelRequired"; "required": false; }; "radioGroupOptions": { "alias": "radioGroupOptions"; "required": false; }; "labelIconData": { "alias": "labelIconData"; "required": false; }; "radioButtonContainerClass": { "alias": "radioButtonContainerClass"; "required": false; }; }, {}, never, never, false, never>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { FormControl, FormGroup } from '@angular/forms';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AtomixFormTextareaComponent {
|
|
4
|
+
controlName: string;
|
|
5
|
+
form: FormGroup;
|
|
6
|
+
label: string;
|
|
7
|
+
rows: number;
|
|
8
|
+
cols: number;
|
|
9
|
+
placeholder: string;
|
|
10
|
+
disabled: boolean;
|
|
11
|
+
class: string;
|
|
12
|
+
isLabelRequired: boolean;
|
|
13
|
+
get control(): FormControl;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AtomixFormTextareaComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AtomixFormTextareaComponent, "atomix-form-textarea", never, { "controlName": { "alias": "controlName"; "required": false; }; "form": { "alias": "form"; "required": false; }; "label": { "alias": "label"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "class": { "alias": "class"; "required": false; }; "isLabelRequired": { "alias": "isLabelRequired"; "required": false; }; }, {}, never, never, false, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { EventEmitter, ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AtomixInputComponent {
|
|
4
|
+
inputEl: ElementRef<HTMLInputElement>;
|
|
5
|
+
value: string;
|
|
6
|
+
name: string;
|
|
7
|
+
type: string;
|
|
8
|
+
placeholder: string;
|
|
9
|
+
valueChange: EventEmitter<string>;
|
|
10
|
+
withIcon: boolean;
|
|
11
|
+
iconName: string;
|
|
12
|
+
containerClass: string;
|
|
13
|
+
class: string;
|
|
14
|
+
disabled: boolean;
|
|
15
|
+
isCrossRequired: boolean;
|
|
16
|
+
label: string;
|
|
17
|
+
isLabelRequired: boolean;
|
|
18
|
+
autofocus: boolean;
|
|
19
|
+
changeValueHandler: EventEmitter<string>;
|
|
20
|
+
ngAfterViewInit(): void;
|
|
21
|
+
onInput(event: Event): void;
|
|
22
|
+
onEnter(): void;
|
|
23
|
+
clearValue(): void;
|
|
24
|
+
onSearchClear(event: Event): void;
|
|
25
|
+
focus(): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AtomixInputComponent, never>;
|
|
27
|
+
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; }; "autofocus": { "alias": "autofocus"; "required": false; }; }, { "valueChange": "valueChange"; "changeValueHandler": "changeValueHandler"; }, never, never, false, never>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Message } from 'primeng/api';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AtomixMessagesComponent {
|
|
4
|
+
value: Message[];
|
|
5
|
+
closable: boolean;
|
|
6
|
+
severity: string;
|
|
7
|
+
escape: boolean;
|
|
8
|
+
enableService: boolean;
|
|
9
|
+
styleClass: string;
|
|
10
|
+
text: string;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AtomixMessagesComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AtomixMessagesComponent, "atomix-messages", never, { "value": { "alias": "value"; "required": false; }; "closable": { "alias": "closable"; "required": false; }; "severity": { "alias": "severity"; "required": false; }; "escape": { "alias": "escape"; "required": false; }; "enableService": { "alias": "enableService"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "text": { "alias": "text"; "required": false; }; }, {}, never, never, false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { DropdownChangeEvent } from 'primeng/dropdown';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AtomixPaginationComponent {
|
|
5
|
+
dataLength: number;
|
|
6
|
+
totalRecords: number;
|
|
7
|
+
page: number;
|
|
8
|
+
size: number;
|
|
9
|
+
handleDropdownValueChange: EventEmitter<DropdownChangeEvent>;
|
|
10
|
+
paginatorChange: EventEmitter<any>;
|
|
11
|
+
getScreenWidth: number;
|
|
12
|
+
options: {
|
|
13
|
+
label: number;
|
|
14
|
+
value: number;
|
|
15
|
+
}[];
|
|
16
|
+
onWindowResize(): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AtomixPaginationComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AtomixPaginationComponent, "app-pagination", never, { "dataLength": { "alias": "dataLength"; "required": false; }; "totalRecords": { "alias": "totalRecords"; "required": false; }; "page": { "alias": "page"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "handleDropdownValueChange": "handleDropdownValueChange"; "paginatorChange": "paginatorChange"; }, never, never, false, never>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class AtomixRadioButtonComponent {
|
|
3
|
+
name: string;
|
|
4
|
+
value: string;
|
|
5
|
+
selectedValue: string;
|
|
6
|
+
inputId: string;
|
|
7
|
+
model: any;
|
|
8
|
+
onChange: (_: any) => void;
|
|
9
|
+
onTouched: () => void;
|
|
10
|
+
writeValue(value: any): void;
|
|
11
|
+
registerOnChange(fn: any): void;
|
|
12
|
+
registerOnTouched(fn: any): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AtomixRadioButtonComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AtomixRadioButtonComponent, "atomix-radio-button", never, { "name": { "alias": "name"; "required": false; }; "value": { "alias": "value"; "required": false; }; "selectedValue": { "alias": "selectedValue"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; }, {}, never, never, false, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { SelectButtonOptionClickEvent } from 'primeng/selectbutton';
|
|
3
|
+
import { SelectButtonStateOption } from './atomix-select-button-models';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AtomixSelectButtonComponent {
|
|
6
|
+
onOptionClick: EventEmitter<SelectButtonOptionClickEvent>;
|
|
7
|
+
stateOptions: SelectButtonStateOption[];
|
|
8
|
+
value: string;
|
|
9
|
+
optionClickHandler(event: SelectButtonOptionClickEvent): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AtomixSelectButtonComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AtomixSelectButtonComponent, "atomix-select-button", never, { "stateOptions": { "alias": "stateOptions"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "onOptionClick": "onOptionClick"; }, never, never, false, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AtomixSnackbarComponent {
|
|
4
|
+
private cdr;
|
|
5
|
+
constructor(cdr: ChangeDetectorRef);
|
|
6
|
+
isVisible: boolean;
|
|
7
|
+
message: string;
|
|
8
|
+
showSnackbar(message: string): void;
|
|
9
|
+
hideSnackbar(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AtomixSnackbarComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AtomixSnackbarComponent, "atomix-snackbar", never, {}, {}, never, never, false, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class AtomixSpinnerComponent {
|
|
3
|
+
animationDuration: string;
|
|
4
|
+
styleClass: string;
|
|
5
|
+
strokeWidth: string;
|
|
6
|
+
fill: string;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AtomixSpinnerComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AtomixSpinnerComponent, "atomix-spinner", never, { "animationDuration": { "alias": "animationDuration"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "strokeWidth": { "alias": "strokeWidth"; "required": false; }; "fill": { "alias": "fill"; "required": false; }; }, {}, never, never, false, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter, OnChanges, SimpleChanges, TemplateRef } from '@angular/core';
|
|
2
|
+
import type { Table, TablePageEvent, TableRowReorderEvent } from 'primeng/table';
|
|
3
|
+
import { Column, Row, TableActionButton } from './atomix-table.models';
|
|
4
|
+
import { ConfirmationService } from 'primeng/api';
|
|
5
|
+
import { DatePipe } from '@angular/common';
|
|
6
|
+
import { AtomixSnackbarComponent } from '../atomix-snackbar/atomix-snackbar.component';
|
|
7
|
+
import { CheckboxChangeEvent } from 'primeng/checkbox';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class AtomixTableComponent implements OnChanges {
|
|
10
|
+
private confirmationService;
|
|
11
|
+
private datePipe;
|
|
12
|
+
private cdr;
|
|
13
|
+
atomixSnackbarComponent: AtomixSnackbarComponent;
|
|
14
|
+
rows: Row[];
|
|
15
|
+
selectedTableRows: Row[] | undefined;
|
|
16
|
+
cols: Column[];
|
|
17
|
+
size: number;
|
|
18
|
+
currentPage: number;
|
|
19
|
+
expandedColumns: Column[];
|
|
20
|
+
emptyExpandableRowMessage: string;
|
|
21
|
+
secondaryRowsKey: string;
|
|
22
|
+
title: string;
|
|
23
|
+
enablePaginator: boolean;
|
|
24
|
+
reorderableColumns: boolean;
|
|
25
|
+
enableReorderableRow: boolean;
|
|
26
|
+
emptyStateMessage: string;
|
|
27
|
+
enableMultiselect: boolean;
|
|
28
|
+
enableExpandableRow: boolean;
|
|
29
|
+
enableSelectAllOnInit: boolean;
|
|
30
|
+
enableColumnFilters: boolean;
|
|
31
|
+
isLoading: boolean;
|
|
32
|
+
pageSize: number;
|
|
33
|
+
totalRecords: number;
|
|
34
|
+
selectedRows: EventEmitter<Row[]>;
|
|
35
|
+
pageChange: EventEmitter<{
|
|
36
|
+
page: number;
|
|
37
|
+
size: number;
|
|
38
|
+
}>;
|
|
39
|
+
filterChange: EventEmitter<any>;
|
|
40
|
+
enableEditButtons: boolean;
|
|
41
|
+
enableDeleteButtons: boolean;
|
|
42
|
+
actionButtonConfig: {
|
|
43
|
+
enabled: boolean;
|
|
44
|
+
icon: string;
|
|
45
|
+
message?: string;
|
|
46
|
+
confirmation?: boolean;
|
|
47
|
+
class?: string;
|
|
48
|
+
};
|
|
49
|
+
editRow: EventEmitter<any>;
|
|
50
|
+
actionRow: EventEmitter<any>;
|
|
51
|
+
deleteRow: EventEmitter<any>;
|
|
52
|
+
actionButton: EventEmitter<Row>;
|
|
53
|
+
expandedRow: EventEmitter<Row>;
|
|
54
|
+
dropdownSelectionChanged: EventEmitter<{
|
|
55
|
+
field: string;
|
|
56
|
+
value: any;
|
|
57
|
+
}>;
|
|
58
|
+
rowReordered: EventEmitter<{
|
|
59
|
+
previousIndex: number;
|
|
60
|
+
currentIndex: number;
|
|
61
|
+
}>;
|
|
62
|
+
logButton: EventEmitter<any>;
|
|
63
|
+
pageDropdownChange: EventEmitter<any>;
|
|
64
|
+
rowDataOutlet: TemplateRef<any>;
|
|
65
|
+
sortBy: string;
|
|
66
|
+
orderBy: string;
|
|
67
|
+
isEnableSorting: boolean;
|
|
68
|
+
sortHandler: EventEmitter<any>;
|
|
69
|
+
options: {
|
|
70
|
+
label: number;
|
|
71
|
+
value: number;
|
|
72
|
+
}[];
|
|
73
|
+
first2: number;
|
|
74
|
+
rows2: number;
|
|
75
|
+
page: number;
|
|
76
|
+
showPagination: boolean;
|
|
77
|
+
showActionsColumn: boolean;
|
|
78
|
+
actionButtonsData: TableActionButton[];
|
|
79
|
+
dt1: Table;
|
|
80
|
+
constructor(confirmationService: ConfirmationService, datePipe: DatePipe, cdr: ChangeDetectorRef);
|
|
81
|
+
onRowsInit(): void;
|
|
82
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
83
|
+
onRowSelect(): void;
|
|
84
|
+
onRowUnselect(): void;
|
|
85
|
+
onCheckboxSelect(): void;
|
|
86
|
+
clearFilters(): void;
|
|
87
|
+
onPage(event: TablePageEvent): void;
|
|
88
|
+
filterResults(event: any): void;
|
|
89
|
+
deleteRowConfirmation(rowData: any): void;
|
|
90
|
+
actionRowConfirmation(rowData: Row): void;
|
|
91
|
+
onRowReorder(event: TableRowReorderEvent): void;
|
|
92
|
+
getRowDataValue(rowData: any, field: string, type: string): any;
|
|
93
|
+
copyHandler(event: Event, element: any): void;
|
|
94
|
+
customSort(columnName: any): void;
|
|
95
|
+
handlePageChange(event: any): void;
|
|
96
|
+
dropdownHandler(event: any): void;
|
|
97
|
+
handleActionClick(action: any, rowData: any): void;
|
|
98
|
+
isAllSelected: boolean;
|
|
99
|
+
headerCheckboxHandler: EventEmitter<boolean>;
|
|
100
|
+
checkboxHandler: EventEmitter<any>;
|
|
101
|
+
isAnyRowSelected(): boolean;
|
|
102
|
+
toggleAllRows(event: CheckboxChangeEvent): void;
|
|
103
|
+
singleCheckboxHandler(event: CheckboxChangeEvent, row: any): void;
|
|
104
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AtomixTableComponent, never>;
|
|
105
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AtomixTableComponent, "atomix-table", never, { "rows": { "alias": "rows"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; "size": { "alias": "size"; "required": false; }; "currentPage": { "alias": "currentPage"; "required": false; }; "expandedColumns": { "alias": "expandedColumns"; "required": false; }; "emptyExpandableRowMessage": { "alias": "emptyExpandableRowMessage"; "required": false; }; "secondaryRowsKey": { "alias": "secondaryRowsKey"; "required": false; }; "title": { "alias": "title"; "required": false; }; "enablePaginator": { "alias": "enablePaginator"; "required": false; }; "reorderableColumns": { "alias": "reorderableColumns"; "required": false; }; "enableReorderableRow": { "alias": "enableReorderableRow"; "required": false; }; "emptyStateMessage": { "alias": "emptyStateMessage"; "required": false; }; "enableMultiselect": { "alias": "enableMultiselect"; "required": false; }; "enableExpandableRow": { "alias": "enableExpandableRow"; "required": false; }; "enableSelectAllOnInit": { "alias": "enableSelectAllOnInit"; "required": false; }; "enableColumnFilters": { "alias": "enableColumnFilters"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "totalRecords": { "alias": "totalRecords"; "required": false; }; "enableEditButtons": { "alias": "enableEditButtons"; "required": false; }; "enableDeleteButtons": { "alias": "enableDeleteButtons"; "required": false; }; "actionButtonConfig": { "alias": "actionButtonConfig"; "required": false; }; "sortBy": { "alias": "sortBy"; "required": false; }; "orderBy": { "alias": "orderBy"; "required": false; }; "isEnableSorting": { "alias": "isEnableSorting"; "required": false; }; "showPagination": { "alias": "showPagination"; "required": false; }; "showActionsColumn": { "alias": "showActionsColumn"; "required": false; }; "actionButtonsData": { "alias": "actionButtonsData"; "required": false; }; "isAllSelected": { "alias": "isAllSelected"; "required": false; }; }, { "selectedRows": "selectedRows"; "pageChange": "pageChange"; "filterChange": "filterChange"; "editRow": "editRow"; "actionRow": "actionRow"; "deleteRow": "deleteRow"; "actionButton": "actionButton"; "expandedRow": "expandedRow"; "dropdownSelectionChanged": "dropdownSelectionChanged"; "rowReordered": "rowReordered"; "logButton": "logButton"; "pageDropdownChange": "pageDropdownChange"; "sortHandler": "sortHandler"; "headerCheckboxHandler": "headerCheckboxHandler"; "checkboxHandler": "checkboxHandler"; }, ["rowDataOutlet"], ["[body]"], false, never>;
|
|
106
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* TODO: Move this to models folder
|
|
3
|
+
*/
|
|
4
|
+
export interface Row {
|
|
5
|
+
id: string;
|
|
6
|
+
[k: string]: unknown;
|
|
7
|
+
isSelected?: boolean;
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* TODO: Move this to models folder
|
|
11
|
+
*/
|
|
12
|
+
export interface Column {
|
|
13
|
+
name: string;
|
|
14
|
+
field: string;
|
|
15
|
+
type?: string;
|
|
16
|
+
isEditable?: boolean;
|
|
17
|
+
isRequired?: boolean;
|
|
18
|
+
filterDisabled?: boolean;
|
|
19
|
+
isHide?: boolean;
|
|
20
|
+
filterByDropdown?: {
|
|
21
|
+
value: string;
|
|
22
|
+
label: string;
|
|
23
|
+
}[];
|
|
24
|
+
}
|
|
25
|
+
export type SortDirection = 'asc' | 'desc' | '';
|
|
26
|
+
export interface TableActionButton {
|
|
27
|
+
icon?: string;
|
|
28
|
+
class?: string;
|
|
29
|
+
tooltip?: string;
|
|
30
|
+
click?: (event: any) => void;
|
|
31
|
+
disabled?: boolean;
|
|
32
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class AtomixTagComponent {
|
|
3
|
+
value: string;
|
|
4
|
+
rounded: boolean;
|
|
5
|
+
icon: string;
|
|
6
|
+
styleClass: string;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AtomixTagComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AtomixTagComponent, "atomix-tag", never, { "value": { "alias": "value"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; }, {}, never, never, false, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./lib/atomix-button/atomix-button.component";
|
|
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 "./lib/atomix-table/atomix-table.component";
|
|
9
|
+
import * as i8 from "./lib/atomix-snackbar/atomix-snackbar.component";
|
|
10
|
+
import * as i9 from "./lib/atomix-pagination/atomix-pagination.component";
|
|
11
|
+
import * as i10 from "./lib/atomix-form/atomix-form-autocomplete/atomix-form-autocomplete.component";
|
|
12
|
+
import * as i11 from "./lib/atomix-form/atomix-form-calendar/atomix-form-calendar.component";
|
|
13
|
+
import * as i12 from "./lib/atomix-form/atomix-form-checkbox/atomix-form-checkbox.component";
|
|
14
|
+
import * as i13 from "./lib/atomix-form/atomix-form-chips/atomix-form-chips.component";
|
|
15
|
+
import * as i14 from "./lib/atomix-form/atomix-form-dropdown/atomix-form-dropdown.component";
|
|
16
|
+
import * as i15 from "./lib/atomix-form/atomix-form-input-component/atomix-form-input-component.component";
|
|
17
|
+
import * as i16 from "./lib/atomix-form/atomix-form-inputmask-component/atomix-form-inputmask-component.component";
|
|
18
|
+
import * as i17 from "./lib/atomix-form/atomix-form-password-component/atomix-form-password-component.component";
|
|
19
|
+
import * as i18 from "./lib/atomix-form/atomix-form-textarea/atomix-form-textarea.component";
|
|
20
|
+
import * as i19 from "./lib/atomix-form/atomix-form-radio-button/atomix-radio-button.component";
|
|
21
|
+
import * as i20 from "./lib/atomix-alert/atomix-alert.component";
|
|
22
|
+
import * as i21 from "./lib/atomix-messages/messages.component";
|
|
23
|
+
import * as i22 from "./lib/atomix-spinner/atomix-spinner.component";
|
|
24
|
+
import * as i23 from "./lib/atomix-radio-button/atomix-radio-button.component";
|
|
25
|
+
import * as i24 from "./lib/atomix-dynamic-dialog/atomix-dynamic-dialog.component";
|
|
26
|
+
import * as i25 from "./lib/atomix-select-button/atomix-select-button.component";
|
|
27
|
+
import * as i26 from "./lib/atomix-tag/atomix-tag.component";
|
|
28
|
+
import * as i27 from "@angular/common";
|
|
29
|
+
import * as i28 from "primeng/button";
|
|
30
|
+
import * as i29 from "primeng/card";
|
|
31
|
+
import * as i30 from "primeng/dialog";
|
|
32
|
+
import * as i31 from "primeng/inputtext";
|
|
33
|
+
import * as i32 from "primeng/calendar";
|
|
34
|
+
import * as i33 from "primeng/dropdown";
|
|
35
|
+
import * as i34 from "@angular/forms";
|
|
36
|
+
import * as i35 from "primeng/table";
|
|
37
|
+
import * as i36 from "primeng/skeleton";
|
|
38
|
+
import * as i37 from "primeng/paginator";
|
|
39
|
+
import * as i38 from "primeng/tooltip";
|
|
40
|
+
import * as i39 from "primeng/autocomplete";
|
|
41
|
+
import * as i40 from "primeng/checkbox";
|
|
42
|
+
import * as i41 from "primeng/chips";
|
|
43
|
+
import * as i42 from "primeng/inputmask";
|
|
44
|
+
import * as i43 from "primeng/password";
|
|
45
|
+
import * as i44 from "primeng/radiobutton";
|
|
46
|
+
import * as i45 from "primeng/toast";
|
|
47
|
+
import * as i46 from "primeng/messages";
|
|
48
|
+
import * as i47 from "primeng/progressspinner";
|
|
49
|
+
import * as i48 from "primeng/autofocus";
|
|
50
|
+
import * as i49 from "primeng/selectbutton";
|
|
51
|
+
import * as i50 from "primeng/tag";
|
|
52
|
+
export declare class PrimekitModule {
|
|
53
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PrimekitModule, never>;
|
|
54
|
+
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.AtomixTableComponent, typeof i8.AtomixSnackbarComponent, typeof i9.AtomixPaginationComponent, typeof i10.AtomixFormAutocompleteComponent, typeof i11.AtomixFormCalendarComponent, typeof i12.AtomixFormCheckboxComponent, typeof i13.AtomixFormChipsComponent, typeof i14.AtomixFormDropdownComponent, typeof i15.AtomixFormInputComponent, typeof i16.AtomixFormInputmaskComponent, typeof i17.AtomixFormPasswordComponent, typeof i18.AtomixFormTextareaComponent, typeof i19.AtomixFormRadioButtonComponent, typeof i20.AtomixToastComponent, typeof i21.AtomixMessagesComponent, typeof i22.AtomixSpinnerComponent, typeof i23.AtomixRadioButtonComponent, typeof i24.AtomixDynamicDialogComponent, typeof i25.AtomixSelectButtonComponent, typeof i26.AtomixTagComponent], [typeof i27.CommonModule, typeof i28.ButtonModule, typeof i29.CardModule, typeof i30.DialogModule, typeof i31.InputTextModule, typeof i32.CalendarModule, typeof i33.DropdownModule, typeof i34.FormsModule, typeof i35.TableModule, typeof i36.SkeletonModule, typeof i37.PaginatorModule, typeof i38.TooltipModule, typeof i39.AutoCompleteModule, typeof i34.ReactiveFormsModule, typeof i40.CheckboxModule, typeof i41.ChipsModule, typeof i42.InputMaskModule, typeof i43.PasswordModule, typeof i44.RadioButtonModule, typeof i45.ToastModule, typeof i46.MessagesModule, typeof i47.ProgressSpinnerModule, typeof i48.AutoFocusModule, typeof i49.SelectButtonModule, typeof i50.TagModule], [typeof i1.AtomixButtonComponent, typeof i2.AtomixCardComponent, typeof i3.AtomixConfirmationDialogComponent, typeof i4.AtomixInputComponent, typeof i5.AtomixCalendarComponent, typeof i6.AtomixDropdownComponent, typeof i7.AtomixTableComponent, typeof i8.AtomixSnackbarComponent, typeof i9.AtomixPaginationComponent, typeof i10.AtomixFormAutocompleteComponent, typeof i34.ReactiveFormsModule, typeof i11.AtomixFormCalendarComponent, typeof i12.AtomixFormCheckboxComponent, typeof i13.AtomixFormChipsComponent, typeof i14.AtomixFormDropdownComponent, typeof i15.AtomixFormInputComponent, typeof i16.AtomixFormInputmaskComponent, typeof i17.AtomixFormPasswordComponent, typeof i18.AtomixFormTextareaComponent, typeof i19.AtomixFormRadioButtonComponent, typeof i20.AtomixToastComponent, typeof i21.AtomixMessagesComponent, typeof i22.AtomixSpinnerComponent, typeof i23.AtomixRadioButtonComponent, typeof i24.AtomixDynamicDialogComponent, typeof i25.AtomixSelectButtonComponent, typeof i26.AtomixTagComponent]>;
|
|
55
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PrimekitModule>;
|
|
56
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "primekit",
|
|
3
|
+
"version": "0.0.0-watch+1751534519348",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": "^18.2.0",
|
|
6
|
+
"@angular/core": "^18.2.0"
|
|
7
|
+
},
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"tslib": "^2.3.0"
|
|
10
|
+
},
|
|
11
|
+
"sideEffects": false,
|
|
12
|
+
"module": "fesm2022/primekit.mjs",
|
|
13
|
+
"typings": "index.d.ts",
|
|
14
|
+
"exports": {
|
|
15
|
+
"./package.json": {
|
|
16
|
+
"default": "./package.json"
|
|
17
|
+
},
|
|
18
|
+
".": {
|
|
19
|
+
"types": "./index.d.ts",
|
|
20
|
+
"esm2022": "./esm2022/primekit.mjs",
|
|
21
|
+
"esm": "./esm2022/primekit.mjs",
|
|
22
|
+
"default": "./fesm2022/primekit.mjs"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|