oasis-editor 0.0.13 → 0.0.14

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.
@@ -93,6 +93,7 @@ export interface EssentialsParagraphCapability {
93
93
  setIndentRight: (value: number | null) => void;
94
94
  setIndentFirstLine: (value: number | null) => void;
95
95
  setIndentHanging: (value: number | null) => void;
96
+ setSpecialIndent: (kind: "none" | "firstLine" | "hanging", value?: number | null) => void;
96
97
  setShading: (value: string | null) => void;
97
98
  applyBorders: () => void;
98
99
  setLineHeight: (value: number | null) => void;
@@ -33,6 +33,7 @@ export declare const OASIS_TOOLBAR_ITEMS: {
33
33
  readonly outdent: "editor-toolbar-list-outdent";
34
34
  readonly indent: "editor-toolbar-list-indent";
35
35
  readonly listOptions: "editor-toolbar-list-options";
36
+ readonly specialIndent: "editor-toolbar-special-indent";
36
37
  readonly lineSpacing: "editor-toolbar-line-spacing-control";
37
38
  readonly metrics: "editor-toolbar-metrics";
38
39
  readonly table: "editor-toolbar-table";
@@ -84,6 +84,8 @@ export interface SplitItem extends ToolbarItemBase {
84
84
  command: CommandRef;
85
85
  /** Chevron-opened content. */
86
86
  menu: MenuContent;
87
+ /** Extra class applied to the popover panel. */
88
+ panelClass?: string;
87
89
  }
88
90
  export interface MenuItem extends ToolbarItemBase {
89
91
  type: "menu";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oasis-editor",
3
- "version": "0.0.13",
3
+ "version": "0.0.14",
4
4
  "type": "module",
5
5
  "repository": {
6
6
  "type": "git",