@avakhula/ui 0.1.17 → 0.1.19
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/dist/index.js +510 -502
- package/dist/index.umd.cjs +42 -42
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/assets/scss/mixins/dropdown-list-item.scss +1 -1
- package/src/components/Dropdown/DropdownItem.vue +1 -1
- package/src/components/Tabs/Tabs.vue +7 -1
- package/src/components/TreeSelect/Select.vue +2 -1
package/package.json
CHANGED
|
@@ -16,7 +16,9 @@
|
|
|
16
16
|
>
|
|
17
17
|
<ib-icon class="tab-icon" v-if="tab.icon" :name="tab.icon" />
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
<template v-if="showTitle">
|
|
20
|
+
{{ tab.title }}
|
|
21
|
+
</template>
|
|
20
22
|
</a>
|
|
21
23
|
</div>
|
|
22
24
|
<ib-tab-dropdown
|
|
@@ -41,6 +43,10 @@ import getHrefFromId from "../../helpers/getHrefFromID";
|
|
|
41
43
|
export default {
|
|
42
44
|
name: "IbTabs",
|
|
43
45
|
props: {
|
|
46
|
+
showTitle: {
|
|
47
|
+
type: Boolean,
|
|
48
|
+
default: true,
|
|
49
|
+
},
|
|
44
50
|
selectedTabId: {
|
|
45
51
|
type: String,
|
|
46
52
|
default: "",
|
|
@@ -981,7 +981,8 @@ export default {
|
|
|
981
981
|
},
|
|
982
982
|
onClose() {
|
|
983
983
|
this.isOpen = false;
|
|
984
|
-
this.
|
|
984
|
+
this.filterString = "";
|
|
985
|
+
this.filterFunc(this.actualOptions, this.filterString);
|
|
985
986
|
|
|
986
987
|
if (this.isMultiple) {
|
|
987
988
|
this.$emit("close", Object.keys(this.selected));
|