utopia-ui 3.0.0 → 3.0.1

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/README.md CHANGED
@@ -30,7 +30,7 @@ install via npm
30
30
  ```
31
31
 
32
32
  ## Map Component
33
- The map shows various Layers (places, events, profiles ...) of Irems at their respective position whith nice and informative Popups.
33
+ The map shows various Layers (like places, events, profiles ...) of Items at their respective position whith nice and informative Popup and Profiles.
34
34
 
35
35
  Tags, colors and clusters help to retain the overview.
36
36
 
@@ -85,3 +85,9 @@ You can find some Sample Data (places, events, tags) for test in the `SamleData/
85
85
  *We are looking for Web Developer, UX Designer, Community Manager, Visionaries, Artists, etc. who like to support this Vision.*
86
86
 
87
87
  [https://t.me/UtopiaMap](https://t.me/UtopiaMap)
88
+
89
+ ## Support us
90
+
91
+ <a href="https://opencollective.com/utopia-project">
92
+ <img width="300" src="https://opencollective.com/utopia-project/donate/button@2x.png?color=blue" />
93
+ </a>
@@ -1,6 +1,5 @@
1
1
  import * as React from 'react';
2
2
  import { AssetsApi } from '../../types';
3
- import 'react-toastify/dist/ReactToastify.css';
4
3
  export declare function AppShell({ appName, children, assetsApi, userType }: {
5
4
  appName: string;
6
5
  children: React.ReactNode;
@@ -1,3 +1,4 @@
1
1
  import { UtopiaMapProps } from "../../types";
2
+ import 'react-toastify/dist/ReactToastify.css';
2
3
  declare function UtopiaMap(props: UtopiaMapProps): import("react/jsx-runtime").JSX.Element;
3
4
  export { UtopiaMap };
@@ -1,4 +1,4 @@
1
1
  import "leaflet/dist/leaflet.css";
2
2
  import { UtopiaMapProps } from "../../types";
3
3
  import "./UtopiaMap.css";
4
- export declare function UtopiaMapInner({ height, width, center, zoom, children, geo, showFilterControl, showGratitudeControl, showLayerControl }: UtopiaMapProps): import("react/jsx-runtime").JSX.Element;
4
+ export declare function UtopiaMapInner({ height, width, center, zoom, children, geo, showFilterControl, showGratitudeControl, showLayerControl, infoText }: UtopiaMapProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export declare const MarketView: () => import("react/jsx-runtime").JSX.Element;
@@ -1,6 +1,7 @@
1
1
  import { Tag } from '../../types';
2
- export declare const TagView: ({ tag, heighlight, onClick }: {
2
+ export declare const TagView: ({ tag, heighlight, onClick, count }: {
3
3
  tag: Tag;
4
4
  heighlight?: boolean | undefined;
5
5
  onClick?: ((e: any) => void) | undefined;
6
+ count?: number | undefined;
6
7
  }) => import("react/jsx-runtime").JSX.Element;
@@ -5,3 +5,4 @@ export { MoonCalendar } from './MoonCalendar';
5
5
  export { SelectUser } from "./SelectUser";
6
6
  export { OverlayItemsIndexPage } from "./OverlayItemsIndexPage";
7
7
  export { AttestationForm } from "./AttestationForm";
8
+ export { MarketView } from "./MarketView";
package/dist/index.d.ts CHANGED
@@ -3,7 +3,7 @@ export { AppShell, Content, SideBar, Sitemap } from "./Components/AppShell";
3
3
  export { AuthProvider, useAuth, LoginPage, SignupPage, RequestPasswordPage, SetNewPasswordPage } from "./Components/Auth";
4
4
  export { UserSettings, ProfileView, ProfileForm } from './Components/Profile';
5
5
  export { Quests, Modal } from './Components/Gaming';
6
- export { TitleCard, CardPage, MapOverlayPage, OverlayItemsIndexPage, MoonCalendar, SelectUser, AttestationForm } from './Components/Templates';
6
+ export { TitleCard, CardPage, MapOverlayPage, OverlayItemsIndexPage, MoonCalendar, SelectUser, AttestationForm, MarketView } from './Components/Templates';
7
7
  export { TextInput, TextAreaInput, SelectBox } from './Components/Input';
8
8
  import "./index.css";
9
9
  declare global {