Skip to content

Commit

Permalink
refactor: change internal type
Browse files Browse the repository at this point in the history
  • Loading branch information
juanrgm committed Sep 8, 2023
1 parent c62830e commit 3d44a9c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .changeset/thin-boats-wink.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@suid/material": patch
"@suid/types": patch
---

Change internal type
2 changes: 1 addition & 1 deletion packages/material/src/Select/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ const Select = $.defineComponent(function Select(inProps) {
<V = any>(
props: DefaultComponentProps<SelectTypeMap<{}, "div", V>>
): JSX.Element;
_suid: true;
__suid: string;
};

export default Select;
2 changes: 1 addition & 1 deletion packages/types/src/overridable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export interface OverridableComponent<M extends OverridableTypeMap> {
} & OverrideProps<M, C>
): JSX.Element;
(props: DefaultComponentProps<M>): JSX.Element;
_suid: true;
__suid: string;
}

/**
Expand Down

0 comments on commit 3d44a9c

Please sign in to comment.