dowel-ui 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/README.md +13 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ A dowel is the hidden peg that joins two boards so the seam does not show. That
|
|
|
11
11
|
**[Documentation](https://lacodda.github.io/dowel/)** — what everything is and why it is that way.
|
|
12
12
|
**[The stand](https://lacodda.github.io/dowel/stand/)** — every component, live, in either theme and in the accent of any product of the line.
|
|
13
13
|
|
|
14
|
-
**Status:** v0.
|
|
14
|
+
**Status:** v0.10.0 - the theme, the scales, an accent per product, twenty-three components including the overlays, the menus and the command palette, and the gates each one passes: axe, the keyboard, a dependency budget and a picture in both themes. The first product of the line lives on it. See the [roadmap](#roadmap).
|
|
15
15
|
|
|
16
16
|
## The theme
|
|
17
17
|
|
|
@@ -83,10 +83,18 @@ your code:
|
|
|
83
83
|
npx shadcn@latest add https://lacodda.github.io/dowel/r/button.json
|
|
84
84
|
```
|
|
85
85
|
|
|
86
|
-
Twenty of them so far. The everyday ones - Button, Input, Textarea,
|
|
87
|
-
Badge, Chip, Kbd, Spinner, Truncate and Copyable; the six that float
|
|
88
|
-
page - Dialog, ConfirmDialog, Drawer, Popover, PreviewCard and
|
|
89
|
-
four for choosing something
|
|
86
|
+
Twenty-three of them so far. The everyday ones - Button, Input, Textarea,
|
|
87
|
+
Panel, Badge, Chip, Kbd, Spinner, Truncate and Copyable; the six that float
|
|
88
|
+
above the page - Dialog, ConfirmDialog, Drawer, Popover, PreviewCard and
|
|
89
|
+
Tooltip; four for choosing something - Menu, ContextMenu, Select and Combobox;
|
|
90
|
+
and three for finding it: SearchField, CommandPalette and the `useShortcut`
|
|
91
|
+
behind them.
|
|
92
|
+
|
|
93
|
+
The palette is a Combobox rather than a Dialog with a field in it, which is
|
|
94
|
+
Base UI's own arrangement: put the input inside the popup and the popup becomes
|
|
95
|
+
a dialog on its own, with the input still the combobox that owns the list. So
|
|
96
|
+
the filtering, the highlight and the arrow keys are the ones Combobox already
|
|
97
|
+
has - there is no second implementation of any of it.
|
|
90
98
|
|
|
91
99
|
`Select` is the one the line's oldest rule is about. It renders
|
|
92
100
|
`<button role="combobox">` and no native `<select>` at all - the browser draws
|
package/package.json
CHANGED