Skip to content

Commit 19ef5f3

Browse files
author
Manus Sandbox
committed
v3.50.0: UI Enhancement - Replace Company tile with URL normalization tile
- Updated Enrichment-Ready Output Format section - Replaced Company tile with URL normalization examples - Shows protocol removal, www removal, and domain extraction - Updated version to 3.50.0 in package.json - Updated CHANGELOG.md with UI enhancement details
1 parent 1077876 commit 19ef5f3

3 files changed

Lines changed: 24 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,12 @@
5555
- **Space Handling**: Supports both "First Name" and "First_Name" variations
5656
- **Confidence Calculation**: Accurate scoring for sparse data
5757

58+
### UI Enhancements
59+
- **Enrichment-Ready Output Format Section**: Replaced "Company" tile with "URL" normalization tile
60+
- Shows URL normalization examples (protocol removal, www removal, domain extraction)
61+
- Matches format of other tiles (First Name, Last Name, Address, State & ZIP, Phone)
62+
- Displays real normalization examples: https://www.example.com/path → example.com
63+
5864
---
5965

6066
## [3.49.0] - 2025-12-17

client/src/pages/IntelligentNormalization.tsx

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -715,19 +715,28 @@ headers.forEach(header => {
715715
</div>
716716
</div>
717717
</div>
718-
{/* Company */}
718+
{/* URL */}
719719
<div className="bg-white/10 backdrop-blur-sm rounded-xl p-6 border border-white/20">
720720
<div className="flex items-center gap-2 mb-4">
721-
<Building2 className="h-5 w-5 text-white" />
722-
<h4 className="text-lg font-semibold text-white">Company</h4>
721+
<Zap className="h-5 w-5 text-white" />
722+
<h4 className="text-lg font-semibold text-white">URL</h4>
723723
</div>
724724
<ul className="space-y-2 text-sm text-indigo-100 mb-4">
725-
<li>Company domain</li>
726-
<li>Company name</li>
727-
<li>LinkedIn profile</li>
725+
<li>Extract clean domain names</li>
726+
<li>Remove protocols and www</li>
727+
<li>Handle international domains</li>
728728
</ul>
729-
<div className="bg-black/20 rounded-lg p-3 flex items-center justify-center h-16">
730-
<span className="text-indigo-200 text-sm font-medium">Coming Soon</span>
729+
<div className="bg-black/20 rounded-lg p-3 space-y-1">
730+
<div className="flex items-center gap-2 text-xs sm:text-sm">
731+
<span className="text-gray-300 truncate">https://www.example.com/path</span>
732+
<span className="text-white"></span>
733+
<span className="text-green-300 font-medium">example.com</span>
734+
</div>
735+
<div className="flex items-center gap-2 text-xs sm:text-sm">
736+
<span className="text-gray-300 truncate">http://subdomain.site.co.uk</span>
737+
<span className="text-white"></span>
738+
<span className="text-green-300 font-medium">site.co.uk</span>
739+
</div>
731740
</div>
732741
</div>
733742
</div>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "name-normalization-platform",
3-
"version": "3.49.0",
3+
"version": "3.50.0",
44
"private": true,
55
"type": "module",
66
"license": "MIT",

0 commit comments

Comments
 (0)