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 +7 -1
- package/dist/Components/AppShell/AppShell.d.ts +0 -1
- package/dist/Components/Map/UtopiaMap.d.ts +1 -0
- package/dist/Components/Map/UtopiaMapInner.d.ts +1 -1
- package/dist/Components/Templates/MarketView.d.ts +1 -0
- package/dist/Components/Templates/TagView.d.ts +2 -1
- package/dist/Components/Templates/index.d.ts +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +122 -75
- package/dist/index.js.map +1 -1
- package/dist/types.d.ts +1 -0
- package/package.json +1 -1
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
|
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,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;
|
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 {
|