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.
- package/dist/index.cjs +189 -205
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.esm.js +189 -205
- package/dist/index.esm.js.map +1 -1
- package/dist/types/src/Components/AppShell/AppShell.d.ts +2 -1
- package/dist/types/src/Components/AppShell/SetAppState.d.ts +2 -1
- package/dist/types/src/Components/AppShell/UserControl.d.ts +1 -0
- package/dist/types/src/Components/AppShell/hooks/useAppState.d.ts +1 -0
- package/dist/types/src/Components/AppShell/hooks/useTheme.d.ts +1 -0
- package/dist/types/src/Components/Templates/ThemeControl.d.ts +1 -0
- package/package.json +4 -4
@@ -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;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const UserControl: () => import("react/jsx-runtime").JSX.Element;
|
@@ -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.
|
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": "^
|
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": "^
|
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",
|