@jobber/components 4.23.34 → 4.23.35

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.
@@ -3,8 +3,6 @@ import { ListItemProps } from "./ListItem";
3
3
  interface ListProps {
4
4
  /**
5
5
  * Array of the list items.
6
- *
7
- * {@link https://atlantis.frend.space/components/list#list-item-props List Item Props}
8
6
  */
9
7
  readonly items: ListItemProps[];
10
8
  }
@@ -1 +1,2 @@
1
1
  export { List } from "./List";
2
+ export { ListItem } from "./ListItem";
@@ -89,3 +89,4 @@ function SectionedList({ items }) {
89
89
  }
90
90
 
91
91
  exports.List = List;
92
+ exports.ListItem = ListItem;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jobber/components",
3
- "version": "4.23.34",
3
+ "version": "4.23.35",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -83,5 +83,5 @@
83
83
  "> 1%",
84
84
  "IE 10"
85
85
  ],
86
- "gitHead": "468cfff2928b7f2338637ddea217ae03729c3d74"
86
+ "gitHead": "4bed458cb6a9bc8e3f52b63e3cf2f29ece0a57ce"
87
87
  }
@@ -1,2 +0,0 @@
1
- import { ListItemProps } from "./ListItem";
2
- export declare const StorybookListPropsInterface: (_: ListItemProps) => JSX.Element;