-
Notifications
You must be signed in to change notification settings - Fork 601
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove js extensions for the time being
- Loading branch information
1 parent
22f42c0
commit 7085a9e
Showing
29 changed files
with
55 additions
and
60 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
2 changes: 1 addition & 1 deletion
2
packages/web-components/fast-components-msft/src/anchor/index.ts
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
2 changes: 1 addition & 1 deletion
2
packages/web-components/fast-components-msft/src/badge/index.ts
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
2 changes: 1 addition & 1 deletion
2
packages/web-components/fast-components-msft/src/button/index.ts
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
2 changes: 1 addition & 1 deletion
2
packages/web-components/fast-components-msft/src/checkbox/index.ts
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
2 changes: 1 addition & 1 deletion
2
packages/web-components/fast-components-msft/src/dialog/index.ts
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
2 changes: 1 addition & 1 deletion
2
packages/web-components/fast-components-msft/src/divider/index.ts
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
2 changes: 1 addition & 1 deletion
2
packages/web-components/fast-components-msft/src/flipper/index.ts
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
36 changes: 18 additions & 18 deletions
36
packages/web-components/fast-components-msft/src/index.ts
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,18 +1,18 @@ | ||
export * from "./anchor/index.js"; | ||
export * from "./badge/index.js"; | ||
export * from "./button/index.js"; | ||
export * from "./card/index.js"; | ||
export * from "./checkbox/index.js"; | ||
export * from "./design-system-provider/index.js"; | ||
export * from "./dialog/index.js"; | ||
export * from "./divider/index.js"; | ||
export * from "./flipper/index.js"; | ||
export * from "./progress/index.js"; | ||
export * from "./radio/index.js"; | ||
export * from "./radio-group/index.js"; | ||
export * from "./slider/index.js"; | ||
export * from "./slider-label/index.js"; | ||
export * from "./switch/index.js"; | ||
export * from "./tabs/index.js"; | ||
export * from "./text-area/index.js"; | ||
export * from "./text-field/index.js"; | ||
export * from "./anchor/"; | ||
export * from "./badge/"; | ||
export * from "./button/"; | ||
export * from "./card/"; | ||
export * from "./checkbox/"; | ||
export * from "./design-system-provider/"; | ||
export * from "./dialog/"; | ||
export * from "./divider/"; | ||
export * from "./flipper/"; | ||
export * from "./progress/"; | ||
export * from "./radio/"; | ||
export * from "./radio-group/"; | ||
export * from "./slider/"; | ||
export * from "./slider-label/"; | ||
export * from "./switch/"; | ||
export * from "./tabs/"; | ||
export * from "./text-area/"; | ||
export * from "./text-field/"; |
4 changes: 2 additions & 2 deletions
4
packages/web-components/fast-components-msft/src/progress/index.ts
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,2 +1,2 @@ | ||
export * from "./progress/index.js"; | ||
export * from "./progress-ring/index.js"; | ||
export * from "./progress/"; | ||
export * from "./progress-ring/"; |
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
2 changes: 1 addition & 1 deletion
2
packages/web-components/fast-components-msft/src/progress/progress/index.ts
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
6 changes: 3 additions & 3 deletions
6
packages/web-components/fast-components-msft/src/radio-group/index.ts
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,10 +1,10 @@ | ||
import { customElement } from "@microsoft/fast-element"; | ||
import { RadioGroup, RadioGroupTemplate as template } from "@microsoft/fast-components"; | ||
import { RadioGroupStyles as styles } from "./radio-group.styles.js"; | ||
import { RadioGroupStyles as styles } from "./radio-group.styles"; | ||
|
||
@customElement({ | ||
name: "msft-radio-group", | ||
name: "fast-radio-group", | ||
template, | ||
styles, | ||
}) | ||
export class MSFTRadioGroup extends RadioGroup {} | ||
export class FASTRadioGroup extends RadioGroup {} |
4 changes: 2 additions & 2 deletions
4
packages/web-components/fast-components-msft/src/radio-group/radio-group.stories.ts
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
2 changes: 1 addition & 1 deletion
2
packages/web-components/fast-components-msft/src/radio/index.ts
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
2 changes: 1 addition & 1 deletion
2
packages/web-components/fast-components-msft/src/slider-label/index.ts
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
2 changes: 1 addition & 1 deletion
2
packages/web-components/fast-components-msft/src/slider/index.ts
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
2 changes: 1 addition & 1 deletion
2
packages/web-components/fast-components-msft/src/styles/index.ts
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 +1 @@ | ||
export * from "./patterns/index.js"; | ||
export * from "./patterns/"; |
2 changes: 1 addition & 1 deletion
2
packages/web-components/fast-components-msft/src/styles/patterns/index.ts
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 +1 @@ | ||
export * from "./button.js"; | ||
export * from "./button"; |
2 changes: 1 addition & 1 deletion
2
packages/web-components/fast-components-msft/src/switch/index.ts
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
6 changes: 3 additions & 3 deletions
6
packages/web-components/fast-components-msft/src/tabs/index.ts
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,12 +1,12 @@ | ||
import { customElement } from "@microsoft/fast-element"; | ||
import { Tabs, TabsTemplate as template } from "@microsoft/fast-components"; | ||
import { TabsStyles as styles } from "./tabs.styles.js"; | ||
import { TabsStyles as styles } from "./tabs.styles"; | ||
|
||
@customElement({ | ||
name: "fast-tabs", | ||
template, | ||
styles, | ||
}) | ||
export class FASTTabs extends Tabs {} | ||
export * from "./tab/index.js"; | ||
export * from "./tab-panel/index.js"; | ||
export * from "./tab/"; | ||
export * from "./tab-panel/"; |
2 changes: 1 addition & 1 deletion
2
packages/web-components/fast-components-msft/src/tabs/tab-panel/index.ts
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
2 changes: 1 addition & 1 deletion
2
packages/web-components/fast-components-msft/src/tabs/tab/index.ts
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
6 changes: 3 additions & 3 deletions
6
packages/web-components/fast-components-msft/src/text-area/index.ts
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,10 +1,10 @@ | ||
import { customElement } from "@microsoft/fast-element"; | ||
import { TextAreaTemplate as template, TextArea } from "@microsoft/fast-components"; | ||
import { TextAreaStyles as styles } from "./text-area.styles.js"; | ||
import { TextAreaStyles as styles } from "./text-area.styles"; | ||
|
||
@customElement({ | ||
name: "msft-text-area", | ||
name: "fast-text-area", | ||
template, | ||
styles, | ||
}) | ||
export class MSFTTextArea extends TextArea {} | ||
export class FASTTextArea extends TextArea {} |
4 changes: 2 additions & 2 deletions
4
packages/web-components/fast-components-msft/src/text-area/text-area.stories.ts
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
2 changes: 1 addition & 1 deletion
2
packages/web-components/fast-components-msft/src/text-field/index.ts
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