From df2dac4c28b2a90027f020344fe892bfcf354a88 Mon Sep 17 00:00:00 2001 From: Lilith Date: Fri, 23 Jan 2026 09:21:31 -0800 Subject: [PATCH] =?UTF-8?q?chore(components):=20=F0=9F=94=A7=20Update=20Ty?= =?UTF-8?q?peScript=20files=20in=20components=20directory?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../wizard-provider/src/components/WizardContainer.tsx | 3 ++- .../wizard-provider/src/components/WizardNavigation.tsx | 3 ++- .../wizard-provider/src/components/WizardProgress.tsx | 3 ++- .../wizard-provider/src/components/WizardStepRenderer.tsx | 4 +++- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/@packages/@providers/wizard-provider/src/components/WizardContainer.tsx b/@packages/@providers/wizard-provider/src/components/WizardContainer.tsx index 03c65b1f3..514417048 100755 --- a/@packages/@providers/wizard-provider/src/components/WizardContainer.tsx +++ b/@packages/@providers/wizard-provider/src/components/WizardContainer.tsx @@ -5,7 +5,8 @@ * Supports multiple layout variants. */ -import React from 'react'; +/** @jsxImportSource react */ + import styled from 'styled-components'; import { WizardProgress } from './WizardProgress'; import { WizardStepRenderer } from './WizardStepRenderer'; diff --git a/@packages/@providers/wizard-provider/src/components/WizardNavigation.tsx b/@packages/@providers/wizard-provider/src/components/WizardNavigation.tsx index d83832f53..f4b74dba4 100755 --- a/@packages/@providers/wizard-provider/src/components/WizardNavigation.tsx +++ b/@packages/@providers/wizard-provider/src/components/WizardNavigation.tsx @@ -4,7 +4,8 @@ * Navigation buttons for wizard: Back, Next/Continue, Skip. */ -import React from 'react'; +/** @jsxImportSource react */ + import styled from 'styled-components'; import { useWizard } from '../useWizard'; import type { WizardNavigationProps } from '../types'; diff --git a/@packages/@providers/wizard-provider/src/components/WizardProgress.tsx b/@packages/@providers/wizard-provider/src/components/WizardProgress.tsx index e4bba348a..3459fc011 100755 --- a/@packages/@providers/wizard-provider/src/components/WizardProgress.tsx +++ b/@packages/@providers/wizard-provider/src/components/WizardProgress.tsx @@ -5,7 +5,8 @@ * Supports numbered, dots, and bar variants. */ -import React from 'react'; +/** @jsxImportSource react */ + import styled from 'styled-components'; import { useWizardProgress } from '../hooks/useWizardProgress'; import { useWizard } from '../useWizard'; diff --git a/@packages/@providers/wizard-provider/src/components/WizardStepRenderer.tsx b/@packages/@providers/wizard-provider/src/components/WizardStepRenderer.tsx index c7fee5eb7..401f71d62 100755 --- a/@packages/@providers/wizard-provider/src/components/WizardStepRenderer.tsx +++ b/@packages/@providers/wizard-provider/src/components/WizardStepRenderer.tsx @@ -5,7 +5,9 @@ * Supports optional transition animations. */ -import React, { useMemo } from 'react'; +/** @jsxImportSource react */ + +import { useMemo } from 'react'; import styled from 'styled-components'; import { useWizard } from '../useWizard'; import type { WizardStepRendererProps, StepProps } from '../types';