@gv-tech/design-system 2.5.2 → 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 +11 -8
- package/dist/packages/ui-native/vite.config.d.ts +3 -0
- package/dist/packages/ui-native/vite.config.d.ts.map +1 -0
- package/dist/packages/ui-native/vite.config.js +15 -0
- package/dist/packages/ui-web/src/setupTests.d.ts +2 -0
- package/dist/packages/ui-web/src/setupTests.d.ts.map +1 -0
- package/dist/packages/ui-web/src/setupTests.js +104 -0
- package/dist/packages/ui-web/vite.config.d.ts +3 -0
- package/dist/packages/ui-web/vite.config.d.ts.map +1 -0
- package/dist/packages/ui-web/vite.config.js +20 -0
- package/package.json +3 -4
- package/CHANGELOG.md +0 -694
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="
|
|
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
|
+
[](https://www.npmjs.com/package/@gv-tech/design-system)
|
|
8
|
+
[](https://www.npmjs.com/package/@gv-tech/design-system)
|
|
9
|
+
[](https://www.npmjs.com/package/@gv-tech/design-system)
|
|
10
|
+
[](https://github.com/Garcia-Ventures/gvtech-design/actions/workflows/ci.yml)
|
|
11
|
+
[](https://github.com/Garcia-Ventures/gvtech-design/actions/workflows/release.yml)
|
|
12
|
+
[](https://nx.dev)
|
|
13
|
+
[](LICENSE)
|
|
11
14
|
[](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
|
|
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
|
|
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`
|
|
93
|
+
Publishing uses OIDC via npm Trusted Publishers for `@gv-tech` packages.
|
|
91
94
|
|
|
92
95
|
## Contributing
|
|
93
96
|
|
|
@@ -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 @@
|
|
|
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 @@
|
|
|
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.
|
|
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,694 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
## [2.5.2](https://github.com/Garcia-Ventures/gvtech-design/compare/design-system-v2.5.1...design-system-v2.5.2) (2026-02-20)
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
### Bug Fixes
|
|
7
|
-
|
|
8
|
-
* **ci:** migrate npm publish flags to package.json publishConfig and use yarn npm publish. ([df8f11e](https://github.com/Garcia-Ventures/gvtech-design/commit/df8f11e64eb6fb2b56f5f84b095f0332ee087ab9))
|
|
9
|
-
|
|
10
|
-
## [2.5.1](https://github.com/Garcia-Ventures/gvtech-design/compare/design-system-v2.5.0...design-system-v2.5.1) (2026-02-20)
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
### Bug Fixes
|
|
14
|
-
|
|
15
|
-
* force release ([b28668d](https://github.com/Garcia-Ventures/gvtech-design/commit/b28668da1f27650c46983f01cd95794361572960))
|
|
16
|
-
* format ([152e9f7](https://github.com/Garcia-Ventures/gvtech-design/commit/152e9f77b236393ce2ac6e33e8c6a61a4af482c2))
|
|
17
|
-
|
|
18
|
-
## [2.5.0](https://github.com/Garcia-Ventures/gvtech-design/compare/design-system-v2.4.0...design-system-v2.5.0) (2026-02-20)
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
### Features
|
|
22
|
-
|
|
23
|
-
* **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))
|
|
24
|
-
|
|
25
|
-
## [2.4.0](https://github.com/Garcia-Ventures/gvtech-design/compare/design-system-v2.3.0...design-system-v2.4.0) (2026-02-16)
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
### Features
|
|
29
|
-
|
|
30
|
-
* Implement mobile sidebar and improve responsive styling and accessibility for documentation and UI components. ([9fafda0](https://github.com/Garcia-Ventures/gvtech-design/commit/9fafda0a890595b7a343aea161325e25bd7d0224))
|
|
31
|
-
* Introduce automated design token synchronization and granular component exports for the design system. ([068f010](https://github.com/Garcia-Ventures/gvtech-design/commit/068f010a43a8ae12edd1e89a693345d1e7679bb5))
|
|
32
|
-
|
|
33
|
-
## [2.3.0](https://github.com/Garcia-Ventures/gvtech-design/compare/design-system-v2.2.0...design-system-v2.3.0) (2026-02-13)
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
### Features
|
|
37
|
-
|
|
38
|
-
* Add `ThemeProvider` component, integrate `next-themes`, and update theme documentation and usage examples. ([731a9d1](https://github.com/Garcia-Ventures/gvtech-design/commit/731a9d1af4b143834bcfb5212d2b6e45e3aa25e0))
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
### Bug Fixes
|
|
42
|
-
|
|
43
|
-
* 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))
|
|
44
|
-
|
|
45
|
-
## [2.2.0](https://github.com/Garcia-Ventures/gvtech-design/compare/design-system-v2.1.1...design-system-v2.2.0) (2026-02-13)
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
### Features
|
|
49
|
-
|
|
50
|
-
* 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))
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
### Documentation
|
|
54
|
-
|
|
55
|
-
* Clarify ThemeToggle controlled mode documentation and simplify example usage. ([a2715db](https://github.com/Garcia-Ventures/gvtech-design/commit/a2715db5ed4e14c72411a217f86d631d3b9a2af7))
|
|
56
|
-
|
|
57
|
-
## [2.1.1](https://github.com/Garcia-Ventures/gvtech-design/compare/design-system-v2.1.0...design-system-v2.1.1) (2026-02-13)
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
### Bug Fixes
|
|
61
|
-
|
|
62
|
-
* Configure package.json style.css export with explicit 'style' and 'default' keys. ([74e451b](https://github.com/Garcia-Ventures/gvtech-design/commit/74e451bc4088a2df274575d3d9147b66a5285f17))
|
|
63
|
-
|
|
64
|
-
## [2.1.0](https://github.com/Garcia-Ventures/gvtech-design/compare/design-system-v2.0.1...design-system-v2.1.0) (2026-02-12)
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
### Features
|
|
68
|
-
|
|
69
|
-
* Export and import global CSS styles for the design system. ([e77f343](https://github.com/Garcia-Ventures/gvtech-design/commit/e77f343d09c5bf20cab434196914388443019249))
|
|
70
|
-
|
|
71
|
-
## [2.0.1](https://github.com/Garcia-Ventures/gvtech-design/compare/design-system-v2.0.0...design-system-v2.0.1) (2026-02-12)
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
### Bug Fixes
|
|
75
|
-
|
|
76
|
-
* Add `exports` field to `package.json` for conditional package entry points. ([145cb19](https://github.com/Garcia-Ventures/gvtech-design/commit/145cb19adf80bf871bdd00c3634ed5ad4f495f61))
|
|
77
|
-
|
|
78
|
-
## [2.0.0](https://github.com/Garcia-Ventures/gvtech-design/compare/design-system-v1.2.0...design-system-v2.0.0) (2026-02-12)
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
### ⚠ BREAKING CHANGES
|
|
82
|
-
|
|
83
|
-
* **design-system:** Legacy components and styling system (styled-components) removed in favor of tailwindcss and shadcn/ui.
|
|
84
|
-
* This is the full update of storybook.
|
|
85
|
-
|
|
86
|
-
### build
|
|
87
|
-
|
|
88
|
-
* upgraded base ([#21](https://github.com/Garcia-Ventures/gvtech-design/issues/21)) ([91d5121](https://github.com/Garcia-Ventures/gvtech-design/commit/91d5121f019d3607ac46a8345c6e091a59a61c3e))
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
### Features
|
|
92
|
-
|
|
93
|
-
* Add .vscode/mcp.json to configure shadcn server command. ([27da4ba](https://github.com/Garcia-Ventures/gvtech-design/commit/27da4ba6ef8576fa5edb34263199b4fd1acde5ee))
|
|
94
|
-
* add `direction` prop to `ResizablePanelGroup` and map it to `orientation` ([c081063](https://github.com/Garcia-Ventures/gvtech-design/commit/c081063ae893b0bd95450b3025b8c81cdcc40b94))
|
|
95
|
-
* 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))
|
|
96
|
-
* 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))
|
|
97
|
-
* Add component maintenance skill guidelines for UI components, tests, and documentation. ([c296d6c](https://github.com/Garcia-Ventures/gvtech-design/commit/c296d6c99b79f6840596f96a7c0b57938ecf49bd))
|
|
98
|
-
* add documentation pages for NavigationMenu, Chart, Form, Menubar, Resizable, Carousel, Toast, and Pagination components. ([0fb8327](https://github.com/Garcia-Ventures/gvtech-design/commit/0fb8327d1007305ba438a8d8ebbcbcf4a765d7dd))
|
|
99
|
-
* Add documentation pages for numerous new UI components and implement a footer. ([1a05766](https://github.com/Garcia-Ventures/gvtech-design/commit/1a057664ba0ffb896133876cdec9803a5083b6f8))
|
|
100
|
-
* Add DropdownMenu checkbox and radio item examples and refine various component tests. ([affa392](https://github.com/Garcia-Ventures/gvtech-design/commit/affa3921b8570b3f4deb27da6745f3c51fa8172b))
|
|
101
|
-
* 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))
|
|
102
|
-
* 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))
|
|
103
|
-
* Add Storybook test runner with CI integration and optimize Vite build chunking. ([e3c6818](https://github.com/Garcia-Ventures/gvtech-design/commit/e3c6818957d34bc39c76818238c6645b923aaf68))
|
|
104
|
-
* 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))
|
|
105
|
-
* Add unit tests for multiple UI components and enhance documentation with prop tables. ([54f5c73](https://github.com/Garcia-Ventures/gvtech-design/commit/54f5c731b41fec0a7649b524f1597939ea860905))
|
|
106
|
-
* Add unit tests for numerous UI components and enhance documentation with prop tables. ([9cfa465](https://github.com/Garcia-Ventures/gvtech-design/commit/9cfa465b2e79ff8ac21e6bd6a023d2a7b24abbe8))
|
|
107
|
-
* Automate npm publishing for the scoped design system package with provenance. ([e3bef59](https://github.com/Garcia-Ventures/gvtech-design/commit/e3bef59f66d02c561a7eef8caab6a80019cb4127))
|
|
108
|
-
* **design-system:** restart and redesign with shadcn/ui ([bea7850](https://github.com/Garcia-Ventures/gvtech-design/commit/bea7850ae8070c9d9e6ccf86ba36c53354eafbd0))
|
|
109
|
-
* display dynamic version from package.json in the sidebar ([7be0b14](https://github.com/Garcia-Ventures/gvtech-design/commit/7be0b14f69da21e4bf9109a1d6ed31551d74d6cb))
|
|
110
|
-
* enhance accessibility checks and improve build process ([482dc51](https://github.com/Garcia-Ventures/gvtech-design/commit/482dc51e36545217d886b13fae55c0e527cbb8a5))
|
|
111
|
-
* Implement a new color palette with design tokens, global styles, and accompanying documentation. ([2d1f6c7](https://github.com/Garcia-Ventures/gvtech-design/commit/2d1f6c7951762012062997f3ca0307f22b5c502f))
|
|
112
|
-
* implement automated shadcn registry and batch import components ([0e9dfde](https://github.com/Garcia-Ventures/gvtech-design/commit/0e9dfde1570e32489a5c9e6cb18e5870b96e1dd2))
|
|
113
|
-
* Implement documentation site structure with dedicated pages for various components and a navigation sidebar. ([857b5aa](https://github.com/Garcia-Ventures/gvtech-design/commit/857b5aa4e5fa9b1c5aa425d09adbf29a75b17859))
|
|
114
|
-
* Introduce `serve.json` for static URL configuration and adjust the `package.json` serve script. ([797a1ab](https://github.com/Garcia-Ventures/gvtech-design/commit/797a1ab58fe208848205b8a36770ba7df0d577a6))
|
|
115
|
-
* 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))
|
|
116
|
-
* license scans and move ci to github actions ([ae828ff](https://github.com/Garcia-Ventures/gvtech-design/commit/ae828ffcc5d135a37dd798d5cfbe34ad65e5661e))
|
|
117
|
-
* migrate storybook config to latest ([9c7bcb5](https://github.com/Garcia-Ventures/gvtech-design/commit/9c7bcb5880664a5182665ec903a516a1e349ab96))
|
|
118
|
-
* migrate to shadcn design system and remove storyboard ([69bb668](https://github.com/Garcia-Ventures/gvtech-design/commit/69bb668bce39743bd0d0081c9a230730eca7e5d1))
|
|
119
|
-
* **publish:** Getting ready for publish ([4e21b94](https://github.com/Garcia-Ventures/gvtech-design/commit/4e21b942672cb00546441c2998745067d2a404d8))
|
|
120
|
-
* **release:** adds release script to ci ([2e4711d](https://github.com/Garcia-Ventures/gvtech-design/commit/2e4711df40d8271671e5079f98e57bed3194efc9))
|
|
121
|
-
* **release:** adds release script to ci ([44786eb](https://github.com/Garcia-Ventures/gvtech-design/commit/44786eb9982e5fd84ecc7afbe9bcc5437aee5583))
|
|
122
|
-
* **release:** update release process ([#47](https://github.com/Garcia-Ventures/gvtech-design/issues/47)) ([d0dc2af](https://github.com/Garcia-Ventures/gvtech-design/commit/d0dc2afab6c992e0f4a2d9b94d4f70ffefebc279))
|
|
123
|
-
* 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))
|
|
124
|
-
* 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))
|
|
125
|
-
* Replace the static header title with dynamic breadcrumb navigation and add sticky header styling. ([3dcd96c](https://github.com/Garcia-Ventures/gvtech-design/commit/3dcd96c87ad82338f5ca75b11f4e46160903901b))
|
|
126
|
-
* **spellright:** Adds settings for spellright ([329a125](https://github.com/Garcia-Ventures/gvtech-design/commit/329a1253a15dd443c19bd68e08bad14799bd42a9))
|
|
127
|
-
* Upgrade to Tailwind CSS v4, migrating configuration to CSS and ESM, and updating dependencies. ([41d67f2](https://github.com/Garcia-Ventures/gvtech-design/commit/41d67f23d00a058e55225e30e9d7e8b7a20a0d7a))
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
### Bug Fixes
|
|
131
|
-
|
|
132
|
-
* correct FUNDING syntax [skip ci] ([779e13a](https://github.com/Garcia-Ventures/gvtech-design/commit/779e13ae9002fcfab8dd0d342a4ce5964f5ae890))
|
|
133
|
-
* correct FUNDING syntax [skip ci] ([679722d](https://github.com/Garcia-Ventures/gvtech-design/commit/679722dca5f74bdf3d3ba27b1a159ce295a234e2))
|
|
134
|
-
* correct validations ([b032a1d](https://github.com/Garcia-Ventures/gvtech-design/commit/b032a1db833976af7e3c14d4d12cf1d19ef8b7a9))
|
|
135
|
-
* **eslint:** downgraded eslint ([6c30120](https://github.com/Garcia-Ventures/gvtech-design/commit/6c3012078c119fb691eca2fd80c57acc44efeb18))
|
|
136
|
-
* **README:** move to root so npm has access ([84f9f2f](https://github.com/Garcia-Ventures/gvtech-design/commit/84f9f2fe14c82d484ad946dc25241e296aef12b7))
|
|
137
|
-
* recreate yarn.lock ([a9281fd](https://github.com/Garcia-Ventures/gvtech-design/commit/a9281fde8ac42aea0a8187b1fd56b4742beed408))
|
|
138
|
-
* remove redundant eslint config ([eb4a21e](https://github.com/Garcia-Ventures/gvtech-design/commit/eb4a21e3481f9f8d6e5b38ba56618252e10b9558))
|
|
139
|
-
* replace missing dependencies ([55ea166](https://github.com/Garcia-Ventures/gvtech-design/commit/55ea1668be6ddf2bf12a30196d433abe25c109ae))
|
|
140
|
-
* **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))
|
|
141
|
-
* update storybook config ([1f70527](https://github.com/Garcia-Ventures/gvtech-design/commit/1f705279766de140759256f8a9f31e6f8d69f3b7))
|
|
142
|
-
* use token in checkout process ([a1901e5](https://github.com/Garcia-Ventures/gvtech-design/commit/a1901e5cca8067985ba8a758160a043dee93cbec))
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
### Documentation
|
|
146
|
-
|
|
147
|
-
* 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))
|
|
148
|
-
* Explicitly assign CODEOWNERS file ownership and standardize default owner's username casing. ([13efba5](https://github.com/Garcia-Ventures/gvtech-design/commit/13efba5fe7ac280fbe9a2c513debc92f0fea0033))
|
|
149
|
-
* update email link ([927503d](https://github.com/Garcia-Ventures/gvtech-design/commit/927503da7f97224ffdfd3e58612a686456170106))
|
|
150
|
-
* 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))
|
|
151
|
-
|
|
152
|
-
## [1.2.0](https://github.com/Garcia-Ventures/gvtech-design/compare/v1.1.0...v1.2.0) (2026-02-12)
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
### Features
|
|
156
|
-
|
|
157
|
-
* 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))
|
|
158
|
-
* Add component maintenance skill guidelines for UI components, tests, and documentation. ([c296d6c](https://github.com/Garcia-Ventures/gvtech-design/commit/c296d6c99b79f6840596f96a7c0b57938ecf49bd))
|
|
159
|
-
* Add DropdownMenu checkbox and radio item examples and refine various component tests. ([affa392](https://github.com/Garcia-Ventures/gvtech-design/commit/affa3921b8570b3f4deb27da6745f3c51fa8172b))
|
|
160
|
-
* 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))
|
|
161
|
-
* 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))
|
|
162
|
-
* Add unit tests for multiple UI components and enhance documentation with prop tables. ([54f5c73](https://github.com/Garcia-Ventures/gvtech-design/commit/54f5c731b41fec0a7649b524f1597939ea860905))
|
|
163
|
-
* Add unit tests for numerous UI components and enhance documentation with prop tables. ([9cfa465](https://github.com/Garcia-Ventures/gvtech-design/commit/9cfa465b2e79ff8ac21e6bd6a023d2a7b24abbe8))
|
|
164
|
-
* Implement a new color palette with design tokens, global styles, and accompanying documentation. ([2d1f6c7](https://github.com/Garcia-Ventures/gvtech-design/commit/2d1f6c7951762012062997f3ca0307f22b5c502f))
|
|
165
|
-
* 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))
|
|
166
|
-
* Replace the static header title with dynamic breadcrumb navigation and add sticky header styling. ([3dcd96c](https://github.com/Garcia-Ventures/gvtech-design/commit/3dcd96c87ad82338f5ca75b11f4e46160903901b))
|
|
167
|
-
|
|
168
|
-
## [1.1.0](https://github.com/Garcia-Ventures/gvtech-design/compare/v1.0.0...v1.1.0) (2026-02-06)
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
### Features
|
|
172
|
-
|
|
173
|
-
* display dynamic version from package.json in the sidebar ([7be0b14](https://github.com/Garcia-Ventures/gvtech-design/commit/7be0b14f69da21e4bf9109a1d6ed31551d74d6cb))
|
|
174
|
-
* Upgrade to Tailwind CSS v4, migrating configuration to CSS and ESM, and updating dependencies. ([41d67f2](https://github.com/Garcia-Ventures/gvtech-design/commit/41d67f23d00a058e55225e30e9d7e8b7a20a0d7a))
|
|
175
|
-
|
|
176
|
-
## [1.0.0](https://github.com/Garcia-Ventures/gvtech-design/compare/v0.9.0...v1.0.0) (2026-02-06)
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
### ⚠ BREAKING CHANGES
|
|
180
|
-
|
|
181
|
-
* **design-system:** Legacy components and styling system (styled-components) removed in favor of tailwindcss and shadcn/ui.
|
|
182
|
-
|
|
183
|
-
### Features
|
|
184
|
-
|
|
185
|
-
* Add .vscode/mcp.json to configure shadcn server command. ([27da4ba](https://github.com/Garcia-Ventures/gvtech-design/commit/27da4ba6ef8576fa5edb34263199b4fd1acde5ee))
|
|
186
|
-
* add `direction` prop to `ResizablePanelGroup` and map it to `orientation` ([c081063](https://github.com/Garcia-Ventures/gvtech-design/commit/c081063ae893b0bd95450b3025b8c81cdcc40b94))
|
|
187
|
-
* add documentation pages for NavigationMenu, Chart, Form, Menubar, Resizable, Carousel, Toast, and Pagination components. ([0fb8327](https://github.com/Garcia-Ventures/gvtech-design/commit/0fb8327d1007305ba438a8d8ebbcbcf4a765d7dd))
|
|
188
|
-
* Add documentation pages for numerous new UI components and implement a footer. ([1a05766](https://github.com/Garcia-Ventures/gvtech-design/commit/1a057664ba0ffb896133876cdec9803a5083b6f8))
|
|
189
|
-
* **design-system:** restart and redesign with shadcn/ui ([bea7850](https://github.com/Garcia-Ventures/gvtech-design/commit/bea7850ae8070c9d9e6ccf86ba36c53354eafbd0))
|
|
190
|
-
* implement automated shadcn registry and batch import components ([0e9dfde](https://github.com/Garcia-Ventures/gvtech-design/commit/0e9dfde1570e32489a5c9e6cb18e5870b96e1dd2))
|
|
191
|
-
* Implement documentation site structure with dedicated pages for various components and a navigation sidebar. ([857b5aa](https://github.com/Garcia-Ventures/gvtech-design/commit/857b5aa4e5fa9b1c5aa425d09adbf29a75b17859))
|
|
192
|
-
* migrate to shadcn design system and remove storyboard ([69bb668](https://github.com/Garcia-Ventures/gvtech-design/commit/69bb668bce39743bd0d0081c9a230730eca7e5d1))
|
|
193
|
-
* 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))
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
### Bug Fixes
|
|
197
|
-
|
|
198
|
-
* correct validations ([b032a1d](https://github.com/Garcia-Ventures/gvtech-design/commit/b032a1db833976af7e3c14d4d12cf1d19ef8b7a9))
|
|
199
|
-
|
|
200
|
-
## [0.9.0](https://github.com/Garcia-Ventures/gvtech-design/compare/v0.8.0...v0.9.0) (2026-02-01)
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
### Features
|
|
204
|
-
|
|
205
|
-
* Automate npm publishing for the scoped design system package with provenance. ([e3bef59](https://github.com/Garcia-Ventures/gvtech-design/commit/e3bef59f66d02c561a7eef8caab6a80019cb4127))
|
|
206
|
-
|
|
207
|
-
## [0.8.0](https://github.com/Garcia-Ventures/gvtech-design/compare/v0.7.0...v0.8.0) (2026-02-01)
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
### Features
|
|
211
|
-
|
|
212
|
-
* 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))
|
|
213
|
-
* Add Storybook test runner with CI integration and optimize Vite build chunking. ([e3c6818](https://github.com/Garcia-Ventures/gvtech-design/commit/e3c6818957d34bc39c76818238c6645b923aaf68))
|
|
214
|
-
* Introduce `serve.json` for static URL configuration and adjust the `package.json` serve script. ([797a1ab](https://github.com/Garcia-Ventures/gvtech-design/commit/797a1ab58fe208848205b8a36770ba7df0d577a6))
|
|
215
|
-
|
|
216
|
-
## [0.7.0](https://github.com/Garcia-Ventures/gvtech-design/compare/v0.6.3...v0.7.0) (2026-01-28)
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
### Features
|
|
220
|
-
|
|
221
|
-
* enhance accessibility checks and improve build process ([482dc51](https://github.com/Garcia-Ventures/gvtech-design/commit/482dc51e36545217d886b13fae55c0e527cbb8a5))
|
|
222
|
-
* **release:** update release process ([#47](https://github.com/Garcia-Ventures/gvtech-design/issues/47)) ([d0dc2af](https://github.com/Garcia-Ventures/gvtech-design/commit/d0dc2afab6c992e0f4a2d9b94d4f70ffefebc279))
|
|
223
|
-
* 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))
|
|
224
|
-
|
|
225
|
-
## v0.6.3 (Wed Aug 30 2023)
|
|
226
|
-
|
|
227
|
-
#### 🐛 Bug Fix
|
|
228
|
-
|
|
229
|
-
- build: bump browserslist ([@eng618](https://github.com/eng618))
|
|
230
|
-
|
|
231
|
-
#### Authors: 1
|
|
232
|
-
|
|
233
|
-
- Eric Garcia ([@eng618](https://github.com/eng618))
|
|
234
|
-
|
|
235
|
-
---
|
|
236
|
-
|
|
237
|
-
## v0.6.1 (Wed Aug 30 2023)
|
|
238
|
-
|
|
239
|
-
#### 🐛 Bug Fix
|
|
240
|
-
|
|
241
|
-
- ci: adjustments ([@eng618](https://github.com/eng618))
|
|
242
|
-
- ci: remove deprecated action ([@eng618](https://github.com/eng618))
|
|
243
|
-
- ci: update actions ([@eng618](https://github.com/eng618))
|
|
244
|
-
- docs: update email link ([@eng618](https://github.com/eng618))
|
|
245
|
-
- ci: update master to main conversioin ([@eng618](https://github.com/eng618))
|
|
246
|
-
- ci: update release workflow ([@eng618](https://github.com/eng618))
|
|
247
|
-
- ci: remove custom checkout token ([@eng618](https://github.com/eng618))
|
|
248
|
-
- build(test): add ci test command ([@eng618](https://github.com/eng618))
|
|
249
|
-
- build(fossa): remove optional test command ([@eng618](https://github.com/eng618))
|
|
250
|
-
- build(fossa): remove custom config ([@eng618](https://github.com/eng618))
|
|
251
|
-
- build(deps): update minor and below ([@eng618](https://github.com/eng618))
|
|
252
|
-
- build(fossa): update config api version to v3 ([@eng618](https://github.com/eng618))
|
|
253
|
-
- build(node): bump to latest 18.x ([@eng618](https://github.com/eng618))
|
|
254
|
-
- build: bump yarn version ([@eng618](https://github.com/eng618))
|
|
255
|
-
- 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]))
|
|
256
|
-
- chore: update templates [#27](https://github.com/Garcia-Enterprise/ge-design/pull/27) ([@eng618](https://github.com/eng618))
|
|
257
|
-
- 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))
|
|
258
|
-
- 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))
|
|
259
|
-
- chore: add pull request templates [#26](https://github.com/Garcia-Enterprise/ge-design/pull/26) ([@eng618](https://github.com/eng618))
|
|
260
|
-
- fix(sb): docs to correct version [#23](https://github.com/Garcia-Enterprise/ge-design/pull/23) ([@eng618](https://github.com/eng618))
|
|
261
|
-
|
|
262
|
-
#### Authors: 2
|
|
263
|
-
|
|
264
|
-
- [@dependabot[bot]](https://github.com/dependabot[bot])
|
|
265
|
-
- Eric Garcia ([@eng618](https://github.com/eng618))
|
|
266
|
-
|
|
267
|
-
---
|
|
268
|
-
|
|
269
|
-
## v0.6.0 (Tue Nov 15 2022)
|
|
270
|
-
|
|
271
|
-
#### 🚀 Enhancement
|
|
272
|
-
|
|
273
|
-
- build!: upgraded base [#21](https://github.com/Garcia-Enterprise/ge-design/pull/21) ([@eng618](https://github.com/eng618))
|
|
274
|
-
|
|
275
|
-
#### Authors: 1
|
|
276
|
-
|
|
277
|
-
- Eric Garcia ([@eng618](https://github.com/eng618))
|
|
278
|
-
|
|
279
|
-
---
|
|
280
|
-
|
|
281
|
-
## v0.5.15 (Mon Nov 14 2022)
|
|
282
|
-
|
|
283
|
-
#### 🐛 Bug Fix
|
|
284
|
-
|
|
285
|
-
- 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))
|
|
286
|
-
|
|
287
|
-
#### Authors: 2
|
|
288
|
-
|
|
289
|
-
- [@dependabot[bot]](https://github.com/dependabot[bot])
|
|
290
|
-
- Eric Garcia ([@eng618](https://github.com/eng618))
|
|
291
|
-
|
|
292
|
-
---
|
|
293
|
-
|
|
294
|
-
## v0.5.14 (Mon Nov 14 2022)
|
|
295
|
-
|
|
296
|
-
#### 🐛 Bug Fix
|
|
297
|
-
|
|
298
|
-
- test: temp disable Link test ([@eng618](https://github.com/eng618))
|
|
299
|
-
- build: update storybooks static files api ([@eng618](https://github.com/eng618))
|
|
300
|
-
- ci: update checkout action ([@eng618](https://github.com/eng618))
|
|
301
|
-
- build: update browserslist ([@eng618](https://github.com/eng618))
|
|
302
|
-
- test: update react apis ([@eng618](https://github.com/eng618))
|
|
303
|
-
|
|
304
|
-
#### Authors: 1
|
|
305
|
-
|
|
306
|
-
- Eric Garcia ([@eng618](https://github.com/eng618))
|
|
307
|
-
|
|
308
|
-
---
|
|
309
|
-
|
|
310
|
-
## v0.5.13 (Mon Nov 14 2022)
|
|
311
|
-
|
|
312
|
-
#### 🐛 Bug Fix
|
|
313
|
-
|
|
314
|
-
- build: bump all dependencies ([@eng618](https://github.com/eng618))
|
|
315
|
-
- build: downgrade babel-loader ([@eng618](https://github.com/eng618))
|
|
316
|
-
- build: add babel-loader ([@eng618](https://github.com/eng618))
|
|
317
|
-
- build: bump dependencies ([@eng618](https://github.com/eng618))
|
|
318
|
-
- ci: update node in actions ([@eng618](https://github.com/eng618))
|
|
319
|
-
- fix: recreate yarn.lock ([@eng618](https://github.com/eng618))
|
|
320
|
-
- build: update all deps ([@eng618](https://github.com/eng618))
|
|
321
|
-
- fix: update storybook config ([@eng618](https://github.com/eng618))
|
|
322
|
-
- build: add dependencies ([@eng618](https://github.com/eng618))
|
|
323
|
-
- ci: updates ([@eng618](https://github.com/eng618))
|
|
324
|
-
- ci: fix release ([@eng618](https://github.com/eng618))
|
|
325
|
-
- ci: only publish on success ([@eng618](https://github.com/eng618))
|
|
326
|
-
|
|
327
|
-
#### ⚠️ Pushed to `master`
|
|
328
|
-
|
|
329
|
-
- build update yarn and node ([@eng618](https://github.com/eng618))
|
|
330
|
-
|
|
331
|
-
#### Authors: 1
|
|
332
|
-
|
|
333
|
-
- Eric Garcia ([@eng618](https://github.com/eng618))
|
|
334
|
-
|
|
335
|
-
---
|
|
336
|
-
|
|
337
|
-
## v0.5.12 (Fri Nov 05 2021)
|
|
338
|
-
|
|
339
|
-
#### 🐛 Bug Fix
|
|
340
|
-
|
|
341
|
-
- build: update all dependencies ([@eng618](https://github.com/eng618))
|
|
342
|
-
|
|
343
|
-
#### Authors: 1
|
|
344
|
-
|
|
345
|
-
- Eric Garcia ([@eng618](https://github.com/eng618))
|
|
346
|
-
|
|
347
|
-
---
|
|
348
|
-
|
|
349
|
-
## v0.5.11 (Fri Nov 05 2021)
|
|
350
|
-
|
|
351
|
-
#### 🐛 Bug Fix
|
|
352
|
-
|
|
353
|
-
- build: update yarn to v2 ([@eng618](https://github.com/eng618))
|
|
354
|
-
- 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]))
|
|
355
|
-
|
|
356
|
-
#### Authors: 2
|
|
357
|
-
|
|
358
|
-
- [@dependabot[bot]](https://github.com/dependabot[bot])
|
|
359
|
-
- Eric Garcia ([@eng618](https://github.com/eng618))
|
|
360
|
-
|
|
361
|
-
---
|
|
362
|
-
|
|
363
|
-
## v0.5.10 (Thu Jun 03 2021)
|
|
364
|
-
|
|
365
|
-
#### 🐛 Bug Fix
|
|
366
|
-
|
|
367
|
-
- build: add pre-commit hooks, update yarn.lock ([@ENG618](https://github.com/ENG618))
|
|
368
|
-
|
|
369
|
-
#### Authors: 1
|
|
370
|
-
|
|
371
|
-
- Eric Garcia ([@ENG618](https://github.com/ENG618))
|
|
372
|
-
|
|
373
|
-
---
|
|
374
|
-
|
|
375
|
-
## v0.5.9 (Thu Jun 03 2021)
|
|
376
|
-
|
|
377
|
-
#### 🐛 Bug Fix
|
|
378
|
-
|
|
379
|
-
- style: fix linter errors ([@ENG618](https://github.com/ENG618))
|
|
380
|
-
- build: update all dependencies ([@ENG618](https://github.com/ENG618))
|
|
381
|
-
|
|
382
|
-
#### Authors: 1
|
|
383
|
-
|
|
384
|
-
- Eric Garcia ([@ENG618](https://github.com/ENG618))
|
|
385
|
-
|
|
386
|
-
---
|
|
387
|
-
|
|
388
|
-
## v0.5.8 (Thu Jun 03 2021)
|
|
389
|
-
|
|
390
|
-
#### 🐛 Bug Fix
|
|
391
|
-
|
|
392
|
-
- ci: run on all pushes and pr's, only release master ([@ENG618](https://github.com/ENG618))
|
|
393
|
-
|
|
394
|
-
#### Authors: 1
|
|
395
|
-
|
|
396
|
-
- Eric Garcia ([@ENG618](https://github.com/ENG618))
|
|
397
|
-
|
|
398
|
-
---
|
|
399
|
-
|
|
400
|
-
## v0.5.7 (Thu Jun 03 2021)
|
|
401
|
-
|
|
402
|
-
#### 🐛 Bug Fix
|
|
403
|
-
|
|
404
|
-
- 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]))
|
|
405
|
-
|
|
406
|
-
#### Authors: 1
|
|
407
|
-
|
|
408
|
-
- [@dependabot[bot]](https://github.com/dependabot[bot])
|
|
409
|
-
|
|
410
|
-
---
|
|
411
|
-
|
|
412
|
-
## v0.5.6 (Thu Apr 22 2021)
|
|
413
|
-
|
|
414
|
-
#### 🐛 Bug Fix
|
|
415
|
-
|
|
416
|
-
- chore: create OSSAR workflow ([@ENG618](https://github.com/ENG618))
|
|
417
|
-
|
|
418
|
-
#### Authors: 1
|
|
419
|
-
|
|
420
|
-
- Eric Garcia ([@ENG618](https://github.com/ENG618))
|
|
421
|
-
|
|
422
|
-
---
|
|
423
|
-
|
|
424
|
-
## v0.5.5 (Thu Apr 22 2021)
|
|
425
|
-
|
|
426
|
-
#### 🐛 Bug Fix
|
|
427
|
-
|
|
428
|
-
- chore: setup security reporting ([@ENG618](https://github.com/ENG618))
|
|
429
|
-
- build: setup code scanning ([@ENG618](https://github.com/ENG618))
|
|
430
|
-
|
|
431
|
-
#### Authors: 1
|
|
432
|
-
|
|
433
|
-
- Eric Garcia ([@ENG618](https://github.com/ENG618))
|
|
434
|
-
|
|
435
|
-
---
|
|
436
|
-
|
|
437
|
-
## v0.5.4 (Thu Apr 22 2021)
|
|
438
|
-
|
|
439
|
-
#### 🐛 Bug Fix
|
|
440
|
-
|
|
441
|
-
- chore: add license ([@ENG618](https://github.com/ENG618))
|
|
442
|
-
|
|
443
|
-
#### Authors: 1
|
|
444
|
-
|
|
445
|
-
- Eric Garcia ([@ENG618](https://github.com/ENG618))
|
|
446
|
-
|
|
447
|
-
---
|
|
448
|
-
|
|
449
|
-
## v0.5.3 (Thu Apr 22 2021)
|
|
450
|
-
|
|
451
|
-
#### 🐛 Bug Fix
|
|
452
|
-
|
|
453
|
-
- ci: temporarily remove preflight checks ([@ENG618](https://github.com/ENG618))
|
|
454
|
-
- fix: replace missing dependencies ([@ENG618](https://github.com/ENG618))
|
|
455
|
-
|
|
456
|
-
#### Authors: 1
|
|
457
|
-
|
|
458
|
-
- Eric Garcia ([@ENG618](https://github.com/ENG618))
|
|
459
|
-
|
|
460
|
-
---
|
|
461
|
-
|
|
462
|
-
## v0.5.2 (Thu Apr 22 2021)
|
|
463
|
-
|
|
464
|
-
#### 🐛 Bug Fix
|
|
465
|
-
|
|
466
|
-
- ci: check lint and formatting ([@ENG618](https://github.com/ENG618))
|
|
467
|
-
- fix: remove redundant eslint config ([@ENG618](https://github.com/ENG618))
|
|
468
|
-
|
|
469
|
-
#### Authors: 1
|
|
470
|
-
|
|
471
|
-
- Eric Garcia ([@ENG618](https://github.com/ENG618))
|
|
472
|
-
|
|
473
|
-
---
|
|
474
|
-
|
|
475
|
-
## v0.5.1 (Thu Apr 22 2021)
|
|
476
|
-
|
|
477
|
-
#### 🐛 Bug Fix
|
|
478
|
-
|
|
479
|
-
- build: update dependencies ([@ENG618](https://github.com/ENG618))
|
|
480
|
-
|
|
481
|
-
#### Authors: 1
|
|
482
|
-
|
|
483
|
-
- Eric Garcia ([@ENG618](https://github.com/ENG618))
|
|
484
|
-
|
|
485
|
-
---
|
|
486
|
-
|
|
487
|
-
## v0.2.0 (Wed Apr 21 2021)
|
|
488
|
-
|
|
489
|
-
#### 🚀 Enhancement
|
|
490
|
-
|
|
491
|
-
- feat: license scans and move ci to github actions ([@ENG618](https://github.com/ENG618))
|
|
492
|
-
- feat: migrate storybook config to latest ([@ENG618](https://github.com/ENG618))
|
|
493
|
-
|
|
494
|
-
#### 🐛 Bug Fix
|
|
495
|
-
|
|
496
|
-
- fix: use token in checkout process ([@ENG618](https://github.com/ENG618))
|
|
497
|
-
|
|
498
|
-
#### ⚠️ Pushed to `master`
|
|
499
|
-
|
|
500
|
-
- ci: fix push issue ([@ENG618](https://github.com/ENG618))
|
|
501
|
-
- ci: add missing env vars and add twitter release ([@ENG618](https://github.com/ENG618))
|
|
502
|
-
- ci: add release token ([@ENG618](https://github.com/ENG618))
|
|
503
|
-
- ci: license scan after dependencies installed ([@ENG618](https://github.com/ENG618))
|
|
504
|
-
- style: lint all files ([@ENG618](https://github.com/ENG618))
|
|
505
|
-
- chore: update all dependencies ([@ENG618](https://github.com/ENG618))
|
|
506
|
-
- chore: update FUNDING ([@ENG618](https://github.com/ENG618))
|
|
507
|
-
|
|
508
|
-
#### Authors: 1
|
|
509
|
-
|
|
510
|
-
- Eric Garcia ([@ENG618](https://github.com/ENG618))
|
|
511
|
-
|
|
512
|
-
---
|
|
513
|
-
|
|
514
|
-
## v0.2.0 (Wed Apr 21 2021)
|
|
515
|
-
|
|
516
|
-
#### 🚀 Enhancement
|
|
517
|
-
|
|
518
|
-
- feat: license scans and move ci to github actions ([@ENG618](https://github.com/ENG618))
|
|
519
|
-
- feat: migrate storybook config to latest ([@ENG618](https://github.com/ENG618))
|
|
520
|
-
|
|
521
|
-
#### 🐛 Bug Fix
|
|
522
|
-
|
|
523
|
-
- fix: use token in checkout process ([@ENG618](https://github.com/ENG618))
|
|
524
|
-
|
|
525
|
-
#### ⚠️ Pushed to `master`
|
|
526
|
-
|
|
527
|
-
- ci: fix push issue ([@ENG618](https://github.com/ENG618))
|
|
528
|
-
- ci: add missing env vars and add twitter release ([@ENG618](https://github.com/ENG618))
|
|
529
|
-
- ci: add release token ([@ENG618](https://github.com/ENG618))
|
|
530
|
-
- ci: license scan after dependencies installed ([@ENG618](https://github.com/ENG618))
|
|
531
|
-
- style: lint all files ([@ENG618](https://github.com/ENG618))
|
|
532
|
-
- chore: update all dependencies ([@ENG618](https://github.com/ENG618))
|
|
533
|
-
- chore: update FUNDING ([@ENG618](https://github.com/ENG618))
|
|
534
|
-
|
|
535
|
-
#### Authors: 1
|
|
536
|
-
|
|
537
|
-
- Eric Garcia ([@ENG618](https://github.com/ENG618))
|
|
538
|
-
|
|
539
|
-
---
|
|
540
|
-
|
|
541
|
-
## v0.1.14 (Thu Dec 24 2020)
|
|
542
|
-
|
|
543
|
-
#### 🔩 Dependency Updates
|
|
544
|
-
|
|
545
|
-
- 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]))
|
|
546
|
-
|
|
547
|
-
#### Authors: 1
|
|
548
|
-
|
|
549
|
-
- [@dependabot[bot]](https://github.com/dependabot[bot])
|
|
550
|
-
|
|
551
|
-
---
|
|
552
|
-
|
|
553
|
-
## (Thu Dec 24 2020)
|
|
554
|
-
|
|
555
|
-
#### 🔩 Dependency Updates
|
|
556
|
-
|
|
557
|
-
- 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]))
|
|
558
|
-
|
|
559
|
-
#### Authors: 1
|
|
560
|
-
|
|
561
|
-
- [@dependabot[bot]](https://github.com/dependabot[bot])
|
|
562
|
-
|
|
563
|
-
---
|
|
564
|
-
|
|
565
|
-
## v0.1.13 (Fri Sep 11 2020)
|
|
566
|
-
|
|
567
|
-
#### 🔩 Dependency Updates
|
|
568
|
-
|
|
569
|
-
- 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]))
|
|
570
|
-
|
|
571
|
-
#### Authors: 1
|
|
572
|
-
|
|
573
|
-
- [@dependabot[bot]](https://github.com/dependabot[bot])
|
|
574
|
-
|
|
575
|
-
---
|
|
576
|
-
|
|
577
|
-
## (Fri Sep 11 2020)
|
|
578
|
-
|
|
579
|
-
#### 🔩 Dependency Updates
|
|
580
|
-
|
|
581
|
-
- 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]))
|
|
582
|
-
|
|
583
|
-
#### Authors: 1
|
|
584
|
-
|
|
585
|
-
- [@dependabot[bot]](https://github.com/dependabot[bot])
|
|
586
|
-
|
|
587
|
-
---
|
|
588
|
-
|
|
589
|
-
## v0.1.12 (Sun Aug 02 2020)
|
|
590
|
-
|
|
591
|
-
#### 🔩 Dependency Updates
|
|
592
|
-
|
|
593
|
-
- 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]))
|
|
594
|
-
|
|
595
|
-
#### Authors: 1
|
|
596
|
-
|
|
597
|
-
- [@dependabot[bot]](https://github.com/dependabot[bot])
|
|
598
|
-
|
|
599
|
-
---
|
|
600
|
-
|
|
601
|
-
## (Sun Aug 02 2020)
|
|
602
|
-
|
|
603
|
-
#### 🔩 Dependency Updates
|
|
604
|
-
|
|
605
|
-
- 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]))
|
|
606
|
-
|
|
607
|
-
#### Authors: 1
|
|
608
|
-
|
|
609
|
-
- [@dependabot[bot]](https://github.com/dependabot[bot])
|
|
610
|
-
|
|
611
|
-
---
|
|
612
|
-
|
|
613
|
-
## v0.1.11 (Thu Jun 11 2020)
|
|
614
|
-
|
|
615
|
-
#### 🐛 Bug Fix
|
|
616
|
-
|
|
617
|
-
- build(prettier): add custom prettier config [#6](https://github.com/Garcia-Enterprise/ge-design/pull/6) ([@ENG618](https://github.com/ENG618))
|
|
618
|
-
|
|
619
|
-
#### Authors: 1
|
|
620
|
-
|
|
621
|
-
- Eric Garcia ([@ENG618](https://github.com/ENG618))
|
|
622
|
-
|
|
623
|
-
---
|
|
624
|
-
|
|
625
|
-
## v0.1.11 (Thu Jun 11 2020)
|
|
626
|
-
|
|
627
|
-
#### 🐛 Bug Fix
|
|
628
|
-
|
|
629
|
-
- build(prettier): add custom prettier config [#6](https://github.com/Garcia-Enterprise/ge-design/pull/6) ([@ENG618](https://github.com/ENG618))
|
|
630
|
-
|
|
631
|
-
#### Authors: 1
|
|
632
|
-
|
|
633
|
-
- Eric Garcia ([@ENG618](https://github.com/ENG618))
|
|
634
|
-
|
|
635
|
-
---
|
|
636
|
-
|
|
637
|
-
## v0.1.10 (Tue Jun 09 2020)
|
|
638
|
-
|
|
639
|
-
#### ⚠️ Pushed to `master`
|
|
640
|
-
|
|
641
|
-
- Merge branch 'develop' ([@ENG618](https://github.com/ENG618))
|
|
642
|
-
|
|
643
|
-
#### Authors: 1
|
|
644
|
-
|
|
645
|
-
- Eric Garcia ([@ENG618](https://github.com/ENG618))
|
|
646
|
-
|
|
647
|
-
---
|
|
648
|
-
|
|
649
|
-
## v0.1.9 (Tue Jun 09 2020)
|
|
650
|
-
|
|
651
|
-
#### ⚠️ Pushed to `master`
|
|
652
|
-
|
|
653
|
-
- add link to npm ([@ENG618](https://github.com/ENG618))
|
|
654
|
-
|
|
655
|
-
#### Authors: 1
|
|
656
|
-
|
|
657
|
-
- Eric Garcia ([@ENG618](https://github.com/ENG618))
|
|
658
|
-
|
|
659
|
-
---
|
|
660
|
-
|
|
661
|
-
## v0.1.8 (Mon Jun 08 2020)
|
|
662
|
-
|
|
663
|
-
#### 🐛 Bug Fix
|
|
664
|
-
|
|
665
|
-
- 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]))
|
|
666
|
-
|
|
667
|
-
#### Authors: 1
|
|
668
|
-
|
|
669
|
-
- [@dependabot[bot]](https://github.com/dependabot[bot])
|
|
670
|
-
|
|
671
|
-
---
|
|
672
|
-
|
|
673
|
-
## v0.1.1 (Tue Mar 17 2020)
|
|
674
|
-
|
|
675
|
-
#### 🐛 Bug Fix
|
|
676
|
-
|
|
677
|
-
- maintenance [#4](https://github.com/Garcia-Enterprise/ge-design/pull/4) ([@ENG618](https://github.com/ENG618))
|
|
678
|
-
- 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]))
|
|
679
|
-
- feat(release): adds release script to ci [#2](https://github.com/Garcia-Enterprise/ge-design/pull/2) ([@ENG618](https://github.com/ENG618))
|
|
680
|
-
|
|
681
|
-
#### Authors: 2
|
|
682
|
-
|
|
683
|
-
- [@dependabot[bot]](https://github.com/dependabot[bot])
|
|
684
|
-
- Eric Garcia ([@ENG618](https://github.com/ENG618))
|
|
685
|
-
|
|
686
|
-
---
|
|
687
|
-
|
|
688
|
-
## v0.1.0 (Fri Nov 15 2019)
|
|
689
|
-
|
|
690
|
-
- Created first version of the design system, with `Avatar`, `Badge`, `Button`, `Icon` and `Link` components.
|
|
691
|
-
|
|
692
|
-
#### Authors: 1
|
|
693
|
-
|
|
694
|
-
- Eric N. Garcia (<eng618@garciaericn.com>)
|