@xplortech/apollo-vue 2.8.0 → 2.8.1

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/AGENTS.md ADDED
@@ -0,0 +1,26 @@
1
+ # AGENTS.md — `@xplortech/apollo-vue`
2
+
3
+ **Vue 3** bindings for Apollo web components (`@xplortech/apollo-core`). Part of the Apollo monorepo: https://github.com/xplor/apollo
4
+
5
+ ## Conventions
6
+
7
+ See the root [AGENTS.md](https://github.com/xplor/apollo/blob/main/AGENTS.md) for npm-only workflows, Conventional Commits (**scope `vue`**), PR `Refs:` lines, and shared design-system rules.
8
+
9
+ ## This package (from repo root)
10
+
11
+ | Task | Command |
12
+ |------|---------|
13
+ | Build | `nx build @xplortech/apollo-vue` |
14
+ | TypeScript compile | `nx tsc @xplortech/apollo-vue` |
15
+ | Tests (Vitest) | `nx test @xplortech/apollo-vue` |
16
+ | Tests (watch) | `nx test:watch @xplortech/apollo-vue` |
17
+ | Clean | `nx clean @xplortech/apollo-vue` |
18
+
19
+ There is no per-package lint target; lint runs at the workspace level via `npm run lint`.
20
+
21
+ **Nx Release group:** `core`.
22
+
23
+ ## Public API
24
+
25
+ - Usage, `v-model`, and registration patterns: [README.md](./README.md)
26
+ - Depends on `@xplortech/apollo-core` for custom elements and loader
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xplortech/apollo-vue",
3
- "version": "2.8.0",
3
+ "version": "2.8.1",
4
4
  "description": "Vue bindings for Apollo design system web components",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -11,10 +11,16 @@
11
11
  "provenance": false
12
12
  },
13
13
  "author": "Xplor Technologies",
14
+ "license": "MIT",
14
15
  "homepage": "https://github.com/xplor/apollo#readme",
15
16
  "bugs": {
16
17
  "url": "https://github.com/xplor/apollo/issues"
17
18
  },
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/xplor/apollo.git",
22
+ "directory": "packages/apollo-vue"
23
+ },
18
24
  "keywords": [
19
25
  "apollo",
20
26
  "design-system",
@@ -31,6 +37,7 @@
31
37
  "./src/components.ts"
32
38
  ],
33
39
  "files": [
40
+ "AGENTS.md",
34
41
  "css/",
35
42
  "!css/.gitkeep",
36
43
  "dist/",
@@ -46,7 +53,7 @@
46
53
  "tsc": "tsc -p tsconfig.build.json"
47
54
  },
48
55
  "dependencies": {
49
- "@xplortech/apollo-core": "2.8.0",
56
+ "@xplortech/apollo-core": "2.8.1",
50
57
  "@xplortech/apollo-icons": "0.4.0"
51
58
  },
52
59
  "devDependencies": {
File without changes