@colijnit/corecomponents_v12 260.1.4 → 260.1.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/bundles/colijnit-corecomponents_v12.umd.js +48 -12
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/colijnit-corecomponents_v12.metadata.json +1 -1
- package/esm2015/lib/components/hour-scheduling-expandable/components/hour-scheduling-expandable-template/hour-scheduling-expandable-template.component.js +36 -33
- package/esm2015/lib/components/hour-scheduling-expandable/hour-scheduling-expandable.component.js +10 -5
- package/esm2015/lib/components/list-of-values/list-of-values-popup.component.js +59 -31
- package/esm2015/lib/components/list-of-values/list-of-values.component.js +4 -1
- package/esm2015/lib/components/list-of-values/list-of-values.module.js +4 -2
- package/fesm2015/colijnit-corecomponents_v12.js +106 -66
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/hour-scheduling-expandable/components/hour-scheduling-expandable-template/hour-scheduling-expandable-template.component.d.ts +1 -1
- package/lib/components/list-of-values/list-of-values-popup.component.d.ts +4 -0
- package/lib/components/list-of-values/list-of-values.component.d.ts +1 -0
- package/lib/components/list-of-values/style/_layout.scss +7 -0
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { TemplateRef } from
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
2
|
import { SchedulingObject } from '../../../hour-scheduling/model/enum/scheduling-object.interface';
|
|
3
3
|
export declare class HourSchedulingExpandableTemplateComponent {
|
|
4
4
|
private _objects;
|
|
@@ -13,6 +13,7 @@ export declare class ListOfValuesPopupComponent implements OnInit {
|
|
|
13
13
|
set inputSearch(component: InputSearchComponent);
|
|
14
14
|
model: any;
|
|
15
15
|
multiselect: boolean;
|
|
16
|
+
showToggleAll: boolean;
|
|
16
17
|
displayField: string;
|
|
17
18
|
searchPlaceholder: string;
|
|
18
19
|
customCssClass: string;
|
|
@@ -30,6 +31,7 @@ export declare class ListOfValuesPopupComponent implements OnInit {
|
|
|
30
31
|
viewModels: lovViewModel[];
|
|
31
32
|
viewModelsMain: lovViewModel[];
|
|
32
33
|
highLightModel: lovViewModel;
|
|
34
|
+
allSelected: boolean;
|
|
33
35
|
private _collection;
|
|
34
36
|
private _searchTerm;
|
|
35
37
|
private _lovItems;
|
|
@@ -43,6 +45,8 @@ export declare class ListOfValuesPopupComponent implements OnInit {
|
|
|
43
45
|
selectOptionAndClosePopup(): void;
|
|
44
46
|
selectOptions(): void;
|
|
45
47
|
selectNextOption(back?: boolean): void;
|
|
48
|
+
selectAll(): void;
|
|
49
|
+
toggleAll(): void;
|
|
46
50
|
private _prepareViewModelsMain;
|
|
47
51
|
private _prepareViewModels;
|
|
48
52
|
private _scrollIntoView;
|
|
@@ -21,6 +21,7 @@ export declare class ListOfValuesComponent extends BaseInputComponent<any> imple
|
|
|
21
21
|
get model(): any;
|
|
22
22
|
parentForOverlay: ElementRef;
|
|
23
23
|
multiselect: boolean;
|
|
24
|
+
showToggleAll: boolean;
|
|
24
25
|
largeCollection: boolean;
|
|
25
26
|
displayField: string;
|
|
26
27
|
optionIcon: string;
|
|
@@ -154,5 +154,12 @@
|
|
|
154
154
|
background-color: $cc-co-list-of-values-lov-options-li-selected;
|
|
155
155
|
color: $cc-co-list-of-values-lov-options-li-selected-text-color;
|
|
156
156
|
}
|
|
157
|
+
|
|
158
|
+
.gap {
|
|
159
|
+
display: flex;
|
|
160
|
+
align-items: center;
|
|
161
|
+
gap: 0.1em;
|
|
162
|
+
padding: 0.25em;
|
|
163
|
+
}
|
|
157
164
|
}
|
|
158
165
|
}
|