@gv-tech/design-system 2.5.3 → 2.6.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.
package/README.md CHANGED
@@ -1,16 +1,19 @@
1
1
  # GV Tech Design System
2
2
 
3
3
  <p align="center">
4
- <img alt="GV Tech Design System" src="https://raw.githubusercontent.com/Garcia-Ventures/gvtech-design/main/assets/logo.png" width="180" />
5
-
6
- <a href="https://github.com/Garcia-Ventures/gvtech-design/actions/workflows/ci.yml"><img alt="CI" src="https://github.com/Garcia-Ventures/gvtech-design/actions/workflows/ci.yml/badge.svg" /></a>
7
- <a href="https://www.npmjs.com/package/@gv-tech/design-system"><img alt="npm" src="https://img.shields.io/npm/dt/@gv-tech/design-system" /></a>
8
-
4
+ <img alt="GV Tech Design System" src="apps/playground-web/public/logo512.png" width="180" />
9
5
  </p>
10
6
 
7
+ [![npm version](https://img.shields.io/npm/v/@gv-tech/design-system?style=flat-square&color=CB3837)](https://www.npmjs.com/package/@gv-tech/design-system)
8
+ [![npm downloads](https://img.shields.io/npm/dt/@gv-tech/design-system?style=flat-square&color=50abff)](https://www.npmjs.com/package/@gv-tech/design-system)
9
+ [![npm downloads monthly](https://img.shields.io/npm/dm/@gv-tech/design-system?style=flat-square&color=50abff)](https://www.npmjs.com/package/@gv-tech/design-system)
10
+ [![CI Status](https://github.com/Garcia-Ventures/gvtech-design/actions/workflows/ci.yml/badge.svg)](https://github.com/Garcia-Ventures/gvtech-design/actions/workflows/ci.yml)
11
+ [![Release Status](https://github.com/Garcia-Ventures/gvtech-design/actions/workflows/release.yml/badge.svg)](https://github.com/Garcia-Ventures/gvtech-design/actions/workflows/release.yml)
12
+ [![Maintained with Nx](https://img.shields.io/badge/maintained%20with-nx-blue?style=flat-square&logo=nx)](https://nx.dev)
13
+ [![License](https://img.shields.io/badge/license-MIT-green?style=flat-square)](LICENSE)
11
14
  [![FOSSA Status](https://app.fossa.com/api/projects/custom%2B20755%2Fgithub.com%2FGarcia-Ventures%2Fgvtech-design.svg?type=shield&issueType=license)](https://app.fossa.com/projects/custom%2B20755%2Fgithub.com%2FGarcia-Ventures%2Fgvtech-design?ref=badge_shield&issueType=license)
12
15
 
13
- A React component design system. This repository provides a lightweight, opinionated set of UI components and tooling used by Garcia Ventures projects, built with **Vite** and **TypeScript**.
16
+ A React component design system. This repository provides a lightweight, opinionated set of UI components and tooling used by Garcia Ventures projects, built with **Nx**, **Vite**, and **TypeScript**.
14
17
 
15
18
  ---
16
19
 
@@ -85,9 +88,9 @@ Unit tests use Vitest and React Testing Library.
85
88
 
86
89
  ## Releases & Publishing
87
90
 
88
- We use [`googleapis/release-please-action`](https://github.com/googleapis/release-please-action) to create release PRs and tags. For details on how to set it up and test releases, see [.github/RELEASING.md](.github/RELEASING.md).
91
+ We use **Nx Release** to manage versioning and changelogs. Releases are triggered automatically every Sunday or manually via the **Release** GitHub Action.
89
92
 
90
- Publishing uses OIDC via npm Trusted Publishers for `@gv-tech` publishing.
93
+ Publishing uses OIDC via npm Trusted Publishers for `@gv-tech` packages.
91
94
 
92
95
  ## Contributing
93
96
 
@@ -0,0 +1,3 @@
1
+ declare const _default: import("vite").UserConfig & Promise<import("vite").UserConfig> & import("vite").UserConfigFnObject & import("vite").UserConfigFnPromise & import("vite").UserConfigFn;
2
+ export default _default;
3
+ //# sourceMappingURL=vite.config.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vite.config.d.ts","sourceRoot":"","sources":["../../../packages/ui-native/vite.config.ts"],"names":[],"mappings":";AAIA,wBAWG"}
@@ -0,0 +1,15 @@
1
+ /// <reference types="vitest" />
2
+ import react from '@vitejs/plugin-react-swc';
3
+ import { defineConfig } from 'vite';
4
+ export default defineConfig({
5
+ plugins: [react()],
6
+ test: {
7
+ globals: true,
8
+ environment: 'jsdom',
9
+ },
10
+ resolve: {
11
+ alias: {
12
+ 'react-native': 'react-native-web',
13
+ },
14
+ },
15
+ });
@@ -0,0 +1,2 @@
1
+ import '@testing-library/jest-dom';
2
+ //# sourceMappingURL=setupTests.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"setupTests.d.ts","sourceRoot":"","sources":["../../../../packages/ui-web/src/setupTests.ts"],"names":[],"mappings":"AAAA,OAAO,2BAA2B,CAAC"}
@@ -0,0 +1,104 @@
1
+ import '@testing-library/jest-dom';
2
+ import { vi } from 'vitest';
3
+ // ResizeObserver polyfill
4
+ global.ResizeObserver = class ResizeObserver {
5
+ observe() { }
6
+ unobserve() { }
7
+ disconnect() { }
8
+ };
9
+ // IntersectionObserver polyfill
10
+ global.IntersectionObserver = class IntersectionObserver {
11
+ root = null;
12
+ rootMargin = '';
13
+ thresholds = [];
14
+ constructor(callback, options) {
15
+ this.root = options?.root ?? null;
16
+ this.rootMargin = options?.rootMargin ?? '';
17
+ this.thresholds = options?.threshold
18
+ ? Array.isArray(options.threshold)
19
+ ? options.threshold
20
+ : [options.threshold]
21
+ : [];
22
+ }
23
+ observe() { }
24
+ unobserve() { }
25
+ disconnect() { }
26
+ takeRecords() {
27
+ return [];
28
+ }
29
+ };
30
+ // matchMedia polyfill
31
+ Object.defineProperty(window, 'matchMedia', {
32
+ writable: true,
33
+ value: vi.fn().mockImplementation((query) => ({
34
+ matches: false,
35
+ media: query,
36
+ onchange: null,
37
+ addListener: vi.fn(), // deprecated
38
+ removeListener: vi.fn(), // deprecated
39
+ addEventListener: vi.fn(),
40
+ removeEventListener: vi.fn(),
41
+ dispatchEvent: vi.fn(),
42
+ })),
43
+ });
44
+ // PointerEvent polyfill (simplified)
45
+ if (!global.PointerEvent) {
46
+ class PointerEvent extends MouseEvent {
47
+ height;
48
+ isPrimary;
49
+ pointerId;
50
+ pointerType;
51
+ pressure;
52
+ tangentialPressure;
53
+ tiltX;
54
+ tiltY;
55
+ twist;
56
+ width;
57
+ constructor(type, params = {}) {
58
+ super(type, params);
59
+ this.pointerId = params.pointerId || 0;
60
+ this.width = params.width || 0;
61
+ this.height = params.height || 0;
62
+ this.pressure = params.pressure || 0;
63
+ this.tangentialPressure = params.tangentialPressure || 0;
64
+ this.tiltX = params.tiltX || 0;
65
+ this.tiltY = params.tiltY || 0;
66
+ this.twist = params.twist || 0;
67
+ this.pointerType = params.pointerType || '';
68
+ this.isPrimary = params.isPrimary || false;
69
+ }
70
+ }
71
+ global.PointerEvent = PointerEvent;
72
+ window.PointerEvent = PointerEvent;
73
+ }
74
+ // Layout mocks
75
+ Object.defineProperties(HTMLElement.prototype, {
76
+ offsetParent: {
77
+ get() {
78
+ return this.parentNode;
79
+ },
80
+ },
81
+ offsetLeft: {
82
+ get() {
83
+ return 0;
84
+ },
85
+ },
86
+ offsetTop: {
87
+ get() {
88
+ return 0;
89
+ },
90
+ },
91
+ offsetHeight: {
92
+ get() {
93
+ return 100;
94
+ },
95
+ },
96
+ offsetWidth: {
97
+ get() {
98
+ return 100;
99
+ },
100
+ },
101
+ });
102
+ window.HTMLElement.prototype.scrollIntoView = vi.fn();
103
+ window.HTMLElement.prototype.releasePointerCapture = vi.fn();
104
+ window.HTMLElement.prototype.hasPointerCapture = vi.fn();
@@ -0,0 +1,3 @@
1
+ declare const _default: import("vite").UserConfig & Promise<import("vite").UserConfig> & import("vite").UserConfigFnObject & import("vite").UserConfigFnPromise & import("vite").UserConfigFn;
2
+ export default _default;
3
+ //# sourceMappingURL=vite.config.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vite.config.d.ts","sourceRoot":"","sources":["../../../packages/ui-web/vite.config.ts"],"names":[],"mappings":";AAKA,wBAeG"}
@@ -0,0 +1,20 @@
1
+ /// <reference types="vitest" />
2
+ import react from '@vitejs/plugin-react-swc';
3
+ import path from 'path';
4
+ import { defineConfig } from 'vite';
5
+ export default defineConfig({
6
+ plugins: [react()],
7
+ test: {
8
+ globals: true,
9
+ environment: 'jsdom',
10
+ setupFiles: ['./src/setupTests.ts'],
11
+ alias: {
12
+ '@': path.resolve(__dirname, './src'),
13
+ },
14
+ },
15
+ resolve: {
16
+ alias: {
17
+ '@': path.resolve(__dirname, './src'),
18
+ },
19
+ },
20
+ });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gv-tech/design-system",
3
- "version": "2.5.3",
3
+ "version": "2.6.0",
4
4
  "description": "Garcia Ventures react design system",
5
5
  "repository": "git@github.com:Garcia-Ventures/gvtech-design.git",
6
6
  "license": "MIT",
@@ -167,7 +167,6 @@
167
167
  "node": ">=20"
168
168
  },
169
169
  "publishConfig": {
170
- "access": "public",
171
- "provenance": true
170
+ "access": "public"
172
171
  }
173
- }
172
+ }
package/CHANGELOG.md DELETED
@@ -1,701 +0,0 @@
1
- # Changelog
2
-
3
- ## [2.5.3](https://github.com/Garcia-Ventures/gvtech-design/compare/design-system-v2.5.2...design-system-v2.5.3) (2026-02-20)
4
-
5
-
6
- ### Bug Fixes
7
-
8
- * **ci:** configure npm authentication for the npm publish step. ([32a0871](https://github.com/Garcia-Ventures/gvtech-design/commit/32a0871a87600e9c423e8d4d3e19f3603fe21176))
9
-
10
- ## [2.5.2](https://github.com/Garcia-Ventures/gvtech-design/compare/design-system-v2.5.1...design-system-v2.5.2) (2026-02-20)
11
-
12
-
13
- ### Bug Fixes
14
-
15
- * **ci:** migrate npm publish flags to package.json publishConfig and use yarn npm publish. ([df8f11e](https://github.com/Garcia-Ventures/gvtech-design/commit/df8f11e64eb6fb2b56f5f84b095f0332ee087ab9))
16
-
17
- ## [2.5.1](https://github.com/Garcia-Ventures/gvtech-design/compare/design-system-v2.5.0...design-system-v2.5.1) (2026-02-20)
18
-
19
-
20
- ### Bug Fixes
21
-
22
- * force release ([b28668d](https://github.com/Garcia-Ventures/gvtech-design/commit/b28668da1f27650c46983f01cd95794361572960))
23
- * format ([152e9f7](https://github.com/Garcia-Ventures/gvtech-design/commit/152e9f77b236393ce2ac6e33e8c6a61a4af482c2))
24
-
25
- ## [2.5.0](https://github.com/Garcia-Ventures/gvtech-design/compare/design-system-v2.4.0...design-system-v2.5.0) (2026-02-20)
26
-
27
-
28
- ### Features
29
-
30
- * **universal:** pivot to monorepo architecture and stabilize react native support ([#63](https://github.com/Garcia-Ventures/gvtech-design/issues/63)) ([3458938](https://github.com/Garcia-Ventures/gvtech-design/commit/3458938c17bdfc7a7f5eea0053b7bf1786a571fa))
31
-
32
- ## [2.4.0](https://github.com/Garcia-Ventures/gvtech-design/compare/design-system-v2.3.0...design-system-v2.4.0) (2026-02-16)
33
-
34
-
35
- ### Features
36
-
37
- * Implement mobile sidebar and improve responsive styling and accessibility for documentation and UI components. ([9fafda0](https://github.com/Garcia-Ventures/gvtech-design/commit/9fafda0a890595b7a343aea161325e25bd7d0224))
38
- * Introduce automated design token synchronization and granular component exports for the design system. ([068f010](https://github.com/Garcia-Ventures/gvtech-design/commit/068f010a43a8ae12edd1e89a693345d1e7679bb5))
39
-
40
- ## [2.3.0](https://github.com/Garcia-Ventures/gvtech-design/compare/design-system-v2.2.0...design-system-v2.3.0) (2026-02-13)
41
-
42
-
43
- ### Features
44
-
45
- * Add `ThemeProvider` component, integrate `next-themes`, and update theme documentation and usage examples. ([731a9d1](https://github.com/Garcia-Ventures/gvtech-design/commit/731a9d1af4b143834bcfb5212d2b6e45e3aa25e0))
46
-
47
-
48
- ### Bug Fixes
49
-
50
- * externalize `next-themes` in library builds and update its dependency type to peer and dev. ([6c9b3e7](https://github.com/Garcia-Ventures/gvtech-design/commit/6c9b3e7db61acafc39aaec9b9aca7fb68cadd734))
51
-
52
- ## [2.2.0](https://github.com/Garcia-Ventures/gvtech-design/compare/design-system-v2.1.1...design-system-v2.2.0) (2026-02-13)
53
-
54
-
55
- ### Features
56
-
57
- * introduce `useTheme` hook with token access and update `ThemeToggle` to utilize it, adding corresponding tests. ([c56ea9e](https://github.com/Garcia-Ventures/gvtech-design/commit/c56ea9e192c1f5f471509d5d2167cbbab1974810))
58
-
59
-
60
- ### Documentation
61
-
62
- * Clarify ThemeToggle controlled mode documentation and simplify example usage. ([a2715db](https://github.com/Garcia-Ventures/gvtech-design/commit/a2715db5ed4e14c72411a217f86d631d3b9a2af7))
63
-
64
- ## [2.1.1](https://github.com/Garcia-Ventures/gvtech-design/compare/design-system-v2.1.0...design-system-v2.1.1) (2026-02-13)
65
-
66
-
67
- ### Bug Fixes
68
-
69
- * Configure package.json style.css export with explicit 'style' and 'default' keys. ([74e451b](https://github.com/Garcia-Ventures/gvtech-design/commit/74e451bc4088a2df274575d3d9147b66a5285f17))
70
-
71
- ## [2.1.0](https://github.com/Garcia-Ventures/gvtech-design/compare/design-system-v2.0.1...design-system-v2.1.0) (2026-02-12)
72
-
73
-
74
- ### Features
75
-
76
- * Export and import global CSS styles for the design system. ([e77f343](https://github.com/Garcia-Ventures/gvtech-design/commit/e77f343d09c5bf20cab434196914388443019249))
77
-
78
- ## [2.0.1](https://github.com/Garcia-Ventures/gvtech-design/compare/design-system-v2.0.0...design-system-v2.0.1) (2026-02-12)
79
-
80
-
81
- ### Bug Fixes
82
-
83
- * Add `exports` field to `package.json` for conditional package entry points. ([145cb19](https://github.com/Garcia-Ventures/gvtech-design/commit/145cb19adf80bf871bdd00c3634ed5ad4f495f61))
84
-
85
- ## [2.0.0](https://github.com/Garcia-Ventures/gvtech-design/compare/design-system-v1.2.0...design-system-v2.0.0) (2026-02-12)
86
-
87
-
88
- ### ⚠ BREAKING CHANGES
89
-
90
- * **design-system:** Legacy components and styling system (styled-components) removed in favor of tailwindcss and shadcn/ui.
91
- * This is the full update of storybook.
92
-
93
- ### build
94
-
95
- * upgraded base ([#21](https://github.com/Garcia-Ventures/gvtech-design/issues/21)) ([91d5121](https://github.com/Garcia-Ventures/gvtech-design/commit/91d5121f019d3607ac46a8345c6e091a59a61c3e))
96
-
97
-
98
- ### Features
99
-
100
- * Add .vscode/mcp.json to configure shadcn server command. ([27da4ba](https://github.com/Garcia-Ventures/gvtech-design/commit/27da4ba6ef8576fa5edb34263199b4fd1acde5ee))
101
- * add `direction` prop to `ResizablePanelGroup` and map it to `orientation` ([c081063](https://github.com/Garcia-Ventures/gvtech-design/commit/c081063ae893b0bd95450b3025b8c81cdcc40b94))
102
- * Add `validate:fix` script to automatically fix formatting and linting issues, and ignore `CHANGELOG.md` in Prettier. ([a441b17](https://github.com/Garcia-Ventures/gvtech-design/commit/a441b179e4dc8b1c8e5b1517fc6e673e8b0123ea))
103
- * Add a new documentation page for color tokens and integrate it into the application navigation. ([caf2d7f](https://github.com/Garcia-Ventures/gvtech-design/commit/caf2d7faefeba773f28d3cc0052dd801db4d3416))
104
- * Add component maintenance skill guidelines for UI components, tests, and documentation. ([c296d6c](https://github.com/Garcia-Ventures/gvtech-design/commit/c296d6c99b79f6840596f96a7c0b57938ecf49bd))
105
- * add documentation pages for NavigationMenu, Chart, Form, Menubar, Resizable, Carousel, Toast, and Pagination components. ([0fb8327](https://github.com/Garcia-Ventures/gvtech-design/commit/0fb8327d1007305ba438a8d8ebbcbcf4a765d7dd))
106
- * Add documentation pages for numerous new UI components and implement a footer. ([1a05766](https://github.com/Garcia-Ventures/gvtech-design/commit/1a057664ba0ffb896133876cdec9803a5083b6f8))
107
- * Add DropdownMenu checkbox and radio item examples and refine various component tests. ([affa392](https://github.com/Garcia-Ventures/gvtech-design/commit/affa3921b8570b3f4deb27da6745f3c51fa8172b))
108
- * Add Radix Toast and Sonner comparison documentation, destructive toast example, and integrate both toast providers. ([3d86f25](https://github.com/Garcia-Ventures/gvtech-design/commit/3d86f25cebb177e2426f3c605df3c3f462d0c868))
109
- * add Search component with Cmd+K shortcut, tests, and documentation, and update sidebar navigation to include it. ([e66bb91](https://github.com/Garcia-Ventures/gvtech-design/commit/e66bb917770a7ba00e0392f7723e3297281e8e36))
110
- * Add Storybook test runner with CI integration and optimize Vite build chunking. ([e3c6818](https://github.com/Garcia-Ventures/gvtech-design/commit/e3c6818957d34bc39c76818238c6645b923aaf68))
111
- * add ThemeToggle component with binary and ternary modes, its documentation page, and integrate it into the docs site. ([fad082e](https://github.com/Garcia-Ventures/gvtech-design/commit/fad082ef94bca39839500340ffcc35d330cd87cb))
112
- * Add unit tests for multiple UI components and enhance documentation with prop tables. ([54f5c73](https://github.com/Garcia-Ventures/gvtech-design/commit/54f5c731b41fec0a7649b524f1597939ea860905))
113
- * Add unit tests for numerous UI components and enhance documentation with prop tables. ([9cfa465](https://github.com/Garcia-Ventures/gvtech-design/commit/9cfa465b2e79ff8ac21e6bd6a023d2a7b24abbe8))
114
- * Automate npm publishing for the scoped design system package with provenance. ([e3bef59](https://github.com/Garcia-Ventures/gvtech-design/commit/e3bef59f66d02c561a7eef8caab6a80019cb4127))
115
- * **design-system:** restart and redesign with shadcn/ui ([bea7850](https://github.com/Garcia-Ventures/gvtech-design/commit/bea7850ae8070c9d9e6ccf86ba36c53354eafbd0))
116
- * display dynamic version from package.json in the sidebar ([7be0b14](https://github.com/Garcia-Ventures/gvtech-design/commit/7be0b14f69da21e4bf9109a1d6ed31551d74d6cb))
117
- * enhance accessibility checks and improve build process ([482dc51](https://github.com/Garcia-Ventures/gvtech-design/commit/482dc51e36545217d886b13fae55c0e527cbb8a5))
118
- * Implement a new color palette with design tokens, global styles, and accompanying documentation. ([2d1f6c7](https://github.com/Garcia-Ventures/gvtech-design/commit/2d1f6c7951762012062997f3ca0307f22b5c502f))
119
- * implement automated shadcn registry and batch import components ([0e9dfde](https://github.com/Garcia-Ventures/gvtech-design/commit/0e9dfde1570e32489a5c9e6cb18e5870b96e1dd2))
120
- * Implement documentation site structure with dedicated pages for various components and a navigation sidebar. ([857b5aa](https://github.com/Garcia-Ventures/gvtech-design/commit/857b5aa4e5fa9b1c5aa425d09adbf29a75b17859))
121
- * Introduce `serve.json` for static URL configuration and adjust the `package.json` serve script. ([797a1ab](https://github.com/Garcia-Ventures/gvtech-design/commit/797a1ab58fe208848205b8a36770ba7df0d577a6))
122
- * Introduce and apply new design tokens for colors, including brand-specific values and a radius variable. ([f0db044](https://github.com/Garcia-Ventures/gvtech-design/commit/f0db04402d505670dfaa2f8a727acdd666298429))
123
- * license scans and move ci to github actions ([ae828ff](https://github.com/Garcia-Ventures/gvtech-design/commit/ae828ffcc5d135a37dd798d5cfbe34ad65e5661e))
124
- * migrate storybook config to latest ([9c7bcb5](https://github.com/Garcia-Ventures/gvtech-design/commit/9c7bcb5880664a5182665ec903a516a1e349ab96))
125
- * migrate to shadcn design system and remove storyboard ([69bb668](https://github.com/Garcia-Ventures/gvtech-design/commit/69bb668bce39743bd0d0081c9a230730eca7e5d1))
126
- * **publish:** Getting ready for publish ([4e21b94](https://github.com/Garcia-Ventures/gvtech-design/commit/4e21b942672cb00546441c2998745067d2a404d8))
127
- * **release:** adds release script to ci ([2e4711d](https://github.com/Garcia-Ventures/gvtech-design/commit/2e4711df40d8271671e5079f98e57bed3194efc9))
128
- * **release:** adds release script to ci ([44786eb](https://github.com/Garcia-Ventures/gvtech-design/commit/44786eb9982e5fd84ecc7afbe9bcc5437aee5583))
129
- * **release:** update release process ([#47](https://github.com/Garcia-Ventures/gvtech-design/issues/47)) ([d0dc2af](https://github.com/Garcia-Ventures/gvtech-design/commit/d0dc2afab6c992e0f4a2d9b94d4f70ffefebc279))
130
- * Remove custom build configuration and add explicit environment-specific settings for preview and production environments. ([f5bbfde](https://github.com/Garcia-Ventures/gvtech-design/commit/f5bbfde5389d71fefaf0e8d0e4bbcbdaa7ed1066))
131
- * rename and modernize the design system ([#45](https://github.com/Garcia-Ventures/gvtech-design/issues/45)) ([5bc936d](https://github.com/Garcia-Ventures/gvtech-design/commit/5bc936dc3a831c431eb80a2679d6c0785e6e622d))
132
- * Replace the static header title with dynamic breadcrumb navigation and add sticky header styling. ([3dcd96c](https://github.com/Garcia-Ventures/gvtech-design/commit/3dcd96c87ad82338f5ca75b11f4e46160903901b))
133
- * **spellright:** Adds settings for spellright ([329a125](https://github.com/Garcia-Ventures/gvtech-design/commit/329a1253a15dd443c19bd68e08bad14799bd42a9))
134
- * Upgrade to Tailwind CSS v4, migrating configuration to CSS and ESM, and updating dependencies. ([41d67f2](https://github.com/Garcia-Ventures/gvtech-design/commit/41d67f23d00a058e55225e30e9d7e8b7a20a0d7a))
135
-
136
-
137
- ### Bug Fixes
138
-
139
- * correct FUNDING syntax [skip ci] ([779e13a](https://github.com/Garcia-Ventures/gvtech-design/commit/779e13ae9002fcfab8dd0d342a4ce5964f5ae890))
140
- * correct FUNDING syntax [skip ci] ([679722d](https://github.com/Garcia-Ventures/gvtech-design/commit/679722dca5f74bdf3d3ba27b1a159ce295a234e2))
141
- * correct validations ([b032a1d](https://github.com/Garcia-Ventures/gvtech-design/commit/b032a1db833976af7e3c14d4d12cf1d19ef8b7a9))
142
- * **eslint:** downgraded eslint ([6c30120](https://github.com/Garcia-Ventures/gvtech-design/commit/6c3012078c119fb691eca2fd80c57acc44efeb18))
143
- * **README:** move to root so npm has access ([84f9f2f](https://github.com/Garcia-Ventures/gvtech-design/commit/84f9f2fe14c82d484ad946dc25241e296aef12b7))
144
- * recreate yarn.lock ([a9281fd](https://github.com/Garcia-Ventures/gvtech-design/commit/a9281fde8ac42aea0a8187b1fd56b4742beed408))
145
- * remove redundant eslint config ([eb4a21e](https://github.com/Garcia-Ventures/gvtech-design/commit/eb4a21e3481f9f8d6e5b38ba56618252e10b9558))
146
- * replace missing dependencies ([55ea166](https://github.com/Garcia-Ventures/gvtech-design/commit/55ea1668be6ddf2bf12a30196d433abe25c109ae))
147
- * **sb:** docs to correct version ([#23](https://github.com/Garcia-Ventures/gvtech-design/issues/23)) ([44d93b6](https://github.com/Garcia-Ventures/gvtech-design/commit/44d93b6d8edc4c3690e581b4f77323ce21af2ac0))
148
- * update storybook config ([1f70527](https://github.com/Garcia-Ventures/gvtech-design/commit/1f705279766de140759256f8a9f31e6f8d69f3b7))
149
- * use token in checkout process ([a1901e5](https://github.com/Garcia-Ventures/gvtech-design/commit/a1901e5cca8067985ba8a758160a043dee93cbec))
150
-
151
-
152
- ### Documentation
153
-
154
- * enhance ThemeToggle documentation with a props table and integration examples, and add `relative` positioning to the toggle button. ([d62f5f5](https://github.com/Garcia-Ventures/gvtech-design/commit/d62f5f5c2bf20c9d15480d89ccde320fdca30ff0))
155
- * Explicitly assign CODEOWNERS file ownership and standardize default owner's username casing. ([13efba5](https://github.com/Garcia-Ventures/gvtech-design/commit/13efba5fe7ac280fbe9a2c513debc92f0fea0033))
156
- * update email link ([927503d](https://github.com/Garcia-Ventures/gvtech-design/commit/927503da7f97224ffdfd3e58612a686456170106))
157
- * Update README to reflect the new GV Tech Design System name, `[@gv-tech](https://github.com/gv-tech)` package scope, repository links, and publishing method. ([2d09386](https://github.com/Garcia-Ventures/gvtech-design/commit/2d0938624b25669ed5a8f4deccacf82e0049dc84))
158
-
159
- ## [1.2.0](https://github.com/Garcia-Ventures/gvtech-design/compare/v1.1.0...v1.2.0) (2026-02-12)
160
-
161
-
162
- ### Features
163
-
164
- * Add a new documentation page for color tokens and integrate it into the application navigation. ([caf2d7f](https://github.com/Garcia-Ventures/gvtech-design/commit/caf2d7faefeba773f28d3cc0052dd801db4d3416))
165
- * Add component maintenance skill guidelines for UI components, tests, and documentation. ([c296d6c](https://github.com/Garcia-Ventures/gvtech-design/commit/c296d6c99b79f6840596f96a7c0b57938ecf49bd))
166
- * Add DropdownMenu checkbox and radio item examples and refine various component tests. ([affa392](https://github.com/Garcia-Ventures/gvtech-design/commit/affa3921b8570b3f4deb27da6745f3c51fa8172b))
167
- * Add Radix Toast and Sonner comparison documentation, destructive toast example, and integrate both toast providers. ([3d86f25](https://github.com/Garcia-Ventures/gvtech-design/commit/3d86f25cebb177e2426f3c605df3c3f462d0c868))
168
- * add ThemeToggle component with binary and ternary modes, its documentation page, and integrate it into the docs site. ([fad082e](https://github.com/Garcia-Ventures/gvtech-design/commit/fad082ef94bca39839500340ffcc35d330cd87cb))
169
- * Add unit tests for multiple UI components and enhance documentation with prop tables. ([54f5c73](https://github.com/Garcia-Ventures/gvtech-design/commit/54f5c731b41fec0a7649b524f1597939ea860905))
170
- * Add unit tests for numerous UI components and enhance documentation with prop tables. ([9cfa465](https://github.com/Garcia-Ventures/gvtech-design/commit/9cfa465b2e79ff8ac21e6bd6a023d2a7b24abbe8))
171
- * Implement a new color palette with design tokens, global styles, and accompanying documentation. ([2d1f6c7](https://github.com/Garcia-Ventures/gvtech-design/commit/2d1f6c7951762012062997f3ca0307f22b5c502f))
172
- * Introduce and apply new design tokens for colors, including brand-specific values and a radius variable. ([f0db044](https://github.com/Garcia-Ventures/gvtech-design/commit/f0db04402d505670dfaa2f8a727acdd666298429))
173
- * Replace the static header title with dynamic breadcrumb navigation and add sticky header styling. ([3dcd96c](https://github.com/Garcia-Ventures/gvtech-design/commit/3dcd96c87ad82338f5ca75b11f4e46160903901b))
174
-
175
- ## [1.1.0](https://github.com/Garcia-Ventures/gvtech-design/compare/v1.0.0...v1.1.0) (2026-02-06)
176
-
177
-
178
- ### Features
179
-
180
- * display dynamic version from package.json in the sidebar ([7be0b14](https://github.com/Garcia-Ventures/gvtech-design/commit/7be0b14f69da21e4bf9109a1d6ed31551d74d6cb))
181
- * Upgrade to Tailwind CSS v4, migrating configuration to CSS and ESM, and updating dependencies. ([41d67f2](https://github.com/Garcia-Ventures/gvtech-design/commit/41d67f23d00a058e55225e30e9d7e8b7a20a0d7a))
182
-
183
- ## [1.0.0](https://github.com/Garcia-Ventures/gvtech-design/compare/v0.9.0...v1.0.0) (2026-02-06)
184
-
185
-
186
- ### ⚠ BREAKING CHANGES
187
-
188
- * **design-system:** Legacy components and styling system (styled-components) removed in favor of tailwindcss and shadcn/ui.
189
-
190
- ### Features
191
-
192
- * Add .vscode/mcp.json to configure shadcn server command. ([27da4ba](https://github.com/Garcia-Ventures/gvtech-design/commit/27da4ba6ef8576fa5edb34263199b4fd1acde5ee))
193
- * add `direction` prop to `ResizablePanelGroup` and map it to `orientation` ([c081063](https://github.com/Garcia-Ventures/gvtech-design/commit/c081063ae893b0bd95450b3025b8c81cdcc40b94))
194
- * add documentation pages for NavigationMenu, Chart, Form, Menubar, Resizable, Carousel, Toast, and Pagination components. ([0fb8327](https://github.com/Garcia-Ventures/gvtech-design/commit/0fb8327d1007305ba438a8d8ebbcbcf4a765d7dd))
195
- * Add documentation pages for numerous new UI components and implement a footer. ([1a05766](https://github.com/Garcia-Ventures/gvtech-design/commit/1a057664ba0ffb896133876cdec9803a5083b6f8))
196
- * **design-system:** restart and redesign with shadcn/ui ([bea7850](https://github.com/Garcia-Ventures/gvtech-design/commit/bea7850ae8070c9d9e6ccf86ba36c53354eafbd0))
197
- * implement automated shadcn registry and batch import components ([0e9dfde](https://github.com/Garcia-Ventures/gvtech-design/commit/0e9dfde1570e32489a5c9e6cb18e5870b96e1dd2))
198
- * Implement documentation site structure with dedicated pages for various components and a navigation sidebar. ([857b5aa](https://github.com/Garcia-Ventures/gvtech-design/commit/857b5aa4e5fa9b1c5aa425d09adbf29a75b17859))
199
- * migrate to shadcn design system and remove storyboard ([69bb668](https://github.com/Garcia-Ventures/gvtech-design/commit/69bb668bce39743bd0d0081c9a230730eca7e5d1))
200
- * Remove custom build configuration and add explicit environment-specific settings for preview and production environments. ([f5bbfde](https://github.com/Garcia-Ventures/gvtech-design/commit/f5bbfde5389d71fefaf0e8d0e4bbcbdaa7ed1066))
201
-
202
-
203
- ### Bug Fixes
204
-
205
- * correct validations ([b032a1d](https://github.com/Garcia-Ventures/gvtech-design/commit/b032a1db833976af7e3c14d4d12cf1d19ef8b7a9))
206
-
207
- ## [0.9.0](https://github.com/Garcia-Ventures/gvtech-design/compare/v0.8.0...v0.9.0) (2026-02-01)
208
-
209
-
210
- ### Features
211
-
212
- * Automate npm publishing for the scoped design system package with provenance. ([e3bef59](https://github.com/Garcia-Ventures/gvtech-design/commit/e3bef59f66d02c561a7eef8caab6a80019cb4127))
213
-
214
- ## [0.8.0](https://github.com/Garcia-Ventures/gvtech-design/compare/v0.7.0...v0.8.0) (2026-02-01)
215
-
216
-
217
- ### Features
218
-
219
- * Add `validate:fix` script to automatically fix formatting and linting issues, and ignore `CHANGELOG.md` in Prettier. ([a441b17](https://github.com/Garcia-Ventures/gvtech-design/commit/a441b179e4dc8b1c8e5b1517fc6e673e8b0123ea))
220
- * Add Storybook test runner with CI integration and optimize Vite build chunking. ([e3c6818](https://github.com/Garcia-Ventures/gvtech-design/commit/e3c6818957d34bc39c76818238c6645b923aaf68))
221
- * Introduce `serve.json` for static URL configuration and adjust the `package.json` serve script. ([797a1ab](https://github.com/Garcia-Ventures/gvtech-design/commit/797a1ab58fe208848205b8a36770ba7df0d577a6))
222
-
223
- ## [0.7.0](https://github.com/Garcia-Ventures/gvtech-design/compare/v0.6.3...v0.7.0) (2026-01-28)
224
-
225
-
226
- ### Features
227
-
228
- * enhance accessibility checks and improve build process ([482dc51](https://github.com/Garcia-Ventures/gvtech-design/commit/482dc51e36545217d886b13fae55c0e527cbb8a5))
229
- * **release:** update release process ([#47](https://github.com/Garcia-Ventures/gvtech-design/issues/47)) ([d0dc2af](https://github.com/Garcia-Ventures/gvtech-design/commit/d0dc2afab6c992e0f4a2d9b94d4f70ffefebc279))
230
- * rename and modernize the design system ([#45](https://github.com/Garcia-Ventures/gvtech-design/issues/45)) ([5bc936d](https://github.com/Garcia-Ventures/gvtech-design/commit/5bc936dc3a831c431eb80a2679d6c0785e6e622d))
231
-
232
- ## v0.6.3 (Wed Aug 30 2023)
233
-
234
- #### 🐛 Bug Fix
235
-
236
- - build: bump browserslist ([@eng618](https://github.com/eng618))
237
-
238
- #### Authors: 1
239
-
240
- - Eric Garcia ([@eng618](https://github.com/eng618))
241
-
242
- ---
243
-
244
- ## v0.6.1 (Wed Aug 30 2023)
245
-
246
- #### 🐛 Bug Fix
247
-
248
- - ci: adjustments ([@eng618](https://github.com/eng618))
249
- - ci: remove deprecated action ([@eng618](https://github.com/eng618))
250
- - ci: update actions ([@eng618](https://github.com/eng618))
251
- - docs: update email link ([@eng618](https://github.com/eng618))
252
- - ci: update master to main conversioin ([@eng618](https://github.com/eng618))
253
- - ci: update release workflow ([@eng618](https://github.com/eng618))
254
- - ci: remove custom checkout token ([@eng618](https://github.com/eng618))
255
- - build(test): add ci test command ([@eng618](https://github.com/eng618))
256
- - build(fossa): remove optional test command ([@eng618](https://github.com/eng618))
257
- - build(fossa): remove custom config ([@eng618](https://github.com/eng618))
258
- - build(deps): update minor and below ([@eng618](https://github.com/eng618))
259
- - build(fossa): update config api version to v3 ([@eng618](https://github.com/eng618))
260
- - build(node): bump to latest 18.x ([@eng618](https://github.com/eng618))
261
- - build: bump yarn version ([@eng618](https://github.com/eng618))
262
- - build(deps): bump http-cache-semantics from 4.1.0 to 4.1.1 [#28](https://github.com/Garcia-Enterprise/ge-design/pull/28) ([@dependabot[bot]](https://github.com/dependabot[bot]))
263
- - chore: update templates [#27](https://github.com/Garcia-Enterprise/ge-design/pull/27) ([@eng618](https://github.com/eng618))
264
- - build(deps): bump json5 from 1.0.1 to 1.0.2 [#25](https://github.com/Garcia-Enterprise/ge-design/pull/25) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@eng618](https://github.com/eng618))
265
- - build(deps): bump decode-uri-component from 0.2.0 to 0.2.2 [#24](https://github.com/Garcia-Enterprise/ge-design/pull/24) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@eng618](https://github.com/eng618))
266
- - chore: add pull request templates [#26](https://github.com/Garcia-Enterprise/ge-design/pull/26) ([@eng618](https://github.com/eng618))
267
- - fix(sb): docs to correct version [#23](https://github.com/Garcia-Enterprise/ge-design/pull/23) ([@eng618](https://github.com/eng618))
268
-
269
- #### Authors: 2
270
-
271
- - [@dependabot[bot]](https://github.com/dependabot[bot])
272
- - Eric Garcia ([@eng618](https://github.com/eng618))
273
-
274
- ---
275
-
276
- ## v0.6.0 (Tue Nov 15 2022)
277
-
278
- #### 🚀 Enhancement
279
-
280
- - build!: upgraded base [#21](https://github.com/Garcia-Enterprise/ge-design/pull/21) ([@eng618](https://github.com/eng618))
281
-
282
- #### Authors: 1
283
-
284
- - Eric Garcia ([@eng618](https://github.com/eng618))
285
-
286
- ---
287
-
288
- ## v0.5.15 (Mon Nov 14 2022)
289
-
290
- #### 🐛 Bug Fix
291
-
292
- - build(deps): bump terser from 4.8.0 to 4.8.1 [#17](https://github.com/Garcia-Enterprise/ge-design/pull/17) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@eng618](https://github.com/eng618))
293
-
294
- #### Authors: 2
295
-
296
- - [@dependabot[bot]](https://github.com/dependabot[bot])
297
- - Eric Garcia ([@eng618](https://github.com/eng618))
298
-
299
- ---
300
-
301
- ## v0.5.14 (Mon Nov 14 2022)
302
-
303
- #### 🐛 Bug Fix
304
-
305
- - test: temp disable Link test ([@eng618](https://github.com/eng618))
306
- - build: update storybooks static files api ([@eng618](https://github.com/eng618))
307
- - ci: update checkout action ([@eng618](https://github.com/eng618))
308
- - build: update browserslist ([@eng618](https://github.com/eng618))
309
- - test: update react apis ([@eng618](https://github.com/eng618))
310
-
311
- #### Authors: 1
312
-
313
- - Eric Garcia ([@eng618](https://github.com/eng618))
314
-
315
- ---
316
-
317
- ## v0.5.13 (Mon Nov 14 2022)
318
-
319
- #### 🐛 Bug Fix
320
-
321
- - build: bump all dependencies ([@eng618](https://github.com/eng618))
322
- - build: downgrade babel-loader ([@eng618](https://github.com/eng618))
323
- - build: add babel-loader ([@eng618](https://github.com/eng618))
324
- - build: bump dependencies ([@eng618](https://github.com/eng618))
325
- - ci: update node in actions ([@eng618](https://github.com/eng618))
326
- - fix: recreate yarn.lock ([@eng618](https://github.com/eng618))
327
- - build: update all deps ([@eng618](https://github.com/eng618))
328
- - fix: update storybook config ([@eng618](https://github.com/eng618))
329
- - build: add dependencies ([@eng618](https://github.com/eng618))
330
- - ci: updates ([@eng618](https://github.com/eng618))
331
- - ci: fix release ([@eng618](https://github.com/eng618))
332
- - ci: only publish on success ([@eng618](https://github.com/eng618))
333
-
334
- #### ⚠️ Pushed to `master`
335
-
336
- - build update yarn and node ([@eng618](https://github.com/eng618))
337
-
338
- #### Authors: 1
339
-
340
- - Eric Garcia ([@eng618](https://github.com/eng618))
341
-
342
- ---
343
-
344
- ## v0.5.12 (Fri Nov 05 2021)
345
-
346
- #### 🐛 Bug Fix
347
-
348
- - build: update all dependencies ([@eng618](https://github.com/eng618))
349
-
350
- #### Authors: 1
351
-
352
- - Eric Garcia ([@eng618](https://github.com/eng618))
353
-
354
- ---
355
-
356
- ## v0.5.11 (Fri Nov 05 2021)
357
-
358
- #### 🐛 Bug Fix
359
-
360
- - build: update yarn to v2 ([@eng618](https://github.com/eng618))
361
- - build(deps): bump tar from 6.1.0 to 6.1.6 [#12](https://github.com/Garcia-Enterprise/ge-design/pull/12) ([@dependabot[bot]](https://github.com/dependabot[bot]))
362
-
363
- #### Authors: 2
364
-
365
- - [@dependabot[bot]](https://github.com/dependabot[bot])
366
- - Eric Garcia ([@eng618](https://github.com/eng618))
367
-
368
- ---
369
-
370
- ## v0.5.10 (Thu Jun 03 2021)
371
-
372
- #### 🐛 Bug Fix
373
-
374
- - build: add pre-commit hooks, update yarn.lock ([@ENG618](https://github.com/ENG618))
375
-
376
- #### Authors: 1
377
-
378
- - Eric Garcia ([@ENG618](https://github.com/ENG618))
379
-
380
- ---
381
-
382
- ## v0.5.9 (Thu Jun 03 2021)
383
-
384
- #### 🐛 Bug Fix
385
-
386
- - style: fix linter errors ([@ENG618](https://github.com/ENG618))
387
- - build: update all dependencies ([@ENG618](https://github.com/ENG618))
388
-
389
- #### Authors: 1
390
-
391
- - Eric Garcia ([@ENG618](https://github.com/ENG618))
392
-
393
- ---
394
-
395
- ## v0.5.8 (Thu Jun 03 2021)
396
-
397
- #### 🐛 Bug Fix
398
-
399
- - ci: run on all pushes and pr's, only release master ([@ENG618](https://github.com/ENG618))
400
-
401
- #### Authors: 1
402
-
403
- - Eric Garcia ([@ENG618](https://github.com/ENG618))
404
-
405
- ---
406
-
407
- ## v0.5.7 (Thu Jun 03 2021)
408
-
409
- #### 🐛 Bug Fix
410
-
411
- - build(deps): bump dns-packet from 1.3.1 to 1.3.4 [#11](https://github.com/Garcia-Enterprise/ge-design/pull/11) ([@dependabot[bot]](https://github.com/dependabot[bot]))
412
-
413
- #### Authors: 1
414
-
415
- - [@dependabot[bot]](https://github.com/dependabot[bot])
416
-
417
- ---
418
-
419
- ## v0.5.6 (Thu Apr 22 2021)
420
-
421
- #### 🐛 Bug Fix
422
-
423
- - chore: create OSSAR workflow ([@ENG618](https://github.com/ENG618))
424
-
425
- #### Authors: 1
426
-
427
- - Eric Garcia ([@ENG618](https://github.com/ENG618))
428
-
429
- ---
430
-
431
- ## v0.5.5 (Thu Apr 22 2021)
432
-
433
- #### 🐛 Bug Fix
434
-
435
- - chore: setup security reporting ([@ENG618](https://github.com/ENG618))
436
- - build: setup code scanning ([@ENG618](https://github.com/ENG618))
437
-
438
- #### Authors: 1
439
-
440
- - Eric Garcia ([@ENG618](https://github.com/ENG618))
441
-
442
- ---
443
-
444
- ## v0.5.4 (Thu Apr 22 2021)
445
-
446
- #### 🐛 Bug Fix
447
-
448
- - chore: add license ([@ENG618](https://github.com/ENG618))
449
-
450
- #### Authors: 1
451
-
452
- - Eric Garcia ([@ENG618](https://github.com/ENG618))
453
-
454
- ---
455
-
456
- ## v0.5.3 (Thu Apr 22 2021)
457
-
458
- #### 🐛 Bug Fix
459
-
460
- - ci: temporarily remove preflight checks ([@ENG618](https://github.com/ENG618))
461
- - fix: replace missing dependencies ([@ENG618](https://github.com/ENG618))
462
-
463
- #### Authors: 1
464
-
465
- - Eric Garcia ([@ENG618](https://github.com/ENG618))
466
-
467
- ---
468
-
469
- ## v0.5.2 (Thu Apr 22 2021)
470
-
471
- #### 🐛 Bug Fix
472
-
473
- - ci: check lint and formatting ([@ENG618](https://github.com/ENG618))
474
- - fix: remove redundant eslint config ([@ENG618](https://github.com/ENG618))
475
-
476
- #### Authors: 1
477
-
478
- - Eric Garcia ([@ENG618](https://github.com/ENG618))
479
-
480
- ---
481
-
482
- ## v0.5.1 (Thu Apr 22 2021)
483
-
484
- #### 🐛 Bug Fix
485
-
486
- - build: update dependencies ([@ENG618](https://github.com/ENG618))
487
-
488
- #### Authors: 1
489
-
490
- - Eric Garcia ([@ENG618](https://github.com/ENG618))
491
-
492
- ---
493
-
494
- ## v0.2.0 (Wed Apr 21 2021)
495
-
496
- #### 🚀 Enhancement
497
-
498
- - feat: license scans and move ci to github actions ([@ENG618](https://github.com/ENG618))
499
- - feat: migrate storybook config to latest ([@ENG618](https://github.com/ENG618))
500
-
501
- #### 🐛 Bug Fix
502
-
503
- - fix: use token in checkout process ([@ENG618](https://github.com/ENG618))
504
-
505
- #### ⚠️ Pushed to `master`
506
-
507
- - ci: fix push issue ([@ENG618](https://github.com/ENG618))
508
- - ci: add missing env vars and add twitter release ([@ENG618](https://github.com/ENG618))
509
- - ci: add release token ([@ENG618](https://github.com/ENG618))
510
- - ci: license scan after dependencies installed ([@ENG618](https://github.com/ENG618))
511
- - style: lint all files ([@ENG618](https://github.com/ENG618))
512
- - chore: update all dependencies ([@ENG618](https://github.com/ENG618))
513
- - chore: update FUNDING ([@ENG618](https://github.com/ENG618))
514
-
515
- #### Authors: 1
516
-
517
- - Eric Garcia ([@ENG618](https://github.com/ENG618))
518
-
519
- ---
520
-
521
- ## v0.2.0 (Wed Apr 21 2021)
522
-
523
- #### 🚀 Enhancement
524
-
525
- - feat: license scans and move ci to github actions ([@ENG618](https://github.com/ENG618))
526
- - feat: migrate storybook config to latest ([@ENG618](https://github.com/ENG618))
527
-
528
- #### 🐛 Bug Fix
529
-
530
- - fix: use token in checkout process ([@ENG618](https://github.com/ENG618))
531
-
532
- #### ⚠️ Pushed to `master`
533
-
534
- - ci: fix push issue ([@ENG618](https://github.com/ENG618))
535
- - ci: add missing env vars and add twitter release ([@ENG618](https://github.com/ENG618))
536
- - ci: add release token ([@ENG618](https://github.com/ENG618))
537
- - ci: license scan after dependencies installed ([@ENG618](https://github.com/ENG618))
538
- - style: lint all files ([@ENG618](https://github.com/ENG618))
539
- - chore: update all dependencies ([@ENG618](https://github.com/ENG618))
540
- - chore: update FUNDING ([@ENG618](https://github.com/ENG618))
541
-
542
- #### Authors: 1
543
-
544
- - Eric Garcia ([@ENG618](https://github.com/ENG618))
545
-
546
- ---
547
-
548
- ## v0.1.14 (Thu Dec 24 2020)
549
-
550
- #### 🔩 Dependency Updates
551
-
552
- - Bump ini from 1.3.5 to 1.3.8 [#9](https://github.com/Garcia-Enterprise/ge-design/pull/9) ([@dependabot[bot]](https://github.com/dependabot[bot]))
553
-
554
- #### Authors: 1
555
-
556
- - [@dependabot[bot]](https://github.com/dependabot[bot])
557
-
558
- ---
559
-
560
- ## (Thu Dec 24 2020)
561
-
562
- #### 🔩 Dependency Updates
563
-
564
- - Bump ini from 1.3.5 to 1.3.8 [#9](https://github.com/Garcia-Enterprise/ge-design/pull/9) ([@dependabot[bot]](https://github.com/dependabot[bot]))
565
-
566
- #### Authors: 1
567
-
568
- - [@dependabot[bot]](https://github.com/dependabot[bot])
569
-
570
- ---
571
-
572
- ## v0.1.13 (Fri Sep 11 2020)
573
-
574
- #### 🔩 Dependency Updates
575
-
576
- - Bump http-proxy from 1.18.0 to 1.18.1 [#8](https://github.com/Garcia-Enterprise/ge-design/pull/8) ([@dependabot[bot]](https://github.com/dependabot[bot]))
577
-
578
- #### Authors: 1
579
-
580
- - [@dependabot[bot]](https://github.com/dependabot[bot])
581
-
582
- ---
583
-
584
- ## (Fri Sep 11 2020)
585
-
586
- #### 🔩 Dependency Updates
587
-
588
- - Bump http-proxy from 1.18.0 to 1.18.1 [#8](https://github.com/Garcia-Enterprise/ge-design/pull/8) ([@dependabot[bot]](https://github.com/dependabot[bot]))
589
-
590
- #### Authors: 1
591
-
592
- - [@dependabot[bot]](https://github.com/dependabot[bot])
593
-
594
- ---
595
-
596
- ## v0.1.12 (Sun Aug 02 2020)
597
-
598
- #### 🔩 Dependency Updates
599
-
600
- - Bump elliptic from 6.5.2 to 6.5.3 [#7](https://github.com/Garcia-Enterprise/ge-design/pull/7) ([@dependabot[bot]](https://github.com/dependabot[bot]))
601
-
602
- #### Authors: 1
603
-
604
- - [@dependabot[bot]](https://github.com/dependabot[bot])
605
-
606
- ---
607
-
608
- ## (Sun Aug 02 2020)
609
-
610
- #### 🔩 Dependency Updates
611
-
612
- - Bump elliptic from 6.5.2 to 6.5.3 [#7](https://github.com/Garcia-Enterprise/ge-design/pull/7) ([@dependabot[bot]](https://github.com/dependabot[bot]))
613
-
614
- #### Authors: 1
615
-
616
- - [@dependabot[bot]](https://github.com/dependabot[bot])
617
-
618
- ---
619
-
620
- ## v0.1.11 (Thu Jun 11 2020)
621
-
622
- #### 🐛 Bug Fix
623
-
624
- - build(prettier): add custom prettier config [#6](https://github.com/Garcia-Enterprise/ge-design/pull/6) ([@ENG618](https://github.com/ENG618))
625
-
626
- #### Authors: 1
627
-
628
- - Eric Garcia ([@ENG618](https://github.com/ENG618))
629
-
630
- ---
631
-
632
- ## v0.1.11 (Thu Jun 11 2020)
633
-
634
- #### 🐛 Bug Fix
635
-
636
- - build(prettier): add custom prettier config [#6](https://github.com/Garcia-Enterprise/ge-design/pull/6) ([@ENG618](https://github.com/ENG618))
637
-
638
- #### Authors: 1
639
-
640
- - Eric Garcia ([@ENG618](https://github.com/ENG618))
641
-
642
- ---
643
-
644
- ## v0.1.10 (Tue Jun 09 2020)
645
-
646
- #### ⚠️ Pushed to `master`
647
-
648
- - Merge branch 'develop' ([@ENG618](https://github.com/ENG618))
649
-
650
- #### Authors: 1
651
-
652
- - Eric Garcia ([@ENG618](https://github.com/ENG618))
653
-
654
- ---
655
-
656
- ## v0.1.9 (Tue Jun 09 2020)
657
-
658
- #### ⚠️ Pushed to `master`
659
-
660
- - add link to npm ([@ENG618](https://github.com/ENG618))
661
-
662
- #### Authors: 1
663
-
664
- - Eric Garcia ([@ENG618](https://github.com/ENG618))
665
-
666
- ---
667
-
668
- ## v0.1.8 (Mon Jun 08 2020)
669
-
670
- #### 🐛 Bug Fix
671
-
672
- - Bump websocket-extensions from 0.1.3 to 0.1.4 [#5](https://github.com/Garcia-Enterprise/ge-design/pull/5) ([@dependabot[bot]](https://github.com/dependabot[bot]))
673
-
674
- #### Authors: 1
675
-
676
- - [@dependabot[bot]](https://github.com/dependabot[bot])
677
-
678
- ---
679
-
680
- ## v0.1.1 (Tue Mar 17 2020)
681
-
682
- #### 🐛 Bug Fix
683
-
684
- - maintenance [#4](https://github.com/Garcia-Enterprise/ge-design/pull/4) ([@ENG618](https://github.com/ENG618))
685
- - Bump acorn from 5.7.3 to 5.7.4 [#3](https://github.com/Garcia-Enterprise/ge-design/pull/3) ([@dependabot[bot]](https://github.com/dependabot[bot]))
686
- - feat(release): adds release script to ci [#2](https://github.com/Garcia-Enterprise/ge-design/pull/2) ([@ENG618](https://github.com/ENG618))
687
-
688
- #### Authors: 2
689
-
690
- - [@dependabot[bot]](https://github.com/dependabot[bot])
691
- - Eric Garcia ([@ENG618](https://github.com/ENG618))
692
-
693
- ---
694
-
695
- ## v0.1.0 (Fri Nov 15 2019)
696
-
697
- - Created first version of the design system, with `Avatar`, `Badge`, `Button`, `Icon` and `Link` components.
698
-
699
- #### Authors: 1
700
-
701
- - Eric N. Garcia (<eng618@garciaericn.com>)