|
1 | 1 | // Copyright (c) Microsoft Corporation. |
2 | 2 | // Licensed under the MIT License. |
3 | 3 | import type {Container} from '@microsoft/fast-foundation'; |
4 | | -import {vsCodeBadge} from './badge/index'; |
5 | | -import {vsCodeButton} from './button/index'; |
6 | | -import {vsCodeCheckbox} from './checkbox/index'; |
| 4 | +import {vsCodeBadge} from './badge/index.js'; |
| 5 | +import {vsCodeButton} from './button/index.js'; |
| 6 | +import {vsCodeCheckbox} from './checkbox/index.js'; |
7 | 7 | import { |
8 | 8 | vsCodeDataGrid, |
9 | 9 | vsCodeDataGridCell, |
10 | 10 | vsCodeDataGridRow, |
11 | | -} from './data-grid/index'; |
12 | | -import {vsCodeDivider} from './divider/index'; |
13 | | -import {vsCodeDropdown} from './dropdown/index'; |
14 | | -import {vsCodeLink} from './link/index'; |
15 | | -import {vsCodeOption} from './option/index'; |
16 | | -import {vsCodePanels, vsCodePanelTab, vsCodePanelView} from './panels/index'; |
17 | | -import {vsCodeProgressRing} from './progress-ring/index'; |
18 | | -import {vsCodeRadioGroup} from './radio-group/index'; |
19 | | -import {vsCodeRadio} from './radio/index'; |
20 | | -import {vsCodeTag} from './tag/index'; |
21 | | -import {vsCodeTextArea} from './text-area/index'; |
22 | | -import {vsCodeTextField} from './text-field/index'; |
| 11 | +} from './data-grid/index.js'; |
| 12 | +import {vsCodeDivider} from './divider/index.js'; |
| 13 | +import {vsCodeDropdown} from './dropdown/index.js'; |
| 14 | +import {vsCodeLink} from './link/index.js'; |
| 15 | +import {vsCodeOption} from './option/index.js'; |
| 16 | +import {vsCodePanels, vsCodePanelTab, vsCodePanelView} from './panels/index.js'; |
| 17 | +import {vsCodeProgressRing} from './progress-ring/index.js'; |
| 18 | +import {vsCodeRadioGroup} from './radio-group/index.js'; |
| 19 | +import {vsCodeRadio} from './radio/index.js'; |
| 20 | +import {vsCodeTag} from './tag/index.js'; |
| 21 | +import {vsCodeTextArea} from './text-area/index.js'; |
| 22 | +import {vsCodeTextField} from './text-field/index.js'; |
23 | 23 |
|
24 | 24 | // Don't delete these. They're needed so that API-extractor doesn't add import types |
25 | 25 | // with improper pathing |
26 | 26 | /* eslint-disable @typescript-eslint/no-unused-vars */ |
27 | | -import type {Badge} from './badge/index'; |
28 | | -import type {Button} from './button/index'; |
29 | | -import type {Checkbox} from './checkbox/index'; |
30 | | -import type {DataGrid, DataGridCell, DataGridRow} from './data-grid/index'; |
31 | | -import type {Divider} from './divider/index'; |
32 | | -import type {Dropdown} from './dropdown/index'; |
33 | | -import type {Link} from './link/index'; |
34 | | -import type {Option} from './option/index'; |
35 | | -import type {Panels, PanelTab, PanelView} from './panels/index'; |
36 | | -import type {ProgressRing} from './progress-ring/index'; |
37 | | -import type {RadioGroup} from './radio-group/index'; |
38 | | -import type {Radio} from './radio/index'; |
39 | | -import type {Tag} from './tag/index'; |
40 | | -import type {TextArea} from './text-area/index'; |
41 | | -import type {TextField} from './text-field/index'; |
| 27 | +import type {Badge} from './badge/index.js'; |
| 28 | +import type {Button} from './button/index.js'; |
| 29 | +import type {Checkbox} from './checkbox/index.js'; |
| 30 | +import type {DataGrid, DataGridCell, DataGridRow} from './data-grid/index.js'; |
| 31 | +import type {Divider} from './divider/index.js'; |
| 32 | +import type {Dropdown} from './dropdown/index.js'; |
| 33 | +import type {Link} from './link/index.js'; |
| 34 | +import type {Option} from './option/index.js'; |
| 35 | +import type {Panels, PanelTab, PanelView} from './panels/index.js'; |
| 36 | +import type {ProgressRing} from './progress-ring/index.js'; |
| 37 | +import type {RadioGroup} from './radio-group/index.js'; |
| 38 | +import type {Radio} from './radio/index.js'; |
| 39 | +import type {Tag} from './tag/index.js'; |
| 40 | +import type {TextArea} from './text-area/index.js'; |
| 41 | +import type {TextField} from './text-field/index.js'; |
42 | 42 |
|
43 | 43 | // export all components |
44 | 44 | export { |
|
0 commit comments