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/dist/index.js +60 -60
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +95 -95
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/icon/styles.ts +6 -6
package/package.json
CHANGED
|
@@ -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
|
|
12
|
-
import
|
|
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 '
|
|
311
|
+
case 'chat-left-nav':
|
|
312
312
|
style += `
|
|
313
313
|
&:before {
|
|
314
|
-
content: url(${
|
|
314
|
+
content: url(${IconChatLeftNav});
|
|
315
315
|
}
|
|
316
316
|
`
|
|
317
317
|
break;
|
|
318
|
-
case '
|
|
318
|
+
case 'chat-active-left-nav':
|
|
319
319
|
style += `
|
|
320
320
|
&:before {
|
|
321
|
-
content: url(${
|
|
321
|
+
content: url(${IconChatActiveLeftNav});
|
|
322
322
|
}
|
|
323
323
|
`
|
|
324
324
|
break;
|