utopia-ui 3.0.62 → 3.0.64

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,9 +3,8 @@ export type { AssetsApi } from '#types/AssetsApi';
3
3
  /**
4
4
  * @category AppShell
5
5
  */
6
- export declare function AppShell({ appName, children, assetsApi, userType, }: {
6
+ export declare function AppShell({ appName, children, assetsApi, }: {
7
7
  appName: string;
8
8
  children: React.ReactNode;
9
9
  assetsApi: AssetsApi;
10
- userType: string;
11
10
  }): import("react/jsx-runtime").JSX.Element;
@@ -1,4 +1,3 @@
1
- export default function NavBar({ appName, userType }: {
1
+ export default function NavBar({ appName }: {
2
2
  appName: string;
3
- userType: string;
4
3
  }): import("react/jsx-runtime").JSX.Element;
@@ -1,5 +1,4 @@
1
1
  import type { AssetsApi } from '#types/AssetsApi';
2
- export declare const SetAppState: ({ assetsApi, userType, }: {
2
+ export declare const SetAppState: ({ assetsApi }: {
3
3
  assetsApi: AssetsApi;
4
- userType: string;
5
4
  }) => import("react/jsx-runtime").JSX.Element;
@@ -1,4 +1,4 @@
1
- export * from './useAuth';
1
+ export { AuthProvider, UserApi, UserItem } from './useAuth';
2
2
  export { LoginPage } from './LoginPage';
3
3
  export { SignupPage } from './SignupPage';
4
4
  export { RequestPasswordPage } from './RequestPasswordPage';
@@ -1,4 +1,5 @@
1
1
  import type { LayerProps } from '#types/LayerProps';
2
+ export type { Point } from 'geojson';
2
3
  export type { Item } from '#types/Item';
3
4
  export type { LayerProps } from '#types/LayerProps';
4
5
  export type { Tag } from '#types/Tag';
@@ -6,4 +7,4 @@ export type { Popup } from 'leaflet';
6
7
  /**
7
8
  * @category Map
8
9
  */
9
- export declare const Layer: ({ data, children, name, menuIcon, menuText, menuColor, markerIcon, markerShape, markerDefaultColor, markerDefaultColor2, api, itemType, onlyOnePerOwner, customEditLink, customEditParameter, public_edit_items, listed, setItemFormPopup, itemFormPopup, clusterRef, }: LayerProps) => import("react/jsx-runtime").JSX.Element;
10
+ export declare const Layer: ({ data, children, name, menuIcon, menuText, menuColor, markerIcon, markerShape, markerDefaultColor, markerDefaultColor2, api, itemType, userProfileLayer, customEditLink, customEditParameter, public_edit_items, listed, setItemFormPopup, itemFormPopup, clusterRef, }: LayerProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,4 +1,3 @@
1
1
  export { UserSettings } from './UserSettings';
2
- export { PlusButton } from './Subcomponents/PlusButton';
3
2
  export { ProfileView } from './ProfileView';
4
3
  export { ProfileForm } from './ProfileForm';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "utopia-ui",
3
- "version": "3.0.62",
3
+ "version": "3.0.64",
4
4
  "description": "Reuseable React Components to build mapping apps for real life communities and networks",
5
5
  "repository": "https://github.com/utopia-os/utopia-ui",
6
6
  "homepage": "https://utopia-os.org/",
@@ -1 +0,0 @@
1
- export declare function getValue(obj: any, path: any): any;
@@ -1,9 +0,0 @@
1
- export type { ItemsApi } from './ItemsApi';
2
- export type { Tag } from './Tag';
3
- export type { Item } from './Item';
4
- export type { Permission } from './Permission';
5
- export type { LayerProps } from './LayerProps';
6
- export type { UserApi } from './UserApi';
7
- export type { UserItem } from './UserItem';
8
- export type { UtopiaMapProps } from './UtopiaMapProps';
9
- export type { AssetsApi } from './AssetsApi';