@shlinkio/shlink-frontend-kit 0.9.12 → 1.0.0
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 +3 -3
- package/dist/index.d.ts +1403 -114
- package/dist/index.js +1647 -242
- package/dist/tailwind.preset.css +49 -92
- package/package.json +2 -9
- package/dist/base.scss +0 -27
- package/dist/index.css +0 -1
- package/dist/ordering-pAYMfJPl.js +0 -108
- package/dist/tailwind.d.ts +0 -1454
- package/dist/tailwind.js +0 -1549
package/README.md
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
React components and utilities for Shlink frontend projects
|
|
4
4
|
|
|
5
|
-
## Tailwind
|
|
5
|
+
## Tailwind
|
|
6
6
|
|
|
7
|
-
This library provides
|
|
7
|
+
This library provides tailwindcss-based components. To use them make sure you add the following instructions to your tailwind stylesheet:
|
|
8
8
|
|
|
9
9
|
```css
|
|
10
|
-
@import 'tailwindcss'
|
|
10
|
+
@import 'tailwindcss';
|
|
11
11
|
|
|
12
12
|
/* Add these two lines */
|
|
13
13
|
@source '../node_modules/@shlinkio/shlink-frontend-kit';
|