@libs-ui/components-list 0.2.216 → 0.2.218
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/defines/list.define.d.ts +1 -1
- package/esm2022/interfaces/config-item.interface.mjs +1 -1
- package/fesm2022/libs-ui-components-list.mjs.map +1 -1
- package/interfaces/config-item.interface.d.ts +8 -8
- package/list.component.d.ts +1 -1
- package/package.json +23 -23
- package/templates/templates.component.abstract.d.ts +1 -1
|
@@ -10,7 +10,7 @@ import { TYPE_TEMPLATE } from "./templates-type.type";
|
|
|
10
10
|
import { Observable } from "rxjs";
|
|
11
11
|
import { WritableSignal } from "@angular/core";
|
|
12
12
|
import { TYPE_FUNCTION, TYPE_OBJECT } from "@libs-ui/interfaces-types";
|
|
13
|
-
import {
|
|
13
|
+
import { LibsUiComponentsComponentOutletComponent } from "@libs-ui/components-component-outlet";
|
|
14
14
|
export type TYPE_LIST_ITEM = WritableSignal<TYPE_OBJECT>;
|
|
15
15
|
export interface IListConfigItem {
|
|
16
16
|
type: TYPE_TEMPLATE;
|
|
@@ -64,7 +64,7 @@ export interface IListConfigItemText {
|
|
|
64
64
|
getAvatarConfig?: (item: any) => IAvatarConfig;
|
|
65
65
|
getConfigAlignStart?: (item: any) => boolean;
|
|
66
66
|
stylePaddingRightItemOther?: boolean;
|
|
67
|
-
getComponentOutlet?: () => Observable<
|
|
67
|
+
getComponentOutlet?: () => Observable<LibsUiComponentsComponentOutletComponent | any>;
|
|
68
68
|
getDataComponentOutlet?: TYPE_FUNCTION;
|
|
69
69
|
}
|
|
70
70
|
export interface IListConfigItemTag extends IListConfigItemText {
|
|
@@ -89,7 +89,7 @@ export interface IListConfigItemRadio {
|
|
|
89
89
|
classItemInclude?: string;
|
|
90
90
|
getImage?: (data: IDataFunctionCallInConfig) => Observable<string>;
|
|
91
91
|
getImageError?: (data: IDataFunctionCallInConfig) => Observable<string>;
|
|
92
|
-
getComponentOutlet?: () => Observable<
|
|
92
|
+
getComponentOutlet?: () => Observable<LibsUiComponentsComponentOutletComponent | any>;
|
|
93
93
|
getDataComponentOutlet?: TYPE_FUNCTION;
|
|
94
94
|
}
|
|
95
95
|
export interface IListConfigItemCheckbox {
|
|
@@ -127,7 +127,7 @@ export interface IListConfigItemCheckbox {
|
|
|
127
127
|
classIncludeLastViewItem?: string;
|
|
128
128
|
classInclude?: string;
|
|
129
129
|
autoScrollToItemSelected?: boolean;
|
|
130
|
-
getComponentOutlet?: () => Observable<
|
|
130
|
+
getComponentOutlet?: () => Observable<LibsUiComponentsComponentOutletComponent | any>;
|
|
131
131
|
getDataComponentOutlet?: TYPE_FUNCTION;
|
|
132
132
|
}
|
|
133
133
|
export interface IListConfigItemTextRow {
|
|
@@ -144,7 +144,7 @@ export interface IListConfigItemTextRow {
|
|
|
144
144
|
getImageError?: (item: IDataFunctionCallInConfig) => Observable<string>;
|
|
145
145
|
getPopoverConfig?: (item: any) => Observable<IPopoverOverlay>;
|
|
146
146
|
getAvatarConfig?: (item: any) => IAvatarConfig;
|
|
147
|
-
getComponentOutlet?: () => Observable<
|
|
147
|
+
getComponentOutlet?: () => Observable<LibsUiComponentsComponentOutletComponent | any>;
|
|
148
148
|
getDataComponentOutlet?: TYPE_FUNCTION;
|
|
149
149
|
}
|
|
150
150
|
export interface IDataFunctionCallInConfig {
|
|
@@ -165,7 +165,7 @@ export interface IListConfigItemTextCol {
|
|
|
165
165
|
getButton?: (item: any, index: number) => IButton | undefined;
|
|
166
166
|
getLabelSwitch?: (item: any, index: number) => ILabel | undefined;
|
|
167
167
|
getAvatarConfig?: (item: any) => IAvatarConfig;
|
|
168
|
-
getComponentOutlet?: () => Observable<
|
|
168
|
+
getComponentOutlet?: () => Observable<LibsUiComponentsComponentOutletComponent | any>;
|
|
169
169
|
getDataComponentOutlet?: TYPE_FUNCTION;
|
|
170
170
|
}
|
|
171
171
|
export interface IListConfigItemGroup {
|
|
@@ -188,7 +188,7 @@ export interface IListConfigItemGroup {
|
|
|
188
188
|
getDescriptionGroupWhenNoData?: (group: any) => string | undefined;
|
|
189
189
|
getButtonGroup?: (group: any) => IButton;
|
|
190
190
|
getIconEmptyDataInGroup?: (group: any) => boolean;
|
|
191
|
-
getComponentOutletGroup?: () => Observable<
|
|
191
|
+
getComponentOutletGroup?: () => Observable<LibsUiComponentsComponentOutletComponent | any>;
|
|
192
192
|
getDataComponentOutletGroup?: TYPE_FUNCTION;
|
|
193
193
|
ignoreCheckboxGroup?: boolean;
|
|
194
194
|
classIncludeNodata?: string;
|
|
@@ -210,7 +210,7 @@ export interface IListConfigItemGroup {
|
|
|
210
210
|
getExpandItem?: (group: any) => boolean;
|
|
211
211
|
getBonusPaddingLeftItem?: (item: any, parentItem?: any) => number;
|
|
212
212
|
getClassIncludeItemNoData?: (item: any, parentItem?: any) => string;
|
|
213
|
-
getComponentOutletItem?: () => Observable<
|
|
213
|
+
getComponentOutletItem?: () => Observable<LibsUiComponentsComponentOutletComponent | any>;
|
|
214
214
|
getDataComponentOutletItem?: TYPE_FUNCTION;
|
|
215
215
|
ignoreCheckboxItem?: boolean;
|
|
216
216
|
ignoreRadioItem?: boolean;
|
package/list.component.d.ts
CHANGED
|
@@ -56,7 +56,7 @@ export declare class LibsUiComponentsListComponent implements OnInit, OnDestroy
|
|
|
56
56
|
readonly validRequired: import("@angular/core").InputSignal<IValidRequired | undefined>;
|
|
57
57
|
readonly showValidateBottom: import("@angular/core").InputSignal<boolean | undefined>;
|
|
58
58
|
readonly zIndex: import("@angular/core").InputSignal<number | undefined>;
|
|
59
|
-
readonly loadingIconSize: import("@angular/core").InputSignal<"
|
|
59
|
+
readonly loadingIconSize: import("@angular/core").InputSignal<"large" | "medium" | "small" | "smaller" | undefined>;
|
|
60
60
|
readonly templateRefSearchNoData: import("@angular/core").InputSignal<TemplateRef<any> | undefined>;
|
|
61
61
|
readonly resetKeyWhenSelectAllKeyDropdown: import("@angular/core").InputSignal<boolean | undefined>;
|
|
62
62
|
readonly ignoreClassDisableDefaultWhenUseKeysDisableItem: import("@angular/core").InputSignal<boolean | undefined>;
|
package/package.json
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@libs-ui/components-list",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.218",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^18.2.0",
|
|
6
6
|
"@angular/core": "^18.2.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.218",
|
|
8
|
+
"@libs-ui/components-avatar": "^0.2.218",
|
|
9
|
+
"@libs-ui/components-badge": "^0.2.218",
|
|
10
|
+
"@libs-ui/components-buttons-button": "^0.2.218",
|
|
11
|
+
"@libs-ui/components-buttons-sort": "^0.2.218",
|
|
12
|
+
"@libs-ui/components-checkbox-group": "^0.2.218",
|
|
13
|
+
"@libs-ui/components-label": "^0.2.218",
|
|
14
|
+
"@libs-ui/components-popover": "^0.2.218",
|
|
15
|
+
"@libs-ui/services-http-request": "^0.2.218",
|
|
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.218",
|
|
18
|
+
"@libs-ui/components-inputs-input": "^0.2.218",
|
|
19
|
+
"@libs-ui/components-inputs-search": "^0.2.218",
|
|
20
|
+
"@libs-ui/components-inputs-valid": "^0.2.218",
|
|
21
|
+
"@libs-ui/services-dynamic-component": "^0.2.218",
|
|
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.218",
|
|
25
|
+
"@libs-ui/components-scroll-overlay": "^0.2.218",
|
|
26
|
+
"@libs-ui/components-spinner": "^0.2.218",
|
|
27
|
+
"@libs-ui/icons": "^0.2.218",
|
|
28
|
+
"@libs-ui/pipes-call-function-in-template": "^0.2.218",
|
|
29
|
+
"@libs-ui/pipes-convert-object-to-signal": "^0.2.218",
|
|
30
|
+
"@libs-ui/components-radio-single": "^0.2.218",
|
|
31
|
+
"@libs-ui/components-switch": "^0.2.218"
|
|
32
32
|
},
|
|
33
33
|
"sideEffects": false,
|
|
34
34
|
"module": "fesm2022/libs-ui-components-list.mjs",
|
|
@@ -50,7 +50,7 @@ export declare abstract class LibsUiComponentsListTemplatesComponentAbstract imp
|
|
|
50
50
|
readonly disable: import("@angular/core").InputSignal<boolean | undefined>;
|
|
51
51
|
readonly disableLabel: import("@angular/core").InputSignal<boolean | undefined>;
|
|
52
52
|
readonly zIndex: import("@angular/core").InputSignal<number>;
|
|
53
|
-
readonly loadingIconSize: import("@angular/core").InputSignal<"
|
|
53
|
+
readonly loadingIconSize: import("@angular/core").InputSignal<"large" | "medium" | "small" | "smaller" | undefined>;
|
|
54
54
|
readonly resetKeyWhenSelectAllKeyDropdown: import("@angular/core").InputSignal<boolean | undefined>;
|
|
55
55
|
readonly ignoreClassDisableDefaultWhenUseKeysDisableItem: import("@angular/core").InputSignal<boolean | undefined>;
|
|
56
56
|
readonly templateRefSearchNoData: import("@angular/core").InputSignal<TemplateRef<any> | undefined>;
|