@itfin/components 1.2.126 → 1.2.128

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itfin/components",
3
- "version": "1.2.126",
3
+ "version": "1.2.128",
4
4
  "author": "Vitalii Savchuk <esvit666@gmail.com>",
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -153,6 +153,10 @@
153
153
  .itf-board-titles {
154
154
  width: max-content;
155
155
  border-bottom: 1px solid var(--itf-board-card-border-color);
156
+ position: sticky;
157
+ top: 0;
158
+ z-index: 101;
159
+ background-color: var(--bs-light);
156
160
  }
157
161
 
158
162
  .itf-board-columns {
@@ -37,7 +37,7 @@ class itfHoursField extends Vue {
37
37
 
38
38
  @Watch('hours')
39
39
  onHoursChanged() {
40
- this.$emit('input', formatHours(this.hours));
40
+ this.$emit('input', this.hours ? formatHours(this.hours) : '');
41
41
  }
42
42
 
43
43
  onValueChange(text) {
@@ -53,7 +53,6 @@ class itfHoursField extends Vue {
53
53
 
54
54
  onBlur(e) {
55
55
  const hours = parseHours(e.target.value) / 60;
56
- console.info(hours);
57
56
  this.$emit('update:hours', hours);
58
57
  }
59
58
  }