@ws-ui/roles-editor 1.8.4-rc2 → 1.8.4-rc3

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,2 +1,8 @@
1
- declare const Container: () => import("react/jsx-runtime").JSX.Element;
1
+ import { ChakraProviderProps } from '@chakra-ui/react';
2
+ import { FC } from 'react';
3
+ export interface IContainerProps {
4
+ theme?: ChakraProviderProps['theme'];
5
+ resetCSS?: boolean;
6
+ }
7
+ declare const Container: FC<IContainerProps>;
2
8
  export default Container;
@@ -1,2 +1,6 @@
1
1
  import { FC } from 'react';
2
- export declare const Standalone: FC;
2
+ import { IContainerProps } from '../Container';
3
+ interface IStandaloneProps extends IContainerProps {
4
+ }
5
+ export declare const Standalone: FC<IStandaloneProps>;
6
+ export {};
@@ -0,0 +1,4 @@
1
+ import { chakraTheme } from '../../../webform-editor/src/theme';
2
+ export type StylesObject = Record<string, any>;
3
+ export declare const scopeOriginalStyles: (stylesObject: StylesObject, scopeClass: string) => StylesObject;
4
+ export default chakraTheme;