@antelopejs/dms 0.3.5 → 0.3.6

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,21 @@
1
1
  # Changelog
2
2
 
3
+ ## v0.3.6
4
+
5
+ [compare changes](https://github.com/AntelopeJS/dms/compare/v0.3.5...v0.3.6)
6
+
7
+ ### 🩹 Fixes
8
+
9
+ - **frontend:** Match sidebar search design ([#21](https://github.com/AntelopeJS/dms/pull/21))
10
+
11
+ ### 🏡 Chore
12
+
13
+ - Migrate dms frontend commands to ajs plugin ([#22](https://github.com/AntelopeJS/dms/pull/22))
14
+
15
+ ### ❤️ Contributors
16
+
17
+ - Antony Rizzitelli <rizzitelli.antony@pm.me>
18
+
3
19
  ## v0.3.5
4
20
 
5
21
  [compare changes](https://github.com/AntelopeJS/dms/compare/v0.3.4...v0.3.5)
package/README.md CHANGED
@@ -20,7 +20,7 @@ ajs project modules add @antelopejs/dms
20
20
  ```
21
21
 
22
22
  The dashboard also requires an API module, a module implementing the Database interface, and an
23
- authentication module. The frontend is served separately by the `ajs-dms` CLI from
23
+ authentication module. The frontend is served separately by the `ajs dms` CLI from
24
24
  [`@antelopejs/dms-frontend`](https://github.com/AntelopeJS/dms-frontend).
25
25
 
26
26
  ## Getting started
@@ -277,7 +277,17 @@ const footerItems = computed((): NavigationMenuItem[] => {
277
277
 
278
278
  <UDashboardSearchButton
279
279
  :collapsed="collapsed"
280
- class="bg-elevated ring-default"
280
+ :label="t('commandPalette.button')"
281
+ :kbds="['⌘K']"
282
+ icon="i-ph-magnifying-glass-light"
283
+ variant="outline"
284
+ class="border-default bg-elevated text-dimmed hover:border-accented hover:bg-elevated hover:text-muted w-full justify-between rounded-md border px-2.5 py-2 text-[12.5px] font-normal"
285
+ :ui="{
286
+ base: 'gap-2',
287
+ leadingIcon: 'size-[15px]',
288
+ trailing:
289
+ '[&>kbd]:rounded-[4px] [&>kbd]:border [&>kbd]:border-accented [&>kbd]:px-[5px] [&>kbd]:py-px [&>kbd]:text-[10px] [&>kbd]:font-normal [&>kbd]:tracking-normal',
290
+ }"
281
291
  />
282
292
 
283
293
  <div
@@ -43,6 +43,7 @@
43
43
  "title": "Quick actions"
44
44
  },
45
45
  "commandPalette": {
46
+ "button": "Search…",
46
47
  "dialog": {
47
48
  "title": "Search",
48
49
  "description": "Search pages, actions and settings"
@@ -43,6 +43,7 @@
43
43
  "title": "Actions rapides"
44
44
  },
45
45
  "commandPalette": {
46
+ "button": "Rechercher…",
46
47
  "dialog": {
47
48
  "title": "Recherche",
48
49
  "description": "Rechercher des pages, des actions et des réglages"
@@ -11,13 +11,13 @@
11
11
  "license": "Apache-2.0",
12
12
  "packageManager": "pnpm@10.6.5",
13
13
  "scripts": {
14
- "typecheck": "ajs-dms verify-source --layer \"$PWD\" --local-package @antelopejs/dms=.. --local-package @antelopejs/interface-dms=../../interface-dms",
14
+ "typecheck": "ajs dms verify-source --layer \"$PWD\" --local-package @antelopejs/dms=.. --local-package @antelopejs/interface-dms=../../interface-dms",
15
15
  "test": "vitest run",
16
16
  "format": "prettier --write .",
17
17
  "lint": "eslint .",
18
18
  "lint:fix": "eslint . --fix",
19
- "frontend:build": "ajs-dms build -b http://127.0.0.1:5010",
20
- "frontend:start": "ajs-dms start -p 3001"
19
+ "frontend:build": "ajs dms build -b http://127.0.0.1:5010",
20
+ "frontend:start": "ajs dms start -p 3001"
21
21
  },
22
22
  "dependencies": {
23
23
  "@iconify-json/lucide": "^1.2.64",
@@ -58,6 +58,7 @@
58
58
  "zod": "^3.24.2"
59
59
  },
60
60
  "devDependencies": {
61
+ "@antelopejs/core": ">=1.8.0 <2",
61
62
  "@antelopejs/dms-frontend": ">=0.2.0 <1.0.0",
62
63
  "@eslint/js": "^8.57.0",
63
64
  "@inertiajs/vue3": "^3.7.0",