diff --git a/packages/web-components/fast-foundation/package.json b/packages/web-components/fast-foundation/package.json index 6c7ce03880f..f248c7179f3 100644 --- a/packages/web-components/fast-foundation/package.json +++ b/packages/web-components/fast-foundation/package.json @@ -63,7 +63,6 @@ "devDependencies": { "@custom-elements-manifest/analyzer": "^0.5.7", "@custom-elements-manifest/to-markdown": "^0.1.0", - "@fluentui/svg-icons": "^1.1.191", "@microsoft/api-extractor": "7.24.2", "@microsoft/tsdoc-config": "^0.13.4", "@playwright/test": "^1.25.2", diff --git a/packages/web-components/fast-foundation/src/accordion-item/stories/accordion-item.register.ts b/packages/web-components/fast-foundation/src/accordion-item/stories/accordion-item.register.ts index a2e500c6855..2a41b3a5105 100644 --- a/packages/web-components/fast-foundation/src/accordion-item/stories/accordion-item.register.ts +++ b/packages/web-components/fast-foundation/src/accordion-item/stories/accordion-item.register.ts @@ -1,5 +1,5 @@ -import chevronDownIcon from "@fluentui/svg-icons/icons/chevron_down_12_regular.svg"; -import chevronUpIcon from "@fluentui/svg-icons/icons/chevron_up_12_regular.svg"; +import chevronDownIcon from "../../../statics/svg/chevron_down_12_regular.svg"; +import chevronUpIcon from "../../../statics/svg/chevron_up_12_regular.svg"; import { css } from "@microsoft/fast-element"; import { FASTAccordionItem } from "../accordion-item.js"; import { accordionItemTemplate } from "../accordion-item.template.js"; diff --git a/packages/web-components/fast-foundation/src/combobox/stories/combobox.register.ts b/packages/web-components/fast-foundation/src/combobox/stories/combobox.register.ts index baef9e8fa01..0b49b169c59 100644 --- a/packages/web-components/fast-foundation/src/combobox/stories/combobox.register.ts +++ b/packages/web-components/fast-foundation/src/combobox/stories/combobox.register.ts @@ -1,4 +1,4 @@ -import chevronIcon from "@fluentui/svg-icons/icons/chevron_down_12_regular.svg"; +import chevronIcon from "../../../statics/svg/chevron_down_12_regular.svg"; import { css } from "@microsoft/fast-element"; import { FASTCombobox } from "../combobox.js"; import { comboboxTemplate } from "../combobox.template.js"; diff --git a/packages/web-components/fast-foundation/src/flipper/stories/flipper.register.ts b/packages/web-components/fast-foundation/src/flipper/stories/flipper.register.ts index e3d97da8678..2f59a868489 100644 --- a/packages/web-components/fast-foundation/src/flipper/stories/flipper.register.ts +++ b/packages/web-components/fast-foundation/src/flipper/stories/flipper.register.ts @@ -1,5 +1,5 @@ -import chevronLeftIcon from "@fluentui/svg-icons/icons/chevron_left_16_regular.svg"; -import chevronRightIcon from "@fluentui/svg-icons/icons/chevron_right_16_regular.svg"; +import chevronLeftIcon from "../../../statics/svg/chevron_left_16_regular.svg"; +import chevronRightIcon from "../../../statics/svg/chevron_right_16_regular.svg"; import { css } from "@microsoft/fast-element"; import { FASTFlipper } from "../flipper.js"; import { flipperTemplate } from "../flipper.template.js"; diff --git a/packages/web-components/fast-foundation/src/flipper/stories/flipper.stories.ts b/packages/web-components/fast-foundation/src/flipper/stories/flipper.stories.ts index a96a6657bc3..e8043c6f76d 100644 --- a/packages/web-components/fast-foundation/src/flipper/stories/flipper.stories.ts +++ b/packages/web-components/fast-foundation/src/flipper/stories/flipper.stories.ts @@ -15,11 +15,12 @@ const storyTemplate = html>` export default { title: "Flipper", args: { + direction: FlipperDirection.next, disabled: false, hiddenFromAT: true, }, argTypes: { - direction: { control: "select", options: Object.values(FlipperDirection) }, + direction: { control: "radio", options: Object.values(FlipperDirection) }, disabled: { control: "boolean" }, hiddenFromAT: { control: "boolean" }, }, diff --git a/packages/web-components/fast-foundation/src/select/stories/select.register.ts b/packages/web-components/fast-foundation/src/select/stories/select.register.ts index 0460a61b5b5..b89eb407595 100644 --- a/packages/web-components/fast-foundation/src/select/stories/select.register.ts +++ b/packages/web-components/fast-foundation/src/select/stories/select.register.ts @@ -1,5 +1,5 @@ -import chevronIcon from "@fluentui/svg-icons/icons/chevron_down_12_regular.svg"; -import { css, ElementStyles, html } from "@microsoft/fast-element"; +import chevronIcon from "../../../statics/svg/chevron_down_12_regular.svg"; +import { css, ElementStyles } from "@microsoft/fast-element"; import { FASTSelect } from "../select.js"; import { selectTemplate } from "../select.template.js"; diff --git a/packages/web-components/fast-foundation/statics/svg/chevron_down_12_regular.svg b/packages/web-components/fast-foundation/statics/svg/chevron_down_12_regular.svg new file mode 100644 index 00000000000..43343fce2de --- /dev/null +++ b/packages/web-components/fast-foundation/statics/svg/chevron_down_12_regular.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/web-components/fast-foundation/statics/svg/chevron_left_16_regular.svg b/packages/web-components/fast-foundation/statics/svg/chevron_left_16_regular.svg new file mode 100644 index 00000000000..77873878ce9 --- /dev/null +++ b/packages/web-components/fast-foundation/statics/svg/chevron_left_16_regular.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/web-components/fast-foundation/statics/svg/chevron_right_16_regular.svg b/packages/web-components/fast-foundation/statics/svg/chevron_right_16_regular.svg new file mode 100644 index 00000000000..78b12163a6e --- /dev/null +++ b/packages/web-components/fast-foundation/statics/svg/chevron_right_16_regular.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/web-components/fast-foundation/statics/svg/chevron_up_12_regular.svg b/packages/web-components/fast-foundation/statics/svg/chevron_up_12_regular.svg new file mode 100644 index 00000000000..6bbb6149f18 --- /dev/null +++ b/packages/web-components/fast-foundation/statics/svg/chevron_up_12_regular.svg @@ -0,0 +1 @@ + \ No newline at end of file