@colijnit/corecomponents_v12 258.1.0 → 258.1.2

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.
@@ -7,4 +7,6 @@ export declare class HourSchedulingExpandableTemplateComponent {
7
7
  onSelectBlock: Function;
8
8
  showClass(): boolean;
9
9
  onExpandableDragStart(event: DragEvent, obj: Object, onDragStartCustom: Function): void;
10
+ leftForObject(index: number, objects: Object[]): number;
11
+ widthForObject(index: number, objects: Object[]): number;
10
12
  }
@@ -1,4 +1,8 @@
1
1
  @include export-module('cc-hour-scheduling-expandable-template-layout') {
2
2
  .co-hour-scheduling-expandable-template {
3
+ .row {
4
+ display: flex;
5
+ flex-direction: row;
6
+ }
3
7
  }
4
8
  }
@@ -9,8 +9,12 @@
9
9
 
10
10
  .custom-scheduled-object {
11
11
  position: absolute;
12
- width: calc(100% - 55px);
13
- left: 55px;
12
+ &:first-child {
13
+ left: calc(55px + var(--left));
14
+ }
15
+ left: var(--left);
16
+ width: calc(var(--width) - 55px);
17
+
14
18
  top: var(--top);
15
19
  height: var(--height);
16
20
  cursor: grab;
@@ -8,9 +8,11 @@ export declare class ListOfValuesComponent extends BaseInputComponent<any> imple
8
8
  get model(): any;
9
9
  parentForOverlay: ElementRef;
10
10
  multiselect: boolean;
11
+ largeCollection: boolean;
11
12
  displayField: string;
12
13
  set collection(value: any[]);
13
14
  get collection(): any[];
15
+ collectionLoadFn: Function;
14
16
  leftIconData: SafeHtml | undefined;
15
17
  searchPlaceholder: string;
16
18
  label: string;
@@ -20,12 +22,18 @@ export declare class ListOfValuesComponent extends BaseInputComponent<any> imple
20
22
  showClass(): boolean;
21
23
  isSelectOpen: boolean;
22
24
  state: string;
25
+ filterText: string;
23
26
  selectedModel: string;
24
27
  selectedModels: string[];
28
+ filteredCollection: any[];
29
+ isLoading: boolean;
25
30
  private _collection;
31
+ private debounceTimeout;
26
32
  private _lovPopupComponentRef;
27
33
  ngOnInit(): void;
28
34
  handleInputModelChange(model: string): void;
35
+ onModelChange(text: string): void;
36
+ applyFilter(text: string): Promise<[]>;
29
37
  handleInputKeyDown(event: KeyboardEvent): boolean;
30
38
  clearModel(event: MouseEvent): void;
31
39
  toggleSelect(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/corecomponents_v12",
3
- "version": "258.1.0",
3
+ "version": "258.1.2",
4
4
  "description": "Colijn IT core components for Angular 12",
5
5
  "private": false,
6
6
  "peerDependencies": {