@colijnit/corecomponents_v12 12.0.98 → 12.0.99
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 +8 -46
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/colijnit-corecomponents_v12.metadata.json +1 -1
- package/esm2015/lib/components/filter-item/filter-item.component.js +6 -5
- package/esm2015/lib/directives/observe-visibility/observe-visibility.directive.js +8 -35
- package/fesm2015/colijnit-corecomponents_v12.js +9 -32
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/button/style/_layout.scss +1 -1
- package/lib/components/button/style/_theme.scss +3 -0
- package/lib/components/co-dialog/style/_material-definition.scss +2 -2
- package/lib/components/filter-item/filter-item.component.d.ts +4 -4
- package/lib/components/input-text/style/_layout.scss +1 -1
- package/lib/components/input-text/style/_material-definition.scss +0 -1
- package/lib/components/simple-grid/style/_layout.scss +6 -7
- package/lib/components/simple-grid/style/_material-definition.scss +3 -3
- package/lib/directives/observe-visibility/observe-visibility.directive.d.ts +3 -5
- package/lib/style/_input.mixins.scss +6 -1
- package/lib/style/_variables.scss +11 -5
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
$cc-co-dialog-font-family: $cc-font-family !default;
|
|
2
2
|
$cc-co-dialog-font-size: $cc-font-size-default !default;
|
|
3
|
-
$cc-co-dialog-padding:
|
|
3
|
+
$cc-co-dialog-padding: 30px !default;
|
|
4
4
|
$cc-co-dialog-header-font-family: $cc-font-family !default;
|
|
5
5
|
$cc-co-dialog-header-font-size: $cc-font-size-default !default;
|
|
6
6
|
$cc-co-dialog-header-font-weight: normal !default;
|
|
@@ -23,7 +23,7 @@ $cc-co-dialog-content-font-family: $cc-font-family !default;
|
|
|
23
23
|
$cc-co-dialog-content-font-size: $cc-font-size-default !default;
|
|
24
24
|
$cc-co-dialog-content-text-color: $cc-color-dark !default;
|
|
25
25
|
$cc-co-dialog-content-background-color: $cc-color-light !default;
|
|
26
|
-
$cc-co-dialog-footer-padding:
|
|
26
|
+
$cc-co-dialog-footer-padding: 30px 0 0 0 !default;
|
|
27
27
|
$cc-co-dialog-footer-margin: 10px 0 0 0 !default;
|
|
28
28
|
$cc-co-dialog-footer-font-family: $cc-font-family !default;
|
|
29
29
|
$cc-co-dialog-footer-font-size: $cc-font-size-default !default;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from
|
|
2
|
-
import { CoreComponentsIcon } from
|
|
3
|
-
import { FilterItemViewmodel } from
|
|
4
|
-
import { IconCacheService } from
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { CoreComponentsIcon } from '../../core/enum/core-components-icon.enum';
|
|
3
|
+
import { FilterItemViewmodel } from './filter-item-viewmodel';
|
|
4
|
+
import { IconCacheService } from '../icon/icon-cache.service';
|
|
5
5
|
export declare class FilterItemComponent implements OnInit {
|
|
6
6
|
iconService: IconCacheService;
|
|
7
7
|
icons: typeof CoreComponentsIcon;
|
|
@@ -9,7 +9,6 @@ $cc-co-input-text-small-height: 45px !default;
|
|
|
9
9
|
$cc-co-input-text-icon-max-height: 80px !default;
|
|
10
10
|
$cc-co-input-text-icon-margin-number: 0 !default;
|
|
11
11
|
$cc-co-input-text-spacer-width: 5px !default;
|
|
12
|
-
$cc-co-input-text-input-padding: 0 0 5px 5px !default;
|
|
13
12
|
$cc-co-input-text-icon-padding: 3% !default;
|
|
14
13
|
//$cc-co-input-label-color: $cc-color-border !default;
|
|
15
14
|
//$cc-co-input-label-font-style: normal !default;
|
|
@@ -5,6 +5,9 @@
|
|
|
5
5
|
font-size: $cc-simple-grid-font-size;
|
|
6
6
|
co-input-checkbox {
|
|
7
7
|
justify-content: center;
|
|
8
|
+
&.read-only {
|
|
9
|
+
opacity: 1;
|
|
10
|
+
}
|
|
8
11
|
.checkbox {
|
|
9
12
|
border-radius: $cc-simple-grid-input-checkbox-border-radius;
|
|
10
13
|
border-color: $cc-simple-grid-input-checkbox-color;
|
|
@@ -99,6 +102,7 @@
|
|
|
99
102
|
overflow: hidden;
|
|
100
103
|
text-overflow: ellipsis;
|
|
101
104
|
white-space: nowrap;
|
|
105
|
+
border-bottom: 2px solid $cc-color-grid-row-hover-background;
|
|
102
106
|
}
|
|
103
107
|
.simple-grid-column-sizer {
|
|
104
108
|
cursor: col-resize;
|
|
@@ -114,9 +118,8 @@
|
|
|
114
118
|
//flex-direction: row;
|
|
115
119
|
border: $cc-simple-grid-row-border;
|
|
116
120
|
border-width: $cc-simple-grid-row-border-width;
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
}
|
|
121
|
+
border-style: solid;
|
|
122
|
+
border-color: $cc-simple-grid-row-border-color;
|
|
120
123
|
}
|
|
121
124
|
.right-align {
|
|
122
125
|
text-align: right;
|
|
@@ -154,10 +157,6 @@
|
|
|
154
157
|
transition: transform 200ms cubic-bezier(0, 0, 0.2, 1);
|
|
155
158
|
}
|
|
156
159
|
|
|
157
|
-
.simple-grid-row:last-child {
|
|
158
|
-
border: none;
|
|
159
|
-
}
|
|
160
|
-
|
|
161
160
|
.pagination-bar {
|
|
162
161
|
ul {
|
|
163
162
|
margin: $cc-simple-grid-pagination-bar-margin;
|
|
@@ -22,11 +22,11 @@ $cc-simple-grid-row-edit-input-background-color: white !default;
|
|
|
22
22
|
$cc-simple-grid-row-hover-background-color: $cc-color-grid-row-hover-background !default;
|
|
23
23
|
$cc-simple-grid-row-hover-background-transparent: transparent !default;
|
|
24
24
|
$cc-simple-grid-row-border: none !default;
|
|
25
|
-
$cc-simple-grid-row-border-color:
|
|
26
|
-
$cc-simple-grid-row-border-width:
|
|
25
|
+
$cc-simple-grid-row-border-color: #F5F5F5 !default;
|
|
26
|
+
$cc-simple-grid-row-border-width: 10px 0 0 0 !default;
|
|
27
27
|
$cc-simple-grid-cell-padding: 15px 5px !default;
|
|
28
28
|
$cc-simple-grid-row-height: auto !default;
|
|
29
|
-
$cc-simple-grid-row-even-background: #F5F5F5;
|
|
29
|
+
$cc-simple-grid-row-even-background: #F5F5F5 !default;
|
|
30
30
|
|
|
31
31
|
$cc-simple-grid-pagination-background-color: white !default;
|
|
32
32
|
$cc-simple-grid-pagination-bar-margin: 10px 0 0 0 !default;
|
|
@@ -1,16 +1,14 @@
|
|
|
1
|
-
import { AfterViewInit, ElementRef, EventEmitter, OnDestroy, OnInit } from
|
|
1
|
+
import { AfterViewInit, ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
export declare class ObserveVisibilityDirective implements OnDestroy, OnInit, AfterViewInit {
|
|
3
3
|
private _element;
|
|
4
|
-
debounceTime: number;
|
|
5
4
|
threshold: number;
|
|
6
|
-
|
|
5
|
+
visibilityChange: EventEmitter<boolean>;
|
|
6
|
+
visible: boolean;
|
|
7
7
|
private _observer;
|
|
8
|
-
private _subject;
|
|
9
8
|
constructor(_element: ElementRef);
|
|
10
9
|
ngOnInit(): void;
|
|
11
10
|
ngAfterViewInit(): void;
|
|
12
11
|
ngOnDestroy(): void;
|
|
13
|
-
private _isVisible;
|
|
14
12
|
private _createObserver;
|
|
15
13
|
private _startObservingElements;
|
|
16
14
|
}
|
|
@@ -68,7 +68,9 @@
|
|
|
68
68
|
//&:after {
|
|
69
69
|
// transform: scaleX(1);
|
|
70
70
|
//}
|
|
71
|
-
border-
|
|
71
|
+
border-style: $cc-input-focused-border-style;
|
|
72
|
+
border-width: $cc-input-focused-border-width;
|
|
73
|
+
border-color: $cc-input-focused-border-color;
|
|
72
74
|
}
|
|
73
75
|
}
|
|
74
76
|
&.cc-input-focused, &.hasvalue {
|
|
@@ -77,6 +79,9 @@
|
|
|
77
79
|
}
|
|
78
80
|
}
|
|
79
81
|
}
|
|
82
|
+
&:hover {
|
|
83
|
+
border-color: $cc-input-hover-color;
|
|
84
|
+
}
|
|
80
85
|
}
|
|
81
86
|
|
|
82
87
|
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
|
|
@@ -7,7 +7,7 @@ $grid-header-border-color: #a0b6c9 !default;
|
|
|
7
7
|
$group-droparea-color: #175988 !default;
|
|
8
8
|
$grid-header-font-weight: 700 !default;
|
|
9
9
|
|
|
10
|
-
$cc-item-size:
|
|
10
|
+
$cc-item-size: 40px !default;
|
|
11
11
|
$cc-icon-size: 40px !default;
|
|
12
12
|
$cc-icon-size-small: 30px !default;
|
|
13
13
|
$cc-default-border-radius: 3px !default;
|
|
@@ -16,7 +16,7 @@ $cc-scrollbar-thumbColor: #484f60 !default;
|
|
|
16
16
|
$cc-scrollbar-trackColor: #e8eceb !default;
|
|
17
17
|
$cc-scrollbar-stopPoint: 10% !default;
|
|
18
18
|
|
|
19
|
-
$cc-color-action: #
|
|
19
|
+
$cc-color-action: #3e7eff !default;
|
|
20
20
|
$accent: $cc-color-action !default;
|
|
21
21
|
$cc-color-input-background-color: white !default;
|
|
22
22
|
$cc-color-input-placeholder-color: #8083A3 !default;
|
|
@@ -104,15 +104,21 @@ $cc-input-required-mark-width-height: 7px;
|
|
|
104
104
|
$cc-input-font-size: 12px !default;
|
|
105
105
|
$cc-input-placeholder-font-style: normal !default;
|
|
106
106
|
$cc-input-width: 300px !default;
|
|
107
|
-
$cc-input-margin-left:
|
|
107
|
+
$cc-input-margin-left: 10px !default;
|
|
108
|
+
$cc-input-input-padding: 0 0 5px 10px !default;
|
|
108
109
|
$cc-input-margin-top: 16px !default;
|
|
109
110
|
$cc-input-show-focus-line: true !default;
|
|
110
111
|
$cc-input-focus-line-color: $cc-color-action !default;
|
|
112
|
+
$cc-input-hover-darken: 75% !default;
|
|
113
|
+
$cc-input-hover-color: #2d5fc4 !default;
|
|
111
114
|
$cc-input-border-style: solid !default;
|
|
112
|
-
$cc-input-border-width:
|
|
115
|
+
$cc-input-border-width: 2px !default;
|
|
113
116
|
$cc-input-border-color: $cc-color-border !default;
|
|
114
117
|
$cc-input-border-radius: 5px !default;
|
|
115
|
-
|
|
118
|
+
|
|
119
|
+
$cc-input-focused-border-style: solid !default;
|
|
120
|
+
$cc-input-focused-border-width: 2px !default;
|
|
121
|
+
$cc-input-focused-border-color: $cc-color-action;
|
|
116
122
|
/**********/
|
|
117
123
|
|
|
118
124
|
/* checkbox */
|