@blokkli/editor 2.0.0-alpha.64 → 2.0.0-alpha.66
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.d.mts +2 -2
- package/dist/module.json +1 -1
- package/dist/module.mjs +48 -2
- package/dist/modules/agent/index.d.mts +1 -1
- package/dist/modules/agent/runtime/app/helpers/mutationResult.d.ts +12 -0
- package/dist/modules/agent/runtime/app/helpers/mutationResult.js +34 -0
- package/dist/modules/agent/runtime/app/providers/toolsProvider.js +13 -7
- package/dist/modules/agent/runtime/app/tools/.nuxt/app.config.d.mts +4 -0
- package/dist/modules/agent/runtime/app/tools/.nuxt/app.config.js +21 -0
- package/dist/modules/agent/runtime/app/tools/.nuxt/components.d.ts +66 -0
- package/dist/modules/agent/runtime/app/tools/.nuxt/imports.d.ts +30 -0
- package/dist/modules/agent/runtime/app/tools/.nuxt/manifest/meta/test.json +1 -0
- package/dist/modules/agent/runtime/app/tools/.nuxt/types/app.config.d.ts +35 -0
- package/dist/modules/agent/runtime/app/tools/.nuxt/types/build.d.ts +23 -0
- package/dist/modules/agent/runtime/app/tools/.nuxt/types/builder-env.d.ts +1 -0
- package/dist/modules/agent/runtime/app/tools/.nuxt/types/components.d.ts +71 -0
- package/dist/modules/agent/runtime/app/tools/.nuxt/types/imports.d.ts +386 -0
- package/dist/modules/agent/runtime/app/tools/.nuxt/types/middleware.d.ts +11 -0
- package/dist/modules/agent/runtime/app/tools/.nuxt/types/modules.d.ts +79 -0
- package/dist/modules/agent/runtime/app/tools/.nuxt/types/nitro-layouts.d.ts +17 -0
- package/dist/modules/agent/runtime/app/tools/.nuxt/types/nitro-nuxt.d.ts +64 -0
- package/dist/modules/agent/runtime/app/tools/.nuxt/types/plugins.d.ts +29 -0
- package/dist/modules/agent/runtime/app/tools/.nuxt/types/runtime-config.d.ts +32 -0
- package/dist/modules/agent/runtime/app/tools/.nuxt/types/shared-imports.d.ts +10 -0
- package/dist/modules/agent/runtime/app/tools/.nuxt/types/vue-shim.d.ts +0 -0
- package/dist/modules/agent/runtime/app/tools/add_paragraphs/index.d.ts +15 -4
- package/dist/modules/agent/runtime/app/tools/add_paragraphs/index.js +43 -15
- package/dist/modules/agent/runtime/server/server-tools/load_tools/index.d.ts +1 -3
- package/dist/modules/agent/runtime/server/server-tools/load_tools/index.js +3 -1
- package/dist/modules/charts/index.d.mts +1 -1
- package/dist/modules/drupal/graphql/base/query.pbConfig.graphql +2 -2
- package/dist/modules/drupal/index.d.mts +1 -1
- package/dist/modules/iframes/index.d.mts +1 -1
- package/dist/modules/index.d.mts +1 -1
- package/dist/modules/readability/index.d.mts +1 -1
- package/dist/modules/table-of-contents/index.d.mts +1 -1
- package/dist/runtime/css/output.css +1 -0
- package/dist/runtime/editor/components/FlexTextarea/index.d.vue.ts +1 -1
- package/dist/runtime/editor/components/FlexTextarea/index.vue.d.ts +1 -1
- package/dist/runtime/editor/css/output.css +1 -1
- package/dist/runtime/editor/features/changelog/changelog.json +0 -32
- package/dist/runtime/editor/plugins/ItemAction/index.d.vue.ts +1 -1
- package/dist/runtime/editor/plugins/ItemAction/index.vue.d.ts +1 -1
- package/dist/runtime/editor/plugins/Sidebar/Detached/index.d.vue.ts +1 -1
- package/dist/runtime/editor/plugins/Sidebar/Detached/index.vue.d.ts +1 -1
- package/dist/runtime/editor/plugins/Sidebar/index.d.vue.ts +2 -2
- package/dist/runtime/editor/plugins/Sidebar/index.vue.d.ts +2 -2
- package/dist/runtime/editor/providers/state.d.ts +17 -1
- package/dist/runtime/editor/providers/state.js +14 -0
- package/dist/shared/{editor.BDyiQvbV.d.mts → editor.S5sA3rij.d.mts} +19 -1
- package/dist/types.d.mts +1 -1
- package/package.json +6 -6
|
@@ -28,8 +28,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
28
28
|
onSubmit?: (() => any) | undefined;
|
|
29
29
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
30
30
|
}>, {
|
|
31
|
-
minHeight: number;
|
|
32
31
|
maxHeight: number;
|
|
32
|
+
minHeight: number;
|
|
33
33
|
onBeforePaste: (data: ClipboardData) => boolean;
|
|
34
34
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
35
35
|
declare const _default: typeof __VLS_export;
|
|
@@ -28,8 +28,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
28
28
|
onSubmit?: (() => any) | undefined;
|
|
29
29
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
30
30
|
}>, {
|
|
31
|
-
minHeight: number;
|
|
32
31
|
maxHeight: number;
|
|
32
|
+
minHeight: number;
|
|
33
33
|
onBeforePaste: (data: ClipboardData) => boolean;
|
|
34
34
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
35
35
|
declare const _default: typeof __VLS_export;
|