@itfin/components 1.0.80 → 1.0.84
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
|
@@ -35,11 +35,6 @@
|
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
|
-
.modal-open .itf-app {
|
|
39
|
-
-webkit-filter: blur(5px) grayscale(1);
|
|
40
|
-
-moz-filter: blur(5px) grayscale(1);
|
|
41
|
-
filter: blur(5px) grayscale(1);
|
|
42
|
-
}
|
|
43
38
|
</style>
|
|
44
39
|
<script>
|
|
45
40
|
import { Vue, Component, Prop, Watch, PropSync, Inject } from 'vue-property-decorator';
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
:data-testid="name ? `select:${name}` : 'select'"
|
|
11
11
|
@click="activateDropdown"
|
|
12
12
|
>
|
|
13
|
-
<div class="
|
|
13
|
+
<div class="text-muted" v-if="isValueEmpty">{{ placeholder }}</div>
|
|
14
14
|
|
|
15
15
|
<slot
|
|
16
16
|
v-if="!isValueEmpty && !multiple && customRender"
|
|
@@ -262,9 +262,6 @@ class itfAirSelect extends Vue {
|
|
|
262
262
|
min-height: 32px;
|
|
263
263
|
justify-content: space-between;
|
|
264
264
|
}
|
|
265
|
-
.placeholder {
|
|
266
|
-
color: #8993a4;
|
|
267
|
-
}
|
|
268
265
|
.valueMulti {
|
|
269
266
|
display: flex;
|
|
270
267
|
align-items: center;
|