quilt-vanilla 0.2.2 → 0.2.3
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 +43 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,6 +2,34 @@
|
|
|
2
2
|
|
|
3
3
|
Vanilla DOM pane layouts, tabs, themes, resizing, and same-origin browser popouts. Re-exports the core API and does not install React. MIT licensed, ESM and TypeScript.
|
|
4
4
|
|
|
5
|
+
<!-- shared-overview:start -->
|
|
6
|
+
|
|
7
|
+
Quilt is a TypeScript library for split panes, tab groups, and popout windows.
|
|
8
|
+
It provides a framework-independent layout model, a DOM renderer, and React bindings.
|
|
9
|
+
Applications supply pane content and manage their own data and storage.
|
|
10
|
+
|
|
11
|
+
- Nested horizontal and vertical splits, with minimum and maximum pane sizes.
|
|
12
|
+
- Tab groups with configurable orientation, appearance, and per-pane permissions.
|
|
13
|
+
- CSS theme tokens and typed theme presets.
|
|
14
|
+
- Versioned JSON for layout and workspace settings.
|
|
15
|
+
- Same-origin popout windows that return their panes when closed.
|
|
16
|
+
- Keyboard navigation, optional shortcuts, and optional close confirmation.
|
|
17
|
+
|
|
18
|
+
## Demos
|
|
19
|
+
|
|
20
|
+
- [Vanilla TypeScript](https://quilt-layouts.vercel.app/vanilla.html)
|
|
21
|
+
- [React](https://quilt-layouts.vercel.app/react.html)
|
|
22
|
+
- [Theme builder](https://quilt-layouts.vercel.app/themes.html) — customize, export, and import theme JSON
|
|
23
|
+
- [Electron desktop downloads](https://quilt-layouts.vercel.app/electron.html) for macOS, Windows, and Ubuntu/Debian
|
|
24
|
+
|
|
25
|
+

|
|
26
|
+
|
|
27
|
+
See [screenshots and controls](https://github.com/niko-dellic/quilt/blob/main/docs/showcase.md) or the [application examples](https://github.com/niko-dellic/quilt/blob/main/examples/README.md).
|
|
28
|
+
The desktop application contains the same vanilla and React demos and runs offline.
|
|
29
|
+
Demo builds have no trusted developer certificate; see the [installation notes](https://github.com/niko-dellic/quilt/blob/main/docs/desktop-release.md).
|
|
30
|
+
|
|
31
|
+
<!-- shared-overview:end -->
|
|
32
|
+
|
|
5
33
|
## Install
|
|
6
34
|
|
|
7
35
|
```sh
|
|
@@ -62,3 +90,18 @@ layout and appearance as JSON. Popouts export docked copies without closing live
|
|
|
62
90
|
windows. `popout` returns `Promise<boolean>` and must be called from a user gesture.
|
|
63
91
|
See [web integration](https://github.com/niko-dellic/quilt/blob/main/docs/integration.md)
|
|
64
92
|
for unified registration, custom themes, close confirmation, and storage examples.
|
|
93
|
+
|
|
94
|
+
<!-- shared-docs:start -->
|
|
95
|
+
|
|
96
|
+
## Documentation
|
|
97
|
+
|
|
98
|
+
- [Configuration and API](https://github.com/niko-dellic/quilt/blob/main/docs/api.md)
|
|
99
|
+
- [Themes and tab bars](https://github.com/niko-dellic/quilt/blob/main/docs/theming.md)
|
|
100
|
+
- [Registration, React context, persistence, and close confirmation](https://github.com/niko-dellic/quilt/blob/main/docs/integration.md)
|
|
101
|
+
- [Pane and window lifecycle](https://github.com/niko-dellic/quilt/blob/main/docs/lifecycle.md)
|
|
102
|
+
- [Application examples](https://github.com/niko-dellic/quilt/blob/main/examples/README.md)
|
|
103
|
+
- [0.2.1 upgrade checklist](https://github.com/niko-dellic/quilt/blob/main/docs/migration.md)
|
|
104
|
+
- [Local packages and consumer integration](https://github.com/niko-dellic/quilt/blob/main/docs/packaging.md)
|
|
105
|
+
- [Changelog](https://github.com/niko-dellic/quilt/blob/main/CHANGELOG.md)
|
|
106
|
+
|
|
107
|
+
<!-- shared-docs:end -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quilt-vanilla",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Vanilla DOM split panes, tabs, themes, and same-origin window popouts",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"prepack": "node ../../scripts/build-package.mjs dom --dependencies"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"quilt-core": "0.2.
|
|
33
|
+
"quilt-core": "0.2.3"
|
|
34
34
|
},
|
|
35
35
|
"sideEffects": [
|
|
36
36
|
"**/*.css"
|