Skip to content

Commit ff0df56

Browse files
jgrothclaude
authored andcommitted
fix(radio-button-group): use internal import path for types
Update import path from '@limetech/lime-elements' to '../../components'. This change is necessary because lime-elements cannot import from itself. Using the package name '@limetech/lime-elements' in imports within the src/ directory would create circular dependencies and cause issues with the components.d.ts file generation. Co-Authored-By: Claude <[email protected]>
1 parent ce981dd commit ff0df56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/radio-button-group/radio-button-group.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Component, Event, EventEmitter, h, Prop } from '@stencil/core';
22
import { ListItem, ListSeparator } from '../list-item/list-item.types';
3-
import { LimelListCustomEvent } from '@limetech/lime-elements';
3+
import { LimelListCustomEvent } from '../../components';
44

55
/**
66
* The Radio Button component provides a convenient way to create a group of radio buttons

0 commit comments

Comments
 (0)