diff --git a/src/action-sheet/index.js b/src/action-sheet/index.js index ca26d0f97..4335ef1bb 100644 --- a/src/action-sheet/index.js +++ b/src/action-sheet/index.js @@ -135,8 +135,10 @@ export default createComponent({ > {renderHeader()} {renderDescription()} - {renderOptions()} - {slots.default &&
{slots.default()}
} +
+ {renderOptions()} + {slots.default?.()} +
{renderCancel()} ); diff --git a/src/action-sheet/index.less b/src/action-sheet/index.less index 3a776e4f7..9928c7bcb 100644 --- a/src/action-sheet/index.less +++ b/src/action-sheet/index.less @@ -2,9 +2,18 @@ @import '../style/mixins/hairline'; .van-action-sheet { + display: flex; + flex-direction: column; max-height: @action-sheet-max-height; + overflow: hidden; color: @action-sheet-item-text-color; + &__content { + flex: 1; + overflow-y: auto; + -webkit-overflow-scrolling: touch; + } + &__item, &__cancel { display: block; @@ -42,6 +51,8 @@ } &__cancel { + flex-shrink: 0; + box-sizing: border-box; color: @action-sheet-cancel-text-color; } @@ -59,6 +70,7 @@ } &__header { + flex-shrink: 0; font-weight: @font-weight-bold; font-size: @action-sheet-header-font-size; line-height: @action-sheet-header-height; @@ -67,6 +79,7 @@ &__description { position: relative; + flex-shrink: 0; padding: 20px @padding-md; color: @action-sheet-description-color; font-size: @action-sheet-description-font-size; diff --git a/src/action-sheet/test/__snapshots__/index.legacy.js.snap b/src/action-sheet/test/__snapshots__/index.legacy.js.snap index a5685dfb5..932b1a226 100644 --- a/src/action-sheet/test/__snapshots__/index.legacy.js.snap +++ b/src/action-sheet/test/__snapshots__/index.legacy.js.snap @@ -1,10 +1,11 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP exports[`callback events 1`] = ` -
+
+
`; @@ -13,31 +14,40 @@ exports[`close-icon prop 1`] = `
Title
+
`; exports[`closeable prop 1`] = `
Title
+
`; -exports[`color option 1`] = `
`; +exports[`color option 1`] = ` +
+
+
+`; exports[`description prop 1`] = `
-
This is a description
+
This is a description
+
`; exports[`description slot 1`] = `
-
Custom Description
+
Custom Description
+
`; exports[`disable lazy-render 1`] = ` - `; -exports[`round prop 1`] = `
`; +exports[`round prop 1`] = ` +
+
+
+`; diff --git a/src/style/var.less b/src/style/var.less index bc7fa03c4..a0990ee0e 100644 --- a/src/style/var.less +++ b/src/style/var.less @@ -558,7 +558,7 @@ // Popup @popup-background-color: @white; @popup-transition: transform @animation-duration-base; -@popup-round-border-radius: 20px; +@popup-round-border-radius: 16px; @popup-close-icon-size: 22px; @popup-close-icon-color: @gray-5; @popup-close-icon-active-color: @gray-6; diff --git a/src/tab/test/__snapshots__/insert.legacy.js.snap b/src/tab/test/__snapshots__/insert.legacy.js.snap index 15b4c1272..bd82b97fe 100644 --- a/src/tab/test/__snapshots__/insert.legacy.js.snap +++ b/src/tab/test/__snapshots__/insert.legacy.js.snap @@ -43,3 +43,21 @@ exports[`insert tab with child component 1`] = `
`; + +exports[`insert tab with name dynamically 1`] = ` +
+
+
+ + +
+
+
+
+ +
1
+
+
+`; diff --git a/src/tab/test/insert.legacy.js b/src/tab/test/insert.legacy.js index bfd4a3edb..3c28b4053 100644 --- a/src/tab/test/insert.legacy.js +++ b/src/tab/test/insert.legacy.js @@ -26,6 +26,27 @@ test('insert tab dynamically', async () => { expect(wrapper).toMatchSnapshot(); }); +test('insert tab with name dynamically', async () => { + const wrapper = mount({ + template: ` + + 2 + 1 + + `, + data() { + return { + insert: false, + active: [{ name: 'foo', title: 'foo' }], + }; + }, + }); + + await later(); + wrapper.setData({ insert: true }); + expect(wrapper).toMatchSnapshot(); +}); + // this case will throw wierd error in index.spec.js // so separate it test('insert tab with child component', async () => { diff --git a/src/tabs/index.js b/src/tabs/index.js index 32e0fb94a..e6aeca15f 100644 --- a/src/tabs/index.js +++ b/src/tabs/index.js @@ -377,7 +377,7 @@ export default createComponent({ watch( () => children.length, () => { - setCurrentIndexByName(currentName.value || props.active); + setCurrentIndexByName(props.active || currentName.value); setLine(); nextTick(() => { scrollIntoView(true);