@object-ui/plugin-kanban 4.7.0 → 4.8.0
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 +38 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
# @object-ui/plugin-kanban
|
|
2
2
|
|
|
3
|
+
## 4.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 3a17c8d: Mobile UI: aggressive chrome reduction to match real mobile-app conventions.
|
|
8
|
+
|
|
9
|
+
Real mobile CRMs (Salesforce, HubSpot, Notion, Linear) keep one row of
|
|
10
|
+
chrome on phones: title + 1 primary action, plus content. We were
|
|
11
|
+
shipping ~5 rows of toolbars + chips + tabs above the data. This commit
|
|
12
|
+
hides the desktop-only chrome at the `<sm` breakpoint:
|
|
13
|
+
- **ListView**: TabBar (view switcher), UserFilters chip row, quick-filters
|
|
14
|
+
chip row, Sort button, list-scoped Search popover, and the
|
|
15
|
+
(newly-added) mobile-only ViewSettingsPopover gear are all hidden on
|
|
16
|
+
phones. Only the **Filter** icon survives on mobile — paired with the
|
|
17
|
+
global ⌘K top-bar search, that is the entire mobile control surface.
|
|
18
|
+
- **Kanban**: previous commit replaced verbose swipe text with a dot
|
|
19
|
+
indicator; that stands.
|
|
20
|
+
- **ObjectView page header**: the Import (CSV upload) button is hidden
|
|
21
|
+
on mobile — CSV import is a desktop workflow.
|
|
22
|
+
|
|
23
|
+
Net effect on a 390px viewport: ListView toolbar collapses from
|
|
24
|
+
~10 controls (5 chips + 5 icons) to a single Filter icon next to the
|
|
25
|
+
title; the body of the page is reachable without scrolling past 3 rows
|
|
26
|
+
of chrome.
|
|
27
|
+
|
|
28
|
+
Desktop and tablet behavior is unchanged.
|
|
29
|
+
|
|
30
|
+
### Patch Changes
|
|
31
|
+
|
|
32
|
+
- Updated dependencies [06a4066]
|
|
33
|
+
- @object-ui/plugin-detail@4.8.0
|
|
34
|
+
- @object-ui/types@4.8.0
|
|
35
|
+
- @object-ui/core@4.8.0
|
|
36
|
+
- @object-ui/i18n@4.8.0
|
|
37
|
+
- @object-ui/react@4.8.0
|
|
38
|
+
- @object-ui/components@4.8.0
|
|
39
|
+
- @object-ui/fields@4.8.0
|
|
40
|
+
|
|
3
41
|
## 4.7.0
|
|
4
42
|
|
|
5
43
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@object-ui/plugin-kanban",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.8.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Kanban board plugin for Object UI, powered by dnd-kit",
|
|
@@ -29,13 +29,13 @@
|
|
|
29
29
|
"@dnd-kit/utilities": "^3.2.2",
|
|
30
30
|
"@tanstack/react-virtual": "^3.13.24",
|
|
31
31
|
"lucide-react": "^1.16.0",
|
|
32
|
-
"@object-ui/components": "4.
|
|
33
|
-
"@object-ui/core": "4.
|
|
34
|
-
"@object-ui/fields": "4.
|
|
35
|
-
"@object-ui/i18n": "4.
|
|
36
|
-
"@object-ui/plugin-detail": "4.
|
|
37
|
-
"@object-ui/react": "4.
|
|
38
|
-
"@object-ui/types": "4.
|
|
32
|
+
"@object-ui/components": "4.8.0",
|
|
33
|
+
"@object-ui/core": "4.8.0",
|
|
34
|
+
"@object-ui/fields": "4.8.0",
|
|
35
|
+
"@object-ui/i18n": "4.8.0",
|
|
36
|
+
"@object-ui/plugin-detail": "4.8.0",
|
|
37
|
+
"@object-ui/react": "4.8.0",
|
|
38
|
+
"@object-ui/types": "4.8.0"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"react": "^18.0.0 || ^19.0.0",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"typescript": "^6.0.3",
|
|
49
49
|
"vite": "^8.0.13",
|
|
50
50
|
"vite-plugin-dts": "^5.0.0",
|
|
51
|
-
"@object-ui/data-objectstack": "4.
|
|
51
|
+
"@object-ui/data-objectstack": "4.8.0"
|
|
52
52
|
},
|
|
53
53
|
"keywords": [
|
|
54
54
|
"objectui",
|