@mapcomponents/react-maplibre 0.1.81 → 0.1.83
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/CHANGELOG.md +6 -0
- package/dist/components/MlNavigationCompass/MlNavigationCompass.d.ts +22 -37
- package/dist/components/MlNavigationTools/MlNavigationTools.cy.d.ts +1 -0
- package/dist/components/MlNavigationTools/MlNavigationTools.d.ts +1 -5
- package/dist/components/MlNavigationTools/MlNavigationTools.stories.d.ts +1 -0
- package/dist/index.d.ts +0 -1
- package/dist/index.esm.js +169 -325
- package/dist/index.esm.js.map +1 -1
- package/dist/ui_components/MapcomponentsTheme.d.ts +16 -1
- package/package.json +2 -2
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
declare module '@mui/material' {
|
|
2
|
+
interface Palette {
|
|
3
|
+
topToolbar: {
|
|
4
|
+
barColor: string;
|
|
5
|
+
};
|
|
6
|
+
navigation: {
|
|
7
|
+
navColor: string;
|
|
8
|
+
navHover: string;
|
|
9
|
+
};
|
|
10
|
+
compass: {
|
|
11
|
+
compColor: string;
|
|
12
|
+
compHover: string;
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
}
|
|
1
16
|
declare module '@mui/material/Button' {
|
|
2
17
|
interface ButtonPropsVariantOverrides {
|
|
3
18
|
navtools: true;
|
|
@@ -5,7 +20,7 @@ declare module '@mui/material/Button' {
|
|
|
5
20
|
}
|
|
6
21
|
declare module '@mui/material' {
|
|
7
22
|
interface ListItemTextProps {
|
|
8
|
-
variant?:
|
|
23
|
+
variant?: 'layerlist';
|
|
9
24
|
}
|
|
10
25
|
}
|
|
11
26
|
declare const getTheme: (mode: 'light' | 'dark') => import("@mui/material").Theme;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mapcomponents/react-maplibre",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.83",
|
|
4
4
|
"main": "dist/index.esm.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -34,7 +34,6 @@
|
|
|
34
34
|
"pako": "^2.1.0",
|
|
35
35
|
"react-color": "^2.19.3",
|
|
36
36
|
"react-moveable": "^0.46.1",
|
|
37
|
-
"sql.js": "^1.8.0",
|
|
38
37
|
"three": "^0.149.0",
|
|
39
38
|
"traverse": "^0.6.7",
|
|
40
39
|
"uuid": "^9.0.0",
|
|
@@ -113,6 +112,7 @@
|
|
|
113
112
|
"rollup-plugin-node-externals": "^5.1.2",
|
|
114
113
|
"rollup-plugin-typescript2": "^0.31.2",
|
|
115
114
|
"showdown": "^2.1.0",
|
|
115
|
+
"sql.js": "^1.8.0",
|
|
116
116
|
"storybook-source-link": "^2.0.4",
|
|
117
117
|
"ts-jest": "^29.0.5",
|
|
118
118
|
"typescript": "^4.9.4",
|