@squeed/flow-sdk 2.0.4 → 2.0.5
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/README.md +11 -4
- package/dist/index.cjs +14 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -6
- package/dist/index.d.ts +1 -6
- package/dist/index.js +1947 -1928
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -11,8 +11,6 @@ import { ReactNode } from 'react';
|
|
|
11
11
|
import { ReactPortal } from 'react';
|
|
12
12
|
import { RefAttributes } from 'react';
|
|
13
13
|
import { RefObject } from 'react';
|
|
14
|
-
import { StyledComponent } from '@emotion/styled';
|
|
15
|
-
import { Theme } from '@emotion/react';
|
|
16
14
|
|
|
17
15
|
/** Add a child under `parentAddress`. Returns the new node's address. */
|
|
18
16
|
export declare function addChild(json: SqueedJson, parentAddress: string, child: any, key?: string): {
|
|
@@ -1140,10 +1138,7 @@ export declare const ToolbarIconButton: ForwardRefExoticComponent<Omit<IconButto
|
|
|
1140
1138
|
icon: React.ReactElement;
|
|
1141
1139
|
}, "ref"> & RefAttributes<HTMLButtonElement>>;
|
|
1142
1140
|
|
|
1143
|
-
export declare const ToolbarRangeInput:
|
|
1144
|
-
theme?: Theme;
|
|
1145
|
-
as?: React.ElementType;
|
|
1146
|
-
}, DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, {}>;
|
|
1141
|
+
export declare const ToolbarRangeInput: ForwardRefExoticComponent<Omit<DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & RefAttributes<HTMLInputElement>>;
|
|
1147
1142
|
|
|
1148
1143
|
export declare function ToolbarScrollContainer({ children, background, border, }: {
|
|
1149
1144
|
children: ReactNode;
|
package/dist/index.d.ts
CHANGED
|
@@ -11,8 +11,6 @@ import { ReactNode } from 'react';
|
|
|
11
11
|
import { ReactPortal } from 'react';
|
|
12
12
|
import { RefAttributes } from 'react';
|
|
13
13
|
import { RefObject } from 'react';
|
|
14
|
-
import { StyledComponent } from '@emotion/styled';
|
|
15
|
-
import { Theme } from '@emotion/react';
|
|
16
14
|
|
|
17
15
|
/** Add a child under `parentAddress`. Returns the new node's address. */
|
|
18
16
|
export declare function addChild(json: SqueedJson, parentAddress: string, child: any, key?: string): {
|
|
@@ -1140,10 +1138,7 @@ export declare const ToolbarIconButton: ForwardRefExoticComponent<Omit<IconButto
|
|
|
1140
1138
|
icon: React.ReactElement;
|
|
1141
1139
|
}, "ref"> & RefAttributes<HTMLButtonElement>>;
|
|
1142
1140
|
|
|
1143
|
-
export declare const ToolbarRangeInput:
|
|
1144
|
-
theme?: Theme;
|
|
1145
|
-
as?: React.ElementType;
|
|
1146
|
-
}, DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, {}>;
|
|
1141
|
+
export declare const ToolbarRangeInput: ForwardRefExoticComponent<Omit<DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & RefAttributes<HTMLInputElement>>;
|
|
1147
1142
|
|
|
1148
1143
|
export declare function ToolbarScrollContainer({ children, background, border, }: {
|
|
1149
1144
|
children: ReactNode;
|