@blokkli/editor 2.0.0-alpha.65 → 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.
Files changed (25) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/module.mjs +1 -1
  3. package/dist/modules/agent/runtime/app/tools/.nuxt/app.config.d.mts +4 -0
  4. package/dist/modules/agent/runtime/app/tools/.nuxt/app.config.js +21 -0
  5. package/dist/modules/agent/runtime/app/tools/.nuxt/components.d.ts +66 -0
  6. package/dist/modules/agent/runtime/app/tools/.nuxt/imports.d.ts +30 -0
  7. package/dist/modules/agent/runtime/app/tools/.nuxt/manifest/meta/test.json +1 -0
  8. package/dist/modules/agent/runtime/app/tools/.nuxt/types/app.config.d.ts +35 -0
  9. package/dist/modules/agent/runtime/app/tools/.nuxt/types/build.d.ts +23 -0
  10. package/dist/modules/agent/runtime/app/tools/.nuxt/types/builder-env.d.ts +1 -0
  11. package/dist/modules/agent/runtime/app/tools/.nuxt/types/components.d.ts +71 -0
  12. package/dist/modules/agent/runtime/app/tools/.nuxt/types/imports.d.ts +386 -0
  13. package/dist/modules/agent/runtime/app/tools/.nuxt/types/middleware.d.ts +11 -0
  14. package/dist/modules/agent/runtime/app/tools/.nuxt/types/modules.d.ts +79 -0
  15. package/dist/modules/agent/runtime/app/tools/.nuxt/types/nitro-layouts.d.ts +17 -0
  16. package/dist/modules/agent/runtime/app/tools/.nuxt/types/nitro-nuxt.d.ts +64 -0
  17. package/dist/modules/agent/runtime/app/tools/.nuxt/types/plugins.d.ts +29 -0
  18. package/dist/modules/agent/runtime/app/tools/.nuxt/types/runtime-config.d.ts +32 -0
  19. package/dist/modules/agent/runtime/app/tools/.nuxt/types/shared-imports.d.ts +10 -0
  20. package/dist/modules/agent/runtime/app/tools/.nuxt/types/vue-shim.d.ts +0 -0
  21. package/dist/modules/drupal/graphql/base/query.pbConfig.graphql +2 -2
  22. package/dist/runtime/css/output.css +1 -0
  23. package/dist/runtime/editor/css/output.css +1 -1
  24. package/dist/runtime/editor/features/changelog/changelog.json +0 -32
  25. package/package.json +6 -6
@@ -0,0 +1,64 @@
1
+
2
+ /// <reference path="nitro-layouts.d.ts" />
3
+ /// <reference path="app.config.d.ts" />
4
+ /// <reference path="runtime-config.d.ts" />
5
+ /// <reference path="../../../../../../../../node_modules/@nuxt/nitro-server/dist/index.d.mts" />
6
+ /// <reference path="middleware.d.ts" />
7
+
8
+ import type { RuntimeConfig } from 'nuxt/schema'
9
+ import type { H3Event } from 'h3'
10
+ import type { LogObject } from 'consola'
11
+ import type { NuxtIslandContext, NuxtIslandResponse, NuxtRenderHTMLContext } from 'nuxt/app'
12
+
13
+ declare module 'nitropack' {
14
+ interface NitroRuntimeConfigApp {
15
+ buildAssetsDir: string
16
+ cdnURL: string
17
+ }
18
+ interface NitroRuntimeConfig extends RuntimeConfig {}
19
+ interface NitroRouteConfig {
20
+ ssr?: boolean
21
+ noScripts?: boolean
22
+ /** @deprecated Use `noScripts` instead */
23
+ experimentalNoScripts?: boolean
24
+ }
25
+ interface NitroRouteRules {
26
+ ssr?: boolean
27
+ noScripts?: boolean
28
+ /** @deprecated Use `noScripts` instead */
29
+ experimentalNoScripts?: boolean
30
+ appMiddleware?: Record<string, boolean>
31
+ appLayout?: string | false
32
+ }
33
+ interface NitroRuntimeHooks {
34
+ 'dev:ssr-logs': (ctx: { logs: LogObject[], path: string }) => void | Promise<void>
35
+ 'render:html': (htmlContext: NuxtRenderHTMLContext, context: { event: H3Event }) => void | Promise<void>
36
+ 'render:island': (islandResponse: NuxtIslandResponse, context: { event: H3Event, islandContext: NuxtIslandContext }) => void | Promise<void>
37
+ }
38
+ }
39
+ declare module 'nitropack/types' {
40
+ interface NitroRuntimeConfigApp {
41
+ buildAssetsDir: string
42
+ cdnURL: string
43
+ }
44
+ interface NitroRuntimeConfig extends RuntimeConfig {}
45
+ interface NitroRouteConfig {
46
+ ssr?: boolean
47
+ noScripts?: boolean
48
+ /** @deprecated Use `noScripts` instead */
49
+ experimentalNoScripts?: boolean
50
+ }
51
+ interface NitroRouteRules {
52
+ ssr?: boolean
53
+ noScripts?: boolean
54
+ /** @deprecated Use `noScripts` instead */
55
+ experimentalNoScripts?: boolean
56
+ appMiddleware?: Record<string, boolean>
57
+ appLayout?: string | false
58
+ }
59
+ interface NitroRuntimeHooks {
60
+ 'dev:ssr-logs': (ctx: { logs: LogObject[], path: string }) => void | Promise<void>
61
+ 'render:html': (htmlContext: NuxtRenderHTMLContext, context: { event: H3Event }) => void | Promise<void>
62
+ 'render:island': (islandResponse: NuxtIslandResponse, context: { event: H3Event, islandContext: NuxtIslandContext }) => void | Promise<void>
63
+ }
64
+ }
@@ -0,0 +1,29 @@
1
+ // Generated by Nuxt'
2
+ import type { Plugin } from '#app'
3
+
4
+ type Decorate<T extends Record<string, any>> = { [K in keyof T as K extends string ? `$${K}` : never]: T[K] }
5
+
6
+ type InjectionType<A extends Plugin> = A extends {default: Plugin<infer T>} ? Decorate<T> : unknown
7
+
8
+ type NuxtAppInjections =
9
+ InjectionType<typeof import("../../../../../../../../node_modules/nuxt/dist/app/plugins/revive-payload.client.js")> &
10
+ InjectionType<typeof import("../../../../../../../../node_modules/nuxt/dist/head/runtime/plugins/unhead.js")> &
11
+ InjectionType<typeof import("../../../../../../../../node_modules/nuxt/dist/app/plugins/router.js")> &
12
+ InjectionType<typeof import("../../../../../../../../node_modules/nuxt/dist/app/plugins/navigation-repaint.client.js")> &
13
+ InjectionType<typeof import("../../../../../../../../node_modules/nuxt/dist/app/plugins/check-outdated-build.client.js")> &
14
+ InjectionType<typeof import("../../../../../../../../node_modules/nuxt/dist/app/plugins/revive-payload.server.js")> &
15
+ InjectionType<typeof import("../../../../../../../../node_modules/nuxt/dist/app/plugins/chunk-reload.client.js")>
16
+
17
+ declare module '#app' {
18
+ interface NuxtApp extends NuxtAppInjections { }
19
+
20
+ interface NuxtAppLiterals {
21
+ pluginName: 'nuxt:revive-payload:client' | 'nuxt:head' | 'nuxt:router' | 'nuxt:revive-payload:server' | 'nuxt:chunk-reload' | 'nuxt:global-components'
22
+ }
23
+ }
24
+
25
+ declare module 'vue' {
26
+ interface ComponentCustomProperties extends NuxtAppInjections { }
27
+ }
28
+
29
+ export { }
@@ -0,0 +1,32 @@
1
+ import { RuntimeConfig as UserRuntimeConfig, PublicRuntimeConfig as UserPublicRuntimeConfig } from 'nuxt/schema'
2
+ interface SharedRuntimeConfig {
3
+ app: {
4
+ buildId: string,
5
+
6
+ baseURL: string,
7
+
8
+ buildAssetsDir: string,
9
+
10
+ cdnURL: string,
11
+ },
12
+
13
+ nitro: {
14
+ envPrefix: string,
15
+ },
16
+ }
17
+ interface SharedPublicRuntimeConfig {
18
+
19
+ }
20
+ declare module '@nuxt/schema' {
21
+ interface RuntimeConfig extends UserRuntimeConfig {}
22
+ interface PublicRuntimeConfig extends UserPublicRuntimeConfig {}
23
+ }
24
+ declare module 'nuxt/schema' {
25
+ interface RuntimeConfig extends SharedRuntimeConfig {}
26
+ interface PublicRuntimeConfig extends SharedPublicRuntimeConfig {}
27
+ }
28
+ declare module 'vue' {
29
+ interface ComponentCustomProperties {
30
+ $config: UserRuntimeConfig
31
+ }
32
+ }
@@ -0,0 +1,10 @@
1
+ // Generated by auto imports
2
+ export {}
3
+ declare global {
4
+ const useRuntimeConfig: (event?: import('h3').H3Event) => import('nuxt/schema').RuntimeConfig
5
+ const useAppConfig: () => import('nuxt/schema').AppConfig
6
+ const defineAppConfig: <C extends import('nuxt/schema').AppConfigInput>(config: C) => C
7
+ const createError: typeof import('h3')['createError']
8
+ const setResponseStatus: typeof import('h3')['setResponseStatus']
9
+
10
+ }
@@ -16,8 +16,8 @@ fragment paragraphsBlokkliCurrentUser on ParagraphsBlokkliUser {
16
16
  permission: "manage default paragraph templates"
17
17
  )
18
18
 
19
- create_comments: hasPermission(permission: "post comments")
20
- view_comments: hasPermission(permission: "access comments")
19
+ create_comments: hasPermission(permission: "post blokkli comments")
20
+ view_comments: hasPermission(permission: "view blokkli comments")
21
21
  use_agent: hasPermission(permission: "use paragraphs blokkli agent")
22
22
  manage_agent_conversations: hasPermission(
23
23
  permission: "manage all blokkli agent conversations"