@valtimo/components 13.36.1 → 13.38.0
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/valtimo-components.mjs +1034 -734
- package/fesm2022/valtimo-components.mjs.map +1 -1
- package/lib/components/carbon-list/carbon-list.component.d.ts +41 -3
- package/lib/components/carbon-list/carbon-list.component.d.ts.map +1 -1
- package/lib/modules/custom-formio-component/create-custom-component.d.ts +1 -0
- package/lib/modules/custom-formio-component/create-custom-component.d.ts.map +1 -1
- package/package.json +5 -5
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { AfterViewInit, ElementRef, EventEmitter, OnDestroy, OnInit, TemplateRef } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy, OnInit, TemplateRef } from '@angular/core';
|
|
2
2
|
import { FormControl } from '@angular/forms';
|
|
3
3
|
import { TranslateService } from '@ngx-translate/core';
|
|
4
4
|
import { SortState } from '@valtimo/document';
|
|
5
|
+
import { SearchField } from '@valtimo/shared';
|
|
5
6
|
import { IconService, PaginationModel, PaginationTranslations, TableHeaderItem, TableModel } from 'carbon-components-angular';
|
|
6
7
|
import { NGXLogger } from 'ngx-logger';
|
|
7
8
|
import { BehaviorSubject, Observable } from 'rxjs';
|
|
@@ -22,6 +23,7 @@ export declare class CarbonListComponent implements OnInit, AfterViewInit, OnDes
|
|
|
22
23
|
private readonly keyStateService;
|
|
23
24
|
private readonly dragAndDropService;
|
|
24
25
|
private readonly elementRef;
|
|
26
|
+
private readonly cdr;
|
|
25
27
|
actionsMenuTemplate: TemplateRef<any>;
|
|
26
28
|
actionTemplate: TemplateRef<any>;
|
|
27
29
|
booleanTemplate: TemplateRef<any>;
|
|
@@ -34,6 +36,7 @@ export declare class CarbonListComponent implements OnInit, AfterViewInit, OnDes
|
|
|
34
36
|
private _completeDataSource;
|
|
35
37
|
private readonly _items$;
|
|
36
38
|
private readonly _skeletonRowCount$;
|
|
39
|
+
private _skeletonRowCountSet;
|
|
37
40
|
private get _items();
|
|
38
41
|
get items(): CarbonListItem[];
|
|
39
42
|
set items(value: CarbonListItem[]);
|
|
@@ -61,6 +64,12 @@ export declare class CarbonListComponent implements OnInit, AfterViewInit, OnDes
|
|
|
61
64
|
set initialSortState(value: SortState);
|
|
62
65
|
set sortState(value: SortState);
|
|
63
66
|
isSearchable: boolean;
|
|
67
|
+
set initialSearchValue(value: string | null);
|
|
68
|
+
private _initialSearchValue;
|
|
69
|
+
searchActive: boolean;
|
|
70
|
+
searchDebounceMs: number;
|
|
71
|
+
invalidSearchFields: string[];
|
|
72
|
+
searchFields: SearchField[];
|
|
64
73
|
enableSingleSelection: boolean;
|
|
65
74
|
/**
|
|
66
75
|
* @deprecated The lastColumnTemplate field is deprecated. Any template column can be added through the **@Input field**.
|
|
@@ -74,6 +83,8 @@ export declare class CarbonListComponent implements OnInit, AfterViewInit, OnDes
|
|
|
74
83
|
movingRowsEnabled: boolean;
|
|
75
84
|
dragAndDrop: boolean;
|
|
76
85
|
dragAndDropDisabled: boolean;
|
|
86
|
+
expandedRowTemplate: TemplateRef<any>;
|
|
87
|
+
expandedRowKey: string;
|
|
77
88
|
rowClicked: EventEmitter<any>;
|
|
78
89
|
paginationClicked: EventEmitter<number>;
|
|
79
90
|
paginationSet: EventEmitter<any>;
|
|
@@ -91,13 +102,20 @@ export declare class CarbonListComponent implements OnInit, AfterViewInit, OnDes
|
|
|
91
102
|
skeletonModel: TableModel;
|
|
92
103
|
paginationModel: PaginationModel;
|
|
93
104
|
searchFormControl: FormControl<string>;
|
|
105
|
+
showAutocomplete: boolean;
|
|
106
|
+
filteredSuggestions: SearchField[];
|
|
107
|
+
selectedSuggestionIndex: number;
|
|
108
|
+
autocompleteLeft: number;
|
|
109
|
+
private _lastExecutedSearch;
|
|
110
|
+
private _searchInputElement;
|
|
94
111
|
private static readonly PAGINATION_SIZE;
|
|
95
112
|
private readonly _subscriptions;
|
|
113
|
+
private readonly _expandedRowKeys;
|
|
96
114
|
get selectedItems(): CarbonListItem[];
|
|
97
115
|
private readonly _viewInitialized$;
|
|
98
116
|
get viewInitialized$(): Observable<boolean>;
|
|
99
117
|
get model(): TableModel;
|
|
100
|
-
constructor(ellipsisPipe: EllipsisPipe, filterPipe: CarbonListFilterPipe, iconService: IconService, logger: NGXLogger, translateService: TranslateService, viewContentService: ViewContentService, keyStateService: KeyStateService, dragAndDropService: CarbonListDragAndDropService, elementRef: ElementRef);
|
|
118
|
+
constructor(ellipsisPipe: EllipsisPipe, filterPipe: CarbonListFilterPipe, iconService: IconService, logger: NGXLogger, translateService: TranslateService, viewContentService: ViewContentService, keyStateService: KeyStateService, dragAndDropService: CarbonListDragAndDropService, elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
101
119
|
ngOnInit(): void;
|
|
102
120
|
ngAfterViewInit(): void;
|
|
103
121
|
ngOnDestroy(): void;
|
|
@@ -140,7 +158,27 @@ export declare class CarbonListComponent implements OnInit, AfterViewInit, OnDes
|
|
|
140
158
|
private resolveObject;
|
|
141
159
|
private swapItems;
|
|
142
160
|
private resolveTagObject;
|
|
161
|
+
getSearchSegments(): Array<{
|
|
162
|
+
text: string;
|
|
163
|
+
isInvalid: boolean;
|
|
164
|
+
}>;
|
|
165
|
+
private getSearchInputElement;
|
|
166
|
+
private getCurrentFieldToken;
|
|
167
|
+
onSearchFocus(): void;
|
|
168
|
+
updateAutocomplete(): void;
|
|
169
|
+
private calculateTokenLeft;
|
|
170
|
+
selectSuggestion(field: SearchField): void;
|
|
171
|
+
onSearchKeydown(event: KeyboardEvent): void;
|
|
172
|
+
onSearchBlur(): void;
|
|
173
|
+
onSearchClear(): void;
|
|
174
|
+
private executeSearch;
|
|
175
|
+
onSearchEnter(): void;
|
|
176
|
+
private _searchOpen;
|
|
177
|
+
onSearchOpenChange(isOpen: boolean): void;
|
|
178
|
+
onSearchFocusOut(event: FocusEvent): void;
|
|
179
|
+
private _captureExpandedRows;
|
|
180
|
+
private _restoreExpandedRows;
|
|
143
181
|
static ɵfac: i0.ɵɵFactoryDeclaration<CarbonListComponent, never>;
|
|
144
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CarbonListComponent, "valtimo-carbon-list", never, { "items": { "alias": "items"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "tableTranslations": { "alias": "tableTranslations"; "required": false; }; "paginatorConfig": { "alias": "paginatorConfig"; "required": false; }; "pagination": { "alias": "pagination"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "skeletonRowCount": { "alias": "skeletonRowCount"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "actionItems": { "alias": "actionItems"; "required": false; }; "showActionItems": { "alias": "showActionItems"; "required": false; }; "header": { "alias": "header"; "required": false; }; "hideColumnHeader": { "alias": "hideColumnHeader"; "required": false; }; "initialSortState": { "alias": "initialSortState"; "required": false; }; "sortState": { "alias": "sortState"; "required": false; }; "isSearchable": { "alias": "isSearchable"; "required": false; }; "enableSingleSelection": { "alias": "enableSingleSelection"; "required": false; }; "lastColumnTemplate": { "alias": "lastColumnTemplate"; "required": false; }; "paginationIdentifier": { "alias": "paginationIdentifier"; "required": false; }; "showSelectionColumn": { "alias": "showSelectionColumn"; "required": false; }; "striped": { "alias": "striped"; "required": false; }; "hideToolbar": { "alias": "hideToolbar"; "required": false; }; "lockedTooltipTranslationKey": { "alias": "lockedTooltipTranslationKey"; "required": false; }; "movingRowsEnabled": { "alias": "movingRowsEnabled"; "required": false; }; "dragAndDrop": { "alias": "dragAndDrop"; "required": false; }; "dragAndDropDisabled": { "alias": "dragAndDropDisabled"; "required": false; }; }, { "rowClicked": "rowClicked"; "paginationClicked": "paginationClicked"; "paginationSet": "paginationSet"; "search": "search"; "sortChanged": "sortChanged"; "moveRow": "moveRow"; "itemsReordered": "itemsReordered"; }, never, ["[header]", "[tabs]", "[carbonToolbarActions]", "[carbonToolbarContent]", "*"], false, never>;
|
|
182
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CarbonListComponent, "valtimo-carbon-list", never, { "items": { "alias": "items"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "tableTranslations": { "alias": "tableTranslations"; "required": false; }; "paginatorConfig": { "alias": "paginatorConfig"; "required": false; }; "pagination": { "alias": "pagination"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "skeletonRowCount": { "alias": "skeletonRowCount"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "actionItems": { "alias": "actionItems"; "required": false; }; "showActionItems": { "alias": "showActionItems"; "required": false; }; "header": { "alias": "header"; "required": false; }; "hideColumnHeader": { "alias": "hideColumnHeader"; "required": false; }; "initialSortState": { "alias": "initialSortState"; "required": false; }; "sortState": { "alias": "sortState"; "required": false; }; "isSearchable": { "alias": "isSearchable"; "required": false; }; "initialSearchValue": { "alias": "initialSearchValue"; "required": false; }; "searchDebounceMs": { "alias": "searchDebounceMs"; "required": false; }; "invalidSearchFields": { "alias": "invalidSearchFields"; "required": false; }; "searchFields": { "alias": "searchFields"; "required": false; }; "enableSingleSelection": { "alias": "enableSingleSelection"; "required": false; }; "lastColumnTemplate": { "alias": "lastColumnTemplate"; "required": false; }; "paginationIdentifier": { "alias": "paginationIdentifier"; "required": false; }; "showSelectionColumn": { "alias": "showSelectionColumn"; "required": false; }; "striped": { "alias": "striped"; "required": false; }; "hideToolbar": { "alias": "hideToolbar"; "required": false; }; "lockedTooltipTranslationKey": { "alias": "lockedTooltipTranslationKey"; "required": false; }; "movingRowsEnabled": { "alias": "movingRowsEnabled"; "required": false; }; "dragAndDrop": { "alias": "dragAndDrop"; "required": false; }; "dragAndDropDisabled": { "alias": "dragAndDropDisabled"; "required": false; }; "expandedRowTemplate": { "alias": "expandedRowTemplate"; "required": false; }; "expandedRowKey": { "alias": "expandedRowKey"; "required": false; }; }, { "rowClicked": "rowClicked"; "paginationClicked": "paginationClicked"; "paginationSet": "paginationSet"; "search": "search"; "sortChanged": "sortChanged"; "moveRow": "moveRow"; "itemsReordered": "itemsReordered"; }, never, ["[header]", "[tabs]", "[carbonToolbarActions]", "[carbonToolbarContent]", "*"], false, never>;
|
|
145
183
|
}
|
|
146
184
|
//# sourceMappingURL=carbon-list.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"carbon-list.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/components/src/lib/components/carbon-list/carbon-list.component.ts"],"names":[],"mappings":"AAeA,OAAO,EACL,aAAa,
|
|
1
|
+
{"version":3,"file":"carbon-list.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/components/src/lib/components/carbon-list/carbon-list.component.ts"],"names":[],"mappings":"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"}
|
|
@@ -22,6 +22,7 @@ export declare function createCustomFormioComponent(customComponentOptions: Form
|
|
|
22
22
|
attach(element: HTMLElement): any;
|
|
23
23
|
useWrapper(): boolean;
|
|
24
24
|
setValue(value: any): boolean;
|
|
25
|
+
bindCustomOptions(): void;
|
|
25
26
|
readonly maskOptions: {
|
|
26
27
|
label: any;
|
|
27
28
|
value: any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-custom-component.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/components/src/lib/modules/custom-formio-component/create-custom-component.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAC,yBAAyB,EAAE,mBAAmB,EAAc,MAAM,mBAAmB,CAAC;AAE9F,OAAO,EAAC,WAAW,EAAE,uBAAuB,EAAC,MAAM,cAAc,CAAC;AAKlE,wBAAgB,2BAA2B,CAAC,sBAAsB,EAAE,yBAAyB;oBA0ErE,uBAAuB,WAChC,GAAG,QACN,GAAG;;;+BArEa,mBAAmB;;;;;;;;;;;;;mBAmEvB,uBAAuB;6BAoBf,GAAG,SAAS,MAAM;wBASvB,WAAW;;
|
|
1
|
+
{"version":3,"file":"create-custom-component.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/components/src/lib/modules/custom-formio-component/create-custom-component.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAC,yBAAyB,EAAE,mBAAmB,EAAc,MAAM,mBAAmB,CAAC;AAE9F,OAAO,EAAC,WAAW,EAAE,uBAAuB,EAAC,MAAM,cAAc,CAAC;AAKlE,wBAAgB,2BAA2B,CAAC,sBAAsB,EAAE,yBAAyB;oBA0ErE,uBAAuB,WAChC,GAAG,QACN,GAAG;;;+BArEa,mBAAmB;;;;;;;;;;;;;mBAmEvB,uBAAuB;6BAoBf,GAAG,SAAS,MAAM;wBASvB,WAAW;;8BA8FV,OAAO;6BAmBH,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0BA9LC,WAAW;;EAiN/C"}
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@valtimo/components",
|
|
3
3
|
"license": "EUPL-1.2",
|
|
4
|
-
"version": "13.
|
|
4
|
+
"version": "13.38.0",
|
|
5
5
|
"peerDependencies": {
|
|
6
|
-
"@angular/common": "19.2.
|
|
7
|
-
"@angular/core": "19.2.
|
|
8
|
-
"@angular/elements": "19.2.
|
|
6
|
+
"@angular/common": "19.2.25",
|
|
7
|
+
"@angular/core": "19.2.25",
|
|
8
|
+
"@angular/elements": "19.2.25"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@foxythemes/bootstrap-datetime-picker-bs4": "2.3.5",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"uuid": "11.1.0",
|
|
33
33
|
"@floating-ui/dom": "1.7.4",
|
|
34
34
|
"flatpickr": "4.6.13",
|
|
35
|
-
"lodash": "4.
|
|
35
|
+
"lodash": "4.18.1",
|
|
36
36
|
"jwt-decode": "4.0.0",
|
|
37
37
|
"deepmerge-ts": "7.1.5",
|
|
38
38
|
"@carbon/charts-angular": "1.23.6",
|