@elite.framework/ng.ui.core 1.0.76 → 1.0.78
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/fesm2022/elite.framework-ng.ui.core-base-crud.mjs +1 -21
- package/fesm2022/elite.framework-ng.ui.core-base-crud.mjs.map +1 -1
- package/fesm2022/elite.framework-ng.ui.core-formly-ui-all.mjs +25 -2
- package/fesm2022/elite.framework-ng.ui.core-formly-ui-all.mjs.map +1 -1
- package/fesm2022/elite.framework-ng.ui.core-generic-crud-table.mjs +70 -9
- package/fesm2022/elite.framework-ng.ui.core-generic-crud-table.mjs.map +1 -1
- package/fesm2022/elite.framework-ng.ui.core-generic-report.mjs +488 -0
- package/fesm2022/elite.framework-ng.ui.core-generic-report.mjs.map +1 -0
- package/fesm2022/elite.framework-ng.ui.core-generic-search-advanced.mjs +1333 -558
- package/fesm2022/elite.framework-ng.ui.core-generic-search-advanced.mjs.map +1 -1
- package/formly-ui-all/index.d.ts +2 -1
- package/generic-report/README.md +3 -0
- package/generic-report/index.d.ts +96 -0
- package/generic-search-advanced/index.d.ts +133 -50
- package/package.json +27 -23
package/formly-ui-all/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ declare class FormlyUiAllModule {
|
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
declare function provideAllFormlyFields(): ConfigOption[];
|
|
12
|
+
declare function withFormlyQueryBuilder(): ConfigOption;
|
|
12
13
|
declare function withFormlyFieldInputWithIcon(): ConfigOption;
|
|
13
14
|
declare function withFormlyFieldAttachment(): ConfigOption;
|
|
14
15
|
declare function withFormlyFieldRichTextEditor(): ConfigOption;
|
|
@@ -36,4 +37,4 @@ declare function withFormlyFieldButton(): ConfigOption;
|
|
|
36
37
|
declare function withFormlyFieldAvatarImage(): ConfigOption;
|
|
37
38
|
declare function withFormlyWrappers(): ConfigOption;
|
|
38
39
|
|
|
39
|
-
export { FormlyUiAllModule, globalGenericSelectorExtension, provideAllFormlyFields, withFormlyFieldAttachment, withFormlyFieldAvatarImage, withFormlyFieldAvatarLabelButton, withFormlyFieldButton, withFormlyFieldButtonSelection, withFormlyFieldClickableLabelType, withFormlyFieldColorPicker, withFormlyFieldColorTag, withFormlyFieldConditionBuilder, withFormlyFieldCustomSwitch, withFormlyFieldFormlyButton, withFormlyFieldFormlySplit, withFormlyFieldGenericSelector, withFormlyFieldIconPicker, withFormlyFieldInputWithIcon, withFormlyFieldLabelType, withFormlyFieldOptionTag, withFormlyFieldRepeat, withFormlyFieldRichTextEditor, withFormlyFieldSwitch, withFormlyFieldTabs, withFormlyFieldTag, withFormlyFieldTemplate, withFormlyFieldUsernameWithDomain, withFormlyWrappers };
|
|
40
|
+
export { FormlyUiAllModule, globalGenericSelectorExtension, provideAllFormlyFields, withFormlyFieldAttachment, withFormlyFieldAvatarImage, withFormlyFieldAvatarLabelButton, withFormlyFieldButton, withFormlyFieldButtonSelection, withFormlyFieldClickableLabelType, withFormlyFieldColorPicker, withFormlyFieldColorTag, withFormlyFieldConditionBuilder, withFormlyFieldCustomSwitch, withFormlyFieldFormlyButton, withFormlyFieldFormlySplit, withFormlyFieldGenericSelector, withFormlyFieldIconPicker, withFormlyFieldInputWithIcon, withFormlyFieldLabelType, withFormlyFieldOptionTag, withFormlyFieldRepeat, withFormlyFieldRichTextEditor, withFormlyFieldSwitch, withFormlyFieldTabs, withFormlyFieldTag, withFormlyFieldTemplate, withFormlyFieldUsernameWithDomain, withFormlyQueryBuilder, withFormlyWrappers };
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { OnInit, ElementRef } from '@angular/core';
|
|
3
|
+
import * as i1 from '@angular/common';
|
|
4
|
+
import { FormGroup } from '@angular/forms';
|
|
5
|
+
import { FormlyFieldConfig, FormlyFormOptions } from '@ngx-formly/core';
|
|
6
|
+
import { DynamicDialogRef, DynamicDialogConfig } from 'primeng/dynamicdialog';
|
|
7
|
+
|
|
8
|
+
declare class GenericReportModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GenericReportModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<GenericReportModule, never, [typeof i1.CommonModule], never>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<GenericReportModule>;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
interface ExportConfig {
|
|
15
|
+
columns: {
|
|
16
|
+
[key: string]: string;
|
|
17
|
+
};
|
|
18
|
+
filters: any;
|
|
19
|
+
exportType: ExportType;
|
|
20
|
+
fileName?: string;
|
|
21
|
+
}
|
|
22
|
+
declare enum ExportType {
|
|
23
|
+
LIST = 0,
|
|
24
|
+
HTML = 1,
|
|
25
|
+
PDF = 2,
|
|
26
|
+
EXCEL = 3,
|
|
27
|
+
PRINT = 4
|
|
28
|
+
}
|
|
29
|
+
declare class GenericReportComponent implements OnInit {
|
|
30
|
+
ref: DynamicDialogRef;
|
|
31
|
+
config: DynamicDialogConfig;
|
|
32
|
+
previewContainer: ElementRef;
|
|
33
|
+
filterFields: FormlyFieldConfig[];
|
|
34
|
+
fields_: FormlyFieldConfig[];
|
|
35
|
+
availableColumns: Array<{
|
|
36
|
+
key: string;
|
|
37
|
+
displayName: string;
|
|
38
|
+
selected: boolean;
|
|
39
|
+
customName?: string;
|
|
40
|
+
}>;
|
|
41
|
+
exportType: ExportType;
|
|
42
|
+
fileName: string;
|
|
43
|
+
showFilters: boolean;
|
|
44
|
+
loading: boolean;
|
|
45
|
+
activeTabIndex: number;
|
|
46
|
+
currentDate: Date;
|
|
47
|
+
previewData: any[];
|
|
48
|
+
options: FormlyFormOptions;
|
|
49
|
+
enableQueryBuilder: boolean;
|
|
50
|
+
localExport: boolean;
|
|
51
|
+
queryString: string;
|
|
52
|
+
apiName: string;
|
|
53
|
+
model: any;
|
|
54
|
+
form: FormGroup<{}>;
|
|
55
|
+
exportConfig: ExportConfig;
|
|
56
|
+
exportTypes: {
|
|
57
|
+
value: ExportType;
|
|
58
|
+
label: string;
|
|
59
|
+
icon: string;
|
|
60
|
+
}[];
|
|
61
|
+
private destroy$;
|
|
62
|
+
private translate;
|
|
63
|
+
private restService;
|
|
64
|
+
private queryBuilder;
|
|
65
|
+
constructor(ref: DynamicDialogRef, config: DynamicDialogConfig);
|
|
66
|
+
ngOnInit(): void;
|
|
67
|
+
get filterCount(): any;
|
|
68
|
+
private buildQueryUIFields;
|
|
69
|
+
private initializeComponent;
|
|
70
|
+
private getDefaultFilterFields;
|
|
71
|
+
get selectedColumns(): any[];
|
|
72
|
+
onExportTypeChange(type: ExportType): void;
|
|
73
|
+
onColumnToggle(column: any): void;
|
|
74
|
+
onCustomNameChange(column: any): void;
|
|
75
|
+
selectAllColumns(): void;
|
|
76
|
+
deselectAllColumns(): void;
|
|
77
|
+
generatePreview(): void;
|
|
78
|
+
getPreviewValue(row: any, columnKey: string): string;
|
|
79
|
+
getExportButtonText(): string;
|
|
80
|
+
onSubmit(): void;
|
|
81
|
+
onReset(): void;
|
|
82
|
+
onExport(): void;
|
|
83
|
+
private generateHtmlReport;
|
|
84
|
+
private handleApiExport;
|
|
85
|
+
loadPreviewData(): void;
|
|
86
|
+
private getPreviewColumns;
|
|
87
|
+
private base64ToBlob;
|
|
88
|
+
private downloadFile;
|
|
89
|
+
private getFileExtension;
|
|
90
|
+
printPreview(): void;
|
|
91
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GenericReportComponent, never>;
|
|
92
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GenericReportComponent, "app-generic-report", never, { "filterFields": { "alias": "filterFields"; "required": false; }; "enableQueryBuilder": { "alias": "enableQueryBuilder"; "required": false; }; "localExport": { "alias": "localExport"; "required": false; }; "queryString": { "alias": "queryString"; "required": false; }; "apiName": { "alias": "apiName"; "required": false; }; "model": { "alias": "model"; "required": false; }; }, {}, never, never, true, never>;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
export { ExportType, GenericReportComponent, GenericReportModule };
|
|
96
|
+
export type { ExportConfig };
|
|
@@ -4,7 +4,7 @@ import * as i1 from '@angular/common';
|
|
|
4
4
|
import { FormGroup } from '@angular/forms';
|
|
5
5
|
import { FormlyFormOptions, FormlyFieldConfig, FieldType, FieldTypeConfig } from '@ngx-formly/core';
|
|
6
6
|
import { TranslateService } from '@ngx-translate/core';
|
|
7
|
-
import {
|
|
7
|
+
import { QueryParameters } from '@elite.framework/ng.core/services';
|
|
8
8
|
|
|
9
9
|
declare class GenericSearchAdvancedModule {
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<GenericSearchAdvancedModule, never>;
|
|
@@ -12,42 +12,13 @@ declare class GenericSearchAdvancedModule {
|
|
|
12
12
|
static ɵinj: i0.ɵɵInjectorDeclaration<GenericSearchAdvancedModule>;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
-
interface ODataQueryParameters {
|
|
16
|
-
filters: FilterCondition[];
|
|
17
|
-
orderBy: OrderByClause[];
|
|
18
|
-
groupBy: string[];
|
|
19
|
-
top?: number;
|
|
20
|
-
skip?: number;
|
|
21
|
-
expand?: string[];
|
|
22
|
-
}
|
|
23
|
-
interface FilterCondition {
|
|
24
|
-
field: string;
|
|
25
|
-
operator: string;
|
|
26
|
-
value: any;
|
|
27
|
-
logicalOperator?: string;
|
|
28
|
-
}
|
|
29
|
-
interface OrderByClause {
|
|
30
|
-
field: string;
|
|
31
|
-
direction: string;
|
|
32
|
-
}
|
|
33
|
-
interface QueryBuilderField {
|
|
34
|
-
key: string | any;
|
|
35
|
-
label: string | any;
|
|
36
|
-
type: string | any;
|
|
37
|
-
operators: string[];
|
|
38
|
-
}
|
|
39
|
-
interface SortBuilderField {
|
|
40
|
-
key: string;
|
|
41
|
-
label: string;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
15
|
declare class GenericSearchAdvanced implements OnInit {
|
|
45
|
-
overlay: Popover;
|
|
46
16
|
translate: TranslateService;
|
|
47
17
|
private queryBuilder;
|
|
48
18
|
drawerVisible: boolean;
|
|
49
19
|
search: EventEmitter<any>;
|
|
50
|
-
|
|
20
|
+
paginationChange: EventEmitter<any>;
|
|
21
|
+
odataSearch: EventEmitter<QueryParameters>;
|
|
51
22
|
form: FormGroup<{}>;
|
|
52
23
|
model: any;
|
|
53
24
|
options: FormlyFormOptions;
|
|
@@ -56,26 +27,51 @@ declare class GenericSearchAdvanced implements OnInit {
|
|
|
56
27
|
enableQueryBuilder: boolean;
|
|
57
28
|
odataConfig: any;
|
|
58
29
|
ngOnInit(): void;
|
|
30
|
+
get filterCount(): any;
|
|
59
31
|
private buildQueryUIFields;
|
|
60
32
|
onSubmit(): void;
|
|
61
33
|
onReset(): void;
|
|
62
|
-
|
|
63
|
-
|
|
34
|
+
toggleDrawer(): void;
|
|
35
|
+
closeDrawer(): void;
|
|
64
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<GenericSearchAdvanced, never>;
|
|
65
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GenericSearchAdvanced, "lib-generic-search-advanced", never, { "model": { "alias": "model"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "enableQueryBuilder": { "alias": "enableQueryBuilder"; "required": false; }; "odataConfig": { "alias": "odataConfig"; "required": false; }; }, { "search": "search"; "odataSearch": "odataSearch"; }, never, never, true, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GenericSearchAdvanced, "lib-generic-search-advanced", never, { "model": { "alias": "model"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "enableQueryBuilder": { "alias": "enableQueryBuilder"; "required": false; }; "odataConfig": { "alias": "odataConfig"; "required": false; }; }, { "search": "search"; "paginationChange": "paginationChange"; "odataSearch": "odataSearch"; }, never, never, true, never>;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
interface QueryBuilderField {
|
|
41
|
+
key: string;
|
|
42
|
+
label: string;
|
|
43
|
+
type: string;
|
|
44
|
+
operators: string[];
|
|
45
|
+
props?: any;
|
|
46
|
+
defaultOperator?: string;
|
|
47
|
+
defaultValue?: any;
|
|
48
|
+
}
|
|
49
|
+
interface SortBuilderField {
|
|
50
|
+
key: string;
|
|
51
|
+
label: string;
|
|
66
52
|
}
|
|
67
53
|
|
|
68
54
|
declare class QueryBuilderService {
|
|
55
|
+
translate: TranslateService;
|
|
56
|
+
private fieldTypeConfig;
|
|
69
57
|
buildQueryUIFields(fields: FormlyFieldConfig[]): FormlyFieldConfig[];
|
|
58
|
+
private getQueryTabs;
|
|
59
|
+
private getFilterTabFields;
|
|
60
|
+
private getSortingTabFields;
|
|
61
|
+
private getPaginationTabFields;
|
|
62
|
+
private getFilterCount;
|
|
70
63
|
private extractFilterableFields;
|
|
71
64
|
private extractSortableFields;
|
|
72
65
|
private extractExpandableFields;
|
|
73
66
|
private traverseFields;
|
|
74
67
|
private mapFieldType;
|
|
75
68
|
private getOperatorsForType;
|
|
76
|
-
buildODataFromQueryModel(model: any, originalFields: FormlyFieldConfig[]):
|
|
77
|
-
toODataQueryString(params:
|
|
78
|
-
|
|
69
|
+
buildODataFromQueryModel(model: any, originalFields: FormlyFieldConfig[]): QueryParameters;
|
|
70
|
+
toODataQueryString(params: QueryParameters): string;
|
|
71
|
+
parseODataQuery(queryString: string): QueryParameters;
|
|
72
|
+
parseODataToQueryModel(queryString: string, originalFields: FormlyFieldConfig[]): any;
|
|
73
|
+
buildODataQueryString(model: any, originalFields: FormlyFieldConfig[]): string;
|
|
74
|
+
getFieldConfig(fieldKey: string, fields: QueryBuilderField[]): any;
|
|
79
75
|
static ɵfac: i0.ɵɵFactoryDeclaration<QueryBuilderService, never>;
|
|
80
76
|
static ɵprov: i0.ɵɵInjectableDeclaration<QueryBuilderService>;
|
|
81
77
|
}
|
|
@@ -86,29 +82,116 @@ declare class SortBuilderComponent extends FieldType<FieldTypeConfig> {
|
|
|
86
82
|
label: string;
|
|
87
83
|
value: string;
|
|
88
84
|
}[];
|
|
85
|
+
private dragStartIndex;
|
|
89
86
|
ngOnInit(): void;
|
|
90
87
|
addSort(): void;
|
|
91
88
|
removeSort(index: number): void;
|
|
89
|
+
moveSort(fromIndex: number, toIndex: number): void;
|
|
90
|
+
onDragStart(index: number): void;
|
|
91
|
+
onDrop(event: any, dropIndex: number): void;
|
|
92
|
+
reverseSorts(): void;
|
|
93
|
+
clearAll(): void;
|
|
94
|
+
getAvailableFields(currentField: string): any;
|
|
95
|
+
getFieldLabel(fieldKey: string): string;
|
|
96
|
+
getDirectionIcon(direction: string): string;
|
|
97
|
+
getDirectionColor(direction: string): string;
|
|
92
98
|
updateValue(): void;
|
|
99
|
+
get isLast(): boolean;
|
|
100
|
+
getSortConfiguration(): any[];
|
|
101
|
+
loadSortConfiguration(sortConfig: any[]): void;
|
|
102
|
+
isFieldUsed(fieldKey: string): boolean;
|
|
103
|
+
getNextAvailableField(): string;
|
|
93
104
|
static ɵfac: i0.ɵɵFactoryDeclaration<SortBuilderComponent, never>;
|
|
94
105
|
static ɵcmp: i0.ɵɵComponentDeclaration<SortBuilderComponent, "formly-sort-builder", never, {}, {}, never, never, true, never>;
|
|
95
106
|
}
|
|
96
107
|
|
|
97
|
-
declare class QueryBuilderComponent extends FieldType<FieldTypeConfig> {
|
|
98
|
-
|
|
108
|
+
declare class QueryBuilderComponent extends FieldType<FieldTypeConfig> implements OnInit {
|
|
109
|
+
private queryBuilderService;
|
|
110
|
+
private cdr;
|
|
111
|
+
private translate;
|
|
112
|
+
groups: any[];
|
|
113
|
+
logicalOperators: {
|
|
114
|
+
label: any;
|
|
115
|
+
value: string;
|
|
116
|
+
}[];
|
|
117
|
+
onAndClick(group: any, event: any): void;
|
|
118
|
+
onOrClick(group: any, event: any): void;
|
|
99
119
|
ngOnInit(): void;
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
120
|
+
getLogicalOperatorText(operator: string): string;
|
|
121
|
+
private initializeDefaultConditions;
|
|
122
|
+
private getDefaultFields;
|
|
123
|
+
private isSupportedFieldType;
|
|
124
|
+
getFieldLabel(key: string): string;
|
|
125
|
+
private createDefaultCondition;
|
|
126
|
+
private initializeConditionsWithFieldConfigs;
|
|
106
127
|
getFieldType(fieldKey: string): string;
|
|
107
|
-
|
|
108
|
-
|
|
128
|
+
getOperatorsForField(fieldKey: string): any[];
|
|
129
|
+
getOperatorLabel(operator: string): {
|
|
130
|
+
label: string;
|
|
131
|
+
icon: string;
|
|
132
|
+
};
|
|
133
|
+
getDefaultOperator(fieldType: string): string;
|
|
134
|
+
getDefaultValue(fieldType: string): any;
|
|
135
|
+
getFieldProps(fieldKey: string): any;
|
|
136
|
+
private generateValueFieldConfig;
|
|
137
|
+
getConditionValueKey(groupIndex: number, conditionIndex: number): string;
|
|
138
|
+
addGroup(): void;
|
|
139
|
+
removeGroup(groupIndex: number): void;
|
|
140
|
+
addCondition(groupIndex?: number): void;
|
|
141
|
+
onFieldChange(condition: any, groupIndex: number, conditionIndex: number): void;
|
|
142
|
+
addConditionToLastGroup(): void;
|
|
143
|
+
removeCondition(groupIndex: number, conditionIndex: number): void;
|
|
144
|
+
updateValue(): void;
|
|
145
|
+
clearAll(): void;
|
|
146
|
+
getQueryStructure(): any;
|
|
147
|
+
loadQueryStructure(queryStructure: any[]): void;
|
|
109
148
|
static ɵfac: i0.ɵɵFactoryDeclaration<QueryBuilderComponent, never>;
|
|
110
149
|
static ɵcmp: i0.ɵɵComponentDeclaration<QueryBuilderComponent, "formly-query-builder", never, {}, {}, never, never, true, never>;
|
|
111
150
|
}
|
|
112
151
|
|
|
113
|
-
|
|
114
|
-
|
|
152
|
+
declare class TabTypeComponent extends FieldType<FormlyFieldConfig> {
|
|
153
|
+
activeTabValue: string;
|
|
154
|
+
ngOnInit(): void;
|
|
155
|
+
resolveBadge(tab: FormlyFieldConfig): any;
|
|
156
|
+
onTabChange(newValue: any): void;
|
|
157
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabTypeComponent, never>;
|
|
158
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabTypeComponent, "formly-tab-type", never, {}, {}, never, never, true, never>;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
interface GroupTypeProps {
|
|
162
|
+
label?: string;
|
|
163
|
+
description?: string;
|
|
164
|
+
collapsible?: boolean;
|
|
165
|
+
collapsedByDefault?: boolean;
|
|
166
|
+
showFieldCount?: boolean;
|
|
167
|
+
showDescription?: boolean;
|
|
168
|
+
showSummary?: boolean;
|
|
169
|
+
showValidation?: boolean;
|
|
170
|
+
compact?: boolean;
|
|
171
|
+
variant?: 'default' | 'card' | 'bordered' | 'transparent';
|
|
172
|
+
columns?: number;
|
|
173
|
+
gap?: 'none' | 'small' | 'normal' | 'large';
|
|
174
|
+
actions?: {
|
|
175
|
+
icon: string;
|
|
176
|
+
tooltip: string;
|
|
177
|
+
styleClass?: string;
|
|
178
|
+
handler?: (field: FormlyFieldConfig, form: any, component: any) => void;
|
|
179
|
+
}[];
|
|
180
|
+
}
|
|
181
|
+
declare class GroupTypeComponent extends FieldType<FormlyFieldConfig<GroupTypeProps>> {
|
|
182
|
+
collapsed: boolean;
|
|
183
|
+
get showValidation(): boolean;
|
|
184
|
+
get validationIcon(): "pi pi-check-circle text-green-500" | "pi pi-exclamation-circle text-red-500" | "pi pi-circle text-500";
|
|
185
|
+
get validationText(): "جميع الحقول صالحة" | "هناك أخطاء في بعض الحقول";
|
|
186
|
+
get groupClass(): any;
|
|
187
|
+
get gridClass(): string;
|
|
188
|
+
toggle(): void;
|
|
189
|
+
isRequired(): boolean;
|
|
190
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GroupTypeComponent, never>;
|
|
191
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GroupTypeComponent, "formly-group-type", never, {}, {}, never, never, true, never>;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
declare const formlyConfig: i0.Provider;
|
|
195
|
+
|
|
196
|
+
export { GenericSearchAdvanced, GenericSearchAdvancedModule, GroupTypeComponent, QueryBuilderComponent, QueryBuilderService, SortBuilderComponent, TabTypeComponent, formlyConfig };
|
|
197
|
+
export type { GroupTypeProps, QueryBuilderField, SortBuilderField };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elite.framework/ng.ui.core",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.78",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^20.1.0",
|
|
6
6
|
"@angular/core": "^20.1.0"
|
|
@@ -24,14 +24,14 @@
|
|
|
24
24
|
"types": "./base-crud/index.d.ts",
|
|
25
25
|
"default": "./fesm2022/elite.framework-ng.ui.core-base-crud.mjs"
|
|
26
26
|
},
|
|
27
|
-
"./breadcrumb": {
|
|
28
|
-
"types": "./breadcrumb/index.d.ts",
|
|
29
|
-
"default": "./fesm2022/elite.framework-ng.ui.core-breadcrumb.mjs"
|
|
30
|
-
},
|
|
31
27
|
"./checkbox": {
|
|
32
28
|
"types": "./checkbox/index.d.ts",
|
|
33
29
|
"default": "./fesm2022/elite.framework-ng.ui.core-checkbox.mjs"
|
|
34
30
|
},
|
|
31
|
+
"./breadcrumb": {
|
|
32
|
+
"types": "./breadcrumb/index.d.ts",
|
|
33
|
+
"default": "./fesm2022/elite.framework-ng.ui.core-breadcrumb.mjs"
|
|
34
|
+
},
|
|
35
35
|
"./collapsible": {
|
|
36
36
|
"types": "./collapsible/index.d.ts",
|
|
37
37
|
"default": "./fesm2022/elite.framework-ng.ui.core-collapsible.mjs"
|
|
@@ -48,14 +48,14 @@
|
|
|
48
48
|
"types": "./condition-editor/index.d.ts",
|
|
49
49
|
"default": "./fesm2022/elite.framework-ng.ui.core-condition-editor.mjs"
|
|
50
50
|
},
|
|
51
|
-
"./custom-switch": {
|
|
52
|
-
"types": "./custom-switch/index.d.ts",
|
|
53
|
-
"default": "./fesm2022/elite.framework-ng.ui.core-custom-switch.mjs"
|
|
54
|
-
},
|
|
55
51
|
"./datepicker": {
|
|
56
52
|
"types": "./datepicker/index.d.ts",
|
|
57
53
|
"default": "./fesm2022/elite.framework-ng.ui.core-datepicker.mjs"
|
|
58
54
|
},
|
|
55
|
+
"./custom-switch": {
|
|
56
|
+
"types": "./custom-switch/index.d.ts",
|
|
57
|
+
"default": "./fesm2022/elite.framework-ng.ui.core-custom-switch.mjs"
|
|
58
|
+
},
|
|
59
59
|
"./deactivation-reason": {
|
|
60
60
|
"types": "./deactivation-reason/index.d.ts",
|
|
61
61
|
"default": "./fesm2022/elite.framework-ng.ui.core-deactivation-reason.mjs"
|
|
@@ -116,6 +116,10 @@
|
|
|
116
116
|
"types": "./generic-autocomplete/index.d.ts",
|
|
117
117
|
"default": "./fesm2022/elite.framework-ng.ui.core-generic-autocomplete.mjs"
|
|
118
118
|
},
|
|
119
|
+
"./generic-button": {
|
|
120
|
+
"types": "./generic-button/index.d.ts",
|
|
121
|
+
"default": "./fesm2022/elite.framework-ng.ui.core-generic-button.mjs"
|
|
122
|
+
},
|
|
119
123
|
"./generic-card": {
|
|
120
124
|
"types": "./generic-card/index.d.ts",
|
|
121
125
|
"default": "./fesm2022/elite.framework-ng.ui.core-generic-card.mjs"
|
|
@@ -128,10 +132,6 @@
|
|
|
128
132
|
"types": "./generic-dialog/index.d.ts",
|
|
129
133
|
"default": "./fesm2022/elite.framework-ng.ui.core-generic-dialog.mjs"
|
|
130
134
|
},
|
|
131
|
-
"./generic-button": {
|
|
132
|
-
"types": "./generic-button/index.d.ts",
|
|
133
|
-
"default": "./fesm2022/elite.framework-ng.ui.core-generic-button.mjs"
|
|
134
|
-
},
|
|
135
135
|
"./generic-errormessage": {
|
|
136
136
|
"types": "./generic-errormessage/index.d.ts",
|
|
137
137
|
"default": "./fesm2022/elite.framework-ng.ui.core-generic-errormessage.mjs"
|
|
@@ -140,29 +140,33 @@
|
|
|
140
140
|
"types": "./generic-formly-fields/index.d.ts",
|
|
141
141
|
"default": "./fesm2022/elite.framework-ng.ui.core-generic-formly-fields.mjs"
|
|
142
142
|
},
|
|
143
|
-
"./generic-search": {
|
|
144
|
-
"types": "./generic-search/index.d.ts",
|
|
145
|
-
"default": "./fesm2022/elite.framework-ng.ui.core-generic-search.mjs"
|
|
146
|
-
},
|
|
147
143
|
"./generic-loadingspinner": {
|
|
148
144
|
"types": "./generic-loadingspinner/index.d.ts",
|
|
149
145
|
"default": "./fesm2022/elite.framework-ng.ui.core-generic-loadingspinner.mjs"
|
|
150
146
|
},
|
|
147
|
+
"./generic-report": {
|
|
148
|
+
"types": "./generic-report/index.d.ts",
|
|
149
|
+
"default": "./fesm2022/elite.framework-ng.ui.core-generic-report.mjs"
|
|
150
|
+
},
|
|
151
|
+
"./generic-search": {
|
|
152
|
+
"types": "./generic-search/index.d.ts",
|
|
153
|
+
"default": "./fesm2022/elite.framework-ng.ui.core-generic-search.mjs"
|
|
154
|
+
},
|
|
151
155
|
"./generic-search-advanced": {
|
|
152
156
|
"types": "./generic-search-advanced/index.d.ts",
|
|
153
157
|
"default": "./fesm2022/elite.framework-ng.ui.core-generic-search-advanced.mjs"
|
|
154
158
|
},
|
|
155
|
-
"./generic-
|
|
156
|
-
"types": "./generic-
|
|
157
|
-
"default": "./fesm2022/elite.framework-ng.ui.core-generic-
|
|
159
|
+
"./generic-selector": {
|
|
160
|
+
"types": "./generic-selector/index.d.ts",
|
|
161
|
+
"default": "./fesm2022/elite.framework-ng.ui.core-generic-selector.mjs"
|
|
158
162
|
},
|
|
159
163
|
"./generic-view": {
|
|
160
164
|
"types": "./generic-view/index.d.ts",
|
|
161
165
|
"default": "./fesm2022/elite.framework-ng.ui.core-generic-view.mjs"
|
|
162
166
|
},
|
|
163
|
-
"./generic-
|
|
164
|
-
"types": "./generic-
|
|
165
|
-
"default": "./fesm2022/elite.framework-ng.ui.core-generic-
|
|
167
|
+
"./generic-table": {
|
|
168
|
+
"types": "./generic-table/index.d.ts",
|
|
169
|
+
"default": "./fesm2022/elite.framework-ng.ui.core-generic-table.mjs"
|
|
166
170
|
},
|
|
167
171
|
"./header-wrapper": {
|
|
168
172
|
"types": "./header-wrapper/index.d.ts",
|