-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Correct export naming in Switch component (#27821)
* Correct export naming in Switch component * Formats capitalization * Adds change file
- Loading branch information
1 parent
3fc9fcb
commit 4c2b046
Showing
2 changed files
with
10 additions
and
3 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
change/@fluentui-web-components-76ee7d80-eaf6-4580-ac78-285604c55a87.json
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"type": "prerelease", | ||
"comment": "Fixes exports in Switch", | ||
"packageName": "@fluentui/web-components", | ||
"email": "ryan@ryanmerrill.net", | ||
"dependentChangeType": "patch" | ||
} |
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,5 @@ | ||
export * from './switch.js'; | ||
export * from './switch.options.js'; | ||
export { definition } from './switch.definition.js'; | ||
export { styles as switchStyles } from './switch.styles.js'; | ||
export { template as switchTemplate } from './switch.template.js'; | ||
export { definition as SwitchDefinition } from './switch.definition.js'; | ||
export { styles as SwitchStyles } from './switch.styles.js'; | ||
export { template as SwitchTemplate } from './switch.template.js'; |