Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian-ubs committed Dec 20, 2024
1 parent a729be0 commit 9363bdc
Show file tree
Hide file tree
Showing 7 changed files with 76 additions and 81 deletions.
62 changes: 31 additions & 31 deletions lib/platform-bible-react/dist/index.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/platform-bible-react/dist/index.cjs.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions lib/platform-bible-react/dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -455,10 +455,10 @@ export type TabNavigationContentSearchProps = {
searchPlaceholder?: string;
/** Optional title to include in the header */
headerTitle?: string;
/** Optional flag to make the search bar appear full width */
isSearchBarFullWidth?: boolean;
/** Optional className to modify the search input */
searchClassName?: string;
};
declare function TabNavigationContentSearch({ tabList, onSearch, searchPlaceholder, headerTitle, isSearchBarFullWidth, }: TabNavigationContentSearchProps): import("react/jsx-runtime").JSX.Element;
declare function TabNavigationContentSearch({ tabList, onSearch, searchPlaceholder, headerTitle, searchClassName, }: TabNavigationContentSearchProps): import("react/jsx-runtime").JSX.Element;
export type SelectedSettingsSidebarItem = {
label: string;
projectId?: string;
Expand Down
81 changes: 38 additions & 43 deletions lib/platform-bible-react/dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/platform-bible-react/dist/index.js.map

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default function SearchBar({
const dir: Direction = readDirection();

return (
<div className={cn('tw-relative', {'tw-w-full': isFullWidth}, className)}>
<div className={cn('tw-relative', { 'tw-w-full': isFullWidth }, className)}>
<Search
className={cn(
'tw-absolute tw-top-1/2 tw-h-4 tw-w-4 tw--translate-y-1/2 tw-transform tw-opacity-50',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ function Compositions() {
tabList={tabList}
onSearch={handleSearchChange}
searchPlaceholder="Search..."
searchClassName='tw-w-9/12 tw-py-2'
searchClassName="tw-w-9/12 tw-py-2"
/>
</VerticalTabsContent>

Expand Down

0 comments on commit 9363bdc

Please sign in to comment.