remoraid 1.1.0 → 2.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/LICENSE +1 -1
- package/README.md +12 -0
- package/dist/core/index.cjs +1206 -0
- package/dist/core/index.d.ts +264 -0
- package/dist/core/index.js +1237 -0
- package/dist/{styles.css → core/styles.css} +5 -0
- package/dist/jsonforms/index.cjs +721 -0
- package/dist/jsonforms/index.d.ts +28 -0
- package/dist/jsonforms/index.js +724 -0
- package/dist/{ssc.cjs → server/index.cjs} +11 -7
- package/dist/server/index.d.ts +11 -0
- package/dist/{ssc.js → server/index.js} +7 -3
- package/package.json +24 -14
- package/dist/index.cjs +0 -412
- package/dist/index.d.ts +0 -51
- package/dist/index.js +0 -395
- package/dist/ssc.d.ts +0 -10
package/LICENSE
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
MIT License
|
2
2
|
|
3
|
-
Copyright (c)
|
3
|
+
Copyright (c) 2025 Konrad Goldammer <https://github.com/konradag>
|
4
4
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
@@ -1,3 +1,15 @@
|
|
1
|
+
# Usage
|
2
|
+
|
3
|
+
`RemoraidProvider` must be rendered at the root of your application and should be used only once.
|
4
|
+
|
5
|
+
```typescript
|
6
|
+
import { RemoraidProvider } from "remoraid";
|
7
|
+
|
8
|
+
function Demo() {
|
9
|
+
return <RemoraidProvider>{/_ Your app here _/}</RemoraidProvider>;
|
10
|
+
}
|
11
|
+
```
|
12
|
+
|
1
13
|
# License
|
2
14
|
|
3
15
|
MIT
|