npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ant-design-vue-codemod

v1.0.0

Published

Ant Design Vue codemod tools

Downloads

192

Readme

What codemod can do

✅ —— codemod 可直接替换

⚠️ —— codemod 未实现,但可能可以实现;codemod 操作完成后需要进一步检查或修改

❌ —— codemod 无法实现

🆖 —— 无需处理,ant-design-vue 自身兼容

4.0 有哪些不兼容的变化

(❌)设计规范调整

  • 基础圆角调整,由统一的 2px 改为四级圆角,分别为 2px 4px 6px 8px,分别应用于不同场景,比如默认尺寸的 Button 的圆角调整为了 6px
  • 主色调整,由 #1890ff 改为 #1677ff
  • 整体阴影调整,由原本的三级阴影调整为两级,分别用于常驻页面的组件(如 Card)和交互反馈(如 Dropdown)。
  • 部分组件内间距调整。
  • 整体去线框化。

(❌)技术调整

  • 弃用 less,采用 CSS-in-JS,更好地支持动态主题。
    • 所有 less 文件全部移除,less 变量不再支持透出。
    • 产物中不再包含 css 文件。由于 CSS-in-JS 支持按需引入,原本的 ant-design-vue/dist/antd.css 也已经移除,如果需要重置一些基本样式请引入 ant-design-vue/dist/reset.css
    • 如果需要组件重置样式,又不想引入 ant-design-vue/dist/reset.css 从而导致污染全局样式的话,可以尝试在应用最外层使用App 组件,解决原生元素没有 ant-design-vue 规范样式的问题。
  • 移除 css variables 以及在此之上构筑的动态主题方案。
  • LocaleProvider 在 3.x 中已经废弃(使用 <ConfigProvider locale /> 替代),我们在 4.x 里彻底移除了相关目录 ant-design-vue/es/locale-providerant-design-vue/lib/locale-provider
  • 不再支持 babel-plugin-import,CSS-in-JS 本身具有按需加载的能力,不再需要插件支持。

(❌)兼容性调整

  • 不再支持 IE 浏览器。

组件 API 调整

  • (✅)组件弹框的 classname API 统一为 popupClassNamedropdownClassName 等类似 API 都会被替换。

    • (✅)AutoComplete 组件
    • (✅)Cascader 组件
    • (✅)Select 组件
    • (✅)TreeSelect 组件
    • (✅)TimePicker 组件
    • (✅)DatePicker 组件
    • (✅)Mentions 组件
  • (⚠️)组件弹框的受控可见 API 统一为 openvisible 等类似 API 都会被替换。

    • (✅)Drawer 组件 visible 变为 open
    • (✅)Modal 组件 visible 变为 open
    • (✅)Dropdown 组件 visible 变为 open
    • (✅)Tooltip 组件 visible 变为 open
    • (✅)Tag 组件 visible 已移除。
    • (✅)Slider 组件 tooltip 相关 API 收敛到 tooltip 属性中。
    • (❌)Table 组件 filterDropdownVisible 变为 filterDropdownOpen
  • (❌)getPopupContainer: 所有的 getPopupContainer 都需要保证返回的是唯一的 div。

  • (⚠️)Drawer styleclass 迁移至 Drawer 弹层区域上,原属性替换为 rootClassNamerootStyle

组件重构与移除

  • (⚠️)移除 locale-provider 目录。LocaleProvider 在 v4 中已移除,请使用 ConfigProvider 替代。

  • (❌)移除栅格布局中的xxxl断点属性。 xxxl属性已经在 v4 被移除,您可以使用 主题定制 修改 screen[XS|SM|MD|LG|XL|XXL] 来修改断点值实现。

  • (🆖)BackTop 组件在 4.0.0 中废弃,移至 FloatButton 悬浮按钮中。如需使用,可以从 FloatButton 中引入。