Skip to content

Commit

Permalink
Update api report
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Heston committed Feb 11, 2021
1 parent 041ba9f commit 10ea204
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions packages/web-components/docs/api-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,7 @@ export interface DesignSystem {
disabledOpacity: number;
elevatedCornerRadius?: number;
focusOutlineWidth: number;
neutralBaseColor: string;
// (undocumented)
neutralContrastFillActiveDelta: number;
// (undocumented)
Expand Down Expand Up @@ -444,15 +445,12 @@ export class FluentButton extends Button {
}

// @public
export class FluentCard extends DesignSystemProvider implements Pick<DesignSystem, 'backgroundColor' | 'neutralPalette'> {
backgroundColor: string;
export class FluentCard extends FluentDesignSystemProvider {
cardBackgroundColor: string;
// (undocumented)
connectedCallback(): void;
// @internal (undocumented)
handleChange(source: DesignSystem, name: string): void;
// @internal
neutralPalette: string[];
}

// @public
Expand All @@ -467,6 +465,8 @@ export class FluentDesignSystemProvider extends DesignSystemProvider implements
// (undocumented)
accentBaseColor: string;
// (undocumented)
protected accentBaseColorChanged(oldValue: string, newValue: string): void;
// (undocumented)
accentFillActiveDelta: number;
// (undocumented)
accentFillFocusDelta: number;
Expand Down Expand Up @@ -511,6 +511,10 @@ export class FluentDesignSystemProvider extends DesignSystemProvider implements
elevatedCornerRadius: number;
// (undocumented)
focusOutlineWidth: number;
// (undocumented)
neutralBaseColor: string;
// (undocumented)
protected neutralBaseColorChanged(oldValue: string, newValue: string): void;
neutralContrastFillActiveDelta: number;
neutralContrastFillFocusDelta: number;
neutralContrastFillHoverDelta: number;
Expand Down

0 comments on commit 10ea204

Please sign in to comment.