@mui/internal-docs-infra 0.12.1-canary.21 → 0.12.1-canary.23

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/internal-docs-infra",
3
- "version": "0.12.1-canary.21",
3
+ "version": "0.12.1-canary.23",
4
4
  "author": "MUI Team",
5
5
  "description": "MUI Infra - internal documentation creation tools.",
6
6
  "license": "MIT",
@@ -30,29 +30,29 @@
30
30
  "homepage": "https://github.com/mui/mui-public/tree/master/packages/docs-infra",
31
31
  "dependencies": {
32
32
  "@babel/runtime": "^7.29.7",
33
- "@csstools/postcss-light-dark-function": "^3.0.1",
34
- "@csstools/postcss-relative-color-syntax": "^4.0.5",
35
- "@csstools/postcss-stepped-value-functions": "^5.0.3",
33
+ "@csstools/postcss-light-dark-function": "^3.0.2",
34
+ "@csstools/postcss-relative-color-syntax": "^4.0.7",
35
+ "@csstools/postcss-stepped-value-functions": "^5.0.4",
36
36
  "@orama/orama": "^3.1.18",
37
37
  "@orama/plugin-qps": "^3.1.18",
38
38
  "@orama/stemmers": "^3.1.18",
39
39
  "@orama/stopwords": "^3.1.18",
40
- "@wooorm/starry-night": "^3.9.0",
41
- "autoprefixer": "^10.5.0",
40
+ "@wooorm/starry-night": "^3.10.0",
41
+ "autoprefixer": "^10.5.4",
42
42
  "chalk": "^5.6.2",
43
43
  "clipboard-copy": "^4.0.1",
44
44
  "es-toolkit": "^1.49.0",
45
- "fflate": "^0.8.2",
45
+ "fflate": "^0.8.3",
46
46
  "hast-util-to-jsx-runtime": "^2.3.6",
47
47
  "hast-util-to-text": "^4.0.2",
48
48
  "icss-utils": "^5.1.0",
49
49
  "import-meta-resolve": "^4.2.0",
50
50
  "jiti": "^2.7.0",
51
- "jsondiffpatch": "^0.7.3",
51
+ "jsondiffpatch": "^0.7.6",
52
52
  "kebab-case": "^2.0.2",
53
53
  "lz-string": "^1.5.0",
54
54
  "path-module": "^0.1.2",
55
- "postcss": "^8.5.15",
55
+ "postcss": "^8.5.22",
56
56
  "postcss-modules-extract-imports": "^3.1.0",
57
57
  "postcss-modules-local-by-default": "^4.2.0",
58
58
  "postcss-modules-scope": "^3.2.1",
@@ -64,7 +64,7 @@
64
64
  "remark-stringify": "^11.0.0",
65
65
  "remark-typography": "^0.7.3",
66
66
  "sucrase": "^3.35.1",
67
- "typescript-api-extractor": "1.0.0-beta.3",
67
+ "typescript-api-extractor": "1.0.0-beta.4",
68
68
  "uint8-to-base64": "^0.2.1",
69
69
  "unified": "^11.0.5",
70
70
  "unist-util-visit": "^5.1.0",
@@ -804,5 +804,5 @@
804
804
  "bin": {
805
805
  "docs-infra": "./cli/index.mjs"
806
806
  },
807
- "gitSha": "d7a721986aed46adb128a9b200b12729c7a55378"
807
+ "gitSha": "327b1eabb817e566026fbeb46767736701766d0d"
808
808
  }
@@ -19,7 +19,7 @@ export declare const CHECKSUM_BYTES = 4;
19
19
  * embedded in both the server build and the client bundle, so it must stay
20
20
  * small — currently ~3 KB uncompressed.
21
21
  */
22
- export declare const HAST_DICTIONARY: Uint8Array<ArrayBufferLike>;
22
+ export declare const HAST_DICTIONARY: Uint8Array<ArrayBuffer>;
23
23
  /**
24
24
  * FNV-1a 32-bit hash of a Uint8Array.
25
25
  *
@@ -68,8 +68,8 @@ export declare function useDemo<T extends {} = {}>(contentProps: ContentProps<T>
68
68
  expanded: boolean;
69
69
  expand: () => void;
70
70
  setExpanded: (expanded: boolean) => void;
71
- copy: (event: React.MouseEvent<Element, MouseEvent>) => Promise<void>;
72
- copyMarkdown: (event: React.MouseEvent<Element, MouseEvent>) => Promise<void>;
71
+ copy: (event: React.MouseEvent<Element>) => Promise<void>;
72
+ copyMarkdown: (event: React.MouseEvent<Element>) => Promise<void>;
73
73
  availableTransforms: string[];
74
74
  selectedTransform: string | null | undefined;
75
75
  selectTransform: (transformName: string | null) => void;