@testgorilla/tgo-ui 6.2.4 → 6.2.9
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 +158 -53
- package/components/icon/icon-svg-content.d.ts +1 -1
- package/components/overflow-menu/overflow-menu.model.d.ts +1 -0
- package/fesm2022/testgorilla-tgo-ui-components-icon.mjs +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-icon.mjs.map +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-overflow-menu.mjs +3 -2
- package/fesm2022/testgorilla-tgo-ui-components-overflow-menu.mjs.map +1 -1
- package/package.json +22 -22
package/README.md
CHANGED
|
@@ -1,55 +1,161 @@
|
|
|
1
|
-
# TestGorilla UI Library
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
#
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
-
|
|
27
|
-
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
-
|
|
34
|
-
|
|
35
|
-
-
|
|
36
|
-
-
|
|
37
|
-
-
|
|
38
|
-
-
|
|
39
|
-
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
-
|
|
48
|
-
-
|
|
49
|
-
-
|
|
50
|
-
-
|
|
51
|
-
|
|
52
|
-
|
|
1
|
+
# TestGorilla UI Library (`@testgorilla/tgo-ui`)
|
|
2
|
+
|
|
3
|
+
Angular 19 UI component library providing reusable components for TestGorilla applications.
|
|
4
|
+
|
|
5
|
+
## Development
|
|
6
|
+
|
|
7
|
+
To see library changes reflected in the demo app:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm run build:tgo-ui # Build the library
|
|
11
|
+
npm run start:client # Serve the demo app
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
Or use watch mode during active development:
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npm run watch # Build library in watch mode (then run start:client)
|
|
18
|
+
npm run storybook # Start Storybook on port 6006
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Components
|
|
22
|
+
|
|
23
|
+
### AI
|
|
24
|
+
|
|
25
|
+
- `ui-ai-audio-circle`
|
|
26
|
+
- `ui-ai-caveat`
|
|
27
|
+
- `ui-ai-feedback`
|
|
28
|
+
- `ui-audio-waveform`
|
|
29
|
+
|
|
30
|
+
### Forms & Inputs
|
|
31
|
+
|
|
32
|
+
- `ui-autocomplete`
|
|
33
|
+
- `ui-checkbox`
|
|
34
|
+
- `ui-datepicker`
|
|
35
|
+
- `ui-dropdown`
|
|
36
|
+
- `ui-field`
|
|
37
|
+
- `ui-inline-field`
|
|
38
|
+
- `ui-multi-input`
|
|
39
|
+
- `ui-phone-input`
|
|
40
|
+
- `ui-radio-button`
|
|
41
|
+
- `ui-slider`
|
|
42
|
+
- `ui-toggle`
|
|
43
|
+
- `ui-validation-error`
|
|
44
|
+
|
|
45
|
+
### Buttons & Actions
|
|
46
|
+
|
|
47
|
+
- `ui-button`
|
|
48
|
+
- `ui-filter-button`
|
|
49
|
+
- `ui-overflow-menu`
|
|
50
|
+
- `ui-segmented-button`
|
|
51
|
+
|
|
52
|
+
### Feedback & Status
|
|
53
|
+
|
|
54
|
+
- `ui-alert-banner`
|
|
55
|
+
- `ui-badge`
|
|
56
|
+
- `ui-progress-bar`
|
|
57
|
+
- `ui-radial-progress`
|
|
58
|
+
- `ui-rating`
|
|
59
|
+
- `ui-skeleton`
|
|
60
|
+
- `ui-snackbar`
|
|
61
|
+
- `ui-spinner`
|
|
62
|
+
- `ui-stepper`
|
|
63
|
+
|
|
64
|
+
### Data Visualization
|
|
65
|
+
|
|
66
|
+
- `ui-donut-chart`
|
|
67
|
+
- `ui-gaussian-chart`
|
|
68
|
+
- `ui-scale`
|
|
69
|
+
- `ui-scale-table`
|
|
70
|
+
- `ui-segmented-bar`
|
|
71
|
+
- `ui-spider-chart`
|
|
72
|
+
|
|
73
|
+
### Layout & Navigation
|
|
74
|
+
|
|
75
|
+
- `ui-accordion`
|
|
76
|
+
- `ui-breadcrumb`
|
|
77
|
+
- `ui-divider`
|
|
78
|
+
- `ui-navbar`
|
|
79
|
+
- `ui-page-header`
|
|
80
|
+
- `ui-paginator`
|
|
81
|
+
- `ui-side-panel`
|
|
82
|
+
- `ui-side-sheet`
|
|
83
|
+
- `ui-tabs`
|
|
84
|
+
|
|
85
|
+
### Cards & Media
|
|
86
|
+
|
|
87
|
+
- `ui-avatar`
|
|
88
|
+
- `ui-card`
|
|
89
|
+
- `ui-media-card`
|
|
90
|
+
- `ui-media-dialog`
|
|
91
|
+
- `ui-selectable-card`
|
|
92
|
+
|
|
93
|
+
### Content & Misc
|
|
94
|
+
|
|
95
|
+
- `ui-checklist`
|
|
96
|
+
- `ui-dialog`
|
|
97
|
+
- `ui-elevation-shadow`
|
|
98
|
+
- `ui-empty-state`
|
|
99
|
+
- `ui-file-upload`
|
|
100
|
+
- `ui-icon`
|
|
101
|
+
- `ui-icon-label`
|
|
102
|
+
- `ui-logo`
|
|
103
|
+
- `ui-password-criteria`
|
|
104
|
+
- `ui-password-strength`
|
|
105
|
+
- `ui-prompt`
|
|
106
|
+
- `ui-table`
|
|
107
|
+
- `ui-tag`
|
|
108
|
+
- `ui-tooltip`
|
|
109
|
+
- `ui-universal-skills`
|
|
110
|
+
|
|
111
|
+
## Contributing
|
|
112
|
+
|
|
113
|
+
### PR Requirements
|
|
114
|
+
|
|
115
|
+
Every pull request must include:
|
|
116
|
+
|
|
117
|
+
1. **Version bump** — increment the version in `package.json` following semver:
|
|
118
|
+
- `PATCH` (e.g. `6.2.4` → `6.2.5`) for bug fixes, CI/tooling changes, dependency updates
|
|
119
|
+
- `MINOR` (e.g. `6.2.x` → `6.3.0`) for new components, new inputs/outputs, new features
|
|
120
|
+
- `MAJOR` for breaking changes (removed inputs, renamed selectors, changed API contracts)
|
|
121
|
+
|
|
122
|
+
2. **Changelog entry** — add an entry to the top of `CHANGELOG.md` in this format:
|
|
123
|
+
|
|
124
|
+
```markdown
|
|
125
|
+
## <version> - <YYYY-MM-DD>
|
|
126
|
+
|
|
127
|
+
### Added
|
|
128
|
+
- ComponentName: description of what was added
|
|
129
|
+
|
|
130
|
+
### Changed
|
|
131
|
+
- ComponentName: description of what changed
|
|
132
|
+
|
|
133
|
+
### Fixed
|
|
134
|
+
- ComponentName: description of what was fixed
|
|
135
|
+
|
|
136
|
+
### Misc
|
|
137
|
+
- CI: description of tooling/CI change
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
Example:
|
|
141
|
+
|
|
142
|
+
```markdown
|
|
143
|
+
## 6.3.0 - 2026-03-11
|
|
144
|
+
|
|
145
|
+
### Added
|
|
146
|
+
- Tabs: Add `tabHeaderSize` input — `'big'` (64px, default), `'medium'` (56px), `'small'` (32px)
|
|
147
|
+
- Icon: Add `Rocket` icon
|
|
148
|
+
|
|
149
|
+
### Fixed
|
|
150
|
+
- SidePanel: Fix backdrop not closing panel on click when `disableAnimation` is set
|
|
151
|
+
|
|
152
|
+
### Misc
|
|
153
|
+
- CI: Add automated GitHub release creation on publish
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
CI will fail the PR if either check is missing — `check-version-bump` and `check-changelog-entry` run automatically on every PR.
|
|
157
|
+
|
|
158
|
+
---
|
|
53
159
|
|
|
54
160
|
## Visual Regression Testing
|
|
55
161
|
|
|
@@ -100,4 +206,3 @@ Visual tests run in Docker to ensure:
|
|
|
100
206
|
- **Font rendering differences**: Always use Docker commands for consistency
|
|
101
207
|
- **Timeout issues**: Server waits up to 60 seconds for Storybook to be ready
|
|
102
208
|
- **Memory issues**: Docker services configured with 4GB heap size
|
|
103
|
-
|
|
@@ -10,7 +10,7 @@ import { HttpClientModule } from '@angular/common/http';
|
|
|
10
10
|
/* eslint-disable */
|
|
11
11
|
/**
|
|
12
12
|
* Auto-generated file containing SVG icon content
|
|
13
|
-
* Generated on: 2026-
|
|
13
|
+
* Generated on: 2026-03-10T04:25:50.613Z
|
|
14
14
|
*
|
|
15
15
|
* DO NOT EDIT THIS FILE MANUALLY
|
|
16
16
|
* Run 'npm run generate:icons' to regenerate
|