nuxt-graphql-middleware 4.0.0 → 4.1.1
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/README.md +10 -2
- package/dist/client/200.html +10 -12
- package/dist/client/404.html +10 -12
- package/dist/client/_nuxt/Bk31qVW4.js +1 -0
- package/dist/client/_nuxt/CHM3Rz8p.js +1 -0
- package/dist/client/_nuxt/CUKk0hSk.js +24 -0
- package/dist/client/_nuxt/Ca6k-hEN.js +2 -0
- package/dist/client/_nuxt/KmIjpfWJ.js +1 -0
- package/dist/client/_nuxt/builds/latest.json +1 -1
- package/dist/client/_nuxt/builds/meta/42e92f16-7f29-4b6f-8e46-68076031ade3.json +1 -0
- package/dist/client/_nuxt/entry.BMcZ91J5.css +1 -0
- package/dist/client/_nuxt/error-404.CjTTbIxB.css +1 -0
- package/dist/client/_nuxt/error-500.B4KzowuE.css +1 -0
- package/dist/client/_nuxt/index.DCCKx2Zk.css +1 -0
- package/dist/client/index.html +10 -12
- package/dist/module.d.mts +71 -10
- package/dist/module.d.ts +71 -10
- package/dist/module.json +6 -2
- package/dist/module.mjs +283 -179
- package/dist/runtime/composables/nuxtApp.d.ts +9 -4
- package/dist/runtime/composables/nuxtApp.js +47 -0
- package/dist/runtime/composables/server.d.ts +4 -3
- package/dist/runtime/composables/{server.mjs → server.js} +2 -2
- package/dist/runtime/composables/shared.d.ts +12 -7
- package/dist/runtime/composables/useAsyncGraphqlQuery.d.ts +22 -0
- package/dist/runtime/composables/useAsyncGraphqlQuery.js +43 -0
- package/dist/runtime/composables/useGraphqlMutation.d.ts +3 -2
- package/dist/runtime/composables/{useGraphqlMutation.mjs → useGraphqlMutation.js} +2 -2
- package/dist/runtime/composables/useGraphqlQuery.d.ts +3 -2
- package/dist/runtime/composables/useGraphqlQuery.js +20 -0
- package/dist/runtime/composables/useGraphqlState.d.ts +1 -1
- package/dist/runtime/composables/{useGraphqlState.mjs → useGraphqlState.js} +1 -1
- package/dist/runtime/composables/useGraphqlUploadMutation.d.ts +7 -0
- package/dist/runtime/composables/useGraphqlUploadMutation.js +57 -0
- package/dist/runtime/helpers/ClientCache.d.ts +15 -0
- package/dist/runtime/helpers/ClientCache.js +40 -0
- package/dist/runtime/helpers/{index.mjs → index.js} +1 -1
- package/dist/runtime/plugins/provideState.d.ts +1 -1
- package/dist/runtime/plugins/provideState.js +17 -0
- package/dist/runtime/serverHandler/helpers/index.d.ts +5 -3
- package/dist/runtime/serverHandler/helpers/{index.mjs → index.js} +2 -2
- package/dist/runtime/serverHandler/{index.mjs → index.js} +3 -3
- package/dist/runtime/serverHandler/upload.d.ts +2 -0
- package/dist/runtime/serverHandler/upload.js +101 -0
- package/dist/runtime/serverOptions/defineGraphqlServerOptions.d.ts +2 -2
- package/dist/runtime/serverOptions/index.d.ts +1 -1
- package/dist/runtime/serverOptions/{index.mjs → index.js} +1 -1
- package/dist/runtime/types.d.ts +24 -0
- package/dist/runtime/types.js +0 -0
- package/dist/types.d.mts +2 -9
- package/dist/types.d.ts +2 -9
- package/package.json +43 -32
- package/dist/client/_nuxt/_plugin-vue_export-helper.x3n3nnut.js +0 -1
- package/dist/client/_nuxt/builds/meta/71f1ba68-6be9-464d-87d1-1b4b3ac786b2.json +0 -1
- package/dist/client/_nuxt/entry.N5CnhLMX.css +0 -1
- package/dist/client/_nuxt/entry.sn4ItzJP.js +0 -29
- package/dist/client/_nuxt/error-404._g063Njv.js +0 -1
- package/dist/client/_nuxt/error-404.gOl2ep2B.css +0 -1
- package/dist/client/_nuxt/error-500.iP22ayZD.js +0 -1
- package/dist/client/_nuxt/error-500.z8GAN5B3.css +0 -1
- package/dist/client/_nuxt/index.KH5Eug0w.css +0 -1
- package/dist/client/_nuxt/index.wowlKkKL.js +0 -2
- package/dist/client/_nuxt/vue.f36acd1f.H09MX4qF.js +0 -1
- package/dist/runtime/composables/nuxtApp.mjs +0 -15
- package/dist/runtime/composables/useGraphqlQuery.mjs +0 -9
- package/dist/runtime/plugins/provideState.mjs +0 -7
- /package/dist/runtime/composables/{shared.mjs → shared.js} +0 -0
- /package/dist/runtime/serverHandler/{debug.mjs → debug.js} +0 -0
- /package/dist/runtime/serverOptions/{defineGraphqlServerOptions.mjs → defineGraphqlServerOptions.js} +0 -0
- /package/dist/runtime/settings/{index.mjs → index.js} +0 -0
package/dist/types.d.mts
CHANGED
|
@@ -1,18 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
import type { ModuleOptions, ModuleHooks } from './module.js'
|
|
3
|
-
|
|
1
|
+
import type { ModuleHooks } from './module.js'
|
|
4
2
|
|
|
5
3
|
declare module '@nuxt/schema' {
|
|
6
|
-
interface NuxtConfig { ['graphqlMiddleware']?: Partial<ModuleOptions> }
|
|
7
|
-
interface NuxtOptions { ['graphqlMiddleware']?: ModuleOptions }
|
|
8
4
|
interface NuxtHooks extends ModuleHooks {}
|
|
9
5
|
}
|
|
10
6
|
|
|
11
7
|
declare module 'nuxt/schema' {
|
|
12
|
-
interface NuxtConfig { ['graphqlMiddleware']?: Partial<ModuleOptions> }
|
|
13
|
-
interface NuxtOptions { ['graphqlMiddleware']?: ModuleOptions }
|
|
14
8
|
interface NuxtHooks extends ModuleHooks {}
|
|
15
9
|
}
|
|
16
10
|
|
|
17
|
-
|
|
18
|
-
export type { GraphqlMiddlewareServerOptions, ModuleHooks, ModuleOptions, default } from './module.js'
|
|
11
|
+
export { type GraphqlMiddlewareServerOptions, type ModuleHooks, type ModuleOptions, default } from './module.js'
|
package/dist/types.d.ts
CHANGED
|
@@ -1,18 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
import type { ModuleOptions, ModuleHooks } from './module'
|
|
3
|
-
|
|
1
|
+
import type { ModuleHooks } from './module'
|
|
4
2
|
|
|
5
3
|
declare module '@nuxt/schema' {
|
|
6
|
-
interface NuxtConfig { ['graphqlMiddleware']?: Partial<ModuleOptions> }
|
|
7
|
-
interface NuxtOptions { ['graphqlMiddleware']?: ModuleOptions }
|
|
8
4
|
interface NuxtHooks extends ModuleHooks {}
|
|
9
5
|
}
|
|
10
6
|
|
|
11
7
|
declare module 'nuxt/schema' {
|
|
12
|
-
interface NuxtConfig { ['graphqlMiddleware']?: Partial<ModuleOptions> }
|
|
13
|
-
interface NuxtOptions { ['graphqlMiddleware']?: ModuleOptions }
|
|
14
8
|
interface NuxtHooks extends ModuleHooks {}
|
|
15
9
|
}
|
|
16
10
|
|
|
17
|
-
|
|
18
|
-
export type { GraphqlMiddlewareServerOptions, ModuleHooks, ModuleOptions, default } from './module'
|
|
11
|
+
export { type GraphqlMiddlewareServerOptions, type ModuleHooks, type ModuleOptions, default } from './module'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nuxt-graphql-middleware",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.1.1",
|
|
4
4
|
"description": "Module to perform GraphQL requests as a server middleware.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -10,18 +10,28 @@
|
|
|
10
10
|
"type": "module",
|
|
11
11
|
"exports": {
|
|
12
12
|
".": {
|
|
13
|
-
"import":
|
|
14
|
-
|
|
13
|
+
"import": {
|
|
14
|
+
"types": "./dist/types.d.ts",
|
|
15
|
+
"default": "./dist/module.mjs"
|
|
16
|
+
},
|
|
17
|
+
"require": {
|
|
18
|
+
"types": "./dist/types.d.ts",
|
|
19
|
+
"default": "./dist/module.cjs"
|
|
20
|
+
}
|
|
15
21
|
},
|
|
16
|
-
"./dist/runtime/serverOptions":
|
|
22
|
+
"./dist/runtime/serverOptions": {
|
|
23
|
+
"import": "./dist/runtime/serverOptions/index.js",
|
|
24
|
+
"types": "./dist/runtime/serverOptions/index.d.ts"
|
|
25
|
+
}
|
|
17
26
|
},
|
|
18
27
|
"main": "./dist/module.cjs",
|
|
28
|
+
"module": "./dist/module.mjs",
|
|
19
29
|
"types": "./dist/types.d.ts",
|
|
20
30
|
"files": [
|
|
21
31
|
"dist"
|
|
22
32
|
],
|
|
23
33
|
"scripts": {
|
|
24
|
-
"prepack": "nuxt-module-build && npm run client:build",
|
|
34
|
+
"prepack": "nuxt-module-build build && npm run client:build",
|
|
25
35
|
"dev": "nuxi dev playground --trace-warnings",
|
|
26
36
|
"debug": "nuxi dev playground --inspect",
|
|
27
37
|
"dev:build": "nuxi build playground",
|
|
@@ -36,6 +46,8 @@
|
|
|
36
46
|
"docs:serve": "vitepress serve docs --port 5000",
|
|
37
47
|
"cypress": "cypress run --e2e",
|
|
38
48
|
"cypress:open": "cypress open --e2e",
|
|
49
|
+
"lint": "eslint ./src",
|
|
50
|
+
"lint:fix": "eslint ./src --fix",
|
|
39
51
|
"test": "vitest",
|
|
40
52
|
"test:debug": "vitest --inspect --no-file-parallelism",
|
|
41
53
|
"test:ci": "vitest run",
|
|
@@ -44,40 +56,39 @@
|
|
|
44
56
|
"prettier:fix": "prettier --write ."
|
|
45
57
|
},
|
|
46
58
|
"dependencies": {
|
|
47
|
-
"@graphql-codegen/cli": "^5.0.
|
|
48
|
-
"@graphql-codegen/schema-ast": "^4.
|
|
49
|
-
"@graphql-codegen/typescript": "^4.0.
|
|
50
|
-
"@graphql-codegen/typescript-generic-sdk": "^4.0.
|
|
51
|
-
"@graphql-codegen/typescript-operations": "^4.
|
|
52
|
-
"@graphql-
|
|
53
|
-
"@
|
|
54
|
-
"@nuxt/
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"minisearch": "^6.3.0"
|
|
59
|
+
"@graphql-codegen/cli": "^5.0.2",
|
|
60
|
+
"@graphql-codegen/schema-ast": "^4.1.0",
|
|
61
|
+
"@graphql-codegen/typescript": "^4.0.8",
|
|
62
|
+
"@graphql-codegen/typescript-generic-sdk": "^4.0.1",
|
|
63
|
+
"@graphql-codegen/typescript-operations": "^4.2.2",
|
|
64
|
+
"@graphql-tools/utils": "^10.2.2",
|
|
65
|
+
"@nuxt/devtools-kit": "1.3.7",
|
|
66
|
+
"@nuxt/kit": "^3.12.2",
|
|
67
|
+
"inquirer": "^9.3.2",
|
|
68
|
+
"minisearch": "^6.3.0",
|
|
69
|
+
"picocolors": "^1.0.1"
|
|
59
70
|
},
|
|
60
71
|
"devDependencies": {
|
|
61
|
-
"@iconify-json/carbon": "^1.1.
|
|
62
|
-
"@nuxt/devtools": "^1.
|
|
63
|
-
"@nuxt/devtools-ui-kit": "1.
|
|
64
|
-
"@nuxt/
|
|
65
|
-
"@nuxt/
|
|
66
|
-
"@
|
|
72
|
+
"@iconify-json/carbon": "^1.1.36",
|
|
73
|
+
"@nuxt/devtools": "^1.3.7",
|
|
74
|
+
"@nuxt/devtools-ui-kit": "1.3.7",
|
|
75
|
+
"@nuxt/eslint": "^0.3.13",
|
|
76
|
+
"@nuxt/module-builder": "^0.8.1",
|
|
77
|
+
"@nuxt/schema": "^3.12.2",
|
|
67
78
|
"@types/capture-console": "^1.0.5",
|
|
68
79
|
"@types/cli-table": "^0.3.4",
|
|
69
80
|
"@types/inquirer": "^9.0.7",
|
|
70
|
-
"cypress": "^13.
|
|
71
|
-
"eslint": "^8.
|
|
81
|
+
"cypress": "^13.12.0",
|
|
82
|
+
"eslint": "^8.57.0",
|
|
72
83
|
"eslint-config-prettier": "^9.1.0",
|
|
73
84
|
"eslint-plugin-prettier": "^5.1.3",
|
|
74
|
-
"jsdoc-to-markdown": "^8.0.
|
|
75
|
-
"nuxt": "^3.
|
|
76
|
-
"prettier": "^3.2
|
|
85
|
+
"jsdoc-to-markdown": "^8.0.1",
|
|
86
|
+
"nuxt": "^3.12.2",
|
|
87
|
+
"prettier": "^3.3.2",
|
|
77
88
|
"strip-ansi": "^7.1.0",
|
|
78
|
-
"typedoc": "^0.
|
|
79
|
-
"typedoc-plugin-markdown": "^
|
|
80
|
-
"vitepress": "^1.
|
|
81
|
-
"vitest": "^1.
|
|
89
|
+
"typedoc": "^0.26.3",
|
|
90
|
+
"typedoc-plugin-markdown": "^4.1.1",
|
|
91
|
+
"vitepress": "^1.2.3",
|
|
92
|
+
"vitest": "^1.6.0"
|
|
82
93
|
}
|
|
83
94
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
const s=(t,r)=>{const o=t.__vccOpts||t;for(const[c,e]of r)o[c]=e;return o};export{s as _};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"id":"71f1ba68-6be9-464d-87d1-1b4b3ac786b2","timestamp":1706680362148,"matcher":{"static":{},"wildcard":{},"dynamic":{}},"prerendered":[]}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
:root{--nui-c-context: 125, 125, 125}html{background-color:#fff}html.dark{background-color:#151515;color:#fff;color-scheme:dark}::-moz-selection{background:#8884}::selection{background:#8884}.shiki .line{display:inline-block;position:relative;width:100%}.shiki.diff .line>span{filter:saturate(.75);opacity:.75}.shiki.diff .line-added,.shiki.diff .line-removed{scroll-margin:5em}.shiki.diff .line-added>span,.shiki.diff .line-removed>span{opacity:1!important;position:inherit;scroll-margin:20px;z-index:100}.shiki.diff .line-added>span{color:#218c3b!important}.shiki.diff .line-removed>span{color:#d15547!important}.shiki .line-added:after{background-color:#43885420;bottom:0;content:"";display:block;left:0;position:absolute;right:0;top:0}.shiki .line-removed:after{background-color:#8f4c3926;bottom:0;content:"";display:block;left:0;position:absolute;right:0;top:0}::view-transition-new(root),::view-transition-old(root){animation:none;mix-blend-mode:normal}::view-transition-old(root){z-index:1}::view-transition-new(root){z-index:2147483646}.dark::view-transition-old(root){z-index:2147483646}.dark::view-transition-new(root){z-index:1}*,:after,:before{border-color:var(--un-default-border-color, #e5e7eb);border-style:solid;border-width:0;box-sizing:border-box}:after,:before{--un-content: ""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-tap-highlight-color:transparent}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-size:1em;font-variation-settings:normal}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-feature-settings:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}*,:after,:before{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 transparent;--un-ring-shadow:0 0 transparent;--un-shadow-inset: ;--un-shadow:0 0 transparent;--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 transparent;--un-ring-shadow:0 0 transparent;--un-shadow-inset: ;--un-shadow:0 0 transparent;--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }@font-face{font-display:swap;font-family:DM Mono;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/dmmono/v14/aFTU7PB1QTsUX8KYthSQBLyM.woff2) format("woff2");unicode-range:u+0100-02af,u+0304,u+0308,u+0329,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20cf,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-display:swap;font-family:DM Mono;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/dmmono/v14/aFTU7PB1QTsUX8KYthqQBA.woff2) format("woff2");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+2074,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}@font-face{font-display:swap;font-family:DM Sans;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxRR232VGM.woff2) format("woff2");unicode-range:u+0100-02af,u+0304,u+0308,u+0329,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20cf,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-display:swap;font-family:DM Sans;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxRSW32.woff2) format("woff2");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+2074,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}.carbon-chevron-down{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' display='inline-block' vertical-align='middle' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M16 22L6 12l1.4-1.4l8.6 8.6l8.6-8.6L26 12z'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;display:inline-block;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:middle;width:1.2em}.carbon-search{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' display='inline-block' vertical-align='middle' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m29 27.586l-7.552-7.552a11.018 11.018 0 1 0-1.414 1.414L27.586 29ZM4 13a9 9 0 1 1 9 9a9.01 9.01 0 0 1-9-9'/%3E%3C/svg%3E");background-color:currentColor;color:inherit;display:inline-block;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:middle;width:1.2em}.n-icon{flex:none}.n-border-base{border-color:#9ca3af33}.dark .n-bg-base{--un-bg-opacity:1;background-color:rgb(21 21 21 / var(--un-bg-opacity))}.n-bg-base,.n-code-block{--un-bg-opacity:1;background-color:rgb(255 255 255 / var(--un-bg-opacity))}.dark .n-code-block{--un-bg-opacity:1;background-color:rgb(18 18 18 / var(--un-bg-opacity))}.hover\:n-bg-hover:hover{background-color:#9ca3af08}.hover\:n-link-hover:hover{--un-text-opacity:1;color:rgba(var(--nui-c-context),var(--un-text-opacity));-webkit-text-decoration-color:rgba(var(--nui-c-context),var(--un-line-opacity))!important;--un-line-opacity:1 !important;opacity:1!important;text-decoration-color:rgba(var(--nui-c-context),var(--un-line-opacity))!important;text-decoration-style:dotted}.n-link-base{text-decoration-color:#0003;text-decoration-line:underline;text-underline-offset:2px}.dark .n-link-base{text-decoration-color:#fff6}.focus-within\:n-focus-base:focus-within{--un-ring-width:2px;--un-ring-offset-shadow:var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow:var(--un-ring-inset) 0 0 0 calc(var(--un-ring-width) + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow),var(--un-ring-shadow),var(--un-shadow);--un-ring-color:rgba(var(--nui-c-context),.5)}.n-transition{transition-duration:.15s;transition-duration:.2s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.pointer-events-none{pointer-events:none}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.-bottom-1\/2{bottom:-50%}.left-0{left:0}.right-0{right:0}.top-0{top:0}.z-10{z-index:10}.z-20{z-index:20}.grid{display:grid}.mx-0\.5{margin-left:.125rem;margin-right:.125rem}.mb-16{margin-bottom:4rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.mb3{margin-bottom:.75rem}.mb4{margin-bottom:1rem}.ml-0\.3em{margin-left:.3em}.ml-0\.4em{margin-left:.4em}.ml2{margin-left:.5rem}.mr-0\.1em{margin-right:.1em}.mt1{margin-top:.25rem}.inline-block{display:inline-block}.h-1\/2{height:50%}.h-auto{height:auto}.h-full,[h-full=""]{height:100%}.h1{height:.25rem}.h2{height:.5rem}.max-w-520px{max-width:520px}.min-h-screen{min-height:100vh}.w-full{width:100%}.flex,[flex~="~"]{display:flex}.flex-1{flex:1 1 0%}.flex-auto{flex:1 1 auto}.flex-col,[flex~=col]{flex-direction:column}.transform{transform:translate(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z))}.cursor-pointer,[cursor-pointer=""]{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.place-content-center{place-content:center}.place-self-start,[place-self-start=""]{place-self:start}.items-center,[items-center=""]{align-items:center}.justify-center{justify-content:center}.flex-gap2,.gap2,[flex~=gap2]{gap:.5rem}.gap-3,[flex~=gap-3]{gap:.75rem}.of-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-y-auto{overflow-y:auto}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.whitespace-nowrap{white-space:nowrap}.b,.border{border-width:1px}.border-r{border-right-width:1px}[border~=b]{border-bottom-width:1px}.focus-within\:border-context:focus-within{--un-border-opacity:1;border-color:rgba(var(--nui-c-context),var(--un-border-opacity))}.border-b-gray-800{--un-border-opacity:1;--un-border-bottom-opacity:var(--un-border-opacity);border-bottom-color:rgb(31 41 55 / var(--un-border-bottom-opacity))}.border-r-gray-800{--un-border-opacity:1;--un-border-right-opacity:var(--un-border-opacity);border-right-color:rgb(31 41 55 / var(--un-border-right-opacity))}.rounded{border-radius:.25rem}.rounded-t-md{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.border-none{border-style:none}.bg-black\/5{background-color:#0000000d}.bg-gray-400\:10{background-color:#9ca3af1a}.bg-green-400\:10{background-color:#4ade801a}.bg-orange-400\:10{background-color:#fb923c1a}.bg-red-900{--un-bg-opacity:1;background-color:rgb(127 29 29 / var(--un-bg-opacity))}.bg-white{--un-bg-opacity:1;background-color:rgb(255 255 255 / var(--un-bg-opacity))}.dark .dark\:bg-black{--un-bg-opacity:1;background-color:rgb(0 0 0 / var(--un-bg-opacity))}.dark .dark\:bg-white\/10{background-color:#ffffff1a}.p-8{padding:2rem}.p2{padding:.5rem}.p3{padding:.75rem}.p4{padding:1rem}.p5{padding:1.25rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.px-10{padding-left:2.5rem;padding-right:2.5rem}.px-4,.px4{padding-left:1rem;padding-right:1rem}.px-8{padding-left:2rem;padding-right:2rem}.px2{padding-left:.5rem;padding-right:.5rem}.py-0\.5{padding-bottom:.125rem;padding-top:.125rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.py-2,.py2{padding-bottom:.5rem;padding-top:.5rem}.pb6{padding-bottom:1.5rem}.pl-1{padding-left:.25rem}.pr-2,.pr2{padding-right:.5rem}.pt-14{padding-top:3.5rem}.pt2{padding-top:.5rem}.text-center{text-align:center}.text-left{text-align:left}.text-1\.1em{font-size:1.1em}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-6xl{font-size:3.75rem;line-height:1}.text-8xl{font-size:6rem;line-height:1}.text-base,[text-base=""]{font-size:1rem;line-height:1.5rem}.text-sm,[text-sm=""]{font-size:.875rem;line-height:1.25rem}.text-xl,[text-xl=""]{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.dark .dark\:text-white{--un-text-opacity:1;color:rgb(255 255 255 / var(--un-text-opacity))}.text-black{--un-text-opacity:1;color:rgb(0 0 0 / var(--un-text-opacity))}.text-gray{--un-text-opacity:1;color:rgb(156 163 175 / var(--un-text-opacity))}.text-green-400{--un-text-opacity:1;color:rgb(74 222 128 / var(--un-text-opacity))}.text-orange-400{--un-text-opacity:1;color:rgb(251 146 60 / var(--un-text-opacity))}.text-red-100{--un-text-opacity:1;color:rgb(254 226 226 / var(--un-text-opacity))}.text-red-500{--un-text-opacity:1;color:rgb(239 68 68 / var(--un-text-opacity))}.text-truegray{--un-text-opacity:1;color:rgb(163 163 163 / var(--un-text-opacity))}.font-bold{font-weight:700}.font-light{font-weight:300}.font-medium{font-weight:500}.leading-tight{line-height:1.25}.font-mono{font-family:DM Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.font-sans{font-family:DM Sans,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.group:hover .group-hover\:opacity-100,.op100{opacity:1}.op50,[op50=""]{opacity:.5}.op60{opacity:.6}.op75,[op75=""]{opacity:.75}.opacity-0{opacity:0}.\!outline-none{outline:2px solid transparent!important;outline-offset:2px!important}.transition,[transition=""]{transition-duration:.15s;transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-500,[duration-500=""]{transition-duration:.5s}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}@media (min-width:640px){.sm\:px-0{padding-left:0;padding-right:0}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:py-3{padding-bottom:.75rem;padding-top:.75rem}.sm\:text-2xl{font-size:1.5rem;line-height:2rem}.sm\:text-4xl{font-size:2.25rem;line-height:2.5rem}.sm\:text-8xl{font-size:6rem;line-height:1}.sm\:text-xl{font-size:1.25rem;line-height:1.75rem}}
|