mce 0.13.12 → 0.13.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.
@@ -40,18 +40,18 @@ declare const _default: {
40
40
  previousSelection: string;
41
41
  nextSelection: string;
42
42
  view: string;
43
- 'view:msaa': string;
44
43
  'view:checkerboard': string;
45
44
  'view:pixelGrid': string;
46
45
  'view:ruler': string;
47
46
  'view:scrollbar': string;
48
- 'view:timeline': string;
49
- 'view:statusbar': string;
50
47
  'view:frameOutline': string;
51
48
  'checkerboardStyle:grid': string;
52
49
  'checkerboardStyle:dot': string;
53
50
  panels: string;
54
51
  'panels:layers': string;
52
+ 'panels:timeline': string;
53
+ 'panels:statusbar': string;
54
+ msaa: string;
55
55
  pixelate: string;
56
56
  layers: string;
57
57
  zoomIn: string;
@@ -41,18 +41,18 @@ declare const _default: {
41
41
  previousSelection: string;
42
42
  nextSelection: string;
43
43
  view: string;
44
- 'view:msaa': string;
45
44
  'view:checkerboard': string;
46
45
  'view:pixelGrid': string;
47
46
  'view:ruler': string;
48
47
  'view:scrollbar': string;
49
- 'view:timeline': string;
50
- 'view:statusbar': string;
51
48
  'view:frameOutline': string;
52
49
  'checkerboardStyle:grid': string;
53
50
  'checkerboardStyle:dot': string;
54
51
  panels: string;
55
52
  'panels:layers': string;
53
+ 'panels:statusbar': string;
54
+ 'panels:timeline': string;
55
+ msaa: string;
56
56
  pixelate: string;
57
57
  layers: string;
58
58
  zoomIn: string;
package/dist/plugin.d.ts CHANGED
@@ -7,6 +7,9 @@ export interface BasePluginComponent {
7
7
  export interface PanelPluginComponent extends BasePluginComponent {
8
8
  name: string;
9
9
  type: 'panel';
10
+ position: 'top' | 'right' | 'bottom' | 'left' | 'float';
11
+ size?: number;
12
+ order?: number;
10
13
  }
11
14
  export interface OverlayPluginComponent extends BasePluginComponent {
12
15
  type: 'overlay';
@@ -9,5 +9,5 @@ declare global {
9
9
  }
10
10
  }
11
11
  }
12
- declare const _default: import("../plugin").Plugin;
12
+ declare const _default: import("..").Plugin;
13
13
  export default _default;
@@ -0,0 +1,9 @@
1
+ declare global {
2
+ namespace Mce {
3
+ interface Panels {
4
+ statusbar: [];
5
+ }
6
+ }
7
+ }
8
+ declare const _default: import("../plugin").Plugin;
9
+ export default _default;
@@ -0,0 +1,9 @@
1
+ declare global {
2
+ namespace Mce {
3
+ interface Panels {
4
+ timeline: [];
5
+ }
6
+ }
7
+ }
8
+ declare const _default: import("../plugin").Plugin;
9
+ export default _default;
@@ -52,7 +52,9 @@ import './plugins/saveAs'
52
52
  import './plugins/scroll'
53
53
  import './plugins/select'
54
54
  import './plugins/smartGuides'
55
+ import './plugins/statusbar'
55
56
  import './plugins/text'
57
+ import './plugins/timeline'
56
58
  import './plugins/ui'
57
59
  import './plugins/url'
58
60
  import './plugins/view'
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mce",
3
3
  "type": "module",
4
- "version": "0.13.12",
4
+ "version": "0.13.13",
5
5
  "description": "The headless canvas editor framework. only the ESM.",
6
6
  "author": "wxm",
7
7
  "license": "MIT",
@@ -1,3 +0,0 @@
1
- declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
- declare const _default: typeof __VLS_export;
3
- export default _default;