utopia-ui 3.0.74 → 3.0.76
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 +1 -1
- package/dist/index.cjs +93 -72
- package/dist/index.cjs.map +1 -1
- package/dist/index.esm.js +93 -72
- package/dist/index.esm.js.map +1 -1
- package/dist/types/src/Components/AppShell/ContextWrapper.d.ts +1 -1
- package/dist/types/src/Components/AppShell/hooks/useAppState.d.ts +2 -1
- package/dist/types/src/Components/Map/Subcomponents/Controls/LocateControl.d.ts +0 -1
- package/dist/types/src/Components/Map/UtopiaMap.d.ts +0 -1
- package/dist/types/src/Components/Map/UtopiaMapInner.d.ts +0 -2
- package/dist/types/src/Components/Profile/Subcomponents/AvatarWidget.d.ts +0 -1
- package/dist/types/src/Components/Profile/Subcomponents/ColorPicker.d.ts +0 -1
- package/dist/types/src/Components/Profile/Subcomponents/GalleryView.d.ts +0 -2
- package/dist/types/src/Components/Templates/ItemCard.d.ts +1 -1
- package/dist/types/src/Components/Templates/TitleCard.d.ts +1 -1
- package/dist/types/src/Components/Typography/ErrorText.d.ts +2 -2
- package/dist/types/src/css.d.ts +14 -0
- package/dist/types/src/index.d.ts +1 -1
- package/package.json +1 -2
@@ -1,6 +1,6 @@
|
|
1
1
|
export declare const ContextWrapper: ({ children }: {
|
2
2
|
children: React.ReactNode;
|
3
|
-
}) => string | number | boolean |
|
3
|
+
}) => string | number | boolean | import("react/jsx-runtime").JSX.Element | Iterable<import("react").ReactNode> | null | undefined;
|
4
4
|
export declare const Wrappers: ({ children }: {
|
5
5
|
children: any;
|
6
6
|
}) => import("react/jsx-runtime").JSX.Element;
|
@@ -1,7 +1,8 @@
|
|
1
1
|
import type { AssetsApi } from '#types/AssetsApi';
|
2
2
|
interface AppState {
|
3
3
|
assetsApi: AssetsApi;
|
4
|
-
|
4
|
+
sideBarOpen: boolean;
|
5
|
+
sideBarSlim: boolean;
|
5
6
|
}
|
6
7
|
type UseAppManagerResult = ReturnType<typeof useAppManager>;
|
7
8
|
declare function useAppManager(): {
|
@@ -1,4 +1,2 @@
|
|
1
|
-
import 'leaflet/dist/leaflet.css';
|
2
|
-
import './UtopiaMap.css';
|
3
1
|
import type { UtopiaMapProps } from '#types/UtopiaMapProps';
|
4
2
|
export declare function UtopiaMapInner({ children, geo, showFilterControl, showGratitudeControl, showLayerControl, donationWidget, }: UtopiaMapProps): import("react/jsx-runtime").JSX.Element;
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import 'leaflet/dist/leaflet.css';
|
2
|
+
import 'leaflet.locatecontrol/dist/L.Control.Locate.css';
|
3
|
+
import 'react-image-crop/dist/ReactCrop.css';
|
4
|
+
import 'react-photo-album/rows.css';
|
5
|
+
import 'react-toastify/dist/ReactToastify.css';
|
6
|
+
import 'yet-another-react-lightbox/styles.css';
|
7
|
+
import '#assets/css/tailwind.css';
|
8
|
+
import '#assets/css/masonry.css';
|
9
|
+
import '#assets/css/toastify.css';
|
10
|
+
import '#assets/css/custom-file-upload.css';
|
11
|
+
import '#assets/css/misc.css';
|
12
|
+
import '#assets/css/marker-icons.css';
|
13
|
+
import '#assets/css/leaflet.css';
|
14
|
+
import '#assets/css/color-picker.css';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "utopia-ui",
|
3
|
-
"version": "3.0.
|
3
|
+
"version": "3.0.76",
|
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/",
|
@@ -106,7 +106,6 @@
|
|
106
106
|
"react-router-dom": "^6.16.0",
|
107
107
|
"react-toastify": "^9.1.3",
|
108
108
|
"remark-breaks": "^4.0.0",
|
109
|
-
"tw-elements": "^1.0.0",
|
110
109
|
"yet-another-react-lightbox": "^3.21.7"
|
111
110
|
},
|
112
111
|
"imports": {
|