@builder.io/mitosis 0.0.56-21 → 0.0.56-22

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,4 +1,4 @@
1
- import type { JSX } from '../../../jsx-types';
1
+ import type { JSX } from '../../../../jsx-runtime';
2
2
  declare type Props = {
3
3
  [key: string]: string | JSX.Element;
4
4
  slotTesting: JSX.Element;
@@ -1,4 +1,4 @@
1
- import type { JSX } from '../../../jsx-types';
1
+ import type { JSX } from '../../../../jsx-runtime';
2
2
  declare type Props = {
3
3
  [key: string]: string | JSX.Element;
4
4
  slotTesting: JSX.Element;
@@ -1,4 +1,4 @@
1
- import type { JSX } from '../../../jsx-types';
1
+ import type { JSX } from '../../../../jsx-runtime';
2
2
  declare type Props = {
3
3
  [key: string]: string | JSX.Element;
4
4
  };
@@ -1,4 +1,4 @@
1
- import { JSX } from './jsx-types';
1
+ import { JSX } from '../jsx-runtime';
2
2
  /**
3
3
  * Flow control based on Solid
4
4
  *
@@ -18,8 +18,8 @@ export declare const hasStyles: (component: MitosisComponent) => boolean;
18
18
  export declare type StyleMap = {
19
19
  [className: string]: CSS.Properties | StyleMap;
20
20
  };
21
- export declare const getNestedSelectors: (map: StyleMap) => import("lodash").Dictionary<CSS.Properties<0 | (string & {}), string & {}> | StyleMap>;
22
- export declare const getStylesOnly: (map: StyleMap) => import("lodash").Dictionary<CSS.Properties<0 | (string & {}), string & {}> | StyleMap>;
21
+ export declare const getNestedSelectors: (map: StyleMap) => import("lodash").Dictionary<StyleMap | CSS.Properties<0 | (string & {}), string & {}>>;
22
+ export declare const getStylesOnly: (map: StyleMap) => import("lodash").Dictionary<StyleMap | CSS.Properties<0 | (string & {}), string & {}>>;
23
23
  /**
24
24
  * { 'my-class': { display: 'block', '&.foo': { display: 'none' } }}
25
25
  */