@blokkli/editor 2.0.0-alpha.27 → 2.0.0-alpha.28

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/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@blokkli/editor",
3
3
  "configKey": "blokkli",
4
- "version": "2.0.0-alpha.27",
4
+ "version": "2.0.0-alpha.28",
5
5
  "compatibility": {
6
6
  "nuxt": ">=3.15.0"
7
7
  },
package/dist/module.mjs CHANGED
@@ -15,7 +15,7 @@ import fs from 'node:fs';
15
15
  import { defu, createDefu } from 'defu';
16
16
 
17
17
  const name = "@blokkli/editor";
18
- const version = "2.0.0-alpha.27";
18
+ const version = "2.0.0-alpha.28";
19
19
 
20
20
  function sortObjectKeys(obj) {
21
21
  if (Array.isArray(obj)) {
@@ -203,10 +203,10 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{
203
203
  key: string;
204
204
  scrolledToEnd: boolean;
205
205
  isDetached: true;
206
- width: any;
207
- height: any;
206
+ width: number;
207
+ height: number;
208
208
  toggleSidebar: () => void;
209
- isResizing: any;
209
+ isResizing: boolean;
210
210
  }) => any;
211
211
  } & {
212
212
  default?: (props: {
@@ -1,7 +1,7 @@
1
1
  import { INJECT_APP } from "../helpers/symbols.js";
2
2
  import { inject } from "#imports";
3
3
  export function useBlokkli(optional) {
4
- const app = inject(INJECT_APP);
4
+ const app = inject(INJECT_APP, void 0);
5
5
  if (!app) {
6
6
  if (optional) {
7
7
  return void 0;