@bloodhoundenterprise/doodleui 1.0.0-alpha.0 → 1.0.0-alpha.2
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 +29 -14
- package/dist/doodleui.js +3754 -804
- package/dist/index.d.ts +132 -0
- package/dist/style.css +1 -1
- package/package.json +16 -5
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src="https://img.shields.io/badge/version-1.0.0--alpha.
|
|
2
|
+
<img src="https://img.shields.io/badge/version-1.0.0--alpha.2-teal" alt="version 1.0.0-alpha.2"/>
|
|
3
3
|
<a href="https://ghst.ly/BHSlack">
|
|
4
4
|
<img src="https://img.shields.io/badge/BloodHound Slack-4A154B?logo=slack&logoColor=EEF0F2"
|
|
5
5
|
alt="BloodHound Slack"></a>
|
|
@@ -17,6 +17,20 @@ This library is written in TypeScript and leverages [Radix](https://www.radix-ui
|
|
|
17
17
|
|
|
18
18
|
- [Node.js 20.x](https://nodejs.org/)
|
|
19
19
|
|
|
20
|
+
These components are built for usage with the Roboto font though there are fallback fonts in place if Roboto is not found. The Roboto font will need to be included in your project's assets or it will need to be pulled in via CDN for the font to display as expected.
|
|
21
|
+
|
|
22
|
+
Via Fontsource:
|
|
23
|
+
|
|
24
|
+
```
|
|
25
|
+
yarn add @fontsource/roboto
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Then import the font in your entrypoint:
|
|
29
|
+
|
|
30
|
+
```
|
|
31
|
+
import '@fontsource/roboto/400.css';
|
|
32
|
+
```
|
|
33
|
+
|
|
20
34
|
### Getting Started
|
|
21
35
|
|
|
22
36
|
Clone this repository
|
|
@@ -40,19 +54,20 @@ yarn dev
|
|
|
40
54
|
|
|
41
55
|
### Other Scripts
|
|
42
56
|
|
|
43
|
-
| Command | Description
|
|
44
|
-
| --------------------------------- |
|
|
45
|
-
| dev | Start the dev server
|
|
46
|
-
| build | Build the component library
|
|
47
|
-
| lint | Run linter checks
|
|
48
|
-
| test | Run vitest
|
|
49
|
-
| storybook | Same as dev
|
|
50
|
-
| build:storybook | Build storybook documentation
|
|
51
|
-
| build:styles | Generate CSS via TailwindCSS
|
|
52
|
-
| generate-index | Update `src/components/index.ts` automatically
|
|
53
|
-
| create-component <component name> | Create a new component in `src/components`
|
|
54
|
-
| format:check | Check file formatting
|
|
55
|
-
| format:write | Fix file formatting
|
|
57
|
+
| Command | Description |
|
|
58
|
+
| --------------------------------- | ---------------------------------------------------- |
|
|
59
|
+
| dev | Start the dev server |
|
|
60
|
+
| build | Build the component library |
|
|
61
|
+
| lint | Run linter checks |
|
|
62
|
+
| test | Run vitest |
|
|
63
|
+
| storybook | Same as dev |
|
|
64
|
+
| build:storybook | Build storybook documentation |
|
|
65
|
+
| build:styles | Generate CSS via TailwindCSS |
|
|
66
|
+
| generate-index | Update `src/components/index.ts` automatically |
|
|
67
|
+
| create-component <component name> | Create a new component in `src/components` |
|
|
68
|
+
| format:check | Check file formatting |
|
|
69
|
+
| format:write | Fix file formatting |
|
|
70
|
+
| update-badge | Updates the version badge in the [README](README.md) |
|
|
56
71
|
|
|
57
72
|
## Licensing
|
|
58
73
|
|