Skip to content

Commit 2c17645

Browse files
author
Marcin Łuczak
committed
Release 1.3.0
1 parent 7977626 commit 2c17645

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+8454
-892
lines changed

README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MDB 5 Vue
22

3-
Version: FREE 1.2.0
3+
Version: FREE 1.3.0
44

55
Documentation:
66
https://mdbootstrap.com/docs/b5/vue/

js/mdb.common.js

Lines changed: 562 additions & 669 deletions
Large diffs are not rendered by default.

js/mdb.common.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/mdb.umd.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/mdb.umd.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
{
22
"name": "mdb-vue-ui-kit",
3-
"version": "1.2.0",
3+
"version": "1.3.0",
44
"main": "js/mdb.umd.min.js",
55
"repository": "https://github.com/mdbootstrap/mdb-vue-ui-kit.git",
66
"author": "MDBootstrap",
77
"license": "MIT",
8-
"types":"src/types/main.d.ts"
9-
}
8+
"types": "src/types/main.d.ts",
9+
"web-types": "src/types/web-types.json",
10+
"vetur": {
11+
"tags": "src/types/tags.json",
12+
"attributes": "src/types/attributes.json"
13+
}
14+
}

src/components/free/components/MDBAccordion.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<component :is="tag" v-bind="$attrs" :class="className" ref="accordionRef">
2+
<component :is="tag" :class="className" ref="accordionRef">
33
<slot />
44
</component>
55
</template>

src/components/free/components/MDBAccordionItem.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<component :is="tag" v-bind="$attrs" :class="itemClassName" ref="itemRef">
2+
<component :is="tag" :class="itemClassName" ref="itemRef">
33
<h2 :class="headerClassName">
44
<button
55
@click="() => toggleAccordion(collapseId)"

src/components/free/components/MDBBadge.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<component :is="tag" :class="className" v-bind="attrs">
2+
<component :is="tag" :class="className">
33
<slot></slot>
44
</component>
55
</template>

src/components/free/components/MDBBtn.vue

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
:type="type"
55
:role="role"
66
:class="className"
7-
v-bind="attrs"
87
@click="handleClick"
98
v-mdb-ripple="ripple"
109
>
@@ -52,9 +51,8 @@ export default {
5251
picker: Boolean,
5352
},
5453
directives: { mdbRipple },
55-
inheritAttrs: false,
5654
emits: ["update:toggle"],
57-
setup(props, { attrs, emit }) {
55+
setup(props, { emit }) {
5856
const toggle = ref(props.toggle);
5957
6058
const className = computed(() => {
@@ -79,7 +77,6 @@ export default {
7977
8078
return {
8179
className,
82-
attrs,
8380
props,
8481
handleClick,
8582
};

0 commit comments

Comments
 (0)