@checkstack/queue-frontend 0.2.7 → 0.2.8

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,27 @@
1
1
  # @checkstack/queue-frontend
2
2
 
3
+ ## 0.2.8
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
+
3
25
  ## 0.2.7
4
26
 
5
27
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/queue-frontend",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -32,10 +32,10 @@ const QueueConfigPageContent = () => {
32
32
  const accessApi = useApi(accessApiRef);
33
33
  const toast = useToast();
34
34
  const { allowed: canRead, loading: accessLoading } = accessApi.useAccess(
35
- queueAccess.settings.read
35
+ queueAccess.settings.read,
36
36
  );
37
37
  const { allowed: canUpdate } = accessApi.useAccess(
38
- queueAccess.settings.manage
38
+ queueAccess.settings.manage,
39
39
  );
40
40
 
41
41
  // Fetch plugins and configuration
@@ -78,6 +78,7 @@ const QueueConfigPageContent = () => {
78
78
  <PageLayout
79
79
  title="Queue Settings"
80
80
  subtitle="Configure the queue system for background jobs"
81
+ icon={Gauge}
81
82
  loading={accessLoading}
82
83
  allowed={canRead}
83
84
  maxWidth="3xl"