nimbus-docs 0.1.10 → 0.1.12

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/content.d.ts CHANGED
@@ -50,7 +50,7 @@ interface PartialsCollectionOptions<TFields extends Record<string, z.ZodTypeAny>
50
50
  */
51
51
  declare function docsCollection<TFields extends Record<string, z.ZodTypeAny> = Record<string, never>>(options?: DocsCollectionOptions<TFields>): {
52
52
  loader: astro_loaders0.Loader;
53
- schema: z.ZodObject<(("prev" | "next" | "title" | "description" | "mode" | "sidebar" | "head" | "banner" | "draft" | "noindex" | "searchable" | "tableOfContents" | "lastUpdated" | "socialImage" | "previousSlug" | "external_link") & keyof TFields extends never ? {
53
+ schema: z.ZodObject<(("prev" | "next" | "title" | "description" | "mode" | "hideChildren" | "sidebar" | "head" | "banner" | "draft" | "noindex" | "searchable" | "tableOfContents" | "lastUpdated" | "socialImage" | "previousSlug" | "external_link") & keyof TFields extends never ? {
54
54
  title: z.ZodString;
55
55
  description: z.ZodOptional<z.ZodString>;
56
56
  mode: z.ZodDefault<z.ZodEnum<{
@@ -90,9 +90,9 @@ declare function docsCollection<TFields extends Record<string, z.ZodTypeAny> = R
90
90
  danger: "danger";
91
91
  }>>;
92
92
  }, z.core.$strip>]>>;
93
- hideIndex: z.ZodOptional<z.ZodBoolean>;
94
93
  }, z.core.$strip>>;
95
94
  }, z.core.$strip>]>>;
95
+ hideChildren: z.ZodOptional<z.ZodBoolean>;
96
96
  head: z.ZodDefault<z.ZodArray<z.ZodObject<{
97
97
  tag: z.ZodEnum<{
98
98
  title: "title";
@@ -178,9 +178,9 @@ declare function docsCollection<TFields extends Record<string, z.ZodTypeAny> = R
178
178
  danger: "danger";
179
179
  }>>;
180
180
  }, z.core.$strip>]>>;
181
- hideIndex: z.ZodOptional<z.ZodBoolean>;
182
181
  }, z.core.$strip>>;
183
182
  }, z.core.$strip>]>>;
183
+ hideChildren: z.ZodOptional<z.ZodBoolean>;
184
184
  head: z.ZodDefault<z.ZodArray<z.ZodObject<{
185
185
  tag: z.ZodEnum<{
186
186
  title: "title";
@@ -237,13 +237,13 @@ declare function docsCollection<TFields extends Record<string, z.ZodTypeAny> = R
237
237
  */
238
238
  declare function partialsCollection<TFields extends Record<string, z.ZodTypeAny> = Record<string, never>>(options?: PartialsCollectionOptions<TFields>): {
239
239
  loader: astro_loaders0.Loader;
240
- schema: z.ZodDefault<z.ZodObject<{
241
- params: z.ZodOptional<z.ZodArray<z.ZodString>>;
242
- }, z.core.$strip>> | z.ZodObject<("params" & keyof TFields extends never ? {
240
+ schema: z.ZodObject<("params" & keyof TFields extends never ? {
243
241
  params: z.ZodOptional<z.ZodArray<z.ZodString>>;
244
242
  } & { -readonly [P in keyof TFields]: TFields[P] } : ({
245
243
  params: z.ZodOptional<z.ZodArray<z.ZodString>>;
246
- } extends infer T_1 extends z.core.util.SomeObject ? { [K in keyof T_1 as K extends keyof TFields ? never : K]: T_1[K] } : never) & { [K_1 in keyof { -readonly [P in keyof TFields]: TFields[P] }]: { -readonly [P in keyof TFields]: TFields[P] }[K_1] }) extends infer T ? { [k in keyof T]: T[k] } : never, z.core.$strip>;
244
+ } extends infer T_1 extends z.core.util.SomeObject ? { [K in keyof T_1 as K extends keyof TFields ? never : K]: T_1[K] } : never) & { [K_1 in keyof { -readonly [P in keyof TFields]: TFields[P] }]: { -readonly [P in keyof TFields]: TFields[P] }[K_1] }) extends infer T ? { [k in keyof T]: T[k] } : never, z.core.$strip> | z.ZodDefault<z.ZodObject<{
245
+ params: z.ZodOptional<z.ZodArray<z.ZodString>>;
246
+ }, z.core.$strip>>;
247
247
  };
248
248
  interface ComponentsCollectionOptions {
249
249
  /**
@@ -3,9 +3,8 @@
3
3
  * The diagnostic envelope — the single shape every Nimbus check flows
4
4
  * through, from build validators to authoring rules to (eventually) Vale.
5
5
  *
6
- * Locked in Phase 0. Extending it later is a versioned schema bump, not a
7
- * field tacked on in a minor see the cross-phase invariants in the
8
- * authoring-lints plan. Positions are the unist `Point` Sätteri's parser
6
+ * The shape is stable: extending it later is a versioned schema bump, not a
7
+ * field tacked on in a minor. Positions are the unist `Point` Sätteri's parser
9
8
  * already emits (1-based line/column plus a character offset), so a
10
9
  * diagnostic, a `--fix` edit range, and the pretty formatter's caret all
11
10
  * read from the one AST the renderer built.
@@ -117,8 +116,8 @@ interface DiagnosticFix {
117
116
  interface Diagnostic {
118
117
  code: RuleCode;
119
118
  severity: Severity;
120
- /** Which tool produced this. Reserved so Phase 4 can merge Vale into the
121
- * same envelope without a breaking change. */
119
+ /** Which tool produced this. Reserved so a future Vale integration can
120
+ * merge into the same envelope without a breaking change. */
122
121
  source: "docs-compiler" | "vale";
123
122
  message: string;
124
123
  /** Path relative to the project root. */
@@ -133,4 +132,4 @@ interface Diagnostic {
133
132
  }
134
133
  //#endregion
135
134
  export { Severity as a, RuleCode as i, Diagnostic as n, SeverityConfig as o, DiagnosticFix as r, AuthoringRuleCode as t };
136
- //# sourceMappingURL=diagnostic-ewiZxpSO.d.ts.map
135
+ //# sourceMappingURL=diagnostic-CnxJwVpT.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"diagnostic-CnxJwVpT.d.ts","names":[],"sources":["../src/lint/diagnostic.ts"],"mappings":";;AAwBA;;;;;;;;;;;;;;;;;;;;;;cAAa,UAAA;EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KA2BD,QAAA,gBAAwB,UAAA;;;;;;AAgCpC;;KAvBY,iBAAA,WACJ,QAAA,WAAmB,UAAA,EAAY,CAAA;EAAa,IAAA;AAAA,IAC9C,CAAA,WAEJ,QAAA;;;KAIU,QAAA;;KAGA,cAAA,GAAiB,QAAA;AAAA,UAEZ,aAAA;EAgBf;EAdA,WAAA;EAkBA;;;;EAbA,KAAA,EAAO,KAAA;IAAQ,KAAA;IAAyB,IAAA;EAAA;AAAA;AAAA,UAGzB,UAAA;EACf,IAAA,EAAM,QAAA;EACN,QAAA,EAAU,QAAA;;;EAGV,MAAA;EACA,OAAA;;EAEA,IAAA;;EAEA,IAAA;;EAEA,MAAA;EACA,OAAA;EACA,SAAA;EACA,GAAA,GAAM,aAAA;AAAA"}
package/dist/index.d.ts CHANGED
@@ -1,8 +1,9 @@
1
- import { o as SeverityConfig, t as AuthoringRuleCode } from "./diagnostic-ewiZxpSO.js";
2
- import { BadgeVariant, Breadcrumb, NimbusConfig, PrevNext, PrevNextLink, PrevNextOverrides, ResolvedVersions, SearchProvider, SearchResult, SidebarBadge, SidebarConfig, SidebarConfigItem, SidebarExternalLinkItem, SidebarGroupItem, SidebarItem, SidebarLinkItem, SidebarSection, TOCItem, VersionAlternateRecord, VersionAlternatesTable, VersionPageRef, VersionStatus, VersionsConfig } from "./types.js";
1
+ import { o as SeverityConfig, t as AuthoringRuleCode } from "./diagnostic-CnxJwVpT.js";
2
+ import { BadgeVariant, Breadcrumb, NimbusConfig, PrevNext, PrevNextLink, PrevNextOverrides, ResolvedVersions, SearchProvider, SearchResult, SidebarBadge, SidebarConfig, SidebarConfigItem, SidebarExternalLinkItem, SidebarGroupItem, SidebarItem, SidebarLinkItem, SidebarSection, SidebarTransform, TOCItem, VersionAlternateRecord, VersionAlternatesTable, VersionPageRef, VersionStatus, VersionsConfig } from "./types.js";
3
3
  import mdx from "@astrojs/mdx";
4
4
  import * as astro_content0 from "astro:content";
5
5
  import { CollectionEntry } from "astro:content";
6
+ import * as astro_runtime_server_index_js0 from "astro/runtime/server/index.js";
6
7
  import { AstroGlobal, AstroIntegration, GetStaticPaths } from "astro";
7
8
 
8
9
  //#region src/_internal/content.d.ts
@@ -63,6 +64,23 @@ interface MarkdownEntry {
63
64
  */
64
65
  declare function renderEntryAsMarkdown(entry: MarkdownEntry, options?: RenderEntryAsMarkdownOptions): string;
65
66
  //#endregion
67
+ //#region src/_internal/navigation.d.ts
68
+ /**
69
+ * Resolve a crumb's label. Return a string to override the node label,
70
+ * `null` to drop the crumb, or `undefined` to keep it. May be async.
71
+ */
72
+ type BreadcrumbResolveLabel = (ctx: {
73
+ node: SidebarItem;
74
+ slug: string;
75
+ }) => string | null | undefined | Promise<string | null | undefined>;
76
+ interface BreadcrumbOptions {
77
+ root?: {
78
+ label: string;
79
+ href: string;
80
+ };
81
+ resolveLabel?: BreadcrumbResolveLabel;
82
+ }
83
+ //#endregion
66
84
  //#region src/lint/config.d.ts
67
85
  /** A single rule's config: a bare severity, or `[severity, options]`. */
68
86
  type RuleSetting = SeverityConfig | [SeverityConfig, Record<string, unknown>];
@@ -92,9 +110,8 @@ type CollectionsConfig = Record<string, CollectionLintConfig>;
92
110
  * the component embeds, or null if the component isn't a partial-embedder
93
111
  * (Tabs, Aside, etc.) or the props don't match a known pattern.
94
112
  *
95
- * Pattern borrowed from mvvmm's cloudflare-docs PR supports the
96
- * multi-prop case (`<Render file="setup" product="workers" />`
97
- * `partials/workers/setup.mdx`) that single-prop string regex can't
113
+ * Supports the multi-prop case (`<Render file="setup" product="workers" />`
114
+ * `partials/workers/setup.mdx`) that single-prop string regex can't
98
115
  * capture.
99
116
  */
100
117
  type PartialResolverHook = (componentName: string, props: Record<string, string>) => string | null;
@@ -131,8 +148,7 @@ interface NimbusIntegrationOptions {
131
148
  *
132
149
  * The `serialize` callback runs once per URL and may return modified
133
150
  * fields (e.g. `lastmod` from git) or `null`/`undefined` to drop the
134
- * URL. Cloudflare-docs's pattern of git-sourced `lastmod` is the
135
- * motivating case.
151
+ * URL. Git-sourced `lastmod` is the motivating case.
136
152
  */
137
153
  sitemap?: boolean | SitemapOptions;
138
154
  /**
@@ -155,7 +171,7 @@ interface NimbusIntegrationOptions {
155
171
  * ```
156
172
  *
157
173
  * Trade-off: the Sätteri performance win goes away. Worth it for sites
158
- * that depend on unified-ecosystem plugins (CF docs uses seven).
174
+ * that depend on several unified-ecosystem plugins.
159
175
  *
160
176
  * @default `satteri()`
161
177
  */
@@ -214,7 +230,7 @@ interface NimbusIntegrationOptions {
214
230
  * Authoring-lint severity overrides for `nimbus-docs lint`. Maps a rule
215
231
  * code to `"error" | "warn" | "off"` or a `[severity, options]` tuple.
216
232
  * Build validators are rejected here — they have no severity knob.
217
- * Omitted = every authoring rule on at `error`.
233
+ * Authoring rules are off by default; omitted means none run.
218
234
  *
219
235
  * These are materialized to `.nimbus/lint.json` at config setup so the
220
236
  * standalone `nimbus-docs lint` CLI can read them. The build itself is
@@ -266,7 +282,7 @@ interface NimbusIntegrationOptions {
266
282
  *
267
283
  * The default resolver covers the standard `<Render file="topic/slug" />`
268
284
  * pattern shipping with Nimbus's starter. Sites with multi-prop
269
- * conventions need their own cloudflare-docs is the motivating case:
285
+ * conventions (e.g. a `product` prop routed into the path) need their own:
270
286
  *
271
287
  * @example
272
288
  * partialResolver: (name, props) => {
@@ -1219,8 +1235,15 @@ declare function defaultCodeTransformers(): ShikiTransformer[];
1219
1235
  */
1220
1236
  declare function defineConfig<T extends NimbusConfig>(config: T): T;
1221
1237
  interface IndexedEntry {
1222
- /** The Astro CollectionEntry, untyped at the union level. */
1223
- entry: astro_content0.CollectionEntry<string>;
1238
+ /**
1239
+ * The Astro CollectionEntry, widened to the union of every registered
1240
+ * collection (`CollectionKey`). Using the bare `string` argument here
1241
+ * resolves to `never` in a consumer's project — Astro's real
1242
+ * `CollectionEntry<C extends CollectionKey>` has no string index
1243
+ * signature, so `CollectionEntry<string>` collapses and `.id`/`.data`
1244
+ * vanish. `CollectionKey` keeps the field usable across collections.
1245
+ */
1246
+ entry: astro_content0.CollectionEntry<astro_content0.CollectionKey>;
1224
1247
  /** Collection this entry belongs to (e.g. `"docs"`, `"blog"`). */
1225
1248
  collection: string;
1226
1249
  /** Display title — schema field if present, otherwise the entry id. */
@@ -1228,23 +1251,17 @@ interface IndexedEntry {
1228
1251
  /** Description — undefined when the schema doesn't expose one or it's empty. */
1229
1252
  description: string | undefined;
1230
1253
  /**
1231
- * Page URL path under the site (no origin). Browser-facing form:
1232
- * trailing slash on HTML document routes (`/getting-started/`) so
1233
- * `<a href>` consumers don't trigger a redirect on static hosts that
1234
- * canonicalize directory-index pages. The primary docs collection
1235
- * mounts at the site root, every other collection mounts under its
1236
- * name (`/api/payments/create/`, `/blog/my-first-post/`). Routes
1237
- * building `.md` alternates should consume `markdownUrl` rather than
1238
- * deriving from this field — the root-index case (`/`) needs a
1239
- * different shape than the trailing-slash-strip recipe produces.
1254
+ * Site-relative page URL (no origin), with a trailing slash on HTML
1255
+ * document routes. The primary docs collection mounts at root; every
1256
+ * other collection mounts under its name (`/blog/my-first-post/`). For
1257
+ * `.md` alternates use `markdownUrl`, not this field — the root-index
1258
+ * case (`/`) needs a different shape.
1240
1259
  */
1241
1260
  url: string;
1242
1261
  /**
1243
- * Site-relative URL of the page's clean-markdown alternate. Mirrors
1244
- * the path the per-page `.md` route emits: `/getting-started/index.md`
1245
- * for an entry at `/getting-started/`, `/index.md` for the root-index
1246
- * entry. Consumers (`llms.txt`, the `.md` route's `Source:` line)
1247
- * should use this directly instead of synthesizing from `url`.
1262
+ * Site-relative URL of the page's clean-markdown alternate, e.g.
1263
+ * `/getting-started/index.md` (or `/index.md` for the root entry).
1264
+ * Consumers should use this directly rather than synthesizing from `url`.
1248
1265
  */
1249
1266
  markdownUrl: string;
1250
1267
  }
@@ -1258,22 +1275,17 @@ interface IndexedTopLevelGroup {
1258
1275
  /**
1259
1276
  * What kind of group this is:
1260
1277
  * - `"primary"` — a folder inside the primary `docs` collection.
1261
- * - `"secondary"` — a separate non-version, non-primary collection
1262
- * (`blog`, `api`, `changelog`, …).
1263
- * - `"version"` an older docs version (`docs-v1`, `docs-v2`, …)
1264
- * when versioning is configured. Routes that build the **root**
1265
- * `/llms.txt` should typically filter these out (old versions
1266
- * pollute the entry point); routes that emit per-section files
1267
- * should include them so `/v1/llms.txt` still ships.
1278
+ * - `"secondary"` — a separate non-version collection (`blog`, `api`, …).
1279
+ * - `"version"` — an older docs version (`docs-v1`, …). The root
1280
+ * `/llms.txt` typically filters these out; per-section files
1281
+ * include them so `/v1/llms.txt` still ships.
1268
1282
  */
1269
1283
  kind: "primary" | "secondary" | "version";
1270
1284
  /**
1271
- * True when this group is a version collection listed in
1272
- * `versions.hidden`. Hidden versions are URL-reachable but should
1273
- * not surface on any indexing or discovery surface — neither root
1274
- * `/llms.txt` nor a per-section `/<slug>/llms.txt`. Pagefind
1275
- * exclusion happens per-page via `data-pagefind-ignore`. Routes that
1276
- * emit per-section files should skip groups where `hidden === true`.
1285
+ * True for a version collection listed in `versions.hidden`. Hidden
1286
+ * versions stay URL-reachable but are kept off indexing surfaces
1287
+ * (root and per-section `llms.txt`); per-section routes should skip
1288
+ * groups where `hidden === true`.
1277
1289
  */
1278
1290
  hidden: boolean;
1279
1291
  }
@@ -1354,6 +1366,7 @@ declare function getIndexedTopLevel(): Promise<IndexedTopLevel>;
1354
1366
  */
1355
1367
  declare function getSidebar(currentSlug: string, options?: {
1356
1368
  collection?: string;
1369
+ transform?: SidebarTransform;
1357
1370
  }): Promise<SidebarItem[]>;
1358
1371
  /**
1359
1372
  * Derive one section per top-level group in the sidebar — used by
@@ -1388,14 +1401,75 @@ declare function getPrevNext(currentSlug: string, options?: {
1388
1401
  sidebarTree?: SidebarItem[];
1389
1402
  }): Promise<PrevNext>;
1390
1403
  /**
1391
- * Build breadcrumb trail from "/" to the current page.
1392
- *
1393
- * Phase 5: simple URL-segment derivation. Later phases may enrich with
1394
- * sidebar-aware labels.
1404
+ * Build the breadcrumb trail from the active node's ancestry in the nav
1405
+ * tree. Labels come from nav nodes, hrefs from each node's landing — so a
1406
+ * section crumb links to its real landing page and segments with no node
1407
+ * never appear. Index-less folders render as non-interactive crumbs.
1408
+ *
1409
+ * - `collection` — the page's Astro collection; pass `entry.collection` so
1410
+ * versioned pages get version-prefixed hrefs.
1411
+ * - `root` — the leading crumb (default `{ label: "Home", href: "/" }`).
1412
+ * - `resolveLabel` — override a crumb label, or return `null` to drop it.
1413
+ *
1414
+ * Falls back to URL-segment derivation when the page has no node in the
1415
+ * tree, so a stray page still gets a root-anchored trail.
1395
1416
  */
1396
1417
  declare function getBreadcrumbs(currentSlug: string, options?: {
1397
- homeLabel?: string;
1398
- }): Promise<Breadcrumb[]>;
1418
+ collection?: string;
1419
+ } & BreadcrumbOptions): Promise<Breadcrumb[]>;
1420
+ /** Resolves a section's display titles. May be async. */
1421
+ type SectionTitleResolver = (ctx: {
1422
+ sectionSlug: string;
1423
+ module?: string;
1424
+ indexEntryId?: string;
1425
+ }) => SectionTitle | undefined | Promise<SectionTitle | undefined>;
1426
+ /** A section's rail and breadcrumb titles, which may differ. */
1427
+ interface SectionTitle {
1428
+ rail?: string;
1429
+ breadcrumb?: string;
1430
+ }
1431
+ /**
1432
+ * Resolve a section's display title(s) for the current page, decoupled so
1433
+ * the rail header and the breadcrumb can differ.
1434
+ *
1435
+ * Derives `sectionSlug` (seg0) and `module` (seg1) from the slug and passes
1436
+ * them to a caller-supplied resolver. The resolver is an argument rather
1437
+ * than config because config is JSON-serialized and cannot carry functions.
1438
+ * `indexEntryId` is currently always `undefined`.
1439
+ */
1440
+ declare function getSectionTitle(currentSlug: string, resolve: SectionTitleResolver): Promise<SectionTitle | undefined>;
1441
+ interface RouteNavigationOptions {
1442
+ /** The current route's pathname. */
1443
+ path: string;
1444
+ /** A real nav node URL to mark active and end the ancestry trail at. */
1445
+ section: string;
1446
+ /** Crumbs appended after the section trail; a leaf with no href is current. */
1447
+ trail?: Breadcrumb[];
1448
+ /** When `false` (default), prev/next is omitted. */
1449
+ prevNext?: boolean;
1450
+ /** The page's collection, for version-prefixed hrefs. */
1451
+ collection?: string;
1452
+ /** Forwarded to the internal breadcrumb build. */
1453
+ resolveLabel?: BreadcrumbOptions["resolveLabel"];
1454
+ }
1455
+ interface RouteNavigation {
1456
+ breadcrumbs: Breadcrumb[];
1457
+ sidebar: SidebarItem[];
1458
+ /** The href marked active in the sidebar (the `section`). */
1459
+ activeHref: string;
1460
+ prevNext?: PrevNext;
1461
+ }
1462
+ /**
1463
+ * Navigation (breadcrumbs, sidebar active-state, optional prev/next) for a
1464
+ * data-driven route with no content entry of its own — e.g. a catalog page
1465
+ * under `src/pages/[...].astro`.
1466
+ *
1467
+ * Builds the breadcrumb trail to `section` (a real nav node) and appends
1468
+ * `trail` (the leaf). The sidebar is built with `section` as the active
1469
+ * path, so the section node highlights even though the leaf is not in the
1470
+ * tree — the leaf is never injected, keeping the tree and prev/next clean.
1471
+ */
1472
+ declare function getRouteNavigation(options: RouteNavigationOptions): Promise<RouteNavigation>;
1399
1473
  /**
1400
1474
  * Build an edit URL for a content entry using `config.editPattern`.
1401
1475
  *
@@ -1480,7 +1554,7 @@ declare const getDocsStaticPaths: GetStaticPaths;
1480
1554
  */
1481
1555
  declare function getDocsPageProps(astro: AstroGlobal): Promise<{
1482
1556
  entry: astro_content0.CollectionEntry<"docs">;
1483
- Content: unknown;
1557
+ Content: astro_runtime_server_index_js0.AstroComponentFactory;
1484
1558
  headings: {
1485
1559
  depth: number;
1486
1560
  text: string;
@@ -1522,7 +1596,7 @@ declare function getCollectionStaticPaths(collection: string): GetStaticPaths;
1522
1596
  */
1523
1597
  declare function getCollectionPageProps<C extends string>(astro: AstroGlobal): Promise<{
1524
1598
  entry: astro_content0.CollectionEntry<C>;
1525
- Content: unknown;
1599
+ Content: astro_runtime_server_index_js0.AstroComponentFactory;
1526
1600
  headings: {
1527
1601
  depth: number;
1528
1602
  text: string;
@@ -1677,5 +1751,5 @@ declare function getCollectionLlmsUrl(collectionId: string): Promise<string>;
1677
1751
  declare function getVersionLandingUrl(version: string): Promise<string | null>;
1678
1752
  declare function getVersionStatus(collectionId: string): Promise<VersionStatus | null>;
1679
1753
  //#endregion
1680
- export { type BadgeVariant, type Breadcrumb, IndexedEntry, IndexedTopLevel, IndexedTopLevelGroup, type NimbusConfig, type NimbusIntegrationOptions, type PrevNext, type PrevNextLink, type PrevNextOverrides, type ResolvedVersions, type SearchProvider, type SearchResult, type SidebarBadge, type SidebarConfig, type SidebarConfigItem, type SidebarExternalLinkItem, type SidebarGroupItem, type SidebarItem, type SidebarLinkItem, type SidebarSection, type TOCItem, type VersionAlternateRecord, type VersionAlternatesTable, type VersionPageRef, type VersionStatus, type VersionsConfig, nimbus as default, defaultCodeTransformers, defineConfig, getBreadcrumbs, getCanonicalUrl, getCollectionLlmsUrl, getCollectionPageProps, getCollectionStaticPaths, getCurrentVersion, getDocsPageProps, getDocsStaticPaths, getEditUrl, getIndexedEntries, getIndexedTopLevel, getLastUpdated, getPrevNext, getSidebar, getSidebarSections, getTOC, getVersionAlternates, getVersionLandingUrl, getVersionStatus, getVersions, getVisibleEntries, renderEntryAsMarkdown, sidebarHash };
1754
+ export { type BadgeVariant, type Breadcrumb, IndexedEntry, IndexedTopLevel, IndexedTopLevelGroup, type NimbusConfig, type NimbusIntegrationOptions, type PrevNext, type PrevNextLink, type PrevNextOverrides, type ResolvedVersions, RouteNavigation, RouteNavigationOptions, type SearchProvider, type SearchResult, SectionTitle, SectionTitleResolver, type SidebarBadge, type SidebarConfig, type SidebarConfigItem, type SidebarExternalLinkItem, type SidebarGroupItem, type SidebarItem, type SidebarLinkItem, type SidebarSection, type SidebarTransform, type TOCItem, type VersionAlternateRecord, type VersionAlternatesTable, type VersionPageRef, type VersionStatus, type VersionsConfig, nimbus as default, defaultCodeTransformers, defineConfig, getBreadcrumbs, getCanonicalUrl, getCollectionLlmsUrl, getCollectionPageProps, getCollectionStaticPaths, getCurrentVersion, getDocsPageProps, getDocsStaticPaths, getEditUrl, getIndexedEntries, getIndexedTopLevel, getLastUpdated, getPrevNext, getRouteNavigation, getSectionTitle, getSidebar, getSidebarSections, getTOC, getVersionAlternates, getVersionLandingUrl, getVersionStatus, getVersions, getVisibleEntries, renderEntryAsMarkdown, sidebarHash };
1681
1755
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","names":["Data","Point","line","column","offset","Position","start","end","Literal","Node","value","type","data","position","Parent","children","Data","UnistData","Literal","UnistLiteral","Node","UnistNode","Parent","UnistParent","Properties","Array","PropertyName","ElementContent","ElementContentMap","Comment","Element","Text","comment","element","text","RootContent","RootContentMap","Doctype","doctype","Content","Literals","Nodes","Extract","Root","Parents","data","value","children","CommentData","type","DoctypeData","ElementData","tagName","properties","content","RootData","TextData","ruleIdSymbol","RuleId","__brand","endRuleId","IRuleRegistry","T","Rule","getRule","ruleId","registerRule","id","factory","IGrammarRegistry","IRawRepository","IRawGrammar","getExternalGrammar","scopeName","repository","IRuleFactoryHelper","ILocation","IOnigCaptureIndex","RegExpSourceList","IOnigLib","RegExpString","CompiledRule","$location","_nameIsCapturing","_name","_contentNameIsCapturing","_contentName","constructor","name","contentName","dispose","debugName","getName","lineText","captureIndices","getContentName","collectPatterns","grammar","out","compile","endRegexSource","compileAG","allowA","allowG","RegExpSource","TRuleId","source","hasAnchor","hasBackReferences","_anchorCache","regExpSource","clone","setSource","newSource","resolveBackReferences","_buildAnchorCache","resolveAnchors","_items","_hasAnchors","_cached","_disposeCaches","push","item","unshift","length","index","onigLib","_resolveAnchors","OnigString","FindOption","OrMask","IFindNextMatchResult","regExps","rules","scanner","toString","findNextMatchSync","string","startPosition","options","ScopeName","IRawRule","ILocatable","patterns","injections","expression","injectionSelector","fileTypes","firstLineMatch","IncludeString","RegExp","IRawRepositoryMap","IRawCaptures","include","match","captures","begin","beginCaptures","end","endCaptures","while","whileCaptures","applyEndPatternLast","IRawCapturesMap","captureId","filename","line","char","$vscodeTextmateLocation","OnigScanner","createOnigScanner","sources","createOnigString","str","start","IOnigMatch","None","NotBeginString","NotEndString","NotBeginPosition","DebugCall","content","disposeOnigString","Theme","IRawTheme","ParsedThemeRule","ColorMap","StyleAttributes","ThemeTrieElement","ScopeStack","_colorMap","_defaults","_root","createFromRawTheme","colorMap","createFromParsedTheme","_cachedMatchRoot","getColorMap","getDefaults","scopePath","ScopePath","ScopePattern","IRawThemeSetting","settings","scope","fontStyle","foreground","background","parent","path","scopeNames","from","first","segments","getSegments","extends","other","getExtensionIfDefined","base","FontStyle","foregroundId","backgroundId","parentScopes","NotSet","Italic","Bold","Underline","Strikethrough","_isFrozen","_lastColorId","_id2color","_color2id","getId","color","ThemeTrieElementRule","scopeDepth","cloneArr","arr","acceptOverwrite","ITrieChildrenMap","segment","_mainRule","_children","_rulesWithParentScopes","rulesWithParentScopes","_cmpBySpecificity","insert","_doInsertHere","EncodedTokenAttributes","EncodedTokenMetadata","StandardTokenType","OptionalStandardTokenType","toBinaryStr","encodedTokenAttributes","print","getLanguageId","getTokenType","containsBalancedBrackets","getFontStyle","getForeground","getBackground","set","languageId","tokenType","Other","Comment","String","RegEx","Matcher","matcherInput","BasicScopeAttributes","IThemeProvider","themeMatch","IGrammarRepository","lookup","Injection","debugSelector","matcher","priority","Grammar","IEmbeddedLanguagesMap","ITokenTypeMap","BalancedBracketSelectors","StateStackImpl","ITokenizeLineResult","ITokenizeLineResult2","IGrammar","_rootScopeName","balancedBracketSelectors","_onigLib","_rootId","_lastRuleId","_ruleId2desc","_includedGrammars","_grammarRepository","_grammar","_injections","_basicScopeAttributesProvider","_tokenTypeMatchers","themeProvider","initialLanguage","embeddedLanguages","tokenTypes","grammarRepository","getMetadataForScope","_collectInjections","getInjections","tokenizeLine","prevState","timeLimit","tokenizeLine2","_tokenize","AttributedScopeStack","AttributedScopeStackFrame","tokenAttributes","fromExtension","namesScopeList","contentNameScopesList","createRoot","createRootAndLookUpScopeName","equals","a","b","mergeAttributes","pushAttributed","_pushAttributed","getScopeNames","StateStackFrame","StateStack","beginRuleCapturedEOL","endRule","nameScopesList","_stackElementBrand","NULL","_enterPos","_anchorPos","depth","enterPos","anchorPos","_equals","_structuralEquals","_reset","reset","pop","safePop","getEnterPos","getAnchorPos","_writeString","withContentNameScopesList","contentNameScopeStack","withEndRule","hasSameRuleAs","toStateStackFrame","pushFrame","self","frame","balancedBracketScopes","unbalancedBracketScopes","allowAny","matchesAlways","matchesNever","scopes","SyncRegistry","Map","_grammars","_rawGrammars","_injectionGrammars","_theme","theme","setTheme","addGrammar","injectionScopeNames","targetScope","grammarForScopeName","StackDiff","pops","newFrames","RegistryOptions","loadGrammar","selector","IGrammarConfiguration","unbalancedBracketSelectors","Registry","_options","_syncRegistry","_ensureGrammarCache","loadGrammarWithEmbeddedLanguages","initialScopeName","loadGrammarWithConfiguration","configuration","_loadGrammar","_loadSingleGrammar","_doLoadSingleGrammar","rawGrammar","_grammarForScopeName","IToken","tokens","ruleStack","stoppedEarly","Uint32Array","startIndex","endIndex","INITIAL","Element","Root","FontStyle","IGrammar","IRawGrammar","RawGrammar","IRawTheme","RawTheme","IRawThemeSetting","RawThemeSetting","OnigScanner","OnigString","StateStack","Awaitable","T","Promise","MaybeGetter","MaybeModule","default","MaybeArray","RequireKeys","K","Omit","Pick","Required","Nothing","StringLiteralUnion","U","PatternScanner","RegexEngineString","RegexEngine","RegExp","createScanner","patterns","createString","s","WebAssemblyInstantiator","WebAssembly","ImportValue","Record","WebAssemblyInstance","importObject","WebAssemblyInstantiatedSource","Instance","OnigurumaLoadOptions","ArrayBufferView","ArrayBuffer","Response","instantiator","data","LoadWasmOptionsPlain","LoadWasmOptions","Grammar","name","PlainTextLanguage","AnsiLanguage","SpecialLanguage","LanguageInput","LanguageRegistration","ResolveBundleKey","scopeName","displayName","aliases","embeddedLangs","embeddedLanguages","embeddedLangsLazy","balancedBracketSelectors","unbalancedBracketSelectors","foldingStopMarker","foldingStartMarker","injectTo","BundledLanguageInfo","DynamicImportLanguageRegistration","id","import","DecorationOptions","DecorationItem","decorations","OffsetOrPosition","DecorationTransformType","start","end","tagName","properties","transform","element","type","alwaysWrap","ResolvedDecorationItem","ResolvedPosition","Position","line","character","Offset","offset","SpecialTheme","ThemeInput","ThemeRegistrationAny","ThemeRegistrationRaw","ThemeRegistration","Partial","ThemeRegistrationResolved","settings","tokenColors","fg","bg","colorReplacements","colors","$schema","semanticHighlighting","semanticTokenColors","DynamicImportThemeRegistration","BundledThemeInfo","GrammarState","lang","theme","themes","getInternalStack","getScopes","CodeToTokensBaseOptions","Languages","Themes","TokenizeWithThemeOptions","CodeToTokensOptions","CodeOptionsThemes","CodeToTokensWithThemesOptions","ThemedTokenScopeExplanation","themeMatches","ThemedTokenExplanation","content","scopes","ThemedToken","TokenStyles","TokenBase","explanation","color","bgColor","fontStyle","htmlStyle","htmlAttrs","ThemedTokenWithVariants","variants","includeExplanation","tokenizeMaxLineLength","tokenizeTimeLimit","grammarState","grammarContextCode","TokensResult","tokens","themeName","rootStyle","TransformerOptions","ShikiTransformer","transformers","ShikiTransformerContextMeta","ShikiTransformerContextCommon","CodeToHastOptions","meta","options","codeToHast","code","codeToTokens","ShikiTransformerContextSource","source","ShikiTransformerContext","root","pre","lines","structure","addClassToHast","hast","className","enforce","preprocess","this","span","col","lineElement","token","postprocess","html","HighlighterCoreOptions","Sync","engine","langs","langAlias","warnings","BundledHighlighterOptions","L","CodeOptionsSingleTheme","CodeOptionsMultipleThemes","defaultColor","colorsRendering","cssVariablePrefix","CodeToHastOptionsCommon","CodeOptionsMeta","mergeWhitespaces","mergeSameStyleTokens","tabindex","__raw","key","CodeToHastRenderOptionsCommon","langId","CodeToHastRenderOptions","GrammarStateMapKey","ShikiPrimitive","BundledLangKeys","BundledThemeKeys","Symbol","dispose","loadTheme","loadThemeSync","loadLanguage","loadLanguageSync","getTheme","getLanguage","setTheme","colorMap","resolveLangAlias","getLoadedLanguages","getLoadedThemes","HighlighterGeneric","codeToHtml","codeToTokensBase","codeToTokensWithThemes","getLastGrammarState","getInternalContext","getBundledLanguages","getBundledThemes","HighlighterCore","CreateBundledHighlighterOptions","BundledLangs","BundledThemes","CreatedBundledHighlighterOptions","CreateHighlighterFactory","ShikiError","Error","constructor","message"],"sources":["../src/_internal/content.ts","../src/_internal/sidebar.ts","../src/_internal/transform.ts","../src/lint/config.ts","../src/_internal/incremental/partial-refs.ts","../src/_internal/incremental/sitemap.ts","../src/integration.ts","../../../node_modules/.pnpm/@types+unist@3.0.3/node_modules/@types/unist/index.d.ts","../../../node_modules/.pnpm/@types+hast@3.0.4/node_modules/@types/hast/index.d.ts","../../../node_modules/.pnpm/@shikijs+vscode-textmate@10.0.2/node_modules/@shikijs/vscode-textmate/dist/index.d.ts","../../../node_modules/.pnpm/@shikijs+types@4.1.0/node_modules/@shikijs/types/dist/index.d.mts","../src/_internal/code-transformers.ts","../src/index.ts"],"x_google_ignoreList":[7,8,9,10],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","names":["Data","Point","line","column","offset","Position","start","end","Literal","Node","value","type","data","position","Parent","children","Data","UnistData","Literal","UnistLiteral","Node","UnistNode","Parent","UnistParent","Properties","Array","PropertyName","ElementContent","ElementContentMap","Comment","Element","Text","comment","element","text","RootContent","RootContentMap","Doctype","doctype","Content","Literals","Nodes","Extract","Root","Parents","data","value","children","CommentData","type","DoctypeData","ElementData","tagName","properties","content","RootData","TextData","ruleIdSymbol","RuleId","__brand","endRuleId","IRuleRegistry","T","Rule","getRule","ruleId","registerRule","id","factory","IGrammarRegistry","IRawRepository","IRawGrammar","getExternalGrammar","scopeName","repository","IRuleFactoryHelper","ILocation","IOnigCaptureIndex","RegExpSourceList","IOnigLib","RegExpString","CompiledRule","$location","_nameIsCapturing","_name","_contentNameIsCapturing","_contentName","constructor","name","contentName","dispose","debugName","getName","lineText","captureIndices","getContentName","collectPatterns","grammar","out","compile","endRegexSource","compileAG","allowA","allowG","RegExpSource","TRuleId","source","hasAnchor","hasBackReferences","_anchorCache","regExpSource","clone","setSource","newSource","resolveBackReferences","_buildAnchorCache","resolveAnchors","_items","_hasAnchors","_cached","_disposeCaches","push","item","unshift","length","index","onigLib","_resolveAnchors","OnigString","FindOption","OrMask","IFindNextMatchResult","regExps","rules","scanner","toString","findNextMatchSync","string","startPosition","options","ScopeName","IRawRule","ILocatable","patterns","injections","expression","injectionSelector","fileTypes","firstLineMatch","IncludeString","RegExp","IRawRepositoryMap","IRawCaptures","include","match","captures","begin","beginCaptures","end","endCaptures","while","whileCaptures","applyEndPatternLast","IRawCapturesMap","captureId","filename","line","char","$vscodeTextmateLocation","OnigScanner","createOnigScanner","sources","createOnigString","str","start","IOnigMatch","None","NotBeginString","NotEndString","NotBeginPosition","DebugCall","content","disposeOnigString","Theme","IRawTheme","ParsedThemeRule","ColorMap","StyleAttributes","ThemeTrieElement","ScopeStack","_colorMap","_defaults","_root","createFromRawTheme","colorMap","createFromParsedTheme","_cachedMatchRoot","getColorMap","getDefaults","scopePath","ScopePath","ScopePattern","IRawThemeSetting","settings","scope","fontStyle","foreground","background","parent","path","scopeNames","from","first","segments","getSegments","extends","other","getExtensionIfDefined","base","FontStyle","foregroundId","backgroundId","parentScopes","NotSet","Italic","Bold","Underline","Strikethrough","_isFrozen","_lastColorId","_id2color","_color2id","getId","color","ThemeTrieElementRule","scopeDepth","cloneArr","arr","acceptOverwrite","ITrieChildrenMap","segment","_mainRule","_children","_rulesWithParentScopes","rulesWithParentScopes","_cmpBySpecificity","insert","_doInsertHere","EncodedTokenAttributes","EncodedTokenMetadata","StandardTokenType","OptionalStandardTokenType","toBinaryStr","encodedTokenAttributes","print","getLanguageId","getTokenType","containsBalancedBrackets","getFontStyle","getForeground","getBackground","set","languageId","tokenType","Other","Comment","String","RegEx","Matcher","matcherInput","BasicScopeAttributes","IThemeProvider","themeMatch","IGrammarRepository","lookup","Injection","debugSelector","matcher","priority","Grammar","IEmbeddedLanguagesMap","ITokenTypeMap","BalancedBracketSelectors","StateStackImpl","ITokenizeLineResult","ITokenizeLineResult2","IGrammar","_rootScopeName","balancedBracketSelectors","_onigLib","_rootId","_lastRuleId","_ruleId2desc","_includedGrammars","_grammarRepository","_grammar","_injections","_basicScopeAttributesProvider","_tokenTypeMatchers","themeProvider","initialLanguage","embeddedLanguages","tokenTypes","grammarRepository","getMetadataForScope","_collectInjections","getInjections","tokenizeLine","prevState","timeLimit","tokenizeLine2","_tokenize","AttributedScopeStack","AttributedScopeStackFrame","tokenAttributes","fromExtension","namesScopeList","contentNameScopesList","createRoot","createRootAndLookUpScopeName","equals","a","b","mergeAttributes","pushAttributed","_pushAttributed","getScopeNames","StateStackFrame","StateStack","beginRuleCapturedEOL","endRule","nameScopesList","_stackElementBrand","NULL","_enterPos","_anchorPos","depth","enterPos","anchorPos","_equals","_structuralEquals","_reset","reset","pop","safePop","getEnterPos","getAnchorPos","_writeString","withContentNameScopesList","contentNameScopeStack","withEndRule","hasSameRuleAs","toStateStackFrame","pushFrame","self","frame","balancedBracketScopes","unbalancedBracketScopes","allowAny","matchesAlways","matchesNever","scopes","SyncRegistry","Map","_grammars","_rawGrammars","_injectionGrammars","_theme","theme","setTheme","addGrammar","injectionScopeNames","targetScope","grammarForScopeName","StackDiff","pops","newFrames","RegistryOptions","loadGrammar","selector","IGrammarConfiguration","unbalancedBracketSelectors","Registry","_options","_syncRegistry","_ensureGrammarCache","loadGrammarWithEmbeddedLanguages","initialScopeName","loadGrammarWithConfiguration","configuration","_loadGrammar","_loadSingleGrammar","_doLoadSingleGrammar","rawGrammar","_grammarForScopeName","IToken","tokens","ruleStack","stoppedEarly","Uint32Array","startIndex","endIndex","INITIAL","Element","Root","FontStyle","IGrammar","IRawGrammar","RawGrammar","IRawTheme","RawTheme","IRawThemeSetting","RawThemeSetting","OnigScanner","OnigString","StateStack","Awaitable","T","Promise","MaybeGetter","MaybeModule","default","MaybeArray","RequireKeys","K","Omit","Pick","Required","Nothing","StringLiteralUnion","U","PatternScanner","RegexEngineString","RegexEngine","RegExp","createScanner","patterns","createString","s","WebAssemblyInstantiator","WebAssembly","ImportValue","Record","WebAssemblyInstance","importObject","WebAssemblyInstantiatedSource","Instance","OnigurumaLoadOptions","ArrayBufferView","ArrayBuffer","Response","instantiator","data","LoadWasmOptionsPlain","LoadWasmOptions","Grammar","name","PlainTextLanguage","AnsiLanguage","SpecialLanguage","LanguageInput","LanguageRegistration","ResolveBundleKey","scopeName","displayName","aliases","embeddedLangs","embeddedLanguages","embeddedLangsLazy","balancedBracketSelectors","unbalancedBracketSelectors","foldingStopMarker","foldingStartMarker","injectTo","BundledLanguageInfo","DynamicImportLanguageRegistration","id","import","DecorationOptions","DecorationItem","decorations","OffsetOrPosition","DecorationTransformType","start","end","tagName","properties","transform","element","type","alwaysWrap","ResolvedDecorationItem","ResolvedPosition","Position","line","character","Offset","offset","SpecialTheme","ThemeInput","ThemeRegistrationAny","ThemeRegistrationRaw","ThemeRegistration","Partial","ThemeRegistrationResolved","settings","tokenColors","fg","bg","colorReplacements","colors","$schema","semanticHighlighting","semanticTokenColors","DynamicImportThemeRegistration","BundledThemeInfo","GrammarState","lang","theme","themes","getInternalStack","getScopes","CodeToTokensBaseOptions","Languages","Themes","TokenizeWithThemeOptions","CodeToTokensOptions","CodeOptionsThemes","CodeToTokensWithThemesOptions","ThemedTokenScopeExplanation","themeMatches","ThemedTokenExplanation","content","scopes","ThemedToken","TokenStyles","TokenBase","explanation","color","bgColor","fontStyle","htmlStyle","htmlAttrs","ThemedTokenWithVariants","variants","includeExplanation","tokenizeMaxLineLength","tokenizeTimeLimit","grammarState","grammarContextCode","TokensResult","tokens","themeName","rootStyle","TransformerOptions","ShikiTransformer","transformers","ShikiTransformerContextMeta","ShikiTransformerContextCommon","CodeToHastOptions","meta","options","codeToHast","code","codeToTokens","ShikiTransformerContextSource","source","ShikiTransformerContext","root","pre","lines","structure","addClassToHast","hast","className","enforce","preprocess","this","span","col","lineElement","token","postprocess","html","HighlighterCoreOptions","Sync","engine","langs","langAlias","warnings","BundledHighlighterOptions","L","CodeOptionsSingleTheme","CodeOptionsMultipleThemes","defaultColor","colorsRendering","cssVariablePrefix","CodeToHastOptionsCommon","CodeOptionsMeta","mergeWhitespaces","mergeSameStyleTokens","tabindex","__raw","key","CodeToHastRenderOptionsCommon","langId","CodeToHastRenderOptions","GrammarStateMapKey","ShikiPrimitive","BundledLangKeys","BundledThemeKeys","Symbol","dispose","loadTheme","loadThemeSync","loadLanguage","loadLanguageSync","getTheme","getLanguage","setTheme","colorMap","resolveLangAlias","getLoadedLanguages","getLoadedThemes","HighlighterGeneric","codeToHtml","codeToTokensBase","codeToTokensWithThemes","getLastGrammarState","getInternalContext","getBundledLanguages","getBundledThemes","HighlighterCore","CreateBundledHighlighterOptions","BundledLangs","BundledThemes","CreatedBundledHighlighterOptions","CreateHighlighterFactory","ShikiError","Error","constructor","message"],"sources":["../src/_internal/content.ts","../src/_internal/sidebar.ts","../src/_internal/transform.ts","../src/_internal/navigation.ts","../src/lint/config.ts","../src/_internal/incremental/partial-refs.ts","../src/_internal/incremental/sitemap.ts","../src/integration.ts","../../../node_modules/.pnpm/@types+unist@3.0.3/node_modules/@types/unist/index.d.ts","../../../node_modules/.pnpm/@types+hast@3.0.4/node_modules/@types/hast/index.d.ts","../../../node_modules/.pnpm/@shikijs+vscode-textmate@10.0.2/node_modules/@shikijs/vscode-textmate/dist/index.d.ts","../../../node_modules/.pnpm/@shikijs+types@4.1.0/node_modules/@shikijs/types/dist/index.d.mts","../src/_internal/code-transformers.ts","../src/index.ts"],"x_google_ignoreList":[8,9,10,11],"mappings":"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"}