@pubuduth-aplicy/chat-ui 2.1.81 → 2.1.82

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pubuduth-aplicy/chat-ui",
3
- "version": "2.1.81",
3
+ "version": "2.1.82",
4
4
  "description": "This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.",
5
5
  "license": "ISC",
6
6
  "author": "",
@@ -265,14 +265,14 @@ const Conversations = () => {
265
265
  <button
266
266
  className={`flex-1 py-3 px-4 text-sm font-medium text-center border-b-2 transition-colors ${
267
267
  activeTab === "personal"
268
- ? "border-[#317490] message-text bg-blue-50"
268
+ ? "border-primary message-text bg-primary/20"
269
269
  : "border-transparent text-gray-500 hover:text-gray-700 hover:bg-gray-50"
270
270
  }`}
271
271
  onClick={() => setActiveTab("personal")}
272
272
  >
273
273
  Personal
274
274
  {personalUnreadCount > 0 && (
275
- <span className="ml-2 bg-blue-500 text-white text-xs rounded-full px-2 py-1 min-w-5 inline-flex justify-center">
275
+ <span className="ml-2 bg-blue-primary text-white text-xs rounded-full px-2 py-1 min-w-5 inline-flex justify-center">
276
276
  {personalUnreadCount}
277
277
  </span>
278
278
  )}
@@ -280,14 +280,14 @@ const Conversations = () => {
280
280
  <button
281
281
  className={`flex-1 py-3 px-4 text-sm font-medium text-center border-b-2 transition-colors ${
282
282
  activeTab === "service"
283
- ? "border-blue-500 text-blue-600 bg-blue-50"
283
+ ? "border-primary message-text bg-primary/20"
284
284
  : "border-transparent text-gray-500 hover:text-gray-700 hover:bg-gray-50"
285
285
  }`}
286
286
  onClick={() => setActiveTab("service")}
287
287
  >
288
288
  Service
289
289
  {serviceUnreadCount > 0 && (
290
- <span className="ml-2 bg-blue-500 text-white text-xs rounded-full px-2 py-1 min-w-5 inline-flex justify-center">
290
+ <span className="ml-2 bg-primary text-white text-xs rounded-full px-2 py-1 min-w-5 inline-flex justify-center">
291
291
  {serviceUnreadCount}
292
292
  </span>
293
293
  )}