@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 +12 -0
- package/dist/pristy-libvue.es.js +1936 -1918
- package/dist/pristy-libvue.es.js.map +1 -1
- package/dist/pristy-libvue.umd.js +6 -6
- package/dist/pristy-libvue.umd.js.map +1 -1
- package/dist/src/components/search/AdvancedSearchPanel.vue.d.ts.map +1 -1
- package/dist/src/components/search/ExactSearch.vue.d.ts.map +1 -1
- package/dist/src/i18n/index.d.ts +2 -0
- package/dist/src/i18n/index.d.ts.map +1 -1
- package/dist/src/services/userSearchQuery.d.ts +31 -0
- package/dist/src/services/userSearchQuery.d.ts.map +1 -0
- package/dist/src/stores/search.d.ts +2 -0
- package/dist/src/stores/search.d.ts.map +1 -1
- package/package.json +13 -12
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
|
|