@leanix/components 0.2.222 → 0.2.225
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/bundles/leanix-components.umd.js +13 -1
- package/bundles/leanix-components.umd.js.map +1 -1
- package/esm2015/lib/forms-ui/components/drag-and-drop-list/drag-and-drop-list.component.js +14 -2
- package/esm2015/lib/forms-ui/components/drag-and-drop-list/drag-and-drop-list.component.js.map +1 -1
- package/fesm2015/leanix-components.js +13 -1
- package/fesm2015/leanix-components.js.map +1 -1
- package/lib/forms-ui/components/drag-and-drop-list/drag-and-drop-list.component.d.ts +3 -1
- package/package.json +1 -1
@@ -26,6 +26,8 @@ export declare class DragAndDropListComponent implements AfterContentInit, OnIni
|
|
26
26
|
*/
|
27
27
|
items?: any[];
|
28
28
|
itemIdProperty?: string;
|
29
|
+
color?: 'default' | 'gray';
|
30
|
+
fontSize?: 'normal' | 'big';
|
29
31
|
/**
|
30
32
|
* Use the moveToIndex Output in favor of moveItem,
|
31
33
|
* when moving is restricted to one item through this.draggableItem.
|
@@ -50,5 +52,5 @@ export declare class DragAndDropListComponent implements AfterContentInit, OnIni
|
|
50
52
|
dropToIndex(item: any, previousIndex: number, currentIndex: number): void;
|
51
53
|
trackById(_index: number, item: any): any;
|
52
54
|
static ɵfac: i0.ɵɵFactoryDeclaration<DragAndDropListComponent, never>;
|
53
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DragAndDropListComponent, "lx-drag-and-drop-list", never, { "label": "label"; "labelFontWeight": "labelFontWeight"; "items": "items"; "itemIdProperty": "itemIdProperty"; }, { "moveToIndex": "moveToIndex"; "moveItem": "moveItem"; }, ["itemTemplateRef", "_items"], never>;
|
55
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DragAndDropListComponent, "lx-drag-and-drop-list", never, { "label": "label"; "labelFontWeight": "labelFontWeight"; "items": "items"; "itemIdProperty": "itemIdProperty"; "color": "color"; "fontSize": "fontSize"; }, { "moveToIndex": "moveToIndex"; "moveItem": "moveItem"; }, ["itemTemplateRef", "_items"], never>;
|
54
56
|
}
|