@digilogiclabs/create-saas-app 1.18.6 → 1.19.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 (40) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/README.md +122 -37
  3. package/dist/.tsbuildinfo +1 -1
  4. package/dist/generators/template-generator.d.ts +2 -0
  5. package/dist/generators/template-generator.d.ts.map +1 -1
  6. package/dist/generators/template-generator.js +79 -4
  7. package/dist/generators/template-generator.js.map +1 -1
  8. package/dist/templates/mobile/base/template/package.json +3 -3
  9. package/dist/templates/mobile/ui-auth-payments/template/package.json +3 -3
  10. package/dist/templates/mobile/ui-auth-payments-ai/template/package.json +5 -5
  11. package/dist/templates/mobile/ui-auth-payments-ai-rag/template/package.json +5 -5
  12. package/dist/templates/web/base/template/package.json +3 -3
  13. package/dist/templates/web/ui-auth/template/package.json +2 -2
  14. package/dist/templates/web/ui-auth-ai/template/package.json +4 -4
  15. package/dist/templates/web/ui-auth-payments/template/package.json +3 -3
  16. package/dist/templates/web/ui-auth-payments/template/src/app/page.tsx +1 -0
  17. package/dist/templates/web/ui-auth-payments-ai/template/package.json +5 -5
  18. package/dist/templates/web/ui-auth-payments-ai-rag/template/package.json +5 -5
  19. package/dist/templates/web/ui-auth-payments-audio/template/package.json +3 -3
  20. package/dist/templates/web/ui-auth-payments-audio/template/src/components/shared/header.tsx +1 -2
  21. package/dist/templates/web/ui-auth-payments-video/template/package.json +3 -3
  22. package/dist/templates/web/ui-only/template/package.json +1 -1
  23. package/dist/templates/web/ui-package-test/template/package.json +1 -1
  24. package/package.json +1 -1
  25. package/src/templates/mobile/base/template/package.json +3 -3
  26. package/src/templates/mobile/ui-auth-payments/template/package.json +3 -3
  27. package/src/templates/mobile/ui-auth-payments-ai/template/package.json +5 -5
  28. package/src/templates/mobile/ui-auth-payments-ai-rag/template/package.json +5 -5
  29. package/src/templates/web/base/template/package.json +3 -3
  30. package/src/templates/web/ui-auth/template/package.json +2 -2
  31. package/src/templates/web/ui-auth-ai/template/package.json +4 -4
  32. package/src/templates/web/ui-auth-payments/template/package.json +3 -3
  33. package/src/templates/web/ui-auth-payments/template/src/app/page.tsx +1 -0
  34. package/src/templates/web/ui-auth-payments-ai/template/package.json +5 -5
  35. package/src/templates/web/ui-auth-payments-ai-rag/template/package.json +5 -5
  36. package/src/templates/web/ui-auth-payments-audio/template/package.json +3 -3
  37. package/src/templates/web/ui-auth-payments-audio/template/src/components/shared/header.tsx +1 -2
  38. package/src/templates/web/ui-auth-payments-video/template/package.json +3 -3
  39. package/src/templates/web/ui-only/template/package.json +1 -1
  40. package/src/templates/web/ui-package-test/template/package.json +1 -1
@@ -4,7 +4,7 @@ import React, { useState } from 'react';
4
4
  import Link from 'next/link';
5
5
  import { LogOut, CreditCard, User, Settings, Home, Music, Headphones, Menu, X, Info } from 'lucide-react';
6
6
  import { useAuth } from '@digilogiclabs/saas-factory-auth';
7
- import {
7
+ import {
8
8
  ResponsiveHeader,
9
9
  MobileNavigation,
10
10
  HamburgerIcon,
@@ -144,7 +144,6 @@ export function Header() {
144
144
  key={item.href}
145
145
  href={item.href}
146
146
  className="group flex items-center gap-2 text-muted-foreground hover:text-primary transition-all duration-300 relative px-3 py-2 rounded-lg hover:bg-gradient-to-r hover:from-primary/10 hover:to-secondary/10 animate-fade-in-up"
147
- style={{ animationDelay: (index * 100) + 'ms' }}
148
147
  >
149
148
  <item.icon className="w-4 h-4 transition-transform duration-300 group-hover:scale-110 group-hover:rotate-3" />
150
149
  <span className="relative">
@@ -17,9 +17,9 @@
17
17
  "next": "^15.0.0",
18
18
  "react": "^19.0.0",
19
19
  "react-dom": "^19.0.0",
20
- "@digilogiclabs/saas-factory-ui": "^0.25.1",
21
- "@digilogiclabs/saas-factory-auth": "^1.0.1",
22
- "@digilogiclabs/saas-factory-payments": "^1.1.0",
20
+ "@digilogiclabs/saas-factory-ui": "^0.26.0",
21
+ "@digilogiclabs/saas-factory-auth": "^1.0.2",
22
+ "@digilogiclabs/saas-factory-payments": "^1.2.0",
23
23
  "stripe": "^14.0.0",
24
24
  "tailwindcss": "^3.3.0",
25
25
  "autoprefixer": "^10.4.16",
@@ -17,7 +17,7 @@
17
17
  "next": "^15.0.0",
18
18
  "react": "^19.0.0",
19
19
  "react-dom": "^19.0.0",
20
- "@digilogiclabs/saas-factory-ui": "^0.25.1",
20
+ "@digilogiclabs/saas-factory-ui": "^0.26.0",
21
21
  "tailwindcss": "^3.3.0",
22
22
  "autoprefixer": "^10.4.16",
23
23
  "postcss": "^8.4.31",
@@ -14,7 +14,7 @@
14
14
  "next": "15.4.5",
15
15
  "react": "19.1.0",
16
16
  "react-dom": "19.1.0",
17
- "@digilogiclabs/saas-factory-ui": "^0.25.1",
17
+ "@digilogiclabs/saas-factory-ui": "^0.26.0",
18
18
  "tailwindcss": "^3.4.0",
19
19
  "autoprefixer": "^10.4.16",
20
20
  "postcss": "^8.4.31",