@gv-tech/ui-core 2.6.0 → 2.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.
Files changed (2) hide show
  1. package/README.md +17 -0
  2. package/package.json +3 -2
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # @gv-tech/ui-core
2
+
3
+ Shared component contracts, property types, and variants for the GV Tech design system. This package serves as the "source of truth" for component interfaces used by both `@gv-tech/ui-web` and `@gv-tech/ui-native`.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ yarn add @gv-tech/ui-core
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ This package is primarily used by developers building platform-specific implementations of GV Tech components to ensure they adhere to the design system's contract.
14
+
15
+ ---
16
+
17
+ This is a sub-package of the [GV Tech Design System](https://github.com/Garcia-Ventures/gvtech-design).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gv-tech/ui-core",
3
- "version": "2.6.0",
3
+ "version": "2.7.0",
4
4
  "description": "Shared component contracts (props, variants, sizes) for the GV Tech design system",
5
5
  "repository": {
6
6
  "type": "git",
@@ -37,6 +37,7 @@
37
37
  "react": ">=18"
38
38
  },
39
39
  "publishConfig": {
40
- "access": "public"
40
+ "access": "public",
41
+ "provenance": true
41
42
  }
42
43
  }