@chayns-components/core 5.0.0-beta.814 → 5.0.0-beta.816

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.
Files changed (39) hide show
  1. package/lib/cjs/components/context-menu/ContextMenu.js +9 -8
  2. package/lib/cjs/components/context-menu/ContextMenu.js.map +1 -1
  3. package/lib/cjs/components/list/list-item/ListItem.js +4 -2
  4. package/lib/cjs/components/list/list-item/ListItem.js.map +1 -1
  5. package/lib/cjs/components/list/list-item/list-item-head/ListItemHead.js +8 -4
  6. package/lib/cjs/components/list/list-item/list-item-head/ListItemHead.js.map +1 -1
  7. package/lib/cjs/components/list/list-item/list-item-head/list-item-icon/ListItemIcon.js +7 -2
  8. package/lib/cjs/components/list/list-item/list-item-head/list-item-icon/ListItemIcon.js.map +1 -1
  9. package/lib/cjs/components/list/list-item/list-item-head/list-item-icon/ListItemIcon.styles.js +26 -9
  10. package/lib/cjs/components/list/list-item/list-item-head/list-item-icon/ListItemIcon.styles.js.map +1 -1
  11. package/lib/cjs/components/list/list-item/list-item-head/list-item-image/ListItemImage.js +2 -0
  12. package/lib/cjs/components/list/list-item/list-item-head/list-item-image/ListItemImage.js.map +1 -1
  13. package/lib/cjs/components/list/list-item/list-item-head/list-item-image/ListItemImage.styles.js +27 -16
  14. package/lib/cjs/components/list/list-item/list-item-head/list-item-image/ListItemImage.styles.js.map +1 -1
  15. package/lib/cjs/components/page-provider/PageProvider.styles.js +1 -0
  16. package/lib/cjs/components/page-provider/PageProvider.styles.js.map +1 -1
  17. package/lib/esm/components/context-menu/ContextMenu.js +9 -8
  18. package/lib/esm/components/context-menu/ContextMenu.js.map +1 -1
  19. package/lib/esm/components/list/list-item/ListItem.js +4 -2
  20. package/lib/esm/components/list/list-item/ListItem.js.map +1 -1
  21. package/lib/esm/components/list/list-item/list-item-head/ListItemHead.js +8 -4
  22. package/lib/esm/components/list/list-item/list-item-head/ListItemHead.js.map +1 -1
  23. package/lib/esm/components/list/list-item/list-item-head/list-item-icon/ListItemIcon.js +7 -2
  24. package/lib/esm/components/list/list-item/list-item-head/list-item-icon/ListItemIcon.js.map +1 -1
  25. package/lib/esm/components/list/list-item/list-item-head/list-item-icon/ListItemIcon.styles.js +36 -14
  26. package/lib/esm/components/list/list-item/list-item-head/list-item-icon/ListItemIcon.styles.js.map +1 -1
  27. package/lib/esm/components/list/list-item/list-item-head/list-item-image/ListItemImage.js +2 -0
  28. package/lib/esm/components/list/list-item/list-item-head/list-item-image/ListItemImage.js.map +1 -1
  29. package/lib/esm/components/list/list-item/list-item-head/list-item-image/ListItemImage.styles.js +38 -25
  30. package/lib/esm/components/list/list-item/list-item-head/list-item-image/ListItemImage.styles.js.map +1 -1
  31. package/lib/esm/components/page-provider/PageProvider.styles.js +1 -0
  32. package/lib/esm/components/page-provider/PageProvider.styles.js.map +1 -1
  33. package/lib/types/components/list/list-item/ListItem.d.ts +7 -3
  34. package/lib/types/components/list/list-item/list-item-head/ListItemHead.d.ts +2 -1
  35. package/lib/types/components/list/list-item/list-item-head/list-item-icon/ListItemIcon.d.ts +2 -0
  36. package/lib/types/components/list/list-item/list-item-head/list-item-icon/ListItemIcon.styles.d.ts +7 -1
  37. package/lib/types/components/list/list-item/list-item-head/list-item-image/ListItemImage.d.ts +1 -0
  38. package/lib/types/components/list/list-item/list-item-head/list-item-image/ListItemImage.styles.d.ts +1 -0
  39. package/package.json +2 -2
@@ -1,6 +1,8 @@
1
1
  import React from 'react';
2
2
  type ListItemIconProps = {
3
3
  icons: string[];
4
+ shouldHideBackground: boolean;
5
+ shouldShowRoundIcon: boolean;
4
6
  };
5
7
  declare const ListItemIcon: React.FC<ListItemIconProps>;
6
8
  export default ListItemIcon;
@@ -1 +1,7 @@
1
- export declare const StyledListItemIcon: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
1
+ import type { WithTheme } from '../../../../color-scheme-provider/ColorSchemeProvider';
2
+ type StyledListItemIconProps = WithTheme<{
3
+ $shouldHideBackground?: boolean;
4
+ $shouldShowRoundIcon?: boolean;
5
+ }>;
6
+ export declare const StyledListItemIcon: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledListItemIconProps>> & string;
7
+ export {};
@@ -1,6 +1,7 @@
1
1
  import React from 'react';
2
2
  type ListItemImageProps = {
3
3
  images: string[];
4
+ shouldHideBackground: boolean;
4
5
  shouldShowRoundImage: boolean;
5
6
  };
6
7
  declare const ListItemImage: React.FC<ListItemImageProps>;
@@ -1,5 +1,6 @@
1
1
  import type { WithTheme } from '../../../../color-scheme-provider/ColorSchemeProvider';
2
2
  type StyledListItemHeadImageWrapperProps = WithTheme<{
3
+ $shouldHideBackground?: boolean;
3
4
  $shouldShowRoundImage?: boolean;
4
5
  }>;
5
6
  export declare const StyledListItemHeadImageWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledListItemHeadImageWrapperProps>> & string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chayns-components/core",
3
- "version": "5.0.0-beta.814",
3
+ "version": "5.0.0-beta.816",
4
4
  "description": "A set of beautiful React components for developing your own applications with chayns.",
5
5
  "sideEffects": false,
6
6
  "browserslist": [
@@ -85,5 +85,5 @@
85
85
  "publishConfig": {
86
86
  "access": "public"
87
87
  },
88
- "gitHead": "bce8047d75eea63f9f2fa514c071cc7f16d05448"
88
+ "gitHead": "80d343e2ad66523142501222c9d012d0dd772de3"
89
89
  }