This repository has been archived by the owner on Jun 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 466
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add new m365 icon, add brand icons page to docs, and refactor c…
…ode (#1290) * add npm scripts for serve and build * add brand icons and file type icons to local dev site * updating cdn link * adding missing variable * add some items * add m365 icons * creating a file for cdn variables and updating imports * removing odp, ods, and odt icons * adding requested changeS Co-authored-by: Micah Godbolt <mgodbolt@microsoft.com>
- Loading branch information
1 parent
853373f
commit 0b7f567
Showing
14 changed files
with
369 additions
and
135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
[ | ||
{ | ||
"name": "access" | ||
}, | ||
{ | ||
"name": "excel" | ||
}, | ||
{ | ||
"name": "infopath" | ||
}, | ||
{ | ||
"name": "m365" | ||
}, | ||
{ | ||
"name": "office" | ||
}, | ||
{ | ||
"name": "onedrive" | ||
}, | ||
{ | ||
"name": "onenote" | ||
}, | ||
{ | ||
"name": "outlook" | ||
}, | ||
{ | ||
"name": "powerpoint" | ||
}, | ||
{ | ||
"name": "project" | ||
}, | ||
{ | ||
"name": "sharepoint" | ||
}, | ||
{ | ||
"name": "teams" | ||
}, | ||
{ | ||
"name": "visio" | ||
}, | ||
{ | ||
"name": "word" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
[ | ||
{ | ||
"name": "accdb" | ||
}, | ||
{ | ||
"name": "archive" | ||
}, | ||
{ | ||
"name": "audio" | ||
}, | ||
{ | ||
"name": "code" | ||
}, | ||
{ | ||
"name": "csv" | ||
}, | ||
{ | ||
"name": "docset" | ||
}, | ||
{ | ||
"name": "docx" | ||
}, | ||
{ | ||
"name": "dotx" | ||
}, | ||
{ | ||
"name": "email" | ||
}, | ||
{ | ||
"name": "exe" | ||
}, | ||
{ | ||
"name": "folder" | ||
}, | ||
{ | ||
"name": "font" | ||
}, | ||
{ | ||
"name": "genericfile" | ||
}, | ||
{ | ||
"name": "html" | ||
}, | ||
{ | ||
"name": "link" | ||
}, | ||
{ | ||
"name": "listitem" | ||
}, | ||
{ | ||
"name": "model" | ||
}, | ||
{ | ||
"name": "mpp" | ||
}, | ||
{ | ||
"name": "mpt" | ||
}, | ||
{ | ||
"name": "one" | ||
}, | ||
{ | ||
"name": "onepkg" | ||
}, | ||
{ | ||
"name": "onetoc" | ||
}, | ||
{ | ||
"name": "pdf" | ||
}, | ||
{ | ||
"name": "photo" | ||
}, | ||
{ | ||
"name": "potx" | ||
}, | ||
{ | ||
"name": "ppsx" | ||
}, | ||
{ | ||
"name": "pptx" | ||
}, | ||
{ | ||
"name": "pub" | ||
}, | ||
{ | ||
"name": "rtf" | ||
}, | ||
{ | ||
"name": "sharedfolder" | ||
}, | ||
{ | ||
"name": "spo" | ||
}, | ||
{ | ||
"name": "sysfile" | ||
}, | ||
{ | ||
"name": "txt" | ||
}, | ||
{ | ||
"name": "vector" | ||
}, | ||
{ | ||
"name": "video" | ||
}, | ||
{ | ||
"name": "vsdx" | ||
}, | ||
{ | ||
"name": "vssx" | ||
}, | ||
{ | ||
"name": "vstx" | ||
}, | ||
{ | ||
"name": "xlsx" | ||
}, | ||
{ | ||
"name": "xls" | ||
}, | ||
{ | ||
"name": "xltx" | ||
}, | ||
{ | ||
"name": "xml" | ||
}, | ||
{ | ||
"name": "xsn" | ||
}, | ||
{ | ||
"name": "zip" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
@@include('../../templates/modules/components/DocumentationPageHeader.html') | ||
<div class="docs-Styles-section" id="brand-icons"> | ||
<h2>Brand and File type Icons</h2> | ||
<div class="docs-IconList"> | ||
<h3>Brand Icons</h3> | ||
<ul> | ||
{{#each brandIcons}} | ||
{{> BrandIconPageItem this }} | ||
{{/each}} | ||
</ul> | ||
</div> | ||
<div class="docs-IconList"> | ||
<h3>File Type Icons</h3> | ||
<ul> | ||
{{#each fileTypeIcons}} | ||
{{> BrandIconPageItem this }} | ||
{{/each}} | ||
</ul> | ||
</div> | ||
</div> | ||
@@include('../../templates/modules/components/DocumentationPageFooter.html') |
Oops, something went wrong.