create-foldkit-app 0.9.0 → 0.10.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/dist/examples.js +6 -0
- package/package.json +3 -3
package/dist/examples.js
CHANGED
|
@@ -16,6 +16,7 @@ export const EXAMPLE_VALUES = [
|
|
|
16
16
|
'pixel-art',
|
|
17
17
|
'websocket-chat',
|
|
18
18
|
'kanban',
|
|
19
|
+
'web-components',
|
|
19
20
|
'ui-showcase',
|
|
20
21
|
];
|
|
21
22
|
export const examples = [
|
|
@@ -104,6 +105,11 @@ export const examples = [
|
|
|
104
105
|
title: 'kanban',
|
|
105
106
|
description: 'Drag-and-drop board with fractional indexing, keyboard navigation, and screen reader announcements',
|
|
106
107
|
},
|
|
108
|
+
{
|
|
109
|
+
value: 'web-components',
|
|
110
|
+
title: 'web-components',
|
|
111
|
+
description: 'QR code designer wiring two real third-party web components into Foldkit with CustomElement.define (vanilla-colorful and Shoelace)',
|
|
112
|
+
},
|
|
107
113
|
{
|
|
108
114
|
value: 'ui-showcase',
|
|
109
115
|
title: 'ui-showcase',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-foldkit-app",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "Create Foldkit applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -12,9 +12,9 @@
|
|
|
12
12
|
"templates"
|
|
13
13
|
],
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@effect/platform-node": "4.0.0-beta.
|
|
15
|
+
"@effect/platform-node": "4.0.0-beta.64",
|
|
16
16
|
"chalk": "^5.6.2",
|
|
17
|
-
"effect": "4.0.0-beta.
|
|
17
|
+
"effect": "4.0.0-beta.64",
|
|
18
18
|
"rimraf": "^6.1.3",
|
|
19
19
|
"typescript": "^6.0.3"
|
|
20
20
|
},
|