@7365admin1/layer-common 3.2.1-staging.75 → 3.2.2-staging.100
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/.changeset/notification-preferences.md +17 -0
- package/.changeset/pm-sidebar-grouping-and-list-scaffold.md +27 -0
- package/CHANGELOG.md +6 -0
- package/assets/css/primitives.css +680 -0
- package/assets/css/screens.css +541 -0
- package/assets/css/shell.css +258 -0
- package/assets/css/tokens.css +220 -0
- package/components/AccessCardQrTagging.vue +1 -1
- package/components/AccessManagement.vue +53 -72
- package/components/AppButton.vue +52 -0
- package/components/AppCard.vue +20 -0
- package/components/AppDateField.vue +35 -0
- package/components/AppField.vue +46 -0
- package/components/AppKpiTile.vue +65 -0
- package/components/AppSegmented.vue +38 -0
- package/components/AppSelect.vue +203 -0
- package/components/AreaChecklistHistoryMain.vue +6 -2
- package/components/AreaMain.vue +9 -17
- package/components/AttendanceMain.vue +4 -3
- package/components/Avatar/Main.vue +54 -2
- package/components/BillingMain.vue +26 -30
- package/components/BuildingManagement/buildings.vue +27 -38
- package/components/BuildingManagement/units.vue +26 -42
- package/components/BulletinBoardManagement.vue +23 -10
- package/components/CardToolbar.vue +37 -0
- package/components/CleaningScheduleMain.vue +29 -46
- package/components/ClientMain.vue +90 -78
- package/components/DashboardEmptyState.vue +11 -1
- package/components/DashboardMain.vue +285 -207
- package/components/DocumentManagement.vue +129 -93
- package/components/EntryPassMain.vue +49 -27
- package/components/EquipmentItemMain.vue +4 -6
- package/components/EquipmentManagementMain.vue +9 -7
- package/components/FeedbackMain.vue +35 -49
- package/components/FormDialog.vue +60 -21
- package/components/HidIntercomManagement.vue +40 -24
- package/components/HidQrCodeConfiguration.vue +24 -2
- package/components/HidUserEnrollment.vue +68 -31
- package/components/InvitationMain.vue +46 -61
- package/components/Layout/Header.vue +289 -37
- package/components/Layout/NavigationDrawer.vue +299 -30
- package/components/ManageChecklistMain.vue +17 -17
- package/components/MemberMain.vue +79 -60
- package/components/MyAttendanceMain.vue +3 -5
- package/components/Nfc/NFCPatrolRouteMain.vue +64 -96
- package/components/NotificationSettings.vue +361 -0
- package/components/OnlineFormsConfiguration.vue +1 -1
- package/components/PageHeader.vue +43 -0
- package/components/PassInformation.vue +104 -45
- package/components/RolePermissionMain.vue +184 -91
- package/components/ScanVisitorQRCode.vue +35 -7
- package/components/ScheduleAreaMain.vue +15 -49
- package/components/ScheduleTaskMain.vue +23 -26
- package/components/ScheduleTastTicketMain.vue +18 -43
- package/components/ServiceProviderMain.vue +113 -168
- package/components/SiteSettings.vue +21 -8
- package/components/SpecificAttr.vue +10 -2
- package/components/StatusChip.vue +93 -0
- package/components/SwitchContext.vue +33 -1
- package/components/TableHygiene.vue +29 -46
- package/components/TableList.vue +1 -1
- package/components/TableListSecondary.vue +1 -1
- package/components/TableMain.vue +161 -77
- package/components/TableV3.vue +61 -66
- package/components/UnitMain.vue +9 -17
- package/components/VehicleManagement.vue +20 -9
- package/components/VisitorForm.vue +100 -7
- package/components/VisitorManagement.vue +219 -68
- package/components/WorkOrder/Main.vue +42 -51
- package/composables/useHidAmico.ts +26 -2
- package/composables/useNotificationPreference.ts +87 -0
- package/composables/useOrg.ts +1 -1
- package/composables/useRole.ts +22 -0
- package/composables/useSipWebPhone.ts +28 -3
- package/composables/useThemePreference.ts +63 -0
- package/composables/useVisitor.ts +6 -1
- package/nuxt.config.ts +31 -0
- package/package.json +3 -2
- package/pages/notification-settings.vue +19 -0
- package/plugins/vuetify.ts +32 -1
- package/types/org.d.ts +2 -0
- package/utils/nav-sections.test.ts +190 -0
- package/utils/nav-sections.ts +151 -0
- package/utils/status.test.ts +77 -0
- package/utils/status.ts +90 -0
- package/utils/theme.test.ts +325 -7
- package/utils/theme.ts +268 -137
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
---
|
|
2
|
+
"@7365admin1/layer-common": patch
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
Add a Notification Settings screen, shared by every web app.
|
|
6
|
+
|
|
7
|
+
A person can now choose, per module and per delivery route, what they hear
|
|
8
|
+
about: in the app, on their phone, or by email. The screen only lists modules
|
|
9
|
+
their role actually gives them, and a route a module cannot use is shown dimmed
|
|
10
|
+
with the reason in plain words rather than hidden.
|
|
11
|
+
|
|
12
|
+
Modules are collapsed by default with a one-line summary of what is on, so
|
|
13
|
+
somebody with many modules gets a short list instead of thirty switches. There
|
|
14
|
+
is a master control for everything and one per module.
|
|
15
|
+
|
|
16
|
+
The choices are enforced where notifications are sent, in `@7365admin1/core` and
|
|
17
|
+
in the API, so a switch here actually stops the message.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
---
|
|
2
|
+
"@7365admin1/layer-common": patch
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
Group the sidebar's sections and give the list screens the design's page
|
|
6
|
+
scaffold.
|
|
7
|
+
|
|
8
|
+
- `withSections()` walked each application's menu in the order it was given and
|
|
9
|
+
printed a heading whenever the section changed, so Property Management drew
|
|
10
|
+
SERVICE DESK, PROPERTY and SECURITY OPERATIONS **twice each**. Items are now
|
|
11
|
+
grouped under one heading per section, in the order the design lists them,
|
|
12
|
+
with the application's own order kept inside each section. No menu item is
|
|
13
|
+
added, hidden, renamed, re-routed or re-gated.
|
|
14
|
+
- `ServiceProviderMain`, `FeedbackMain`, `InvitationMain` and `WorkOrder/Main`
|
|
15
|
+
had no page title, put their primary action top-left, floated the search
|
|
16
|
+
outside the card, and stacked the refresh/pager on a bar above the tabs. They
|
|
17
|
+
now use `PageHeader` / `AppCard` / `CardToolbar` / `AppButton` / `AppField`:
|
|
18
|
+
a 22px title with the action on the right, then one in-card row with the tabs
|
|
19
|
+
on the left and search, count and pager on the right.
|
|
20
|
+
- `SwitchContext` and the rail's application name print in full instead of
|
|
21
|
+
truncating to "Seventh Cond…" / "Property Managem…".
|
|
22
|
+
- The security dashboard's `ACTIVE PATROL` / `STAFF STATUS` panel headings are
|
|
23
|
+
written the way the design writes them, matching their sibling panels.
|
|
24
|
+
|
|
25
|
+
Placement and wording only: the same buttons open the same dialogs under the
|
|
26
|
+
same permissions, the same tabs load the same lists, and the tables, columns,
|
|
27
|
+
filters and row menus are untouched.
|