@checkstack/frontend 0.2.7 → 0.2.9

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,45 @@
1
1
  # @checkstack/frontend
2
2
 
3
+ ## 0.2.9
4
+
5
+ ### Patch Changes
6
+
7
+ - 223081d: Add icon support to PageLayout and improve mobile responsiveness
8
+
9
+ **PageLayout Icons:**
10
+
11
+ - Added required `icon` prop to `PageLayout` and `PageHeader` components that accepts a Lucide icon component reference
12
+ - Icons are rendered with consistent `h-6 w-6 text-primary` styling
13
+ - Updated all page components to include appropriate icons in their headers
14
+
15
+ **Mobile Layout Improvements:**
16
+
17
+ - Standardized responsive padding in main app shell (`p-3` on mobile, `p-6` on desktop)
18
+ - Added `CardHeaderRow` component for mobile-safe card headers with proper wrapping
19
+ - Improved `DateRangeFilter` responsive behavior with vertical stacking on mobile
20
+ - Migrated pages to use `PageLayout` for consistent responsive behavior
21
+
22
+ - Updated dependencies [223081d]
23
+ - @checkstack/ui@0.5.0
24
+ - @checkstack/auth-frontend@0.5.5
25
+ - @checkstack/catalog-frontend@0.3.9
26
+ - @checkstack/command-frontend@0.2.8
27
+
28
+ ## 0.2.8
29
+
30
+ ### Patch Changes
31
+
32
+ - Updated dependencies [db1f56f]
33
+ - Updated dependencies [538e45d]
34
+ - @checkstack/common@0.6.0
35
+ - @checkstack/ui@0.4.1
36
+ - @checkstack/auth-frontend@0.5.4
37
+ - @checkstack/catalog-frontend@0.3.8
38
+ - @checkstack/command-frontend@0.2.7
39
+ - @checkstack/frontend-api@0.3.3
40
+ - @checkstack/signal-common@0.1.4
41
+ - @checkstack/signal-frontend@0.0.10
42
+
3
43
  ## 0.2.7
4
44
 
5
45
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/frontend",
3
- "version": "0.2.7",
3
+ "version": "0.2.9",
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="/"