utopia-ui 3.0.0-alpha.51 → 3.0.0-alpha.52
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.
@@ -2,9 +2,11 @@ import * as React from 'react';
|
|
2
2
|
import { Item } from '../../types';
|
3
3
|
import * as PropTypes from 'prop-types';
|
4
4
|
export declare const ItemForm: {
|
5
|
-
({ children, item }: {
|
5
|
+
({ children, item, title, setPopupTitle }: {
|
6
6
|
children?: React.ReactNode;
|
7
7
|
item?: Item | undefined;
|
8
|
+
title?: string | undefined;
|
9
|
+
setPopupTitle?: React.Dispatch<React.SetStateAction<string>> | undefined;
|
8
10
|
}): JSX.Element;
|
9
11
|
propTypes: {
|
10
12
|
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
@@ -1,3 +1,3 @@
|
|
1
1
|
/// <reference types="react" />
|
2
2
|
import { LayerProps } from '../../types';
|
3
|
-
export declare const Layer: ({ data, children, name, menuIcon, menuText, menuColor, markerIcon, markerShape, markerDefaultColor, api, itemNameField, itemTextField, itemAvatarField, itemColorField, itemOwnerField, itemLatitudeField, itemLongitudeField, setItemFormPopup, itemFormPopup, clusterRef }: LayerProps) => JSX.Element;
|
3
|
+
export declare const Layer: ({ data, children, name, menuIcon, menuText, menuColor, markerIcon, markerShape, markerDefaultColor, api, itemNameField, itemTextField, itemAvatarField, itemColorField, itemOwnerField, itemLatitudeField, itemLongitudeField, onlyOnePerOwner, setItemFormPopup, itemFormPopup, clusterRef }: LayerProps) => JSX.Element;
|