Coder Social home page Coder Social logo

selemondev / nuxt-ui-vue Goto Github PK

View Code? Open in Web Editor NEW
46.0 6.0 4.0 651 KB

:construction: WIP Fully styled and customizable components from Nuxt UI to Vue 3.

Home Page: https://www.npmjs.com/package/nuxt-ui-vue

License: MIT License

HTML 0.13% JavaScript 0.16% TypeScript 44.39% Vue 55.23% CSS 0.10%
nuxt tailwindcss-components-library ui-components vue-component-library vue-components vue3-typescript component-framework nuxt-components ui-framework vue3-component-library vue3-ui-framework

nuxt-ui-vue's People

Contributors

angelhdzmultimedia avatar cuiyajie avatar selemondev avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

nuxt-ui-vue's Issues

nuxtlabsTheme resolve error when use vite build

I refer nuxtlabasTheme like import nuxtLabsTheme from 'nuxt-ui-vue/dist/theme/nuxtlabsTheme. but github ci builder will throw error

[vite]: Rollup failed to resolve import "nuxt-ui-vue/dist/theme/nuxtlabsTheme" from "/home/runner/work/b3d-frontend/b3d-frontend/web/src/ui/theme.ts".
This is most likely unintended because it can break your application at runtime.
If you do want to externalize this module explicitly add it to
`build.rollupOptions.external`
error during build:

I build this well in local, but github ci builder always throw error through tried other vite config.

I found same case here: vitejs/vite#7312

So, can we change the export style of nuxtlabsTheme like export { default as nuxtlabsTheme } from '@/theme/nuxtlabsTheme' in index.ts? or same question have you met? how to solve it?

Thanks a lot. Best wishes to you.

Custom Iconset by iconfiy

I notice that nuxt-ui-vue use iconify to support icon. That is good framework. Now I want to add my own icon collection, then use them in nuxt-ui-vue.

import { addCollection } from '@iconify/vue'
addCollection({
    prefix: 's24',
    icons: tranIcons,
    width: 24,
    height: 24
  }, 'b3d')

for example

toast.add({  title: '1234',  timeout: 0, icon: '@b3d:s24:cross-filled' })

I find that loadIcon throw error in UIcon component. Any example can show how to use custom iconset?

image validation error

Describe the bug
A clear and concise description of what the bug is.

When using image URLs from different providers, the image validation fails and displays a warning error in the console.

rename package

Rename nuxtlabs-ui-vue to nuxt-ui-vue so as to make the naming consistent across the repository to avoid confusion. This change will affect the project's name, package's name and documentation.

Recommend use Symbol as globalVariant key

Is your feature request related to a problem? Please describe.

I notice that 'config' was used as global variants inject key. That will make user confused when same key is used in own project.

Describe the solution you'd like

I think we should use Symbol('nuxt-config') as the key and export it for user

Migration issues from nuxt-ui to nuxt-ui-vue

Here is my first attempt in trying to replace @nuxthq/ui with nuxt-ui-vue in my nuxt app.

Here is a online demo of the original nuxt ui repo - https://pg-nuxtui.netlify.app/, github - https://github.com/pinegrow/pg-nuxtui

Reproduction with nuxt-ui-vue:
https://github.com/TechAkayy/pg-nuxtui-vue

Few issues:

  1. I had to comment-out UAvatar component in my HeroSection.vue as I was getting some Image is not defined error.
  2. I had my own safelisting logic already, and used it in place of nuxtlabs/ui module's ui > safelistColors options. But for some reason, my palette colors are getting ignored.
  3. Nuxtlabs/ui uses the iconify's unocss format with the i- prefix. I installed @unocss/nuxt and other packages, but the icons are not getting working.

Thank you for this great effort. Will play it with it more.

Questions about your workflow and plan for the future

Really cool ! Thanks a lot for all this work !

I use nuxt in many projects, and a build web extension with https://github.com/antfu/vitesse-webext
I plan to rewrite some projects with nuxtlabs/ui, and the web extension. Your repo is just what I need :)

I want to know about your workflow.
How do you follow the nuxtlabs/ui developement ? Do you watch every new commit on nuxtlabs/ui, or have you automatized some stuffs ? Do you plan to match exactly the same architecture and component ? And of course, will you follow all update made in nuxtlabs/ui ?

Thanks again.

Button variants not getting applied

Describe the bug
Assigning a variant to a Button does not do anything.

To Reproduce
Steps to reproduce the behavior:

  1. Assign variant outline (or ghost/soft/link) to UButton component
    • e.g. <UButton variant="outline">Button</UButton> in any .vue template
  2. See that no outline variant has been applied

Expected behavior
When assigning variant="outline" to the Button component, I'm expecting to see the Button have the outlined style shown in NuxtUI docs.

Screenshots
image
image

Additional context
Version: nuxt-ui-vue ^0.0.9

Many transitions not work well

For example,

const notificationTransitions = {
  enter: variant.value.transitionEnterActiveClass,
  enterFrom: variant.value.transitionEnterFromClass,
  enterTo: variant.value.transitionEnterToClass,
  leave: variant.value.transitionLeaveActiveClass,
  leaveFrom: variant.value.transitionLeaveFromClass,
  leaveTo: variant.value.transitionLeaveToClass,
}

should be:

const notificationTransitions = {
  enterClass: variant.value.transitionEnterActiveClass,
  enterFromClass: variant.value.transitionEnterFromClass,
  enterToClass: variant.value.transitionEnterToClass,
  leaveClass: variant.value.transitionLeaveActiveClass,
  leaveFromClass: variant.value.transitionLeaveFromClass,
  leaveToClass: variant.value.transitionLeaveToClass,
}

you should check the component Transition is from '@headlessui/vue' or 'vue'

changing some props in custom theme has no effect

Describe the bug

I'm trying to implement my own theme following the documentation. However, there are certain parameters that are not being considered, such as UButton "size," "color", "intent" etc.

But when i change UButton "rounded" for example, it works...

To Reproduce

// main
...
import nuxtLabsTheme from './customTheme'

import { createUI } from 'nuxt-ui-vue'

import App from './App.vue'

const app = createApp(App)

const UI = createUI({
  registerComponents: false,
})

app.use(UI, nuxtLabsTheme)

...
// customTheme
export default {
 ...
 UButton: {
    base : {
     ....
       default : {
         ...
         color: "red" <------------------------
       }
    }
 }

Expected behavior
the default color of a button must be red, or i still have a green button

remove `lodash-es` as a runtime dependency

Describe the bug

As stated by @danielroe in the official nuxt ui lib's repo issue #642: "Looking at performance, I'd recommend removing the runtime lodash-es dependency. A lot of the utilities can be replaced with core JS, and I think also make it easier to reason about."

Npm package name

As it's very early days, would be great to have the npm package sync with the name as nuxt-ui-vue.

It's not taken yet on npm, and would be easy for new users to install easily, when the name sync with the npm package name.

The reason why nuxtlabs/ui didn't change their package name is probably because they existed long before it was made open-source - more details here.. nuxt/ui#538 (comment)

But, there might be a reason for your to keep it as *labs, if you want to retain the coupling with the upstream. But, naming a package as nuxtlabs might raise the assumption that it's one of nuxtlabs project, no harm there, but it's just cleaner to be simpler.

Form

The Form component is used to validate form data using schema libraries such as Yup, Zod, Joi, Valibot or your own validation logic. It should work seamlessly with the FormGroup component to automatically display error messages around form elements.

The Form component requires the validate and state props for form validation.

  • state - A reactive object that holds the current state of the form.
  • validate - A function that takes the form's state as input and returns an array of FormError objects with the following fields:
  • message - The error message to display.
  • path - The path to the form element matching the name.

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.