3.0.4 • Published 3 years ago

@tntd/antd-cover v3.0.4

Weekly downloads
82
License
ISC
Repository
gitlab
Last release
3 years ago
  • 安装模块 npm install @tntd/antd-cover --save
  • 在引入样式的地方引入 @import "~@tntd/antd-cover/index.less";。此文件代表部分antd的样式强制覆盖。修改目录,例如salaxy的styles/style.less
  • 配置文件例如.babelrc中,加载less而非css,修改如下:

     [
         "import",
         {
             "libraryName": "antd",
             "libraryDirectory": "es",
             "style": true // 有些可能是css,改成true
         }
     ]
  • 修改编译文件webapck中modifyVars如下:

暗黑风格

    {
        test: /\.less$/,
        use: [
            devMode ? "style-loader" : MiniCssExtractPlugin.loader,
            "css-loader",
            {
                loader: "less-loader",
                options: {
                    javascriptEnabled: true,
                    modules: true,
                    localIndexName: "[name]__[local]___[hash:base64:5]",
                    modifyVars: {
                        hack: "true; @import \"~@tntd/antd-cover/tnt.less\";"
                    }
                }
            }
        ]
    }
3.0.4

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

3.0.3

3 years ago

3.0.2

3 years ago

3.0.1

3 years ago

3.0.0

3 years ago

2.0.0

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago