@proofkit/cli 1.1.8 → 1.2.0-beta.0

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.
Files changed (147) hide show
  1. package/dist/external-DCpQkgKf.js +1 -0
  2. package/dist/index.js +102 -124
  3. package/package.json +15 -10
  4. package/template/extras/config/query-provider-vite.tsx +0 -2
  5. package/template/extras/emailProviders/none/email.tsx +4 -4
  6. package/template/extras/emailProviders/plunk/email.tsx +5 -4
  7. package/template/extras/emailProviders/plunk/service.ts +1 -1
  8. package/template/extras/emailProviders/resend/email.tsx +1 -0
  9. package/template/extras/emailProviders/resend/service.ts +1 -1
  10. package/template/extras/emailTemplates/auth-code.tsx +156 -0
  11. package/template/extras/emailTemplates/generic.tsx +136 -0
  12. package/template/extras/fmaddon-auth/app/(main)/auth/profile/actions.ts +13 -9
  13. package/template/extras/fmaddon-auth/app/(main)/auth/profile/page.tsx +2 -0
  14. package/template/extras/fmaddon-auth/app/(main)/auth/profile/profile-form.tsx +7 -5
  15. package/template/extras/fmaddon-auth/app/(main)/auth/profile/reset-password-form.tsx +8 -6
  16. package/template/extras/fmaddon-auth/app/auth/forgot-password/actions.ts +7 -5
  17. package/template/extras/fmaddon-auth/app/auth/forgot-password/forgot-form.tsx +3 -2
  18. package/template/extras/fmaddon-auth/app/auth/forgot-password/page.tsx +1 -0
  19. package/template/extras/fmaddon-auth/app/auth/login/actions.ts +5 -4
  20. package/template/extras/fmaddon-auth/app/auth/login/login-form.tsx +7 -5
  21. package/template/extras/fmaddon-auth/app/auth/login/page.tsx +1 -0
  22. package/template/extras/fmaddon-auth/app/auth/reset-password/actions.ts +11 -8
  23. package/template/extras/fmaddon-auth/app/auth/reset-password/page.tsx +3 -2
  24. package/template/extras/fmaddon-auth/app/auth/reset-password/reset-password-form.tsx +5 -4
  25. package/template/extras/fmaddon-auth/app/auth/reset-password/verify-email/actions.ts +3 -2
  26. package/template/extras/fmaddon-auth/app/auth/reset-password/verify-email/page.tsx +3 -2
  27. package/template/extras/fmaddon-auth/app/auth/reset-password/verify-email/verify-email-form.tsx +3 -2
  28. package/template/extras/fmaddon-auth/app/auth/signup/actions.ts +10 -9
  29. package/template/extras/fmaddon-auth/app/auth/signup/page.tsx +1 -0
  30. package/template/extras/fmaddon-auth/app/auth/signup/signup-form.tsx +7 -6
  31. package/template/extras/fmaddon-auth/app/auth/verify-email/actions.ts +7 -8
  32. package/template/extras/fmaddon-auth/app/auth/verify-email/email-verification-form.tsx +5 -4
  33. package/template/extras/fmaddon-auth/app/auth/verify-email/page.tsx +5 -3
  34. package/template/extras/fmaddon-auth/app/auth/verify-email/resend-button.tsx +4 -2
  35. package/template/extras/fmaddon-auth/components/auth/actions.ts +4 -1
  36. package/template/extras/fmaddon-auth/components/auth/protect.tsx +2 -1
  37. package/template/extras/fmaddon-auth/components/auth/redirect.tsx +2 -2
  38. package/template/extras/fmaddon-auth/components/auth/use-user.ts +3 -2
  39. package/template/extras/fmaddon-auth/components/auth/user-menu.tsx +3 -2
  40. package/template/extras/fmaddon-auth/middleware.ts +0 -1
  41. package/template/extras/fmaddon-auth/server/auth/utils/email-verification.ts +8 -7
  42. package/template/extras/fmaddon-auth/server/auth/utils/encryption.ts +2 -2
  43. package/template/extras/fmaddon-auth/server/auth/utils/password-reset.ts +5 -4
  44. package/template/extras/fmaddon-auth/server/auth/utils/redirect.ts +1 -1
  45. package/template/extras/fmaddon-auth/server/auth/utils/session.ts +6 -7
  46. package/template/extras/fmaddon-auth/server/auth/utils/user.ts +1 -2
  47. package/template/extras/src/app/next-auth/signin/page.tsx +2 -1
  48. package/template/fm-addon/ProofKitAuth/info.json +6 -9
  49. package/template/fm-addon/ProofKitAuth/info_de.json +5 -12
  50. package/template/fm-addon/ProofKitAuth/info_es.json +5 -12
  51. package/template/fm-addon/ProofKitAuth/info_fr.json +5 -12
  52. package/template/fm-addon/ProofKitAuth/info_it.json +5 -12
  53. package/template/fm-addon/ProofKitAuth/info_ja.json +5 -12
  54. package/template/fm-addon/ProofKitAuth/info_ko.json +5 -12
  55. package/template/fm-addon/ProofKitAuth/info_nl.json +5 -12
  56. package/template/fm-addon/ProofKitAuth/info_pt.json +5 -12
  57. package/template/fm-addon/ProofKitAuth/info_sv.json +5 -12
  58. package/template/fm-addon/ProofKitAuth/info_zh.json +5 -12
  59. package/template/fm-addon/ProofKitWV/info.json +6 -9
  60. package/template/fm-addon/ProofKitWV/info_de.json +5 -12
  61. package/template/fm-addon/ProofKitWV/info_en.json +1 -5
  62. package/template/fm-addon/ProofKitWV/info_es.json +5 -12
  63. package/template/fm-addon/ProofKitWV/info_fr.json +5 -12
  64. package/template/fm-addon/ProofKitWV/info_it.json +5 -12
  65. package/template/fm-addon/ProofKitWV/info_ja.json +5 -12
  66. package/template/fm-addon/ProofKitWV/info_ko.json +5 -12
  67. package/template/fm-addon/ProofKitWV/info_nl.json +5 -12
  68. package/template/fm-addon/ProofKitWV/info_pt.json +5 -12
  69. package/template/fm-addon/ProofKitWV/info_sv.json +5 -12
  70. package/template/fm-addon/ProofKitWV/info_zh.json +5 -12
  71. package/template/{nextjs → nextjs-mantine}/proofkit.json +2 -1
  72. package/template/{nextjs → nextjs-mantine}/src/components/AppShell/internal/HeaderNavLink.tsx +5 -1
  73. package/template/{nextjs → nextjs-mantine}/src/utils/notification-helpers.ts +1 -1
  74. package/template/nextjs-mantine/tsconfig.json +27 -0
  75. package/template/nextjs-shadcn/.claude/CLAUDE.md +327 -0
  76. package/template/nextjs-shadcn/.cursor/rules/ultracite.mdc +333 -0
  77. package/template/nextjs-shadcn/.prettierrc +3 -0
  78. package/template/nextjs-shadcn/.vscode/settings.json +35 -0
  79. package/template/nextjs-shadcn/README.md +27 -0
  80. package/template/nextjs-shadcn/_gitignore +37 -0
  81. package/template/nextjs-shadcn/biome.json +43 -0
  82. package/template/nextjs-shadcn/components.json +21 -0
  83. package/template/nextjs-shadcn/next.config.ts +8 -0
  84. package/template/nextjs-shadcn/package.json +35 -0
  85. package/template/nextjs-shadcn/postcss.config.mjs +5 -0
  86. package/template/nextjs-shadcn/proofkit.json +6 -0
  87. package/template/nextjs-shadcn/public/favicon.ico +0 -0
  88. package/template/nextjs-shadcn/public/proofkit.png +0 -0
  89. package/template/nextjs-shadcn/src/app/(main)/layout.tsx +6 -0
  90. package/template/nextjs-shadcn/src/app/(main)/page.tsx +124 -0
  91. package/template/nextjs-shadcn/src/app/globals.css +122 -0
  92. package/template/nextjs-shadcn/src/app/layout.tsx +35 -0
  93. package/template/nextjs-shadcn/src/app/navigation.tsx +12 -0
  94. package/template/nextjs-shadcn/src/components/AppLogo.tsx +6 -0
  95. package/template/nextjs-shadcn/src/components/AppShell/internal/AppShell.tsx +23 -0
  96. package/template/nextjs-shadcn/src/components/AppShell/internal/Header.module.css +33 -0
  97. package/template/nextjs-shadcn/src/components/AppShell/internal/Header.tsx +30 -0
  98. package/template/nextjs-shadcn/src/components/AppShell/internal/HeaderMobileMenu.tsx +25 -0
  99. package/template/nextjs-shadcn/src/components/AppShell/internal/HeaderNavLink.tsx +35 -0
  100. package/template/nextjs-shadcn/src/components/AppShell/internal/config.ts +1 -0
  101. package/template/nextjs-shadcn/src/components/AppShell/slot-header-center.tsx +13 -0
  102. package/template/nextjs-shadcn/src/components/AppShell/slot-header-left.tsx +23 -0
  103. package/template/nextjs-shadcn/src/components/AppShell/slot-header-mobile-content.tsx +43 -0
  104. package/template/nextjs-shadcn/src/components/AppShell/slot-header-right.tsx +25 -0
  105. package/template/nextjs-shadcn/src/components/providers.tsx +13 -0
  106. package/template/nextjs-shadcn/src/components/theme-provider.tsx +11 -0
  107. package/template/nextjs-shadcn/src/lib/env.ts +12 -0
  108. package/template/nextjs-shadcn/src/lib/utils.ts +6 -0
  109. package/template/{nextjs → nextjs-shadcn}/tsconfig.json +3 -2
  110. package/template/pages/nextjs/table-edit/page.tsx +5 -5
  111. package/template/pages/nextjs/table-edit/table.tsx +5 -3
  112. package/template/pages/nextjs/table-infinite/query.ts +4 -3
  113. package/template/pages/nextjs/table-infinite/table.tsx +3 -2
  114. package/template/pages/nextjs/table-infinite-edit/page.tsx +6 -6
  115. package/template/pages/nextjs/table-infinite-edit/query.ts +8 -2
  116. package/template/pages/vite-wv/table/index.tsx +5 -4
  117. package/template/pages/vite-wv/table-edit/index.tsx +6 -6
  118. package/template/vite-wv/src/main.tsx +1 -1
  119. package/template/vite-wv/src/routeTree.gen.ts +41 -41
  120. /package/template/{nextjs → nextjs-mantine}/.prettierrc +0 -0
  121. /package/template/{nextjs → nextjs-mantine}/README.md +0 -0
  122. /package/template/{nextjs → nextjs-mantine}/_gitignore +0 -0
  123. /package/template/{nextjs → nextjs-mantine}/components.json +0 -0
  124. /package/template/{nextjs → nextjs-mantine}/next.config.ts +0 -0
  125. /package/template/{nextjs → nextjs-mantine}/package.json +0 -0
  126. /package/template/{nextjs → nextjs-mantine}/postcss.config.cjs +0 -0
  127. /package/template/{nextjs → nextjs-mantine}/public/favicon.ico +0 -0
  128. /package/template/{nextjs → nextjs-mantine}/public/proofkit.png +0 -0
  129. /package/template/{nextjs → nextjs-mantine}/src/app/(main)/layout.tsx +0 -0
  130. /package/template/{nextjs → nextjs-mantine}/src/app/(main)/page.tsx +0 -0
  131. /package/template/{nextjs → nextjs-mantine}/src/app/layout.tsx +0 -0
  132. /package/template/{nextjs → nextjs-mantine}/src/app/navigation.tsx +0 -0
  133. /package/template/{nextjs → nextjs-mantine}/src/components/AppLogo.tsx +0 -0
  134. /package/template/{nextjs → nextjs-mantine}/src/components/AppShell/internal/AppShell.tsx +0 -0
  135. /package/template/{nextjs → nextjs-mantine}/src/components/AppShell/internal/Header.module.css +0 -0
  136. /package/template/{nextjs → nextjs-mantine}/src/components/AppShell/internal/Header.tsx +0 -0
  137. /package/template/{nextjs → nextjs-mantine}/src/components/AppShell/internal/HeaderMobileMenu.tsx +0 -0
  138. /package/template/{nextjs → nextjs-mantine}/src/components/AppShell/internal/config.ts +0 -0
  139. /package/template/{nextjs → nextjs-mantine}/src/components/AppShell/slot-header-center.tsx +0 -0
  140. /package/template/{nextjs → nextjs-mantine}/src/components/AppShell/slot-header-left.tsx +0 -0
  141. /package/template/{nextjs → nextjs-mantine}/src/components/AppShell/slot-header-mobile-content.tsx +0 -0
  142. /package/template/{nextjs → nextjs-mantine}/src/components/AppShell/slot-header-right.tsx +0 -0
  143. /package/template/{nextjs → nextjs-mantine}/src/config/env.ts +0 -0
  144. /package/template/{nextjs → nextjs-mantine}/src/config/theme/globals.css +0 -0
  145. /package/template/{nextjs → nextjs-mantine}/src/config/theme/mantine-theme.ts +0 -0
  146. /package/template/{nextjs → nextjs-mantine}/src/server/safe-action.ts +0 -0
  147. /package/template/{nextjs → nextjs-mantine}/src/utils/styles.ts +0 -0
@@ -1,18 +1,11 @@
1
1
  {
2
- "Title" : "FileMaker Add-on Auth",
2
+ "Title": "FileMaker Add-on Auth",
3
3
 
4
- "Description" : "*** DESCRIPTION MISSING *** - DNL",
4
+ "Description": "*** DESCRIPTION MISSING *** - DNL",
5
5
 
6
- "Category" : "Web",
6
+ "Category": "Web",
7
7
 
8
- "Features" :
9
- [
10
-
11
- ],
8
+ "Features": [],
12
9
 
13
- "Optimized" :
14
- [
15
- "Desktop", "Tablet", "Mobile"
16
-
17
- ]
10
+ "Optimized": ["Desktop", "Tablet", "Mobile"]
18
11
  }
@@ -1,18 +1,11 @@
1
1
  {
2
- "Title" : "FileMaker Add-on Auth",
2
+ "Title": "FileMaker Add-on Auth",
3
3
 
4
- "Description" : "*** DESCRIPTION MISSING *** - DNL",
4
+ "Description": "*** DESCRIPTION MISSING *** - DNL",
5
5
 
6
- "Category" : "Web",
6
+ "Category": "Web",
7
7
 
8
- "Features" :
9
- [
10
-
11
- ],
8
+ "Features": [],
12
9
 
13
- "Optimized" :
14
- [
15
- "Desktop", "Tablet", "Mobile"
16
-
17
- ]
10
+ "Optimized": ["Desktop", "Tablet", "Mobile"]
18
11
  }
@@ -1,18 +1,11 @@
1
1
  {
2
- "Title" : "FileMaker Add-on Auth",
2
+ "Title": "FileMaker Add-on Auth",
3
3
 
4
- "Description" : "*** DESCRIPTION MISSING *** - DNL",
4
+ "Description": "*** DESCRIPTION MISSING *** - DNL",
5
5
 
6
- "Category" : "Web",
6
+ "Category": "Web",
7
7
 
8
- "Features" :
9
- [
10
-
11
- ],
8
+ "Features": [],
12
9
 
13
- "Optimized" :
14
- [
15
- "Desktop", "Tablet", "Mobile"
16
-
17
- ]
10
+ "Optimized": ["Desktop", "Tablet", "Mobile"]
18
11
  }
@@ -1,18 +1,11 @@
1
1
  {
2
- "Title" : "FileMaker Add-on Auth",
2
+ "Title": "FileMaker Add-on Auth",
3
3
 
4
- "Description" : "*** DESCRIPTION MISSING *** - DNL",
4
+ "Description": "*** DESCRIPTION MISSING *** - DNL",
5
5
 
6
- "Category" : "Web",
6
+ "Category": "Web",
7
7
 
8
- "Features" :
9
- [
10
-
11
- ],
8
+ "Features": [],
12
9
 
13
- "Optimized" :
14
- [
15
- "Desktop", "Tablet", "Mobile"
16
-
17
- ]
10
+ "Optimized": ["Desktop", "Tablet", "Mobile"]
18
11
  }
@@ -1,18 +1,11 @@
1
1
  {
2
- "Title" : "FileMaker Add-on Auth",
2
+ "Title": "FileMaker Add-on Auth",
3
3
 
4
- "Description" : "*** DESCRIPTION MISSING *** - DNL",
4
+ "Description": "*** DESCRIPTION MISSING *** - DNL",
5
5
 
6
- "Category" : "Web",
6
+ "Category": "Web",
7
7
 
8
- "Features" :
9
- [
10
-
11
- ],
8
+ "Features": [],
12
9
 
13
- "Optimized" :
14
- [
15
- "Desktop", "Tablet", "Mobile"
16
-
17
- ]
10
+ "Optimized": ["Desktop", "Tablet", "Mobile"]
18
11
  }
@@ -1,18 +1,11 @@
1
1
  {
2
- "Title" : "FileMaker Add-on Auth",
2
+ "Title": "FileMaker Add-on Auth",
3
3
 
4
- "Description" : "*** DESCRIPTION MISSING *** - DNL",
4
+ "Description": "*** DESCRIPTION MISSING *** - DNL",
5
5
 
6
- "Category" : "Web",
6
+ "Category": "Web",
7
7
 
8
- "Features" :
9
- [
10
-
11
- ],
8
+ "Features": [],
12
9
 
13
- "Optimized" :
14
- [
15
- "Desktop", "Tablet", "Mobile"
16
-
17
- ]
10
+ "Optimized": ["Desktop", "Tablet", "Mobile"]
18
11
  }
@@ -1,11 +1,8 @@
1
1
  {
2
- "GUID" : "7CCFAF65-7C87-46B1-9FDC-D636B3B9C0AD",
3
- "Clients" :
4
- [
5
- "Pro"
6
- ],
7
- "Attribution" : "Proof+Geist",
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
- "Title" : "ProofKitWV",
2
+ "Title": "ProofKitWV",
3
3
 
4
- "Description" : "*** DESCRIPTION MISSING *** - DNL",
4
+ "Description": "*** DESCRIPTION MISSING *** - DNL",
5
5
 
6
- "Category" : "___...___",
6
+ "Category": "___...___",
7
7
 
8
- "Features" :
9
- [
10
-
11
- ],
8
+ "Features": [],
12
9
 
13
- "Optimized" :
14
- [
15
- "Desktop", "Tablet", "Mobile"
16
-
17
- ]
10
+ "Optimized": ["Desktop", "Tablet", "Mobile"]
18
11
  }
@@ -3,9 +3,5 @@
3
3
  "Description": "Easily build and embed your own custom webviewer widgets into FileMaker",
4
4
  "Category": "Web",
5
5
  "Features": [],
6
- "Optimized": [
7
- "Desktop",
8
- "Tablet",
9
- "Mobile"
10
- ]
6
+ "Optimized": ["Desktop", "Tablet", "Mobile"]
11
7
  }
@@ -1,18 +1,11 @@
1
1
  {
2
- "Title" : "ProofKitWV",
2
+ "Title": "ProofKitWV",
3
3
 
4
- "Description" : "*** DESCRIPTION MISSING *** - DNL",
4
+ "Description": "*** DESCRIPTION MISSING *** - DNL",
5
5
 
6
- "Category" : "___...___",
6
+ "Category": "___...___",
7
7
 
8
- "Features" :
9
- [
10
-
11
- ],
8
+ "Features": [],
12
9
 
13
- "Optimized" :
14
- [
15
- "Desktop", "Tablet", "Mobile"
16
-
17
- ]
10
+ "Optimized": ["Desktop", "Tablet", "Mobile"]
18
11
  }
@@ -1,18 +1,11 @@
1
1
  {
2
- "Title" : "ProofKitWV",
2
+ "Title": "ProofKitWV",
3
3
 
4
- "Description" : "*** DESCRIPTION MISSING *** - DNL",
4
+ "Description": "*** DESCRIPTION MISSING *** - DNL",
5
5
 
6
- "Category" : "___...___",
6
+ "Category": "___...___",
7
7
 
8
- "Features" :
9
- [
10
-
11
- ],
8
+ "Features": [],
12
9
 
13
- "Optimized" :
14
- [
15
- "Desktop", "Tablet", "Mobile"
16
-
17
- ]
10
+ "Optimized": ["Desktop", "Tablet", "Mobile"]
18
11
  }
@@ -1,18 +1,11 @@
1
1
  {
2
- "Title" : "ProofKitWV",
2
+ "Title": "ProofKitWV",
3
3
 
4
- "Description" : "*** DESCRIPTION MISSING *** - DNL",
4
+ "Description": "*** DESCRIPTION MISSING *** - DNL",
5
5
 
6
- "Category" : "___...___",
6
+ "Category": "___...___",
7
7
 
8
- "Features" :
9
- [
10
-
11
- ],
8
+ "Features": [],
12
9
 
13
- "Optimized" :
14
- [
15
- "Desktop", "Tablet", "Mobile"
16
-
17
- ]
10
+ "Optimized": ["Desktop", "Tablet", "Mobile"]
18
11
  }
@@ -1,18 +1,11 @@
1
1
  {
2
- "Title" : "ProofKitWV",
2
+ "Title": "ProofKitWV",
3
3
 
4
- "Description" : "*** DESCRIPTION MISSING *** - DNL",
4
+ "Description": "*** DESCRIPTION MISSING *** - DNL",
5
5
 
6
- "Category" : "___...___",
6
+ "Category": "___...___",
7
7
 
8
- "Features" :
9
- [
10
-
11
- ],
8
+ "Features": [],
12
9
 
13
- "Optimized" :
14
- [
15
- "Desktop", "Tablet", "Mobile"
16
-
17
- ]
10
+ "Optimized": ["Desktop", "Tablet", "Mobile"]
18
11
  }
@@ -1,18 +1,11 @@
1
1
  {
2
- "Title" : "ProofKitWV",
2
+ "Title": "ProofKitWV",
3
3
 
4
- "Description" : "*** DESCRIPTION MISSING *** - DNL",
4
+ "Description": "*** DESCRIPTION MISSING *** - DNL",
5
5
 
6
- "Category" : "___...___",
6
+ "Category": "___...___",
7
7
 
8
- "Features" :
9
- [
10
-
11
- ],
8
+ "Features": [],
12
9
 
13
- "Optimized" :
14
- [
15
- "Desktop", "Tablet", "Mobile"
16
-
17
- ]
10
+ "Optimized": ["Desktop", "Tablet", "Mobile"]
18
11
  }
@@ -1,18 +1,11 @@
1
1
  {
2
- "Title" : "ProofKitWV",
2
+ "Title": "ProofKitWV",
3
3
 
4
- "Description" : "*** DESCRIPTION MISSING *** - DNL",
4
+ "Description": "*** DESCRIPTION MISSING *** - DNL",
5
5
 
6
- "Category" : "___...___",
6
+ "Category": "___...___",
7
7
 
8
- "Features" :
9
- [
10
-
11
- ],
8
+ "Features": [],
12
9
 
13
- "Optimized" :
14
- [
15
- "Desktop", "Tablet", "Mobile"
16
-
17
- ]
10
+ "Optimized": ["Desktop", "Tablet", "Mobile"]
18
11
  }
@@ -1,18 +1,11 @@
1
1
  {
2
- "Title" : "ProofKitWV",
2
+ "Title": "ProofKitWV",
3
3
 
4
- "Description" : "*** DESCRIPTION MISSING *** - DNL",
4
+ "Description": "*** DESCRIPTION MISSING *** - DNL",
5
5
 
6
- "Category" : "___...___",
6
+ "Category": "___...___",
7
7
 
8
- "Features" :
9
- [
10
-
11
- ],
8
+ "Features": [],
12
9
 
13
- "Optimized" :
14
- [
15
- "Desktop", "Tablet", "Mobile"
16
-
17
- ]
10
+ "Optimized": ["Desktop", "Tablet", "Mobile"]
18
11
  }
@@ -1,18 +1,11 @@
1
1
  {
2
- "Title" : "ProofKitWV",
2
+ "Title": "ProofKitWV",
3
3
 
4
- "Description" : "*** DESCRIPTION MISSING *** - DNL",
4
+ "Description": "*** DESCRIPTION MISSING *** - DNL",
5
5
 
6
- "Category" : "___...___",
6
+ "Category": "___...___",
7
7
 
8
- "Features" :
9
- [
10
-
11
- ],
8
+ "Features": [],
12
9
 
13
- "Optimized" :
14
- [
15
- "Desktop", "Tablet", "Mobile"
16
-
17
- ]
10
+ "Optimized": ["Desktop", "Tablet", "Mobile"]
18
11
  }
@@ -1,18 +1,11 @@
1
1
  {
2
- "Title" : "ProofKitWV",
2
+ "Title": "ProofKitWV",
3
3
 
4
- "Description" : "*** DESCRIPTION MISSING *** - DNL",
4
+ "Description": "*** DESCRIPTION MISSING *** - DNL",
5
5
 
6
- "Category" : "___...___",
6
+ "Category": "___...___",
7
7
 
8
- "Features" :
9
- [
10
-
11
- ],
8
+ "Features": [],
12
9
 
13
- "Optimized" :
14
- [
15
- "Desktop", "Tablet", "Mobile"
16
-
17
- ]
10
+ "Optimized": ["Desktop", "Tablet", "Mobile"]
18
11
  }
@@ -2,5 +2,6 @@
2
2
  "auth": { "type": "none" },
3
3
  "envFile": ".env",
4
4
  "appType": "browser",
5
- "appliedUpgrades": ["shadcn", "cursorRules"]
5
+ "ui": "mantine",
6
+ "appliedUpgrades": ["cursorRules"]
6
7
  }
@@ -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 <button className={classes.link} onClick={route.onClick}>{route.label}</button>;
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
+ }