Skip to content
This repository was archived by the owner on Jan 6, 2025. It is now read-only.

Commit 3184944

Browse files
Export VS Code Design System (#292)
Description of changes Fix a bug where the contents of `src/vscode-design-system.ts` and `src/custom-elements.ts` were not being exported by the package. Also rename `FASTDesignSystem` to `VSCodeDesignSystem` in `src/index-rollup.ts`.
1 parent 66f9795 commit 3184944

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/index-rollup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ export * from './index';
1212
* Only available if the components are added through a script tag
1313
* rather than a module/build system.
1414
*/
15-
export const FASTDesignSystem =
15+
export const VSCodeDesignSystem =
1616
provideVSCodeDesignSystem().register(allComponents);

src/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT License.
33

4+
export * from './vscode-design-system';
5+
export * from './custom-elements';
6+
47
// Export components and classes
58
export * from './badge/index';
69
export * from './button/index';

0 commit comments

Comments
 (0)