@capitalos/react 1.1.1 → 1.2.1-rc.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 +4 -0
- package/dist/_tsup-dts-rollup.d.mts +1255 -0
- package/dist/_tsup-dts-rollup.d.ts +1255 -0
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/src/index.d.mts +34 -0
- package/dist/src/index.d.ts +34 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -50,3 +50,7 @@ function MyComponent() {
|
|
|
50
50
|
## TypeScript support
|
|
51
51
|
|
|
52
52
|
TypeScript definitions for `@capitalos/react` are built into the npm package and should be automatically picked up by your editor.
|
|
53
|
+
|
|
54
|
+
## Error Handling
|
|
55
|
+
|
|
56
|
+
For details on how errors are managed within the SDK and how to handle them as a consumer or a maintainer, please see our [Error Handling Guidelines](./ERROR_HANDLING.md).
|