@helpscout/ui-kit-react 0.3.1 → 0.4.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/dist/lib/components/side-panel/components/side-panel.content.d.ts +8 -0
- package/dist/lib/components/side-panel/components/side-panel.content.d.ts.map +1 -0
- package/dist/lib/components/side-panel/components/side-panel.content.test.d.ts +2 -0
- package/dist/lib/components/side-panel/components/side-panel.content.test.d.ts.map +1 -0
- package/dist/lib/components/side-panel/components/side-panel.footer.d.ts +27 -0
- package/dist/lib/components/side-panel/components/side-panel.footer.d.ts.map +1 -0
- package/dist/lib/components/side-panel/components/side-panel.footer.test.d.ts +2 -0
- package/dist/lib/components/side-panel/components/side-panel.footer.test.d.ts.map +1 -0
- package/dist/lib/components/side-panel/components/side-panel.header.d.ts +14 -0
- package/dist/lib/components/side-panel/components/side-panel.header.d.ts.map +1 -0
- package/dist/lib/components/side-panel/components/side-panel.header.test.d.ts +2 -0
- package/dist/lib/components/side-panel/components/side-panel.header.test.d.ts.map +1 -0
- package/dist/lib/components/side-panel/components/tooltip/tooltip.d.ts +9 -0
- package/dist/lib/components/side-panel/components/tooltip/tooltip.d.ts.map +1 -0
- package/dist/lib/components/side-panel/components/tooltip/tooltip.test.d.ts +2 -0
- package/dist/lib/components/side-panel/components/tooltip/tooltip.test.d.ts.map +1 -0
- package/dist/lib/components/side-panel/index.d.ts +4 -0
- package/dist/lib/components/side-panel/index.d.ts.map +1 -0
- package/dist/lib/components/side-panel/side-panel.context.d.ts +15 -0
- package/dist/lib/components/side-panel/side-panel.context.d.ts.map +1 -0
- package/dist/lib/components/side-panel/side-panel.d.ts +17 -0
- package/dist/lib/components/side-panel/side-panel.d.ts.map +1 -0
- package/dist/lib/components/side-panel/side-panel.hooks.d.ts +3 -0
- package/dist/lib/components/side-panel/side-panel.hooks.d.ts.map +1 -0
- package/dist/lib/components/side-panel/side-panel.test.d.ts +2 -0
- package/dist/lib/components/side-panel/side-panel.test.d.ts.map +1 -0
- package/dist/lib/components/side-panel/side-panel.utils.d.ts +21 -0
- package/dist/lib/components/side-panel/side-panel.utils.d.ts.map +1 -0
- package/dist/lib/ui-kit-react.d.ts +1 -0
- package/dist/lib/ui-kit-react.d.ts.map +1 -1
- package/dist/prop-types.json +410 -0
- package/dist/ui-kit-react.css +1 -1
- package/dist/ui-kit-react.js +12701 -12400
- package/dist/ui-kit-react.umd.cjs +54 -54
- package/package.json +3 -3
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export interface SidePanelContentProps {
|
|
3
|
+
children?: React.ReactNode;
|
|
4
|
+
className?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SidePanelContent: React.FunctionComponent<SidePanelContentProps>;
|
|
7
|
+
export default SidePanelContent;
|
|
8
|
+
//# sourceMappingURL=side-panel.content.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"side-panel.content.d.ts","sourceRoot":"","sources":["../../../../../lib/components/side-panel/components/side-panel.content.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAQ1B,MAAM,WAAW,qBAAqB;IACpC,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,QAAA,MAAM,gBAAgB,EAAE,KAAK,CAAC,iBAAiB,CAAC,qBAAqB,CAsBpE,CAAC;AAEF,eAAe,gBAAgB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"side-panel.content.test.d.ts","sourceRoot":"","sources":["../../../../../lib/components/side-panel/components/side-panel.content.test.tsx"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export type ButtonVariants = "primary" | "secondary" | "tertiary" | "critical";
|
|
3
|
+
export interface FooterProps extends Omit<React.ComponentPropsWithoutRef<"div">, "children"> {
|
|
4
|
+
/** The button label to be used for the primary Side Panel footer button. */
|
|
5
|
+
buttonLabel: string;
|
|
6
|
+
/** The function to be called when the Side Panel footer primary button is clicked. */
|
|
7
|
+
onButtonClick?: () => void;
|
|
8
|
+
/** The theme to be used for the Side Panel primary footer button. */
|
|
9
|
+
buttonVariant?: "primary" | "secondary";
|
|
10
|
+
/** Whether the primary button is disabled or not. */
|
|
11
|
+
buttonDisabled?: boolean;
|
|
12
|
+
/** The tooltip displayed on the primary button if it is disabled */
|
|
13
|
+
buttonTooltip?: string;
|
|
14
|
+
/** The button label to be used for the Side Panel secondary footer button. */
|
|
15
|
+
secondaryButtonLabel?: string;
|
|
16
|
+
/** The function to be called when the Side Panel footer secondary button is clicked. */
|
|
17
|
+
onSecondaryButtonClick?: () => void;
|
|
18
|
+
/** The theme to be used for the Side Panel secondary footer button. */
|
|
19
|
+
secondaryButtonVariant?: ButtonVariants;
|
|
20
|
+
/** Whether the secondary button is disabled or not. */
|
|
21
|
+
secondaryButtonDisabled?: boolean;
|
|
22
|
+
/** The tooltip displayed on the secondary button if it is disabled */
|
|
23
|
+
secondaryButtonTooltip?: string;
|
|
24
|
+
}
|
|
25
|
+
declare const SidePanelFooter: React.FunctionComponent<Readonly<FooterProps>>;
|
|
26
|
+
export default SidePanelFooter;
|
|
27
|
+
//# sourceMappingURL=side-panel.footer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"side-panel.footer.d.ts","sourceRoot":"","sources":["../../../../../lib/components/side-panel/components/side-panel.footer.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAQ1B,MAAM,MAAM,cAAc,GAAG,SAAS,GAAG,WAAW,GAAG,UAAU,GAAG,UAAU,CAAC;AAE/E,MAAM,WAAW,WACf,SAAQ,IAAI,CAAC,KAAK,CAAC,wBAAwB,CAAC,KAAK,CAAC,EAAE,UAAU,CAAC;IAC/D,4EAA4E;IAC5E,WAAW,EAAE,MAAM,CAAC;IACpB,sFAAsF;IACtF,aAAa,CAAC,EAAE,MAAM,IAAI,CAAC;IAC3B,qEAAqE;IACrE,aAAa,CAAC,EAAE,SAAS,GAAG,WAAW,CAAC;IACxC,sDAAsD;IACtD,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,oEAAoE;IACpE,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,8EAA8E;IAC9E,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,wFAAwF;IACxF,sBAAsB,CAAC,EAAE,MAAM,IAAI,CAAC;IACpC,uEAAuE;IACvE,sBAAsB,CAAC,EAAE,cAAc,CAAC;IACxC,wDAAwD;IACxD,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC,sEAAsE;IACtE,sBAAsB,CAAC,EAAE,MAAM,CAAC;CAEjC;AAED,QAAA,MAAM,eAAe,EAAE,KAAK,CAAC,iBAAiB,CAAC,QAAQ,CAAC,WAAW,CAAC,CAyEnE,CAAC;AAEF,eAAe,eAAe,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"side-panel.footer.test.d.ts","sourceRoot":"","sources":["../../../../../lib/components/side-panel/components/side-panel.footer.test.tsx"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export interface HeaderProps extends Omit<React.ComponentPropsWithoutRef<"div">, "children"> {
|
|
3
|
+
/** The subtitle that will display within the Side Panel header. */
|
|
4
|
+
subtitle?: string;
|
|
5
|
+
/** The title that will display within the Side Panel header. */
|
|
6
|
+
title?: string;
|
|
7
|
+
/** The function that is called to navigate back to another view */
|
|
8
|
+
goBack?: () => void;
|
|
9
|
+
/** The href for an external link */
|
|
10
|
+
externalLink?: string;
|
|
11
|
+
}
|
|
12
|
+
declare const SidePanelHeader: React.FC<HeaderProps>;
|
|
13
|
+
export default SidePanelHeader;
|
|
14
|
+
//# sourceMappingURL=side-panel.header.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"side-panel.header.d.ts","sourceRoot":"","sources":["../../../../../lib/components/side-panel/components/side-panel.header.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAM1B,MAAM,WAAW,WACf,SAAQ,IAAI,CAAC,KAAK,CAAC,wBAAwB,CAAC,KAAK,CAAC,EAAE,UAAU,CAAC;IAC/D,mEAAmE;IACnE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,gEAAgE;IAChE,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,mEAAmE;IACnE,MAAM,CAAC,EAAE,MAAM,IAAI,CAAC;IACpB,oCAAoC;IACpC,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAyDD,QAAA,MAAM,eAAe,EAAE,KAAK,CAAC,EAAE,CAAC,WAAW,CAyC1C,CAAC;AAEF,eAAe,eAAe,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"side-panel.header.test.d.ts","sourceRoot":"","sources":["../../../../../lib/components/side-panel/components/side-panel.header.test.tsx"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { PropsWithChildren } from "react";
|
|
2
|
+
type Props = PropsWithChildren<{
|
|
3
|
+
placement?: "start" | "center" | "end";
|
|
4
|
+
title: string | JSX.Element;
|
|
5
|
+
className?: string;
|
|
6
|
+
}>;
|
|
7
|
+
export declare const Tooltip: ({ children, title, placement, className, }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
9
|
+
//# sourceMappingURL=tooltip.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tooltip.d.ts","sourceRoot":"","sources":["../../../../../../lib/components/side-panel/components/tooltip/tooltip.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAY,MAAM,OAAO,CAAC;AAIpD,KAAK,KAAK,GAAG,iBAAiB,CAAC;IAC7B,SAAS,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,KAAK,CAAC;IACvC,KAAK,EAAE,MAAM,GAAG,GAAG,CAAC,OAAO,CAAC;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC,CAAC;AAEH,eAAO,MAAM,OAAO,+CAKjB,KAAK,4CAoCP,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tooltip.test.d.ts","sourceRoot":"","sources":["../../../../../../lib/components/side-panel/components/tooltip/tooltip.test.tsx"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../lib/components/side-panel/index.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,cAAc,CAAC;AAErC,cAAc,cAAc,CAAC;AAC7B,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export interface SidePanelContextType {
|
|
3
|
+
stickyFooter: boolean;
|
|
4
|
+
hasFooterOverflow: boolean;
|
|
5
|
+
setHasFooterOverflow: (hasOverflow: boolean) => void;
|
|
6
|
+
}
|
|
7
|
+
export declare const SidePanelContext: import("react").Context<SidePanelContextType>;
|
|
8
|
+
interface SidePanelContextProviderProps {
|
|
9
|
+
children: React.ReactNode;
|
|
10
|
+
stickyFooter?: boolean;
|
|
11
|
+
}
|
|
12
|
+
export declare function SidePanelContextProvider({ children, stickyFooter, }: SidePanelContextProviderProps): import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export declare const useSidePanelContext: () => SidePanelContextType;
|
|
14
|
+
export {};
|
|
15
|
+
//# sourceMappingURL=side-panel.context.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"side-panel.context.d.ts","sourceRoot":"","sources":["../../../../lib/components/side-panel/side-panel.context.tsx"],"names":[],"mappings":";AAEA,MAAM,WAAW,oBAAoB;IACnC,YAAY,EAAE,OAAO,CAAC;IACtB,iBAAiB,EAAE,OAAO,CAAC;IAC3B,oBAAoB,EAAE,CAAC,WAAW,EAAE,OAAO,KAAK,IAAI,CAAC;CACtD;AAED,eAAO,MAAM,gBAAgB,+CAI3B,CAAC;AAEH,UAAU,6BAA6B;IACrC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB;AAED,wBAAgB,wBAAwB,CAAC,EACvC,QAAQ,EACR,YAAmB,GACpB,EAAE,6BAA6B,2CAc/B;AAED,eAAO,MAAM,mBAAmB,QAAO,oBAEtC,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export interface SidePanelProps extends React.ComponentPropsWithoutRef<"div"> {
|
|
3
|
+
/** Custom class names to be added to the component. */
|
|
4
|
+
className?: string;
|
|
5
|
+
/** Whether the footer should be sticky to the bottom of the Side Panel. */
|
|
6
|
+
stickyFooter?: boolean;
|
|
7
|
+
/** Component children. */
|
|
8
|
+
children: React.ReactNode;
|
|
9
|
+
}
|
|
10
|
+
export declare const SidePanel: {
|
|
11
|
+
({ children, className, stickyFooter, ...rest }: SidePanelProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
Header: React.FC<import("./components/side-panel.header").HeaderProps>;
|
|
13
|
+
Content: React.FunctionComponent<import("./components/side-panel.content").SidePanelContentProps>;
|
|
14
|
+
Footer: React.FunctionComponent<Readonly<import("./components/side-panel.footer").FooterProps>>;
|
|
15
|
+
};
|
|
16
|
+
export default SidePanel;
|
|
17
|
+
//# sourceMappingURL=side-panel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"side-panel.d.ts","sourceRoot":"","sources":["../../../../lib/components/side-panel/side-panel.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAW1B,MAAM,WAAW,cAAe,SAAQ,KAAK,CAAC,wBAAwB,CAAC,KAAK,CAAC;IAC3E,uDAAuD;IACvD,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,2EAA2E;IAC3E,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,0BAA0B;IAC1B,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B;AAED,eAAO,MAAM,SAAS;qDAKnB,cAAc;;;;CAYhB,CAAC;AAMF,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"side-panel.hooks.d.ts","sourceRoot":"","sources":["../../../../lib/components/side-panel/side-panel.hooks.tsx"],"names":[],"mappings":";AAIA,eAAO,MAAM,mBAAmB,+DAqC/B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"side-panel.test.d.ts","sourceRoot":"","sources":["../../../../lib/components/side-panel/side-panel.test.tsx"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export declare const ALLOWED_USER_PROPS: string[];
|
|
2
|
+
export declare const allowedPropsWithTypes: {
|
|
3
|
+
id: string;
|
|
4
|
+
role: string;
|
|
5
|
+
style: string;
|
|
6
|
+
title: string;
|
|
7
|
+
tabIndex: string;
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* Filters React props to leave only allowed props.
|
|
11
|
+
* The allowed props are listed above in ALLOWED_USER_PROPS
|
|
12
|
+
*
|
|
13
|
+
* @param {Object} props The props to filter.
|
|
14
|
+
* @returns {Object} Allowed props.
|
|
15
|
+
*/
|
|
16
|
+
export declare function getValidProps(props: {
|
|
17
|
+
[x: string]: unknown;
|
|
18
|
+
}): {
|
|
19
|
+
[key: string]: unknown;
|
|
20
|
+
};
|
|
21
|
+
//# sourceMappingURL=side-panel.utils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"side-panel.utils.d.ts","sourceRoot":"","sources":["../../../../lib/components/side-panel/side-panel.utils.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,kBAAkB,EAAE,MAAM,EAMtC,CAAC;AAEF,eAAO,MAAM,qBAAqB;;;;;;CAMjC,CAAC;AAUF;;;;;;GAMG;AACH,wBAAgB,aAAa,CAAC,KAAK,EAAE;IAAE,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAA;CAAE;;EAU5D"}
|
|
@@ -11,6 +11,7 @@ export { Menu, MenuItem, MenuTrigger, type MenuProps, } from "./components/menu/
|
|
|
11
11
|
export { Modal, ModalContent, type ModalProps, ModalTrigger, } from "./components/modal/modal";
|
|
12
12
|
export { NumberField, type NumberFieldProps, } from "./components/number-field/number-field";
|
|
13
13
|
export { Select, SelectItem, type SelectProps, type ListBoxRenderProps, } from "./components/select/select";
|
|
14
|
+
export { SidePanel, type SidePanelProps } from "./components/side-panel";
|
|
14
15
|
export { Text, type TextProps, type TextVariantProps, } from "./components/text/text";
|
|
15
16
|
export { TextArea, type TextAreaProps, type TextAreaVariantProps, } from "./components/text-area/text-area";
|
|
16
17
|
export { TextAreaField, type TextAreaFieldProps, } from "./components/text-area-field/text-area-field";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ui-kit-react.d.ts","sourceRoot":"","sources":["../../lib/ui-kit-react.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,EACL,KAAK,UAAU,EACf,KAAK,iBAAiB,GACvB,MAAM,0BAA0B,CAAC;AAClC,OAAO,EACL,MAAM,EACN,KAAK,WAAW,EAChB,KAAK,kBAAkB,GACxB,MAAM,4BAA4B,CAAC;AACpC,OAAO,EACL,WAAW,EACX,eAAe,EACf,KAAK,gBAAgB,EACrB,KAAK,oBAAoB,GAC1B,MAAM,wCAAwC,CAAC;AAChD,OAAO,EAAE,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,8BAA8B,CAAC;AAC1E,OAAO,EACL,IAAI,EACJ,KAAK,SAAS,EACd,KAAK,gBAAgB,GACtB,MAAM,wBAAwB,CAAC;AAChC,OAAO,EACL,KAAK,EACL,KAAK,UAAU,EACf,KAAK,iBAAiB,GACvB,MAAM,0BAA0B,CAAC;AAClC,OAAO,EACL,KAAK,EACL,gBAAgB,EAChB,UAAU,EACV,KAAK,UAAU,EACf,KAAK,iBAAiB,EACtB,KAAK,qBAAqB,EAC1B,KAAK,eAAe,GACrB,MAAM,0BAA0B,CAAC;AAClC,OAAO,EACL,IAAI,EACJ,KAAK,SAAS,EACd,KAAK,gBAAgB,GACtB,MAAM,wBAAwB,CAAC;AAChC,OAAO,EACL,IAAI,EACJ,QAAQ,EACR,KAAK,SAAS,EACd,KAAK,gBAAgB,GACtB,MAAM,wBAAwB,CAAC;AAChC,OAAO,EACL,IAAI,EACJ,QAAQ,EACR,WAAW,EACX,KAAK,SAAS,GACf,MAAM,wBAAwB,CAAC;AAChC,OAAO,EACL,KAAK,EACL,YAAY,EACZ,KAAK,UAAU,EACf,YAAY,GACb,MAAM,0BAA0B,CAAC;AAClC,OAAO,EACL,WAAW,EACX,KAAK,gBAAgB,GACtB,MAAM,wCAAwC,CAAC;AAChD,OAAO,EACL,MAAM,EACN,UAAU,EACV,KAAK,WAAW,EAChB,KAAK,kBAAkB,GACxB,MAAM,4BAA4B,CAAC;AACpC,OAAO,EACL,IAAI,EACJ,KAAK,SAAS,EACd,KAAK,gBAAgB,GACtB,MAAM,wBAAwB,CAAC;AAChC,OAAO,EACL,QAAQ,EACR,KAAK,aAAa,EAClB,KAAK,oBAAoB,GAC1B,MAAM,kCAAkC,CAAC;AAC1C,OAAO,EACL,aAAa,EACb,KAAK,kBAAkB,GACxB,MAAM,8CAA8C,CAAC;AACtD,OAAO,EACL,SAAS,EACT,KAAK,cAAc,GACpB,MAAM,oCAAoC,CAAC;AAC5C,OAAO,EAAE,KAAK,EAAE,KAAK,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAClE,OAAO,EACL,SAAS,EACT,KAAK,cAAc,EACnB,KAAK,qBAAqB,GAC3B,MAAM,kCAAkC,CAAC;AAC1C,OAAO,EAAE,YAAY,EAAE,MAAM,mCAAmC,CAAC;AACjE,OAAO,EACL,eAAe,EACf,KAAK,oBAAoB,EACzB,KAAK,2BAA2B,GACjC,MAAM,gDAAgD,CAAC"}
|
|
1
|
+
{"version":3,"file":"ui-kit-react.d.ts","sourceRoot":"","sources":["../../lib/ui-kit-react.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,EACL,KAAK,UAAU,EACf,KAAK,iBAAiB,GACvB,MAAM,0BAA0B,CAAC;AAClC,OAAO,EACL,MAAM,EACN,KAAK,WAAW,EAChB,KAAK,kBAAkB,GACxB,MAAM,4BAA4B,CAAC;AACpC,OAAO,EACL,WAAW,EACX,eAAe,EACf,KAAK,gBAAgB,EACrB,KAAK,oBAAoB,GAC1B,MAAM,wCAAwC,CAAC;AAChD,OAAO,EAAE,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,8BAA8B,CAAC;AAC1E,OAAO,EACL,IAAI,EACJ,KAAK,SAAS,EACd,KAAK,gBAAgB,GACtB,MAAM,wBAAwB,CAAC;AAChC,OAAO,EACL,KAAK,EACL,KAAK,UAAU,EACf,KAAK,iBAAiB,GACvB,MAAM,0BAA0B,CAAC;AAClC,OAAO,EACL,KAAK,EACL,gBAAgB,EAChB,UAAU,EACV,KAAK,UAAU,EACf,KAAK,iBAAiB,EACtB,KAAK,qBAAqB,EAC1B,KAAK,eAAe,GACrB,MAAM,0BAA0B,CAAC;AAClC,OAAO,EACL,IAAI,EACJ,KAAK,SAAS,EACd,KAAK,gBAAgB,GACtB,MAAM,wBAAwB,CAAC;AAChC,OAAO,EACL,IAAI,EACJ,QAAQ,EACR,KAAK,SAAS,EACd,KAAK,gBAAgB,GACtB,MAAM,wBAAwB,CAAC;AAChC,OAAO,EACL,IAAI,EACJ,QAAQ,EACR,WAAW,EACX,KAAK,SAAS,GACf,MAAM,wBAAwB,CAAC;AAChC,OAAO,EACL,KAAK,EACL,YAAY,EACZ,KAAK,UAAU,EACf,YAAY,GACb,MAAM,0BAA0B,CAAC;AAClC,OAAO,EACL,WAAW,EACX,KAAK,gBAAgB,GACtB,MAAM,wCAAwC,CAAC;AAChD,OAAO,EACL,MAAM,EACN,UAAU,EACV,KAAK,WAAW,EAChB,KAAK,kBAAkB,GACxB,MAAM,4BAA4B,CAAC;AACpC,OAAO,EAAE,SAAS,EAAE,KAAK,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACzE,OAAO,EACL,IAAI,EACJ,KAAK,SAAS,EACd,KAAK,gBAAgB,GACtB,MAAM,wBAAwB,CAAC;AAChC,OAAO,EACL,QAAQ,EACR,KAAK,aAAa,EAClB,KAAK,oBAAoB,GAC1B,MAAM,kCAAkC,CAAC;AAC1C,OAAO,EACL,aAAa,EACb,KAAK,kBAAkB,GACxB,MAAM,8CAA8C,CAAC;AACtD,OAAO,EACL,SAAS,EACT,KAAK,cAAc,GACpB,MAAM,oCAAoC,CAAC;AAC5C,OAAO,EAAE,KAAK,EAAE,KAAK,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAClE,OAAO,EACL,SAAS,EACT,KAAK,cAAc,EACnB,KAAK,qBAAqB,GAC3B,MAAM,kCAAkC,CAAC;AAC1C,OAAO,EAAE,YAAY,EAAE,MAAM,mCAAmC,CAAC;AACjE,OAAO,EACL,eAAe,EACf,KAAK,oBAAoB,EACzB,KAAK,2BAA2B,GACjC,MAAM,gDAAgD,CAAC"}
|
package/dist/prop-types.json
CHANGED
|
@@ -4810,6 +4810,416 @@
|
|
|
4810
4810
|
}
|
|
4811
4811
|
}
|
|
4812
4812
|
},
|
|
4813
|
+
"sidepanelfooter": {
|
|
4814
|
+
"buttonLabel": {
|
|
4815
|
+
"defaultValue": null,
|
|
4816
|
+
"description": "The button label to be used for the primary Side Panel footer button.",
|
|
4817
|
+
"name": "buttonLabel",
|
|
4818
|
+
"parent": {
|
|
4819
|
+
"fileName": "ui-kit-react/lib/components/side-panel/components/side-panel.footer.tsx",
|
|
4820
|
+
"name": "FooterProps"
|
|
4821
|
+
},
|
|
4822
|
+
"declarations": [
|
|
4823
|
+
{
|
|
4824
|
+
"fileName": "ui-kit-react/lib/components/side-panel/components/side-panel.footer.tsx",
|
|
4825
|
+
"name": "FooterProps"
|
|
4826
|
+
}
|
|
4827
|
+
],
|
|
4828
|
+
"required": true,
|
|
4829
|
+
"type": {
|
|
4830
|
+
"name": "string"
|
|
4831
|
+
}
|
|
4832
|
+
},
|
|
4833
|
+
"onButtonClick": {
|
|
4834
|
+
"defaultValue": null,
|
|
4835
|
+
"description": "The function to be called when the Side Panel footer primary button is clicked.",
|
|
4836
|
+
"name": "onButtonClick",
|
|
4837
|
+
"parent": {
|
|
4838
|
+
"fileName": "ui-kit-react/lib/components/side-panel/components/side-panel.footer.tsx",
|
|
4839
|
+
"name": "FooterProps"
|
|
4840
|
+
},
|
|
4841
|
+
"declarations": [
|
|
4842
|
+
{
|
|
4843
|
+
"fileName": "ui-kit-react/lib/components/side-panel/components/side-panel.footer.tsx",
|
|
4844
|
+
"name": "FooterProps"
|
|
4845
|
+
}
|
|
4846
|
+
],
|
|
4847
|
+
"required": false,
|
|
4848
|
+
"type": {
|
|
4849
|
+
"name": "() => void"
|
|
4850
|
+
}
|
|
4851
|
+
},
|
|
4852
|
+
"buttonVariant": {
|
|
4853
|
+
"defaultValue": {
|
|
4854
|
+
"value": "primary"
|
|
4855
|
+
},
|
|
4856
|
+
"description": "The theme to be used for the Side Panel primary footer button.",
|
|
4857
|
+
"name": "buttonVariant",
|
|
4858
|
+
"parent": {
|
|
4859
|
+
"fileName": "ui-kit-react/lib/components/side-panel/components/side-panel.footer.tsx",
|
|
4860
|
+
"name": "FooterProps"
|
|
4861
|
+
},
|
|
4862
|
+
"declarations": [
|
|
4863
|
+
{
|
|
4864
|
+
"fileName": "ui-kit-react/lib/components/side-panel/components/side-panel.footer.tsx",
|
|
4865
|
+
"name": "FooterProps"
|
|
4866
|
+
}
|
|
4867
|
+
],
|
|
4868
|
+
"required": false,
|
|
4869
|
+
"type": {
|
|
4870
|
+
"name": "\"primary\" | \"secondary\""
|
|
4871
|
+
}
|
|
4872
|
+
},
|
|
4873
|
+
"buttonDisabled": {
|
|
4874
|
+
"defaultValue": {
|
|
4875
|
+
"value": false
|
|
4876
|
+
},
|
|
4877
|
+
"description": "Whether the primary button is disabled or not.",
|
|
4878
|
+
"name": "buttonDisabled",
|
|
4879
|
+
"parent": {
|
|
4880
|
+
"fileName": "ui-kit-react/lib/components/side-panel/components/side-panel.footer.tsx",
|
|
4881
|
+
"name": "FooterProps"
|
|
4882
|
+
},
|
|
4883
|
+
"declarations": [
|
|
4884
|
+
{
|
|
4885
|
+
"fileName": "ui-kit-react/lib/components/side-panel/components/side-panel.footer.tsx",
|
|
4886
|
+
"name": "FooterProps"
|
|
4887
|
+
}
|
|
4888
|
+
],
|
|
4889
|
+
"required": false,
|
|
4890
|
+
"type": {
|
|
4891
|
+
"name": "boolean"
|
|
4892
|
+
}
|
|
4893
|
+
},
|
|
4894
|
+
"buttonTooltip": {
|
|
4895
|
+
"defaultValue": {
|
|
4896
|
+
"value": ""
|
|
4897
|
+
},
|
|
4898
|
+
"description": "The tooltip displayed on the primary button if it is disabled",
|
|
4899
|
+
"name": "buttonTooltip",
|
|
4900
|
+
"parent": {
|
|
4901
|
+
"fileName": "ui-kit-react/lib/components/side-panel/components/side-panel.footer.tsx",
|
|
4902
|
+
"name": "FooterProps"
|
|
4903
|
+
},
|
|
4904
|
+
"declarations": [
|
|
4905
|
+
{
|
|
4906
|
+
"fileName": "ui-kit-react/lib/components/side-panel/components/side-panel.footer.tsx",
|
|
4907
|
+
"name": "FooterProps"
|
|
4908
|
+
}
|
|
4909
|
+
],
|
|
4910
|
+
"required": false,
|
|
4911
|
+
"type": {
|
|
4912
|
+
"name": "string"
|
|
4913
|
+
}
|
|
4914
|
+
},
|
|
4915
|
+
"secondaryButtonLabel": {
|
|
4916
|
+
"defaultValue": null,
|
|
4917
|
+
"description": "The button label to be used for the Side Panel secondary footer button.",
|
|
4918
|
+
"name": "secondaryButtonLabel",
|
|
4919
|
+
"parent": {
|
|
4920
|
+
"fileName": "ui-kit-react/lib/components/side-panel/components/side-panel.footer.tsx",
|
|
4921
|
+
"name": "FooterProps"
|
|
4922
|
+
},
|
|
4923
|
+
"declarations": [
|
|
4924
|
+
{
|
|
4925
|
+
"fileName": "ui-kit-react/lib/components/side-panel/components/side-panel.footer.tsx",
|
|
4926
|
+
"name": "FooterProps"
|
|
4927
|
+
}
|
|
4928
|
+
],
|
|
4929
|
+
"required": false,
|
|
4930
|
+
"type": {
|
|
4931
|
+
"name": "string"
|
|
4932
|
+
}
|
|
4933
|
+
},
|
|
4934
|
+
"onSecondaryButtonClick": {
|
|
4935
|
+
"defaultValue": null,
|
|
4936
|
+
"description": "The function to be called when the Side Panel footer secondary button is clicked.",
|
|
4937
|
+
"name": "onSecondaryButtonClick",
|
|
4938
|
+
"parent": {
|
|
4939
|
+
"fileName": "ui-kit-react/lib/components/side-panel/components/side-panel.footer.tsx",
|
|
4940
|
+
"name": "FooterProps"
|
|
4941
|
+
},
|
|
4942
|
+
"declarations": [
|
|
4943
|
+
{
|
|
4944
|
+
"fileName": "ui-kit-react/lib/components/side-panel/components/side-panel.footer.tsx",
|
|
4945
|
+
"name": "FooterProps"
|
|
4946
|
+
}
|
|
4947
|
+
],
|
|
4948
|
+
"required": false,
|
|
4949
|
+
"type": {
|
|
4950
|
+
"name": "() => void"
|
|
4951
|
+
}
|
|
4952
|
+
},
|
|
4953
|
+
"secondaryButtonVariant": {
|
|
4954
|
+
"defaultValue": {
|
|
4955
|
+
"value": "secondary"
|
|
4956
|
+
},
|
|
4957
|
+
"description": "The theme to be used for the Side Panel secondary footer button.",
|
|
4958
|
+
"name": "secondaryButtonVariant",
|
|
4959
|
+
"parent": {
|
|
4960
|
+
"fileName": "ui-kit-react/lib/components/side-panel/components/side-panel.footer.tsx",
|
|
4961
|
+
"name": "FooterProps"
|
|
4962
|
+
},
|
|
4963
|
+
"declarations": [
|
|
4964
|
+
{
|
|
4965
|
+
"fileName": "ui-kit-react/lib/components/side-panel/components/side-panel.footer.tsx",
|
|
4966
|
+
"name": "FooterProps"
|
|
4967
|
+
}
|
|
4968
|
+
],
|
|
4969
|
+
"required": false,
|
|
4970
|
+
"type": {
|
|
4971
|
+
"name": "ButtonVariants"
|
|
4972
|
+
}
|
|
4973
|
+
},
|
|
4974
|
+
"secondaryButtonDisabled": {
|
|
4975
|
+
"defaultValue": {
|
|
4976
|
+
"value": false
|
|
4977
|
+
},
|
|
4978
|
+
"description": "Whether the secondary button is disabled or not.",
|
|
4979
|
+
"name": "secondaryButtonDisabled",
|
|
4980
|
+
"parent": {
|
|
4981
|
+
"fileName": "ui-kit-react/lib/components/side-panel/components/side-panel.footer.tsx",
|
|
4982
|
+
"name": "FooterProps"
|
|
4983
|
+
},
|
|
4984
|
+
"declarations": [
|
|
4985
|
+
{
|
|
4986
|
+
"fileName": "ui-kit-react/lib/components/side-panel/components/side-panel.footer.tsx",
|
|
4987
|
+
"name": "FooterProps"
|
|
4988
|
+
}
|
|
4989
|
+
],
|
|
4990
|
+
"required": false,
|
|
4991
|
+
"type": {
|
|
4992
|
+
"name": "boolean"
|
|
4993
|
+
}
|
|
4994
|
+
},
|
|
4995
|
+
"secondaryButtonTooltip": {
|
|
4996
|
+
"defaultValue": {
|
|
4997
|
+
"value": ""
|
|
4998
|
+
},
|
|
4999
|
+
"description": "The tooltip displayed on the secondary button if it is disabled",
|
|
5000
|
+
"name": "secondaryButtonTooltip",
|
|
5001
|
+
"parent": {
|
|
5002
|
+
"fileName": "ui-kit-react/lib/components/side-panel/components/side-panel.footer.tsx",
|
|
5003
|
+
"name": "FooterProps"
|
|
5004
|
+
},
|
|
5005
|
+
"declarations": [
|
|
5006
|
+
{
|
|
5007
|
+
"fileName": "ui-kit-react/lib/components/side-panel/components/side-panel.footer.tsx",
|
|
5008
|
+
"name": "FooterProps"
|
|
5009
|
+
}
|
|
5010
|
+
],
|
|
5011
|
+
"required": false,
|
|
5012
|
+
"type": {
|
|
5013
|
+
"name": "string"
|
|
5014
|
+
}
|
|
5015
|
+
}
|
|
5016
|
+
},
|
|
5017
|
+
"sidepanelheader": {
|
|
5018
|
+
"subtitle": {
|
|
5019
|
+
"defaultValue": {
|
|
5020
|
+
"value": ""
|
|
5021
|
+
},
|
|
5022
|
+
"description": "The subtitle that will display within the Side Panel header.",
|
|
5023
|
+
"name": "subtitle",
|
|
5024
|
+
"parent": {
|
|
5025
|
+
"fileName": "ui-kit-react/lib/components/side-panel/components/side-panel.header.tsx",
|
|
5026
|
+
"name": "HeaderProps"
|
|
5027
|
+
},
|
|
5028
|
+
"declarations": [
|
|
5029
|
+
{
|
|
5030
|
+
"fileName": "ui-kit-react/lib/components/side-panel/components/side-panel.header.tsx",
|
|
5031
|
+
"name": "HeaderProps"
|
|
5032
|
+
}
|
|
5033
|
+
],
|
|
5034
|
+
"required": false,
|
|
5035
|
+
"type": {
|
|
5036
|
+
"name": "string"
|
|
5037
|
+
}
|
|
5038
|
+
},
|
|
5039
|
+
"title": {
|
|
5040
|
+
"defaultValue": {
|
|
5041
|
+
"value": ""
|
|
5042
|
+
},
|
|
5043
|
+
"description": "The title that will display within the Side Panel header.",
|
|
5044
|
+
"name": "title",
|
|
5045
|
+
"parent": {
|
|
5046
|
+
"fileName": "ui-kit-react/lib/components/side-panel/components/side-panel.header.tsx",
|
|
5047
|
+
"name": "HeaderProps"
|
|
5048
|
+
},
|
|
5049
|
+
"declarations": [
|
|
5050
|
+
{
|
|
5051
|
+
"fileName": "ui-kit-react/lib/components/side-panel/components/side-panel.header.tsx",
|
|
5052
|
+
"name": "HeaderProps"
|
|
5053
|
+
}
|
|
5054
|
+
],
|
|
5055
|
+
"required": false,
|
|
5056
|
+
"type": {
|
|
5057
|
+
"name": "string"
|
|
5058
|
+
}
|
|
5059
|
+
},
|
|
5060
|
+
"goBack": {
|
|
5061
|
+
"defaultValue": null,
|
|
5062
|
+
"description": "The function that is called to navigate back to another view",
|
|
5063
|
+
"name": "goBack",
|
|
5064
|
+
"parent": {
|
|
5065
|
+
"fileName": "ui-kit-react/lib/components/side-panel/components/side-panel.header.tsx",
|
|
5066
|
+
"name": "HeaderProps"
|
|
5067
|
+
},
|
|
5068
|
+
"declarations": [
|
|
5069
|
+
{
|
|
5070
|
+
"fileName": "ui-kit-react/lib/components/side-panel/components/side-panel.header.tsx",
|
|
5071
|
+
"name": "HeaderProps"
|
|
5072
|
+
}
|
|
5073
|
+
],
|
|
5074
|
+
"required": false,
|
|
5075
|
+
"type": {
|
|
5076
|
+
"name": "() => void"
|
|
5077
|
+
}
|
|
5078
|
+
},
|
|
5079
|
+
"externalLink": {
|
|
5080
|
+
"defaultValue": {
|
|
5081
|
+
"value": ""
|
|
5082
|
+
},
|
|
5083
|
+
"description": "The href for an external link",
|
|
5084
|
+
"name": "externalLink",
|
|
5085
|
+
"parent": {
|
|
5086
|
+
"fileName": "ui-kit-react/lib/components/side-panel/components/side-panel.header.tsx",
|
|
5087
|
+
"name": "HeaderProps"
|
|
5088
|
+
},
|
|
5089
|
+
"declarations": [
|
|
5090
|
+
{
|
|
5091
|
+
"fileName": "ui-kit-react/lib/components/side-panel/components/side-panel.header.tsx",
|
|
5092
|
+
"name": "HeaderProps"
|
|
5093
|
+
}
|
|
5094
|
+
],
|
|
5095
|
+
"required": false,
|
|
5096
|
+
"type": {
|
|
5097
|
+
"name": "string"
|
|
5098
|
+
}
|
|
5099
|
+
}
|
|
5100
|
+
},
|
|
5101
|
+
"SidePanel": {
|
|
5102
|
+
"className": {
|
|
5103
|
+
"defaultValue": null,
|
|
5104
|
+
"description": "Custom class names to be added to the component.",
|
|
5105
|
+
"name": "className",
|
|
5106
|
+
"parent": {
|
|
5107
|
+
"fileName": "ui-kit-react/lib/components/side-panel/side-panel.tsx",
|
|
5108
|
+
"name": "SidePanelProps"
|
|
5109
|
+
},
|
|
5110
|
+
"declarations": [
|
|
5111
|
+
{
|
|
5112
|
+
"fileName": "ui-kit-react/lib/components/side-panel/side-panel.tsx",
|
|
5113
|
+
"name": "SidePanelProps"
|
|
5114
|
+
}
|
|
5115
|
+
],
|
|
5116
|
+
"required": false,
|
|
5117
|
+
"type": {
|
|
5118
|
+
"name": "string"
|
|
5119
|
+
}
|
|
5120
|
+
},
|
|
5121
|
+
"stickyFooter": {
|
|
5122
|
+
"defaultValue": {
|
|
5123
|
+
"value": true
|
|
5124
|
+
},
|
|
5125
|
+
"description": "Whether the footer should be sticky to the bottom of the Side Panel.",
|
|
5126
|
+
"name": "stickyFooter",
|
|
5127
|
+
"parent": {
|
|
5128
|
+
"fileName": "ui-kit-react/lib/components/side-panel/side-panel.tsx",
|
|
5129
|
+
"name": "SidePanelProps"
|
|
5130
|
+
},
|
|
5131
|
+
"declarations": [
|
|
5132
|
+
{
|
|
5133
|
+
"fileName": "ui-kit-react/lib/components/side-panel/side-panel.tsx",
|
|
5134
|
+
"name": "SidePanelProps"
|
|
5135
|
+
}
|
|
5136
|
+
],
|
|
5137
|
+
"required": false,
|
|
5138
|
+
"type": {
|
|
5139
|
+
"name": "boolean"
|
|
5140
|
+
}
|
|
5141
|
+
},
|
|
5142
|
+
"children": {
|
|
5143
|
+
"defaultValue": null,
|
|
5144
|
+
"description": "Component children.",
|
|
5145
|
+
"name": "children",
|
|
5146
|
+
"parent": {
|
|
5147
|
+
"fileName": "ui-kit-react/lib/components/side-panel/side-panel.tsx",
|
|
5148
|
+
"name": "SidePanelProps"
|
|
5149
|
+
},
|
|
5150
|
+
"declarations": [
|
|
5151
|
+
{
|
|
5152
|
+
"fileName": "ui-kit-react/lib/components/side-panel/side-panel.tsx",
|
|
5153
|
+
"name": "SidePanelProps"
|
|
5154
|
+
}
|
|
5155
|
+
],
|
|
5156
|
+
"required": true,
|
|
5157
|
+
"type": {
|
|
5158
|
+
"name": "ReactNode"
|
|
5159
|
+
}
|
|
5160
|
+
}
|
|
5161
|
+
},
|
|
5162
|
+
"sidepanel": {
|
|
5163
|
+
"className": {
|
|
5164
|
+
"defaultValue": null,
|
|
5165
|
+
"description": "Custom class names to be added to the component.",
|
|
5166
|
+
"name": "className",
|
|
5167
|
+
"parent": {
|
|
5168
|
+
"fileName": "ui-kit-react/lib/components/side-panel/side-panel.tsx",
|
|
5169
|
+
"name": "SidePanelProps"
|
|
5170
|
+
},
|
|
5171
|
+
"declarations": [
|
|
5172
|
+
{
|
|
5173
|
+
"fileName": "ui-kit-react/lib/components/side-panel/side-panel.tsx",
|
|
5174
|
+
"name": "SidePanelProps"
|
|
5175
|
+
}
|
|
5176
|
+
],
|
|
5177
|
+
"required": false,
|
|
5178
|
+
"type": {
|
|
5179
|
+
"name": "string"
|
|
5180
|
+
}
|
|
5181
|
+
},
|
|
5182
|
+
"stickyFooter": {
|
|
5183
|
+
"defaultValue": {
|
|
5184
|
+
"value": true
|
|
5185
|
+
},
|
|
5186
|
+
"description": "Whether the footer should be sticky to the bottom of the Side Panel.",
|
|
5187
|
+
"name": "stickyFooter",
|
|
5188
|
+
"parent": {
|
|
5189
|
+
"fileName": "ui-kit-react/lib/components/side-panel/side-panel.tsx",
|
|
5190
|
+
"name": "SidePanelProps"
|
|
5191
|
+
},
|
|
5192
|
+
"declarations": [
|
|
5193
|
+
{
|
|
5194
|
+
"fileName": "ui-kit-react/lib/components/side-panel/side-panel.tsx",
|
|
5195
|
+
"name": "SidePanelProps"
|
|
5196
|
+
}
|
|
5197
|
+
],
|
|
5198
|
+
"required": false,
|
|
5199
|
+
"type": {
|
|
5200
|
+
"name": "boolean"
|
|
5201
|
+
}
|
|
5202
|
+
},
|
|
5203
|
+
"children": {
|
|
5204
|
+
"defaultValue": null,
|
|
5205
|
+
"description": "Component children.",
|
|
5206
|
+
"name": "children",
|
|
5207
|
+
"parent": {
|
|
5208
|
+
"fileName": "ui-kit-react/lib/components/side-panel/side-panel.tsx",
|
|
5209
|
+
"name": "SidePanelProps"
|
|
5210
|
+
},
|
|
5211
|
+
"declarations": [
|
|
5212
|
+
{
|
|
5213
|
+
"fileName": "ui-kit-react/lib/components/side-panel/side-panel.tsx",
|
|
5214
|
+
"name": "SidePanelProps"
|
|
5215
|
+
}
|
|
5216
|
+
],
|
|
5217
|
+
"required": true,
|
|
5218
|
+
"type": {
|
|
5219
|
+
"name": "ReactNode"
|
|
5220
|
+
}
|
|
5221
|
+
}
|
|
5222
|
+
},
|
|
4813
5223
|
"Text": {
|
|
4814
5224
|
"as": {
|
|
4815
5225
|
"defaultValue": {
|