utopia-ui 3.0.80 → 3.0.81

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,8 +3,9 @@ export type { AssetsApi } from '#types/AssetsApi';
3
3
  /**
4
4
  * @category AppShell
5
5
  */
6
- export declare function AppShell({ appName, children, assetsApi, }: {
6
+ export declare function AppShell({ appName, children, assetsApi, embedded, }: {
7
7
  appName: string;
8
8
  children: React.ReactNode;
9
9
  assetsApi: AssetsApi;
10
+ embedded?: boolean;
10
11
  }): import("react/jsx-runtime").JSX.Element;
@@ -1,4 +1,5 @@
1
1
  import type { AssetsApi } from '#types/AssetsApi';
2
- export declare const SetAppState: ({ assetsApi }: {
2
+ export declare const SetAppState: ({ assetsApi, embedded, }: {
3
3
  assetsApi: AssetsApi;
4
+ embedded?: boolean;
4
5
  }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export declare const UserControl: () => import("react/jsx-runtime").JSX.Element;
@@ -3,6 +3,7 @@ interface AppState {
3
3
  assetsApi: AssetsApi;
4
4
  sideBarOpen: boolean;
5
5
  sideBarSlim: boolean;
6
+ embedded: boolean;
6
7
  }
7
8
  type UseAppManagerResult = ReturnType<typeof useAppManager>;
8
9
  declare function useAppManager(): {
@@ -0,0 +1 @@
1
+ export declare const useTheme: (defaultTheme?: string) => void;
@@ -0,0 +1 @@
1
+ export declare const ThemeControl: () => import("react/jsx-runtime").JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "utopia-ui",
3
- "version": "3.0.80",
3
+ "version": "3.0.81",
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/",
@@ -38,7 +38,6 @@
38
38
  "@rollup/plugin-alias": "^5.1.1",
39
39
  "@rollup/plugin-node-resolve": "^16.0.0",
40
40
  "@rollup/plugin-typescript": "^12.1.2",
41
- "@tailwindcss/postcss": "^4.0.14",
42
41
  "@testing-library/jest-dom": "^6.6.3",
43
42
  "@testing-library/react": "^16.2.0",
44
43
  "@types/geojson": "^7946.0.14",
@@ -50,8 +49,9 @@
50
49
  "@typescript-eslint/parser": "^5.62.0",
51
50
  "@vitejs/plugin-react": "^4.3.4",
52
51
  "@vitest/coverage-v8": "^3.0.5",
52
+ "autoprefixer": "^10.4.14",
53
53
  "cypress": "^14.0.3",
54
- "daisyui": "^5.0.6",
54
+ "daisyui": "^4.6.1",
55
55
  "eslint": "^8.24.0",
56
56
  "eslint-config-prettier": "^9.1.0",
57
57
  "eslint-config-standard": "^17.1.0",
@@ -76,7 +76,7 @@
76
76
  "rollup-plugin-dts": "^6.1.1",
77
77
  "rollup-plugin-postcss": "^4.0.2",
78
78
  "rollup-plugin-svg": "^2.0.0",
79
- "tailwindcss": "^4.0.14",
79
+ "tailwindcss": "^3.3.1",
80
80
  "typedoc": "^0.27.6",
81
81
  "typedoc-plugin-coverage": "^3.4.1",
82
82
  "typedoc-plugin-missing-exports": "^3.1.0",