@comet/admin-generator 9.0.0-canary-20260119123708 → 9.0.0-canary-20260121085838
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.
|
@@ -144,11 +144,11 @@ function generateFormField({ gqlIntrospection, baseOutputFilename, config, formC
|
|
|
144
144
|
}
|
|
145
145
|
else if (config.type == "date") {
|
|
146
146
|
imports.push({
|
|
147
|
-
name: "
|
|
147
|
+
name: "Future_DatePickerField",
|
|
148
148
|
importPath: "@comet/admin",
|
|
149
149
|
});
|
|
150
150
|
code = `
|
|
151
|
-
<
|
|
151
|
+
<Future_DatePickerField
|
|
152
152
|
${required ? "required" : ""}
|
|
153
153
|
${config.readOnly ? readOnlyPropsWithLock : ""}
|
|
154
154
|
variant="horizontal"
|
|
@@ -173,7 +173,7 @@ function generateFormField({ gqlIntrospection, baseOutputFilename, config, formC
|
|
|
173
173
|
}
|
|
174
174
|
else if (config.type == "dateTime") {
|
|
175
175
|
imports.push({
|
|
176
|
-
name: "DateTimePickerField",
|
|
176
|
+
name: "Future_DateTimePickerField as DateTimePickerField",
|
|
177
177
|
importPath: "@comet/admin",
|
|
178
178
|
});
|
|
179
179
|
code = `<DateTimePickerField
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@comet/admin-generator",
|
|
3
|
-
"version": "9.0.0-canary-
|
|
3
|
+
"version": "9.0.0-canary-20260121085838",
|
|
4
4
|
"description": "Comet Admin Generator CLI tool",
|
|
5
5
|
"repository": {
|
|
6
6
|
"directory": "packages/admin/admin-generator",
|
|
@@ -32,26 +32,24 @@
|
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@apollo/client": "^3.14.0",
|
|
34
34
|
"@mui/material": "^7.3.7",
|
|
35
|
-
"@mui/x-data-grid": "^7.29.
|
|
35
|
+
"@mui/x-data-grid": "^7.29.12",
|
|
36
36
|
"@types/node": "^24.9.1",
|
|
37
37
|
"@types/object-path": "^0.11.4",
|
|
38
38
|
"@types/pluralize": "^0.0.33",
|
|
39
39
|
"@types/react": "^18.3.27",
|
|
40
|
-
"@types/react-dom": "^18.3.7",
|
|
41
40
|
"eslint": "^9.30.1",
|
|
42
41
|
"final-form": "^4.20.10",
|
|
43
42
|
"npm-run-all2": "^8.0.4",
|
|
44
43
|
"prettier": "^3.6.2",
|
|
45
44
|
"react": "^18.3.1",
|
|
46
|
-
"react-dom": "^18.3.1",
|
|
47
45
|
"react-intl": "^7.1.11",
|
|
48
46
|
"rimraf": "^6.1.2",
|
|
49
47
|
"typescript": "5.9.3",
|
|
50
48
|
"vitest": "^4.0.16",
|
|
51
|
-
"@comet/admin": "9.0.0-canary-
|
|
52
|
-
"@comet/admin-icons": "9.0.0-canary-
|
|
53
|
-
"@comet/cms-admin": "9.0.0-canary-
|
|
54
|
-
"@comet/eslint-config": "9.0.0-canary-
|
|
49
|
+
"@comet/admin": "9.0.0-canary-20260121085838",
|
|
50
|
+
"@comet/admin-icons": "9.0.0-canary-20260121085838",
|
|
51
|
+
"@comet/cms-admin": "9.0.0-canary-20260121085838",
|
|
52
|
+
"@comet/eslint-config": "9.0.0-canary-20260121085838"
|
|
55
53
|
},
|
|
56
54
|
"engines": {
|
|
57
55
|
"node": ">=22.0.0"
|