vitmalina / w2ui

UI widgets for modern apps. Data table, forms, toolbars, sidebar, tabs, tooltips, popups. All under 120kb (gzipped).
http://w2ui.com
MIT License
2.67k stars 727 forks source link

Requesting to update the npm package #2580

Open mahfuz225bd opened 2 weeks ago

mahfuz225bd commented 2 weeks ago

I tested with a simple grid example. Working with direct link, "https://rawgit.com/vitmalina/w2ui/master/dist/w2ui.es6.min.js", but don't working while using by installing this package via npm in a project (like React). I think you should update this:

I saw, Code version of current package (npm): w2ui 2.0.0 (4/26/2023, 10:40:17 AM) But the current version is (GitHub): w2ui 2.0.x (nightly) (10/10/2024, 9:19:34 AM)

dv1x3r commented 2 weeks ago

There is a workaround I use to get any version (based on commit id) directly from the Github repo.

Using npm: npm install vitmalina/w2ui#30be19b Using bun: bun install vitmalina/w2ui#30be19b

This will include the following dependency to the package.json:

  "dependencies": {
    "w2ui": "vitmalina/w2ui#30be19b"
  }