@data-driven-forms/mui-component-mapper 4.1.7 → 4.1.8

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/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
- ## 4.1.7 (2026-01-27)
1
+ ## 4.1.8 (2026-02-02)
2
2
 
3
- This was a version bump only for @data-driven-forms/mui-component-mapper to align it with other projects, there were no code changes.
3
+ ### 🧱 Updated Dependencies
4
+
5
+ - Updated @data-driven-forms/common to 4.1.7
6
+ - Updated @data-driven-forms/react-form-renderer to 4.1.7
package/jest.config.ts ADDED
@@ -0,0 +1,9 @@
1
+ export default {
2
+ displayName: '@data-driven-forms/mui-component-mapper',
3
+ preset: '../../jest.preset.js',
4
+ transform: {
5
+ '^.+\\.[tj]sx?$': ['ts-jest', { tsconfig: '<rootDir>/tsconfig.spec.json' }],
6
+ },
7
+ moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json'],
8
+ coverageDirectory: '../../coverage/packages/mui-component-mapper',
9
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@data-driven-forms/mui-component-mapper",
3
- "version": "4.1.7",
3
+ "version": "4.1.8",
4
4
  "description": "Component mapper for Material ui component mapper form data-driven-forms.",
5
5
  "main": "index.js",
6
6
  "module": "esm/index.js",
@@ -13,8 +13,7 @@
13
13
  "build:esm": "BABEL_ENV=esm babel src --out-dir ./esm --ignore \"src/tests/*\"",
14
14
  "build:typings": "node ../../scripts/generate-typings.js",
15
15
  "build:packages": "node ../../scripts/generate-packages.js",
16
- "vendor": "webpack --env vendor --config ./config/webpack.config.js",
17
- "test": "npm test --workspace=react-forms -- test packages/mui-component-mapper"
16
+ "vendor": "webpack --env vendor --config ./config/webpack.config.js"
18
17
  },
19
18
  "homepage": "https://data-driven-forms.org/",
20
19
  "bugs": "https://github.com/data-driven-forms/react-forms/issues",
@@ -0,0 +1,24 @@
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "outDir": "../../dist/out-tsc",
5
+ "module": "commonjs",
6
+ "types": ["jest", "node", "@testing-library/jest-dom"],
7
+ "allowJs": true,
8
+ "jsx": "react-jsx",
9
+ "esModuleInterop": true,
10
+ "allowSyntheticDefaultImports": true
11
+ },
12
+ "include": [
13
+ "jest.config.ts",
14
+ "src/**/*.test.ts",
15
+ "src/**/*.spec.ts",
16
+ "src/**/*.test.tsx",
17
+ "src/**/*.spec.tsx",
18
+ "src/**/*.test.js",
19
+ "src/**/*.spec.js",
20
+ "src/**/*.test.jsx",
21
+ "src/**/*.spec.jsx",
22
+ "src/**/*.d.ts"
23
+ ]
24
+ }