@shortwind/catalog 0.1.0-beta.10
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 +31 -0
- package/dist/registry/badge/CHANGELOG.md +5 -0
- package/dist/registry/badge.css +44 -0
- package/dist/registry/badge@0.0.1.css +44 -0
- package/dist/registry/button/CHANGELOG.md +5 -0
- package/dist/registry/button.css +74 -0
- package/dist/registry/button@0.0.1.css +74 -0
- package/dist/registry/card/CHANGELOG.md +5 -0
- package/dist/registry/card.css +43 -0
- package/dist/registry/card@0.0.1.css +43 -0
- package/dist/registry/code/CHANGELOG.md +5 -0
- package/dist/registry/code.css +22 -0
- package/dist/registry/code@0.0.1.css +22 -0
- package/dist/registry/dialog/CHANGELOG.md +5 -0
- package/dist/registry/dialog.css +33 -0
- package/dist/registry/dialog@0.0.1.css +33 -0
- package/dist/registry/empty/CHANGELOG.md +5 -0
- package/dist/registry/empty.css +27 -0
- package/dist/registry/empty@0.0.1.css +27 -0
- package/dist/registry/feedback/CHANGELOG.md +5 -0
- package/dist/registry/feedback.css +47 -0
- package/dist/registry/feedback@0.0.1.css +47 -0
- package/dist/registry/form/CHANGELOG.md +5 -0
- package/dist/registry/form.css +67 -0
- package/dist/registry/form@0.0.1.css +67 -0
- package/dist/registry/icon/CHANGELOG.md +5 -0
- package/dist/registry/icon.css +27 -0
- package/dist/registry/icon@0.0.1.css +27 -0
- package/dist/registry/index.json +23 -0
- package/dist/registry/layout/CHANGELOG.md +5 -0
- package/dist/registry/layout.css +70 -0
- package/dist/registry/layout@0.0.1.css +70 -0
- package/dist/registry/list/CHANGELOG.md +5 -0
- package/dist/registry/list.css +37 -0
- package/dist/registry/list@0.0.1.css +37 -0
- package/dist/registry/manifest.json +1867 -0
- package/dist/registry/media/CHANGELOG.md +5 -0
- package/dist/registry/media.css +37 -0
- package/dist/registry/media@0.0.1.css +37 -0
- package/dist/registry/navigation/CHANGELOG.md +5 -0
- package/dist/registry/navigation.css +38 -0
- package/dist/registry/navigation@0.0.1.css +38 -0
- package/dist/registry/presets.json +6 -0
- package/dist/registry/progress/CHANGELOG.md +5 -0
- package/dist/registry/progress.css +22 -0
- package/dist/registry/progress@0.0.1.css +22 -0
- package/dist/registry/recipes/badge.css +44 -0
- package/dist/registry/recipes/button.css +74 -0
- package/dist/registry/recipes/card.css +43 -0
- package/dist/registry/recipes/code.css +22 -0
- package/dist/registry/recipes/dialog.css +33 -0
- package/dist/registry/recipes/empty.css +27 -0
- package/dist/registry/recipes/feedback.css +47 -0
- package/dist/registry/recipes/form.css +67 -0
- package/dist/registry/recipes/icon.css +27 -0
- package/dist/registry/recipes/layout.css +70 -0
- package/dist/registry/recipes/list.css +37 -0
- package/dist/registry/recipes/media.css +37 -0
- package/dist/registry/recipes/navigation.css +38 -0
- package/dist/registry/recipes/progress.css +22 -0
- package/dist/registry/recipes/skeleton.css +22 -0
- package/dist/registry/recipes/surface.css +45 -0
- package/dist/registry/recipes/table.css +37 -0
- package/dist/registry/recipes/text.css +59 -0
- package/dist/registry/recipes/tooltip.css +11 -0
- package/dist/registry/skeleton/CHANGELOG.md +5 -0
- package/dist/registry/skeleton.css +22 -0
- package/dist/registry/skeleton@0.0.1.css +22 -0
- package/dist/registry/surface/CHANGELOG.md +5 -0
- package/dist/registry/surface.css +45 -0
- package/dist/registry/surface@0.0.2.css +45 -0
- package/dist/registry/table/CHANGELOG.md +5 -0
- package/dist/registry/table.css +37 -0
- package/dist/registry/table@0.0.1.css +37 -0
- package/dist/registry/text/CHANGELOG.md +5 -0
- package/dist/registry/text.css +59 -0
- package/dist/registry/text@0.0.1.css +59 -0
- package/dist/registry/tooltip/CHANGELOG.md +5 -0
- package/dist/registry/tooltip.css +11 -0
- package/dist/registry/tooltip@0.0.1.css +11 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +33 -0
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/* shortwind: text@0.0.1 sha:9c5d7ed7b1e3ef5a */
|
|
2
|
+
|
|
3
|
+
/* @guide
|
|
4
|
+
Headings are sized by weight, not HTML level: @heading-xl/lg/md/sm — there
|
|
5
|
+
is no @h1..@h6. Body copy: @body (default), @lead (intro paragraphs), @muted
|
|
6
|
+
(secondary), @caption (fine print). Use @label for form labels and @link for
|
|
7
|
+
inline links. Don't append a -text suffix: it's @body not @body-text, @muted
|
|
8
|
+
not @muted-text, @link not @link-text.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
/* Top-level page heading. */
|
|
12
|
+
@recipe heading-xl {
|
|
13
|
+
text-4xl font-bold tracking-tight text-foreground
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
/* Large section heading. */
|
|
17
|
+
@recipe heading-lg {
|
|
18
|
+
text-2xl font-semibold tracking-tight text-foreground
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/* Medium heading. */
|
|
22
|
+
@recipe heading-md {
|
|
23
|
+
text-xl font-semibold text-foreground
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
/* Small heading. */
|
|
27
|
+
@recipe heading-sm {
|
|
28
|
+
text-base font-semibold text-foreground
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/* Default body text. */
|
|
32
|
+
@recipe body {
|
|
33
|
+
text-sm leading-6 text-foreground
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/* Lead paragraph — larger body copy for hero/intro sections. */
|
|
37
|
+
@recipe lead {
|
|
38
|
+
text-lg leading-relaxed text-muted-foreground
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/* Muted secondary text. */
|
|
42
|
+
@recipe muted {
|
|
43
|
+
text-sm text-muted-foreground
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/* Form label text. */
|
|
47
|
+
@recipe label {
|
|
48
|
+
text-sm font-medium text-foreground
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/* Caption — small supporting text. */
|
|
52
|
+
@recipe caption {
|
|
53
|
+
text-xs text-muted-foreground
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
/* Inline link with hover/focus states. */
|
|
57
|
+
@recipe link {
|
|
58
|
+
text-primary underline-offset-2 hover:underline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-ring
|
|
59
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/* shortwind: tooltip@0.0.1 sha:1be3af4165357dcd */
|
|
2
|
+
|
|
3
|
+
/* @guide
|
|
4
|
+
@tooltip is the floating label bubble — it styles appearance only, so pair it
|
|
5
|
+
with your own positioning.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
/* Floating tooltip bubble. */
|
|
9
|
+
@recipe tooltip {
|
|
10
|
+
pointer-events-none z-50 rounded-md bg-foreground px-2 py-1 text-xs font-medium text-background shadow-md
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/* shortwind: tooltip@0.0.1 sha:1be3af4165357dcd */
|
|
2
|
+
|
|
3
|
+
/* @guide
|
|
4
|
+
@tooltip is the floating label bubble — it styles appearance only, so pair it
|
|
5
|
+
with your own positioning.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
/* Floating tooltip bubble. */
|
|
9
|
+
@recipe tooltip {
|
|
10
|
+
pointer-events-none z-50 rounded-md bg-foreground px-2 py-1 text-xs font-medium text-background shadow-md
|
|
11
|
+
}
|