Skip to content

Commit

Permalink
Runs API report
Browse files Browse the repository at this point in the history
  • Loading branch information
procload committed Mar 23, 2023
1 parent 5e2b6f2 commit 76f1a6d
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions packages/web-components/docs/api-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ import { FASTElement } from '@microsoft/fast-element';
import { FASTElementDefinition } from '@microsoft/fast-element';
import { FASTProgress } from '@microsoft/fast-foundation';
import { FASTProgressRing } from '@microsoft/fast-foundation';
import { FASTSlider } from '@microsoft/fast-foundation';
import { FASTSwitch } from '@microsoft/fast-foundation';
import { SliderOrientation } from '@microsoft/fast-foundation';
import { StartEnd } from '@microsoft/fast-foundation';
import { StartEndOptions } from '@microsoft/fast-foundation';
import { StaticallyComposableHTML } from '@microsoft/fast-foundation';
Expand Down Expand Up @@ -1603,6 +1605,37 @@ export const shadow8: CSSDesignToken<string>;
// @public (undocumented)
export const shadow8Brand: CSSDesignToken<string>;

// @public
export class Slider extends FASTSlider {
// (undocumented)
connectedCallback(): void;
// (undocumented)
disconnectedCallback(): void;
// (undocumented)
handleChange(source: any, propertyName: string): void;
size?: SliderSize;
}

// @public
export const SliderDefinition: FASTElementDefinition<typeof Slider>;

export { SliderOrientation }

// @public
export const SliderSize: {
readonly small: "small";
readonly medium: "medium";
};

// @public
export type SliderSize = ValuesOf<typeof SliderSize>;

// @public
export const SliderStyles: ElementStyles;

// @public (undocumented)
export const SliderTemplate: ElementViewTemplate<FASTSlider>;

// @public (undocumented)
export const spacingHorizontalL: CSSDesignToken<string>;

Expand Down

0 comments on commit 76f1a6d

Please sign in to comment.