@dryui/ui 1.5.0 → 1.5.1
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.
|
@@ -18,9 +18,7 @@
|
|
|
18
18
|
<span data-part="dot" data-tone="min"></span>
|
|
19
19
|
<span data-part="dot" data-tone="max"></span>
|
|
20
20
|
</div>
|
|
21
|
-
{
|
|
22
|
-
<span data-part="title">{title}</span>
|
|
23
|
-
{/if}
|
|
21
|
+
<span data-part="title">{title ?? ''}</span>
|
|
24
22
|
{#if actions}
|
|
25
23
|
<div data-part="actions">
|
|
26
24
|
{@render actions()}
|
|
@@ -94,10 +92,19 @@
|
|
|
94
92
|
}
|
|
95
93
|
|
|
96
94
|
[data-part='title'] {
|
|
95
|
+
display: block;
|
|
97
96
|
justify-self: center;
|
|
98
97
|
color: var(--dry-color-text-weak);
|
|
99
98
|
font-size: var(--dry-type-small-size, 0.875rem);
|
|
100
99
|
font-weight: 500;
|
|
100
|
+
line-height: var(
|
|
101
|
+
--dry-app-frame-title-line-height,
|
|
102
|
+
calc(var(--dry-type-small-size, 0.875rem) * 1.2)
|
|
103
|
+
);
|
|
104
|
+
min-block-size: var(
|
|
105
|
+
--dry-app-frame-title-line-height,
|
|
106
|
+
calc(var(--dry-type-small-size, 0.875rem) * 1.2)
|
|
107
|
+
);
|
|
101
108
|
letter-spacing: 0.01em;
|
|
102
109
|
text-align: center;
|
|
103
110
|
text-overflow: ellipsis;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dryui/ui",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"description": "Zero-dependency styled Svelte 5 components with scoped styles and --dry-* CSS variable theming.",
|
|
5
5
|
"author": "Rob Balfre",
|
|
6
6
|
"license": "MIT",
|
|
@@ -779,7 +779,7 @@
|
|
|
779
779
|
"postpack": "bun ../../scripts/postpack-exports.ts"
|
|
780
780
|
},
|
|
781
781
|
"dependencies": {
|
|
782
|
-
"@dryui/primitives": "^1.5.
|
|
782
|
+
"@dryui/primitives": "^1.5.1"
|
|
783
783
|
},
|
|
784
784
|
"peerDependencies": {
|
|
785
785
|
"svelte": "^5.55.1"
|