@remit/ui 0.0.36 → 0.0.38
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remit/ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.38",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"src"
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"scripts": {
|
|
13
13
|
"test": "npm run test:typecheck && npm run test:run",
|
|
14
14
|
"test:typecheck": "tsgo --noEmit",
|
|
15
|
-
"test:run": "node --import tsx --experimental-test-coverage --test-coverage-include='src/**' --test-coverage-exclude='src/**/*.test.ts' --test-coverage-exclude='src/**/*.test.tsx' --test-coverage-lines=
|
|
15
|
+
"test:run": "node --import tsx --experimental-test-coverage --test-coverage-include='src/**' --test-coverage-exclude='src/**/*.test.ts' --test-coverage-exclude='src/**/*.test.tsx' --test-coverage-lines=90 --test 'src/**/*.test.ts'"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@fontsource-variable/geist": "^5",
|
|
@@ -103,7 +103,7 @@ export function MobileMessageActionBar({
|
|
|
103
103
|
|
|
104
104
|
return (
|
|
105
105
|
<div className={cn("relative", className)}>
|
|
106
|
-
<div className="flex h-12 shrink-0 items-center gap-0.5
|
|
106
|
+
<div className="flex h-12 shrink-0 items-center gap-0.5 bg-canvas px-1">
|
|
107
107
|
<Button
|
|
108
108
|
variant="ghost"
|
|
109
109
|
size="sm"
|
|
@@ -165,7 +165,7 @@ export function MobileMessageActionBar({
|
|
|
165
165
|
// biome-ignore lint/a11y/useSemanticElements: <p> with role="status" preserves block layout; <output> is inline
|
|
166
166
|
<p
|
|
167
167
|
role="status"
|
|
168
|
-
className="
|
|
168
|
+
className="bg-surface-sunken px-3 py-1 text-2xs text-fg-subtle"
|
|
169
169
|
>
|
|
170
170
|
{unavailableHint}
|
|
171
171
|
</p>
|