Skip to content

Commit 410796d

Browse files
authored
fix: update import references to point directly to non-barrel files (#36093)
1 parent f5be518 commit 410796d

69 files changed

Lines changed: 106 additions & 78 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"type": "prerelease",
3+
"comment": "update import references to point directly to non-barrel files",
4+
"packageName": "@fluentui/web-components",
5+
"email": "13071055+chrisdholt@users.noreply.github.com",
6+
"dependentChangeType": "patch"
7+
}

packages/web-components/docs/web-components.api.md

Lines changed: 1 addition & 1 deletion

packages/web-components/src/accordion-item/accordion-item.styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { css } from '@microsoft/fast-element';
2-
import { display } from '../utils/index.js';
2+
import { display } from '../utils/display.js';
33
import {
44
borderRadiusMedium,
55
borderRadiusSmall,

packages/web-components/src/accordion-item/accordion-item.template.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { type ElementViewTemplate, html, ref } from '@microsoft/fast-element';
2-
import { startSlotTemplate } from '../patterns/index.js';
3-
import { staticallyCompose } from '../utils/index.js';
2+
import { startSlotTemplate } from '../patterns/start-end.js';
3+
import { staticallyCompose } from '../utils/template-helpers.js';
44
import type { AccordionItem, AccordionItemOptions } from './accordion-item.js';
55

66
const chevronRight20Filled = html.partial(`<svg

packages/web-components/src/accordion-item/accordion-item.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
import { attr } from '@microsoft/fast-element';
2-
import type { StaticallyComposableHTML } from '../utils/index.js';
3-
import { StartEnd } from '../patterns/index.js';
4-
import type { StartEndOptions } from '../patterns/index.js';
2+
import type { StaticallyComposableHTML } from '../utils/template-helpers.js';
3+
import { StartEnd, type StartEndOptions } from '../patterns/start-end.js';
54
import { applyMixins } from '../utils/apply-mixins.js';
65
import { BaseAccordionItem } from './accordion-item.base.js';
76
import { AccordionItemMarkerPosition, AccordionItemSize } from './accordion-item.options.js';
87

9-
export type { StaticallyComposableHTML } from '../utils/index.js';
10-
118
/**
129
* Accordion Item configuration options
1310
*

packages/web-components/src/accordion/accordion.options.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { ValuesOf } from '../utils/index.js';
1+
import type { ValuesOf } from '../utils/typings.js';
22

33
/**
44
* Expand mode for {@link Accordion}

packages/web-components/src/accordion/accordion.styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { css } from '@microsoft/fast-element';
2-
import { display } from '../utils/index.js';
2+
import { display } from '../utils/display.js';
33

44
export const styles = css`
55
${display('flex')}

packages/web-components/src/anchor-button/anchor-button.options.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ButtonAppearance, ButtonShape, ButtonSize } from '../button/button.options.js';
2-
import type { ValuesOf } from '../utils/index.js';
2+
import type { ValuesOf } from '../utils/typings.js';
33
import type { AnchorOptions } from './anchor-button.js';
44

55
/**

packages/web-components/src/anchor-button/anchor-button.template.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { type ElementViewTemplate, html, type ViewTemplate } from '@microsoft/fast-element';
2-
import { endSlotTemplate, startSlotTemplate } from '../patterns/index.js';
2+
import { endSlotTemplate, startSlotTemplate } from '../patterns/start-end.js';
33
import type { AnchorButton, AnchorOptions } from './anchor-button.js';
44

55
/**

packages/web-components/src/anchor-button/anchor-button.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { attr } from '@microsoft/fast-element';
2-
import type { StartEndOptions } from '../patterns/index.js';
3-
import { StartEnd } from '../patterns/index.js';
2+
import { StartEnd, type StartEndOptions } from '../patterns/start-end.js';
43
import { applyMixins } from '../utils/apply-mixins.js';
54
import { swapStates, toggleState } from '../utils/element-internals.js';
65
import { BaseAnchor } from './anchor-button.base.js';

0 commit comments

Comments
 (0)