@commonsku/styles 1.17.42 → 1.17.45
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/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/styles/Box.d.ts +2 -0
- package/dist/styles/Box.d.ts.map +1 -1
- package/dist/styles/DateRangePicker.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -117,6 +117,8 @@ type BoxProps = React__default.PropsWithChildren<{
|
|
|
117
117
|
padded?: boolean;
|
|
118
118
|
title?: string | React__default.ReactNode;
|
|
119
119
|
controls?: React__default.ReactNode;
|
|
120
|
+
style?: React__default.CSSProperties;
|
|
121
|
+
onClick?: React__default.MouseEventHandler<HTMLDivElement>;
|
|
120
122
|
} & SharedStyleTypes>;
|
|
121
123
|
declare const Box: ({ title, controls, children, ...props }: BoxProps) => React__default.JSX.Element;
|
|
122
124
|
//# sourceMappingURL=Box.d.ts.map
|