Skip to content

Commit

Permalink
Update exports
Browse files Browse the repository at this point in the history
  • Loading branch information
rolfheij-sil committed Jul 19, 2024
1 parent 3d8a465 commit f45b2a2
Show file tree
Hide file tree
Showing 6 changed files with 138 additions and 131 deletions.
128 changes: 64 additions & 64 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.

3 changes: 2 additions & 1 deletion lib/platform-bible-react/dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import * as SelectPrimitive from '@radix-ui/react-select';
import * as SliderPrimitive from '@radix-ui/react-slider';
import * as SwitchPrimitives from '@radix-ui/react-switch';
import * as TabsPrimitive from '@radix-ui/react-tabs';
import { ColumnDef as TSColumnDef, Row as TSRow, Table as TSTable } from '@tanstack/react-table';
import { ColumnDef as TSColumnDef, Row as TSRow, SortDirection as TSSortDirection, Table as TSTable } from '@tanstack/react-table';
import { VariantProps } from 'class-variance-authority';
import React$1 from 'react';
import { ChangeEvent, ChangeEventHandler, FocusEventHandler, MouseEvent as MouseEvent$1, MouseEventHandler, MutableRefObject, PropsWithChildren, ReactNode, SyntheticEvent } from 'react';
Expand Down Expand Up @@ -157,6 +157,7 @@ export declare function BookChapterControl({ scrRef, handleSubmit }: BookChapter
export type ColumnDef<TData, TValue = unknown> = TSColumnDef<TData, TValue>;
export type RowContents<TData> = TSRow<TData>;
export type TableContents<TData> = TSTable<TData>;
export type SortDirection = TSSortDirection;
export interface DataTableProps<TData, TValue> {
columns: ColumnDef<TData, TValue>[];
data: TData[];
Expand Down
128 changes: 64 additions & 64 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.

6 changes: 6 additions & 0 deletions lib/platform-bible-react/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ import './index.css';
// Components and Types
export { default as BookChapterControl } from './components/advanced-components/book-chapter-control/book-chapter-control.component';
export { default as DataTable } from './components/advanced-components/data-table/data-table.component';
export type {
ColumnDef,
RowContents,
SortDirection,
TableContents,
} from './components/advanced-components/data-table/data-table.component';

export { Button, type ButtonProps, buttonVariants } from './components/shadcn-ui/button';
export { default as ChapterRangeSelector } from './components/chapter-range-selector.component';
Expand Down

0 comments on commit f45b2a2

Please sign in to comment.