Skip to content

Commit

Permalink
Merged PR 243: Removed search filter fabric-js widget with a simpler …
Browse files Browse the repository at this point in the history
…implementation

Removed search filter fabric-js widget with a simpler implementation
  This is needed since fabric-js search input is too buggy
  Code is not as clean as it should be, to work around some bugs in fabric radio button

Related work items: #13463
  • Loading branch information
tiago.pascoal authored and chrismason committed Aug 7, 2017
2 parents 713fd0c + 83bde0d commit 7fc2c15
Show file tree
Hide file tree
Showing 4 changed files with 123 additions and 129 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<AssemblyName>Import-Export-Kanban</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TypeScriptToolsVersion>1.8</TypeScriptToolsVersion>
<TypeScriptToolsVersion>2.2</TypeScriptToolsVersion>
<UseIISExpress>true</UseIISExpress>
<IISExpressSSLPort>44300</IISExpressSSLPort>
<IISExpressAnonymousAuthentication />
Expand Down Expand Up @@ -50,21 +50,11 @@
<Content Include="scripts\packageRelease.js" />
<Content Include="src\import-export.html" />
<Content Include="src\copy-settings-wizard.html" />
<Content Include="src\select-team-dialog.html" />
<Content Include="web.config" />
<Content Include="tsconfig.json" />
<Content Include="typings.json" />
<Content Include="configs\dev.json" />
<Content Include="configs\release.json" />
<Content Include="webpack.config.js" />
<Content Include="typings\globals\applicationinsights-js\typings.json" />
<Content Include="typings\globals\jquery\typings.json" />
<Content Include="typings\globals\knockout\typings.json" />
<Content Include="typings\globals\q\typings.json" />
<Content Include="typings\globals\react\typings.json" />
<Content Include="typings\globals\require\typings.json" />
<Content Include="typings\globals\tfs\typings.json" />
<Content Include="typings\globals\vss\typings.json" />
<Content Include="webpack.prod.config.js" />
<None Include="web.Debug.config">
<DependentUpon>web.config</DependentUpon>
Expand All @@ -86,19 +76,10 @@
<TypeScriptCompile Include="src\import_export.ts" />
<TypeScriptCompile Include="src\copySettingsWizard.ts" />
<TypeScriptCompile Include="src\TeamSelectorControl.ts" />
<TypeScriptCompile Include="src\select_team_dialog.ts" />
<TypeScriptCompile Include="src\TelemetryClient.ts" />
<TypeScriptCompile Include="src\NavigationControl.ts" />
<TypeScriptCompile Include="src\telemetryClientSettings.ts" />
<TypeScriptCompile Include="src\utils.ts" />
<TypeScriptCompile Include="src\wizardpages\workItemMappingPage.ts" />
<TypeScriptCompile Include="typings\globals\applicationinsights-js\index.d.ts" />
<TypeScriptCompile Include="typings\globals\jquery\index.d.ts" />
<TypeScriptCompile Include="typings\globals\knockout\index.d.ts" />
<TypeScriptCompile Include="typings\globals\q\index.d.ts" />
<TypeScriptCompile Include="typings\globals\react\index.d.ts" />
<TypeScriptCompile Include="typings\globals\require\index.d.ts" />
<TypeScriptCompile Include="typings\globals\tfs\index.d.ts" />
<TypeScriptCompile Include="typings\globals\vss\index.d.ts" />
<TypeScriptCompile Include="typings\index.d.ts" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\WebApplications\Microsoft.WebApplication.targets" Condition="Exists('$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\WebApplications\Microsoft.WebApplication.targets')" />
Expand Down
12 changes: 2 additions & 10 deletions Import-Export-Kanban/Import-Export-Kanban/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,8 @@
font-family: 'Segoe UI', sans-serif;
}

.ms-SearchBox {
width: 100%;
}

.ms-SearchBox-field {
width: 100%;
}

li.ms-Pivot-link {
outline: 0;
.team-filter {
width: 350px;
}

#errorMessageBar {
Expand Down
2 changes: 1 addition & 1 deletion Import-Export-Kanban/Import-Export-Kanban/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"ts-loader": "^2.0.3",
"tslint": "^5.2.0",
"tslint-loader": "^3.5.3",
"typescript": "^2.3.2",
"typescript": "~2.3.4",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5",
"snyk": "^1.30.0"
Expand Down

0 comments on commit 7fc2c15

Please sign in to comment.