Skip to content

Commit 2856dd7

Browse files
committed
chore: regenerate all test case outputs after rebase with main
https://claude.ai/code/session_014eC8v66Xj9xpyaZbYpFT7G
1 parent d353fb7 commit 2856dd7

8 files changed

+0
-11
lines changed

test-cases/attrs-labelAs.output.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ function Text(props: TextProps & React.ComponentProps<"span"> & { sx?: stylex.St
2020
variant = "regular",
2121
...rest
2222
} = props;
23-
2423
return (
2524
<Component {...rest} {...mergedSx([styles.text, variants[variant], sx], className, style)}>
2625
{children}

test-cases/attrs-tabIndex.output.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ type TabIndexInStyleProps = { applyBackground?: boolean } & React.ComponentProps
6262
// tabIndex used in BOTH attrs (with default) AND in styles
6363
export function TabIndexInStyle(props: TabIndexInStyleProps) {
6464
const { className, children, style, sx, applyBackground, tabIndex = 0, ...rest } = props;
65-
6665
return (
6766
<div
6867
tabIndex={tabIndex ?? 0}

test-cases/conditional-basic.output.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ type HighlightProps = React.PropsWithChildren<{
3232
// Ternary CSS block returning declaration text or empty string
3333
export function Highlight(props: HighlightProps) {
3434
const { children, dim, ...rest } = props;
35-
3635
return (
3736
<span {...rest} sx={[styles.highlight, dim && styles.highlightDim]}>
3837
{children}

test-cases/conditional-logicalAnd.output.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ type DropZoneProps = React.PropsWithChildren<{
5353
// Pattern 4: Logical AND with template literal containing theme expression
5454
export function DropZone(props: DropZoneProps) {
5555
const { children, isDraggingOver, ...rest } = props;
56-
5756
return (
5857
<div {...rest} sx={[styles.dropZone, isDraggingOver && styles.dropZoneDraggingOver]}>
5958
{children}
@@ -68,7 +67,6 @@ type CardProps = React.PropsWithChildren<{
6867
// Pattern 5: Logical AND with template literal containing multiple theme expressions
6968
export function Card(props: CardProps) {
7069
const { children, isHighlighted, ...rest } = props;
71-
7270
return (
7371
<div {...rest} sx={[styles.card, isHighlighted && styles.cardHighlighted]}>
7472
{children}
@@ -83,7 +81,6 @@ type StatusBarProps = React.PropsWithChildren<{
8381
// Pattern 6: Ternary with template literal containing theme expression and undefined alternate
8482
export function StatusBar(props: StatusBarProps) {
8583
const { children, isDisconnected, ...rest } = props;
86-
8784
return (
8885
<div {...rest} sx={[styles.statusBar, isDisconnected && styles.statusBarDisconnected]}>
8986
{children}

test-cases/conditional-nullishCoalescing.output.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ type FadeBoxProps = React.PropsWithChildren<{
1818
// Nullish coalescing with numeric fallback and unit suffix
1919
function FadeBox(props: FadeBoxProps) {
2020
const { children, delay } = props;
21-
2221
return (
2322
<div
2423
sx={styles.fadeBox({

test-cases/conditional-runtimeCallBranch.output.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ type RowProps = React.PropsWithChildren<{
3131
// Preserved runtime call using a theme boolean argument (plain function, not member expression)
3232
function Row(props: RowProps) {
3333
const { children, isHighlighted } = props;
34-
3534
const theme = useTheme();
3635

3736
return (

test-cases/interpolation-arrowFunction.output.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ type BlockBodyBoxProps = React.PropsWithChildren<{
4141
// Arrow function with block body (contains comment)
4242
function BlockBodyBox(props: BlockBodyBoxProps) {
4343
const { children, style, large } = props;
44-
4544
return (
4645
<div {...mergedSx([styles.blockBodyBox, large && styles.blockBodyBoxLarge], undefined, style)}>
4746
{children}

test-cases/transientProp-notForwarded.output.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ type BoxProps = {
6666
// DOM elements: transient props must NOT leak to the underlying element
6767
export function Box(props: BoxProps) {
6868
const { className, children, style, sx, isActive, size, ...rest } = props;
69-
7069
return (
7170
<div
7271
{...rest}
@@ -87,7 +86,6 @@ type ImageProps = { isInactive?: boolean } & React.ComponentProps<"img"> & {
8786

8887
export function Image(props: ImageProps) {
8988
const { className, style, sx, isInactive, ...rest } = props;
90-
9189
return (
9290
<img
9391
{...rest}

0 commit comments

Comments
 (0)