diff --git a/example/docs/zh-CN/components/collapse.md b/example/docs/zh-CN/components/collapse.md index 6ac5dc41..4fda9c14 100644 --- a/example/docs/zh-CN/components/collapse.md +++ b/example/docs/zh-CN/components/collapse.md @@ -133,6 +133,39 @@ export default { ::: + +::: title 关闭动画 +::: + +::: demo + + + + + +::: + ::: title 事件使用 ::: diff --git a/example/docs/zh-CN/guide/changelog.md b/example/docs/zh-CN/guide/changelog.md index 54f08c4f..648f76c1 100644 --- a/example/docs/zh-CN/guide/changelog.md +++ b/example/docs/zh-CN/guide/changelog.md @@ -21,6 +21,7 @@
  • [新增] transition 组件 type 属性, 默认为 collapse 过渡。
  • [新增] transition 组件 enable 属性, 默认为 true 启用动画。
  • [新增] transition 组件 type 属性 fade 值, 提供淡出淡入效果。
  • +
  • [新增] collapse 组件 isAmin 属性, 是否启用折叠动画, 默认为 true。
  • [新增] input 组件 allow-clear 属性, 提供输入清空。
  • [新增] input 组件 prefix 插槽, 提供前缀设置。
  • [新增] input 组件 suffix 插槽, 提供后缀设置。
  • diff --git a/src/component/collapseItem/index.vue b/src/component/collapseItem/index.vue index 193b1916..c5e262b5 100644 --- a/src/component/collapseItem/index.vue +++ b/src/component/collapseItem/index.vue @@ -19,7 +19,7 @@ const props = withDefaults(defineProps(), { disabled: false, }); -const { accordion, activeValues, emit } = inject("layCollapse") as any; +const { accordion, activeValues, emit, isAmin } = inject("layCollapse") as any; let isShow = computed(() => { return activeValues.value.includes(props.id); @@ -57,7 +57,7 @@ const showHandle = function () { {{ title }} {{ isShow ? "" : "" }} - +

    diff --git a/src/component/switch/index.less b/src/component/switch/index.less index c58beeab..019552c4 100644 --- a/src/component/switch/index.less +++ b/src/component/switch/index.less @@ -23,6 +23,7 @@ top: 3px; width: 16px; height: 16px; + line-height: 16px; border-radius: 20px; background-color: @global-neutral-color-6; -webkit-transition: 0.1s linear;