@mui/internal-test-utils 2.0.18-canary.25 → 2.0.18-canary.26

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/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- The MIT License (MIT)
1
+ MIT License
2
2
 
3
3
  Copyright (c) 2019 Material-UI SAS
4
4
 
package/README.md CHANGED
@@ -16,16 +16,6 @@ You can [read the Infra documentation here](./docs/README.md).
16
16
  - Hosting: https://dashboard.render.com/web/srv-d5fq2j0gjchc73e9st5g
17
17
  - [Docs](./apps/code-infra-dashboard/#readme)
18
18
 
19
- ### Tools Public
20
-
21
- ⚠️ Deprecated. Use **Frontend Public** instead.
22
-
23
- - URL: [tools-public.mui.com](https://tools-public.mui.com/)
24
- - Source: `/apps/tools-public/`
25
- - Hosting: https://dashboard.render.com/web/srv-d08mooq4d50c73fso49g
26
- - [Docs](./apps/tools-public/#readme)
27
- - Internal public Toolpad apps that run the operations of MUI, built using https://github.com/mui/toolpad.
28
-
29
19
  ### MUI Internal
30
20
 
31
21
  - URL: [mui-internal.netlify.app](https://mui-internal.netlify.app)
@@ -1,4 +1,5 @@
1
- import { queries, type RenderResult, fireEvent as rtlFireEvent, type Screen, type RenderOptions as TestingLibraryRenderOptions } from '@testing-library/react/pure.js';
1
+ import { queries, fireEvent as rtlFireEvent } from '@testing-library/react/pure.js';
2
+ import type { RenderResult, Screen, RenderOptions as TestingLibraryRenderOptions } from '@testing-library/react/pure.js';
2
3
  import { userEvent } from '@testing-library/user-event';
3
4
  import * as React from 'react';
4
5
  import { vi } from 'vitest';
@@ -1,4 +1,5 @@
1
- import { queries, type RenderResult, fireEvent as rtlFireEvent, type Screen, type RenderOptions as TestingLibraryRenderOptions } from '@testing-library/react/pure.js';
1
+ import { queries, fireEvent as rtlFireEvent } from '@testing-library/react/pure.js';
2
+ import type { RenderResult, Screen, RenderOptions as TestingLibraryRenderOptions } from '@testing-library/react/pure.js';
2
3
  import { userEvent } from '@testing-library/user-event';
3
4
  import * as React from 'react';
4
5
  import { vi } from 'vitest';
@@ -1,5 +1,5 @@
1
1
  import * as React from 'react';
2
- import { type MuiRenderResult } from "./createRenderer.mjs";
2
+ import type { MuiRenderResult } from "./createRenderer.mjs";
3
3
  interface DataProps {
4
4
  [key: `data-${string}`]: string;
5
5
  }
@@ -1,5 +1,5 @@
1
1
  import * as React from 'react';
2
- import { type MuiRenderResult } from "./createRenderer.js";
2
+ import type { MuiRenderResult } from "./createRenderer.js";
3
3
  interface DataProps {
4
4
  [key: `data-${string}`]: string;
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/internal-test-utils",
3
- "version": "2.0.18-canary.25",
3
+ "version": "2.0.18-canary.26",
4
4
  "author": "MUI Team",
5
5
  "description": "Utilities for MUI tests. This is an internal package not meant for general use.",
6
6
  "license": "MIT",
@@ -160,5 +160,5 @@
160
160
  },
161
161
  "main": "./index.js",
162
162
  "types": "./index.d.ts",
163
- "gitSha": "8db9f6d4d2d14e834e3f8fda91d902a583fbf55b"
163
+ "gitSha": "cb672accc6b61d455e18ce874f99ea841831a734"
164
164
  }
package/setupVitest.d.mts CHANGED
@@ -1,5 +1,5 @@
1
1
  import "./chaiTypes.mjs";
2
- import { type Configuration } from "./configure.mjs";
2
+ import type { Configuration } from "./configure.mjs";
3
3
  export default function setupVitest({
4
4
  failOnConsoleEnabled,
5
5
  ...config
package/setupVitest.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import "./chaiTypes.js";
2
- import { type Configuration } from "./configure.js";
2
+ import type { Configuration } from "./configure.js";
3
3
  export default function setupVitest({
4
4
  failOnConsoleEnabled,
5
5
  ...config