@colijnit/corecomponents_v12 12.0.84 → 12.0.86

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.
@@ -20,6 +20,7 @@ export declare class InputListboxComponent extends BaseInputComponent<any> imple
20
20
  set showCheckbox(value: boolean);
21
21
  set showSelectAll(value: boolean);
22
22
  showClass(): boolean;
23
+ customHeight: boolean;
23
24
  selectionSettings: SelectionSettingsModel;
24
25
  constructor(formComponent: FormComponent, changeDetector: ChangeDetectorRef, componentFactoryResolver: ComponentFactoryResolver, formUserChangeListener?: FormInputUserModelChangeListenerService, ngZoneWrapper?: NgZoneWrapperService, elementRef?: ElementRef);
25
26
  }
@@ -15,6 +15,9 @@
15
15
  }
16
16
  }
17
17
  .co-input-text {
18
+ border-style: $cc-co-input-search-border-style;
19
+ border-width: $cc-co-input-search-border-width;
20
+ border-color: $cc-co-input-search-border-color;
18
21
  border-radius: $cc-co-input-search-border-radius;
19
22
  label {
20
23
  font-style: $cc-co-input-search-label-font-style;
@@ -1,7 +1,10 @@
1
- $cc-co-input-search-background-color: #F5F5FA !default;
1
+ $cc-co-input-search-background-color: #F5F5FC !default;
2
+ $cc-co-input-search-border-style: $cc-input-border-style !default;
3
+ $cc-co-input-search-border-width: $cc-input-border-width !default;
4
+ $cc-co-input-search-border-color: $cc-input-border-color !default;
2
5
  $cc-co-input-search-border-radius: 10px !default;
3
- $cc-co-input-search-label-color: #8083A3 !default;
6
+ $cc-co-input-search-label-color: $cc-color-label !default;
4
7
  $cc-co-input-search-label-font-style: italic !default;
5
8
  $cc-co-input-search-input-margin-left: $cc-input-margin-left !default;
6
9
  $cc-co-input-search-label-margin-left: $cc-co-input-search-input-margin-left !default;
7
- $cc-co-input-search-custom-height: 35px !default;
10
+ $cc-co-input-search-custom-height: 32px !default;
@@ -6,6 +6,16 @@
6
6
  font-family: $cc-co-input-text-font-family;
7
7
  font-size: $cc-co-input-text-font-size;
8
8
  }
9
+ &.hideArrows {
10
+ input::-webkit-outer-spin-button,
11
+ input::-webkit-inner-spin-button {
12
+ -webkit-appearance: none;
13
+ margin: 0;
14
+ }
15
+ input[type=number] {
16
+ -moz-appearance: textfield;
17
+ }
18
+ }
9
19
  }
10
20
  .co-input-text:not(.no-style) {
11
21
  &.is-small {
@@ -47,16 +57,6 @@
47
57
  width: calc(100% - #{$cc-item-size});
48
58
  }
49
59
  }
50
- &.hideArrows {
51
- input::-webkit-outer-spin-button,
52
- input::-webkit-inner-spin-button {
53
- -webkit-appearance: none;
54
- margin: 0;
55
- }
56
- input[type=number] {
57
- -moz-appearance: textfield;
58
- }
59
- }
60
60
  }
61
61
  }
62
62
 
@@ -61,7 +61,6 @@
61
61
  }
62
62
  &.cc-input-focused, &.hasvalue {
63
63
  label {
64
- color: $cc-color-action;
65
64
  transform: translateY(-($cc-item-size / 2) + 5) scale(0.92);
66
65
  }
67
66
  }
@@ -105,7 +105,7 @@ $cc-input-margin-top: 16px !default;
105
105
  $cc-input-show-focus-line: false !default;
106
106
  $cc-input-focus-line-color: $cc-color-action !default;
107
107
  $cc-input-border-style: solid !default;
108
- $cc-input-border-width: 1px 1px 2px 1px !default;
108
+ $cc-input-border-width: 0 0 2px 0 !default;
109
109
  $cc-input-border-color: $cc-color-border !default;
110
110
  $cc-input-border-radius: 5px !default;
111
111
  $cc-input-focused-border-bottom-color: $cc-color-action !default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/corecomponents_v12",
3
- "version": "12.0.84",
3
+ "version": "12.0.86",
4
4
  "description": "Colijn IT core components for Angular 12",
5
5
  "private": false,
6
6
  "peerDependencies": {