unlayer-types 1.315.0 → 1.320.0
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/embed.d.ts +3 -0
- package/package.json +1 -1
package/embed.d.ts
CHANGED
|
@@ -2257,12 +2257,14 @@ declare module "editor/design-system/components/Input" {
|
|
|
2257
2257
|
import { IconDefinition } from '@fortawesome/pro-regular-svg-icons';
|
|
2258
2258
|
import { Icon } from "state/types/types";
|
|
2259
2259
|
export interface InputProps extends Omit<Ariakit.FormInputProps, 'as' | 'onSubmit' | 'onSubmitCapture'> {
|
|
2260
|
+
containerStyle?: React.CSSProperties;
|
|
2260
2261
|
formStore?: Ariakit.FormStore<{
|
|
2261
2262
|
value: string;
|
|
2262
2263
|
}>;
|
|
2263
2264
|
icon?: Icon | IconDefinition;
|
|
2264
2265
|
inputFooter?: React.ReactNode;
|
|
2265
2266
|
inputHeader?: React.ReactNode;
|
|
2267
|
+
inputStyle?: React.CSSProperties;
|
|
2266
2268
|
label?: React.ReactNode;
|
|
2267
2269
|
labelPosition?: 'top' | 'left' | 'right';
|
|
2268
2270
|
maxRows?: number;
|
|
@@ -2332,6 +2334,7 @@ declare module "editor/design-system/components/Button" {
|
|
|
2332
2334
|
id?: string;
|
|
2333
2335
|
loading?: boolean;
|
|
2334
2336
|
onClick?: (e: React.MouseEvent<HTMLButtonElement>) => void;
|
|
2337
|
+
rounded?: boolean;
|
|
2335
2338
|
size?: number | 'auto';
|
|
2336
2339
|
style?: React.CSSProperties;
|
|
2337
2340
|
tooltip?: string;
|
package/package.json
CHANGED