@colijnit/corecomponents_v12 255.1.4 → 255.1.6
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 +26 -2
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/colijnit-corecomponents_v12.metadata.json +1 -1
- package/esm2015/lib/components/list-of-icons/list-of-icons.component.js +31 -4
- package/esm2015/lib/core/enum/core-components-icon.enum.js +3 -1
- package/esm2015/lib/core/model/core-components-icon-svg.js +3 -1
- package/fesm2015/colijnit-corecomponents_v12.js +34 -3
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/button/style/_layout.scss +1 -1
- package/lib/components/co-dialog/style/_material-definition.scss +1 -1
- package/lib/components/list-of-icons/list-of-icons.component.d.ts +6 -1
- package/lib/components/list-of-icons/style/_layout.scss +35 -6
- package/lib/core/enum/core-components-icon.enum.d.ts +2 -0
- package/lib/style/_variables.scss +1 -1
- package/package.json +1 -1
|
@@ -11,7 +11,7 @@ $cc-co-dialog-header-padding: 0 0 10px 0 !default;
|
|
|
11
11
|
$cc-co-dialog-header-margin: 0 0 10px 0 !default;
|
|
12
12
|
$cc-co-dialog-header-border-style: solid !default;
|
|
13
13
|
$cc-co-dialog-header-border-color: $cc-color-border !default;
|
|
14
|
-
$cc-co-dialog-header-border-width: 0 0
|
|
14
|
+
$cc-co-dialog-header-border-width: 0 0 0 0 !default;
|
|
15
15
|
$cc-co-dialog-header-close-button-background-color: transparent !default;
|
|
16
16
|
$cc-co-dialog-header-close-button-right: 20px !default;
|
|
17
17
|
$cc-co-dialog-header-close-button-top: 10px !default;
|
|
@@ -2,6 +2,7 @@ import { EventEmitter, OnInit } from "@angular/core";
|
|
|
2
2
|
import { IconCacheService } from "../icon/icon-cache.service";
|
|
3
3
|
import { IconListItem } from "../../model/icon-list-item";
|
|
4
4
|
export declare class ListOfIconsComponent implements OnInit {
|
|
5
|
+
iconCacheService: IconCacheService;
|
|
5
6
|
icons: IconCacheService;
|
|
6
7
|
set collection(value: IconListItem[]);
|
|
7
8
|
get collection(): IconListItem[];
|
|
@@ -11,9 +12,13 @@ export declare class ListOfIconsComponent implements OnInit {
|
|
|
11
12
|
showClass(): boolean;
|
|
12
13
|
readonly Icon: any;
|
|
13
14
|
showMenu: boolean;
|
|
15
|
+
showSubCategories: boolean;
|
|
14
16
|
private _collection;
|
|
15
|
-
|
|
17
|
+
subCategories: IconListItem[];
|
|
18
|
+
constructor(iconCacheService: IconCacheService, icons: IconCacheService);
|
|
16
19
|
ngOnInit(): void;
|
|
17
20
|
toggleMenu(): void;
|
|
18
21
|
selectItem(item: IconListItem): void;
|
|
22
|
+
handlePickingCategoryClicked(subCategory: IconListItem): void;
|
|
23
|
+
onClickOutside(): void;
|
|
19
24
|
}
|
|
@@ -55,16 +55,15 @@
|
|
|
55
55
|
position: absolute;
|
|
56
56
|
top: 100%;
|
|
57
57
|
left: 0;
|
|
58
|
-
|
|
59
|
-
|
|
58
|
+
width: 65px;
|
|
59
|
+
padding-top: 10px;
|
|
60
|
+
box-shadow: -3px 0px 16px 1px rgba(0, 0, 0, 0.2);
|
|
61
|
+
border-radius: 5px;
|
|
62
|
+
background: #FFF;
|
|
60
63
|
|
|
61
64
|
.icon-item {
|
|
62
65
|
margin-bottom: 12px;
|
|
63
66
|
|
|
64
|
-
&:last-of-type {
|
|
65
|
-
margin: 0;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
67
|
&.active {
|
|
69
68
|
flex-direction: column;
|
|
70
69
|
|
|
@@ -79,6 +78,36 @@
|
|
|
79
78
|
}
|
|
80
79
|
}
|
|
81
80
|
}
|
|
81
|
+
|
|
82
|
+
.picking-type-wrapper {
|
|
83
|
+
position: absolute;
|
|
84
|
+
top: 106px;
|
|
85
|
+
left: 100%;
|
|
86
|
+
z-index: 1;
|
|
87
|
+
padding-top: 8px;
|
|
88
|
+
//box-shadow: -3px 0px 16px 1px rgba(0, 0, 0, 0.2);
|
|
89
|
+
box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.2), 4px 0px 10px rgba(0, 0, 0, 0.2), 0px 4px 10px rgba(0, 0, 0, 0.2);
|
|
90
|
+
border-radius: 5px;
|
|
91
|
+
background: #FFF;
|
|
92
|
+
|
|
93
|
+
.button-wrapper {
|
|
94
|
+
display: flex;
|
|
95
|
+
flex-direction: column;
|
|
96
|
+
align-items: center;
|
|
97
|
+
justify-content: center;
|
|
98
|
+
width: 65px;
|
|
99
|
+
margin-bottom: 8px;
|
|
100
|
+
text-align: center;
|
|
101
|
+
|
|
102
|
+
&:hover {
|
|
103
|
+
co-icon svg *,
|
|
104
|
+
span {
|
|
105
|
+
fill: $color-action;
|
|
106
|
+
color: $color-action;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
}
|
|
82
111
|
}
|
|
83
112
|
}
|
|
84
113
|
|
|
@@ -27,6 +27,7 @@ export declare enum CoreComponentsIcon {
|
|
|
27
27
|
Barcode = "Barcode",
|
|
28
28
|
BigMac = "big_mac",
|
|
29
29
|
Boxes = "boxes",
|
|
30
|
+
BoxesPackingRegular = "boxes_packing_regular",
|
|
30
31
|
Brush = "brush",
|
|
31
32
|
BrushRoundOpen = "brush_round_open",
|
|
32
33
|
BuildingColumns = "building_columns",
|
|
@@ -212,6 +213,7 @@ export declare enum CoreComponentsIcon {
|
|
|
212
213
|
RangeSelect = "range_select",
|
|
213
214
|
Rectangles = "rectangles",
|
|
214
215
|
Refresh = "refresh",
|
|
216
|
+
RegularBoxesPackingCircleCheck = "regular_boxes_packing_circle_check",
|
|
215
217
|
Relations = "relations",
|
|
216
218
|
Remark = "remark",
|
|
217
219
|
RemarkRoundOpen = "remark_round_open",
|
|
@@ -154,7 +154,7 @@ $cc-radiobutton-color-action: #5FDCB3 !default;
|
|
|
154
154
|
|
|
155
155
|
/* dialog */
|
|
156
156
|
$cc-dialog-header-title-font-size: 14px !default;
|
|
157
|
-
$cc-dialog-header-title-margin: 0 0
|
|
157
|
+
$cc-dialog-header-title-margin: 0 0 0 0 !default;
|
|
158
158
|
$cc-dialog-header-title-font-weight: bold !default;
|
|
159
159
|
$cc-dialog-footer-justify-content: center !default;
|
|
160
160
|
$cc-dialog-footer-column-gap: 10px !default;
|