├── .gitignore ├── .vscode ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── package.json ├── src ├── Apps.js ├── Apps │ ├── BugBashPro │ │ ├── README.md │ │ ├── configs │ │ │ ├── dev.json │ │ │ ├── package.js │ │ │ ├── release.json │ │ │ └── webpack.config.js │ │ ├── html │ │ │ └── index.html │ │ ├── images │ │ │ ├── charts.jpg │ │ │ ├── details.jpg │ │ │ ├── discussion.jpg │ │ │ ├── donate.png │ │ │ ├── editor.jpg │ │ │ ├── editorview.jpg │ │ │ ├── filter.jpg │ │ │ ├── homepage.jpg │ │ │ ├── hublogo.png │ │ │ ├── logo.png │ │ │ ├── nodata.png │ │ │ ├── results.jpg │ │ │ └── settings.jpg │ │ ├── scripts │ │ │ ├── Actions │ │ │ │ ├── ActionsHub.ts │ │ │ │ ├── BugBashActions.ts │ │ │ │ ├── BugBashItemActions.ts │ │ │ │ ├── BugBashItemCommentActions.ts │ │ │ │ ├── LongTextActions.ts │ │ │ │ └── SettingsActions.ts │ │ │ ├── Components │ │ │ │ ├── AllBugBashes.scss │ │ │ │ ├── AllBugBashesView.tsx │ │ │ │ ├── App.scss │ │ │ │ ├── App.tsx │ │ │ │ ├── BugBashCharts.scss │ │ │ │ ├── BugBashCharts.tsx │ │ │ │ ├── BugBashDetails.scss │ │ │ │ ├── BugBashDetails.tsx │ │ │ │ ├── BugBashEditor.scss │ │ │ │ ├── BugBashEditor.tsx │ │ │ │ ├── BugBashItemEditor.scss │ │ │ │ ├── BugBashItemEditor.tsx │ │ │ │ ├── BugBashResults.scss │ │ │ │ ├── BugBashResults.tsx │ │ │ │ ├── BugBashView.scss │ │ │ │ ├── BugBashView.tsx │ │ │ │ ├── RichEditorComponent.tsx │ │ │ │ ├── SettingsPanel.scss │ │ │ │ └── SettingsPanel.tsx │ │ │ ├── Constants.ts │ │ │ ├── DataServices │ │ │ │ ├── BugBashDataService.ts │ │ │ │ ├── BugBashItemCommentDataService.ts │ │ │ │ ├── BugBashItemDataService.ts │ │ │ │ ├── LongTextDataService.ts │ │ │ │ └── SettingsDataService.ts │ │ │ ├── Helpers.ts │ │ │ ├── Interfaces.ts │ │ │ ├── Stores │ │ │ │ ├── BugBashItemCommentStore.ts │ │ │ │ ├── BugBashItemStore.ts │ │ │ │ ├── BugBashSettingsStore.ts │ │ │ │ ├── BugBashStore.ts │ │ │ │ ├── LongTextStore.ts │ │ │ │ ├── StoresHub.ts │ │ │ │ └── UserSettingsStore.ts │ │ │ ├── Utilities │ │ │ │ └── BugBashItemHtmlFormatter.ts │ │ │ └── ViewModels │ │ │ │ ├── BugBash.ts │ │ │ │ ├── BugBashItem.tsx │ │ │ │ └── LongText.ts │ │ └── vss-extension.json │ ├── Checklist │ │ ├── README.md │ │ ├── configs │ │ │ ├── dev.json │ │ │ ├── package.js │ │ │ ├── release.json │ │ │ └── webpack.config.js │ │ ├── html │ │ │ ├── index.html │ │ │ └── settings.html │ │ ├── images │ │ │ ├── checklist.png │ │ │ ├── default.png │ │ │ └── logo.png │ │ ├── scripts │ │ │ ├── Actions │ │ │ │ ├── ActionsHub.ts │ │ │ │ └── ChecklistActions.ts │ │ │ ├── Components │ │ │ │ ├── App.scss │ │ │ │ ├── App.tsx │ │ │ │ ├── ChecklistItem.scss │ │ │ │ ├── ChecklistItem.tsx │ │ │ │ ├── ChecklistItemEditor.scss │ │ │ │ ├── ChecklistItemEditor.tsx │ │ │ │ ├── ChecklistView.scss │ │ │ │ ├── ChecklistView.tsx │ │ │ │ └── Settings │ │ │ │ │ ├── SettingsApp.scss │ │ │ │ │ ├── SettingsApp.tsx │ │ │ │ │ └── WorkItemTypeView.tsx │ │ │ ├── DataServices │ │ │ │ └── ChecklistDataService.ts │ │ │ ├── Interfaces.ts │ │ │ └── Stores │ │ │ │ ├── ChecklistStore.ts │ │ │ │ └── StoresHub.ts │ │ └── vss-extension.json │ ├── ControlsLibrary │ │ ├── README.md │ │ ├── configs │ │ │ ├── dev.json │ │ │ ├── package.js │ │ │ ├── release.json │ │ │ └── webpack.config.js │ │ ├── css │ │ │ ├── DateTimeControl.scss │ │ │ ├── MultiValueControl.scss │ │ │ ├── PatternControl.scss │ │ │ ├── PlainTextControl.scss │ │ │ ├── RatingControl.scss │ │ │ ├── SliderControl.scss │ │ │ └── base.scss │ │ ├── html │ │ │ ├── datetimecontrol.html │ │ │ ├── multivaluecontrol.html │ │ │ ├── patterncontrol.html │ │ │ ├── plaintextcontrol.html │ │ │ ├── ratingcontrol.html │ │ │ └── slidercontrol.html │ │ ├── images │ │ │ ├── datetime.png │ │ │ ├── datetime2.png │ │ │ ├── logo.png │ │ │ ├── multivalue.png │ │ │ ├── multivalue_open.png │ │ │ ├── pattern.png │ │ │ ├── pattern_correct.png │ │ │ ├── plaintext.png │ │ │ ├── rating.png │ │ │ └── slider.png │ │ ├── scripts │ │ │ ├── CustomTagPicker.tsx │ │ │ ├── DateTimeControl.tsx │ │ │ ├── MultiValueControl.tsx │ │ │ ├── PatternControl.tsx │ │ │ ├── PlainTextControl.tsx │ │ │ ├── RatingControl.tsx │ │ │ └── SliderControl.tsx │ │ └── vss-extension.json │ ├── OneClick │ │ ├── README.md │ │ ├── configs │ │ │ ├── dev.json │ │ │ ├── package.js │ │ │ ├── release.json │ │ │ └── webpack.config.js │ │ ├── html │ │ │ ├── form-group.html │ │ │ └── settings.html │ │ ├── images │ │ │ ├── actioninput.png │ │ │ ├── actions.png │ │ │ ├── addaction.png │ │ │ ├── blocked.png │ │ │ ├── existinglink.png │ │ │ ├── fieldchanged.png │ │ │ ├── fieldvaluemacro.png │ │ │ ├── groupoverview.png │ │ │ ├── logo.png │ │ │ ├── macrotemplate.png │ │ │ ├── mefieldvalue.png │ │ │ ├── memention.png │ │ │ ├── mention.png │ │ │ ├── multipleactions.png │ │ │ ├── newlink.png │ │ │ ├── nodata.png │ │ │ ├── ruleeditor.png │ │ │ ├── rulegroups.png │ │ │ ├── rulegroupsettings.png │ │ │ ├── ruleslist.png │ │ │ ├── setfieldvalue.png │ │ │ ├── settingspage.png │ │ │ ├── tag.png │ │ │ ├── todaymacro.png │ │ │ └── trigger.png │ │ ├── scripts │ │ │ ├── Components │ │ │ │ ├── ActionRenderers │ │ │ │ │ ├── AddExistingRelationActionRenderer.tsx │ │ │ │ │ ├── AddNewRelationActionRenderer.scss │ │ │ │ │ ├── AddNewRelationActionRenderer.tsx │ │ │ │ │ ├── FieldChangedPicker.tsx │ │ │ │ │ ├── FieldNameValuePicker.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── FormGroup │ │ │ │ │ ├── WorkItemFormRuleButton.scss │ │ │ │ │ ├── WorkItemFormRuleButton.tsx │ │ │ │ │ ├── WorkItemRulesGroup.scss │ │ │ │ │ └── WorkItemRulesGroup.tsx │ │ │ │ └── Settings │ │ │ │ │ ├── RuleEditor.scss │ │ │ │ │ ├── RuleEditor.tsx │ │ │ │ │ ├── RuleGroupEditor.scss │ │ │ │ │ ├── RuleGroupEditor.tsx │ │ │ │ │ ├── RuleGroupList.scss │ │ │ │ │ ├── RuleGroupList.tsx │ │ │ │ │ ├── RuleGroupView.scss │ │ │ │ │ ├── RuleGroupView.tsx │ │ │ │ │ ├── SettingsApp.scss │ │ │ │ │ ├── SettingsApp.tsx │ │ │ │ │ └── WorkItemTypeView.tsx │ │ │ ├── Constants.ts │ │ │ ├── DataServices │ │ │ │ ├── RuleGroupsDataService.ts │ │ │ │ ├── RulesDataService.ts │ │ │ │ └── SettingsDataService.ts │ │ │ ├── Flux │ │ │ │ ├── Actions │ │ │ │ │ ├── ActionsHub.ts │ │ │ │ │ ├── RuleActions.ts │ │ │ │ │ ├── RuleGroupActions.ts │ │ │ │ │ └── SettingsActions.ts │ │ │ │ └── Stores │ │ │ │ │ ├── RuleGroupStore.ts │ │ │ │ │ ├── RuleStore.ts │ │ │ │ │ ├── SettingsStore.ts │ │ │ │ │ └── StoresHub.ts │ │ │ ├── Helpers.ts │ │ │ ├── ImportRegisteredArtifacts.ts │ │ │ ├── Interfaces.ts │ │ │ ├── Macros │ │ │ │ └── Macros.ts │ │ │ ├── RuleActions │ │ │ │ ├── AddCommentAction.tsx │ │ │ │ ├── AddExistingRelationAction.tsx │ │ │ │ ├── AddNewRelationAction.tsx │ │ │ │ ├── AddTagsAction.tsx │ │ │ │ ├── BaseAction.ts │ │ │ │ ├── MentionAction.tsx │ │ │ │ ├── RemoveTagsAction.tsx │ │ │ │ ├── SaveWorkItemAction.tsx │ │ │ │ └── SetFieldValueAction.tsx │ │ │ ├── RuleTriggers │ │ │ │ ├── BaseTrigger.ts │ │ │ │ ├── FieldChangedTrigger.tsx │ │ │ │ └── NewWorkItemOpenedTrigger.tsx │ │ │ ├── Telemetry.ts │ │ │ └── ViewModels │ │ │ │ ├── Rule.tsx │ │ │ │ └── RuleGroup.ts │ │ └── vss-extension.json │ ├── PRWorkItems │ │ ├── README.md │ │ ├── configs │ │ │ ├── dev.json │ │ │ ├── package.js │ │ │ ├── release.json │ │ │ └── webpack.config.js │ │ ├── html │ │ │ ├── dialog.html │ │ │ └── index.html │ │ ├── images │ │ │ ├── demo.png │ │ │ └── logo.png │ │ ├── scripts │ │ │ ├── App.ts │ │ │ └── ConfigureDialog.tsx │ │ └── vss-extension.json │ └── RelatedWits │ │ ├── README.md │ │ ├── configs │ │ ├── dev.json │ │ ├── package.js │ │ ├── release.json │ │ └── webpack.config.js │ │ ├── html │ │ └── index.html │ │ ├── images │ │ ├── AddLinkExample.png │ │ ├── Example.png │ │ ├── Example2.png │ │ ├── logo.png │ │ └── nodata.png │ │ ├── scripts │ │ ├── Actions │ │ │ ├── ActionsHub.ts │ │ │ └── RelatedWorkItemsActions.ts │ │ ├── Components │ │ │ ├── App.scss │ │ │ ├── App.tsx │ │ │ ├── SettingsPanel.scss │ │ │ └── SettingsPanel.tsx │ │ ├── Helpers.ts │ │ ├── Models.ts │ │ └── Stores │ │ │ ├── RelatedWorkItemsStore.ts │ │ │ └── StoresHub.ts │ │ └── vss-extension.json └── Common │ ├── Components │ ├── Badge │ │ ├── Badge.scss │ │ ├── Badge.tsx │ │ └── index.ts │ ├── ColorPicker │ │ ├── Color.ts │ │ ├── ColorPicker.scss │ │ ├── ColorPicker.tsx │ │ └── index.ts │ ├── DateTimePicker │ │ ├── DateTimePicker.scss │ │ ├── DateTimePicker.tsx │ │ ├── Time.tsx │ │ ├── ValueSpinner.scss │ │ ├── ValueSpinner.tsx │ │ └── index.ts │ ├── FileUploadDialog │ │ ├── FileUploadDialog.scss │ │ ├── FileUploadDialog.tsx │ │ └── index.ts │ ├── IdentityView │ │ ├── IdentityView.tsx │ │ └── index.ts │ ├── InfoLabel │ │ ├── InfoLabel.scss │ │ ├── InfoLabel.tsx │ │ └── index.ts │ ├── InputError │ │ ├── InputError.scss │ │ ├── InputError.tsx │ │ └── index.ts │ ├── Interfaces.ts │ ├── Loading │ │ ├── Loading.scss │ │ ├── Loading.tsx │ │ └── index.ts │ ├── RichEditor │ │ ├── Plugins │ │ │ ├── ContentChangedPlugin.ts │ │ │ └── Paste.ts │ │ ├── RichEditor.scss │ │ ├── RichEditor.tsx │ │ ├── Toolbar │ │ │ ├── Buttons.tsx │ │ │ ├── Interfaces.ts │ │ │ ├── RichEditorToolbar.scss │ │ │ ├── RichEditorToolbar.tsx │ │ │ └── RichEditorToolbarButtonNames.ts │ │ └── index.ts │ ├── SplitterLayout │ │ ├── Pane.tsx │ │ ├── SplitterLayout.scss │ │ ├── SplitterLayout.tsx │ │ └── index.ts │ ├── Utilities │ │ ├── AsyncLoadedComponent.tsx │ │ ├── AutoResizableComponent.tsx │ │ ├── BaseFluxComponent.tsx │ │ ├── ThrottledTextField.scss │ │ └── ThrottledTextField.tsx │ ├── VSTS │ │ ├── ClassificationPicker │ │ │ ├── ClassificationPicker.tsx │ │ │ └── index.ts │ │ ├── TeamPicker │ │ │ ├── TeamPicker.tsx │ │ │ └── index.ts │ │ ├── WorkItemFieldControl │ │ │ ├── WorkItemFieldControl.tsx │ │ │ └── index.ts │ │ ├── WorkItemFieldPicker │ │ │ ├── WorkItemFieldPicker.tsx │ │ │ └── index.ts │ │ ├── WorkItemFieldValuePicker │ │ │ ├── WorkItemFieldValuePicker.scss │ │ │ ├── WorkItemFieldValuePicker.tsx │ │ │ └── index.ts │ │ ├── WorkItemRelationTypePicker │ │ │ ├── WorkItemRelationTypePicker.tsx │ │ │ └── index.ts │ │ ├── WorkItemStateView │ │ │ ├── WorkItemStateView.scss │ │ │ ├── WorkItemStateView.tsx │ │ │ └── index.ts │ │ ├── WorkItemTagPicker │ │ │ ├── WorkItemTagPicker.scss │ │ │ ├── WorkItemTagPicker.tsx │ │ │ └── index.ts │ │ ├── WorkItemTagsView │ │ │ ├── WorkItemTagsView.scss │ │ │ ├── WorkItemTagsView.tsx │ │ │ └── index.ts │ │ ├── WorkItemTitleView │ │ │ ├── WorkItemTitleView.scss │ │ │ ├── WorkItemTitleView.tsx │ │ │ └── index.ts │ │ └── WorkItemTypePicker │ │ │ ├── WorkItemTypePicker.tsx │ │ │ └── index.ts │ └── VssCombo │ │ ├── DatePickerCombo.tsx │ │ ├── SimpleCombo.tsx │ │ ├── TreeCombo.tsx │ │ └── VssCombo.scss │ ├── ES5-Polyfills │ └── ArrayFrom.js │ ├── Flux │ ├── Actions │ │ ├── Action.ts │ │ ├── ActionsHub.ts │ │ ├── ClassificationNodeActions.ts │ │ ├── ErrorMessageActions.ts │ │ ├── GitRepoActions.ts │ │ ├── TeamActions.ts │ │ ├── TeamFieldActions.ts │ │ ├── WorkItemActions.ts │ │ ├── WorkItemFieldActions.ts │ │ ├── WorkItemRelationTypeActions.ts │ │ ├── WorkItemStateItemActions.ts │ │ ├── WorkItemTagActions.ts │ │ ├── WorkItemTemplateActions.ts │ │ ├── WorkItemTemplateItemActions.ts │ │ ├── WorkItemTypeActions.ts │ │ └── WorkItemTypeFieldAllowedValuesActions.ts │ └── Stores │ │ ├── BaseStore.ts │ │ ├── ClassificationNodeStore.ts │ │ ├── ErrorMessageStore.ts │ │ ├── GitRepoStore.ts │ │ ├── TeamFieldStore.ts │ │ ├── TeamStore.ts │ │ ├── WorkItemFieldStore.ts │ │ ├── WorkItemRelationTypeStore.ts │ │ ├── WorkItemStateItemStore.ts │ │ ├── WorkItemStore.ts │ │ ├── WorkItemTagStore.ts │ │ ├── WorkItemTemplateItemStore.ts │ │ ├── WorkItemTemplateStore.ts │ │ ├── WorkItemTypeFieldAllowedValuesStore.ts │ │ └── WorkItemTypeStore.ts │ ├── Utilities │ ├── Array.ts │ ├── Clipboard.ts │ ├── Core.ts │ ├── Date.ts │ ├── ExtensionDataManager.ts │ ├── Guid.ts │ ├── HtmlTableFormatter.ts │ ├── Identity.ts │ ├── LocalSettingsService.ts │ ├── Navigation.ts │ ├── Number.ts │ ├── String.ts │ ├── UrlHelper.ts │ ├── WITRestClient.ts │ └── WorkItemFormHelpers.ts │ └── _CommonStyles.scss ├── tsconfig.json ├── tslint.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/package.json -------------------------------------------------------------------------------- /src/Apps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps.js -------------------------------------------------------------------------------- /src/Apps/BugBashPro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/README.md -------------------------------------------------------------------------------- /src/Apps/BugBashPro/configs/dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/configs/dev.json -------------------------------------------------------------------------------- /src/Apps/BugBashPro/configs/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/configs/package.js -------------------------------------------------------------------------------- /src/Apps/BugBashPro/configs/release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/configs/release.json -------------------------------------------------------------------------------- /src/Apps/BugBashPro/configs/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/configs/webpack.config.js -------------------------------------------------------------------------------- /src/Apps/BugBashPro/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/html/index.html -------------------------------------------------------------------------------- /src/Apps/BugBashPro/images/charts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/images/charts.jpg -------------------------------------------------------------------------------- /src/Apps/BugBashPro/images/details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/images/details.jpg -------------------------------------------------------------------------------- /src/Apps/BugBashPro/images/discussion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/images/discussion.jpg -------------------------------------------------------------------------------- /src/Apps/BugBashPro/images/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/images/donate.png -------------------------------------------------------------------------------- /src/Apps/BugBashPro/images/editor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/images/editor.jpg -------------------------------------------------------------------------------- /src/Apps/BugBashPro/images/editorview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/images/editorview.jpg -------------------------------------------------------------------------------- /src/Apps/BugBashPro/images/filter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/images/filter.jpg -------------------------------------------------------------------------------- /src/Apps/BugBashPro/images/homepage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/images/homepage.jpg -------------------------------------------------------------------------------- /src/Apps/BugBashPro/images/hublogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/images/hublogo.png -------------------------------------------------------------------------------- /src/Apps/BugBashPro/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/images/logo.png -------------------------------------------------------------------------------- /src/Apps/BugBashPro/images/nodata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/images/nodata.png -------------------------------------------------------------------------------- /src/Apps/BugBashPro/images/results.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/images/results.jpg -------------------------------------------------------------------------------- /src/Apps/BugBashPro/images/settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/images/settings.jpg -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Actions/ActionsHub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Actions/ActionsHub.ts -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Actions/BugBashActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Actions/BugBashActions.ts -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Actions/BugBashItemActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Actions/BugBashItemActions.ts -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Actions/BugBashItemCommentActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Actions/BugBashItemCommentActions.ts -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Actions/LongTextActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Actions/LongTextActions.ts -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Actions/SettingsActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Actions/SettingsActions.ts -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Components/AllBugBashes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Components/AllBugBashes.scss -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Components/AllBugBashesView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Components/AllBugBashesView.tsx -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Components/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Components/App.scss -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Components/App.tsx -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Components/BugBashCharts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Components/BugBashCharts.scss -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Components/BugBashCharts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Components/BugBashCharts.tsx -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Components/BugBashDetails.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Components/BugBashDetails.scss -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Components/BugBashDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Components/BugBashDetails.tsx -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Components/BugBashEditor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Components/BugBashEditor.scss -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Components/BugBashEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Components/BugBashEditor.tsx -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Components/BugBashItemEditor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Components/BugBashItemEditor.scss -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Components/BugBashItemEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Components/BugBashItemEditor.tsx -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Components/BugBashResults.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Components/BugBashResults.scss -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Components/BugBashResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Components/BugBashResults.tsx -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Components/BugBashView.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Components/BugBashView.scss -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Components/BugBashView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Components/BugBashView.tsx -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Components/RichEditorComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Components/RichEditorComponent.tsx -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Components/SettingsPanel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Components/SettingsPanel.scss -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Components/SettingsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Components/SettingsPanel.tsx -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Constants.ts -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/DataServices/BugBashDataService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/DataServices/BugBashDataService.ts -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/DataServices/BugBashItemCommentDataService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/DataServices/BugBashItemCommentDataService.ts -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/DataServices/BugBashItemDataService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/DataServices/BugBashItemDataService.ts -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/DataServices/LongTextDataService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/DataServices/LongTextDataService.ts -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/DataServices/SettingsDataService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/DataServices/SettingsDataService.ts -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Helpers.ts -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Interfaces.ts -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Stores/BugBashItemCommentStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Stores/BugBashItemCommentStore.ts -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Stores/BugBashItemStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Stores/BugBashItemStore.ts -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Stores/BugBashSettingsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Stores/BugBashSettingsStore.ts -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Stores/BugBashStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Stores/BugBashStore.ts -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Stores/LongTextStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Stores/LongTextStore.ts -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Stores/StoresHub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Stores/StoresHub.ts -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Stores/UserSettingsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Stores/UserSettingsStore.ts -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/Utilities/BugBashItemHtmlFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/Utilities/BugBashItemHtmlFormatter.ts -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/ViewModels/BugBash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/ViewModels/BugBash.ts -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/ViewModels/BugBashItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/ViewModels/BugBashItem.tsx -------------------------------------------------------------------------------- /src/Apps/BugBashPro/scripts/ViewModels/LongText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/scripts/ViewModels/LongText.ts -------------------------------------------------------------------------------- /src/Apps/BugBashPro/vss-extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/BugBashPro/vss-extension.json -------------------------------------------------------------------------------- /src/Apps/Checklist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/Checklist/README.md -------------------------------------------------------------------------------- /src/Apps/Checklist/configs/dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/Checklist/configs/dev.json -------------------------------------------------------------------------------- /src/Apps/Checklist/configs/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/Checklist/configs/package.js -------------------------------------------------------------------------------- /src/Apps/Checklist/configs/release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/Checklist/configs/release.json -------------------------------------------------------------------------------- /src/Apps/Checklist/configs/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/Checklist/configs/webpack.config.js -------------------------------------------------------------------------------- /src/Apps/Checklist/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/Checklist/html/index.html -------------------------------------------------------------------------------- /src/Apps/Checklist/html/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/Checklist/html/settings.html -------------------------------------------------------------------------------- /src/Apps/Checklist/images/checklist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/Checklist/images/checklist.png -------------------------------------------------------------------------------- /src/Apps/Checklist/images/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/Checklist/images/default.png -------------------------------------------------------------------------------- /src/Apps/Checklist/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/Checklist/images/logo.png -------------------------------------------------------------------------------- /src/Apps/Checklist/scripts/Actions/ActionsHub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/Checklist/scripts/Actions/ActionsHub.ts -------------------------------------------------------------------------------- /src/Apps/Checklist/scripts/Actions/ChecklistActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/Checklist/scripts/Actions/ChecklistActions.ts -------------------------------------------------------------------------------- /src/Apps/Checklist/scripts/Components/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/Checklist/scripts/Components/App.scss -------------------------------------------------------------------------------- /src/Apps/Checklist/scripts/Components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/Checklist/scripts/Components/App.tsx -------------------------------------------------------------------------------- /src/Apps/Checklist/scripts/Components/ChecklistItem.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/Checklist/scripts/Components/ChecklistItem.scss -------------------------------------------------------------------------------- /src/Apps/Checklist/scripts/Components/ChecklistItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/Checklist/scripts/Components/ChecklistItem.tsx -------------------------------------------------------------------------------- /src/Apps/Checklist/scripts/Components/ChecklistItemEditor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/Checklist/scripts/Components/ChecklistItemEditor.scss -------------------------------------------------------------------------------- /src/Apps/Checklist/scripts/Components/ChecklistItemEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/Checklist/scripts/Components/ChecklistItemEditor.tsx -------------------------------------------------------------------------------- /src/Apps/Checklist/scripts/Components/ChecklistView.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/Checklist/scripts/Components/ChecklistView.scss -------------------------------------------------------------------------------- /src/Apps/Checklist/scripts/Components/ChecklistView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/Checklist/scripts/Components/ChecklistView.tsx -------------------------------------------------------------------------------- /src/Apps/Checklist/scripts/Components/Settings/SettingsApp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/Checklist/scripts/Components/Settings/SettingsApp.scss -------------------------------------------------------------------------------- /src/Apps/Checklist/scripts/Components/Settings/SettingsApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/Checklist/scripts/Components/Settings/SettingsApp.tsx -------------------------------------------------------------------------------- /src/Apps/Checklist/scripts/Components/Settings/WorkItemTypeView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/Checklist/scripts/Components/Settings/WorkItemTypeView.tsx -------------------------------------------------------------------------------- /src/Apps/Checklist/scripts/DataServices/ChecklistDataService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/Checklist/scripts/DataServices/ChecklistDataService.ts -------------------------------------------------------------------------------- /src/Apps/Checklist/scripts/Interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/Checklist/scripts/Interfaces.ts -------------------------------------------------------------------------------- /src/Apps/Checklist/scripts/Stores/ChecklistStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/Checklist/scripts/Stores/ChecklistStore.ts -------------------------------------------------------------------------------- /src/Apps/Checklist/scripts/Stores/StoresHub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/Checklist/scripts/Stores/StoresHub.ts -------------------------------------------------------------------------------- /src/Apps/Checklist/vss-extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/Checklist/vss-extension.json -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/README.md -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/configs/dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/configs/dev.json -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/configs/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/configs/package.js -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/configs/release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/configs/release.json -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/configs/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/configs/webpack.config.js -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/css/DateTimeControl.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/css/DateTimeControl.scss -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/css/MultiValueControl.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/css/MultiValueControl.scss -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/css/PatternControl.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/css/PatternControl.scss -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/css/PlainTextControl.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/css/PlainTextControl.scss -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/css/RatingControl.scss: -------------------------------------------------------------------------------- 1 | @import "base"; 2 | -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/css/SliderControl.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/css/SliderControl.scss -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/css/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/css/base.scss -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/html/datetimecontrol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/html/datetimecontrol.html -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/html/multivaluecontrol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/html/multivaluecontrol.html -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/html/patterncontrol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/html/patterncontrol.html -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/html/plaintextcontrol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/html/plaintextcontrol.html -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/html/ratingcontrol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/html/ratingcontrol.html -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/html/slidercontrol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/html/slidercontrol.html -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/images/datetime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/images/datetime.png -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/images/datetime2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/images/datetime2.png -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/images/logo.png -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/images/multivalue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/images/multivalue.png -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/images/multivalue_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/images/multivalue_open.png -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/images/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/images/pattern.png -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/images/pattern_correct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/images/pattern_correct.png -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/images/plaintext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/images/plaintext.png -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/images/rating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/images/rating.png -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/images/slider.png -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/scripts/CustomTagPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/scripts/CustomTagPicker.tsx -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/scripts/DateTimeControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/scripts/DateTimeControl.tsx -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/scripts/MultiValueControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/scripts/MultiValueControl.tsx -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/scripts/PatternControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/scripts/PatternControl.tsx -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/scripts/PlainTextControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/scripts/PlainTextControl.tsx -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/scripts/RatingControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/scripts/RatingControl.tsx -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/scripts/SliderControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/scripts/SliderControl.tsx -------------------------------------------------------------------------------- /src/Apps/ControlsLibrary/vss-extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/ControlsLibrary/vss-extension.json -------------------------------------------------------------------------------- /src/Apps/OneClick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/README.md -------------------------------------------------------------------------------- /src/Apps/OneClick/configs/dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/configs/dev.json -------------------------------------------------------------------------------- /src/Apps/OneClick/configs/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/configs/package.js -------------------------------------------------------------------------------- /src/Apps/OneClick/configs/release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/configs/release.json -------------------------------------------------------------------------------- /src/Apps/OneClick/configs/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/configs/webpack.config.js -------------------------------------------------------------------------------- /src/Apps/OneClick/html/form-group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/html/form-group.html -------------------------------------------------------------------------------- /src/Apps/OneClick/html/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/html/settings.html -------------------------------------------------------------------------------- /src/Apps/OneClick/images/actioninput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/images/actioninput.png -------------------------------------------------------------------------------- /src/Apps/OneClick/images/actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/images/actions.png -------------------------------------------------------------------------------- /src/Apps/OneClick/images/addaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/images/addaction.png -------------------------------------------------------------------------------- /src/Apps/OneClick/images/blocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/images/blocked.png -------------------------------------------------------------------------------- /src/Apps/OneClick/images/existinglink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/images/existinglink.png -------------------------------------------------------------------------------- /src/Apps/OneClick/images/fieldchanged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/images/fieldchanged.png -------------------------------------------------------------------------------- /src/Apps/OneClick/images/fieldvaluemacro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/images/fieldvaluemacro.png -------------------------------------------------------------------------------- /src/Apps/OneClick/images/groupoverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/images/groupoverview.png -------------------------------------------------------------------------------- /src/Apps/OneClick/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/images/logo.png -------------------------------------------------------------------------------- /src/Apps/OneClick/images/macrotemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/images/macrotemplate.png -------------------------------------------------------------------------------- /src/Apps/OneClick/images/mefieldvalue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/images/mefieldvalue.png -------------------------------------------------------------------------------- /src/Apps/OneClick/images/memention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/images/memention.png -------------------------------------------------------------------------------- /src/Apps/OneClick/images/mention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/images/mention.png -------------------------------------------------------------------------------- /src/Apps/OneClick/images/multipleactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/images/multipleactions.png -------------------------------------------------------------------------------- /src/Apps/OneClick/images/newlink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/images/newlink.png -------------------------------------------------------------------------------- /src/Apps/OneClick/images/nodata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/images/nodata.png -------------------------------------------------------------------------------- /src/Apps/OneClick/images/ruleeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/images/ruleeditor.png -------------------------------------------------------------------------------- /src/Apps/OneClick/images/rulegroups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/images/rulegroups.png -------------------------------------------------------------------------------- /src/Apps/OneClick/images/rulegroupsettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/images/rulegroupsettings.png -------------------------------------------------------------------------------- /src/Apps/OneClick/images/ruleslist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/images/ruleslist.png -------------------------------------------------------------------------------- /src/Apps/OneClick/images/setfieldvalue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/images/setfieldvalue.png -------------------------------------------------------------------------------- /src/Apps/OneClick/images/settingspage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/images/settingspage.png -------------------------------------------------------------------------------- /src/Apps/OneClick/images/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/images/tag.png -------------------------------------------------------------------------------- /src/Apps/OneClick/images/todaymacro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/images/todaymacro.png -------------------------------------------------------------------------------- /src/Apps/OneClick/images/trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/images/trigger.png -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Components/ActionRenderers/AddExistingRelationActionRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Components/ActionRenderers/AddExistingRelationActionRenderer.tsx -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Components/ActionRenderers/AddNewRelationActionRenderer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Components/ActionRenderers/AddNewRelationActionRenderer.scss -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Components/ActionRenderers/AddNewRelationActionRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Components/ActionRenderers/AddNewRelationActionRenderer.tsx -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Components/ActionRenderers/FieldChangedPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Components/ActionRenderers/FieldChangedPicker.tsx -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Components/ActionRenderers/FieldNameValuePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Components/ActionRenderers/FieldNameValuePicker.tsx -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Components/ActionRenderers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Components/ActionRenderers/index.ts -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Components/FormGroup/WorkItemFormRuleButton.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Components/FormGroup/WorkItemFormRuleButton.scss -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Components/FormGroup/WorkItemFormRuleButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Components/FormGroup/WorkItemFormRuleButton.tsx -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Components/FormGroup/WorkItemRulesGroup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Components/FormGroup/WorkItemRulesGroup.scss -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Components/FormGroup/WorkItemRulesGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Components/FormGroup/WorkItemRulesGroup.tsx -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Components/Settings/RuleEditor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Components/Settings/RuleEditor.scss -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Components/Settings/RuleEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Components/Settings/RuleEditor.tsx -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Components/Settings/RuleGroupEditor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Components/Settings/RuleGroupEditor.scss -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Components/Settings/RuleGroupEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Components/Settings/RuleGroupEditor.tsx -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Components/Settings/RuleGroupList.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Components/Settings/RuleGroupList.scss -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Components/Settings/RuleGroupList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Components/Settings/RuleGroupList.tsx -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Components/Settings/RuleGroupView.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Components/Settings/RuleGroupView.scss -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Components/Settings/RuleGroupView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Components/Settings/RuleGroupView.tsx -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Components/Settings/SettingsApp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Components/Settings/SettingsApp.scss -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Components/Settings/SettingsApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Components/Settings/SettingsApp.tsx -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Components/Settings/WorkItemTypeView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Components/Settings/WorkItemTypeView.tsx -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Constants.ts -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/DataServices/RuleGroupsDataService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/DataServices/RuleGroupsDataService.ts -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/DataServices/RulesDataService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/DataServices/RulesDataService.ts -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/DataServices/SettingsDataService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/DataServices/SettingsDataService.ts -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Flux/Actions/ActionsHub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Flux/Actions/ActionsHub.ts -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Flux/Actions/RuleActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Flux/Actions/RuleActions.ts -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Flux/Actions/RuleGroupActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Flux/Actions/RuleGroupActions.ts -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Flux/Actions/SettingsActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Flux/Actions/SettingsActions.ts -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Flux/Stores/RuleGroupStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Flux/Stores/RuleGroupStore.ts -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Flux/Stores/RuleStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Flux/Stores/RuleStore.ts -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Flux/Stores/SettingsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Flux/Stores/SettingsStore.ts -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Flux/Stores/StoresHub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Flux/Stores/StoresHub.ts -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Helpers.ts -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/ImportRegisteredArtifacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/ImportRegisteredArtifacts.ts -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Interfaces.ts -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Macros/Macros.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Macros/Macros.ts -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/RuleActions/AddCommentAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/RuleActions/AddCommentAction.tsx -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/RuleActions/AddExistingRelationAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/RuleActions/AddExistingRelationAction.tsx -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/RuleActions/AddNewRelationAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/RuleActions/AddNewRelationAction.tsx -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/RuleActions/AddTagsAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/RuleActions/AddTagsAction.tsx -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/RuleActions/BaseAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/RuleActions/BaseAction.ts -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/RuleActions/MentionAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/RuleActions/MentionAction.tsx -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/RuleActions/RemoveTagsAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/RuleActions/RemoveTagsAction.tsx -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/RuleActions/SaveWorkItemAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/RuleActions/SaveWorkItemAction.tsx -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/RuleActions/SetFieldValueAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/RuleActions/SetFieldValueAction.tsx -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/RuleTriggers/BaseTrigger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/RuleTriggers/BaseTrigger.ts -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/RuleTriggers/FieldChangedTrigger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/RuleTriggers/FieldChangedTrigger.tsx -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/RuleTriggers/NewWorkItemOpenedTrigger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/RuleTriggers/NewWorkItemOpenedTrigger.tsx -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/Telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/Telemetry.ts -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/ViewModels/Rule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/ViewModels/Rule.tsx -------------------------------------------------------------------------------- /src/Apps/OneClick/scripts/ViewModels/RuleGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/scripts/ViewModels/RuleGroup.ts -------------------------------------------------------------------------------- /src/Apps/OneClick/vss-extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/OneClick/vss-extension.json -------------------------------------------------------------------------------- /src/Apps/PRWorkItems/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/PRWorkItems/README.md -------------------------------------------------------------------------------- /src/Apps/PRWorkItems/configs/dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/PRWorkItems/configs/dev.json -------------------------------------------------------------------------------- /src/Apps/PRWorkItems/configs/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/PRWorkItems/configs/package.js -------------------------------------------------------------------------------- /src/Apps/PRWorkItems/configs/release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/PRWorkItems/configs/release.json -------------------------------------------------------------------------------- /src/Apps/PRWorkItems/configs/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/PRWorkItems/configs/webpack.config.js -------------------------------------------------------------------------------- /src/Apps/PRWorkItems/html/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/PRWorkItems/html/dialog.html -------------------------------------------------------------------------------- /src/Apps/PRWorkItems/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/PRWorkItems/html/index.html -------------------------------------------------------------------------------- /src/Apps/PRWorkItems/images/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/PRWorkItems/images/demo.png -------------------------------------------------------------------------------- /src/Apps/PRWorkItems/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/PRWorkItems/images/logo.png -------------------------------------------------------------------------------- /src/Apps/PRWorkItems/scripts/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/PRWorkItems/scripts/App.ts -------------------------------------------------------------------------------- /src/Apps/PRWorkItems/scripts/ConfigureDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/PRWorkItems/scripts/ConfigureDialog.tsx -------------------------------------------------------------------------------- /src/Apps/PRWorkItems/vss-extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/PRWorkItems/vss-extension.json -------------------------------------------------------------------------------- /src/Apps/RelatedWits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/RelatedWits/README.md -------------------------------------------------------------------------------- /src/Apps/RelatedWits/configs/dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/RelatedWits/configs/dev.json -------------------------------------------------------------------------------- /src/Apps/RelatedWits/configs/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/RelatedWits/configs/package.js -------------------------------------------------------------------------------- /src/Apps/RelatedWits/configs/release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/RelatedWits/configs/release.json -------------------------------------------------------------------------------- /src/Apps/RelatedWits/configs/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/RelatedWits/configs/webpack.config.js -------------------------------------------------------------------------------- /src/Apps/RelatedWits/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/RelatedWits/html/index.html -------------------------------------------------------------------------------- /src/Apps/RelatedWits/images/AddLinkExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/RelatedWits/images/AddLinkExample.png -------------------------------------------------------------------------------- /src/Apps/RelatedWits/images/Example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/RelatedWits/images/Example.png -------------------------------------------------------------------------------- /src/Apps/RelatedWits/images/Example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/RelatedWits/images/Example2.png -------------------------------------------------------------------------------- /src/Apps/RelatedWits/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/RelatedWits/images/logo.png -------------------------------------------------------------------------------- /src/Apps/RelatedWits/images/nodata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/RelatedWits/images/nodata.png -------------------------------------------------------------------------------- /src/Apps/RelatedWits/scripts/Actions/ActionsHub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/RelatedWits/scripts/Actions/ActionsHub.ts -------------------------------------------------------------------------------- /src/Apps/RelatedWits/scripts/Actions/RelatedWorkItemsActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/RelatedWits/scripts/Actions/RelatedWorkItemsActions.ts -------------------------------------------------------------------------------- /src/Apps/RelatedWits/scripts/Components/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/RelatedWits/scripts/Components/App.scss -------------------------------------------------------------------------------- /src/Apps/RelatedWits/scripts/Components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/RelatedWits/scripts/Components/App.tsx -------------------------------------------------------------------------------- /src/Apps/RelatedWits/scripts/Components/SettingsPanel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/RelatedWits/scripts/Components/SettingsPanel.scss -------------------------------------------------------------------------------- /src/Apps/RelatedWits/scripts/Components/SettingsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/RelatedWits/scripts/Components/SettingsPanel.tsx -------------------------------------------------------------------------------- /src/Apps/RelatedWits/scripts/Helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/RelatedWits/scripts/Helpers.ts -------------------------------------------------------------------------------- /src/Apps/RelatedWits/scripts/Models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/RelatedWits/scripts/Models.ts -------------------------------------------------------------------------------- /src/Apps/RelatedWits/scripts/Stores/RelatedWorkItemsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/RelatedWits/scripts/Stores/RelatedWorkItemsStore.ts -------------------------------------------------------------------------------- /src/Apps/RelatedWits/scripts/Stores/StoresHub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/RelatedWits/scripts/Stores/StoresHub.ts -------------------------------------------------------------------------------- /src/Apps/RelatedWits/vss-extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Apps/RelatedWits/vss-extension.json -------------------------------------------------------------------------------- /src/Common/Components/Badge/Badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/Badge/Badge.scss -------------------------------------------------------------------------------- /src/Common/Components/Badge/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/Badge/Badge.tsx -------------------------------------------------------------------------------- /src/Common/Components/Badge/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Badge"; 2 | -------------------------------------------------------------------------------- /src/Common/Components/ColorPicker/Color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/ColorPicker/Color.ts -------------------------------------------------------------------------------- /src/Common/Components/ColorPicker/ColorPicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/ColorPicker/ColorPicker.scss -------------------------------------------------------------------------------- /src/Common/Components/ColorPicker/ColorPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/ColorPicker/ColorPicker.tsx -------------------------------------------------------------------------------- /src/Common/Components/ColorPicker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/ColorPicker/index.ts -------------------------------------------------------------------------------- /src/Common/Components/DateTimePicker/DateTimePicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/DateTimePicker/DateTimePicker.scss -------------------------------------------------------------------------------- /src/Common/Components/DateTimePicker/DateTimePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/DateTimePicker/DateTimePicker.tsx -------------------------------------------------------------------------------- /src/Common/Components/DateTimePicker/Time.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/DateTimePicker/Time.tsx -------------------------------------------------------------------------------- /src/Common/Components/DateTimePicker/ValueSpinner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/DateTimePicker/ValueSpinner.scss -------------------------------------------------------------------------------- /src/Common/Components/DateTimePicker/ValueSpinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/DateTimePicker/ValueSpinner.tsx -------------------------------------------------------------------------------- /src/Common/Components/DateTimePicker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/DateTimePicker/index.ts -------------------------------------------------------------------------------- /src/Common/Components/FileUploadDialog/FileUploadDialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/FileUploadDialog/FileUploadDialog.scss -------------------------------------------------------------------------------- /src/Common/Components/FileUploadDialog/FileUploadDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/FileUploadDialog/FileUploadDialog.tsx -------------------------------------------------------------------------------- /src/Common/Components/FileUploadDialog/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./FileUploadDialog"; 2 | -------------------------------------------------------------------------------- /src/Common/Components/IdentityView/IdentityView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/IdentityView/IdentityView.tsx -------------------------------------------------------------------------------- /src/Common/Components/IdentityView/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./IdentityView"; 2 | -------------------------------------------------------------------------------- /src/Common/Components/InfoLabel/InfoLabel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/InfoLabel/InfoLabel.scss -------------------------------------------------------------------------------- /src/Common/Components/InfoLabel/InfoLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/InfoLabel/InfoLabel.tsx -------------------------------------------------------------------------------- /src/Common/Components/InfoLabel/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./InfoLabel"; 2 | -------------------------------------------------------------------------------- /src/Common/Components/InputError/InputError.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/InputError/InputError.scss -------------------------------------------------------------------------------- /src/Common/Components/InputError/InputError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/InputError/InputError.tsx -------------------------------------------------------------------------------- /src/Common/Components/InputError/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./InputError"; 2 | -------------------------------------------------------------------------------- /src/Common/Components/Interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/Interfaces.ts -------------------------------------------------------------------------------- /src/Common/Components/Loading/Loading.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/Loading/Loading.scss -------------------------------------------------------------------------------- /src/Common/Components/Loading/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/Loading/Loading.tsx -------------------------------------------------------------------------------- /src/Common/Components/Loading/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Loading"; 2 | -------------------------------------------------------------------------------- /src/Common/Components/RichEditor/Plugins/ContentChangedPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/RichEditor/Plugins/ContentChangedPlugin.ts -------------------------------------------------------------------------------- /src/Common/Components/RichEditor/Plugins/Paste.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/RichEditor/Plugins/Paste.ts -------------------------------------------------------------------------------- /src/Common/Components/RichEditor/RichEditor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/RichEditor/RichEditor.scss -------------------------------------------------------------------------------- /src/Common/Components/RichEditor/RichEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/RichEditor/RichEditor.tsx -------------------------------------------------------------------------------- /src/Common/Components/RichEditor/Toolbar/Buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/RichEditor/Toolbar/Buttons.tsx -------------------------------------------------------------------------------- /src/Common/Components/RichEditor/Toolbar/Interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/RichEditor/Toolbar/Interfaces.ts -------------------------------------------------------------------------------- /src/Common/Components/RichEditor/Toolbar/RichEditorToolbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/RichEditor/Toolbar/RichEditorToolbar.scss -------------------------------------------------------------------------------- /src/Common/Components/RichEditor/Toolbar/RichEditorToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/RichEditor/Toolbar/RichEditorToolbar.tsx -------------------------------------------------------------------------------- /src/Common/Components/RichEditor/Toolbar/RichEditorToolbarButtonNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/RichEditor/Toolbar/RichEditorToolbarButtonNames.ts -------------------------------------------------------------------------------- /src/Common/Components/RichEditor/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./RichEditor"; 2 | -------------------------------------------------------------------------------- /src/Common/Components/SplitterLayout/Pane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/SplitterLayout/Pane.tsx -------------------------------------------------------------------------------- /src/Common/Components/SplitterLayout/SplitterLayout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/SplitterLayout/SplitterLayout.scss -------------------------------------------------------------------------------- /src/Common/Components/SplitterLayout/SplitterLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/SplitterLayout/SplitterLayout.tsx -------------------------------------------------------------------------------- /src/Common/Components/SplitterLayout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/SplitterLayout/index.ts -------------------------------------------------------------------------------- /src/Common/Components/Utilities/AsyncLoadedComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/Utilities/AsyncLoadedComponent.tsx -------------------------------------------------------------------------------- /src/Common/Components/Utilities/AutoResizableComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/Utilities/AutoResizableComponent.tsx -------------------------------------------------------------------------------- /src/Common/Components/Utilities/BaseFluxComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/Utilities/BaseFluxComponent.tsx -------------------------------------------------------------------------------- /src/Common/Components/Utilities/ThrottledTextField.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/Utilities/ThrottledTextField.scss -------------------------------------------------------------------------------- /src/Common/Components/Utilities/ThrottledTextField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/Utilities/ThrottledTextField.tsx -------------------------------------------------------------------------------- /src/Common/Components/VSTS/ClassificationPicker/ClassificationPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/VSTS/ClassificationPicker/ClassificationPicker.tsx -------------------------------------------------------------------------------- /src/Common/Components/VSTS/ClassificationPicker/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ClassificationPicker"; 2 | -------------------------------------------------------------------------------- /src/Common/Components/VSTS/TeamPicker/TeamPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/VSTS/TeamPicker/TeamPicker.tsx -------------------------------------------------------------------------------- /src/Common/Components/VSTS/TeamPicker/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./TeamPicker"; 2 | -------------------------------------------------------------------------------- /src/Common/Components/VSTS/WorkItemFieldControl/WorkItemFieldControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/VSTS/WorkItemFieldControl/WorkItemFieldControl.tsx -------------------------------------------------------------------------------- /src/Common/Components/VSTS/WorkItemFieldControl/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./WorkItemFieldControl"; 2 | -------------------------------------------------------------------------------- /src/Common/Components/VSTS/WorkItemFieldPicker/WorkItemFieldPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/VSTS/WorkItemFieldPicker/WorkItemFieldPicker.tsx -------------------------------------------------------------------------------- /src/Common/Components/VSTS/WorkItemFieldPicker/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./WorkItemFieldPicker"; 2 | -------------------------------------------------------------------------------- /src/Common/Components/VSTS/WorkItemFieldValuePicker/WorkItemFieldValuePicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/VSTS/WorkItemFieldValuePicker/WorkItemFieldValuePicker.scss -------------------------------------------------------------------------------- /src/Common/Components/VSTS/WorkItemFieldValuePicker/WorkItemFieldValuePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/VSTS/WorkItemFieldValuePicker/WorkItemFieldValuePicker.tsx -------------------------------------------------------------------------------- /src/Common/Components/VSTS/WorkItemFieldValuePicker/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./WorkItemFieldValuePicker"; 2 | -------------------------------------------------------------------------------- /src/Common/Components/VSTS/WorkItemRelationTypePicker/WorkItemRelationTypePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/VSTS/WorkItemRelationTypePicker/WorkItemRelationTypePicker.tsx -------------------------------------------------------------------------------- /src/Common/Components/VSTS/WorkItemRelationTypePicker/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./WorkItemRelationTypePicker"; 2 | -------------------------------------------------------------------------------- /src/Common/Components/VSTS/WorkItemStateView/WorkItemStateView.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/VSTS/WorkItemStateView/WorkItemStateView.scss -------------------------------------------------------------------------------- /src/Common/Components/VSTS/WorkItemStateView/WorkItemStateView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/VSTS/WorkItemStateView/WorkItemStateView.tsx -------------------------------------------------------------------------------- /src/Common/Components/VSTS/WorkItemStateView/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./WorkItemStateView"; 2 | -------------------------------------------------------------------------------- /src/Common/Components/VSTS/WorkItemTagPicker/WorkItemTagPicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/VSTS/WorkItemTagPicker/WorkItemTagPicker.scss -------------------------------------------------------------------------------- /src/Common/Components/VSTS/WorkItemTagPicker/WorkItemTagPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/VSTS/WorkItemTagPicker/WorkItemTagPicker.tsx -------------------------------------------------------------------------------- /src/Common/Components/VSTS/WorkItemTagPicker/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./WorkItemTagPicker"; 2 | -------------------------------------------------------------------------------- /src/Common/Components/VSTS/WorkItemTagsView/WorkItemTagsView.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/VSTS/WorkItemTagsView/WorkItemTagsView.scss -------------------------------------------------------------------------------- /src/Common/Components/VSTS/WorkItemTagsView/WorkItemTagsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/VSTS/WorkItemTagsView/WorkItemTagsView.tsx -------------------------------------------------------------------------------- /src/Common/Components/VSTS/WorkItemTagsView/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./WorkItemTagsView"; 2 | -------------------------------------------------------------------------------- /src/Common/Components/VSTS/WorkItemTitleView/WorkItemTitleView.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/VSTS/WorkItemTitleView/WorkItemTitleView.scss -------------------------------------------------------------------------------- /src/Common/Components/VSTS/WorkItemTitleView/WorkItemTitleView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/VSTS/WorkItemTitleView/WorkItemTitleView.tsx -------------------------------------------------------------------------------- /src/Common/Components/VSTS/WorkItemTitleView/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./WorkItemTitleView"; 2 | -------------------------------------------------------------------------------- /src/Common/Components/VSTS/WorkItemTypePicker/WorkItemTypePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/VSTS/WorkItemTypePicker/WorkItemTypePicker.tsx -------------------------------------------------------------------------------- /src/Common/Components/VSTS/WorkItemTypePicker/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./WorkItemTypePicker"; 2 | -------------------------------------------------------------------------------- /src/Common/Components/VssCombo/DatePickerCombo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/VssCombo/DatePickerCombo.tsx -------------------------------------------------------------------------------- /src/Common/Components/VssCombo/SimpleCombo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/VssCombo/SimpleCombo.tsx -------------------------------------------------------------------------------- /src/Common/Components/VssCombo/TreeCombo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/VssCombo/TreeCombo.tsx -------------------------------------------------------------------------------- /src/Common/Components/VssCombo/VssCombo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Components/VssCombo/VssCombo.scss -------------------------------------------------------------------------------- /src/Common/ES5-Polyfills/ArrayFrom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/ES5-Polyfills/ArrayFrom.js -------------------------------------------------------------------------------- /src/Common/Flux/Actions/Action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Actions/Action.ts -------------------------------------------------------------------------------- /src/Common/Flux/Actions/ActionsHub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Actions/ActionsHub.ts -------------------------------------------------------------------------------- /src/Common/Flux/Actions/ClassificationNodeActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Actions/ClassificationNodeActions.ts -------------------------------------------------------------------------------- /src/Common/Flux/Actions/ErrorMessageActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Actions/ErrorMessageActions.ts -------------------------------------------------------------------------------- /src/Common/Flux/Actions/GitRepoActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Actions/GitRepoActions.ts -------------------------------------------------------------------------------- /src/Common/Flux/Actions/TeamActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Actions/TeamActions.ts -------------------------------------------------------------------------------- /src/Common/Flux/Actions/TeamFieldActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Actions/TeamFieldActions.ts -------------------------------------------------------------------------------- /src/Common/Flux/Actions/WorkItemActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Actions/WorkItemActions.ts -------------------------------------------------------------------------------- /src/Common/Flux/Actions/WorkItemFieldActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Actions/WorkItemFieldActions.ts -------------------------------------------------------------------------------- /src/Common/Flux/Actions/WorkItemRelationTypeActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Actions/WorkItemRelationTypeActions.ts -------------------------------------------------------------------------------- /src/Common/Flux/Actions/WorkItemStateItemActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Actions/WorkItemStateItemActions.ts -------------------------------------------------------------------------------- /src/Common/Flux/Actions/WorkItemTagActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Actions/WorkItemTagActions.ts -------------------------------------------------------------------------------- /src/Common/Flux/Actions/WorkItemTemplateActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Actions/WorkItemTemplateActions.ts -------------------------------------------------------------------------------- /src/Common/Flux/Actions/WorkItemTemplateItemActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Actions/WorkItemTemplateItemActions.ts -------------------------------------------------------------------------------- /src/Common/Flux/Actions/WorkItemTypeActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Actions/WorkItemTypeActions.ts -------------------------------------------------------------------------------- /src/Common/Flux/Actions/WorkItemTypeFieldAllowedValuesActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Actions/WorkItemTypeFieldAllowedValuesActions.ts -------------------------------------------------------------------------------- /src/Common/Flux/Stores/BaseStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Stores/BaseStore.ts -------------------------------------------------------------------------------- /src/Common/Flux/Stores/ClassificationNodeStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Stores/ClassificationNodeStore.ts -------------------------------------------------------------------------------- /src/Common/Flux/Stores/ErrorMessageStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Stores/ErrorMessageStore.ts -------------------------------------------------------------------------------- /src/Common/Flux/Stores/GitRepoStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Stores/GitRepoStore.ts -------------------------------------------------------------------------------- /src/Common/Flux/Stores/TeamFieldStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Stores/TeamFieldStore.ts -------------------------------------------------------------------------------- /src/Common/Flux/Stores/TeamStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Stores/TeamStore.ts -------------------------------------------------------------------------------- /src/Common/Flux/Stores/WorkItemFieldStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Stores/WorkItemFieldStore.ts -------------------------------------------------------------------------------- /src/Common/Flux/Stores/WorkItemRelationTypeStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Stores/WorkItemRelationTypeStore.ts -------------------------------------------------------------------------------- /src/Common/Flux/Stores/WorkItemStateItemStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Stores/WorkItemStateItemStore.ts -------------------------------------------------------------------------------- /src/Common/Flux/Stores/WorkItemStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Stores/WorkItemStore.ts -------------------------------------------------------------------------------- /src/Common/Flux/Stores/WorkItemTagStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Stores/WorkItemTagStore.ts -------------------------------------------------------------------------------- /src/Common/Flux/Stores/WorkItemTemplateItemStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Stores/WorkItemTemplateItemStore.ts -------------------------------------------------------------------------------- /src/Common/Flux/Stores/WorkItemTemplateStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Stores/WorkItemTemplateStore.ts -------------------------------------------------------------------------------- /src/Common/Flux/Stores/WorkItemTypeFieldAllowedValuesStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Stores/WorkItemTypeFieldAllowedValuesStore.ts -------------------------------------------------------------------------------- /src/Common/Flux/Stores/WorkItemTypeStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Flux/Stores/WorkItemTypeStore.ts -------------------------------------------------------------------------------- /src/Common/Utilities/Array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Utilities/Array.ts -------------------------------------------------------------------------------- /src/Common/Utilities/Clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Utilities/Clipboard.ts -------------------------------------------------------------------------------- /src/Common/Utilities/Core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Utilities/Core.ts -------------------------------------------------------------------------------- /src/Common/Utilities/Date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Utilities/Date.ts -------------------------------------------------------------------------------- /src/Common/Utilities/ExtensionDataManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Utilities/ExtensionDataManager.ts -------------------------------------------------------------------------------- /src/Common/Utilities/Guid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Utilities/Guid.ts -------------------------------------------------------------------------------- /src/Common/Utilities/HtmlTableFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Utilities/HtmlTableFormatter.ts -------------------------------------------------------------------------------- /src/Common/Utilities/Identity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Utilities/Identity.ts -------------------------------------------------------------------------------- /src/Common/Utilities/LocalSettingsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Utilities/LocalSettingsService.ts -------------------------------------------------------------------------------- /src/Common/Utilities/Navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Utilities/Navigation.ts -------------------------------------------------------------------------------- /src/Common/Utilities/Number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Utilities/Number.ts -------------------------------------------------------------------------------- /src/Common/Utilities/String.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Utilities/String.ts -------------------------------------------------------------------------------- /src/Common/Utilities/UrlHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Utilities/UrlHelper.ts -------------------------------------------------------------------------------- /src/Common/Utilities/WITRestClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Utilities/WITRestClient.ts -------------------------------------------------------------------------------- /src/Common/Utilities/WorkItemFormHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/Utilities/WorkItemFormHelpers.ts -------------------------------------------------------------------------------- /src/Common/_CommonStyles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/src/Common/_CommonStyles.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/tslint.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohitbagra/vsts-extensions/HEAD/webpack.config.js --------------------------------------------------------------------------------