@nice2dev/testing 1.0.10
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 +36 -0
- package/dist/index.cjs +243 -0
- package/dist/index.d.ts +1618 -0
- package/dist/index.mjs +19016 -0
- package/dist/magic-string.es-B81Zo59j.cjs +10 -0
- package/dist/magic-string.es-uPKorP4O.js +663 -0
- package/package.json +57 -0
package/README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# @nice2dev/testing
|
|
2
|
+
|
|
3
|
+
> Shared testing utilities for Nice2Dev UI libraries
|
|
4
|
+
|
|
5
|
+
Part of the [Nice2Dev](https://nice2dev.com) UI monorepo.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install @nice2dev/testing
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
```tsx
|
|
16
|
+
import {} from /* component(s) */ '@nice2dev/testing';
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## What's inside
|
|
20
|
+
|
|
21
|
+
- **7** source files
|
|
22
|
+
- Tree-shakable ESM build via Vite + tsup
|
|
23
|
+
- Full TypeScript types
|
|
24
|
+
- WCAG 2.1 AA accessibility baseline
|
|
25
|
+
|
|
26
|
+
## Featured components
|
|
27
|
+
|
|
28
|
+
- See package source for the full export list.
|
|
29
|
+
|
|
30
|
+
## Examples
|
|
31
|
+
|
|
32
|
+
Live, interactive examples for every component are available in the [Nice2Dev showcase](https://github.com/nice2dev/NiceToDev.UI/tree/main/packages/showcase) — each entry exposes presets, size / state / label / error placement selectors and full prop documentation.
|
|
33
|
+
|
|
34
|
+
## License
|
|
35
|
+
|
|
36
|
+
MIT — see [LICENSE](../../LICENSE) at the repository root.
|