@wolkabout/commons 0.0.35 → 0.0.38
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 +17 -17
- package/fesm2022/wolkabout-commons.mjs +263 -272
- package/fesm2022/wolkabout-commons.mjs.map +1 -1
- package/package.json +16 -16
- package/{index.d.ts → types/wolkabout-commons.d.ts} +3 -3
package/package.json
CHANGED
|
@@ -1,38 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wolkabout/commons",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.38",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/cdk": "^
|
|
6
|
-
"@angular/common": "^
|
|
7
|
-
"@angular/core": "^
|
|
8
|
-
"@angular/forms": "^
|
|
9
|
-
"@angular/google-maps": "^
|
|
10
|
-
"@angular/material": "^
|
|
11
|
-
"@angular/platform-browser": "^
|
|
12
|
-
"@angular/router": "^
|
|
5
|
+
"@angular/cdk": "^21.2.0",
|
|
6
|
+
"@angular/common": "^21.2.0",
|
|
7
|
+
"@angular/core": "^21.2.0",
|
|
8
|
+
"@angular/forms": "^21.2.0",
|
|
9
|
+
"@angular/google-maps": "^21.2.0",
|
|
10
|
+
"@angular/material": "^21.2.0",
|
|
11
|
+
"@angular/platform-browser": "^21.2.0",
|
|
12
|
+
"@angular/router": "^21.2.0",
|
|
13
13
|
"@googlemaps/markerclusterer": "^2.6.2",
|
|
14
|
-
"@material/material-color-utilities": "^0.
|
|
14
|
+
"@material/material-color-utilities": "^0.4.0",
|
|
15
15
|
"@ngx-translate/core": "^17.0.0",
|
|
16
16
|
"echarts": ">=5.0.0",
|
|
17
17
|
"jwt-decode": "^4.0.0",
|
|
18
18
|
"luxon": "^3.7.2",
|
|
19
|
-
"ngx-drag-drop": "^
|
|
20
|
-
"ngx-echarts": "
|
|
21
|
-
"ngx-mat-timepicker": "^
|
|
19
|
+
"ngx-drag-drop": "^21.0.0",
|
|
20
|
+
"ngx-echarts": "21.0.0",
|
|
21
|
+
"ngx-mat-timepicker": "^21.0.0",
|
|
22
22
|
"rxjs": "~7.8.2"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"tslib": "^2.
|
|
25
|
+
"tslib": "^2.8.1"
|
|
26
26
|
},
|
|
27
27
|
"sideEffects": false,
|
|
28
28
|
"module": "fesm2022/wolkabout-commons.mjs",
|
|
29
|
-
"typings": "
|
|
29
|
+
"typings": "types/wolkabout-commons.d.ts",
|
|
30
30
|
"exports": {
|
|
31
31
|
"./package.json": {
|
|
32
32
|
"default": "./package.json"
|
|
33
33
|
},
|
|
34
34
|
".": {
|
|
35
|
-
"types": "./
|
|
35
|
+
"types": "./types/wolkabout-commons.d.ts",
|
|
36
36
|
"default": "./fesm2022/wolkabout-commons.mjs"
|
|
37
37
|
}
|
|
38
38
|
}
|
|
@@ -9,7 +9,7 @@ import { TranslateService, MissingTranslationHandler, MissingTranslationHandlerP
|
|
|
9
9
|
import { DateAdapter, ErrorStateMatcher } from '@angular/material/core';
|
|
10
10
|
import * as ngx_echarts from 'ngx-echarts';
|
|
11
11
|
import { ThemeOption } from 'ngx-echarts';
|
|
12
|
-
import { ControlValueAccessor, AbstractControl, ValidationErrors, NgControl, FormControl,
|
|
12
|
+
import { ControlValueAccessor, AbstractControl, ValidationErrors, NgControl, FormControl, Validator, FormGroup, FormGroupDirective, NgForm, ValidatorFn } from '@angular/forms';
|
|
13
13
|
import { Overlay } from '@angular/cdk/overlay';
|
|
14
14
|
import { MatAutocompleteTrigger, MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
|
|
15
15
|
import { EChartsOption } from 'echarts';
|
|
@@ -1006,6 +1006,7 @@ declare class NestedListViewComponent<ItemType> {
|
|
|
1006
1006
|
children: _angular_core.WritableSignal<NestedListItem<ItemType>[]>;
|
|
1007
1007
|
filteredChildren: _angular_core.Signal<NestedListItem<ItemType>[]>;
|
|
1008
1008
|
itemSelected: _angular_core.OutputEmitterRef<ItemType | null>;
|
|
1009
|
+
itemTemplate: _angular_core.InputSignal<TemplateRef<any> | null>;
|
|
1009
1010
|
constructor(destroyRef: DestroyRef, dialog: MatDialog);
|
|
1010
1011
|
private initiateState;
|
|
1011
1012
|
selectBreadcrumb(item: NestedListItem<ItemType>): void;
|
|
@@ -1015,9 +1016,8 @@ declare class NestedListViewComponent<ItemType> {
|
|
|
1015
1016
|
shouldDisableBreadcrumbClick(item: NestedListItem<ItemType>): boolean | "" | null | undefined;
|
|
1016
1017
|
isAsyncIcon(item: NestedListItem<ItemType>): LoadedIcon | null;
|
|
1017
1018
|
isSvgIcon(item: NestedListItem<ItemType>): SvgIcon | null;
|
|
1018
|
-
formControlAction(params?: any): void;
|
|
1019
1019
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NestedListViewComponent<any>, never>;
|
|
1020
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NestedListViewComponent<any>, "app-nested-list-view", never, { "dataSource": { "alias": "dataSource"; "required": true; "isSignal": true; }; "dataControl": { "alias": "dataControl"; "required": true; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "disableThresholdId": { "alias": "disableThresholdId"; "required": false; "isSignal": true; }; "hideDetails": { "alias": "hideDetails"; "required": false; "isSignal": true; }; "isColoredInput": { "alias": "isColoredInput"; "required": false; "isSignal": true; }; "searchActions": { "alias": "searchActions"; "required": false; "isSignal": true; }; "selectionConfirmationAction": { "alias": "selectionConfirmationAction"; "required": false; "isSignal": true; }; "hideSearch": { "alias": "hideSearch"; "required": false; "isSignal": true; }; "rootButtonText": { "alias": "rootButtonText"; "required": false; "isSignal": true; }; "enableDrag": { "alias": "enableDrag"; "required": false; "isSignal": true; }; }, { "dragging": "dragging"; "itemSelected": "itemSelected"; }, never, ["[app-no-items-message]", "[app-actions]", "[app-details]"], true, never>;
|
|
1020
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NestedListViewComponent<any>, "app-nested-list-view", never, { "dataSource": { "alias": "dataSource"; "required": true; "isSignal": true; }; "dataControl": { "alias": "dataControl"; "required": true; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "disableThresholdId": { "alias": "disableThresholdId"; "required": false; "isSignal": true; }; "hideDetails": { "alias": "hideDetails"; "required": false; "isSignal": true; }; "isColoredInput": { "alias": "isColoredInput"; "required": false; "isSignal": true; }; "searchActions": { "alias": "searchActions"; "required": false; "isSignal": true; }; "selectionConfirmationAction": { "alias": "selectionConfirmationAction"; "required": false; "isSignal": true; }; "hideSearch": { "alias": "hideSearch"; "required": false; "isSignal": true; }; "rootButtonText": { "alias": "rootButtonText"; "required": false; "isSignal": true; }; "enableDrag": { "alias": "enableDrag"; "required": false; "isSignal": true; }; "itemTemplate": { "alias": "itemTemplate"; "required": false; "isSignal": true; }; }, { "dragging": "dragging"; "itemSelected": "itemSelected"; }, never, ["[app-no-items-message]", "[app-actions]", "[app-details]"], true, never>;
|
|
1021
1021
|
}
|
|
1022
1022
|
|
|
1023
1023
|
declare class PdfViewerComponent {
|