Skip to content

Commit

Permalink
Correct export naming in Switch component (#27821)
Browse files Browse the repository at this point in the history
* Correct export naming in Switch component

* Formats capitalization

* Adds change file
  • Loading branch information
procload authored and radium-v committed May 2, 2024
1 parent ee72581 commit 832a9e6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
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"
}
6 changes: 3 additions & 3 deletions packages/web-components/src/switch/index.ts
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';

0 comments on commit 832a9e6

Please sign in to comment.