unlayer-types 1.474.0 → 1.475.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
|
@@ -1862,6 +1862,12 @@ declare module "packages/editor/src/state/types/types" {
|
|
|
1862
1862
|
export interface ToolConfig {
|
|
1863
1863
|
enabled?: boolean | undefined;
|
|
1864
1864
|
icon?: string | undefined;
|
|
1865
|
+
/**
|
|
1866
|
+
* Used by classic themes (`classic_light`, `classic_dark`, and custom themes
|
|
1867
|
+
* extending them). Optional, and takes the same values as `icon`. Omit it and
|
|
1868
|
+
* `icon` applies to every theme.
|
|
1869
|
+
*/
|
|
1870
|
+
classicIcon?: string | undefined;
|
|
1865
1871
|
position?: number | undefined;
|
|
1866
1872
|
properties?: object | undefined;
|
|
1867
1873
|
sections?: object | undefined;
|
package/package.json
CHANGED