@colijnit/corecomponents_v12 12.0.117 → 12.0.118
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 +19 -6
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/colijnit-corecomponents_v12.metadata.json +1 -1
- package/esm2015/lib/components/co-dialog/co-dialog.component.js +2 -2
- package/esm2015/lib/components/icon/icon.component.js +9 -3
- package/esm2015/lib/components/input-date-picker/input-date-picker.component.js +4 -1
- package/esm2015/lib/components/simple-grid/simple-grid.component.js +4 -4
- package/fesm2015/colijnit-corecomponents_v12.js +15 -6
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/icon/icon.component.d.ts +2 -1
- package/lib/components/input-number-picker/style/_layout.scss +5 -1
- package/lib/components/input-number-picker/style/_material-definition.scss +1 -1
- package/package.json +1 -1
|
@@ -5,10 +5,11 @@ import { IconCacheService } from './icon-cache.service';
|
|
|
5
5
|
export declare class IconComponent implements OnInit {
|
|
6
6
|
private _iconCache;
|
|
7
7
|
set icon(value: CoreComponentsIcon);
|
|
8
|
-
iconData: SafeHtml | undefined;
|
|
8
|
+
set iconData(value: SafeHtml | undefined);
|
|
9
9
|
showClass: boolean;
|
|
10
10
|
innerIconData: SafeHtml | undefined;
|
|
11
11
|
private _icon;
|
|
12
|
+
private _iconData;
|
|
12
13
|
constructor(_iconCache: IconCacheService);
|
|
13
14
|
ngOnInit(): void;
|
|
14
15
|
private _prepareIcon;
|
|
@@ -19,8 +19,12 @@
|
|
|
19
19
|
cursor: pointer;
|
|
20
20
|
height: 100%;
|
|
21
21
|
width: auto;
|
|
22
|
-
|
|
22
|
+
aspect-ratio: 1;
|
|
23
23
|
max-height: $cc-co-input-number-picker-icon-max-height;
|
|
24
|
+
svg {
|
|
25
|
+
height: $cc-co-input-number-picker-icon-size;
|
|
26
|
+
width: $cc-co-input-number-picker-icon-size;
|
|
27
|
+
}
|
|
24
28
|
}
|
|
25
29
|
.spacer {
|
|
26
30
|
height: 100%;
|
|
@@ -8,7 +8,7 @@ $cc-co-input-number-picker-text-align: center !default;
|
|
|
8
8
|
$cc-co-input-number-picker-border: $cc-input-border-width solid $cc-input-border-color !default;
|
|
9
9
|
$cc-co-input-number-picker-border-color: $cc-input-border-color !default;
|
|
10
10
|
$cc-co-input-number-picker-border-radius: $cc-input-border-radius !default;
|
|
11
|
-
$cc-co-input-number-picker-icon-
|
|
11
|
+
$cc-co-input-number-picker-icon-size: 50% !default;
|
|
12
12
|
$cc-co-input-number-picker-icon-max-height: 80px !default;
|
|
13
13
|
|
|
14
14
|
$cc-co-input-number-picker-spacer-width: $cc-input-border-width !default;
|