@libs-ui/components-list 0.2.356-9 → 0.2.357-1
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 +605 -216
- package/esm2022/defines/list.define.mjs +2 -2
- package/esm2022/highlight-key-search/highlight-key-search.directive.mjs +1 -1
- package/esm2022/interfaces/config-item.interface.mjs +1 -1
- package/esm2022/list.component.mjs +5 -5
- package/esm2022/templates/checkbox/checkbox.component.mjs +6 -6
- package/esm2022/templates/group/group.component.mjs +31 -36
- package/esm2022/templates/group/item/item.component.mjs +5 -5
- package/esm2022/templates/radio/radio.component.mjs +4 -4
- package/esm2022/templates/rows/rows.component.mjs +3 -3
- package/esm2022/templates/tag/tag.component.mjs +5 -5
- package/esm2022/templates/templates.component.abstract.mjs +30 -20
- package/esm2022/templates/text/text.component.mjs +8 -6
- package/fesm2022/libs-ui-components-list.mjs +90 -83
- package/fesm2022/libs-ui-components-list.mjs.map +1 -1
- package/highlight-key-search/highlight-key-search.directive.d.ts +1 -1
- package/interfaces/config-item.interface.d.ts +3 -3
- package/list.component.d.ts +13 -13
- package/package.json +26 -23
- package/templates/group/group.component.d.ts +3 -3
|
@@ -4,7 +4,7 @@ export declare class LibsUiComponentsListHighlightKeySearchDirective implements
|
|
|
4
4
|
readonly isHighlight: import("@angular/core").InputSignal<boolean | undefined>;
|
|
5
5
|
readonly keySearch: import("@angular/core").InputSignal<string | undefined>;
|
|
6
6
|
readonly classHighlight: import("@angular/core").InputSignal<string>;
|
|
7
|
-
private elementRef;
|
|
7
|
+
private readonly elementRef;
|
|
8
8
|
ngAfterViewInit(): void;
|
|
9
9
|
protected handlerHighlight(element: Node): void;
|
|
10
10
|
protected checkAndReplace(node: Node): void;
|
|
@@ -29,9 +29,9 @@ export interface IListConfigItem {
|
|
|
29
29
|
paddingLeftItem?: boolean;
|
|
30
30
|
sort?: (items: Array<any>) => void;
|
|
31
31
|
hasIconNoData?: boolean;
|
|
32
|
-
ignoreShowDataWhenNotSearch?: boolean
|
|
33
|
-
ignoreFixHeightShowDataWhenNotSearch?: boolean
|
|
34
|
-
highlightTextSearchInResult?: boolean
|
|
32
|
+
ignoreShowDataWhenNotSearch?: boolean;
|
|
33
|
+
ignoreFixHeightShowDataWhenNotSearch?: boolean;
|
|
34
|
+
highlightTextSearchInResult?: boolean;
|
|
35
35
|
heightItem?: number;
|
|
36
36
|
minHeightItem?: number;
|
|
37
37
|
}
|
package/list.component.d.ts
CHANGED
|
@@ -29,18 +29,18 @@ export declare class LibsUiComponentsListComponent implements OnInit, OnDestroy
|
|
|
29
29
|
protected isErrorRequired: import("@angular/core").WritableSignal<boolean>;
|
|
30
30
|
protected loading: import("@angular/core").WritableSignal<boolean>;
|
|
31
31
|
protected keySearchStore: import("@angular/core").WritableSignal<string | undefined>;
|
|
32
|
-
private onSearch;
|
|
33
|
-
private onRefresh;
|
|
34
|
-
private onSetHiddenItemByKey;
|
|
35
|
-
private onUpdateMultiKeySelectedGroup;
|
|
36
|
-
private onRemoveItems;
|
|
37
|
-
private onUpdateData;
|
|
38
|
-
private cleanUpEffect;
|
|
39
|
-
private isDestroyed;
|
|
32
|
+
private readonly onSearch;
|
|
33
|
+
private readonly onRefresh;
|
|
34
|
+
private readonly onSetHiddenItemByKey;
|
|
35
|
+
private readonly onUpdateMultiKeySelectedGroup;
|
|
36
|
+
private readonly onRemoveItems;
|
|
37
|
+
private readonly onUpdateData;
|
|
38
|
+
private readonly cleanUpEffect;
|
|
39
|
+
private readonly isDestroyed;
|
|
40
40
|
private componentRef?;
|
|
41
|
-
private configData;
|
|
42
|
-
private groupMultiKeySelected;
|
|
43
|
-
private functionControlInputSearch;
|
|
41
|
+
private readonly configData;
|
|
42
|
+
private readonly groupMultiKeySelected;
|
|
43
|
+
private readonly functionControlInputSearch;
|
|
44
44
|
readonly hiddenInputSearch: import("@angular/core").InputSignalWithTransform<boolean, boolean | undefined>;
|
|
45
45
|
readonly dropdownTabKeyActive: import("@angular/core").InputSignal<string | undefined>;
|
|
46
46
|
readonly keySearch: import("@angular/core").InputSignal<string | undefined>;
|
|
@@ -91,8 +91,8 @@ export declare class LibsUiComponentsListComponent implements OnInit, OnDestroy
|
|
|
91
91
|
}>;
|
|
92
92
|
protected listViewElementRef: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
93
93
|
protected contentElementRef: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
94
|
-
private dynamicComponentService;
|
|
95
|
-
private destroyRef;
|
|
94
|
+
private readonly dynamicComponentService;
|
|
95
|
+
private readonly destroyRef;
|
|
96
96
|
constructor();
|
|
97
97
|
ngOnInit(): void;
|
|
98
98
|
get FunctionsControl(): IListFunctionControlEvent;
|
package/package.json
CHANGED
|
@@ -1,34 +1,37 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@libs-ui/components-list",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.357-1",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": ">=18.0.0",
|
|
6
6
|
"@angular/core": ">=18.0.0",
|
|
7
|
-
"@libs-ui/utils": "0.2.
|
|
8
|
-
"@libs-ui/components-avatar": "0.2.
|
|
9
|
-
"@libs-ui/components-badge": "0.2.
|
|
10
|
-
"@libs-ui/components-buttons-button": "0.2.
|
|
11
|
-
"@libs-ui/components-buttons-sort": "0.2.
|
|
12
|
-
"@libs-ui/components-checkbox-group": "0.2.
|
|
13
|
-
"@libs-ui/components-label": "0.2.
|
|
14
|
-
"@libs-ui/components-popover": "0.2.
|
|
15
|
-
"@libs-ui/services-http-request": "0.2.
|
|
7
|
+
"@libs-ui/utils": "0.2.357-1",
|
|
8
|
+
"@libs-ui/components-avatar": "0.2.357-1",
|
|
9
|
+
"@libs-ui/components-badge": "0.2.357-1",
|
|
10
|
+
"@libs-ui/components-buttons-button": "0.2.357-1",
|
|
11
|
+
"@libs-ui/components-buttons-sort": "0.2.357-1",
|
|
12
|
+
"@libs-ui/components-checkbox-group": "0.2.357-1",
|
|
13
|
+
"@libs-ui/components-label": "0.2.357-1",
|
|
14
|
+
"@libs-ui/components-popover": "0.2.357-1",
|
|
15
|
+
"@libs-ui/services-http-request": "0.2.357-1",
|
|
16
16
|
"rxjs": "~7.8.0",
|
|
17
|
-
"@libs-ui/interfaces-types": "0.2.
|
|
18
|
-
"@libs-ui/components-inputs-input": "0.2.
|
|
19
|
-
"@libs-ui/components-inputs-search": "0.2.
|
|
20
|
-
"@libs-ui/components-inputs-valid": "0.2.
|
|
21
|
-
"@libs-ui/services-dynamic-component": "0.2.
|
|
17
|
+
"@libs-ui/interfaces-types": "0.2.357-1",
|
|
18
|
+
"@libs-ui/components-inputs-input": "0.2.357-1",
|
|
19
|
+
"@libs-ui/components-inputs-search": "0.2.357-1",
|
|
20
|
+
"@libs-ui/components-inputs-valid": "0.2.357-1",
|
|
21
|
+
"@libs-ui/services-dynamic-component": "0.2.357-1",
|
|
22
22
|
"@ngx-translate/core": "^15.0.0",
|
|
23
23
|
"@iharbeck/ngx-virtual-scroller": "15.2.0",
|
|
24
|
-
"@libs-ui/components-checkbox-single": "0.2.
|
|
25
|
-
"@libs-ui/components-scroll-overlay": "0.2.
|
|
26
|
-
"@libs-ui/components-spinner": "0.2.
|
|
27
|
-
"@libs-ui/icons": "0.2.
|
|
28
|
-
"@libs-ui/pipes-call-function-in-template": "0.2.
|
|
29
|
-
"@libs-ui/pipes-convert-object-to-signal": "0.2.
|
|
30
|
-
"@libs-ui/components-radio-single": "0.2.
|
|
31
|
-
"@libs-ui/components-switch": "0.2.
|
|
24
|
+
"@libs-ui/components-checkbox-single": "0.2.357-1",
|
|
25
|
+
"@libs-ui/components-scroll-overlay": "0.2.357-1",
|
|
26
|
+
"@libs-ui/components-spinner": "0.2.357-1",
|
|
27
|
+
"@libs-ui/icons": "0.2.357-1",
|
|
28
|
+
"@libs-ui/pipes-call-function-in-template": "0.2.357-1",
|
|
29
|
+
"@libs-ui/pipes-convert-object-to-signal": "0.2.357-1",
|
|
30
|
+
"@libs-ui/components-radio-single": "0.2.357-1",
|
|
31
|
+
"@libs-ui/components-switch": "0.2.357-1",
|
|
32
|
+
"@libs-ui/components-component-outlet": "0.2.357-1",
|
|
33
|
+
"@libs-ui/pipes-convert-signal-to-object": "0.2.357-1",
|
|
34
|
+
"@libs-ui/pipes-get-value-of-object": "0.2.357-1"
|
|
32
35
|
},
|
|
33
36
|
"sideEffects": false,
|
|
34
37
|
"module": "fesm2022/libs-ui-components-list.mjs",
|
|
@@ -13,9 +13,9 @@ export declare class LibsUiComponentsListGroupComponent extends LibsUiComponents
|
|
|
13
13
|
protected calculatorHeighItemSuccess: WritableSignal<boolean>;
|
|
14
14
|
protected keyFetch: WritableSignal<string>;
|
|
15
15
|
private readonly PATTERN_FAKE_ID;
|
|
16
|
-
private mappingItemsChecked;
|
|
17
|
-
private selectFirstItem;
|
|
18
|
-
private firstItemSelected;
|
|
16
|
+
private readonly mappingItemsChecked;
|
|
17
|
+
private readonly selectFirstItem;
|
|
18
|
+
private readonly firstItemSelected;
|
|
19
19
|
ngOnInit(): void;
|
|
20
20
|
protected handlerCheckedOrUnCheckedAll(checked: boolean): void;
|
|
21
21
|
protected checkedGroupItems(items?: Array<WritableSignal<any>>, parent?: WritableSignal<any>): void;
|