@inntechcorp/it-design 3.1.18 → 3.1.19

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.
@@ -1,7 +1,7 @@
1
1
  declare const Wrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
2
2
  declare const Body: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
3
- $minWidth?: number;
4
- $minHeight?: number;
3
+ $minWidth?: number | string;
4
+ $minHeight?: number | string;
5
5
  $hasHeader?: boolean;
6
6
  }>> & string;
7
7
  declare const Header: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
package/dist/global.css CHANGED
@@ -143,4 +143,9 @@ textarea {
143
143
  opacity: 0 !important;
144
144
  transform: translateY(-10px) !important;
145
145
  transition: opacity 250ms, transform 250ms !important;
146
+ }
147
+
148
+ /* Storybook Docs Story Width */
149
+ .docs-story > div > div {
150
+ width: 100%;
146
151
  }