@checkstack/queue-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 +29 -0
- package/package.json +1 -1
- package/src/pages/QueueConfigPage.tsx +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @checkstack/queue-frontend
|
|
2
2
|
|
|
3
|
+
## 0.2.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [090143b]
|
|
8
|
+
- @checkstack/ui@0.5.1
|
|
9
|
+
|
|
10
|
+
## 0.2.8
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 223081d: Add icon support to PageLayout and improve mobile responsiveness
|
|
15
|
+
|
|
16
|
+
**PageLayout Icons:**
|
|
17
|
+
|
|
18
|
+
- Added required `icon` prop to `PageLayout` and `PageHeader` components that accepts a Lucide icon component reference
|
|
19
|
+
- Icons are rendered with consistent `h-6 w-6 text-primary` styling
|
|
20
|
+
- Updated all page components to include appropriate icons in their headers
|
|
21
|
+
|
|
22
|
+
**Mobile Layout Improvements:**
|
|
23
|
+
|
|
24
|
+
- Standardized responsive padding in main app shell (`p-3` on mobile, `p-6` on desktop)
|
|
25
|
+
- Added `CardHeaderRow` component for mobile-safe card headers with proper wrapping
|
|
26
|
+
- Improved `DateRangeFilter` responsive behavior with vertical stacking on mobile
|
|
27
|
+
- Migrated pages to use `PageLayout` for consistent responsive behavior
|
|
28
|
+
|
|
29
|
+
- Updated dependencies [223081d]
|
|
30
|
+
- @checkstack/ui@0.5.0
|
|
31
|
+
|
|
3
32
|
## 0.2.7
|
|
4
33
|
|
|
5
34
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -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"
|