@continuum-dev/starter-kit 0.1.4 → 0.1.5
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 +21 -21
- package/README.md +39 -39
- package/package.json +4 -4
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 Bryton Cooper
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Bryton Cooper
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
# @continuum-dev/starter-kit
|
|
2
|
-
|
|
3
|
-
Website: [continuumstack.dev](https://continuumstack.dev)
|
|
4
|
-
GitHub: [brytoncooper/continuum-dev](https://github.com/brytoncooper/continuum-dev)
|
|
5
|
-
|
|
6
|
-
`@continuum-dev/starter-kit` is the fastest way to get Continuum on screen in a React app.
|
|
7
|
-
|
|
8
|
-
Continuum itself stays headless by design. The starter kit is the opinionated convenience layer:
|
|
9
|
-
|
|
10
|
-
- ready-to-use primitives for common Continuum node types
|
|
11
|
-
- a default component map
|
|
12
|
-
- proposal and suggestion UI helpers
|
|
13
|
-
- prompt helpers re-exported from `@continuum-dev/prompts`
|
|
14
|
-
|
|
15
|
-
## Install
|
|
16
|
-
|
|
17
|
-
```bash
|
|
18
|
-
npm install @continuum-dev/starter-kit react
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
## Use it when
|
|
22
|
-
|
|
23
|
-
- you want a polished starting point instead of building your own component map first
|
|
24
|
-
- you want proposal-safe UI ready on day one
|
|
25
|
-
- you want prompt helpers available from the same package surface
|
|
26
|
-
|
|
27
|
-
## Example
|
|
28
|
-
|
|
29
|
-
```tsx
|
|
30
|
-
import { ContinuumProvider, ContinuumRenderer, starterKitComponentMap } from '@continuum-dev/starter-kit';
|
|
31
|
-
|
|
32
|
-
export function App() {
|
|
33
|
-
return (
|
|
34
|
-
<ContinuumProvider components={starterKitComponentMap} persist="localStorage">
|
|
35
|
-
<ContinuumRenderer view={view} />
|
|
36
|
-
</ContinuumProvider>
|
|
37
|
-
);
|
|
38
|
-
}
|
|
39
|
-
```
|
|
1
|
+
# @continuum-dev/starter-kit
|
|
2
|
+
|
|
3
|
+
Website: [continuumstack.dev](https://continuumstack.dev)
|
|
4
|
+
GitHub: [brytoncooper/continuum-dev](https://github.com/brytoncooper/continuum-dev)
|
|
5
|
+
|
|
6
|
+
`@continuum-dev/starter-kit` is the fastest way to get Continuum on screen in a React app.
|
|
7
|
+
|
|
8
|
+
Continuum itself stays headless by design. The starter kit is the opinionated convenience layer:
|
|
9
|
+
|
|
10
|
+
- ready-to-use primitives for common Continuum node types
|
|
11
|
+
- a default component map
|
|
12
|
+
- proposal and suggestion UI helpers
|
|
13
|
+
- prompt helpers re-exported from `@continuum-dev/prompts`
|
|
14
|
+
|
|
15
|
+
## Install
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npm install @continuum-dev/starter-kit react
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Use it when
|
|
22
|
+
|
|
23
|
+
- you want a polished starting point instead of building your own component map first
|
|
24
|
+
- you want proposal-safe UI ready on day one
|
|
25
|
+
- you want prompt helpers available from the same package surface
|
|
26
|
+
|
|
27
|
+
## Example
|
|
28
|
+
|
|
29
|
+
```tsx
|
|
30
|
+
import { ContinuumProvider, ContinuumRenderer, starterKitComponentMap } from '@continuum-dev/starter-kit';
|
|
31
|
+
|
|
32
|
+
export function App() {
|
|
33
|
+
return (
|
|
34
|
+
<ContinuumProvider components={starterKitComponentMap} persist="localStorage">
|
|
35
|
+
<ContinuumRenderer view={view} />
|
|
36
|
+
</ContinuumProvider>
|
|
37
|
+
);
|
|
38
|
+
}
|
|
39
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@continuum-dev/starter-kit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
"react": ">=18"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@continuum-dev/core": "^0.1.
|
|
47
|
-
"@continuum-dev/prompts": "^0.1.
|
|
48
|
-
"@continuum-dev/react": "^0.1.
|
|
46
|
+
"@continuum-dev/core": "^0.1.5",
|
|
47
|
+
"@continuum-dev/prompts": "^0.1.5",
|
|
48
|
+
"@continuum-dev/react": "^0.1.5"
|
|
49
49
|
}
|
|
50
50
|
}
|