Skip to content

Commit

Permalink
fix: exporting correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
ssikande committed Jul 29, 2024
1 parent 87514e6 commit 2b0ec75
Show file tree
Hide file tree
Showing 7 changed files with 378 additions and 378 deletions.
306 changes: 153 additions & 153 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.

5 changes: 2 additions & 3 deletions lib/platform-bible-react/dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1062,14 +1062,14 @@ export interface MarkdownRendererProps {
* @returns A div containing the rendered markdown content.
*/
export function MarkdownRenderer({ markdown }: MarkdownRendererProps): import("react/jsx-runtime").JSX.Element;
declare enum DropdownMenuItemType {
export declare enum DropdownMenuItemType {
Check = 0,
Radio = 1
}
export type DropdownItem = {
/** The label is the text that will be displayed on the dropdown item. */
label: string;
/** The itemType determines if the item is a checkbox or radio item. */
/** The itemType determines the DropdownMenuItemType type as either Check or Radio. */
itemType: DropdownMenuItemType;
/** The onClick function is called when the item is clicked. */
onClick: () => void;
Expand Down Expand Up @@ -1190,7 +1190,6 @@ declare const Slider$1: React$1.ForwardRefExoticComponent<Omit<SliderPrimitive.S
declare const Switch$1: React$1.ForwardRefExoticComponent<Omit<SwitchPrimitives.SwitchProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;

export {
FilterDropdown as DropdownMenuItemType,
Slider$1 as ShadCnSlider,
Switch$1 as ShadCnSwitch,
};
Expand Down
Loading

0 comments on commit 2b0ec75

Please sign in to comment.