@ngrok/mantle 0.0.38 → 0.0.40

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/assets/mantle.css CHANGED
@@ -1479,6 +1479,10 @@
1479
1479
  body {
1480
1480
  @apply bg-white text-gray-900;
1481
1481
  }
1482
+
1483
+ strong {
1484
+ @apply font-medium;
1485
+ }
1482
1486
  }
1483
1487
 
1484
1488
  @layer utilities {
@@ -1,5 +1,7 @@
1
1
  export { CodeBlock, CodeBlockBody, CodeBlockCode, CodeBlockCopyButton, CodeBlockExpanderButton, CodeBlockHeader, CodeBlockTitle, } from "./src/code-block";
2
2
  export { fmtCode } from "./src/fmt-code";
3
- export { parseMetastring } from "./src/parse-metastring";
4
- export { isSupportedLanguage, parseLanguage, supportedLanguages } from "./src/supported-languages";
3
+ export { defaultMeta, parseMetastring } from "./src/parse-metastring";
4
+ export type { Meta, MetaInput, Mode, DefaultMeta } from "./src/parse-metastring";
5
+ export { formatLanguageClassName, isSupportedLanguage, parseLanguage, supportedLanguages, } from "./src/supported-languages";
6
+ export type { SupportedLanguage } from "./src/supported-languages";
5
7
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../components/code-block/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EACN,SAAS,EACT,aAAa,EACb,aAAa,EACb,mBAAmB,EACnB,uBAAuB,EACvB,eAAe,EACf,cAAc,GACd,MAAM,kBAAkB,CAAC;AAE1B,OAAO,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AACzC,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,EAAE,mBAAmB,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,2BAA2B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../components/code-block/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EACN,SAAS,EACT,aAAa,EACb,aAAa,EACb,mBAAmB,EACnB,uBAAuB,EACvB,eAAe,EACf,cAAc,GACd,MAAM,kBAAkB,CAAC;AAE1B,OAAO,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AACzC,OAAO,EAAE,WAAW,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACtE,YAAY,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAC;AACjF,OAAO,EACN,uBAAuB,EACvB,mBAAmB,EACnB,aAAa,EACb,kBAAkB,GAClB,MAAM,2BAA2B,CAAC;AACnC,YAAY,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC"}
@@ -30,7 +30,7 @@ declare const CodeBlockCode: import("react").ForwardRefExoticComponent<WithStyle
30
30
  /**
31
31
  * The language of the code block. This will be used to determine how to syntax highlight the code. @default `"text"`.
32
32
  */
33
- language?: "text" | "html" | "ruby" | "plaintext" | "bash" | "cs" | "csharp" | "css" | "dotnet" | "go" | "java" | "javascript" | "js" | "json" | "jsx" | "plain" | "py" | "python" | "rb" | "rust" | "sh" | "shell" | "ts" | "tsx" | "txt" | "typescript" | "yaml" | "yml" | undefined;
33
+ language?: "text" | "html" | "ruby" | "plaintext" | "bash" | "cs" | "csharp" | "css" | "dotnet" | "go" | "java" | "javascript" | "js" | "json" | "jsx" | "markup" | "plain" | "py" | "python" | "rb" | "rust" | "sh" | "shell" | "ts" | "tsx" | "txt" | "typescript" | "xml" | "yaml" | "yml" | undefined;
34
34
  /**
35
35
  * @todo not implemented yet
36
36
  */
@@ -1,6 +1,6 @@
1
1
  import { z } from "zod";
2
2
  declare const modes: readonly ["file", "cli"];
3
- export type Mode = (typeof modes)[number];
3
+ type Mode = (typeof modes)[number];
4
4
  declare const metaSchema: z.ZodObject<{
5
5
  collapsible: z.ZodDefault<z.ZodBoolean>;
6
6
  disableCopy: z.ZodDefault<z.ZodBoolean>;
@@ -17,22 +17,24 @@ declare const metaSchema: z.ZodObject<{
17
17
  mode?: "file" | "cli" | undefined;
18
18
  title?: string | undefined;
19
19
  }>;
20
- export type MetaInput = z.input<typeof metaSchema>;
21
- export type Meta = z.infer<typeof metaSchema>;
22
- export declare const defaultMeta: {
20
+ type MetaInput = z.input<typeof metaSchema>;
21
+ type Meta = z.infer<typeof metaSchema>;
22
+ declare const defaultMeta: {
23
23
  readonly collapsible: false;
24
24
  readonly disableCopy: false;
25
25
  readonly mode: undefined;
26
26
  readonly title: undefined;
27
27
  };
28
- export type DefaultMeta = typeof defaultMeta;
28
+ type DefaultMeta = typeof defaultMeta;
29
29
  /**
30
30
  * Parses a markdown code block (```) metastring into a meta object.
31
31
  * Defaults to DefaultMeta if no metastring given or if metastring is invalid.
32
32
  * Useful for parsing the metastring from a markdown code block to pass into the
33
33
  * CodeBlock components as props.
34
34
  */
35
- export declare function parseMetastring(value: string | undefined): Meta;
35
+ declare function parseMetastring(value: string | undefined): Meta;
36
+ export { defaultMeta, parseMetastring };
37
+ export type { Meta, MetaInput, Mode, DefaultMeta };
36
38
  /**
37
39
  * Remove leading and trailing `"` quotes around value
38
40
  * @private
@@ -44,5 +46,4 @@ export declare function normalizeValue(value: string | undefined): string | unde
44
46
  * @private
45
47
  */
46
48
  export declare function tokenizeMetastring(value: string | undefined): string[];
47
- export {};
48
49
  //# sourceMappingURL=parse-metastring.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"parse-metastring.d.ts","sourceRoot":"","sources":["../../../../components/code-block/src/parse-metastring.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,QAAA,MAAM,KAAK,0BAA2B,CAAC;AACvC,MAAM,MAAM,IAAI,GAAG,CAAC,OAAO,KAAK,CAAC,CAAC,MAAM,CAAC,CAAC;AAE1C,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;EAKd,CAAC;AAEH,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC;AAEnD,MAAM,MAAM,IAAI,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC;AAE9C,eAAO,MAAM,WAAW;;;;;CAKC,CAAC;AAE1B,MAAM,MAAM,WAAW,GAAG,OAAO,WAAW,CAAC;AAE7C;;;;;GAKG;AACH,wBAAgB,eAAe,CAAC,KAAK,EAAE,MAAM,GAAG,SAAS,GAAG,IAAI,CA2B/D;AAED;;;GAGG;AACH,wBAAgB,cAAc,CAAC,KAAK,EAAE,MAAM,GAAG,SAAS,sBAEvD;AAED;;;;GAIG;AACH,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,MAAM,GAAG,SAAS,GAAG,MAAM,EAAE,CA0BtE"}
1
+ {"version":3,"file":"parse-metastring.d.ts","sourceRoot":"","sources":["../../../../components/code-block/src/parse-metastring.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,QAAA,MAAM,KAAK,0BAA2B,CAAC;AACvC,KAAK,IAAI,GAAG,CAAC,OAAO,KAAK,CAAC,CAAC,MAAM,CAAC,CAAC;AAEnC,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;EAKd,CAAC;AAEH,KAAK,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC;AAE5C,KAAK,IAAI,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC;AAEvC,QAAA,MAAM,WAAW;;;;;CAKQ,CAAC;AAE1B,KAAK,WAAW,GAAG,OAAO,WAAW,CAAC;AAEtC;;;;;GAKG;AACH,iBAAS,eAAe,CAAC,KAAK,EAAE,MAAM,GAAG,SAAS,GAAG,IAAI,CA2BxD;AAED,OAAO,EAAE,WAAW,EAAE,eAAe,EAAE,CAAC;AACxC,YAAY,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC;AAEnD;;;GAGG;AACH,wBAAgB,cAAc,CAAC,KAAK,EAAE,MAAM,GAAG,SAAS,sBAEvD;AAED;;;;GAIG;AACH,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,MAAM,GAAG,SAAS,GAAG,MAAM,EAAE,CA0BtE"}
@@ -2,23 +2,25 @@
2
2
  * List of supported languages for syntax highlighting.
3
3
  * @private
4
4
  */
5
- export declare const supportedLanguages: readonly ["bash", "cs", "csharp", "css", "dotnet", "go", "html", "java", "javascript", "js", "json", "jsx", "plain", "plaintext", "py", "python", "rb", "ruby", "rust", "sh", "shell", "text", "ts", "tsx", "txt", "typescript", "yaml", "yml"];
5
+ export declare const supportedLanguages: readonly ["bash", "cs", "csharp", "css", "dotnet", "go", "html", "java", "javascript", "js", "json", "jsx", "markup", "plain", "plaintext", "py", "python", "rb", "ruby", "rust", "sh", "shell", "text", "ts", "tsx", "txt", "typescript", "xml", "yaml", "yml"];
6
6
  /**
7
7
  * Supported languages for syntax highlighting.
8
8
  */
9
- export type SupportedLanguage = (typeof supportedLanguages)[number];
9
+ type SupportedLanguage = (typeof supportedLanguages)[number];
10
10
  /**
11
11
  * Parses a markdown code block (```) language class into a SupportedLanguage.
12
12
  * Defaults to "sh" if no supported language is found.
13
13
  */
14
- export declare function parseLanguage(value: `language-${string}` | `lang-${string}` | (string & {}) | undefined): SupportedLanguage;
14
+ declare function parseLanguage(value: `language-${string}` | `lang-${string}` | (string & {}) | undefined): SupportedLanguage;
15
15
  /**
16
16
  * Type Predicate: checks if an arbitrary value is a supported syntax highlighting language.
17
17
  */
18
- export declare const isSupportedLanguage: (value: unknown) => value is "text" | "html" | "ruby" | "plaintext" | "bash" | "cs" | "csharp" | "css" | "dotnet" | "go" | "java" | "javascript" | "js" | "json" | "jsx" | "plain" | "py" | "python" | "rb" | "rust" | "sh" | "shell" | "ts" | "tsx" | "txt" | "typescript" | "yaml" | "yml";
18
+ declare const isSupportedLanguage: (value: unknown) => value is "text" | "html" | "ruby" | "plaintext" | "bash" | "cs" | "csharp" | "css" | "dotnet" | "go" | "java" | "javascript" | "js" | "json" | "jsx" | "markup" | "plain" | "py" | "python" | "rb" | "rust" | "sh" | "shell" | "ts" | "tsx" | "txt" | "typescript" | "xml" | "yaml" | "yml";
19
19
  /**
20
20
  * Formats a language name into a class name that Prism.js can understand.
21
21
  * @default "language-sh"
22
22
  */
23
- export declare function formatLanguageClassName(language?: SupportedLanguage | undefined): "language-text" | "language-html" | "language-ruby" | "language-plaintext" | "language-bash" | "language-cs" | "language-csharp" | "language-css" | "language-dotnet" | "language-go" | "language-java" | "language-javascript" | "language-js" | "language-json" | "language-jsx" | "language-plain" | "language-py" | "language-python" | "language-rb" | "language-rust" | "language-sh" | "language-shell" | "language-ts" | "language-tsx" | "language-txt" | "language-typescript" | "language-yaml" | "language-yml";
23
+ declare function formatLanguageClassName(language?: SupportedLanguage | undefined): "language-text" | "language-html" | "language-ruby" | "language-plaintext" | "language-bash" | "language-cs" | "language-csharp" | "language-css" | "language-dotnet" | "language-go" | "language-java" | "language-javascript" | "language-js" | "language-json" | "language-jsx" | "language-markup" | "language-plain" | "language-py" | "language-python" | "language-rb" | "language-rust" | "language-sh" | "language-shell" | "language-ts" | "language-tsx" | "language-txt" | "language-typescript" | "language-xml" | "language-yaml" | "language-yml";
24
+ export { isSupportedLanguage, parseLanguage, formatLanguageClassName };
25
+ export type { SupportedLanguage };
24
26
  //# sourceMappingURL=supported-languages.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"supported-languages.d.ts","sourceRoot":"","sources":["../../../../components/code-block/src/supported-languages.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,kBAAkB,iPA6BrB,CAAC;AAEX;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG,CAAC,OAAO,kBAAkB,CAAC,CAAC,MAAM,CAAC,CAAC;AAEpE;;;GAGG;AACH,wBAAgB,aAAa,CAC5B,KAAK,EAAE,YAAY,MAAM,EAAE,GAAG,QAAQ,MAAM,EAAE,GAAG,CAAC,MAAM,GAAG,EAAE,CAAC,GAAG,SAAS,GACxE,iBAAiB,CAUnB;AAED;;GAEG;AACH,eAAO,MAAM,mBAAmB,UAAW,OAAO,6QAEjD,CAAC;AAOF;;;GAGG;AACH,wBAAgB,uBAAuB,CAAC,QAAQ,GAAE,iBAAiB,GAAG,SAAgB,+fAIrF"}
1
+ {"version":3,"file":"supported-languages.d.ts","sourceRoot":"","sources":["../../../../components/code-block/src/supported-languages.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,kBAAkB,kQA+BrB,CAAC;AAEX;;GAEG;AACH,KAAK,iBAAiB,GAAG,CAAC,OAAO,kBAAkB,CAAC,CAAC,MAAM,CAAC,CAAC;AAE7D;;;GAGG;AACH,iBAAS,aAAa,CAAC,KAAK,EAAE,YAAY,MAAM,EAAE,GAAG,QAAQ,MAAM,EAAE,GAAG,CAAC,MAAM,GAAG,EAAE,CAAC,GAAG,SAAS,GAAG,iBAAiB,CAUpH;AAED;;GAEG;AACH,QAAA,MAAM,mBAAmB,UAAW,OAAO,gSAE1C,CAAC;AAOF;;;GAGG;AACH,iBAAS,uBAAuB,CAAC,QAAQ,GAAE,iBAAiB,GAAG,SAAgB,oiBAI9E;AAED,OAAO,EAAE,mBAAmB,EAAE,aAAa,EAAE,uBAAuB,EAAE,CAAC;AACvE,YAAY,EAAE,iBAAiB,EAAE,CAAC"}
@@ -55,8 +55,8 @@ declare function preventWrongThemeFlashScriptContent({ defaultTheme, storageKey,
55
55
  * Render as high as possible in the <head> element.
56
56
  */
57
57
  declare const MantleThemeHeadContent: ({ defaultTheme, storageKey, }: {
58
- defaultTheme?: "dark" | "light" | "system" | "light-high-contrast" | "dark-high-contrast" | undefined;
59
- storageKey?: string | undefined;
58
+ defaultTheme?: Theme;
59
+ storageKey?: string;
60
60
  }) => import("react/jsx-runtime").JSX.Element;
61
61
  type InitialThemeProps = {
62
62
  className: string;
@@ -1 +1 @@
1
- {"version":3,"file":"theme-provider.d.ts","sourceRoot":"","sources":["../../../../components/theme-provider/src/theme-provider.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAgB/C;;GAEG;AACH,QAAA,MAAM,MAAM,mFAAoF,CAAC;AAEjG;;GAEG;AACH,KAAK,KAAK,GAAG,CAAC,OAAO,MAAM,CAAC,CAAC,MAAM,CAAC,CAAC;AAErC;;GAEG;AACH,QAAA,MAAM,KAAK,gGAA4B,CAAC,MAAU,CAAC;AAEnD;;GAEG;AACH,iBAAS,OAAO,CAAC,KAAK,EAAE,OAAO,GAAG,KAAK,IAAI,KAAK,CAM/C;AAOD;;GAEG;AACH,KAAK,kBAAkB,GAAG,CAAC,KAAK,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC,KAAK,EAAE,KAAK,KAAK,IAAI,CAAC,CAAC;AA6B3E,KAAK,kBAAkB,GAAG,iBAAiB,GAAG;IAC7C,YAAY,CAAC,EAAE,KAAK,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF;;GAEG;AACH,iBAAS,aAAa,CAAC,EAAE,QAAQ,EAAE,YAAuB,EAAE,UAAgC,EAAE,EAAE,kBAAkB,2CAmDjH;AAED;;;;GAIG;AACH,iBAAS,QAAQ,uBAMhB;AAmCD;;;GAGG;AACH,iBAAS,eAAe,oEAOvB;AAED;;;GAGG;AACH,wBAAgB,4BAA4B,CAAC,EAC5C,eAAe,EACf,mBAAmB,GACnB,EAAE;IACF,eAAe,EAAE,OAAO,CAAC;IACzB,mBAAmB,EAAE,OAAO,CAAC;CAC7B,mEAMA;AAED,iBAAS,mCAAmC,CAAC,EAC5C,YAAuB,EACvB,UAAgC,GAChC,EAAE;IACF,YAAY,CAAC,EAAE,KAAK,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;CACpB,UA6BA;AAED;;;GAGG;AACH,QAAA,MAAM,sBAAsB;;;6CAe3B,CAAC;AAEF,KAAK,iBAAiB,GAAG;IACxB,SAAS,EAAE,MAAM,CAAC;IAClB,oBAAoB,EAAE,IAAI,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;IAC5C,YAAY,EAAE,KAAK,CAAC;CACpB,CAAC;AAEF;;GAEG;AACH,iBAAS,wBAAwB,CAAC,KAAK,CAAC,EAAE;IACzC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,KAAK,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;CACpB,GAAG,iBAAiB,CAuBpB;AAED,YAAY,EAAE,KAAK,EAAE,kBAAkB,EAAE,CAAC;AAC1C,OAAO,EACN,OAAO,EACP,sBAAsB,EACtB,mCAAmC,EACnC,KAAK,EACL,aAAa,EACb,eAAe,EACf,wBAAwB,EACxB,QAAQ,GACR,CAAC"}
1
+ {"version":3,"file":"theme-provider.d.ts","sourceRoot":"","sources":["../../../../components/theme-provider/src/theme-provider.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAgB/C;;GAEG;AACH,QAAA,MAAM,MAAM,mFAAoF,CAAC;AAEjG;;GAEG;AACH,KAAK,KAAK,GAAG,CAAC,OAAO,MAAM,CAAC,CAAC,MAAM,CAAC,CAAC;AAErC;;GAEG;AACH,QAAA,MAAM,KAAK,gGAA4B,CAAC,MAAU,CAAC;AAEnD;;GAEG;AACH,iBAAS,OAAO,CAAC,KAAK,EAAE,OAAO,GAAG,KAAK,IAAI,KAAK,CAM/C;AAOD;;GAEG;AACH,KAAK,kBAAkB,GAAG,CAAC,KAAK,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC,KAAK,EAAE,KAAK,KAAK,IAAI,CAAC,CAAC;AA6B3E,KAAK,kBAAkB,GAAG,iBAAiB,GAAG;IAC7C,YAAY,CAAC,EAAE,KAAK,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF;;GAEG;AACH,iBAAS,aAAa,CAAC,EAAE,QAAQ,EAAE,YAAuB,EAAE,UAAgC,EAAE,EAAE,kBAAkB,2CAmDjH;AAED;;;;GAIG;AACH,iBAAS,QAAQ,uBAMhB;AAmCD;;;GAGG;AACH,iBAAS,eAAe,oEAOvB;AAED;;;GAGG;AACH,wBAAgB,4BAA4B,CAAC,EAC5C,eAAe,EACf,mBAAmB,GACnB,EAAE;IACF,eAAe,EAAE,OAAO,CAAC;IACzB,mBAAmB,EAAE,OAAO,CAAC;CAC7B,mEAMA;AAED,iBAAS,mCAAmC,CAAC,EAC5C,YAAuB,EACvB,UAAgC,GAChC,EAAE;IACF,YAAY,CAAC,EAAE,KAAK,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;CACpB,UA6BA;AAED;;;GAGG;AACH,QAAA,MAAM,sBAAsB,kCAGzB;IACF,YAAY,CAAC,EAAE,KAAK,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;CACpB,4CASA,CAAC;AAEF,KAAK,iBAAiB,GAAG;IACxB,SAAS,EAAE,MAAM,CAAC;IAClB,oBAAoB,EAAE,IAAI,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;IAC5C,YAAY,EAAE,KAAK,CAAC;CACpB,CAAC;AAEF;;GAEG;AACH,iBAAS,wBAAwB,CAAC,KAAK,CAAC,EAAE;IACzC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,KAAK,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;CACpB,GAAG,iBAAiB,CAuBpB;AAED,YAAY,EAAE,KAAK,EAAE,kBAAkB,EAAE,CAAC;AAC1C,OAAO,EACN,OAAO,EACP,sBAAsB,EACtB,mCAAmC,EACnC,KAAK,EACL,aAAa,EACb,eAAe,EACf,wBAAwB,EACxB,QAAQ,GACR,CAAC"}
package/dist/index.js CHANGED
@@ -444,7 +444,9 @@ $parcel$export($467de5d6131f2179$exports, "CodeBlockExpanderButton", function ()
444
444
  $parcel$export($467de5d6131f2179$exports, "CodeBlockHeader", function () { return $3e8792480c5dc036$export$b351deb59183780; });
445
445
  $parcel$export($467de5d6131f2179$exports, "CodeBlockTitle", function () { return $3e8792480c5dc036$export$b5654939a1e891d; });
446
446
  $parcel$export($467de5d6131f2179$exports, "fmtCode", function () { return $bcf58924b06fb166$export$6e62a5150605254a; });
447
+ $parcel$export($467de5d6131f2179$exports, "defaultMeta", function () { return $c58b35aa9fcfa4d0$export$63f5d3298ab11b24; });
447
448
  $parcel$export($467de5d6131f2179$exports, "parseMetastring", function () { return $c58b35aa9fcfa4d0$export$2b83d7916142717; });
449
+ $parcel$export($467de5d6131f2179$exports, "formatLanguageClassName", function () { return $3107245668823796$export$fa66e0e5413be530; });
448
450
  $parcel$export($467de5d6131f2179$exports, "isSupportedLanguage", function () { return $3107245668823796$export$47c66070d6d6cd6d; });
449
451
  $parcel$export($467de5d6131f2179$exports, "parseLanguage", function () { return $3107245668823796$export$dbb82c29aa7faca4; });
450
452
  $parcel$export($467de5d6131f2179$exports, "supportedLanguages", function () { return $3107245668823796$export$1c2c8674a5fbafd; });
@@ -489,6 +491,7 @@ $parcel$export($467de5d6131f2179$exports, "supportedLanguages", function () { re
489
491
  "js",
490
492
  "json",
491
493
  "jsx",
494
+ "markup",
492
495
  "plain",
493
496
  "plaintext",
494
497
  "py",
@@ -503,20 +506,29 @@ $parcel$export($467de5d6131f2179$exports, "supportedLanguages", function () { re
503
506
  "tsx",
504
507
  "txt",
505
508
  "typescript",
509
+ "xml",
506
510
  "yaml",
507
511
  "yml"
508
512
  ];
509
- function $3107245668823796$export$dbb82c29aa7faca4(value) {
513
+ /**
514
+ * Parses a markdown code block (```) language class into a SupportedLanguage.
515
+ * Defaults to "sh" if no supported language is found.
516
+ */ function $3107245668823796$export$dbb82c29aa7faca4(value) {
510
517
  if (!value) return "sh";
511
518
  // remove leading "language-" and "lang-" prefixes
512
519
  // find first '-' and slice from there
513
520
  const maybeLanguage = value.trim().slice(value.indexOf("-") + 1);
514
521
  return $3107245668823796$export$47c66070d6d6cd6d(maybeLanguage) ? maybeLanguage : "sh";
515
522
  }
516
- const $3107245668823796$export$47c66070d6d6cd6d = (value)=>{
523
+ /**
524
+ * Type Predicate: checks if an arbitrary value is a supported syntax highlighting language.
525
+ */ const $3107245668823796$export$47c66070d6d6cd6d = (value)=>{
517
526
  return typeof value === "string" && $3107245668823796$export$1c2c8674a5fbafd.includes(value);
518
527
  };
519
- function $3107245668823796$export$fa66e0e5413be530(language = "sh") {
528
+ /**
529
+ * Formats a language name into a class name that Prism.js can understand.
530
+ * @default "language-sh"
531
+ */ function $3107245668823796$export$fa66e0e5413be530(language = "sh") {
520
532
  const lang = language !== null && language !== void 0 ? language : "sh";
521
533
  const className = `language-${lang}`;
522
534
  return className;
@@ -779,7 +791,12 @@ const $c58b35aa9fcfa4d0$export$63f5d3298ab11b24 = {
779
791
  mode: undefined,
780
792
  title: undefined
781
793
  };
782
- function $c58b35aa9fcfa4d0$export$2b83d7916142717(value) {
794
+ /**
795
+ * Parses a markdown code block (```) metastring into a meta object.
796
+ * Defaults to DefaultMeta if no metastring given or if metastring is invalid.
797
+ * Useful for parsing the metastring from a markdown code block to pass into the
798
+ * CodeBlock components as props.
799
+ */ function $c58b35aa9fcfa4d0$export$2b83d7916142717(value) {
783
800
  var _value_trim;
784
801
  const metastring = (_value_trim = value === null || value === void 0 ? void 0 : value.trim()) !== null && _value_trim !== void 0 ? _value_trim : "";
785
802
  if (!metastring) return $c58b35aa9fcfa4d0$export$63f5d3298ab11b24;
@@ -2013,5 +2030,5 @@ $aae96005fa706805$export$e9003e2be37ec060.displayName = "TooltipContent";
2013
2030
 
2014
2031
 
2015
2032
 
2016
- export {$70398adbd69bc3b3$export$caec2af78bcc877f as Alert, $70398adbd69bc3b3$export$7738e9160ff0021e as AlertContent, $70398adbd69bc3b3$export$4a7253439a300753 as AlertTitle, $70398adbd69bc3b3$export$d4feae172fccda11 as AlertDescription, $d7b44a6bfb86e793$export$b688253958b8dfe7 as Anchor, $d7b44a6bfb86e793$export$86577199b2baf6c3 as anchorClassNames, $c2638d7be6bdca12$export$353f5b6fc5456de1 as Button, $267cd022d92c6243$export$60332b2344f7fe41 as Card, $267cd022d92c6243$export$851de33184ecdac4 as CardBody, $267cd022d92c6243$export$e9897d434e0741ee as CardFooter, $267cd022d92c6243$export$5665775b26e26c5d as CardHeader, $267cd022d92c6243$export$474db65c3c394e1c as CardTitle, $4de59be9540e7045$export$48513f6b9f8ce62d as Checkbox, $3e8792480c5dc036$export$6c415d1fdae3dfdb as CodeBlock, $3e8792480c5dc036$export$7e83364d3e7fd36a as CodeBlockBody, $3e8792480c5dc036$export$1c41328978c69a88 as CodeBlockCode, $3e8792480c5dc036$export$2e9b808b8155db21 as CodeBlockCopyButton, $3e8792480c5dc036$export$2e996d1cfaa94c3d as CodeBlockExpanderButton, $3e8792480c5dc036$export$b351deb59183780 as CodeBlockHeader, $3e8792480c5dc036$export$b5654939a1e891d as CodeBlockTitle, $bcf58924b06fb166$export$6e62a5150605254a as fmtCode, $c58b35aa9fcfa4d0$export$2b83d7916142717 as parseMetastring, $3107245668823796$export$47c66070d6d6cd6d as isSupportedLanguage, $3107245668823796$export$dbb82c29aa7faca4 as parseLanguage, $3107245668823796$export$1c2c8674a5fbafd as supportedLanguages, $a4274013049f8f7f$export$a274e22fb40f762e as cx, $d95638fc63e2fe90$export$3ddf2d174ce01153 as Dialog, $d95638fc63e2fe90$export$dad7c95542bacce0 as DialogPortal, $d95638fc63e2fe90$export$bd1d06c79be19e17 as DialogOverlay, $d95638fc63e2fe90$export$2e1e1122cf0cba88 as DialogTrigger, $d95638fc63e2fe90$export$fba2fb7cd781b7ac as DialogClose, $d95638fc63e2fe90$export$b6d9565de1e068cf as DialogContent, $d95638fc63e2fe90$export$742513523b177e3b as DialogHeader, $d95638fc63e2fe90$export$5d20f2c38fcde41f as DialogBody, $d95638fc63e2fe90$export$7bbfb2d443473050 as DialogFooter, $d95638fc63e2fe90$export$16f7638e4a34b909 as DialogTitle, $d95638fc63e2fe90$export$94e94c2ec2c954d5 as DialogDescription, $a54417aeb05f1278$export$e44a253a59704894 as DropdownMenu, $a54417aeb05f1278$export$d2469213b3befba9 as DropdownMenuTrigger, $a54417aeb05f1278$export$6e76d93a37c01248 as DropdownMenuContent, $a54417aeb05f1278$export$ed97964d1871885d as DropdownMenuItem, $a54417aeb05f1278$export$53a69729da201fa9 as DropdownMenuCheckboxItem, $a54417aeb05f1278$export$e4f69b41b1637536 as DropdownMenuRadioItem, $a54417aeb05f1278$export$76e48c5b57f24495 as DropdownMenuLabel, $a54417aeb05f1278$export$da160178fd3bc7e9 as DropdownMenuSeparator, $a54417aeb05f1278$export$b1e098e2962e8df5 as DropdownMenuShortcut, $84b8ef66c3139332$export$f04a61298a47a40f as Icon, $be9526d49a216cc9$export$7f1bf47c7f50a6aa as InlineCode, $69de6bdb0e8d2083$export$f5b8910cec6cf069 as Input, $69de6bdb0e8d2083$export$a000a5208d0f14c1 as InputCapture, $750bb60d221b9046$export$b28585a458fee016 as PasswordInput, $1efa43e76774bcf1$export$c5be64db09f93414 as MediaObject, $1efa43e76774bcf1$export$a850f92726a1f836 as MediaObjectMedia, $1efa43e76774bcf1$export$8d93ffc9d5ebcf0c as MediaObjectContent, $e1568f28b56f66ee$export$5b6b19405a83ff9d as Popover, $e1568f28b56f66ee$export$7dacb05d26466c3 as PopoverTrigger, $e1568f28b56f66ee$export$d7e1f420b25549ff as PopoverContent, $b0b413c594e2809e$export$ef9b1a59e592288f as Select, $b0b413c594e2809e$export$c973a4b3cb86a03d as SelectContent, $b0b413c594e2809e$export$ee25a334c55de1f4 as SelectGroup, $b0b413c594e2809e$export$f67338d29bd972f8 as SelectLabel, $b0b413c594e2809e$export$13ef48a934230896 as SelectItem, $b0b413c594e2809e$export$eba4b1df07cb1d3 as SelectSeparator, $b0b413c594e2809e$export$3ac1e88a1c0b9f1 as SelectTrigger, $b0b413c594e2809e$export$e288731fd71264f0 as SelectValue, $0e4ef6b27c1ec376$export$1ff3c3f08ae963c0 as Separator, $de4859618f6880e3$export$a9bf29f8d87ebbee as Sheet, $de4859618f6880e3$export$8e574df6e3b8d781 as SheetBody, $de4859618f6880e3$export$99d85c8298ee6511 as SheetClose, $de4859618f6880e3$export$fe5ec5b76996e2d3 as SheetContent, $de4859618f6880e3$export$2ee64bd945b80e4a as SheetDescription, $de4859618f6880e3$export$1adeb0155503ee5a as SheetFooter, $de4859618f6880e3$export$de7da2aaa45f2eb5 as SheetHeader, $de4859618f6880e3$export$48dbb295cbd054d8 as SheetOverlay, $de4859618f6880e3$export$721c917f47f6cb as SheetPortal, $de4859618f6880e3$export$4bb009ae36731de9 as SheetTitle, $de4859618f6880e3$export$de69b9b0343a1903 as SheetTrigger, $53866fd1feac4bca$export$8f31e4c4a37b8e9c as Skeleton, $fd75fdf931689c59$export$54ec01a60f47d33d as Table, $fd75fdf931689c59$export$f850895b287ef28e as TableHeader, $fd75fdf931689c59$export$76ccd210b9029917 as TableBody, $fd75fdf931689c59$export$1f116082bba1f9a8 as TableFooter, $fd75fdf931689c59$export$2f4a7be4f0dcc2 as TableHead, $fd75fdf931689c59$export$b05581f4e764e162 as TableRow, $fd75fdf931689c59$export$1e4baea7053fc0e3 as TableCell, $fd75fdf931689c59$export$35468a455d619eb3 as TableCaption, $a6907629e3ef14e9$export$f5c9f3c2c4054eec as TextArea, $dda3493dd750e32f$export$af55aa65d73bedf7 as MantleThemeHeadContent, $dda3493dd750e32f$export$d8964aec282183a3 as ThemeProvider, $dda3493dd750e32f$export$6b08dcdbd4008308 as isTheme, $dda3493dd750e32f$export$1dca76bcd3720cbb as preventWrongThemeFlashScriptContent, $dda3493dd750e32f$export$bca14c5b3b88a9c9 as theme, $dda3493dd750e32f$export$9335dc9d919c3613 as useAppliedTheme, $dda3493dd750e32f$export$4132e7bcc6139686 as useInitialHtmlThemeProps, $dda3493dd750e32f$export$93d4e7f90805808f as useTheme, $380730b2f4c100d4$export$24c8fb0221e74d36 as PreloadFonts, $aae96005fa706805$export$28c660c63b792dea as Tooltip, $aae96005fa706805$export$8c610744efcf8a1d as TooltipTrigger, $aae96005fa706805$export$e9003e2be37ec060 as TooltipContent, $aae96005fa706805$export$f78649fb9ca566b8 as TooltipProvider};
2033
+ export {$70398adbd69bc3b3$export$caec2af78bcc877f as Alert, $70398adbd69bc3b3$export$7738e9160ff0021e as AlertContent, $70398adbd69bc3b3$export$4a7253439a300753 as AlertTitle, $70398adbd69bc3b3$export$d4feae172fccda11 as AlertDescription, $d7b44a6bfb86e793$export$b688253958b8dfe7 as Anchor, $d7b44a6bfb86e793$export$86577199b2baf6c3 as anchorClassNames, $c2638d7be6bdca12$export$353f5b6fc5456de1 as Button, $267cd022d92c6243$export$60332b2344f7fe41 as Card, $267cd022d92c6243$export$851de33184ecdac4 as CardBody, $267cd022d92c6243$export$e9897d434e0741ee as CardFooter, $267cd022d92c6243$export$5665775b26e26c5d as CardHeader, $267cd022d92c6243$export$474db65c3c394e1c as CardTitle, $4de59be9540e7045$export$48513f6b9f8ce62d as Checkbox, $3e8792480c5dc036$export$6c415d1fdae3dfdb as CodeBlock, $3e8792480c5dc036$export$7e83364d3e7fd36a as CodeBlockBody, $3e8792480c5dc036$export$1c41328978c69a88 as CodeBlockCode, $3e8792480c5dc036$export$2e9b808b8155db21 as CodeBlockCopyButton, $3e8792480c5dc036$export$2e996d1cfaa94c3d as CodeBlockExpanderButton, $3e8792480c5dc036$export$b351deb59183780 as CodeBlockHeader, $3e8792480c5dc036$export$b5654939a1e891d as CodeBlockTitle, $bcf58924b06fb166$export$6e62a5150605254a as fmtCode, $c58b35aa9fcfa4d0$export$63f5d3298ab11b24 as defaultMeta, $c58b35aa9fcfa4d0$export$2b83d7916142717 as parseMetastring, $3107245668823796$export$fa66e0e5413be530 as formatLanguageClassName, $3107245668823796$export$47c66070d6d6cd6d as isSupportedLanguage, $3107245668823796$export$dbb82c29aa7faca4 as parseLanguage, $3107245668823796$export$1c2c8674a5fbafd as supportedLanguages, $a4274013049f8f7f$export$a274e22fb40f762e as cx, $d95638fc63e2fe90$export$3ddf2d174ce01153 as Dialog, $d95638fc63e2fe90$export$dad7c95542bacce0 as DialogPortal, $d95638fc63e2fe90$export$bd1d06c79be19e17 as DialogOverlay, $d95638fc63e2fe90$export$2e1e1122cf0cba88 as DialogTrigger, $d95638fc63e2fe90$export$fba2fb7cd781b7ac as DialogClose, $d95638fc63e2fe90$export$b6d9565de1e068cf as DialogContent, $d95638fc63e2fe90$export$742513523b177e3b as DialogHeader, $d95638fc63e2fe90$export$5d20f2c38fcde41f as DialogBody, $d95638fc63e2fe90$export$7bbfb2d443473050 as DialogFooter, $d95638fc63e2fe90$export$16f7638e4a34b909 as DialogTitle, $d95638fc63e2fe90$export$94e94c2ec2c954d5 as DialogDescription, $a54417aeb05f1278$export$e44a253a59704894 as DropdownMenu, $a54417aeb05f1278$export$d2469213b3befba9 as DropdownMenuTrigger, $a54417aeb05f1278$export$6e76d93a37c01248 as DropdownMenuContent, $a54417aeb05f1278$export$ed97964d1871885d as DropdownMenuItem, $a54417aeb05f1278$export$53a69729da201fa9 as DropdownMenuCheckboxItem, $a54417aeb05f1278$export$e4f69b41b1637536 as DropdownMenuRadioItem, $a54417aeb05f1278$export$76e48c5b57f24495 as DropdownMenuLabel, $a54417aeb05f1278$export$da160178fd3bc7e9 as DropdownMenuSeparator, $a54417aeb05f1278$export$b1e098e2962e8df5 as DropdownMenuShortcut, $84b8ef66c3139332$export$f04a61298a47a40f as Icon, $be9526d49a216cc9$export$7f1bf47c7f50a6aa as InlineCode, $69de6bdb0e8d2083$export$f5b8910cec6cf069 as Input, $69de6bdb0e8d2083$export$a000a5208d0f14c1 as InputCapture, $750bb60d221b9046$export$b28585a458fee016 as PasswordInput, $1efa43e76774bcf1$export$c5be64db09f93414 as MediaObject, $1efa43e76774bcf1$export$a850f92726a1f836 as MediaObjectMedia, $1efa43e76774bcf1$export$8d93ffc9d5ebcf0c as MediaObjectContent, $e1568f28b56f66ee$export$5b6b19405a83ff9d as Popover, $e1568f28b56f66ee$export$7dacb05d26466c3 as PopoverTrigger, $e1568f28b56f66ee$export$d7e1f420b25549ff as PopoverContent, $b0b413c594e2809e$export$ef9b1a59e592288f as Select, $b0b413c594e2809e$export$c973a4b3cb86a03d as SelectContent, $b0b413c594e2809e$export$ee25a334c55de1f4 as SelectGroup, $b0b413c594e2809e$export$f67338d29bd972f8 as SelectLabel, $b0b413c594e2809e$export$13ef48a934230896 as SelectItem, $b0b413c594e2809e$export$eba4b1df07cb1d3 as SelectSeparator, $b0b413c594e2809e$export$3ac1e88a1c0b9f1 as SelectTrigger, $b0b413c594e2809e$export$e288731fd71264f0 as SelectValue, $0e4ef6b27c1ec376$export$1ff3c3f08ae963c0 as Separator, $de4859618f6880e3$export$a9bf29f8d87ebbee as Sheet, $de4859618f6880e3$export$8e574df6e3b8d781 as SheetBody, $de4859618f6880e3$export$99d85c8298ee6511 as SheetClose, $de4859618f6880e3$export$fe5ec5b76996e2d3 as SheetContent, $de4859618f6880e3$export$2ee64bd945b80e4a as SheetDescription, $de4859618f6880e3$export$1adeb0155503ee5a as SheetFooter, $de4859618f6880e3$export$de7da2aaa45f2eb5 as SheetHeader, $de4859618f6880e3$export$48dbb295cbd054d8 as SheetOverlay, $de4859618f6880e3$export$721c917f47f6cb as SheetPortal, $de4859618f6880e3$export$4bb009ae36731de9 as SheetTitle, $de4859618f6880e3$export$de69b9b0343a1903 as SheetTrigger, $53866fd1feac4bca$export$8f31e4c4a37b8e9c as Skeleton, $fd75fdf931689c59$export$54ec01a60f47d33d as Table, $fd75fdf931689c59$export$f850895b287ef28e as TableHeader, $fd75fdf931689c59$export$76ccd210b9029917 as TableBody, $fd75fdf931689c59$export$1f116082bba1f9a8 as TableFooter, $fd75fdf931689c59$export$2f4a7be4f0dcc2 as TableHead, $fd75fdf931689c59$export$b05581f4e764e162 as TableRow, $fd75fdf931689c59$export$1e4baea7053fc0e3 as TableCell, $fd75fdf931689c59$export$35468a455d619eb3 as TableCaption, $a6907629e3ef14e9$export$f5c9f3c2c4054eec as TextArea, $dda3493dd750e32f$export$af55aa65d73bedf7 as MantleThemeHeadContent, $dda3493dd750e32f$export$d8964aec282183a3 as ThemeProvider, $dda3493dd750e32f$export$6b08dcdbd4008308 as isTheme, $dda3493dd750e32f$export$1dca76bcd3720cbb as preventWrongThemeFlashScriptContent, $dda3493dd750e32f$export$bca14c5b3b88a9c9 as theme, $dda3493dd750e32f$export$9335dc9d919c3613 as useAppliedTheme, $dda3493dd750e32f$export$4132e7bcc6139686 as useInitialHtmlThemeProps, $dda3493dd750e32f$export$93d4e7f90805808f as useTheme, $380730b2f4c100d4$export$24c8fb0221e74d36 as PreloadFonts, $aae96005fa706805$export$28c660c63b792dea as Tooltip, $aae96005fa706805$export$8c610744efcf8a1d as TooltipTrigger, $aae96005fa706805$export$e9003e2be37ec060 as TooltipContent, $aae96005fa706805$export$f78649fb9ca566b8 as TooltipProvider};
2017
2034
  //# sourceMappingURL=index.js.map