@testgorilla/tgo-ui 11.13.0 → 11.14.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/fesm2022/testgorilla-tgo-ui-components-ai-feedback.mjs +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-ai-feedback.mjs.map +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-autocomplete-v2.mjs +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-autocomplete-v2.mjs.map +1 -1
- 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-core.mjs +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-prompt.mjs +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-prompt.mjs.map +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-tag.mjs +33 -4
- package/fesm2022/testgorilla-tgo-ui-components-tag.mjs.map +1 -1
- package/fesm2022/testgorilla-tgo-ui-components-write-with-ai.mjs +2 -2
- package/fesm2022/testgorilla-tgo-ui-components-write-with-ai.mjs.map +1 -1
- package/mcp/catalog.json +1 -1
- package/package.json +1 -1
- package/types/testgorilla-tgo-ui-components-tag.d.ts +16 -1
package/package.json
CHANGED
|
@@ -70,6 +70,19 @@ declare class TagComponent {
|
|
|
70
70
|
* @memberof TagComponent
|
|
71
71
|
*/
|
|
72
72
|
pinnedBackground: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
73
|
+
/**
|
|
74
|
+
* Clamps the tag to its parent's width, truncating the label, instead of overflowing it.
|
|
75
|
+
*
|
|
76
|
+
* Opt-in: enabling it gives the host a real layout box, so `width`, `height` and vertical
|
|
77
|
+
* margins set on `ui-tag` start applying, bare sibling tags flow inline instead of stacking,
|
|
78
|
+
* and a tag in an `overflow-x` strip shrinks rather than scrolls (`flex: 0 0 auto` opts out).
|
|
79
|
+
* Becomes the default in the next major.
|
|
80
|
+
*
|
|
81
|
+
* @type {boolean}
|
|
82
|
+
* @default false
|
|
83
|
+
* @memberof TagComponent
|
|
84
|
+
*/
|
|
85
|
+
constrainWidth: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
73
86
|
/**
|
|
74
87
|
* Specifies whether the element is disabled.
|
|
75
88
|
*
|
|
@@ -155,6 +168,8 @@ declare class TagComponent {
|
|
|
155
168
|
protected iconColor: IconColor;
|
|
156
169
|
protected closeBtnFocused: _angular_core.WritableSignal<boolean>;
|
|
157
170
|
protected readonly labelElement: _angular_core.Signal<ElementRef<HTMLElement> | undefined>;
|
|
171
|
+
protected readonly containerElement: _angular_core.Signal<ElementRef<HTMLElement> | undefined>;
|
|
172
|
+
private readonly ngZone;
|
|
158
173
|
constructor();
|
|
159
174
|
onPress(): void;
|
|
160
175
|
setHoverState(state: boolean): void;
|
|
@@ -165,7 +180,7 @@ declare class TagComponent {
|
|
|
165
180
|
readonly filled: _angular_core.Signal<boolean>;
|
|
166
181
|
onKeydown($event: KeyboardEvent): void;
|
|
167
182
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TagComponent, never>;
|
|
168
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TagComponent, "ui-tag", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "allowClose": { "alias": "allowClose"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "isSelected": { "alias": "isSelected"; "required": false; "isSignal": true; }; "showIconWhenSelected": { "alias": "showIconWhenSelected"; "required": false; "isSignal": true; }; "pinnedBackground": { "alias": "pinnedBackground"; "required": false; "isSignal": true; }; "isDisabled": { "alias": "isDisabled"; "required": false; "isSignal": true; }; "applicationTheme": { "alias": "applicationTheme"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "testId": { "alias": "testId"; "required": false; "isSignal": true; }; "ariaRequired": { "alias": "ariaRequired"; "required": false; "isSignal": true; }; "showBadge": { "alias": "showBadge"; "required": false; "isSignal": true; }; "notificationsAmount": { "alias": "notificationsAmount"; "required": false; "isSignal": true; }; }, { "isSelected": "isSelectedChange"; "close": "close"; "press": "press"; }, never, never, true, never>;
|
|
183
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TagComponent, "ui-tag", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "allowClose": { "alias": "allowClose"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "isSelected": { "alias": "isSelected"; "required": false; "isSignal": true; }; "showIconWhenSelected": { "alias": "showIconWhenSelected"; "required": false; "isSignal": true; }; "pinnedBackground": { "alias": "pinnedBackground"; "required": false; "isSignal": true; }; "constrainWidth": { "alias": "constrainWidth"; "required": false; "isSignal": true; }; "isDisabled": { "alias": "isDisabled"; "required": false; "isSignal": true; }; "applicationTheme": { "alias": "applicationTheme"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "testId": { "alias": "testId"; "required": false; "isSignal": true; }; "ariaRequired": { "alias": "ariaRequired"; "required": false; "isSignal": true; }; "showBadge": { "alias": "showBadge"; "required": false; "isSignal": true; }; "notificationsAmount": { "alias": "notificationsAmount"; "required": false; "isSignal": true; }; }, { "isSelected": "isSelectedChange"; "close": "close"; "press": "press"; }, never, never, true, never>;
|
|
169
184
|
}
|
|
170
185
|
|
|
171
186
|
declare class TagComponentModule {
|