forstok-ui-lib 6.2.5 → 6.2.7

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": "forstok-ui-lib",
3
- "version": "6.2.5",
3
+ "version": "6.2.7",
4
4
  "description": "Forstok UI Components Library",
5
5
  "path": "dist",
6
6
  "main": "dist/index.js",
@@ -8,8 +8,8 @@ import IconDashboardLeftNav from '../../assets/images/navs/left/dashboard.svg';
8
8
  import IconDashboardActiveLeftNav from '../../assets/images/navs/left/dashboard-active.svg';
9
9
  import IconAiLeftNav from '../../assets/images/navs/left/ai.svg';
10
10
  import IconAiActiveLeftNav from '../../assets/images/navs/left/ai-active.svg';
11
- import IconConversationLeftNav from '../../assets/images/navs/left/conversation.svg';
12
- import IconConversationActiveLeftNav from '../../assets/images/navs/left/conversation-active.svg';
11
+ import IconChatLeftNav from '../../assets/images/navs/left/chats.svg';
12
+ import IconChatActiveLeftNav from '../../assets/images/navs/left/chats-active.svg';
13
13
  import IconReportingLeftNav from '../../assets/images/navs/left/reporting.svg';
14
14
  import IconReportingActiveLeftNav from '../../assets/images/navs/left/reporting-active.svg';
15
15
  import IconIntegrationLeftNav from '../../assets/images/navs/left/integrations.svg';
@@ -308,17 +308,17 @@ const getIconContainerStyled = ({ $mode, $name, $width, onClick }:{ $mode?: stri
308
308
  }
309
309
  `
310
310
  break;
311
- case 'conversation-left-nav':
311
+ case 'chat-left-nav':
312
312
  style += `
313
313
  &:before {
314
- content: url(${IconConversationLeftNav});
314
+ content: url(${IconChatLeftNav});
315
315
  }
316
316
  `
317
317
  break;
318
- case 'conversation-active-left-nav':
318
+ case 'chat-active-left-nav':
319
319
  style += `
320
320
  &:before {
321
- content: url(${IconConversationActiveLeftNav});
321
+ content: url(${IconChatActiveLeftNav});
322
322
  }
323
323
  `
324
324
  break;