Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@nuxt-alt/antdv

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nuxt-alt/antdv

A nuxt module to handle the use of ant-design-vue

  • 0.2.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Ant Design Vue module for Nuxt

Infos

A somewhat comprehensive module for Ant Design Vue

Setup

  1. Add @nuxt-alt/antdv and less dependency to your project
yarn add @nuxt-alt/antdv less
  1. Add @nuxt-alt/antdv to the modules section of nuxt.config.ts
export default defineNuxtConfig({
    modules: [
        '@nuxt-alt/antdv'
    ],
    antdv: {
        /* module options */
    }
});

Options

styles

  • Type: String
  • Default: less

Whether to use less or css for procesing. Do note that all themes options will not work with css as it is a pre-generated file.

StyleDescription
lessRenders the stylesheet in less
cssRenders the stylesheet in css

icons

  • Type: Boolean
  • Default: true

Whether to enable resolving icons for ant-design-vue.

themes.suffix

  • Type: String
  • Default: -theme

The suffix for when using the custom mode.

themes.mode

  • Type: String
  • Default: default

The theme mode to choose for ant-design-vue, choosing default will disable the option to use custom themes as they rely on being enclosed in a class.

ModeDescription
defaultRenders the default theme of ant-design-vue, which is the light theme but without being enclosed into a theme class
customdisables the default theme in favor of using the light and/or dark theme

themes.dark

  • Type: Object | boolean
  • Default: false

Modify the properties of the default dark theme.

PropertiesTypeDescription
compactBooleanWhether to use compact variables
themeStringThe theme's name
themePrefixStringPrefix of the theme to use ofr enclosing
modifyVarsObjectThe variables to edit for the theme

themes.light

  • Type: Object | boolean
  • Default: false

Modify the properties of the default light theme.

PropertiesTypeDescription
compactBooleanWhether to use compact variables
themeStringThe theme's name
themePrefixStringPrefix of the theme to use ofr enclosing
modifyVarsObjectThe variables to edit for the theme

themes.prefixClass

  • Type: String
  • Default: ant

Set the Class prefix for all the themes. For example instead of ant-button, if you were to set it as app it would then be app-button. You also need to change this in your ConfigProvider for ant-design-vue`

themeConfig

  • Type: Array
    • Items: Object
  • Default: []

You may register any other themes you wish to include in the preprocessing options.

Example (Example of a dark theme):

// nuxt.config.ts
export default defineNuxtConfig({
    antdv: {
        themeConfig: [{
            theme: 'dark',
            themePrefix: 'dark',
            dark: true,
            compact: false,
            modifyVars: {
                'text-color': 'fade(@white, 65%)',
                'gray-8': '@text-color',
                'background-color-base': '#555',
                'skeleton-color': 'rgba(0,0,0,0.8)',
                'root-entry-name': 'dark'
            },
        }]
    }
});

Setting the dark property will use the dark variables, setting the compact proprty will use compact variables.

Keywords

FAQs

Package last updated on 05 Dec 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc