@testgorilla/tgo-ui 7.3.0 → 7.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/components/autocomplete-v2/autocomplete-overflow-detect.directive.d.ts +21 -0
  2. package/components/autocomplete-v2/autocomplete-v2-filter.service.d.ts +24 -0
  3. package/components/autocomplete-v2/autocomplete-v2-utils.d.ts +18 -0
  4. package/components/autocomplete-v2/autocomplete-v2-value-manager.d.ts +27 -0
  5. package/components/autocomplete-v2/autocomplete-v2.component.d.ts +119 -0
  6. package/components/autocomplete-v2/autocomplete-v2.model.d.ts +12 -0
  7. package/components/autocomplete-v2/index.d.ts +5 -0
  8. package/components/autocomplete-v2/infinite-scroll.directive.d.ts +21 -0
  9. package/components/autocomplete-v2/public-api.d.ts +7 -0
  10. package/components/core/directives/index.d.ts +2 -0
  11. package/components/core/directives/prevent-input.directive.d.ts +7 -0
  12. package/components/core/directives/select-text.directive.d.ts +10 -0
  13. package/components/core/pipes/includes.pipe.d.ts +7 -0
  14. package/components/core/pipes/index.d.ts +2 -0
  15. package/components/core/pipes/transform-item.pipe.d.ts +8 -0
  16. package/components/core/public-api.d.ts +2 -1
  17. package/components/validation-error/validation-error.component.d.ts +5 -1
  18. package/fesm2022/testgorilla-tgo-ui-components-autocomplete-v2.mjs +805 -0
  19. package/fesm2022/testgorilla-tgo-ui-components-autocomplete-v2.mjs.map +1 -0
  20. package/fesm2022/testgorilla-tgo-ui-components-autocomplete.mjs +1 -1
  21. package/fesm2022/testgorilla-tgo-ui-components-autocomplete.mjs.map +1 -1
  22. package/fesm2022/testgorilla-tgo-ui-components-checkbox.mjs +1 -1
  23. package/fesm2022/testgorilla-tgo-ui-components-checkbox.mjs.map +1 -1
  24. package/fesm2022/testgorilla-tgo-ui-components-core.mjs +123 -28
  25. package/fesm2022/testgorilla-tgo-ui-components-core.mjs.map +1 -1
  26. package/fesm2022/testgorilla-tgo-ui-components-datepicker.mjs +1 -1
  27. package/fesm2022/testgorilla-tgo-ui-components-datepicker.mjs.map +1 -1
  28. package/fesm2022/testgorilla-tgo-ui-components-dropdown.mjs +1 -1
  29. package/fesm2022/testgorilla-tgo-ui-components-dropdown.mjs.map +1 -1
  30. package/fesm2022/testgorilla-tgo-ui-components-field.mjs +1 -1
  31. package/fesm2022/testgorilla-tgo-ui-components-field.mjs.map +1 -1
  32. package/fesm2022/testgorilla-tgo-ui-components-multi-input.mjs +1 -1
  33. package/fesm2022/testgorilla-tgo-ui-components-multi-input.mjs.map +1 -1
  34. package/fesm2022/testgorilla-tgo-ui-components-phone-input.mjs +1 -1
  35. package/fesm2022/testgorilla-tgo-ui-components-phone-input.mjs.map +1 -1
  36. package/fesm2022/testgorilla-tgo-ui-components-validation-error.mjs +21 -3
  37. package/fesm2022/testgorilla-tgo-ui-components-validation-error.mjs.map +1 -1
  38. package/mcp/catalog.json +1 -1
  39. package/package.json +26 -22
  40. package/components/core/select-text.directive.d.ts +0 -19
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testgorilla/tgo-ui",
3
- "version": "7.3.0",
3
+ "version": "7.4.0",
4
4
  "license": "proprietary-license",
5
5
  "lint-staged": {
6
6
  "{projects,components}/**/*.ts": [
@@ -82,14 +82,14 @@
82
82
  "types": "./components/ai-caveat/index.d.ts",
83
83
  "default": "./fesm2022/testgorilla-tgo-ui-components-ai-caveat.mjs"
84
84
  },
85
- "./components/ai-feedback": {
86
- "types": "./components/ai-feedback/index.d.ts",
87
- "default": "./fesm2022/testgorilla-tgo-ui-components-ai-feedback.mjs"
88
- },
89
85
  "./components/alert-banner": {
90
86
  "types": "./components/alert-banner/index.d.ts",
91
87
  "default": "./fesm2022/testgorilla-tgo-ui-components-alert-banner.mjs"
92
88
  },
89
+ "./components/ai-feedback": {
90
+ "types": "./components/ai-feedback/index.d.ts",
91
+ "default": "./fesm2022/testgorilla-tgo-ui-components-ai-feedback.mjs"
92
+ },
93
93
  "./components/audio-waveform": {
94
94
  "types": "./components/audio-waveform/index.d.ts",
95
95
  "default": "./fesm2022/testgorilla-tgo-ui-components-audio-waveform.mjs"
@@ -98,17 +98,21 @@
98
98
  "types": "./components/autocomplete/index.d.ts",
99
99
  "default": "./fesm2022/testgorilla-tgo-ui-components-autocomplete.mjs"
100
100
  },
101
- "./components/badge": {
102
- "types": "./components/badge/index.d.ts",
103
- "default": "./fesm2022/testgorilla-tgo-ui-components-badge.mjs"
101
+ "./components/autocomplete-v2": {
102
+ "types": "./components/autocomplete-v2/index.d.ts",
103
+ "default": "./fesm2022/testgorilla-tgo-ui-components-autocomplete-v2.mjs"
104
+ },
105
+ "./components/avatar": {
106
+ "types": "./components/avatar/index.d.ts",
107
+ "default": "./fesm2022/testgorilla-tgo-ui-components-avatar.mjs"
104
108
  },
105
109
  "./components/breadcrumb": {
106
110
  "types": "./components/breadcrumb/index.d.ts",
107
111
  "default": "./fesm2022/testgorilla-tgo-ui-components-breadcrumb.mjs"
108
112
  },
109
- "./components/avatar": {
110
- "types": "./components/avatar/index.d.ts",
111
- "default": "./fesm2022/testgorilla-tgo-ui-components-avatar.mjs"
113
+ "./components/badge": {
114
+ "types": "./components/badge/index.d.ts",
115
+ "default": "./fesm2022/testgorilla-tgo-ui-components-badge.mjs"
112
116
  },
113
117
  "./components/button": {
114
118
  "types": "./components/button/index.d.ts",
@@ -126,21 +130,21 @@
126
130
  "types": "./components/checklist/index.d.ts",
127
131
  "default": "./fesm2022/testgorilla-tgo-ui-components-checklist.mjs"
128
132
  },
133
+ "./components/core": {
134
+ "types": "./components/core/index.d.ts",
135
+ "default": "./fesm2022/testgorilla-tgo-ui-components-core.mjs"
136
+ },
129
137
  "./components/datepicker": {
130
138
  "types": "./components/datepicker/index.d.ts",
131
139
  "default": "./fesm2022/testgorilla-tgo-ui-components-datepicker.mjs"
132
140
  },
133
- "./components/dialog": {
134
- "types": "./components/dialog/index.d.ts",
135
- "default": "./fesm2022/testgorilla-tgo-ui-components-dialog.mjs"
136
- },
137
141
  "./components/divider": {
138
142
  "types": "./components/divider/index.d.ts",
139
143
  "default": "./fesm2022/testgorilla-tgo-ui-components-divider.mjs"
140
144
  },
141
- "./components/core": {
142
- "types": "./components/core/index.d.ts",
143
- "default": "./fesm2022/testgorilla-tgo-ui-components-core.mjs"
145
+ "./components/dialog": {
146
+ "types": "./components/dialog/index.d.ts",
147
+ "default": "./fesm2022/testgorilla-tgo-ui-components-dialog.mjs"
144
148
  },
145
149
  "./components/donut-chart": {
146
150
  "types": "./components/donut-chart/index.d.ts",
@@ -178,14 +182,14 @@
178
182
  "types": "./components/icon/index.d.ts",
179
183
  "default": "./fesm2022/testgorilla-tgo-ui-components-icon.mjs"
180
184
  },
181
- "./components/inline-field": {
182
- "types": "./components/inline-field/index.d.ts",
183
- "default": "./fesm2022/testgorilla-tgo-ui-components-inline-field.mjs"
184
- },
185
185
  "./components/icon-label": {
186
186
  "types": "./components/icon-label/index.d.ts",
187
187
  "default": "./fesm2022/testgorilla-tgo-ui-components-icon-label.mjs"
188
188
  },
189
+ "./components/inline-field": {
190
+ "types": "./components/inline-field/index.d.ts",
191
+ "default": "./fesm2022/testgorilla-tgo-ui-components-inline-field.mjs"
192
+ },
189
193
  "./components/logo": {
190
194
  "types": "./components/logo/index.d.ts",
191
195
  "default": "./fesm2022/testgorilla-tgo-ui-components-logo.mjs"
@@ -1,19 +0,0 @@
1
- import { ElementRef, OnChanges } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- /**
4
- * the SelectTextDirective provides a dynamic way to highlight or style specific text within an element.
5
- */
6
- export declare class SelectTextDirective implements OnChanges {
7
- private el;
8
- selectText: string | null;
9
- constructor(el: ElementRef);
10
- /**
11
- * this method utilizes setTimeout to defer the execution until the next tick of the event loop.
12
- * The text content of the element is modified by wrapping occurrences of the specified selectText with a <span> element,
13
- * applying a bold font-weight style.
14
- */
15
- private setTextColor;
16
- ngOnChanges(): void;
17
- static ɵfac: i0.ɵɵFactoryDeclaration<SelectTextDirective, never>;
18
- static ɵdir: i0.ɵɵDirectiveDeclaration<SelectTextDirective, "[selectText]", never, { "selectText": { "alias": "selectText"; "required": false; }; }, {}, never, never, false, never>;
19
- }