@me-framework/me-ui-antdv-next 0.0.23 → 0.0.24

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.
@@ -236,6 +236,17 @@ export interface MeMenuProps {
236
236
  * 是否显示右侧面板折叠悬浮按钮,默认 true
237
237
  */
238
238
  showRightToggle?: boolean;
239
+ /**
240
+ * 右侧面板折叠动画时长,数字(毫秒)或字符串(如 '0.3s'、'300ms')。
241
+ * 不传时使用 CSS 变量 --me-menu-transition-duration(默认 0.2s),传入后属性优先
242
+ */
243
+ collapseDuration?: string | number;
244
+ /**
245
+ * 右侧面板折叠动画缓动函数(CSS transition-timing-function 值),
246
+ * 如 'linear'、'ease'、'cubic-bezier(0.645, 0.045, 0.355, 1)'。
247
+ * 不传时使用 CSS 变量 --me-menu-transition-timing,传入后属性优先
248
+ */
249
+ collapseAnimation?: string;
239
250
  }
240
251
  /**
241
252
  * MeMenu 组件 Emits