@ones-editor/editor 3.0.3-beta.7 → 3.0.3-beta.9

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.
@@ -132,6 +132,7 @@ export interface CommandItem {
132
132
  value?: string;
133
133
  order?: number;
134
134
  type?: CommandItemType;
135
+ className?: string;
135
136
  element?: HTMLElement | ((item: CommandItem) => HTMLElement);
136
137
  icon?: string;
137
138
  childrenType?: 'menu' | 'toolbar' | 'mobile-bottom-menu';
@@ -15,6 +15,7 @@ export declare class ColorItem extends TextColorItem implements ToolbarItem {
15
15
  value?: string | undefined;
16
16
  order?: number | undefined;
17
17
  type?: import("@ones-editor/core").CommandItemType | undefined;
18
+ className?: string | undefined;
18
19
  element?: HTMLElement | ((item: import("@ones-editor/core").CommandItem) => HTMLElement) | undefined;
19
20
  icon?: string | undefined;
20
21
  childrenType?: "menu" | "toolbar" | "mobile-bottom-menu" | undefined;