@aurea-uds/contracts 0.5.0 → 0.7.0

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "Aurea — Universal Design System",
3
- "version": "0.5.0",
3
+ "version": "0.7.0",
4
4
  "status": "organized-source-of-truth",
5
5
  "language": "pt-BR",
6
6
  "fonts": {
@@ -197,7 +197,8 @@
197
197
  "@aurea-uds/core",
198
198
  "@aurea-uds/fonts",
199
199
  "@aurea-uds/icons",
200
- "@aurea-uds/react"
200
+ "@aurea-uds/react",
201
+ "@aurea-uds/native"
201
202
  ],
202
203
  "rule": "Artefatos derivam de legacy-reference.html e dos pacotes do monorepo; não editar manualmente fora deles.",
203
204
  "mode": "workspace-packages",
@@ -209,7 +210,8 @@
209
210
  "tokens": "para consumir só tokens, importar @aurea-uds/tokens/css uma vez; @aurea-uds/core/css já os inclui",
210
211
  "icons": "embutir o sprite de @aurea-uds/icons/sprite uma vez e referenciar símbolos por id",
211
212
  "css": "importar @aurea-uds/core/css",
212
- "react": "importar componentes de @aurea-uds/react"
213
+ "react": "importar componentes de @aurea-uds/react",
214
+ "native": "alvo React Native: importar AureaProvider/useAureaTokens de @aurea-uds/native, as fontes .ttf de @aurea-uds/fonts/native, e cada icone pelo caminho profundo @aurea-uds/native/icons/<nome> — o barril nao e' a forma documentada (ADR-0038)"
213
215
  }
214
216
  },
215
217
  "breakpoints": {
package/package.json CHANGED
@@ -1,8 +1,12 @@
1
1
  {
2
2
  "name": "@aurea-uds/contracts",
3
- "version": "0.5.0",
3
+ "version": "0.7.0",
4
4
  "description": "The Aurea UDS project contract as machine-readable JSON.",
5
- "keywords": ["aurea", "design-system", "contract"],
5
+ "keywords": [
6
+ "aurea",
7
+ "design-system",
8
+ "contract"
9
+ ],
6
10
  "license": "Apache-2.0",
7
11
  "repository": {
8
12
  "type": "git",
@@ -16,6 +20,7 @@
16
20
  "*.json"
17
21
  ],
18
22
  "exports": {
19
- "./contract": "./aurea.contract.json"
23
+ "./contract": "./aurea.contract.json",
24
+ "./api-surface": "./api-surface.json"
20
25
  }
21
- }
26
+ }