@true-engineering/true-react-common-ui-kit 4.0.0-alpha62 → 4.0.0-alpha63

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": "@true-engineering/true-react-common-ui-kit",
3
- "version": "4.0.0-alpha62",
3
+ "version": "4.0.0-alpha63",
4
4
  "description": "True Engineering React UI Kit with theming support",
5
5
  "author": "True Engineering (https://trueengineering.ru)",
6
6
  "keywords": [
@@ -48,6 +48,8 @@ export const useStyles = createThemedStyles('ListItem', {
48
48
  content: {
49
49
  flexGrow: 1,
50
50
  },
51
+
52
+ chevron: {},
51
53
  });
52
54
 
53
55
  export type IListItemStyles = ITweakStyles<typeof useStyles, IListItemSizes>;
@@ -59,7 +59,7 @@ export const ListItem: FC<IListItemProps> = ({
59
59
  {isReactNodeNotEmpty(icon) && <span className={classes.icon}>{renderIcon(icon)}</span>}
60
60
  <span className={classes.content}>{item}</span>
61
61
  {isArrayNotEmpty(nestedItems) && (
62
- <span className={classes.icon}>
62
+ <span className={clsx(classes.icon, classes.chevron)}>
63
63
  <Icon type="chevron-right" />
64
64
  </span>
65
65
  )}