EXP | With Fusion UI
See original GitHub issueWhat is the example you wish to see?
I also know a UI component library that is widely used in Chinese communities, Fusion UI (or alibaba-fusion/next) Fusion UI : https://github.com/alibaba-fusion/next
Is there any context that might help us understand?
I think Fusion UI and Ant Design UI are very similar in function and use.
I try to install @alifd/next and write @import '@alifd/next/dist/next.css';
in index.css, but it was wrong when reading css files.
This is not a very urgent matter, but I hope you can help me to create a little example or tell me why this is wrong in your spare time.
Thank you for your care.
Code of Conduct
- I agree to follow this project’s Code of Conduct
- I checked the current issues for duplicate problems.
Issue Analytics
- State:
- Created a year ago
- Comments:8 (5 by maintainers)
Top Results From Across the Web
Bad Fusion UI experience - Autodesk Community - Fusion 360
Hello Fusion enthuisiasts and active users! I have waited on every Fusion update, that there will be some enchancement of Fusion Browser/ ...
Read more >User Experience Design | Fusion Alliance
With a focus on the overall feel of the customer experience, our UX design team works to create efficient, relevant, and delightful experiences...
Read more >InformaCast Fusion UI Overview
Simplified the user experience when sending a notification from the InformaCast Fusion Administration Console. User-added image. Notification ...
Read more >Experience Designer / UI+UX Engineer — Hiring Now | Fusion
Product Experience and Design (PXD) requires a unique blend of real-world experience and theory, entrepreneurial zeal, and elite production and execution.
Read more >3.1 Oracle Fusion Middleware Extensions for Applications
Flexfields enable related attributes and user interface (UI) components to be dynamically created based on keys from the controlling data. There are three...
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
It looks like something like this was reported but the maintainer added a
wontfix
tag,Hi @zangguojun,
This is happening because the Parcel CSS parser doesn’t believe the imported CSS from
@alifd/next/dist/next.css
is valid.This is due to the following line in the CSS file:
(The
0\0
is what it is complaining about since it’s not valid CSS. It’s a hack in CSS to detect IE)Here’s the relevant Parcel issue discussing this.
The way they say to solve it is to use something like patch-package to patch the CSS file in
node_modules
or submit an issue/PR to the next project asking them to remove the incorrect syntax CSS and use@supports
. Most of the issues on that repo are in Chinese, so I’m not sure if someone talked about this already there.If you find a way to get this to work with Plasmo, it’d be amazing to share it with the community by submitting a PR to our examples repo.