@checkstack/frontend 0.2.8 → 0.2.10

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/CHANGELOG.md CHANGED
@@ -1,5 +1,40 @@
1
1
  # @checkstack/frontend
2
2
 
3
+ ## 0.2.10
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [090143b]
8
+ - @checkstack/ui@0.5.1
9
+ - @checkstack/auth-frontend@0.5.6
10
+ - @checkstack/catalog-frontend@0.3.10
11
+ - @checkstack/command-frontend@0.2.9
12
+
13
+ ## 0.2.9
14
+
15
+ ### Patch Changes
16
+
17
+ - 223081d: Add icon support to PageLayout and improve mobile responsiveness
18
+
19
+ **PageLayout Icons:**
20
+
21
+ - Added required `icon` prop to `PageLayout` and `PageHeader` components that accepts a Lucide icon component reference
22
+ - Icons are rendered with consistent `h-6 w-6 text-primary` styling
23
+ - Updated all page components to include appropriate icons in their headers
24
+
25
+ **Mobile Layout Improvements:**
26
+
27
+ - Standardized responsive padding in main app shell (`p-3` on mobile, `p-6` on desktop)
28
+ - Added `CardHeaderRow` component for mobile-safe card headers with proper wrapping
29
+ - Improved `DateRangeFilter` responsive behavior with vertical stacking on mobile
30
+ - Migrated pages to use `PageLayout` for consistent responsive behavior
31
+
32
+ - Updated dependencies [223081d]
33
+ - @checkstack/ui@0.5.0
34
+ - @checkstack/auth-frontend@0.5.5
35
+ - @checkstack/catalog-frontend@0.3.9
36
+ - @checkstack/command-frontend@0.2.8
37
+
3
38
  ## 0.2.8
4
39
 
5
40
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/frontend",
3
- "version": "0.2.8",
3
+ "version": "0.2.10",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "vite",
package/src/App.tsx CHANGED
@@ -151,7 +151,7 @@ function AppContent() {
151
151
  </div>
152
152
  </div>
153
153
  </header>
154
- <main className="p-8 max-w-7xl mx-auto">
154
+ <main className="px-3 py-4 md:p-8 max-w-7xl mx-auto">
155
155
  <Routes>
156
156
  <Route
157
157
  path="/"