create-foldkit-app 0.9.1 → 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.
Files changed (2) hide show
  1. package/dist/examples.js +6 -0
  2. package/package.json +1 -1
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.9.1",
3
+ "version": "0.10.0",
4
4
  "description": "Create Foldkit applications",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",