@solidstarters/create-solid-app 1.2.30 → 1.2.32
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 +1 -1
- package/templates/nest-template/package.json +4 -4
- package/templates/next-template/app/admin/core/[moduleName]/home/page.tsx +8 -2
- package/templates/next-template/app/layout.tsx +0 -3
- package/templates/next-template/next.config.js +0 -2
- package/templates/next-template/package-lock.json +1023 -34
- package/templates/next-template/package.json +4 -4
- package/templates/next-template/app/auth/page.tsx +0 -33
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "next-template",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"private": true,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"postinstall": "copyfiles -u 5 \"node_modules/@solidstarters/solid-core-ui/dist/resources/themes/**/*\" public",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"@codemirror/theme-one-dark": "^6.1.2",
|
|
16
16
|
"@hello-pangea/dnd": "^17.0.0",
|
|
17
17
|
"@reduxjs/toolkit": "^1.9.5",
|
|
18
|
-
"@solidstarters/solid-core-ui": "^1.1.
|
|
18
|
+
"@solidstarters/solid-core-ui": "^1.1.204",
|
|
19
19
|
"@uiw/react-codemirror": "^4.23.3",
|
|
20
20
|
"axios": "^1.7.2",
|
|
21
21
|
"bcryptjs": "^2.4.3",
|
|
@@ -34,10 +34,10 @@
|
|
|
34
34
|
"moment": "^2.29.4",
|
|
35
35
|
"moment-range": "^4.0.2",
|
|
36
36
|
"mongoose": "^7.5.0",
|
|
37
|
-
"next-auth": "^4.
|
|
37
|
+
"next-auth": "^4.24.13",
|
|
38
38
|
"next-connect": "^1.0.0",
|
|
39
39
|
"node-geocoder": "^4.2.0",
|
|
40
|
-
"nodemailer": "^
|
|
40
|
+
"nodemailer": "^7.0.7",
|
|
41
41
|
"pluralize": "^8.0.0",
|
|
42
42
|
"primeflex": "^3.3.1",
|
|
43
43
|
"primeicons": "^7.0.0",
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
import { AuthBanner } from "@solidstarters/solid-core-ui";
|
|
3
|
-
import Link from "next/link";
|
|
4
|
-
import React from "react";
|
|
5
|
-
|
|
6
|
-
const Page = () => {
|
|
7
|
-
return (
|
|
8
|
-
<div className="wrapper">
|
|
9
|
-
<div className="col-10 col-lg-6">
|
|
10
|
-
<div className="row justify-content-center">
|
|
11
|
-
<div className="col-lg-8">
|
|
12
|
-
<div>
|
|
13
|
-
<h1>Sign in to Radix Solutions</h1>
|
|
14
|
-
<Link href="/auth/register">Continue with Email</Link>
|
|
15
|
-
<p>
|
|
16
|
-
By creating an account you agree with our Terms of
|
|
17
|
-
Service, Privacy Policy
|
|
18
|
-
</p>
|
|
19
|
-
<p>
|
|
20
|
-
Already have an account? <a>Sign in</a>
|
|
21
|
-
</p>
|
|
22
|
-
</div>
|
|
23
|
-
</div>
|
|
24
|
-
</div>
|
|
25
|
-
</div>
|
|
26
|
-
<div className="col-10 col-lg-6" style={{ backgroundColor: "blue" }}>
|
|
27
|
-
<AuthBanner></AuthBanner>
|
|
28
|
-
</div>
|
|
29
|
-
</div>
|
|
30
|
-
);
|
|
31
|
-
};
|
|
32
|
-
|
|
33
|
-
export default Page;
|