@idea-fragments/react-components-zendesk 0.1.52 → 0.1.53
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/dist/layouts.js +16 -16
- package/dist/layouts.js.map +1 -1
- package/dist/styles.js +1 -1
- package/dist/styles.js.map +1 -1
- package/dist/types/components/layout/OverflowMenu.d.ts +1 -1
- package/dist/types/components/layout/Section.d.ts +3 -3
- package/dist/types/components/layout/Section.d.ts.map +1 -1
- package/dist/types/components/layout/SectionBody.d.ts +4 -1
- package/dist/types/components/layout/SectionBody.d.ts.map +1 -1
- package/dist/types/components/layout/SectionHeader.d.ts +3 -2
- package/dist/types/components/layout/SectionHeader.d.ts.map +1 -1
- package/dist/types/components/tooltips/Tooltip.d.ts +1 -1
- package/dist/types/styles/types.d.ts +1 -0
- package/dist/types/styles/types.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -19,7 +19,7 @@ export declare const OverflowButton: import("styled-components").StyledComponent
|
|
|
19
19
|
primary: boolean;
|
|
20
20
|
iconSize: string;
|
|
21
21
|
as: React.ComponentType<import("components/forms/Button").Props>;
|
|
22
|
-
}, "color" | "primary" | "size" | "data-component-name" | "aria-label" | "
|
|
22
|
+
}, "color" | "primary" | "size" | "data-component-name" | "aria-label" | "compact" | "icon" | "iconSize" | "as">;
|
|
23
23
|
export declare const OverflowMenu: ({ actions, appendToNode, placement }: Props) => JSX.Element;
|
|
24
24
|
export {};
|
|
25
25
|
//# sourceMappingURL=OverflowMenu.d.ts.map
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { ColorProps } from "styles/types";
|
|
1
|
+
import { ColorProps, CSSProp } from "styles/types";
|
|
2
2
|
export declare type SectionProps = {
|
|
3
3
|
bordered?: boolean;
|
|
4
4
|
rounded?: boolean;
|
|
5
5
|
shadowed?: boolean;
|
|
6
|
-
} & ColorProps;
|
|
6
|
+
} & ColorProps & CSSProp;
|
|
7
7
|
export declare const Section: import("styled-components").StyledComponent<"section", import("styled-components").DefaultTheme, {
|
|
8
8
|
bordered?: boolean | undefined;
|
|
9
9
|
rounded?: boolean | undefined;
|
|
10
10
|
shadowed?: boolean | undefined;
|
|
11
|
-
} & ColorProps
|
|
11
|
+
} & ColorProps & CSSProp<any>, never>;
|
|
12
12
|
//# sourceMappingURL=Section.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Section.d.ts","sourceRoot":"","sources":["../../../src/components/layout/Section.tsx"],"names":[],"mappings":"AAEA,OAAO,
|
|
1
|
+
{"version":3,"file":"Section.d.ts","sourceRoot":"","sources":["../../../src/components/layout/Section.tsx"],"names":[],"mappings":"AAEA,OAAO,EACL,UAAU,EACV,OAAO,EACR,MAAsC,cAAc,CAAA;AAErD,oBAAY,YAAY,GAAG;IACE,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,GAAG,UAAU,GAAG,OAAO,CAAA;AAenD,eAAO,MAAM,OAAO;;;;qCAcnB,CAAA"}
|
|
@@ -1,2 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
import { CSSProp } from "styles/types";
|
|
2
|
+
export declare const SectionBody: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
3
|
+
noHorizontalPadding?: boolean | undefined;
|
|
4
|
+
} & CSSProp<any>, never>;
|
|
2
5
|
//# sourceMappingURL=SectionBody.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SectionBody.d.ts","sourceRoot":"","sources":["../../../src/components/layout/SectionBody.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SectionBody.d.ts","sourceRoot":"","sources":["../../../src/components/layout/SectionBody.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAU,cAAc,CAAA;AAW1C,eAAO,MAAM,WAAW;;wBAUvB,CAAA"}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { PropsWithChildren, ReactNode } from "react";
|
|
2
|
+
import { CSSProp } from "styles/types";
|
|
2
3
|
export declare type SectionHeaderProps = PropsWithChildren<{
|
|
3
4
|
actions?: ReactNode;
|
|
4
5
|
bordered?: boolean;
|
|
5
6
|
caption?: ReactNode;
|
|
6
7
|
title?: ReactNode;
|
|
7
|
-
}
|
|
8
|
-
export declare const SectionHeader: import("styled-components").StyledComponent<({ actions, bordered, children,
|
|
8
|
+
}> & CSSProp;
|
|
9
|
+
export declare const SectionHeader: import("styled-components").StyledComponent<({ actions, bordered, caption, children, className, title, }: SectionHeaderProps) => JSX.Element, import("styled-components").DefaultTheme, {}, never>;
|
|
9
10
|
//# sourceMappingURL=SectionHeader.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SectionHeader.d.ts","sourceRoot":"","sources":["../../../src/components/layout/SectionHeader.tsx"],"names":[],"mappings":"AACA,OAAO,EACL,iBAAiB,EACjB,SAAS,EACV,MAA2B,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"SectionHeader.d.ts","sourceRoot":"","sources":["../../../src/components/layout/SectionHeader.tsx"],"names":[],"mappings":"AACA,OAAO,EACL,iBAAiB,EACjB,SAAS,EACV,MAA2B,OAAO,CAAA;AAEnC,OAAO,EAAE,OAAO,EAAE,MAAU,cAAc,CAAA;AAE1C,oBAAY,kBAAkB,GAAG,iBAAiB,CAAC;IACjD,OAAO,CAAC,EAAE,SAAS,CAAC;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,SAAS,CAAC;IACpB,KAAK,CAAC,EAAE,SAAS,CAAC;CACnB,CAAC,GAAG,OAAO,CAAA;AAEZ,eAAO,MAAM,aAAa,4GAOc,kBAAkB,KAAG,WAAW,sDAUvE,CAAA"}
|
|
@@ -17,7 +17,7 @@ export declare const Tooltip: import("styled-components").StyledComponent<{
|
|
|
17
17
|
eventsEnabled: import("prop-types").Requireable<boolean>;
|
|
18
18
|
id: import("prop-types").Requireable<string>;
|
|
19
19
|
content: import("prop-types").Validator<string | number | boolean | import("prop-types").ReactElementLike | import("prop-types").ReactNodeArray>;
|
|
20
|
-
placement: import("prop-types").Requireable<"top" | "bottom" | "
|
|
20
|
+
placement: import("prop-types").Requireable<"top" | "bottom" | "start" | "end" | "auto" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "end-top" | "end-bottom" | "start-top" | "start-bottom">;
|
|
21
21
|
popperModifiers: import("prop-types").Requireable<any>;
|
|
22
22
|
size: import("prop-types").Requireable<"small" | "large" | "medium" | "extra-large">;
|
|
23
23
|
type: import("prop-types").Requireable<"dark" | "light">;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/styles/types.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/styles/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,0BAA0B,EAAE,MAAM,mBAAmB,CAAA;AAE9D,oBAAY,UAAU,GAAG;IACvB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAA;AAED,oBAAY,cAAc,GAAG;IAC3B,IAAI,CAAC,EAAE,GAAG,CAAC;IACX,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,SAAS,CAAC,EAAE,GAAG,CAAC;CACjB,CAAA;AAED,oBAAY,GAAG,CAAC,CAAC,GAAG,GAAG,IAAI,0BAA0B,GAAG,MAAM,GAAG,CAAC,CAAA;AAElE,oBAAY,OAAO,CAAC,CAAC,GAAG,GAAG,IAAI;IAC7B,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAA"}
|