@vertigis/react-ui 11.17.0 → 11.17.1

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/Button/index.d.ts CHANGED
@@ -1,2 +1,3 @@
1
+ export type { default as GreyTheme } from "../styles/themeAugmentation.js";
1
2
  export { default } from "@mui/material/Button";
2
3
  export * from "@mui/material/Button";
@@ -1,2 +1,3 @@
1
+ export type { default as GreyTheme } from "../styles/themeAugmentation.js";
1
2
  export { default } from "@mui/material/ButtonGroup";
2
3
  export * from "@mui/material/ButtonGroup";
@@ -1,6 +1,7 @@
1
1
  import type { ButtonBaseClasses } from "@mui/material/ButtonBase";
2
2
  import type { IconButtonProps as MUIIconButtonProps, IconButtonClasses as MUIIconButtonClasses } from "@mui/material/IconButton";
3
3
  import type { OverridableComponent } from "@mui/material/OverridableComponent";
4
+ export type { default as GreyTheme } from "../styles/themeAugmentation.js";
4
5
  export * from "@mui/material/IconButton";
5
6
  export interface IconButtonClasses extends MUIIconButtonClasses, ButtonBaseClasses {
6
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertigis/react-ui",
3
- "version": "11.17.0",
3
+ "version": "11.17.1",
4
4
  "description": "Utilities and React components used in VertiGIS applications.",
5
5
  "keywords": [
6
6
  "vertigis",
@@ -1,4 +1,5 @@
1
1
  import type { Theme, ThemeOptions } from "@mui/material/styles";
2
+ export type { default as GreyTheme } from "./themeAugmentation.js";
2
3
  export type { Theme, ThemeOptions };
3
4
  export interface CreateThemeOptions extends ThemeOptions {
4
5
  /**