@pristy/pristy-libvue 1.21.2 → 1.21.3

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.
package/README.md CHANGED
@@ -40,6 +40,18 @@ These must be installed by the consuming application:
40
40
  | `vue-router` | ^4.6 |
41
41
  | `@codemirror/*` | ^6.x (14 packages) |
42
42
  | `codemirror` | 6.0.2 |
43
+ | `remixicon` | ^4.9.1 |
44
+
45
+ `remixicon` needs more than being installed: the components reference its
46
+ `ri-*` classes but the library never imports the stylesheet, so the consuming
47
+ application must load the font once, globally, from its entry point:
48
+
49
+ ```js
50
+ import "remixicon/fonts/remixicon.css";
51
+ ```
52
+
53
+ Without that import the icons render as blank squares, with no error and no
54
+ npm warning.
43
55
 
44
56
  ## Local Development
45
57