|
6 | 6 |
|
7 | 7 | import { CaptureType } from '@microsoft/fast-element'; |
8 | 8 | import { CSSDirective } from '@microsoft/fast-element'; |
9 | | -import { Direction } from '@microsoft/fast-web-utilities'; |
10 | 9 | import { ElementStyles } from '@microsoft/fast-element'; |
11 | 10 | import { ElementViewTemplate } from '@microsoft/fast-element'; |
12 | 11 | import { FASTElement } from '@microsoft/fast-element'; |
13 | 12 | import { FASTElementDefinition } from '@microsoft/fast-element'; |
14 | 13 | import { HTMLDirective } from '@microsoft/fast-element'; |
15 | | -import { Orientation } from '@microsoft/fast-web-utilities'; |
16 | 14 | import { SyntheticViewTemplate } from '@microsoft/fast-element'; |
17 | 15 | import { ViewTemplate } from '@microsoft/fast-element'; |
18 | 16 |
|
@@ -2566,6 +2564,15 @@ export const DialogType: { |
2566 | 2564 | // @public (undocumented) |
2567 | 2565 | export type DialogType = ValuesOf<typeof DialogType>; |
2568 | 2566 |
|
| 2567 | +// @public |
| 2568 | +export const Direction: { |
| 2569 | + readonly ltr: "ltr"; |
| 2570 | + readonly rtl: "rtl"; |
| 2571 | +}; |
| 2572 | + |
| 2573 | +// @public |
| 2574 | +export type Direction = (typeof Direction)[keyof typeof Direction]; |
| 2575 | + |
2569 | 2576 | // Warning: (ae-forgotten-export) The symbol "CSSDisplayPropertyValue" needs to be exported by the entry point index.d.ts |
2570 | 2577 | // |
2571 | 2578 | // @public |
@@ -3419,6 +3426,15 @@ export const MessageBarStyles: ElementStyles; |
3419 | 3426 | // @public |
3420 | 3427 | export const MessageBarTemplate: ElementViewTemplate<MessageBar>; |
3421 | 3428 |
|
| 3429 | +// @public |
| 3430 | +export const Orientation: { |
| 3431 | + readonly horizontal: "horizontal"; |
| 3432 | + readonly vertical: "vertical"; |
| 3433 | +}; |
| 3434 | + |
| 3435 | +// @public |
| 3436 | +export type Orientation = (typeof Orientation)[keyof typeof Orientation]; |
| 3437 | + |
3422 | 3438 | // @public |
3423 | 3439 | export class ProgressBar extends BaseProgressBar { |
3424 | 3440 | shape?: ProgressBarShape; |
|
0 commit comments