@colijnit/corecomponents_v12 12.0.103 → 12.0.104

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.
Files changed (49) hide show
  1. package/bundles/colijnit-corecomponents_v12.umd.js +606 -238
  2. package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
  3. package/colijnit-corecomponents_v12.d.ts +11 -10
  4. package/colijnit-corecomponents_v12.metadata.json +1 -1
  5. package/esm2015/colijnit-corecomponents_v12.js +12 -11
  6. package/esm2015/lib/components/list-of-values/list-of-values-popup.component.js +79 -0
  7. package/esm2015/lib/components/list-of-values/list-of-values.component.js +174 -0
  8. package/esm2015/lib/components/list-of-values/list-of-values.module.js +33 -0
  9. package/esm2015/lib/components/list-of-values-multiselect-search/list-of-values-multiselect-search.component.js +101 -0
  10. package/esm2015/lib/components/list-of-values-multiselect-search/list-of-values-multiselect-search.module.js +25 -0
  11. package/esm2015/lib/directives/overlay/overlay.directive.js +7 -2
  12. package/esm2015/lib/service/overlay.service.js +9 -2
  13. package/esm2015/public-api.js +5 -1
  14. package/fesm2015/colijnit-corecomponents_v12.js +659 -263
  15. package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
  16. package/lib/components/base-input-date-picker/style/_layout.scss +91 -0
  17. package/lib/components/base-input-date-picker/style/_material-definition.scss +0 -0
  18. package/lib/components/base-input-date-picker/style/_theme.scss +4 -0
  19. package/lib/components/base-input-date-picker/style/material.scss +4 -0
  20. package/lib/components/co-input-date-picker/style/_layout.scss +5 -0
  21. package/lib/components/co-input-date-picker/style/_material-definition.scss +0 -0
  22. package/lib/components/co-input-date-picker/style/_theme.scss +0 -0
  23. package/lib/components/co-input-date-picker/style/material.scss +4 -0
  24. package/lib/components/co-input-date-range-picker/style/_layout.scss +18 -0
  25. package/lib/components/co-input-date-range-picker/style/_material-definition.scss +0 -0
  26. package/lib/components/co-input-date-range-picker/style/_theme.scss +0 -0
  27. package/lib/components/co-input-date-range-picker/style/material.scss +4 -0
  28. package/lib/components/filter-item/style/_material-definition.scss +1 -1
  29. package/lib/components/filter-item/style/_theme.scss +4 -1
  30. package/lib/components/input-checkbox/style/_layout.scss +1 -4
  31. package/lib/components/input-checkbox/style/_theme.scss +2 -1
  32. package/lib/components/list-of-values/list-of-values-popup.component.d.ts +22 -0
  33. package/lib/components/list-of-values/list-of-values.component.d.ts +35 -0
  34. package/lib/components/list-of-values/list-of-values.module.d.ts +2 -0
  35. package/lib/components/list-of-values/style/_layout.scss +101 -13
  36. package/lib/components/list-of-values/style/_material-definition.scss +15 -0
  37. package/lib/components/list-of-values-multiselect-search/list-of-values-multiselect-search.component.d.ts +21 -0
  38. package/lib/components/list-of-values-multiselect-search/list-of-values-multiselect-search.module.d.ts +2 -0
  39. package/lib/components/list-of-values-multiselect-search/style/_layout.scss +69 -0
  40. package/lib/components/list-of-values-multiselect-search/style/_material-definition.scss +8 -0
  41. package/lib/components/list-of-values-multiselect-search/style/_theme.scss +0 -0
  42. package/lib/components/list-of-values-multiselect-search/style/material.scss +4 -0
  43. package/lib/components/simple-grid/style/_layout.scss +4 -3
  44. package/lib/components/simple-grid/style/_material-definition.scss +3 -2
  45. package/lib/directives/overlay/overlay.directive.d.ts +1 -0
  46. package/lib/service/overlay.service.d.ts +1 -1
  47. package/lib/style/_variables.scss +9 -7
  48. package/package.json +1 -1
  49. package/public-api.d.ts +4 -0
@@ -0,0 +1,91 @@
1
+ @include export-module('co-base-input-date-picker') {
2
+ .co-base-input-date-picker {
3
+ .date-picker-container {
4
+ position: relative;
5
+ }
6
+
7
+ .date-picker-input {
8
+ padding: 5px;
9
+ border: 1px solid #ccc;
10
+ font-size: 16px;
11
+ }
12
+
13
+ .calendar {
14
+
15
+ top: 30px;
16
+ left: 0;
17
+ width: 230px;
18
+ padding: 10px;
19
+ background-color: #fff;
20
+ border: 1px solid #ccc;
21
+ box-shadow: 0 0 5px #ccc;
22
+ z-index: 1;
23
+ }
24
+
25
+ .calendar-header {
26
+ display: flex;
27
+ justify-content: space-between;
28
+ margin-bottom: 10px;
29
+ cursor: pointer;
30
+ user-select: none;
31
+ }
32
+
33
+ .calendar-header span {
34
+ cursor: pointer;
35
+ }
36
+
37
+ .calendar-body {
38
+ display: grid;
39
+ grid-template-columns: repeat(7, 1fr);
40
+ grid-gap: 5px;
41
+ }
42
+
43
+ .calendar-date {
44
+ display: flex;
45
+ flex-direction: column;
46
+ align-items: center;
47
+ justify-content: center;
48
+ height: 40px;
49
+ border: 1px solid #ccc;
50
+ cursor: pointer;
51
+ }
52
+
53
+ .day-names {
54
+ display: contents;
55
+ }
56
+
57
+ .weekday {
58
+ text-transform: uppercase;
59
+ font-size: 12px;
60
+ font-weight: bold;
61
+ margin-bottom: 5px;
62
+ }
63
+
64
+ .day-number {
65
+ font-size: 16px;
66
+ font-weight: bold;
67
+ }
68
+
69
+ .calendar-date:hover {
70
+ background-color: #f0f0f0;
71
+ }
72
+
73
+ .calendar-date.selected {
74
+ background-color: #007bff;
75
+ color: #fff;
76
+ }
77
+
78
+ .month-selection {
79
+ display: grid;
80
+ grid-template-columns: repeat(5, 1fr);
81
+ grid-gap: 5px;
82
+ }
83
+
84
+ .year-selection {
85
+ display: grid;
86
+ grid-template-columns: repeat(5, 1fr);
87
+ grid-gap: 5px;
88
+ }
89
+
90
+ }
91
+ }
@@ -0,0 +1,4 @@
1
+ @include export-module('co-base-input-date-picker') {
2
+ .co-base-input-date-picker {
3
+ }
4
+ }
@@ -0,0 +1,4 @@
1
+ @import "../../../style/mixin";
2
+ @import "./material-definition";
3
+ @import "./layout";
4
+ @import "./theme";
@@ -0,0 +1,5 @@
1
+ @include export-module('co-input-date-picker') {
2
+ .co-input-date-picker {
3
+
4
+ }
5
+ }
@@ -0,0 +1,4 @@
1
+ @import "../../../style/mixin";
2
+ @import "./material-definition";
3
+ @import "./layout";
4
+ @import "./theme";
@@ -0,0 +1,18 @@
1
+ @include export-module('co-input-date-range-picker') {
2
+ .co-input-date-range-picker {
3
+
4
+ .input-date-range-calendar-wrapper {
5
+ display: flex;
6
+ justify-content: space-between;
7
+ width: 240px;
8
+ }
9
+
10
+ .left-calendar {
11
+ display: inline-block;
12
+ }
13
+
14
+ .right-calendar {
15
+ display: inline-block;
16
+ }
17
+ }
18
+ }
@@ -0,0 +1,4 @@
1
+ @import "../../../style/mixin";
2
+ @import "./material-definition";
3
+ @import "./layout";
4
+ @import "./theme";
@@ -12,7 +12,7 @@ $cc-co-filter-item-header-border-radius: 20px 20px 0 0 !default;
12
12
  $cc-co-filter-item-header-border-color: #DCE4EA !default;
13
13
  $cc-co-filter-item-header-icon-size: 30px !default;
14
14
 
15
- $cc-co-filter-item-collapsible-content-padding: 0 10px !default;
15
+ $cc-co-filter-item-collapsible-content-padding: 0 10px 20px 10px !default;
16
16
  $cc-co-filter-item-collapsible-width: 95% !default;
17
17
 
18
18
  $cc-co-filter-item-collection-results-container-padding: 10px !default;
@@ -11,7 +11,7 @@
11
11
  }
12
12
 
13
13
  .collapsible-header {
14
- border-bottom: 1px solid $cc-co-filter-item-header-border-color;
14
+ border-bottom: none;
15
15
  }
16
16
 
17
17
  .co-filter-item-collection-results {
@@ -20,6 +20,9 @@
20
20
 
21
21
  .clickable {
22
22
  color:$cc-co-filter-item-clickable-color;
23
+ span {
24
+ color:$cc-co-filter-item-clickable-color;
25
+ }
23
26
  }
24
27
  }
25
28
  }
@@ -30,9 +30,6 @@
30
30
 
31
31
  &.show {
32
32
  opacity: 1;
33
- //animation-duration: 800ms;
34
- //animation-timing-function: ease;
35
- //animation-name: checkmark;
36
33
  transform: scaleX(-1) rotate(135deg);
37
34
  height: $cc-input-checkbox-check-mark-height;
38
35
  width: $cc-input-checkbox-check-mark-width;
@@ -40,7 +37,7 @@
40
37
  border-right: $cc-input-checkbox-check-mark-thickness solid $cc-input-checkbox-check-mark-color;
41
38
  border-top: $cc-input-checkbox-check-mark-thickness solid $cc-input-checkbox-check-mark-color;
42
39
  content: '';
43
- left: $cc-input-checkbox-check-mark-width * .3;
40
+ left: $cc-input-checkbox-check-mark-width * .2;
44
41
  top: $cc-input-checkbox-check-mark-height / 1.6;
45
42
  position: absolute;
46
43
  }
@@ -4,7 +4,8 @@
4
4
  border-color: $cc-input-checkbox-border-color;
5
5
  background-color: $cc-input-checkbox-background-color;
6
6
  &.checked {
7
- border-color: $cc-input-checkbox-check-mark-color;
7
+ border-color: $cc-checkbox-check-background-color;
8
+ background-color: $cc-checkbox-check-background-color;
8
9
  }
9
10
  }
10
11
  }
@@ -0,0 +1,22 @@
1
+ import { ElementRef, EventEmitter, OnInit } from '@angular/core';
2
+ import { BaseInputComponent } from "../base/base-input.component";
3
+ export declare class ListOfValuesPopupComponent extends BaseInputComponent<any> implements OnInit {
4
+ showClass(): boolean;
5
+ chosenOption: EventEmitter<any>;
6
+ closePopup: EventEmitter<any>;
7
+ displayField: string;
8
+ searchPlaceholder: string;
9
+ customCssClass: string;
10
+ searchDisabled: boolean;
11
+ parentForOverlay: ElementRef;
12
+ set collection(value: any[]);
13
+ get collection(): any[];
14
+ filteredOptions: any[];
15
+ searchTerm: string;
16
+ selectedModel: string;
17
+ private _collection;
18
+ ngOnInit(): void;
19
+ filterOptions(): void;
20
+ onOptionClick(option: any): void;
21
+ optionClicked(): void;
22
+ }
@@ -0,0 +1,35 @@
1
+ import { ElementRef, OnInit } from '@angular/core';
2
+ import { BaseInputComponent } from "../base/base-input.component";
3
+ import { CoreComponentsIcon } from "../../core/enum/core-components-icon.enum";
4
+ export declare class ListOfValuesComponent extends BaseInputComponent<any> implements OnInit {
5
+ readonly icons: typeof CoreComponentsIcon;
6
+ parentForOverlay: ElementRef;
7
+ multiselect: boolean;
8
+ showClass(): boolean;
9
+ displayField: string;
10
+ set collection(value: any[]);
11
+ get collection(): any[];
12
+ searchPlaceholder: string;
13
+ label: string;
14
+ customCssClass: string;
15
+ searchDisabled: boolean;
16
+ selectedOptions: any[];
17
+ filteredOptions: any[];
18
+ searchTerm: string;
19
+ isSelectOpen: boolean;
20
+ state: string;
21
+ searchClicked: boolean;
22
+ multiselectTags: any[];
23
+ selectedModel: string;
24
+ chosenOption: any;
25
+ private _collection;
26
+ ngOnInit(): void;
27
+ filterOptions(): void;
28
+ onOptionClick(option: any): void;
29
+ toggleSelect(): void;
30
+ multiselectOkClick(): void;
31
+ createMultiSelectTags(tags: any): void;
32
+ openMultiselectSearch(): void;
33
+ optionChosen(option: any): void;
34
+ closePopup(): void;
35
+ }
@@ -0,0 +1,2 @@
1
+ export declare class ListOfValuesModule {
2
+ }
@@ -1,24 +1,38 @@
1
1
  @include export-module('co-list-of-values') {
2
2
  .co-list-of-values {
3
- @include input;
3
+ //@include input;
4
+ z-index: 999;
5
+ font-family: $cc-co-input-text-font-family;
6
+ font-size: $cc-co-input-text-font-size;
7
+
8
+ .lov-container {
9
+ width: $cc-co-list-of-values-lov-options-container;
10
+ }
4
11
 
5
12
  &:before, &:after {
6
13
  background: transparent;
7
14
  }
8
15
 
9
16
  .lov-search {
17
+ @include input;
10
18
  width: 100%;
11
19
  }
12
20
 
21
+ .lov-container-child {
22
+ width: inherit;
23
+ }
24
+
13
25
  .lov-options {
14
- position: sticky;
15
- z-index: 90008000000000088;
16
- max-height: 150px;
26
+ width: inherit;
27
+ overflow: hidden;
28
+ position: $cc-co-list-of-values-lov-options-position;
29
+ z-index: $cc-co-list-of-values-lov-options-z-index;
30
+ max-height: $cc-co-list-of-values-lov-options-max-height;
17
31
  overflow-y: auto;
18
- background-color: #fff;
19
- border: 1px solid #ccc;
20
- border-top: none;
21
- border-radius: 0 0 4px 4px;
32
+ background-color: $cc-co-list-of-values-lov-options-background-color;
33
+ border: $cc-co-list-of-values-lov-options-border;
34
+ border-radius: $cc-co-list-of-values-lov-options-border-radius;
35
+ margin-top: 2px;
22
36
  }
23
37
 
24
38
  .lov-options ul {
@@ -26,12 +40,14 @@
26
40
  padding: 0;
27
41
  margin: 0;
28
42
  cursor: pointer;
43
+ user-select: none;
29
44
  }
30
45
 
31
46
  .lov-options li {
32
47
  display: flex;
33
- padding: 8px;
34
- border-bottom: 1px solid #ccc;
48
+ padding: $cc-co-list-of-values-lov-options-li-padding;
49
+ border-radius: 5px;
50
+ margin: 5px;
35
51
  }
36
52
 
37
53
  .lov-options li:last-child {
@@ -39,11 +55,12 @@
39
55
  }
40
56
 
41
57
  .lov-options li:hover {
42
- background-color: #f5f5f5;
58
+ background-color: $cc-co-list-of-values-lov-options-li-hover;
43
59
  }
44
60
 
45
61
  .lov-options li.selected {
46
- background-color: #ccc;
62
+ background-color: $cc-co-list-of-values-lov-options-li-selected;
63
+ color: $cc-co-list-of-values-lov-options-li-selected-text-color;
47
64
  }
48
65
 
49
66
  .lov-options-checkbox {
@@ -51,7 +68,7 @@
51
68
  }
52
69
 
53
70
  .arrow-icon {
54
- border-top: 8px solid #888;
71
+ border-top: $cc-co-list-of-values-lov-arrow-icon-border;
55
72
  border-left: 6px solid transparent;
56
73
  border-right: 6px solid transparent;
57
74
  transform: translateY(-50%);
@@ -61,6 +78,77 @@
61
78
 
62
79
  .search-wrapper {
63
80
  display: flex;
81
+ border-radius: 5px;
82
+ }
83
+
84
+ .search-wrapper-multiselect {
85
+ border: 3px solid skyblue;
86
+ background: white;
87
+ border-radius: 5px;
88
+ }
89
+
90
+ .tag-wrapper {
91
+ min-height: 35px
92
+ }
93
+
94
+ .tag-ul-wrapper {
95
+ display: flex;
96
+ flex-wrap: wrap;
97
+ margin: 0;
98
+ padding: 0;
99
+ height: 100%;
100
+ place-content: flex-start;
101
+ }
102
+
103
+ .tag {
104
+ border: 3px solid skyblue;
105
+ border-radius: 5px;
106
+ list-style: none;
107
+ background: skyblue;
108
+ margin: 5px;
109
+ }
110
+ }
111
+
112
+ .co-list-of-values-popup {
113
+ .lov-options {
114
+ width: inherit;
115
+ overflow: hidden;
116
+ position: $cc-co-list-of-values-lov-options-position;
117
+ z-index: $cc-co-list-of-values-lov-options-z-index;
118
+ max-height: $cc-co-list-of-values-lov-options-max-height;
119
+ overflow-y: auto;
120
+ background-color: $cc-co-list-of-values-lov-options-background-color;
121
+ border: $cc-co-list-of-values-lov-options-border;
122
+ border-radius: $cc-co-list-of-values-lov-options-border-radius;
123
+ margin-top: 2px;
124
+ }
125
+
126
+ .lov-options ul {
127
+ list-style-type: none;
128
+ padding: 0;
129
+ margin: 0;
130
+ cursor: pointer;
131
+ user-select: none;
132
+ }
133
+
134
+ .lov-options li {
135
+ display: flex;
136
+ padding: $cc-co-list-of-values-lov-options-li-padding;
137
+ border-radius: 5px;
138
+ margin: 5px;
139
+ }
140
+
141
+ .lov-options li:last-child {
142
+ border-bottom: none;
143
+ }
144
+
145
+ .lov-options li:hover {
146
+ background-color: $cc-co-list-of-values-lov-options-li-hover;
147
+ }
148
+
149
+ .lov-options li.selected {
150
+ background-color: $cc-co-list-of-values-lov-options-li-selected;
151
+ color: $cc-co-list-of-values-lov-options-li-selected-text-color;
64
152
  }
65
153
  }
66
154
  }
@@ -0,0 +1,15 @@
1
+ $cc-co-input-text-font-family: $cc-font-family !default;
2
+ $cc-co-input-text-font-size: $cc-font-size-default !default;
3
+ $cc-co-list-of-values-lov-options-container: 320px !default;
4
+ $cc-co-list-of-values-lov-options-position: fixed !default;
5
+ $cc-co-list-of-values-lov-options-z-index: 99 !default;
6
+ $cc-co-list-of-values-lov-options-max-height: 150px !default;
7
+ $cc-co-list-of-values-lov-options-background-color: #fff !default;
8
+ $cc-co-list-of-values-lov-options-border: 1px solid #ccc !default;
9
+ $cc-co-list-of-values-lov-options-border-radius: 10px !default;
10
+ $cc-co-list-of-values-lov-options-li-border-bottom: 1px solid #ccc !default;
11
+ $cc-co-list-of-values-lov-options-li-padding: 8px !default;
12
+ $cc-co-list-of-values-lov-options-li-hover: $cc-color-hover !default;
13
+ $cc-co-list-of-values-lov-options-li-selected: $cc-color-grey !default;
14
+ $cc-co-list-of-values-lov-options-li-selected-text-color: $cc-color-font !default;
15
+ $cc-co-list-of-values-lov-arrow-icon-border: 8px solid $cc-color-grey !default;
@@ -0,0 +1,21 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { BaseInputComponent } from "../base/base-input.component";
3
+ import { CoreComponentsIcon } from "../../core/enum/core-components-icon.enum";
4
+ export declare class ListOfValuesMultiselectSearch extends BaseInputComponent<any> implements OnInit {
5
+ readonly icons: typeof CoreComponentsIcon;
6
+ showClass(): boolean;
7
+ collection: any;
8
+ returnChosenCollection: any[];
9
+ chosenCollection: EventEmitter<any[]>;
10
+ okButtonClicked: EventEmitter<boolean>;
11
+ selectedCollection: any[];
12
+ selectedOptions: any[];
13
+ allOptionsSelected: boolean;
14
+ searchTerm: string;
15
+ get filteredCollection(): any;
16
+ ngOnInit(): void;
17
+ onOptionClick(option: any): void;
18
+ okClicked(): void;
19
+ onToggleSelectAll(): void;
20
+ searchCollection(): void;
21
+ }
@@ -0,0 +1,2 @@
1
+ export declare class ListOfValuesMultiselectSearchModule {
2
+ }
@@ -0,0 +1,69 @@
1
+ @include export-module('co-list-of-values-multiselect-search') {
2
+ .co-list-of-values-multiselect-search {
3
+
4
+ .list-of-values-multiselect-search {
5
+ flex-direction: column;
6
+ box-sizing: border-box;
7
+ display: flex;
8
+ position: fixed;
9
+ }
10
+
11
+ .list-of-values-multiselect-search-deselect {
12
+ display: flex;
13
+ user-select: none;
14
+ cursor: pointer;
15
+ justify-content: space-between;
16
+
17
+ span {
18
+ align-self: center;
19
+ }
20
+ }
21
+
22
+ .list-of-values-multiselect-list {
23
+ background-color: white;
24
+ overflow: auto;
25
+ max-height: 200px;
26
+
27
+ .co-input-checkbox {
28
+ float: left;
29
+ }
30
+
31
+ ul {
32
+ list-style-type: none;
33
+ padding: 10px;
34
+ margin: 0;
35
+ cursor: pointer;
36
+ user-select: none;
37
+ }
38
+
39
+ li {
40
+ border-radius: 5px;
41
+ margin: 5px;
42
+ display: flex;
43
+ padding: $cc-co-list-of-values-multiselect-search-options-li-padding;
44
+ }
45
+
46
+ li:hover {
47
+ background-color: $cc-co-list-of-values-multiselect-search-li-hover;
48
+
49
+ }
50
+ }
51
+
52
+ .list-of-values-multiselect-ok-button {
53
+ display: flex;
54
+ cursor: pointer;
55
+ user-select: none;
56
+ justify-content: end;
57
+ }
58
+
59
+ .list-of-values-multiselect-options {
60
+ position: $cc-co-list-of-values-multiselect-search-options-position;
61
+ z-index: $cc-co-list-of-values-multiselect-search-options-z-index;
62
+ overflow-y: auto;
63
+ background-color: $cc-co-list-of-values-multiselect-search-options-background-color;
64
+ border: $cc-co-list-of-values-multiselect-search-options-border;
65
+ border-radius: $cc-co-list-of-values-multiselect-search-options-border-radius;
66
+ margin-top: 2px;
67
+ }
68
+ }
69
+ }
@@ -0,0 +1,8 @@
1
+ $cc-co-list-of-values-multiselect-search-li-hover: rgba(135, 206, 235, 0.40) !default;
2
+ $cc-co-list-of-values-multiselect-search-options-position: sticky !default;
3
+ $cc-co-list-of-values-multiselect-search-options-z-index: 99 !default;
4
+ $cc-co-list-of-values-multiselect-search-options-max-height: 150px !default;
5
+ $cc-co-list-of-values-multiselect-search-options-background-color: #fff !default;
6
+ $cc-co-list-of-values-multiselect-search-options-border: 1px solid #ccc !default;
7
+ $cc-co-list-of-values-multiselect-search-options-border-radius: 10px !default;
8
+ $cc-co-list-of-values-multiselect-search-options-li-padding: 8px !default;
@@ -0,0 +1,4 @@
1
+ @import "../../../style/mixin";
2
+ @import "./_material-definition";
3
+ @import "./_layout";
4
+ @import "./_theme";
@@ -12,11 +12,12 @@
12
12
  border-radius: $cc-simple-grid-input-checkbox-border-radius;
13
13
  border-color: $cc-simple-grid-input-checkbox-color;
14
14
  background-color: $cc-simple-grid-input-checkbox-color;
15
- opacity: 0.2;
15
+ opacity: 1;
16
16
  margin-right: 0;
17
17
  &.checked {
18
18
  opacity: 1;
19
- border-color: $cc-simple-grid-input-checkbox-color;
19
+ border-color: $cc-simple-grid-input-checkbox-checked-color;
20
+ background-color: $cc-simple-grid-input-checkbox-checked-color;
20
21
  }
21
22
  .checkmark {
22
23
  opacity: 1;
@@ -28,7 +29,7 @@
28
29
  border-right: $cc-simple-grid-input-checkbox-check-mark-thickness solid $cc-simple-grid-input-checkbox-check-mark-color;
29
30
  border-top: $cc-simple-grid-input-checkbox-check-mark-thickness solid $cc-simple-grid-input-checkbox-check-mark-color;
30
31
  content: '';
31
- left: $cc-simple-grid-input-checkbox-check-mark-width * .2;
32
+ left: $cc-simple-grid-input-checkbox-check-mark-width * .15;
32
33
  top: $cc-simple-grid-input-checkbox-check-mark-height / 1.4;
33
34
  &.show {
34
35
  }
@@ -32,9 +32,10 @@ $cc-simple-grid-pagination-background-color: white !default;
32
32
  $cc-simple-grid-pagination-bar-margin: 10px 0 0 0 !default;
33
33
 
34
34
  $cc-simple-grid-input-checkbox-height: 18px !default;
35
- $cc-simple-grid-input-checkbox-color: #797979;
35
+ $cc-simple-grid-input-checkbox-color: #F5F5FC;
36
+ $cc-simple-grid-input-checkbox-checked-color: #1a73e8;
36
37
  $cc-simple-grid-input-checkbox-check-mark-width: $cc-simple-grid-input-checkbox-height * .35 !default;
37
38
  $cc-simple-grid-input-checkbox-check-mark-height: $cc-simple-grid-input-checkbox-height * .55 !default;
38
39
  $cc-simple-grid-input-checkbox-check-mark-color: white !default;
39
40
  $cc-simple-grid-input-checkbox-check-mark-thickness: 2px !default;
40
- $cc-simple-grid-input-checkbox-border-radius: 100% !default;
41
+ $cc-simple-grid-input-checkbox-border-radius: 0 !default;
@@ -3,6 +3,7 @@ import { OverlayParentDirective } from "./overlay-parent.directive";
3
3
  export declare class OverlayDirective implements OnDestroy, OnInit {
4
4
  set parent(value: OverlayParentDirective | ElementRef);
5
5
  keepInView: boolean;
6
+ inheritWidth: boolean;
6
7
  private _elementRef;
7
8
  private _resizeObserver;
8
9
  private _intersectionObserver;
@@ -5,6 +5,6 @@ export declare class OverlayService {
5
5
  private _injector;
6
6
  private _componentRef;
7
7
  constructor(_componentFactoryResolver: ComponentFactoryResolver, _appRef: ApplicationRef, _injector: Injector);
8
- createComponent(compClass: any, inputs: any): void;
8
+ createComponent(compClass: any, inputs: any, events?: any): void;
9
9
  removeComponent(): void;
10
10
  }
@@ -24,6 +24,8 @@ $cc-color-dark: #22313C !default;
24
24
  $cc-color-main: #1060AD !default;
25
25
  $cc-color-light-accent: #DCE4EA !default;
26
26
  $cc-color-light: #FFFFFF !default;
27
+ $cc-color-blue: #1A73E8 !default;
28
+ $cc-color-grey: #F5F5FC !default;
27
29
  $cc-color-icons-dark: #29363F !default;
28
30
  $cc-color-form-input-border: #EDEBEC !default;
29
31
  $cc-color-label: #8083A3 !default;
@@ -47,7 +49,7 @@ $cc-color-input-important: $cc-color-light !default;
47
49
  $cc-color-input-info: #e4e6eb !default;
48
50
  $cc-color-active-accent: #8faba6 !default;
49
51
  $cc-color-less-light: #F7FAFA !default;
50
- $cc-color-border: #DCE4EA !default;
52
+ $cc-color-border: #F5F5FC !default;
51
53
  $cc-color-border-light: #f7f5f4 !default;
52
54
  $cc-color-form-input-background-focus: #BBD9E6 !default;
53
55
  $cc-color-inactive: #A5CBDA !default;
@@ -116,21 +118,21 @@ $cc-input-border-width: 1px !default;
116
118
  $cc-input-border-color: $cc-color-border !default;
117
119
  $cc-input-border-radius: 5px !default;
118
120
  $cc-input-border-hover-style: solid !default;
119
- $cc-input-border-hover-width: 2px !default;
121
+ $cc-input-border-hover-width: 1px !default;
120
122
  $cc-input-border-hover-color: $cc-input-hover-color !default;
121
123
 
122
124
  $cc-input-focused-border-style: solid !default;
123
- $cc-input-focused-border-width: 2px !default;
125
+ $cc-input-focused-border-width: 1px !default;
124
126
  $cc-input-focused-border-color: $cc-color-action;
125
127
  /**********/
126
128
 
127
129
  /* checkbox */
128
130
  $cc-checkbox-border-radius: 0 !default;
129
- $cc-checkbox-background-color: $cc-color-light !default;
131
+ $cc-checkbox-background-color: $cc-color-grey !default;
130
132
  $cc-checkbox-border-color: $cc-color-border !default;
131
- $cc-checkbox-check-background-color: $cc-color-light !default;
132
- $cc-checkbox-check-border-color: #5FDCB3 !default;
133
- $cc-checkbox-check-color: #5FDCB3 !default;
133
+ $cc-checkbox-check-background-color: $cc-color-blue !default;
134
+ $cc-checkbox-check-border-color: $cc-color-blue !default;
135
+ $cc-checkbox-check-color: $cc-color-light !default;
134
136
  $cc-checkbox-hover-background-color: $cc-checkbox-background-color !default;
135
137
  $cc-checkbox-hover-border-color: $cc-checkbox-border-color !default;
136
138
  $cc-checkbox-check-hover-background-color: $cc-checkbox-check-background-color !default;