ts-data-forge 6.9.0 → 6.9.2
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/README.md +2 -14
- package/package.json +23 -23
package/README.md
CHANGED
|
@@ -568,21 +568,9 @@ import { castMutable } from 'ts-data-forge';
|
|
|
568
568
|
const SomeComponent: React.FC = () => (
|
|
569
569
|
<Autocomplete
|
|
570
570
|
options={castMutable(readonlyOptions)}
|
|
571
|
-
renderInput={({
|
|
572
|
-
InputLabelProps,
|
|
573
|
-
InputProps,
|
|
574
|
-
disabled,
|
|
575
|
-
fullWidth,
|
|
576
|
-
id,
|
|
577
|
-
inputProps,
|
|
578
|
-
size,
|
|
579
|
-
}) => (
|
|
571
|
+
renderInput={({ disabled, fullWidth, id, size, slotProps }) => (
|
|
580
572
|
<TextField
|
|
581
|
-
slotProps={
|
|
582
|
-
inputLabel: InputLabelProps,
|
|
583
|
-
input: InputProps,
|
|
584
|
-
htmlInput: inputProps,
|
|
585
|
-
}}
|
|
573
|
+
slotProps={slotProps}
|
|
586
574
|
disabled={disabled}
|
|
587
575
|
fullWidth={fullWidth}
|
|
588
576
|
id={id}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ts-data-forge",
|
|
3
|
-
"version": "6.9.
|
|
3
|
+
"version": "6.9.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
@@ -82,13 +82,13 @@
|
|
|
82
82
|
"z:vitest:node": "pnpm run z:vitest --project='Node.js'"
|
|
83
83
|
},
|
|
84
84
|
"dependencies": {
|
|
85
|
-
"@sindresorhus/is": "^
|
|
85
|
+
"@sindresorhus/is": "^8.0.0",
|
|
86
86
|
"ts-type-forge": "^2.4.0"
|
|
87
87
|
},
|
|
88
88
|
"devDependencies": {
|
|
89
89
|
"@emotion/react": "11.14.0",
|
|
90
90
|
"@emotion/styled": "11.14.1",
|
|
91
|
-
"@mui/material": "
|
|
91
|
+
"@mui/material": "9.0.0",
|
|
92
92
|
"@rollup/plugin-replace": "6.0.3",
|
|
93
93
|
"@rollup/plugin-strip": "3.0.4",
|
|
94
94
|
"@rollup/plugin-typescript": "12.3.0",
|
|
@@ -99,48 +99,48 @@
|
|
|
99
99
|
"@semantic-release/github": "12.0.6",
|
|
100
100
|
"@semantic-release/npm": "13.1.5",
|
|
101
101
|
"@semantic-release/release-notes-generator": "14.1.0",
|
|
102
|
-
"@types/node": "25.
|
|
102
|
+
"@types/node": "25.6.0",
|
|
103
103
|
"@types/react": "19.2.14",
|
|
104
|
-
"@vitest/browser-playwright": "4.1.
|
|
105
|
-
"@vitest/coverage-v8": "4.1.
|
|
106
|
-
"@vitest/ui": "4.1.
|
|
107
|
-
"conventional-changelog-conventionalcommits": "9.3.
|
|
108
|
-
"cspell": "
|
|
104
|
+
"@vitest/browser-playwright": "4.1.4",
|
|
105
|
+
"@vitest/coverage-v8": "4.1.4",
|
|
106
|
+
"@vitest/ui": "4.1.4",
|
|
107
|
+
"conventional-changelog-conventionalcommits": "9.3.1",
|
|
108
|
+
"cspell": "10.0.0",
|
|
109
109
|
"dedent": "^1.7.2",
|
|
110
110
|
"eslint": "9.39.4",
|
|
111
111
|
"eslint-config-typed": "4.8.0",
|
|
112
|
-
"github-settings-as-code": "1.2.
|
|
112
|
+
"github-settings-as-code": "1.2.3",
|
|
113
113
|
"immer": "11.1.4",
|
|
114
114
|
"jiti": "2.6.1",
|
|
115
115
|
"markdownlint": "0.40.0",
|
|
116
116
|
"markdownlint-cli2": "0.22.0",
|
|
117
117
|
"npm-run-all2": "8.0.4",
|
|
118
|
-
"playwright": "1.
|
|
119
|
-
"prettier": "3.8.
|
|
118
|
+
"playwright": "1.59.1",
|
|
119
|
+
"prettier": "3.8.3",
|
|
120
120
|
"prettier-plugin-organize-imports": "4.3.0",
|
|
121
121
|
"prettier-plugin-packagejson": "3.0.2",
|
|
122
|
-
"react": "^19.2.
|
|
123
|
-
"rollup": "4.60.
|
|
122
|
+
"react": "^19.2.5",
|
|
123
|
+
"rollup": "4.60.1",
|
|
124
124
|
"semantic-release": "25.0.3",
|
|
125
|
-
"ts-codemod-lib": "^2.1.
|
|
126
|
-
"ts-repo-utils": "9.0.
|
|
125
|
+
"ts-codemod-lib": "^2.1.2",
|
|
126
|
+
"ts-repo-utils": "9.0.1",
|
|
127
127
|
"tslib": "2.8.1",
|
|
128
128
|
"tsx": "4.21.0",
|
|
129
|
-
"typedoc": "0.28.
|
|
129
|
+
"typedoc": "0.28.19",
|
|
130
130
|
"typedoc-github-theme": "0.4.0",
|
|
131
131
|
"typescript": "5.9.3",
|
|
132
|
-
"vite": "8.0.
|
|
133
|
-
"vitest": "4.1.
|
|
132
|
+
"vite": "8.0.8",
|
|
133
|
+
"vitest": "4.1.4"
|
|
134
134
|
},
|
|
135
135
|
"peerDependencies": {
|
|
136
136
|
"typescript": ">=4.8"
|
|
137
137
|
},
|
|
138
|
-
"packageManager": "pnpm@10.
|
|
138
|
+
"packageManager": "pnpm@10.33.1",
|
|
139
139
|
"engines": {
|
|
140
|
-
"node": ">=
|
|
141
|
-
"pnpm": ">=
|
|
140
|
+
"node": ">=22.12.0",
|
|
141
|
+
"pnpm": ">=9.0.0"
|
|
142
142
|
},
|
|
143
143
|
"volta": {
|
|
144
|
-
"node": "25.
|
|
144
|
+
"node": "25.9.0"
|
|
145
145
|
}
|
|
146
146
|
}
|