@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 CHANGED
@@ -1,55 +1,161 @@
1
- # TestGorilla UI Library
2
-
3
- # Test app
4
-
5
- To see the updates of the library in the client app, use commands below from package.json
6
-
7
- - build the updated version of canopy-ui with `build:tgo-ui (ng build tgo-ui)`
8
- - restart the client app with `start:client (ng serve)`
9
-
10
- # Foundations
11
-
12
- - Typography
13
- - Colors
14
-
15
- # Components
16
-
17
- - Alert Bars
18
- - Alert Banner
19
- - Banner Actions
20
- - Snackbar
21
- - Button
22
- - Elevation Shadow
23
- - Dialog
24
- - Confirm Dialog
25
- - Custom Dialog
26
- - File Upload
27
- - Forms
28
- - Checkbox
29
- - Datepicker
30
- - Dropdown
31
- - Input Field
32
- - Radio
33
- - Icon
34
- - Icon + Label
35
- - Logo
36
- - Overflow Menu
37
- - Progress Bar
38
- - Tag
39
- - Tooltip
40
-
41
- # Deprecated
42
-
43
- - Card
44
- - Create Account
45
- - Create Password
46
- - Forgot Password
47
- - Label
48
- - Login
49
- - NavBar
50
- - Navigation
51
- - Paginator
52
- - Table
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
-
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Auto-generated file containing SVG icon content
3
- * Generated on: 2026-02-11T03:51:26.036Z
3
+ * Generated on: 2026-03-10T04:25:50.613Z
4
4
  *
5
5
  * DO NOT EDIT THIS FILE MANUALLY
6
6
  * Run 'npm run generate:icons' to regenerate
@@ -15,6 +15,7 @@ export type OverflowMenuButtonsType = {
15
15
  tooltipText?: string;
16
16
  isTitleButton?: boolean;
17
17
  hideTitleButton?: boolean;
18
+ isPremium?: boolean;
18
19
  };
19
20
  type ButtonOptions = {
20
21
  isTextEllipsed?: boolean;
@@ -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-02-11T03:51:26.036Z
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