utopia-ui 3.0.93 → 3.0.95
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/ItemsApi.d-D5bfsxpo.d.ts +13 -0
- package/dist/Profile.cjs.js +21090 -0
- package/dist/Profile.cjs.js.map +1 -0
- package/dist/Profile.d.ts +21 -0
- package/dist/Profile.esm.js +21068 -0
- package/dist/Profile.esm.js.map +1 -0
- package/dist/TagView-D8MzLpNR.js +2481 -0
- package/dist/TagView-D8MzLpNR.js.map +1 -0
- package/dist/TagView-nJhkFKCX.js +2568 -0
- package/dist/TagView-nJhkFKCX.js.map +1 -0
- package/dist/index.cjs.js +5097 -0
- package/dist/index.cjs.js.map +1 -0
- package/dist/index.d.ts +2 -30
- package/dist/index.esm.js +3888 -4787
- package/dist/index.esm.js.map +1 -1
- package/dist/types/src/Components/Input/RichTextEditor.d.ts +17 -0
- package/dist/types/src/css.d.ts +1 -0
- package/dist/types/src/index.d.ts +0 -1
- package/package.json +12 -1
- package/dist/index.cjs +0 -6000
- package/dist/index.cjs.map +0 -1
- package/dist/types/src/Components/AppShell/hooks/useAssets.d.ts +0 -12
- package/dist/types/src/Components/Input/TextInput.cy.d.ts +0 -1
- package/dist/types/src/Components/Map/ItemForm.d.ts +0 -13
- package/dist/types/src/Components/Map/ItemView.d.ts +0 -11
- package/dist/types/src/Components/Map/UrlState.d.ts +0 -1
- package/dist/types/src/Components/Map/setItemLocation.d.ts +0 -1
@@ -0,0 +1,17 @@
|
|
1
|
+
interface TextAreaProps {
|
2
|
+
labelTitle?: string;
|
3
|
+
labelStyle?: string;
|
4
|
+
containerStyle?: string;
|
5
|
+
dataField?: string;
|
6
|
+
inputStyle?: string;
|
7
|
+
defaultValue: string;
|
8
|
+
placeholder?: string;
|
9
|
+
required?: boolean;
|
10
|
+
size?: string;
|
11
|
+
updateFormValue?: (value: string) => void;
|
12
|
+
}
|
13
|
+
/**
|
14
|
+
* @category Input
|
15
|
+
*/
|
16
|
+
export declare function RichTextEditor({ labelTitle, dataField, labelStyle, containerStyle, inputStyle, defaultValue, placeholder, required, size, updateFormValue, }: TextAreaProps): import("react/jsx-runtime").JSX.Element;
|
17
|
+
export {};
|
package/dist/types/src/css.d.ts
CHANGED
@@ -2,7 +2,6 @@ import './css';
|
|
2
2
|
export * from './Components/Map';
|
3
3
|
export * from './Components/AppShell';
|
4
4
|
export * from './Components/Auth';
|
5
|
-
export * from './Components/Profile';
|
6
5
|
export * from './Components/Gaming';
|
7
6
|
export * from './Components/Templates';
|
8
7
|
export * from './Components/Input';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "utopia-ui",
|
3
|
-
"version": "3.0.
|
3
|
+
"version": "3.0.95",
|
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/",
|
@@ -12,6 +12,11 @@
|
|
12
12
|
"types": "./dist/index.d.ts",
|
13
13
|
"import": "./dist/index.esm.js",
|
14
14
|
"require": "./dist/index.cjs"
|
15
|
+
},
|
16
|
+
"./Profile": {
|
17
|
+
"types": "./dist/Profile.d.ts",
|
18
|
+
"import": "./dist/Profile.esm.js",
|
19
|
+
"require": "./dist/Profile.cjs.js"
|
15
20
|
}
|
16
21
|
},
|
17
22
|
"type": "module",
|
@@ -42,6 +47,7 @@
|
|
42
47
|
"@tailwindcss/postcss": "^4.0.14",
|
43
48
|
"@testing-library/jest-dom": "^6.6.3",
|
44
49
|
"@testing-library/react": "^16.2.0",
|
50
|
+
"@testing-library/user-event": "^14.6.1",
|
45
51
|
"@types/geojson": "^7946.0.14",
|
46
52
|
"@types/leaflet": "^1.7.11",
|
47
53
|
"@types/leaflet.markercluster": "^1.5.5",
|
@@ -91,10 +97,14 @@
|
|
91
97
|
"react-dom": "^18.2.0"
|
92
98
|
},
|
93
99
|
"dependencies": {
|
100
|
+
"@fortawesome/fontawesome-svg-core": "^6.7.2",
|
101
|
+
"@fortawesome/free-solid-svg-icons": "^6.7.2",
|
94
102
|
"@heroicons/react": "^2.0.17",
|
103
|
+
"@rollup/plugin-commonjs": "^28.0.3",
|
95
104
|
"@tanstack/react-query": "^5.17.8",
|
96
105
|
"axios": "^1.6.5",
|
97
106
|
"date-fns": "^3.3.1",
|
107
|
+
"easymde": "^2.20.0",
|
98
108
|
"leaflet": "^1.9.4",
|
99
109
|
"leaflet.locatecontrol": "^0.79.0",
|
100
110
|
"radash": "^12.1.0",
|
@@ -106,6 +116,7 @@
|
|
106
116
|
"react-markdown": "^9.0.1",
|
107
117
|
"react-photo-album": "^3.0.2",
|
108
118
|
"react-router-dom": "^6.16.0",
|
119
|
+
"react-simplemde-editor": "^5.2.0",
|
109
120
|
"react-toastify": "^9.1.3",
|
110
121
|
"remark-breaks": "^4.0.0",
|
111
122
|
"yet-another-react-lightbox": "^3.21.7"
|