@monolith-forensics/monolith-ui 1.2.106 → 1.2.107
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.
|
@@ -6,7 +6,7 @@ interface InfoComponentProps {
|
|
|
6
6
|
description?: string;
|
|
7
7
|
label?: string | ReactNode;
|
|
8
8
|
}
|
|
9
|
-
export declare const InfoComponent: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<InfoComponentProps, never>> & string & Omit<({ className, children, description, label }: InfoComponentProps) => string | number | bigint | boolean |
|
|
9
|
+
export declare const InfoComponent: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<InfoComponentProps, never>> & string & Omit<({ className, children, description, label }: InfoComponentProps) => string | number | bigint | boolean | Iterable<ReactNode> | Promise<string | number | bigint | boolean | import("react").ReactPortal | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | import("react/jsx-runtime").JSX.Element | null | undefined, keyof import("react").Component<any, {}, any>>;
|
|
10
10
|
interface FieldLabelProps {
|
|
11
11
|
className?: string;
|
|
12
12
|
children?: ReactNode;
|
|
@@ -8,5 +8,5 @@ interface TooltipProps {
|
|
|
8
8
|
align?: "start" | "center" | "end";
|
|
9
9
|
delayDuration?: number;
|
|
10
10
|
}
|
|
11
|
-
declare const Tooltip: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<TooltipProps, never>> & string & Omit<({ className, children, content, side, sideOffset, align, delayDuration, }: TooltipProps) => string | number | bigint | boolean |
|
|
11
|
+
declare const Tooltip: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<TooltipProps, never>> & string & Omit<({ className, children, content, side, sideOffset, align, delayDuration, }: TooltipProps) => string | number | bigint | boolean | Iterable<ReactNode> | Promise<string | number | bigint | boolean | import("react").ReactPortal | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | import("react/jsx-runtime").JSX.Element | null | undefined, keyof import("react").Component<any, {}, any>>;
|
|
12
12
|
export default Tooltip;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
import { MonolithDefaultTheme } from "./MonolithUIProvider";
|
|
2
|
+
declare module "styled-components" {
|
|
3
|
+
interface DefaultTheme extends MonolithDefaultTheme {
|
|
4
|
+
}
|
|
5
|
+
}
|
|
1
6
|
export { default as FormSection } from "./FormSection";
|
|
2
7
|
export { default as Grid } from "./Grid";
|
|
3
8
|
export { default as TextInput } from "./TextInput";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@monolith-forensics/monolith-ui",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.107",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"author": "Matt Danner (Monolith Forensics LLC)",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"scripts": {
|
|
19
19
|
"clean": "rm -r ./dist",
|
|
20
20
|
"build": "tsc",
|
|
21
|
+
"listFiles": "tsc --listFiles",
|
|
21
22
|
"dist-alpha": "yarn build && npm publish --tag alpha-$npm_package_version && yarn clean",
|
|
22
23
|
"dist-beta": "yarn build && npm publish --tag beta-$npm_package_version && yarn clean",
|
|
23
24
|
"release-patch": "yarn version --patch --deferred && yarn build && npm publish && yarn clean",
|