@xplortech/apollo-react 2.7.1 → 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 +24 -0
- package/package.json +10 -3
package/AGENTS.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# AGENTS.md — `@xplortech/apollo-react`
|
|
2
|
+
|
|
3
|
+
**React** bindings for Apollo web components generated from `@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 `react`**), 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-react` |
|
|
14
|
+
| TypeScript compile | `nx tsc @xplortech/apollo-react` |
|
|
15
|
+
| Clean | `nx clean @xplortech/apollo-react` |
|
|
16
|
+
|
|
17
|
+
There is no per-package lint or test target in this package today; lint runs at the workspace level via `npm run lint` and proxy types are validated by `tsc`.
|
|
18
|
+
|
|
19
|
+
**Nx Release group:** `core` (released together with `apollo-core` and `apollo-vue`).
|
|
20
|
+
|
|
21
|
+
## Public API
|
|
22
|
+
|
|
23
|
+
- Usage and examples: [README.md](./README.md)
|
|
24
|
+
- Depends on `@xplortech/apollo-core` for runtime and styles
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xplortech/apollo-react",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.8.1",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"module": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -10,10 +10,16 @@
|
|
|
10
10
|
"provenance": false
|
|
11
11
|
},
|
|
12
12
|
"author": "Xplor Technologies",
|
|
13
|
+
"license": "MIT",
|
|
13
14
|
"homepage": "https://github.com/xplor/apollo#readme",
|
|
14
15
|
"bugs": {
|
|
15
16
|
"url": "https://github.com/xplor/apollo/issues"
|
|
16
17
|
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/xplor/apollo.git",
|
|
21
|
+
"directory": "packages/apollo-react"
|
|
22
|
+
},
|
|
17
23
|
"keywords": [
|
|
18
24
|
"apollo",
|
|
19
25
|
"design-system",
|
|
@@ -29,6 +35,7 @@
|
|
|
29
35
|
"./src/components.ts"
|
|
30
36
|
],
|
|
31
37
|
"files": [
|
|
38
|
+
"AGENTS.md",
|
|
32
39
|
"css/",
|
|
33
40
|
"dist/"
|
|
34
41
|
],
|
|
@@ -51,8 +58,8 @@
|
|
|
51
58
|
"typescript": "^5.5.3"
|
|
52
59
|
},
|
|
53
60
|
"dependencies": {
|
|
54
|
-
"@xplortech/apollo-core": "2.
|
|
55
|
-
"@xplortech/apollo-icons": "
|
|
61
|
+
"@xplortech/apollo-core": "2.8.1",
|
|
62
|
+
"@xplortech/apollo-icons": "0.4.0"
|
|
56
63
|
},
|
|
57
64
|
"peerDependencies": {
|
|
58
65
|
"react": ">=16.7",
|