Skip to content

Commit c53c9d4

Browse files
chore: generate
1 parent bbd0f3a commit c53c9d4

4 files changed

Lines changed: 11 additions & 5 deletions

File tree

packages/ui/src/components/basic-tool.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@
5454
line-height: var(--line-height-large);
5555
letter-spacing: var(--letter-spacing-normal);
5656
color: var(--text-strong);
57-
5857
}
5958

6059
[data-slot="basic-tool-tool-subtitle"] {

packages/ui/src/components/text-reveal.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
import { createEffect, createSignal, on, onCleanup, onMount } from "solid-js"
2-
import { animate, type AnimationPlaybackControls, clearFadeStyles, clearMaskStyles, GROW_SPRING, WIPE_MASK } from "./motion"
2+
import {
3+
animate,
4+
type AnimationPlaybackControls,
5+
clearFadeStyles,
6+
clearMaskStyles,
7+
GROW_SPRING,
8+
WIPE_MASK,
9+
} from "./motion"
310
import { prefersReducedMotion } from "../hooks/use-reduced-motion"
411

512
const px = (value: number | string | undefined, fallback: number) => {

packages/ui/src/components/tool-count-summary.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,7 @@
7979
transform: translateX(-0.08em);
8080
transition-property: opacity, filter, transform;
8181
transition-duration:
82-
var(--tool-motion-fade-ms, 400ms), var(--tool-motion-fade-ms, 400ms),
83-
var(--tool-motion-fade-ms, 400ms);
82+
var(--tool-motion-fade-ms, 400ms), var(--tool-motion-fade-ms, 400ms), var(--tool-motion-fade-ms, 400ms);
8483
transition-timing-function: ease-out, ease-out, ease-out;
8584
}
8685

packages/ui/src/components/tool-status-title.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ export function ToolStatusTitle(props: {
2020
}) {
2121
const split = createMemo(() => commonPrefix(props.activeText, props.doneText))
2222
const suffix = createMemo(
23-
() => (props.split ?? true) && split().prefix.length >= 2 && split().aSuffix.length > 0 && split().bSuffix.length > 0,
23+
() =>
24+
(props.split ?? true) && split().prefix.length >= 2 && split().aSuffix.length > 0 && split().bSuffix.length > 0,
2425
)
2526
const prefixLen = createMemo(() => Array.from(split().prefix).length)
2627
const activeTail = createMemo(() => (suffix() ? split().aSuffix : props.activeText))

0 commit comments

Comments
 (0)