@crowdstrike/tailwind-toucan-base 3.1.0 → 3.2.1
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 +20 -0
- package/index.css +38949 -0
- package/index.d.ts +2752 -0
- package/package.json +34 -26
- package/{plugins → src/plugins}/form-fields.js +0 -0
- package/{plugins → src/plugins}/index.js +0 -0
- package/{plugins → src/plugins}/interaction.js +0 -0
- package/{plugins → src/plugins}/line-clamp.js +0 -0
- package/{plugins → src/plugins}/theme-plugin.js +0 -0
- package/{plugins → src/plugins}/typography.js +0 -0
- package/{plugins → src/plugins}/variables.js +0 -0
- package/{index.js → src/tailwind.config.js} +0 -0
- package/src/theme-data.js +2708 -0
- package/{themes.json → src/themes.json} +0 -0
- package/toucan.css +38949 -0
package/README.md
CHANGED
@@ -57,6 +57,26 @@ pnpm run build:preview
|
|
57
57
|
npx http-server ./dist
|
58
58
|
```
|
59
59
|
|
60
|
+
Note that changes to `src` or `build` scripts will require re-running `pnpm start`.
|
61
|
+
|
62
|
+
## Previewing manual tests locally
|
63
|
+
|
64
|
+
```bash
|
65
|
+
pnpm build
|
66
|
+
```
|
67
|
+
|
68
|
+
then, open the `manual-test.html`
|
69
|
+
```bash
|
70
|
+
firefox ./manual-test.html
|
71
|
+
```
|
72
|
+
|
73
|
+
Or, along with the tailwind-preview
|
74
|
+
```bash
|
75
|
+
pnpm start
|
76
|
+
```
|
77
|
+
|
78
|
+
and visit `http://localhost:8080/manual`
|
79
|
+
|
60
80
|
## Importing colors and shadows from Figma
|
61
81
|
|
62
82
|
This addon provides the ability to pull our palette information directly from Figma files and store them in
|