Skip to content

Commit

Permalink
v1.11.9-alpha-2
Browse files Browse the repository at this point in the history
  • Loading branch information
sujan-s committed Dec 30, 2024
1 parent 5890d97 commit 5198930
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fictoan-react",
"version": "1.11.9-alpha.1",
"version": "1.11.9-alpha.2",
"private": false,
"description": "A full-featured, designer-friendly, yet performant framework with plain-English props and focus on rapid iteration.",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/components/OptionCard/OptionCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ export const useOptionCard = (id: string) => {
};
};

export const useOptionCards = () => {
export const useOptionCardsGroup = () => {
const { selectAllOptions, clearAllOptions, setSelectedOptions } = useContext(OptionCardsContext);
return { selectAllOptions, clearAllOptions, setSelectedOptions };
};
Expand Down
2 changes: 1 addition & 1 deletion src/components/OptionCard/index.tsx
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export { OptionCard, OptionCardsGroup, type OptionCardProps } from "./OptionCard";
export { useOptionCard } from "./OptionCard";
export { useOptionCard, useOptionCardsGroup } from "./OptionCard";
2 changes: 1 addition & 1 deletion src/components/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export { Row, type RowProps } from "./Row";

// OPTION CARD =========================================================================================================
export { OptionCard, OptionCardsGroup, type OptionCardProps } from "./OptionCard";
export { useOptionCard } from "./OptionCard";
export { useOptionCard, useOptionCardsGroup } from "./OptionCard";

// SIDEBAR + CONTENT WRAPPER ===========================================================================================
export {
Expand Down
2 changes: 1 addition & 1 deletion src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export {

// OPTION CARD =========================================================================================================
export { OptionCard, OptionCardsGroup, type OptionCardProps } from "./components/OptionCard";
export { useOptionCard } from "./components/OptionCard";
export { useOptionCard, useOptionCardsGroup } from "./components/OptionCard";

// PAGINATION ==========================================================================================================
export { Pagination, type PaginationProps } from "./components/Pagination";
Expand Down

0 comments on commit 5198930

Please sign in to comment.