utopia-ui 3.0.0-alpha.95 → 3.0.0-alpha.97
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/dist/Components/Map/Subcomponents/AddButton.d.ts +2 -2
- package/dist/Components/Map/Subcomponents/ItemPopupComponents/HeaderView.d.ts +2 -1
- package/dist/Components/Profile/AvatarWidget.d.ts +5 -0
- package/dist/Components/Profile/OverlayItemProfile.d.ts +1 -0
- package/dist/Components/Profile/OverlayItemProfileSettings.d.ts +1 -0
- package/dist/Components/Profile/PlusButton.d.ts +5 -0
- package/dist/Components/Profile/index.d.ts +3 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3368 -3066
- package/dist/index.js.map +1 -1
- package/dist/types.d.ts +6 -2
- package/package.json +1 -1
@@ -1,4 +1,4 @@
|
|
1
1
|
import * as React from 'react';
|
2
|
-
export default function AddButton({
|
3
|
-
|
2
|
+
export default function AddButton({ triggerAction }: {
|
3
|
+
triggerAction: React.Dispatch<React.SetStateAction<any>>;
|
4
4
|
}): import("react/jsx-runtime").JSX.Element;
|
@@ -1,7 +1,8 @@
|
|
1
1
|
import * as React from "react";
|
2
2
|
import { ItemFormPopupProps } from "../ItemFormPopup";
|
3
3
|
import { Item } from "../../../../types";
|
4
|
-
export declare function HeaderView({ item, setItemFormPopup }: {
|
4
|
+
export declare function HeaderView({ item, setItemFormPopup, hideMenu }: {
|
5
5
|
item: Item;
|
6
6
|
setItemFormPopup?: React.Dispatch<React.SetStateAction<ItemFormPopupProps | null>>;
|
7
|
+
hideMenu?: boolean;
|
7
8
|
}): import("react/jsx-runtime").JSX.Element;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare function OverlayItemProfile(): import("react/jsx-runtime").JSX.Element;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare function OverlayItemProfileSettings(): import("react/jsx-runtime").JSX.Element;
|
@@ -3,3 +3,6 @@ export { ProfileSettings } from './ProfileSettings';
|
|
3
3
|
export { OverlayProfile } from './OverlayProfile';
|
4
4
|
export { OverlayProfileSettings } from './OverlayProfileSettings';
|
5
5
|
export { OverlayUserSettings } from './OverlayUserSettings';
|
6
|
+
export { OverlayItemProfile } from './OverlayItemProfile';
|
7
|
+
export { OverlayItemProfileSettings } from './OverlayItemProfileSettings';
|
8
|
+
export { PlusButton } from "./PlusButton";
|
package/dist/index.d.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
export { UtopiaMap, Layer, Tags, Permissions, ItemForm, ItemView, PopupTextAreaInput, PopupStartEndInput, PopupTextInput, PopupButton, TextView, StartEndView } from './Components/Map';
|
2
2
|
export { AppShell, Content, SideBar } from "./Components/AppShell";
|
3
3
|
export { AuthProvider, useAuth, LoginPage, SignupPage, RequestPasswordPage, SetNewPasswordPage } from "./Components/Auth";
|
4
|
-
export { UserSettings, ProfileSettings, OverlayProfile, OverlayProfileSettings, OverlayUserSettings } from './Components/Profile';
|
4
|
+
export { UserSettings, ProfileSettings, OverlayProfile, OverlayProfileSettings, OverlayUserSettings, OverlayItemProfile, OverlayItemProfileSettings, PlusButton } from './Components/Profile';
|
5
5
|
export { Quests, Modal } from './Components/Gaming';
|
6
6
|
export { TitleCard, CardPage, MapOverlayPage, CircleLayout, MoonCalendar, ItemsIndexPage, ItemViewPage } from './Components/Templates';
|
7
7
|
export { TextInput, TextAreaInput, SelectBox } from './Components/Input';
|