@testgorilla/tgo-ui 7.2.10 → 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.
- package/components/ai-audio-circle/ai-audio-circle.component.d.ts +2 -1
- package/components/autocomplete-v2/autocomplete-overflow-detect.directive.d.ts +21 -0
- package/components/autocomplete-v2/autocomplete-v2-filter.service.d.ts +24 -0
- package/components/autocomplete-v2/autocomplete-v2-utils.d.ts +18 -0
- package/components/autocomplete-v2/autocomplete-v2-value-manager.d.ts +27 -0
- package/components/autocomplete-v2/autocomplete-v2.component.d.ts +119 -0
- package/components/autocomplete-v2/autocomplete-v2.model.d.ts +12 -0
- package/components/autocomplete-v2/index.d.ts +5 -0
- package/components/autocomplete-v2/infinite-scroll.directive.d.ts +21 -0
- package/components/autocomplete-v2/public-api.d.ts +7 -0
- package/components/core/directives/index.d.ts +2 -0
- package/components/core/directives/prevent-input.directive.d.ts +7 -0
- package/components/core/directives/select-text.directive.d.ts +10 -0
- package/components/core/pipes/includes.pipe.d.ts +7 -0
- package/components/core/pipes/index.d.ts +2 -0
- package/components/core/pipes/transform-item.pipe.d.ts +8 -0
- package/components/core/public-api.d.ts +2 -1
- package/components/validation-error/validation-error.component.d.ts +5 -1
- package/fesm2022/testgorilla-tgo-ui-components-ai-audio-circle.mjs +67 -53
- package/fesm2022/testgorilla-tgo-ui-components-ai-audio-circle.mjs.map +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-autocomplete-v2.mjs +805 -0
- package/fesm2022/testgorilla-tgo-ui-components-autocomplete-v2.mjs.map +1 -0
- package/fesm2022/testgorilla-tgo-ui-components-autocomplete.mjs +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-autocomplete.mjs.map +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-checkbox.mjs +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-checkbox.mjs.map +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-core.mjs +123 -28
- package/fesm2022/testgorilla-tgo-ui-components-core.mjs.map +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-datepicker.mjs +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-datepicker.mjs.map +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-dropdown.mjs +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-dropdown.mjs.map +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-field.mjs +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-field.mjs.map +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-multi-input.mjs +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-multi-input.mjs.map +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-phone-input.mjs +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-phone-input.mjs.map +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-validation-error.mjs +21 -3
- package/fesm2022/testgorilla-tgo-ui-components-validation-error.mjs.map +1 -1
- package/mcp/catalog.json +1 -1
- package/package.json +21 -17
- 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
|
+
"version": "7.4.0",
|
|
4
4
|
"license": "proprietary-license",
|
|
5
5
|
"lint-staged": {
|
|
6
6
|
"{projects,components}/**/*.ts": [
|
|
@@ -82,6 +82,10 @@
|
|
|
82
82
|
"types": "./components/ai-caveat/index.d.ts",
|
|
83
83
|
"default": "./fesm2022/testgorilla-tgo-ui-components-ai-caveat.mjs"
|
|
84
84
|
},
|
|
85
|
+
"./components/alert-banner": {
|
|
86
|
+
"types": "./components/alert-banner/index.d.ts",
|
|
87
|
+
"default": "./fesm2022/testgorilla-tgo-ui-components-alert-banner.mjs"
|
|
88
|
+
},
|
|
85
89
|
"./components/ai-feedback": {
|
|
86
90
|
"types": "./components/ai-feedback/index.d.ts",
|
|
87
91
|
"default": "./fesm2022/testgorilla-tgo-ui-components-ai-feedback.mjs"
|
|
@@ -90,26 +94,26 @@
|
|
|
90
94
|
"types": "./components/audio-waveform/index.d.ts",
|
|
91
95
|
"default": "./fesm2022/testgorilla-tgo-ui-components-audio-waveform.mjs"
|
|
92
96
|
},
|
|
93
|
-
"./components/alert-banner": {
|
|
94
|
-
"types": "./components/alert-banner/index.d.ts",
|
|
95
|
-
"default": "./fesm2022/testgorilla-tgo-ui-components-alert-banner.mjs"
|
|
96
|
-
},
|
|
97
97
|
"./components/autocomplete": {
|
|
98
98
|
"types": "./components/autocomplete/index.d.ts",
|
|
99
99
|
"default": "./fesm2022/testgorilla-tgo-ui-components-autocomplete.mjs"
|
|
100
100
|
},
|
|
101
|
+
"./components/autocomplete-v2": {
|
|
102
|
+
"types": "./components/autocomplete-v2/index.d.ts",
|
|
103
|
+
"default": "./fesm2022/testgorilla-tgo-ui-components-autocomplete-v2.mjs"
|
|
104
|
+
},
|
|
101
105
|
"./components/avatar": {
|
|
102
106
|
"types": "./components/avatar/index.d.ts",
|
|
103
107
|
"default": "./fesm2022/testgorilla-tgo-ui-components-avatar.mjs"
|
|
104
108
|
},
|
|
105
|
-
"./components/badge": {
|
|
106
|
-
"types": "./components/badge/index.d.ts",
|
|
107
|
-
"default": "./fesm2022/testgorilla-tgo-ui-components-badge.mjs"
|
|
108
|
-
},
|
|
109
109
|
"./components/breadcrumb": {
|
|
110
110
|
"types": "./components/breadcrumb/index.d.ts",
|
|
111
111
|
"default": "./fesm2022/testgorilla-tgo-ui-components-breadcrumb.mjs"
|
|
112
112
|
},
|
|
113
|
+
"./components/badge": {
|
|
114
|
+
"types": "./components/badge/index.d.ts",
|
|
115
|
+
"default": "./fesm2022/testgorilla-tgo-ui-components-badge.mjs"
|
|
116
|
+
},
|
|
113
117
|
"./components/button": {
|
|
114
118
|
"types": "./components/button/index.d.ts",
|
|
115
119
|
"default": "./fesm2022/testgorilla-tgo-ui-components-button.mjs"
|
|
@@ -130,10 +134,6 @@
|
|
|
130
134
|
"types": "./components/core/index.d.ts",
|
|
131
135
|
"default": "./fesm2022/testgorilla-tgo-ui-components-core.mjs"
|
|
132
136
|
},
|
|
133
|
-
"./components/dialog": {
|
|
134
|
-
"types": "./components/dialog/index.d.ts",
|
|
135
|
-
"default": "./fesm2022/testgorilla-tgo-ui-components-dialog.mjs"
|
|
136
|
-
},
|
|
137
137
|
"./components/datepicker": {
|
|
138
138
|
"types": "./components/datepicker/index.d.ts",
|
|
139
139
|
"default": "./fesm2022/testgorilla-tgo-ui-components-datepicker.mjs"
|
|
@@ -142,6 +142,10 @@
|
|
|
142
142
|
"types": "./components/divider/index.d.ts",
|
|
143
143
|
"default": "./fesm2022/testgorilla-tgo-ui-components-divider.mjs"
|
|
144
144
|
},
|
|
145
|
+
"./components/dialog": {
|
|
146
|
+
"types": "./components/dialog/index.d.ts",
|
|
147
|
+
"default": "./fesm2022/testgorilla-tgo-ui-components-dialog.mjs"
|
|
148
|
+
},
|
|
145
149
|
"./components/donut-chart": {
|
|
146
150
|
"types": "./components/donut-chart/index.d.ts",
|
|
147
151
|
"default": "./fesm2022/testgorilla-tgo-ui-components-donut-chart.mjs"
|
|
@@ -174,14 +178,14 @@
|
|
|
174
178
|
"types": "./components/gaussian-chart/index.d.ts",
|
|
175
179
|
"default": "./fesm2022/testgorilla-tgo-ui-components-gaussian-chart.mjs"
|
|
176
180
|
},
|
|
177
|
-
"./components/icon-label": {
|
|
178
|
-
"types": "./components/icon-label/index.d.ts",
|
|
179
|
-
"default": "./fesm2022/testgorilla-tgo-ui-components-icon-label.mjs"
|
|
180
|
-
},
|
|
181
181
|
"./components/icon": {
|
|
182
182
|
"types": "./components/icon/index.d.ts",
|
|
183
183
|
"default": "./fesm2022/testgorilla-tgo-ui-components-icon.mjs"
|
|
184
184
|
},
|
|
185
|
+
"./components/icon-label": {
|
|
186
|
+
"types": "./components/icon-label/index.d.ts",
|
|
187
|
+
"default": "./fesm2022/testgorilla-tgo-ui-components-icon-label.mjs"
|
|
188
|
+
},
|
|
185
189
|
"./components/inline-field": {
|
|
186
190
|
"types": "./components/inline-field/index.d.ts",
|
|
187
191
|
"default": "./fesm2022/testgorilla-tgo-ui-components-inline-field.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
|
-
}
|