about dynamic attributify mode
See original GitHub issueHello guys,
I have a class need to use attributify mode,
pos="!fixed"
it’s working
pos={isSideFixed ? '!fixed' : 'relative'}
it’s not working
How do I get the corresponding css generated in advance? using the safelist
?
Issue Analytics
- State:
- Created 10 months ago
- Comments:9 (4 by maintainers)
Top Results From Across the Web
Attributify Mode with a Plugin · Issue #237 - GitHub
Is there something I can add to my plugin to make it intellisense aware with attributes? FYI it does complete dope-my-stuff inside the...
Read more >Attributify Mode - Windi CSS
Attributify is opt-in by default, start by enabling it in your windi config. windi.config.ts. import { defineConfig } from 'windicss/helpers' ...
Read more >WindiCSS IntelliSense - Visual Studio Marketplace
enableDynamicCompletion, boolean, true, Enable Dynamic Utilities Completion like p-{int} ... Enable Utility Completion For Attributify Mode.
Read more >unocss - npm
Attributify Mode - group utilities in attributes; Pure CSS Icons - use any icon as a single class. Inspector - inspect and debug...
Read more >Reimagine Atomic CSS - Anthony Fu
Value Auto Infering and Attributify Mode makes my development even ... To make it dynamic, change the matcher to a RegExp and the...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@Handpear I made a PR to fix this issue: #1921
In the meantime, you could use this roughly written extractor:
Test it in playground
@sibbng Thank you