Skip to content

Commit

Permalink
Switched from Fluent package to local svg
Browse files Browse the repository at this point in the history
  • Loading branch information
bheston committed Jan 18, 2023
1 parent 2070518 commit bffda22
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 9 deletions.
1 change: 0 additions & 1 deletion packages/web-components/fast-foundation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@ const storyTemplate = html<StoryArgs<FASTFlipper>>`
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" },
},
Expand Down
Original file line number Diff line number Diff line change
@@ -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";

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit bffda22

Please sign in to comment.