Skip to content

Commit

Permalink
[web components] export horizontal scroll styles (microsoft#18858)
Browse files Browse the repository at this point in the history
* export horizontal scroll styles

* Change files
  • Loading branch information
chrisdholt authored and PeterDraex committed Aug 6, 2021
1 parent c6bd5f6 commit 6ab632b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "export horizontal scroll styles",
"packageName": "@fluentui/web-components",
"email": "chhol@microsoft.com",
"dependentChangeType": "patch"
}
3 changes: 3 additions & 0 deletions packages/web-components/docs/api-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -616,6 +616,9 @@ export class HorizontalScroll extends HorizontalScroll_2 {
connectedCallback(): void;
}

// @public
export const horizontalScrollStyles: (context: import("@microsoft/fast-foundation").ElementDefinitionContext, definition: HorizontalScrollOptions) => import("@microsoft/fast-element").ElementStyles;

// Warning: (ae-internal-missing-underscore) The name "HypertextStyles" should be prefixed with an underscore because the declaration is marked as @internal
//
// @internal (undocumented)
Expand Down
6 changes: 6 additions & 0 deletions packages/web-components/src/horizontal-scroll/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,9 @@ export const fluentHorizontalScroll = HorizontalScroll.compose<HorizontalScrollO
></fluent-flipper>
`,
});

/**
* Styles for horizontal scroll
* @public
*/
export const horizontalScrollStyles = styles;

0 comments on commit 6ab632b

Please sign in to comment.