uview-plus 3.1.4 → 3.1.6
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/changelog.md +4 -0
- package/components/u--text/u--text.vue +1 -2
- package/components/u-icon/u-icon.vue +1 -0
- package/components/u-tabbar/u-tabbar.vue +1 -0
- package/components/u-tabbar-item/u-tabbar-item.vue +4 -2
- package/components/u-tabs/u-tabs.vue +1 -0
- package/components/u-text/u-text.vue +1 -0
- package/libs/config/config.js +1 -1
- package/package.json +1 -1
package/changelog.md
CHANGED
|
@@ -22,7 +22,6 @@
|
|
|
22
22
|
:align="align"
|
|
23
23
|
:wordWrap="wordWrap"
|
|
24
24
|
:customStyle="customStyle"
|
|
25
|
-
@click="$emit('click')"
|
|
26
25
|
></uvText>
|
|
27
26
|
</template>
|
|
28
27
|
|
|
@@ -38,7 +37,7 @@ import mpMixin from '../../libs/mixin/mpMixin.js'
|
|
|
38
37
|
import mixin from '../../libs/mixin/mixin.js'
|
|
39
38
|
export default {
|
|
40
39
|
name: "u--text",
|
|
41
|
-
mixins: [mpMixin, mixin, props,],
|
|
40
|
+
mixins: [mpMixin, mixin, props,],
|
|
42
41
|
components: {
|
|
43
42
|
uvText,
|
|
44
43
|
},
|
|
@@ -114,12 +114,13 @@
|
|
|
114
114
|
|
|
115
115
|
<style lang="scss" scoped>
|
|
116
116
|
@import "../../libs/css/components.scss";
|
|
117
|
-
|
|
118
117
|
.u-tabbar-item {
|
|
119
118
|
@include flex(column);
|
|
120
119
|
align-items: center;
|
|
121
120
|
justify-content: center;
|
|
122
121
|
flex: 1;
|
|
122
|
+
width: 100%;
|
|
123
|
+
height: 100%;
|
|
123
124
|
|
|
124
125
|
&__icon {
|
|
125
126
|
@include flex;
|
|
@@ -138,7 +139,8 @@
|
|
|
138
139
|
/* #ifdef MP */
|
|
139
140
|
// 由于小程序都使用shadow DOM形式实现,需要给影子宿主设置flex: 1才能让其撑开
|
|
140
141
|
:host {
|
|
141
|
-
flex: 1
|
|
142
|
+
flex: 1;
|
|
143
|
+
width: 100%;
|
|
142
144
|
}
|
|
143
145
|
/* #endif */
|
|
144
146
|
</style>
|
package/libs/config/config.js
CHANGED