@kakadu/components 1.1.25 → 1.1.26

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,9 +6,10 @@ export declare enum WrapperWidth {
6
6
  'text' = "text",
7
7
  'content' = "content"
8
8
  }
9
- export default function Wrapper<Type extends AtomElementType = DefaultAtomElementType>({ as, gap, direction, alignment, wrap, width, className, innerClassName, children, outerChildrenBefore, outerChildrenAfter, ...properties }: FlexProperties<Type> & {
9
+ export type WrapperProperties<Type extends AtomElementType = DefaultAtomElementType> = FlexProperties<Type> & {
10
10
  readonly width?: WrapperWidth;
11
11
  readonly innerClassName?: string;
12
12
  readonly outerChildrenBefore?: ReactNode;
13
13
  readonly outerChildrenAfter?: ReactNode;
14
- }): import("react/jsx-runtime").JSX.Element;
14
+ };
15
+ export default function Wrapper<Type extends AtomElementType = DefaultAtomElementType>({ as, gap, direction, alignment, wrap, width, className, innerClassName, children, outerChildrenBefore, outerChildrenAfter, ...properties }: WrapperProperties<Type>): import("react/jsx-runtime").JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kakadu/components",
3
- "version": "1.1.25",
3
+ "version": "1.1.26",
4
4
  "description": "Kakadu components library",
5
5
  "license": "MIT",
6
6
  "main": "./build/index.js",