@itfin/components 1.0.73 → 1.0.74

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.0.73",
3
+ "version": "1.0.74",
4
4
  "main": "dist/itfin-components.umd.js",
5
5
  "unpkg": "dist/itfin-components.common.js",
6
6
  "author": "Vitalii Savchuk <esvit666@gmail.com>",
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div class="itf-datepicker" :class="{'with-addon addon-start': prependIcon}">
2
+ <div class="itf-datepicker input-group" :class="{'with-addon addon-start': prependIcon, 'with-addon addon-end': clearable}">
3
3
  <div class="addon" v-if="prependIcon">
4
4
  <slot name="addon">
5
5
  <itf-icon :name="prependIcon" />
@@ -22,6 +22,18 @@
22
22
  :lazy="!focused"
23
23
  :placeholder="placeholder"
24
24
  />
25
+
26
+ <div class="addon-end" v-if="clearable && value">
27
+ <slot name="clear">
28
+ <itf-button
29
+ icon
30
+ small
31
+ @click="$emit('input', '')"
32
+ >
33
+ <itf-icon name="close" />
34
+ </itf-button>
35
+ </slot>
36
+ </div>
25
37
  <div style="display: none">
26
38
  <div ref="dropdown" class="itf-datepicker__dropdown">
27
39
  <itf-date-picker-inline
@@ -42,10 +54,13 @@
42
54
  @import '../../assets/scss/input-addon';
43
55
 
44
56
  .itf-datepicker {
45
- .addon-end {
57
+ &.with-addon .addon-end {
46
58
  pointer-events: all;
47
59
  padding-right: 0.25rem;
48
60
  }
61
+ .form-control {
62
+ border-radius: $input-border-radius !important;
63
+ }
49
64
 
50
65
  &__dropdown {
51
66
  width: max-content;
@@ -75,6 +90,7 @@ import { DateTime } from 'luxon';
75
90
  import { debounce } from '../../helpers/debounce';
76
91
  import tippy from 'tippy.js';
77
92
  import itfIcon from '../icon/Icon.vue';
93
+ import itfButton from '../button/Button.vue';
78
94
  import itfDatePickerInline from './DatePickerInline.vue';
79
95
  import ITFSettings from '../../ITFSettings';
80
96
 
@@ -82,6 +98,7 @@ export default @Component({
82
98
  name: 'itfDatePicker',
83
99
  components: {
84
100
  itfIcon,
101
+ itfButton,
85
102
  itfDatePickerInline,
86
103
  IMaskComponent,
87
104
  },
@@ -97,6 +114,7 @@ class itfDatePicker extends Vue {
97
114
  @Prop({ type: Boolean, default: false }) onlyCalendar;
98
115
  @Prop({ type: String, default: '' }) placeholder;
99
116
  @Prop({ type: String, default: '' }) prependIcon;
117
+ @Prop(Boolean) clearable;
100
118
 
101
119
  focused = false;
102
120
 
@@ -124,7 +124,7 @@ class itfModal extends Vue {
124
124
  document.body.appendChild(this.$el); // should append only to body
125
125
  }
126
126
  const { default: Modal } = await import('bootstrap/js/src/modal.js');
127
- this.modalEl = new Modal(this.$el);
127
+ this.modalEl = new Modal(this.$el, { backdrop: 'static' });
128
128
  this.onVisibleChanged(this.value);
129
129
  this.bindEvents();
130
130
  }
@@ -50,7 +50,7 @@
50
50
  &__autogrow &__autogrow-text {
51
51
  white-space: pre-line;
52
52
  visibility: hidden;
53
- min-height: 3rem;
53
+ min-height: 4rem;
54
54
  }
55
55
  }
56
56
  </style>