uview-plus 3.3.50 → 3.3.53
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 +9 -0
- package/components/u-avatar/u-avatar.vue +2 -2
- package/components/u-checkbox/u-checkbox.vue +1 -1
- package/components/u-column-notice/columnNotice.js +2 -1
- package/components/u-column-notice/props.js +5 -1
- package/components/u-column-notice/u-column-notice.vue +1 -0
- package/components/u-icon/u-icon.vue +1 -1
- package/components/u-notice-bar/noticeBar.js +2 -1
- package/components/u-notice-bar/props.js +5 -1
- package/components/u-notice-bar/u-notice-bar.vue +1 -0
- package/components/u-popup/u-popup.vue +2 -0
- package/components/u-radio/u-radio.vue +13 -10
- package/libs/css/flex.scss +1 -1
- package/package.json +1 -1
package/changelog.md
CHANGED
|
@@ -17,9 +17,11 @@
|
|
|
17
17
|
@afterEnter="afterEnter"
|
|
18
18
|
@click="clickHandler"
|
|
19
19
|
>
|
|
20
|
+
<!-- @click.stop不能去除,去除会导致居中模式下点击内容区域触发关闭弹窗 -->
|
|
20
21
|
<view
|
|
21
22
|
class="u-popup__content"
|
|
22
23
|
:style="[contentStyle]"
|
|
24
|
+
@click.stop="noop"
|
|
23
25
|
@touchmove.stop.prevent="noop"
|
|
24
26
|
>
|
|
25
27
|
<u-status-bar v-if="safeAreaInsetTop"></u-status-bar>
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
:class="iconClasses"
|
|
12
12
|
:style="[iconWrapStyle]"
|
|
13
13
|
>
|
|
14
|
-
<slot name="icon">
|
|
14
|
+
<slot name="icon" :elIconSize="elIconSize" :elIconColor="elIconColor">
|
|
15
15
|
<u-icon
|
|
16
16
|
class="u-radio__icon-wrap__icon"
|
|
17
17
|
name="checkbox-mark"
|
|
@@ -20,15 +20,18 @@
|
|
|
20
20
|
/>
|
|
21
21
|
</slot>
|
|
22
22
|
</view>
|
|
23
|
-
<
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
23
|
+
<view class="u-radio__label-wrap cursor-pointer" @tap.stop="labelClickHandler">
|
|
24
|
+
<slot name="label" :label="label" :elDisabled="elDisabled">
|
|
25
|
+
<text
|
|
26
|
+
class="u-radio__text"
|
|
27
|
+
:style="{
|
|
28
|
+
color: elDisabled ? elInactiveColor : elLabelColor,
|
|
29
|
+
fontSize: elLabelSize,
|
|
30
|
+
lineHeight: elLabelSize
|
|
31
|
+
}"
|
|
32
|
+
>{{label}}</text>
|
|
33
|
+
</slot>
|
|
34
|
+
</view>
|
|
32
35
|
</view>
|
|
33
36
|
</template>
|
|
34
37
|
|
package/libs/css/flex.scss
CHANGED