-
-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Fieldset] Move types to namespaces (#711)
- Loading branch information
1 parent
b968150
commit 37783b0
Showing
8 changed files
with
33 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 0 additions & 8 deletions
8
packages/mui-base/src/Fieldset/Legend/FieldsetLegend.types.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,2 @@ | ||
export * from './Root/FieldsetRoot'; | ||
export * from './Legend/FieldsetLegend'; | ||
|
||
export type * from './Root/FieldsetRoot.types'; | ||
export type * from './Legend/FieldsetLegend.types'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,2 @@ | ||
export { FieldsetRoot as Root } from './Root/FieldsetRoot'; | ||
export { FieldsetLegend as Legend } from './Legend/FieldsetLegend'; | ||
|
||
export type { | ||
FieldsetRootProps as RootProps, | ||
FieldsetRootOwnerState as RootOwnerState, | ||
} from './Root/FieldsetRoot.types'; | ||
export type { | ||
FieldsetLegendProps as LegendProps, | ||
FieldsetLegendOwnerState as LegendOwnerState, | ||
} from './Legend/FieldsetLegend.types'; |