@rogieking/figui3 1.0.89 → 1.0.90

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +13 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -39,12 +39,25 @@ The library includes the following components:
39
39
  npm install fig-js
40
40
  ```
41
41
 
42
+ ```jsx
43
+ import "@rogieking/figui3/fig.css";
44
+ import "@rogieking/figui3/fig.js";
45
+ ```
46
+
42
47
  Or include directly in your HTML:
43
48
 
44
49
  ```html
50
+ <link rel="stylesheet" href="https://unpkg.com/fig-js@latest/dist/fig.css" />
45
51
  <script src="https://unpkg.com/fig-js@latest/dist/fig.js"></script>
46
52
  ```
47
53
 
54
+ or
55
+
56
+ ```html
57
+ <link rel="stylesheet" href="https://esm.sh/@rogieking/figui3@latest/fig.css" />
58
+ <script src="https://esm.sh/@rogieking/figui3@latest/fig.js"></script>
59
+ ```
60
+
48
61
  ## Usage
49
62
 
50
63
  ```html
package/package.json CHANGED
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "name": "@rogieking/figui3",
3
- "version": "1.0.89"
3
+ "version": "1.0.90"
4
4
  }