@illuminateeducation/dna-atd-frontend 1.0.1-DNAATD-2189.0 → 1.0.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.
Files changed (43) hide show
  1. package/README.md +1 -1
  2. package/dist/.vite/manifest.json +1 -8
  3. package/dist/assets/AdminLayout.css +1 -1
  4. package/dist/assets/AdminLayout.js +1 -1
  5. package/dist/assets/CustomizationView.css +1 -1
  6. package/dist/assets/CustomizationView.js +1 -1
  7. package/dist/assets/HomeView.js +1 -1
  8. package/dist/assets/NotFoundView.css +1 -1
  9. package/dist/assets/NotFoundView.js +1 -1
  10. package/dist/assets/ValidationView.css +1 -1
  11. package/dist/assets/ValidationView.js +1 -1
  12. package/dist/assets/index.js +2 -2
  13. package/package.json +2 -14
  14. package/dist/assets/HomeView.css +0 -1
  15. package/src/App.vue +0 -68
  16. package/src/__tests__/App.spec.js +0 -26
  17. package/src/components/common/BaseButton.vue +0 -20
  18. package/src/components/common/BaseInput.vue +0 -27
  19. package/src/components/common/BaseModal.vue +0 -37
  20. package/src/composables/useAsync.js +0 -34
  21. package/src/composables/useClickOutside.js +0 -29
  22. package/src/composables/useForm.js +0 -89
  23. package/src/composables/useLocalStorage.js +0 -51
  24. package/src/composables/useWindowSize.js +0 -30
  25. package/src/config/app.config.js +0 -79
  26. package/src/features/admin/customization/composables/useCustomization.js +0 -19
  27. package/src/features/admin/customization/store/customizationStore.js +0 -30
  28. package/src/features/admin/customization/views/CustomizationView.vue +0 -17
  29. package/src/features/admin/validation/composables/useValidation.js +0 -18
  30. package/src/features/admin/validation/store/validationStore.js +0 -25
  31. package/src/features/admin/validation/views/ValidationView.vue +0 -17
  32. package/src/index.js +0 -53
  33. package/src/layouts/AdminLayout.vue +0 -146
  34. package/src/main.js +0 -41
  35. package/src/router/index.js +0 -57
  36. package/src/services/apiService.js +0 -72
  37. package/src/services/integration.js +0 -59
  38. package/src/services/phpIntegration.js +0 -1
  39. package/src/stores/counter.js +0 -12
  40. package/src/utils/helpers.js +0 -119
  41. package/src/utils/validators.js +0 -131
  42. package/src/views/HomeView.vue +0 -121
  43. package/src/views/NotFoundView.vue +0 -56
@@ -1,121 +0,0 @@
1
- <template>
2
- <div class="home-view">
3
- <div class="hero">
4
- <h1>Welcome to DNA ATD Frontend</h1>
5
- <p>A modern Vue 3 application with feature-based architecture</p>
6
- <div class="cta-buttons">
7
- <router-link to="/admin" class="btn btn-primary">
8
- Go to Admin Panel
9
- </router-link>
10
- </div>
11
- </div>
12
-
13
- <div class="features">
14
- <div class="feature-card">
15
- <div class="feature-icon">✓</div>
16
- <h3>Validation Management</h3>
17
- <p>Manage and configure validation rules for your application</p>
18
- </div>
19
- <div class="feature-card">
20
- <div class="feature-icon">🎨</div>
21
- <h3>UI Customization</h3>
22
- <p>Customize themes, colors, and layout settings</p>
23
- </div>
24
- </div>
25
- </div>
26
- </template>
27
-
28
- <script setup>
29
- // Home view component
30
- </script>
31
-
32
- <style scoped>
33
- .home-view {
34
- min-height: 100vh;
35
- display: flex;
36
- flex-direction: column;
37
- align-items: center;
38
- justify-content: center;
39
- background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
40
- color: white;
41
- padding: 2rem;
42
- }
43
-
44
- .hero {
45
- text-align: center;
46
- margin-bottom: 4rem;
47
- }
48
-
49
- .hero h1 {
50
- font-size: 3rem;
51
- margin-bottom: 1rem;
52
- }
53
-
54
- .hero p {
55
- font-size: 1.5rem;
56
- margin-bottom: 2rem;
57
- opacity: 0.9;
58
- }
59
-
60
- .cta-buttons {
61
- display: flex;
62
- gap: 1rem;
63
- justify-content: center;
64
- }
65
-
66
- .btn {
67
- padding: 1rem 2rem;
68
- border-radius: 8px;
69
- text-decoration: none;
70
- font-weight: 600;
71
- transition: all 0.3s;
72
- display: inline-block;
73
- }
74
-
75
- .btn-primary {
76
- background-color: white;
77
- color: #667eea;
78
- }
79
-
80
- .btn-primary:hover {
81
- transform: translateY(-2px);
82
- box-shadow: 0 8px 16px rgba(0,0,0,0.2);
83
- }
84
-
85
- .features {
86
- display: grid;
87
- grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
88
- gap: 2rem;
89
- max-width: 1200px;
90
- width: 100%;
91
- }
92
-
93
- .feature-card {
94
- background: rgba(255,255,255,0.1);
95
- backdrop-filter: blur(10px);
96
- padding: 2rem;
97
- border-radius: 12px;
98
- text-align: center;
99
- transition: all 0.3s;
100
- }
101
-
102
- .feature-card:hover {
103
- transform: translateY(-5px);
104
- background: rgba(255,255,255,0.15);
105
- }
106
-
107
- .feature-icon {
108
- font-size: 3rem;
109
- margin-bottom: 1rem;
110
- }
111
-
112
- .feature-card h3 {
113
- font-size: 1.5rem;
114
- margin-bottom: 1rem;
115
- }
116
-
117
- .feature-card p {
118
- opacity: 0.9;
119
- }
120
- </style>
121
-
@@ -1,56 +0,0 @@
1
- <template>
2
- <div class="not-found">
3
- <h1>404</h1>
4
- <h2>Page Not Found</h2>
5
- <p>The page you're looking for doesn't exist.</p>
6
- <router-link to="/" class="btn">Go Home</router-link>
7
- </div>
8
- </template>
9
-
10
- <script setup>
11
- // 404 Not Found view
12
- </script>
13
-
14
- <style scoped>
15
- .not-found {
16
- min-height: 100vh;
17
- display: flex;
18
- flex-direction: column;
19
- align-items: center;
20
- justify-content: center;
21
- text-align: center;
22
- padding: 2rem;
23
- }
24
-
25
- .not-found h1 {
26
- font-size: 6rem;
27
- margin: 0;
28
- color: #3498db;
29
- }
30
-
31
- .not-found h2 {
32
- font-size: 2rem;
33
- margin: 1rem 0;
34
- color: #2c3e50;
35
- }
36
-
37
- .not-found p {
38
- font-size: 1.2rem;
39
- color: #7f8c8d;
40
- margin-bottom: 2rem;
41
- }
42
-
43
- .btn {
44
- background-color: #3498db;
45
- color: white;
46
- padding: 1rem 2rem;
47
- border-radius: 4px;
48
- text-decoration: none;
49
- transition: all 0.3s;
50
- }
51
-
52
- .btn:hover {
53
- background-color: #2980b9;
54
- }
55
- </style>
56
-