@antelopejs/dms 0.3.4 → 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 +32 -0
- package/README.md +1 -1
- package/frontend-vue/deferred-plugins.ts +1 -1
- package/frontend-vue/dms.frontend.ts +1 -1
- package/frontend-vue/layers/dms-auth/app/utils/accountsFlow.ts +1 -1
- package/frontend-vue/layers/dms-core/app/composables/auth/useAuthFetch.ts +1 -1
- package/frontend-vue/layers/dms-core/shared/types/app-config.ts +1 -1
- package/frontend-vue/layers/dms-core/shared/types/runtime-config.d.ts +1 -1
- package/frontend-vue/layers/dms-layout/app/build/components/layout/DashboardSidebar.vue +11 -1
- package/frontend-vue/layers/dms-layout/app/components/navigation/CollapsedMenuItem.vue +1 -1
- package/frontend-vue/layers/dms-layout/app/error.vue +1 -1
- package/frontend-vue/layers/dms-layout/i18n/locales/layout-en-GB.json +1 -0
- package/frontend-vue/layers/dms-layout/i18n/locales/layout-fr-FR.json +1 -0
- package/frontend-vue/layers/dms-ui/app/build/composables/table-view/registerDefaultFunctions.ts +1 -1
- package/frontend-vue/layers/dms-ui/app/build/composables/table-view/useTableViewRowActions.ts +1 -1
- package/frontend-vue/package.json +5 -4
- package/frontend-vue/pnpm-lock.yaml +1171 -25
- package/package.json +3 -3
- package/skills/dms/REFERENCE.md +1 -1
- package/skills/dms/SKILL.md +2 -2
- package/skills/dms-dev/SKILL.md +5 -5
- package/skills/dms-dev/scripts/dms-dev.sh +5 -5
- package/skills/dms-project/SKILL.md +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
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
|
+
|
|
19
|
+
## v0.3.5
|
|
20
|
+
|
|
21
|
+
[compare changes](https://github.com/AntelopeJS/dms/compare/v0.3.4...v0.3.5)
|
|
22
|
+
|
|
23
|
+
### 💅 Refactors
|
|
24
|
+
|
|
25
|
+
- **frontend:** Import the SDK through #dms/frontend-module ([#20](https://github.com/AntelopeJS/dms/pull/20))
|
|
26
|
+
|
|
27
|
+
### 🏡 Chore
|
|
28
|
+
|
|
29
|
+
- Align community files with the organization defaults ([#19](https://github.com/AntelopeJS/dms/pull/19))
|
|
30
|
+
|
|
31
|
+
### ❤️ Contributors
|
|
32
|
+
|
|
33
|
+
- Antony Rizzitelli <rizzitelli.antony@pm.me>
|
|
34
|
+
|
|
3
35
|
## v0.3.4
|
|
4
36
|
|
|
5
37
|
[compare changes](https://github.com/AntelopeJS/dms/compare/v0.3.3...v0.3.4)
|
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
|
|
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
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
type DmsAppContext,
|
|
3
3
|
type DmsPluginSetup,
|
|
4
|
-
} from "#dms
|
|
4
|
+
} from "#dms/frontend-module";
|
|
5
5
|
import dmsMenuSyncPlugin from "./layers/dms-layout/app/plugins/dms-menu-sync.client";
|
|
6
6
|
import commandPaletteNavigationPlugin from "./layers/dms-layout/app/plugins/command-palette-navigation.client";
|
|
7
7
|
import commandPalettePersonalPagesPlugin from "./layers/dms-layout/app/plugins/command-palette-personal-pages.client";
|
|
@@ -2,7 +2,7 @@ import { defineAsyncComponent, type Component } from "vue";
|
|
|
2
2
|
import {
|
|
3
3
|
type DmsFrontendModule,
|
|
4
4
|
useDmsAppConfig,
|
|
5
|
-
} from "#dms
|
|
5
|
+
} from "#dms/frontend-module";
|
|
6
6
|
import { defu } from "defu";
|
|
7
7
|
import appConfig from "./layers/dms-layout/app/app.config";
|
|
8
8
|
import authMiddleware from "./layers/dms-auth/app/middleware/auth";
|
|
@@ -277,7 +277,17 @@ const footerItems = computed((): NavigationMenuItem[] => {
|
|
|
277
277
|
|
|
278
278
|
<UDashboardSearchButton
|
|
279
279
|
:collapsed="collapsed"
|
|
280
|
-
|
|
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
|
|
@@ -11,13 +11,13 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"packageManager": "pnpm@10.6.5",
|
|
13
13
|
"scripts": {
|
|
14
|
-
"typecheck": "ajs
|
|
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
|
|
20
|
-
"frontend:start": "ajs
|
|
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,7 +58,8 @@
|
|
|
58
58
|
"zod": "^3.24.2"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@antelopejs/
|
|
61
|
+
"@antelopejs/core": ">=1.8.0 <2",
|
|
62
|
+
"@antelopejs/dms-frontend": ">=0.2.0 <1.0.0",
|
|
62
63
|
"@eslint/js": "^8.57.0",
|
|
63
64
|
"@inertiajs/vue3": "^3.7.0",
|
|
64
65
|
"@nuxt/ui": "4.10.0",
|