Git Product home page Git Product logo

Comments (4)

last-partizan avatar last-partizan commented on June 24, 2024 1

Thanks, working as expected now!

from formkit.

last-partizan avatar last-partizan commented on June 24, 2024

I think, this can be fixed on the theme level.

But, until it's fixed i wanted to do a local fix by overriding classes.

I have tried this, but it doesn't work. How to properly pass path to dropdown listitem element? I have also tried using generateClasses, it provides a way to specify which widget i want to style, but it does not support object syntax, and i like to use object syntax, because it's much better than plain text.

export const formKitConfig = defaultConfig({
  config: {
    rootClasses,
    classes: {
      'family:dropdown__listitem': {
        $reset: true,
        'text-red': true,
      },
    },
  },
})

from formkit.

andrew-boyd avatar andrew-boyd commented on June 24, 2024

I'll look into correcting this at the theme level, but you can try this in your config. generateClasses is going to be the play here:

import { generateClasses } from '@formkit/themes'

export const formKitConfig = defaultConfig({
  config: {
    rootClasses,
    classes: generateClasses({
      'family:dropdown': {
        listitem: {
          $reset: true,
          'text-red': true,
        }
      },
    }),
  },
})

Here's a playground showing it in action: https://formkit.link/9c825b7754884c8a79b83dc0a88d5ed9

You can write your own selector for listitem if you want without generateClasses but you'll need to do your own filtering in a function to make sure it only applies to dropdown family items. Here's the relevant source code:

export function generateClasses(

from formkit.

andrew-boyd avatar andrew-boyd commented on June 24, 2024

@last-partizan — This is fixed. If you regenerate your theme you should get the new styling.

from formkit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.