poro-editor 1.7.12 → 1.7.13

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/dist/config.d.ts CHANGED
@@ -35,6 +35,15 @@ export namespace DEFAULT_AI_CONFIG {
35
35
  let stream: boolean;
36
36
  let customHandler: null;
37
37
  }
38
+ export namespace DEFAULT_COLOR_PICKER_CONFIG {
39
+ let format: string;
40
+ let mode: string;
41
+ let presets: {
42
+ label: string;
43
+ colors: string[];
44
+ }[];
45
+ let disabledAlpha: boolean;
46
+ }
38
47
  export namespace DEFAULT_CONFIG {
39
48
  export { MENU_BAR_ITEMS as menuBar };
40
49
  export { BUBBLE_MENU_ITEMS as bubbleMenu };
@@ -48,6 +57,7 @@ export namespace DEFAULT_CONFIG {
48
57
  export let readonly: boolean;
49
58
  export { DEFAULT_VARIABLE_CONFIG as variables };
50
59
  export { DEFAULT_AI_CONFIG as ai };
60
+ export { DEFAULT_COLOR_PICKER_CONFIG as colorPicker };
51
61
  export let injectStyles: boolean;
52
62
  export let placeholder: string;
53
63
  }