@colijnit/corecomponents_v12 257.1.12 → 257.1.14

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.
@@ -67,6 +67,7 @@ export declare abstract class BaseInputComponent<T> implements OnInit, OnDestroy
67
67
  readonly modelChange: EventEmitter<any>;
68
68
  readonly userModelChange: EventEmitter<any>;
69
69
  readonly hiddenChange: EventEmitter<boolean>;
70
+ readonly cancelClicked: EventEmitter<void>;
70
71
  focused: boolean;
71
72
  formComponent: FormComponent;
72
73
  formInput: boolean;
@@ -67,5 +67,6 @@ export declare class InputTextComponent extends BaseInputComponent<any> implemen
67
67
  handleRightIconMouseUp(event: MouseEvent): void;
68
68
  handleInputFocus(event: FocusEvent): void;
69
69
  handleBlur(event: FocusEvent): void;
70
+ handleDoFocus(event: MouseEvent): void;
70
71
  clearInput(event: MouseEvent): void;
71
72
  }
@@ -11,7 +11,7 @@
11
11
  text-overflow: ellipsis;
12
12
  }
13
13
  input, .input-text-formatted {
14
- display: none;
14
+ visibility: hidden;
15
15
  max-width: 100%;
16
16
  font-family: $cc-co-input-text-font-family;
17
17
  font-size: $cc-co-input-text-font-size;
@@ -22,7 +22,7 @@
22
22
  text-align: right;
23
23
  }
24
24
  &.show {
25
- display: block;
25
+ visibility: visible;
26
26
  }
27
27
  }
28
28
 
@@ -101,7 +101,8 @@
101
101
  align-self: end;
102
102
  overflow: hidden;
103
103
  text-overflow: ellipsis;
104
- width: 100%;
104
+ min-width: 100%;
105
+ min-height: $cc-co-input-text-input-height;
105
106
  }
106
107
  .input-content-wrapper {
107
108
  width: 100%;
@@ -7,6 +7,7 @@ $cc-co-input-placeholder-color: $cc-color-border !default;
7
7
  $cc-co-input-placeholder-font-style: italic !default;
8
8
  $cc-co-input-text-small-height: 45px !default;
9
9
  $cc-co-input-text-icon-max-height: $cc-item-size !default;
10
+ $cc-co-input-text-input-height: 20px !default;
10
11
  $cc-co-input-text-icon-size: 50% !default;
11
12
  $cc-co-input-text-icon-margin-number: 0 !default;
12
13
  $cc-co-input-text-spacer-width: $cc-input-border-width !default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/corecomponents_v12",
3
- "version": "257.1.12",
3
+ "version": "257.1.14",
4
4
  "description": "Colijn IT core components for Angular 12",
5
5
  "private": false,
6
6
  "peerDependencies": {