Skip to content

Commit

Permalink
export skeleton and add api docs
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdholt committed Oct 7, 2020
1 parent c6bf872 commit 4dd9040
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packages/web-components/docs/api-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import { Menu } from '@microsoft/fast-foundation';
import { MenuItem } from '@microsoft/fast-foundation';
import { Radio } from '@microsoft/fast-foundation';
import { RadioGroup } from '@microsoft/fast-foundation';
import { Skeleton } from '@microsoft/fast-foundation';
import { Slider } from '@microsoft/fast-foundation';
import { SliderLabel } from '@microsoft/fast-foundation';
import { Switch } from '@microsoft/fast-foundation';
Expand Down Expand Up @@ -388,6 +389,10 @@ export class FluentRadio extends Radio {
export class FluentRadioGroup extends RadioGroup {
}

// @public
export class FluentSkeleton extends Skeleton {
}

// @public
export class FluentSlider extends Slider {
}
Expand Down Expand Up @@ -609,6 +614,9 @@ export const RadioGroupStyles: import("@microsoft/fast-element").ElementStyles;
// @public
export const RadioStyles: import("@microsoft/fast-element").ElementStyles;

// @public
export const SkeletonStyles: import("@microsoft/fast-element").ElementStyles;

// @public
export const SliderLabelStyles: import("@microsoft/fast-element").ElementStyles;

Expand Down
1 change: 1 addition & 0 deletions packages/web-components/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export * from './menu-item/';
export * from './progress/';
export * from './radio/';
export * from './radio-group/';
export * from './skeleton';
export * from './slider/';
export * from './slider-label/';
export * from './switch/';
Expand Down

0 comments on commit 4dd9040

Please sign in to comment.