@goodhood-web/nebenan-base 4.13.0-development.4 → 4.13.0-development.5
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/index.js +24 -24
- package/index.mjs +1978 -1972
- package/lib/RichTextArea/components/POI/POIRecommendation.types.d.ts +1 -0
- package/lib/SearchableList/components/Content/Content.d.ts +1 -1
- package/lib/SearchableList/components/Content/Content.types.d.ts +1 -0
- package/package.json +1 -1
- package/style.css +1 -1
|
@@ -7,6 +7,7 @@ export type POIRecommendationProps = {
|
|
|
7
7
|
onSelect: (poi: V3BusinessProfile) => void;
|
|
8
8
|
openSheet: boolean;
|
|
9
9
|
searchableListProps?: {
|
|
10
|
+
contentClassName?: string;
|
|
10
11
|
headerProps?: SearchableListProps['headerProps'];
|
|
11
12
|
inputProps?: SearchableListProps['inputProps'];
|
|
12
13
|
intro?: SearchableListProps['intro'];
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { ContentProps } from './Content.types';
|
|
2
|
-
declare const Content: ({ content, emptyState, emptyStateProps, length, loading, loadMore, }: ContentProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare const Content: ({ content, contentClassName, emptyState, emptyStateProps, length, loading, loadMore, }: ContentProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default Content;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { default as EmptyStateProps } from '../../../../../../ui/src/lib/Molecules/Notices/EmptyState/EmptyState.types';
|
|
2
2
|
export type ContentProps = {
|
|
3
3
|
content?: React.ReactNode;
|
|
4
|
+
contentClassName?: string;
|
|
4
5
|
emptyState?: React.ReactNode;
|
|
5
6
|
emptyStateProps?: Omit<EmptyStateProps, 'size'> & {
|
|
6
7
|
size?: EmptyStateProps['size'];
|