@reapit/elements 5.0.0-beta.6 → 5.0.0-beta.7

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.
@@ -1,5 +1,6 @@
1
1
  import { FC } from 'react';
2
- export interface ElementsThemeProviderProps {
2
+ import { PropsWithChildren } from '../types/core';
3
+ export interface ElementsThemeProviderProps extends PropsWithChildren {
3
4
  theme: {
4
5
  [key: string]: string;
5
6
  };
@@ -1,3 +1,6 @@
1
1
  export interface StringMap {
2
2
  [key: string]: string;
3
3
  }
4
+ export interface PropsWithChildren {
5
+ children?: any;
6
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reapit/elements",
3
- "version": "5.0.0-beta.6",
3
+ "version": "5.0.0-beta.7",
4
4
  "description": "A collection of React components and utilities for building apps for Reapit Marketplace",
5
5
  "homepage": "https://github.com/reapit/elements#readme",
6
6
  "bugs": {