@libs-ui/components-list 0.2.344-3 → 0.2.344-5
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/esm2022/interfaces/config-item.interface.mjs +1 -1
- package/esm2022/templates/group/group.component.mjs +6 -5
- package/esm2022/templates/group/item/item.component.mjs +4 -4
- package/fesm2022/libs-ui-components-list.mjs +8 -7
- package/fesm2022/libs-ui-components-list.mjs.map +1 -1
- package/interfaces/config-item.interface.d.ts +5 -4
- package/package.json +23 -23
|
@@ -1,16 +1,16 @@
|
|
|
1
|
+
import { WritableSignal } from '@angular/core';
|
|
1
2
|
import { IAvatarConfig } from '@libs-ui/components-avatar';
|
|
2
3
|
import { IBadge } from '@libs-ui/components-badge';
|
|
3
4
|
import { IButton } from '@libs-ui/components-buttons-button';
|
|
4
5
|
import { ISort } from '@libs-ui/components-buttons-sort';
|
|
5
6
|
import { ICheckboxItem } from '@libs-ui/components-checkbox-group';
|
|
7
|
+
import { LibsUiComponentsComponentOutletComponent } from '@libs-ui/components-component-outlet';
|
|
6
8
|
import { ILabel } from '@libs-ui/components-label';
|
|
7
9
|
import { IPopover, IPopoverOverlay, TYPE_POPOVER_EVENT } from '@libs-ui/components-popover';
|
|
10
|
+
import { TYPE_FUNCTION, TYPE_OBJECT } from '@libs-ui/interfaces-types';
|
|
8
11
|
import { IHttpRequestConfig } from '@libs-ui/services-http-request';
|
|
9
|
-
import { TYPE_TEMPLATE } from './templates-type.type';
|
|
10
12
|
import { Observable } from 'rxjs';
|
|
11
|
-
import {
|
|
12
|
-
import { TYPE_FUNCTION, TYPE_OBJECT } from '@libs-ui/interfaces-types';
|
|
13
|
-
import { LibsUiComponentsComponentOutletComponent } from '@libs-ui/components-component-outlet';
|
|
13
|
+
import { TYPE_TEMPLATE } from './templates-type.type';
|
|
14
14
|
export type TYPE_LIST_ITEM = WritableSignal<TYPE_OBJECT>;
|
|
15
15
|
export interface IListConfigItem {
|
|
16
16
|
type: TYPE_TEMPLATE;
|
|
@@ -218,6 +218,7 @@ export interface IListConfigItemGroup {
|
|
|
218
218
|
getClassIncludeItemNoData?: (item: any, parentItem?: any) => string;
|
|
219
219
|
getComponentOutletItem?: () => Observable<LibsUiComponentsComponentOutletComponent | any>;
|
|
220
220
|
getDataComponentOutletItem?: TYPE_FUNCTION;
|
|
221
|
+
getIsAcceptSelectItem?: (item: any, parentItem?: any) => boolean;
|
|
221
222
|
ignoreCheckboxItem?: boolean;
|
|
222
223
|
ignoreRadioItem?: boolean;
|
|
223
224
|
notChangeStateItemCheckOther?: boolean;
|
package/package.json
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@libs-ui/components-list",
|
|
3
|
-
"version": "0.2.344-
|
|
3
|
+
"version": "0.2.344-5",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": ">=18.0.0",
|
|
6
6
|
"@angular/core": ">=18.0.0",
|
|
7
|
-
"@libs-ui/utils": "0.2.344-
|
|
8
|
-
"@libs-ui/components-avatar": "0.2.344-
|
|
9
|
-
"@libs-ui/components-badge": "0.2.344-
|
|
10
|
-
"@libs-ui/components-buttons-button": "0.2.344-
|
|
11
|
-
"@libs-ui/components-buttons-sort": "0.2.344-
|
|
12
|
-
"@libs-ui/components-checkbox-group": "0.2.344-
|
|
13
|
-
"@libs-ui/components-label": "0.2.344-
|
|
14
|
-
"@libs-ui/components-popover": "0.2.344-
|
|
15
|
-
"@libs-ui/services-http-request": "0.2.344-
|
|
7
|
+
"@libs-ui/utils": "0.2.344-5",
|
|
8
|
+
"@libs-ui/components-avatar": "0.2.344-5",
|
|
9
|
+
"@libs-ui/components-badge": "0.2.344-5",
|
|
10
|
+
"@libs-ui/components-buttons-button": "0.2.344-5",
|
|
11
|
+
"@libs-ui/components-buttons-sort": "0.2.344-5",
|
|
12
|
+
"@libs-ui/components-checkbox-group": "0.2.344-5",
|
|
13
|
+
"@libs-ui/components-label": "0.2.344-5",
|
|
14
|
+
"@libs-ui/components-popover": "0.2.344-5",
|
|
15
|
+
"@libs-ui/services-http-request": "0.2.344-5",
|
|
16
16
|
"rxjs": "~7.8.0",
|
|
17
|
-
"@libs-ui/interfaces-types": "0.2.344-
|
|
18
|
-
"@libs-ui/components-inputs-input": "0.2.344-
|
|
19
|
-
"@libs-ui/components-inputs-search": "0.2.344-
|
|
20
|
-
"@libs-ui/components-inputs-valid": "0.2.344-
|
|
21
|
-
"@libs-ui/services-dynamic-component": "0.2.344-
|
|
17
|
+
"@libs-ui/interfaces-types": "0.2.344-5",
|
|
18
|
+
"@libs-ui/components-inputs-input": "0.2.344-5",
|
|
19
|
+
"@libs-ui/components-inputs-search": "0.2.344-5",
|
|
20
|
+
"@libs-ui/components-inputs-valid": "0.2.344-5",
|
|
21
|
+
"@libs-ui/services-dynamic-component": "0.2.344-5",
|
|
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.344-
|
|
25
|
-
"@libs-ui/components-scroll-overlay": "0.2.344-
|
|
26
|
-
"@libs-ui/components-spinner": "0.2.344-
|
|
27
|
-
"@libs-ui/icons": "0.2.344-
|
|
28
|
-
"@libs-ui/pipes-call-function-in-template": "0.2.344-
|
|
29
|
-
"@libs-ui/pipes-convert-object-to-signal": "0.2.344-
|
|
30
|
-
"@libs-ui/components-radio-single": "0.2.344-
|
|
31
|
-
"@libs-ui/components-switch": "0.2.344-
|
|
24
|
+
"@libs-ui/components-checkbox-single": "0.2.344-5",
|
|
25
|
+
"@libs-ui/components-scroll-overlay": "0.2.344-5",
|
|
26
|
+
"@libs-ui/components-spinner": "0.2.344-5",
|
|
27
|
+
"@libs-ui/icons": "0.2.344-5",
|
|
28
|
+
"@libs-ui/pipes-call-function-in-template": "0.2.344-5",
|
|
29
|
+
"@libs-ui/pipes-convert-object-to-signal": "0.2.344-5",
|
|
30
|
+
"@libs-ui/components-radio-single": "0.2.344-5",
|
|
31
|
+
"@libs-ui/components-switch": "0.2.344-5"
|
|
32
32
|
},
|
|
33
33
|
"sideEffects": false,
|
|
34
34
|
"module": "fesm2022/libs-ui-components-list.mjs",
|