Skip to content

Commit

Permalink
refactor: Fix StudioTextResourceInput exports (#14311)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasEng authored Dec 19, 2024
1 parent 5f64943 commit bf7e3c3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { StudioTable } from '../../StudioTable';
import type { ForwardedRef, ReactElement, FocusEvent } from 'react';
import React, { useCallback } from 'react';
import { BaseInputCell } from './BaseInputCell';
import type { StudioTextResourceInputProps } from '../../StudioTextResourceInput/StudioTextResourceInput';
import { StudioTextResourceInput } from '../../StudioTextResourceInput/StudioTextResourceInput';
import type { StudioTextResourceInputProps } from '../../StudioTextResourceInput';
import { StudioTextResourceInput } from '../../StudioTextResourceInput';
import cn from 'classnames';
import classes from './Cell.module.css';
import { useEventProps } from './useEventProps';
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './StudioTextResourceInput';
1 change: 1 addition & 0 deletions frontend/libs/studio-components/src/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ export * from './StudioTableLocalPagination';
export * from './StudioTableRemotePagination';
export * from './StudioTabs';
export * from './StudioTag';
export * from './StudioTextResourceInput';
export * from './StudioTextResourcePicker';
export * from './StudioTextarea';
export * from './StudioTextfield';
Expand Down

0 comments on commit bf7e3c3

Please sign in to comment.