@monolith-forensics/monolith-ui 1.2.38 → 1.2.40

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,7 +3,7 @@ import { Size } from "../core";
3
3
  interface FormSectionProps {
4
4
  children?: ReactNode;
5
5
  className?: string;
6
- title?: string;
6
+ title?: string | ReactNode;
7
7
  open?: boolean;
8
8
  defaultOpen?: boolean;
9
9
  onOpenChange?: (open: boolean) => void;
@@ -1,5 +1,5 @@
1
1
  import { DefaultTheme } from "styled-components";
2
- export * from "styled-components";
2
+ export { styled, useTheme, createGlobalStyle, css } from "styled-components";
3
3
  import { Themes } from "../theme";
4
4
  import React from "react";
5
5
  import typography from "../theme/typography";
@@ -1,7 +1,7 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import merge from "deepmerge";
3
3
  import { ThemeProvider } from "styled-components";
4
- export * from "styled-components";
4
+ export { styled, useTheme, createGlobalStyle, css } from "styled-components";
5
5
  import { Themes, getTheme } from "../theme";
6
6
  import { createContext, useEffect, useState } from "react";
7
7
  import GlobalStyle from "./GlobalStyle";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monolith-forensics/monolith-ui",
3
- "version": "1.2.38",
3
+ "version": "1.2.40",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "author": "Matt Danner (Monolith Forensics LLC)",