@7365admin1/layer-common 4.2.7-staging.275 → 4.2.7

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +12 -4
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @iservice365/layer-common
2
2
 
3
+ ## 4.2.7
4
+
5
+ ### Patch Changes
6
+
7
+ - b8c0e1c: ListItem: the label/value row now stacks (label above value, both full width) below the `sm` breakpoint instead of forcing a fixed 4/8 column split. On a phone the 4-column label was squeezing the value unreadably; at `sm` and up it is still 4/8, unchanged.
8
+
9
+ CameraWall: the wall now draws a single column below the phone breakpoint (`smAndDown`), whatever layout button (1x1/2x2/3x3) is selected — a 3-up wall on a phone shrank every tile past the point its status text was legible. Tablet and desktop layouts are unchanged. `camera-wall.ts` gained `wallColumns(key, isPhone)`, and `isDenseLayout`/`wallRows` take an optional `isPhone` flag; both default to the existing desktop behaviour when omitted.
10
+
3
11
  ## 4.2.6
4
12
 
5
13
  ### Patch Changes
@@ -513,11 +521,11 @@
513
521
  `utils/console-tier.ts` + `composables/useConsoleTier.ts` mirror the server's
514
522
  own rule from two endpoints the console already calls, unprojected:
515
523
 
516
- GET /api/members/user/:user/app/admin the Seven365 staff membership
517
- GET /api/roles/id/:role that membership's role document
524
+ GET /api/members/user/:user/app/admin the Seven365 staff membership
525
+ GET /api/roles/id/:role that membership's role document
518
526
 
519
- owner = member.type === "admin" && role.type === "admin" && role.default === true
520
- staff = member.type === "admin" && role.type === "admin"
527
+ owner = member.type === "admin" && role.type === "admin" && role.default === true
528
+ staff = member.type === "admin" && role.type === "admin"
521
529
 
522
530
  `role.default` is the marker because it is the only property of a platform
523
531
  staff role no API caller can set - `role.controller.ts` validates create and
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@7365admin1/layer-common",
3
3
  "license": "MIT",
4
4
  "type": "module",
5
- "version": "4.2.7-staging.275",
5
+ "version": "4.2.7",
6
6
  "author": "7365admin1",
7
7
  "main": "./nuxt.config.ts",
8
8
  "//files": "What a consumer extending this layer actually loads. Without this npm ships the whole working tree - the changesets, the CI workflows, the render harness in tools/ and any scratch directory that happened to exist at publish time. Nuxt resolves a layer by directory, so every runtime directory below has to stay listed; adding a new top-level runtime directory means adding it here too.",