├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── Contributing.md ├── LICENSE ├── README-Localized ├── README-de-de.md ├── README-es-es.md ├── README-fr-fr.md ├── README-ja-jp.md ├── README-pt-br.md ├── README-ru-ru.md ├── README-zh-cn.md └── README-zh-tw.md ├── README.md ├── ReadmeImages └── CertificateWarningPrompt.png ├── SECURITY.md ├── Word-Add-in-Angular2-StyleChecker.xml ├── Word-Add-in-Angular2-StyleChecker.yml ├── app ├── app-routing.module.js ├── app-routing.module.js.map ├── app-routing.module.ts ├── app.component.css ├── app.component.js ├── app.component.js.map ├── app.component.ts ├── app.module.js ├── app.module.js.map ├── app.module.ts ├── assets │ └── images │ │ ├── blue-pencil-logo-16.png │ │ ├── blue-pencil-logo-32.png │ │ ├── blue-pencil-logo-80.png │ │ ├── blue-pencil-logo.png │ │ ├── generic-placeholder.png │ │ └── logo-filled.png ├── find-and-replace │ ├── find-and-replace.component.css │ ├── find-and-replace.component.html │ ├── find-and-replace.component.js │ ├── find-and-replace.component.js.map │ └── find-and-replace.component.ts ├── instructions │ ├── IInstructionStep.js │ ├── IInstructionStep.js.map │ ├── IInstructionStep.ts │ ├── instruction-step.component.js │ ├── instruction-step.component.js.map │ ├── instruction-steps.component.css │ ├── instruction-steps.component.html │ ├── instruction-steps.component.js │ ├── instruction-steps.component.js.map │ └── instruction-steps.component.ts ├── main.js ├── main.js.map ├── main.ts ├── services │ ├── settings-storage │ │ ├── settings.storage.service.js │ │ ├── settings.storage.service.js.map │ │ └── settings.storage.service.ts │ └── word-document │ │ ├── IReplacementCandidate.js │ │ ├── IReplacementCandidate.js.map │ │ ├── IReplacementCandidate.ts │ │ ├── word.document.service.js │ │ ├── word.document.service.js.map │ │ └── word.document.service.ts ├── settings │ ├── settings.component.css │ ├── settings.component.html │ ├── settings.component.js │ ├── settings.component.js.map │ └── settings.component.ts └── shared │ ├── brand-footer │ ├── brand.footer.component.css │ ├── brand.footer.component.html │ ├── brand.footer.component.js │ ├── brand.footer.component.js.map │ └── brand.footer.component.ts │ ├── brand.footer.component.js │ ├── brand.footer.component.js.map │ ├── button.component.js │ ├── button.component.js.map │ ├── button │ ├── button.component.css │ ├── button.component.html │ ├── button.component.js │ ├── button.component.js.map │ └── button.component.ts │ ├── contextual-menu-button │ ├── contextual.menu.button.component.css │ ├── contextual.menu.button.component.html │ ├── contextual.menu.button.component.js │ ├── contextual.menu.button.component.js.map │ └── contextual.menu.button.component.ts │ ├── contextual.menu.button.component.js │ ├── contextual.menu.button.component.js.map │ ├── navigation-header │ ├── navigation.header.component.css │ ├── navigation.header.component.html │ ├── navigation.header.component.js │ ├── navigation.header.component.js.map │ └── navigation.header.component.ts │ ├── navigation.component.js │ ├── navigation.component.js.map │ ├── navigation.header.component.js │ ├── navigation.header.component.js.map │ ├── office-fabric-component-wrappers │ ├── TextField.js │ ├── TextField.js.map │ ├── TextField.ts │ ├── fabric.contextual.menu.wrapper.component.css │ ├── fabric.contextual.menu.wrapper.component.html │ ├── fabric.contextual.menu.wrapper.component.js │ ├── fabric.contextual.menu.wrapper.component.js.map │ ├── fabric.contextual.menu.wrapper.component.ts │ ├── fabric.templates.js │ ├── fabric.templates.js.map │ ├── fabric.textfield.wrapper.component.html │ ├── fabric.textfield.wrapper.component.js │ ├── fabric.textfield.wrapper.component.js.map │ └── fabric.textfield.wrapper.component.ts │ ├── star.component.js │ └── star.component.js.map ├── bs-config.json ├── index.html ├── package.json ├── systemjs.config.js ├── tsconfig.json ├── tslint.json └── typings.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/Contributing.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/LICENSE -------------------------------------------------------------------------------- /README-Localized/README-de-de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/README-Localized/README-de-de.md -------------------------------------------------------------------------------- /README-Localized/README-es-es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/README-Localized/README-es-es.md -------------------------------------------------------------------------------- /README-Localized/README-fr-fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/README-Localized/README-fr-fr.md -------------------------------------------------------------------------------- /README-Localized/README-ja-jp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/README-Localized/README-ja-jp.md -------------------------------------------------------------------------------- /README-Localized/README-pt-br.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/README-Localized/README-pt-br.md -------------------------------------------------------------------------------- /README-Localized/README-ru-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/README-Localized/README-ru-ru.md -------------------------------------------------------------------------------- /README-Localized/README-zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/README-Localized/README-zh-cn.md -------------------------------------------------------------------------------- /README-Localized/README-zh-tw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/README-Localized/README-zh-tw.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/README.md -------------------------------------------------------------------------------- /ReadmeImages/CertificateWarningPrompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/ReadmeImages/CertificateWarningPrompt.png -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Word-Add-in-Angular2-StyleChecker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/Word-Add-in-Angular2-StyleChecker.xml -------------------------------------------------------------------------------- /Word-Add-in-Angular2-StyleChecker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/Word-Add-in-Angular2-StyleChecker.yml -------------------------------------------------------------------------------- /app/app-routing.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/app-routing.module.js -------------------------------------------------------------------------------- /app/app-routing.module.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/app-routing.module.js.map -------------------------------------------------------------------------------- /app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/app-routing.module.ts -------------------------------------------------------------------------------- /app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/app.component.css -------------------------------------------------------------------------------- /app/app.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/app.component.js -------------------------------------------------------------------------------- /app/app.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/app.component.js.map -------------------------------------------------------------------------------- /app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/app.component.ts -------------------------------------------------------------------------------- /app/app.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/app.module.js -------------------------------------------------------------------------------- /app/app.module.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/app.module.js.map -------------------------------------------------------------------------------- /app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/app.module.ts -------------------------------------------------------------------------------- /app/assets/images/blue-pencil-logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/assets/images/blue-pencil-logo-16.png -------------------------------------------------------------------------------- /app/assets/images/blue-pencil-logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/assets/images/blue-pencil-logo-32.png -------------------------------------------------------------------------------- /app/assets/images/blue-pencil-logo-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/assets/images/blue-pencil-logo-80.png -------------------------------------------------------------------------------- /app/assets/images/blue-pencil-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/assets/images/blue-pencil-logo.png -------------------------------------------------------------------------------- /app/assets/images/generic-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/assets/images/generic-placeholder.png -------------------------------------------------------------------------------- /app/assets/images/logo-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/assets/images/logo-filled.png -------------------------------------------------------------------------------- /app/find-and-replace/find-and-replace.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/find-and-replace/find-and-replace.component.css -------------------------------------------------------------------------------- /app/find-and-replace/find-and-replace.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/find-and-replace/find-and-replace.component.html -------------------------------------------------------------------------------- /app/find-and-replace/find-and-replace.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/find-and-replace/find-and-replace.component.js -------------------------------------------------------------------------------- /app/find-and-replace/find-and-replace.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/find-and-replace/find-and-replace.component.js.map -------------------------------------------------------------------------------- /app/find-and-replace/find-and-replace.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/find-and-replace/find-and-replace.component.ts -------------------------------------------------------------------------------- /app/instructions/IInstructionStep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/instructions/IInstructionStep.js -------------------------------------------------------------------------------- /app/instructions/IInstructionStep.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/instructions/IInstructionStep.js.map -------------------------------------------------------------------------------- /app/instructions/IInstructionStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/instructions/IInstructionStep.ts -------------------------------------------------------------------------------- /app/instructions/instruction-step.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/instructions/instruction-step.component.js -------------------------------------------------------------------------------- /app/instructions/instruction-step.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/instructions/instruction-step.component.js.map -------------------------------------------------------------------------------- /app/instructions/instruction-steps.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/instructions/instruction-steps.component.css -------------------------------------------------------------------------------- /app/instructions/instruction-steps.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/instructions/instruction-steps.component.html -------------------------------------------------------------------------------- /app/instructions/instruction-steps.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/instructions/instruction-steps.component.js -------------------------------------------------------------------------------- /app/instructions/instruction-steps.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/instructions/instruction-steps.component.js.map -------------------------------------------------------------------------------- /app/instructions/instruction-steps.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/instructions/instruction-steps.component.ts -------------------------------------------------------------------------------- /app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/main.js -------------------------------------------------------------------------------- /app/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/main.js.map -------------------------------------------------------------------------------- /app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/main.ts -------------------------------------------------------------------------------- /app/services/settings-storage/settings.storage.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/services/settings-storage/settings.storage.service.js -------------------------------------------------------------------------------- /app/services/settings-storage/settings.storage.service.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/services/settings-storage/settings.storage.service.js.map -------------------------------------------------------------------------------- /app/services/settings-storage/settings.storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/services/settings-storage/settings.storage.service.ts -------------------------------------------------------------------------------- /app/services/word-document/IReplacementCandidate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/services/word-document/IReplacementCandidate.js -------------------------------------------------------------------------------- /app/services/word-document/IReplacementCandidate.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/services/word-document/IReplacementCandidate.js.map -------------------------------------------------------------------------------- /app/services/word-document/IReplacementCandidate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/services/word-document/IReplacementCandidate.ts -------------------------------------------------------------------------------- /app/services/word-document/word.document.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/services/word-document/word.document.service.js -------------------------------------------------------------------------------- /app/services/word-document/word.document.service.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/services/word-document/word.document.service.js.map -------------------------------------------------------------------------------- /app/services/word-document/word.document.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/services/word-document/word.document.service.ts -------------------------------------------------------------------------------- /app/settings/settings.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/settings/settings.component.css -------------------------------------------------------------------------------- /app/settings/settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/settings/settings.component.html -------------------------------------------------------------------------------- /app/settings/settings.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/settings/settings.component.js -------------------------------------------------------------------------------- /app/settings/settings.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/settings/settings.component.js.map -------------------------------------------------------------------------------- /app/settings/settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/settings/settings.component.ts -------------------------------------------------------------------------------- /app/shared/brand-footer/brand.footer.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/brand-footer/brand.footer.component.css -------------------------------------------------------------------------------- /app/shared/brand-footer/brand.footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/brand-footer/brand.footer.component.html -------------------------------------------------------------------------------- /app/shared/brand-footer/brand.footer.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/brand-footer/brand.footer.component.js -------------------------------------------------------------------------------- /app/shared/brand-footer/brand.footer.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/brand-footer/brand.footer.component.js.map -------------------------------------------------------------------------------- /app/shared/brand-footer/brand.footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/brand-footer/brand.footer.component.ts -------------------------------------------------------------------------------- /app/shared/brand.footer.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/brand.footer.component.js -------------------------------------------------------------------------------- /app/shared/brand.footer.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/brand.footer.component.js.map -------------------------------------------------------------------------------- /app/shared/button.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/button.component.js -------------------------------------------------------------------------------- /app/shared/button.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/button.component.js.map -------------------------------------------------------------------------------- /app/shared/button/button.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/button/button.component.css -------------------------------------------------------------------------------- /app/shared/button/button.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/button/button.component.html -------------------------------------------------------------------------------- /app/shared/button/button.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/button/button.component.js -------------------------------------------------------------------------------- /app/shared/button/button.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/button/button.component.js.map -------------------------------------------------------------------------------- /app/shared/button/button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/button/button.component.ts -------------------------------------------------------------------------------- /app/shared/contextual-menu-button/contextual.menu.button.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/contextual-menu-button/contextual.menu.button.component.css -------------------------------------------------------------------------------- /app/shared/contextual-menu-button/contextual.menu.button.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/contextual-menu-button/contextual.menu.button.component.html -------------------------------------------------------------------------------- /app/shared/contextual-menu-button/contextual.menu.button.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/contextual-menu-button/contextual.menu.button.component.js -------------------------------------------------------------------------------- /app/shared/contextual-menu-button/contextual.menu.button.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/contextual-menu-button/contextual.menu.button.component.js.map -------------------------------------------------------------------------------- /app/shared/contextual-menu-button/contextual.menu.button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/contextual-menu-button/contextual.menu.button.component.ts -------------------------------------------------------------------------------- /app/shared/contextual.menu.button.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/contextual.menu.button.component.js -------------------------------------------------------------------------------- /app/shared/contextual.menu.button.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/contextual.menu.button.component.js.map -------------------------------------------------------------------------------- /app/shared/navigation-header/navigation.header.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/navigation-header/navigation.header.component.css -------------------------------------------------------------------------------- /app/shared/navigation-header/navigation.header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/navigation-header/navigation.header.component.html -------------------------------------------------------------------------------- /app/shared/navigation-header/navigation.header.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/navigation-header/navigation.header.component.js -------------------------------------------------------------------------------- /app/shared/navigation-header/navigation.header.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/navigation-header/navigation.header.component.js.map -------------------------------------------------------------------------------- /app/shared/navigation-header/navigation.header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/navigation-header/navigation.header.component.ts -------------------------------------------------------------------------------- /app/shared/navigation.component.js: -------------------------------------------------------------------------------- 1 | //# sourceMappingURL=navigation.component.js.map -------------------------------------------------------------------------------- /app/shared/navigation.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/navigation.component.js.map -------------------------------------------------------------------------------- /app/shared/navigation.header.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/navigation.header.component.js -------------------------------------------------------------------------------- /app/shared/navigation.header.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/navigation.header.component.js.map -------------------------------------------------------------------------------- /app/shared/office-fabric-component-wrappers/TextField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/office-fabric-component-wrappers/TextField.js -------------------------------------------------------------------------------- /app/shared/office-fabric-component-wrappers/TextField.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/office-fabric-component-wrappers/TextField.js.map -------------------------------------------------------------------------------- /app/shared/office-fabric-component-wrappers/TextField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/office-fabric-component-wrappers/TextField.ts -------------------------------------------------------------------------------- /app/shared/office-fabric-component-wrappers/fabric.contextual.menu.wrapper.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/office-fabric-component-wrappers/fabric.contextual.menu.wrapper.component.css -------------------------------------------------------------------------------- /app/shared/office-fabric-component-wrappers/fabric.contextual.menu.wrapper.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/office-fabric-component-wrappers/fabric.contextual.menu.wrapper.component.html -------------------------------------------------------------------------------- /app/shared/office-fabric-component-wrappers/fabric.contextual.menu.wrapper.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/office-fabric-component-wrappers/fabric.contextual.menu.wrapper.component.js -------------------------------------------------------------------------------- /app/shared/office-fabric-component-wrappers/fabric.contextual.menu.wrapper.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/office-fabric-component-wrappers/fabric.contextual.menu.wrapper.component.js.map -------------------------------------------------------------------------------- /app/shared/office-fabric-component-wrappers/fabric.contextual.menu.wrapper.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/office-fabric-component-wrappers/fabric.contextual.menu.wrapper.component.ts -------------------------------------------------------------------------------- /app/shared/office-fabric-component-wrappers/fabric.templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/office-fabric-component-wrappers/fabric.templates.js -------------------------------------------------------------------------------- /app/shared/office-fabric-component-wrappers/fabric.templates.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/office-fabric-component-wrappers/fabric.templates.js.map -------------------------------------------------------------------------------- /app/shared/office-fabric-component-wrappers/fabric.textfield.wrapper.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/office-fabric-component-wrappers/fabric.textfield.wrapper.component.html -------------------------------------------------------------------------------- /app/shared/office-fabric-component-wrappers/fabric.textfield.wrapper.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/office-fabric-component-wrappers/fabric.textfield.wrapper.component.js -------------------------------------------------------------------------------- /app/shared/office-fabric-component-wrappers/fabric.textfield.wrapper.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/office-fabric-component-wrappers/fabric.textfield.wrapper.component.js.map -------------------------------------------------------------------------------- /app/shared/office-fabric-component-wrappers/fabric.textfield.wrapper.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/office-fabric-component-wrappers/fabric.textfield.wrapper.component.ts -------------------------------------------------------------------------------- /app/shared/star.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/star.component.js -------------------------------------------------------------------------------- /app/shared/star.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/app/shared/star.component.js.map -------------------------------------------------------------------------------- /bs-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/bs-config.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/package.json -------------------------------------------------------------------------------- /systemjs.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/systemjs.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/tslint.json -------------------------------------------------------------------------------- /typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Word-Add-in-Angular2-StyleChecker/HEAD/typings.json --------------------------------------------------------------------------------