Skip to content

Commit

Permalink
Fix malformed import + export rich link variants (#2353)
Browse files Browse the repository at this point in the history
* Fix malformed import + export rich link variants

* reorder imports
  • Loading branch information
nlarew authored May 24, 2024
1 parent c700720 commit 53ff569
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/eighty-badgers-relax.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@lg-chat/rich-links': patch
---

Fixes a malformed import & exports rich link variants
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { GlyphName } from '@leafygreen-ui/icon/src/glyphs';
import { GlyphName } from '@leafygreen-ui/icon';
import { DarkModeProps } from '@leafygreen-ui/lib';
import { BaseFontSize } from '@leafygreen-ui/tokens';

Expand Down
10 changes: 9 additions & 1 deletion chat/rich-links/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
export { RichLink, type RichLinkProps } from './RichLink';
export {
createRichLinkVariant,
type CreateRichLinkVariantArgs,
RichLink,
type RichLinkProps,
type RichLinkVariantMap,
type RichLinkVariantName,
richLinkVariants,
} from './RichLink';
export {
RichLinkBadge,
type RichLinkBadgeProps,
Expand Down

0 comments on commit 53ff569

Please sign in to comment.