@proofkit/cli 1.1.8 → 1.2.0-beta.1
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/dist/external-DCpQkgKf.js +1 -0
- package/dist/index.js +102 -124
- package/package.json +15 -10
- package/template/extras/config/query-provider-vite.tsx +0 -2
- package/template/extras/emailProviders/none/email.tsx +4 -4
- package/template/extras/emailProviders/plunk/email.tsx +5 -4
- package/template/extras/emailProviders/plunk/service.ts +1 -1
- package/template/extras/emailProviders/resend/email.tsx +1 -0
- package/template/extras/emailProviders/resend/service.ts +1 -1
- package/template/extras/emailTemplates/auth-code.tsx +156 -0
- package/template/extras/emailTemplates/generic.tsx +136 -0
- package/template/extras/fmaddon-auth/app/(main)/auth/profile/actions.ts +13 -9
- package/template/extras/fmaddon-auth/app/(main)/auth/profile/page.tsx +2 -0
- package/template/extras/fmaddon-auth/app/(main)/auth/profile/profile-form.tsx +7 -5
- package/template/extras/fmaddon-auth/app/(main)/auth/profile/reset-password-form.tsx +8 -6
- package/template/extras/fmaddon-auth/app/auth/forgot-password/actions.ts +7 -5
- package/template/extras/fmaddon-auth/app/auth/forgot-password/forgot-form.tsx +3 -2
- package/template/extras/fmaddon-auth/app/auth/forgot-password/page.tsx +1 -0
- package/template/extras/fmaddon-auth/app/auth/login/actions.ts +5 -4
- package/template/extras/fmaddon-auth/app/auth/login/login-form.tsx +7 -5
- package/template/extras/fmaddon-auth/app/auth/login/page.tsx +1 -0
- package/template/extras/fmaddon-auth/app/auth/reset-password/actions.ts +11 -8
- package/template/extras/fmaddon-auth/app/auth/reset-password/page.tsx +3 -2
- package/template/extras/fmaddon-auth/app/auth/reset-password/reset-password-form.tsx +5 -4
- package/template/extras/fmaddon-auth/app/auth/reset-password/verify-email/actions.ts +3 -2
- package/template/extras/fmaddon-auth/app/auth/reset-password/verify-email/page.tsx +3 -2
- package/template/extras/fmaddon-auth/app/auth/reset-password/verify-email/verify-email-form.tsx +3 -2
- package/template/extras/fmaddon-auth/app/auth/signup/actions.ts +10 -9
- package/template/extras/fmaddon-auth/app/auth/signup/page.tsx +1 -0
- package/template/extras/fmaddon-auth/app/auth/signup/signup-form.tsx +7 -6
- package/template/extras/fmaddon-auth/app/auth/verify-email/actions.ts +7 -8
- package/template/extras/fmaddon-auth/app/auth/verify-email/email-verification-form.tsx +5 -4
- package/template/extras/fmaddon-auth/app/auth/verify-email/page.tsx +5 -3
- package/template/extras/fmaddon-auth/app/auth/verify-email/resend-button.tsx +4 -2
- package/template/extras/fmaddon-auth/components/auth/actions.ts +4 -1
- package/template/extras/fmaddon-auth/components/auth/protect.tsx +2 -1
- package/template/extras/fmaddon-auth/components/auth/redirect.tsx +2 -2
- package/template/extras/fmaddon-auth/components/auth/use-user.ts +3 -2
- package/template/extras/fmaddon-auth/components/auth/user-menu.tsx +3 -2
- package/template/extras/fmaddon-auth/middleware.ts +0 -1
- package/template/extras/fmaddon-auth/server/auth/utils/email-verification.ts +8 -7
- package/template/extras/fmaddon-auth/server/auth/utils/encryption.ts +2 -2
- package/template/extras/fmaddon-auth/server/auth/utils/password-reset.ts +5 -4
- package/template/extras/fmaddon-auth/server/auth/utils/redirect.ts +1 -1
- package/template/extras/fmaddon-auth/server/auth/utils/session.ts +6 -7
- package/template/extras/fmaddon-auth/server/auth/utils/user.ts +1 -2
- package/template/extras/src/app/next-auth/signin/page.tsx +2 -1
- package/template/fm-addon/ProofKitAuth/info.json +6 -9
- package/template/fm-addon/ProofKitAuth/info_de.json +5 -12
- package/template/fm-addon/ProofKitAuth/info_es.json +5 -12
- package/template/fm-addon/ProofKitAuth/info_fr.json +5 -12
- package/template/fm-addon/ProofKitAuth/info_it.json +5 -12
- package/template/fm-addon/ProofKitAuth/info_ja.json +5 -12
- package/template/fm-addon/ProofKitAuth/info_ko.json +5 -12
- package/template/fm-addon/ProofKitAuth/info_nl.json +5 -12
- package/template/fm-addon/ProofKitAuth/info_pt.json +5 -12
- package/template/fm-addon/ProofKitAuth/info_sv.json +5 -12
- package/template/fm-addon/ProofKitAuth/info_zh.json +5 -12
- package/template/fm-addon/ProofKitWV/info.json +6 -9
- package/template/fm-addon/ProofKitWV/info_de.json +5 -12
- package/template/fm-addon/ProofKitWV/info_en.json +1 -5
- package/template/fm-addon/ProofKitWV/info_es.json +5 -12
- package/template/fm-addon/ProofKitWV/info_fr.json +5 -12
- package/template/fm-addon/ProofKitWV/info_it.json +5 -12
- package/template/fm-addon/ProofKitWV/info_ja.json +5 -12
- package/template/fm-addon/ProofKitWV/info_ko.json +5 -12
- package/template/fm-addon/ProofKitWV/info_nl.json +5 -12
- package/template/fm-addon/ProofKitWV/info_pt.json +5 -12
- package/template/fm-addon/ProofKitWV/info_sv.json +5 -12
- package/template/fm-addon/ProofKitWV/info_zh.json +5 -12
- package/template/{nextjs → nextjs-mantine}/proofkit.json +2 -1
- package/template/{nextjs → nextjs-mantine}/src/components/AppShell/internal/HeaderNavLink.tsx +5 -1
- package/template/{nextjs → nextjs-mantine}/src/utils/notification-helpers.ts +1 -1
- package/template/nextjs-mantine/tsconfig.json +27 -0
- package/template/nextjs-shadcn/.claude/CLAUDE.md +327 -0
- package/template/nextjs-shadcn/.cursor/rules/ultracite.mdc +333 -0
- package/template/nextjs-shadcn/.prettierrc +3 -0
- package/template/nextjs-shadcn/.vscode/settings.json +35 -0
- package/template/nextjs-shadcn/README.md +27 -0
- package/template/nextjs-shadcn/_gitignore +37 -0
- package/template/nextjs-shadcn/biome.json +43 -0
- package/template/nextjs-shadcn/components.json +21 -0
- package/template/nextjs-shadcn/next-env.d.ts +6 -0
- package/template/nextjs-shadcn/next.config.ts +8 -0
- package/template/nextjs-shadcn/package.json +35 -0
- package/template/nextjs-shadcn/postcss.config.mjs +5 -0
- package/template/nextjs-shadcn/proofkit.json +6 -0
- package/template/nextjs-shadcn/public/favicon.ico +0 -0
- package/template/nextjs-shadcn/public/proofkit.png +0 -0
- package/template/nextjs-shadcn/src/app/(main)/layout.tsx +6 -0
- package/template/nextjs-shadcn/src/app/(main)/page.tsx +124 -0
- package/template/nextjs-shadcn/src/app/globals.css +122 -0
- package/template/nextjs-shadcn/src/app/layout.tsx +35 -0
- package/template/nextjs-shadcn/src/app/navigation.tsx +12 -0
- package/template/nextjs-shadcn/src/components/AppLogo.tsx +6 -0
- package/template/nextjs-shadcn/src/components/AppShell/internal/AppShell.tsx +23 -0
- package/template/nextjs-shadcn/src/components/AppShell/internal/Header.module.css +33 -0
- package/template/nextjs-shadcn/src/components/AppShell/internal/Header.tsx +30 -0
- package/template/nextjs-shadcn/src/components/AppShell/internal/HeaderMobileMenu.tsx +25 -0
- package/template/nextjs-shadcn/src/components/AppShell/internal/HeaderNavLink.tsx +35 -0
- package/template/nextjs-shadcn/src/components/AppShell/internal/config.ts +1 -0
- package/template/nextjs-shadcn/src/components/AppShell/slot-header-center.tsx +13 -0
- package/template/nextjs-shadcn/src/components/AppShell/slot-header-left.tsx +23 -0
- package/template/nextjs-shadcn/src/components/AppShell/slot-header-mobile-content.tsx +43 -0
- package/template/nextjs-shadcn/src/components/AppShell/slot-header-right.tsx +25 -0
- package/template/nextjs-shadcn/src/components/providers.tsx +13 -0
- package/template/nextjs-shadcn/src/components/theme-provider.tsx +11 -0
- package/template/nextjs-shadcn/src/lib/env.ts +12 -0
- package/template/nextjs-shadcn/src/lib/utils.ts +6 -0
- package/template/{nextjs → nextjs-shadcn}/tsconfig.json +3 -2
- package/template/pages/nextjs/table-edit/page.tsx +5 -5
- package/template/pages/nextjs/table-edit/table.tsx +5 -3
- package/template/pages/nextjs/table-infinite/query.ts +4 -3
- package/template/pages/nextjs/table-infinite/table.tsx +3 -2
- package/template/pages/nextjs/table-infinite-edit/page.tsx +6 -6
- package/template/pages/nextjs/table-infinite-edit/query.ts +8 -2
- package/template/pages/vite-wv/table/index.tsx +5 -4
- package/template/pages/vite-wv/table-edit/index.tsx +6 -6
- package/template/vite-wv/src/main.tsx +1 -1
- package/template/vite-wv/src/routeTree.gen.ts +41 -41
- /package/template/{nextjs → nextjs-mantine}/.prettierrc +0 -0
- /package/template/{nextjs → nextjs-mantine}/README.md +0 -0
- /package/template/{nextjs → nextjs-mantine}/_gitignore +0 -0
- /package/template/{nextjs → nextjs-mantine}/components.json +0 -0
- /package/template/{nextjs → nextjs-mantine}/next.config.ts +0 -0
- /package/template/{nextjs → nextjs-mantine}/package.json +0 -0
- /package/template/{nextjs → nextjs-mantine}/postcss.config.cjs +0 -0
- /package/template/{nextjs → nextjs-mantine}/public/favicon.ico +0 -0
- /package/template/{nextjs → nextjs-mantine}/public/proofkit.png +0 -0
- /package/template/{nextjs → nextjs-mantine}/src/app/(main)/layout.tsx +0 -0
- /package/template/{nextjs → nextjs-mantine}/src/app/(main)/page.tsx +0 -0
- /package/template/{nextjs → nextjs-mantine}/src/app/layout.tsx +0 -0
- /package/template/{nextjs → nextjs-mantine}/src/app/navigation.tsx +0 -0
- /package/template/{nextjs → nextjs-mantine}/src/components/AppLogo.tsx +0 -0
- /package/template/{nextjs → nextjs-mantine}/src/components/AppShell/internal/AppShell.tsx +0 -0
- /package/template/{nextjs → nextjs-mantine}/src/components/AppShell/internal/Header.module.css +0 -0
- /package/template/{nextjs → nextjs-mantine}/src/components/AppShell/internal/Header.tsx +0 -0
- /package/template/{nextjs → nextjs-mantine}/src/components/AppShell/internal/HeaderMobileMenu.tsx +0 -0
- /package/template/{nextjs → nextjs-mantine}/src/components/AppShell/internal/config.ts +0 -0
- /package/template/{nextjs → nextjs-mantine}/src/components/AppShell/slot-header-center.tsx +0 -0
- /package/template/{nextjs → nextjs-mantine}/src/components/AppShell/slot-header-left.tsx +0 -0
- /package/template/{nextjs → nextjs-mantine}/src/components/AppShell/slot-header-mobile-content.tsx +0 -0
- /package/template/{nextjs → nextjs-mantine}/src/components/AppShell/slot-header-right.tsx +0 -0
- /package/template/{nextjs → nextjs-mantine}/src/config/env.ts +0 -0
- /package/template/{nextjs → nextjs-mantine}/src/config/theme/globals.css +0 -0
- /package/template/{nextjs → nextjs-mantine}/src/config/theme/mantine-theme.ts +0 -0
- /package/template/{nextjs → nextjs-mantine}/src/server/safe-action.ts +0 -0
- /package/template/{nextjs → nextjs-mantine}/src/utils/styles.ts +0 -0
|
@@ -1,18 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
2
|
+
"Title": "FileMaker Add-on Auth",
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
"Description": "*** DESCRIPTION MISSING *** - DNL",
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
"Category": "Web",
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
[
|
|
10
|
-
|
|
11
|
-
],
|
|
8
|
+
"Features": [],
|
|
12
9
|
|
|
13
|
-
|
|
14
|
-
[
|
|
15
|
-
"Desktop", "Tablet", "Mobile"
|
|
16
|
-
|
|
17
|
-
]
|
|
10
|
+
"Optimized": ["Desktop", "Tablet", "Mobile"]
|
|
18
11
|
}
|
|
@@ -1,18 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
2
|
+
"Title": "FileMaker Add-on Auth",
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
"Description": "*** DESCRIPTION MISSING *** - DNL",
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
"Category": "Web",
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
[
|
|
10
|
-
|
|
11
|
-
],
|
|
8
|
+
"Features": [],
|
|
12
9
|
|
|
13
|
-
|
|
14
|
-
[
|
|
15
|
-
"Desktop", "Tablet", "Mobile"
|
|
16
|
-
|
|
17
|
-
]
|
|
10
|
+
"Optimized": ["Desktop", "Tablet", "Mobile"]
|
|
18
11
|
}
|
|
@@ -1,18 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
2
|
+
"Title": "FileMaker Add-on Auth",
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
"Description": "*** DESCRIPTION MISSING *** - DNL",
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
"Category": "Web",
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
[
|
|
10
|
-
|
|
11
|
-
],
|
|
8
|
+
"Features": [],
|
|
12
9
|
|
|
13
|
-
|
|
14
|
-
[
|
|
15
|
-
"Desktop", "Tablet", "Mobile"
|
|
16
|
-
|
|
17
|
-
]
|
|
10
|
+
"Optimized": ["Desktop", "Tablet", "Mobile"]
|
|
18
11
|
}
|
|
@@ -1,18 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
2
|
+
"Title": "FileMaker Add-on Auth",
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
"Description": "*** DESCRIPTION MISSING *** - DNL",
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
"Category": "Web",
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
[
|
|
10
|
-
|
|
11
|
-
],
|
|
8
|
+
"Features": [],
|
|
12
9
|
|
|
13
|
-
|
|
14
|
-
[
|
|
15
|
-
"Desktop", "Tablet", "Mobile"
|
|
16
|
-
|
|
17
|
-
]
|
|
10
|
+
"Optimized": ["Desktop", "Tablet", "Mobile"]
|
|
18
11
|
}
|
|
@@ -1,18 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
2
|
+
"Title": "FileMaker Add-on Auth",
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
"Description": "*** DESCRIPTION MISSING *** - DNL",
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
"Category": "Web",
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
[
|
|
10
|
-
|
|
11
|
-
],
|
|
8
|
+
"Features": [],
|
|
12
9
|
|
|
13
|
-
|
|
14
|
-
[
|
|
15
|
-
"Desktop", "Tablet", "Mobile"
|
|
16
|
-
|
|
17
|
-
]
|
|
10
|
+
"Optimized": ["Desktop", "Tablet", "Mobile"]
|
|
18
11
|
}
|
|
@@ -1,18 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
2
|
+
"Title": "FileMaker Add-on Auth",
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
"Description": "*** DESCRIPTION MISSING *** - DNL",
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
"Category": "Web",
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
[
|
|
10
|
-
|
|
11
|
-
],
|
|
8
|
+
"Features": [],
|
|
12
9
|
|
|
13
|
-
|
|
14
|
-
[
|
|
15
|
-
"Desktop", "Tablet", "Mobile"
|
|
16
|
-
|
|
17
|
-
]
|
|
10
|
+
"Optimized": ["Desktop", "Tablet", "Mobile"]
|
|
18
11
|
}
|
|
@@ -1,11 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
"URL" : "https://proofkit.dev",
|
|
9
|
-
"Icon_Color" : "#7F7F7F",
|
|
10
|
-
"Version" : "1.0"
|
|
2
|
+
"GUID": "7CCFAF65-7C87-46B1-9FDC-D636B3B9C0AD",
|
|
3
|
+
"Clients": ["Pro"],
|
|
4
|
+
"Attribution": "Proof+Geist",
|
|
5
|
+
"URL": "https://proofkit.dev",
|
|
6
|
+
"Icon_Color": "#7F7F7F",
|
|
7
|
+
"Version": "1.0"
|
|
11
8
|
}
|
|
@@ -1,18 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
2
|
+
"Title": "ProofKitWV",
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
"Description": "*** DESCRIPTION MISSING *** - DNL",
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
"Category": "___...___",
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
[
|
|
10
|
-
|
|
11
|
-
],
|
|
8
|
+
"Features": [],
|
|
12
9
|
|
|
13
|
-
|
|
14
|
-
[
|
|
15
|
-
"Desktop", "Tablet", "Mobile"
|
|
16
|
-
|
|
17
|
-
]
|
|
10
|
+
"Optimized": ["Desktop", "Tablet", "Mobile"]
|
|
18
11
|
}
|
|
@@ -1,18 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
2
|
+
"Title": "ProofKitWV",
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
"Description": "*** DESCRIPTION MISSING *** - DNL",
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
"Category": "___...___",
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
[
|
|
10
|
-
|
|
11
|
-
],
|
|
8
|
+
"Features": [],
|
|
12
9
|
|
|
13
|
-
|
|
14
|
-
[
|
|
15
|
-
"Desktop", "Tablet", "Mobile"
|
|
16
|
-
|
|
17
|
-
]
|
|
10
|
+
"Optimized": ["Desktop", "Tablet", "Mobile"]
|
|
18
11
|
}
|
|
@@ -1,18 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
2
|
+
"Title": "ProofKitWV",
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
"Description": "*** DESCRIPTION MISSING *** - DNL",
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
"Category": "___...___",
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
[
|
|
10
|
-
|
|
11
|
-
],
|
|
8
|
+
"Features": [],
|
|
12
9
|
|
|
13
|
-
|
|
14
|
-
[
|
|
15
|
-
"Desktop", "Tablet", "Mobile"
|
|
16
|
-
|
|
17
|
-
]
|
|
10
|
+
"Optimized": ["Desktop", "Tablet", "Mobile"]
|
|
18
11
|
}
|
|
@@ -1,18 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
2
|
+
"Title": "ProofKitWV",
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
"Description": "*** DESCRIPTION MISSING *** - DNL",
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
"Category": "___...___",
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
[
|
|
10
|
-
|
|
11
|
-
],
|
|
8
|
+
"Features": [],
|
|
12
9
|
|
|
13
|
-
|
|
14
|
-
[
|
|
15
|
-
"Desktop", "Tablet", "Mobile"
|
|
16
|
-
|
|
17
|
-
]
|
|
10
|
+
"Optimized": ["Desktop", "Tablet", "Mobile"]
|
|
18
11
|
}
|
|
@@ -1,18 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
2
|
+
"Title": "ProofKitWV",
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
"Description": "*** DESCRIPTION MISSING *** - DNL",
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
"Category": "___...___",
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
[
|
|
10
|
-
|
|
11
|
-
],
|
|
8
|
+
"Features": [],
|
|
12
9
|
|
|
13
|
-
|
|
14
|
-
[
|
|
15
|
-
"Desktop", "Tablet", "Mobile"
|
|
16
|
-
|
|
17
|
-
]
|
|
10
|
+
"Optimized": ["Desktop", "Tablet", "Mobile"]
|
|
18
11
|
}
|
|
@@ -1,18 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
2
|
+
"Title": "ProofKitWV",
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
"Description": "*** DESCRIPTION MISSING *** - DNL",
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
"Category": "___...___",
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
[
|
|
10
|
-
|
|
11
|
-
],
|
|
8
|
+
"Features": [],
|
|
12
9
|
|
|
13
|
-
|
|
14
|
-
[
|
|
15
|
-
"Desktop", "Tablet", "Mobile"
|
|
16
|
-
|
|
17
|
-
]
|
|
10
|
+
"Optimized": ["Desktop", "Tablet", "Mobile"]
|
|
18
11
|
}
|
|
@@ -1,18 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
2
|
+
"Title": "ProofKitWV",
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
"Description": "*** DESCRIPTION MISSING *** - DNL",
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
"Category": "___...___",
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
[
|
|
10
|
-
|
|
11
|
-
],
|
|
8
|
+
"Features": [],
|
|
12
9
|
|
|
13
|
-
|
|
14
|
-
[
|
|
15
|
-
"Desktop", "Tablet", "Mobile"
|
|
16
|
-
|
|
17
|
-
]
|
|
10
|
+
"Optimized": ["Desktop", "Tablet", "Mobile"]
|
|
18
11
|
}
|
|
@@ -1,18 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
2
|
+
"Title": "ProofKitWV",
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
"Description": "*** DESCRIPTION MISSING *** - DNL",
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
"Category": "___...___",
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
[
|
|
10
|
-
|
|
11
|
-
],
|
|
8
|
+
"Features": [],
|
|
12
9
|
|
|
13
|
-
|
|
14
|
-
[
|
|
15
|
-
"Desktop", "Tablet", "Mobile"
|
|
16
|
-
|
|
17
|
-
]
|
|
10
|
+
"Optimized": ["Desktop", "Tablet", "Mobile"]
|
|
18
11
|
}
|
|
@@ -1,18 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
2
|
+
"Title": "ProofKitWV",
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
"Description": "*** DESCRIPTION MISSING *** - DNL",
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
"Category": "___...___",
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
[
|
|
10
|
-
|
|
11
|
-
],
|
|
8
|
+
"Features": [],
|
|
12
9
|
|
|
13
|
-
|
|
14
|
-
[
|
|
15
|
-
"Desktop", "Tablet", "Mobile"
|
|
16
|
-
|
|
17
|
-
]
|
|
10
|
+
"Optimized": ["Desktop", "Tablet", "Mobile"]
|
|
18
11
|
}
|
|
@@ -1,18 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
2
|
+
"Title": "ProofKitWV",
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
"Description": "*** DESCRIPTION MISSING *** - DNL",
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
"Category": "___...___",
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
[
|
|
10
|
-
|
|
11
|
-
],
|
|
8
|
+
"Features": [],
|
|
12
9
|
|
|
13
|
-
|
|
14
|
-
[
|
|
15
|
-
"Desktop", "Tablet", "Mobile"
|
|
16
|
-
|
|
17
|
-
]
|
|
10
|
+
"Optimized": ["Desktop", "Tablet", "Mobile"]
|
|
18
11
|
}
|
package/template/{nextjs → nextjs-mantine}/src/components/AppShell/internal/HeaderNavLink.tsx
RENAMED
|
@@ -10,7 +10,11 @@ export default function HeaderNavLink(route: ProofKitRoute) {
|
|
|
10
10
|
const pathname = usePathname();
|
|
11
11
|
|
|
12
12
|
if (route.type === "function") {
|
|
13
|
-
return
|
|
13
|
+
return (
|
|
14
|
+
<button className={classes.link} onClick={route.onClick}>
|
|
15
|
+
{route.label}
|
|
16
|
+
</button>
|
|
17
|
+
);
|
|
14
18
|
}
|
|
15
19
|
|
|
16
20
|
const isActive = route.exactMatch
|
|
@@ -18,7 +18,7 @@ export function showSuccessNotification(): void;
|
|
|
18
18
|
export function showSuccessNotification(props: NotificationData): void;
|
|
19
19
|
export function showSuccessNotification(message: string): void;
|
|
20
20
|
export function showSuccessNotification(
|
|
21
|
-
args?: string | NotificationData
|
|
21
|
+
args?: string | NotificationData,
|
|
22
22
|
): void {
|
|
23
23
|
const message = typeof args === "string" ? args : "Success!";
|
|
24
24
|
const defaultProps = typeof args === "string" ? {} : (args ?? {});
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"lib": ["dom", "dom.iterable", "esnext"],
|
|
4
|
+
"allowJs": true,
|
|
5
|
+
"skipLibCheck": true,
|
|
6
|
+
"strict": true,
|
|
7
|
+
"noEmit": true,
|
|
8
|
+
"esModuleInterop": true,
|
|
9
|
+
"module": "esnext",
|
|
10
|
+
"moduleResolution": "bundler",
|
|
11
|
+
"resolveJsonModule": true,
|
|
12
|
+
"isolatedModules": true,
|
|
13
|
+
"jsx": "preserve",
|
|
14
|
+
"incremental": true,
|
|
15
|
+
"plugins": [
|
|
16
|
+
{
|
|
17
|
+
"name": "next"
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
"paths": {
|
|
21
|
+
"@/*": ["./src/*"]
|
|
22
|
+
},
|
|
23
|
+
"target": "ES2017"
|
|
24
|
+
},
|
|
25
|
+
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
26
|
+
"exclude": ["node_modules"]
|
|
27
|
+
}
|