unlayer-types 1.20.0 → 1.22.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 +6 -0
- package/package.json +1 -1
package/embed.d.ts
CHANGED
@@ -579,6 +579,11 @@ declare module "editor/themes/types" {
|
|
579
579
|
textColor: ColorValue;
|
580
580
|
shadowColor: ColorValue;
|
581
581
|
};
|
582
|
+
placeholder: {
|
583
|
+
borderColor: ColorValue;
|
584
|
+
color: ColorValue;
|
585
|
+
backgroundColor: ColorValue;
|
586
|
+
};
|
582
587
|
};
|
583
588
|
};
|
584
589
|
export type ThemeVariant = 'primary' | 'secondary' | 'tertiary' | 'ai' | 'ai_outline' | 'danger';
|
@@ -2267,6 +2272,7 @@ declare module "editor/design-system/components/ToggleSwitch" {
|
|
2267
2272
|
left?: React.ReactNode;
|
2268
2273
|
onChange: (isChecked: boolean) => void;
|
2269
2274
|
right?: React.ReactNode;
|
2275
|
+
toggleLeft?: React.ReactNode;
|
2270
2276
|
size?: number;
|
2271
2277
|
style?: React.CSSProperties;
|
2272
2278
|
}
|
package/package.json
CHANGED