@ascentgl/ads-ui 21.111.0 → 21.112.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/package.json
CHANGED
|
@@ -4230,6 +4230,8 @@ declare class AdsTabsComponent implements AfterViewInit {
|
|
|
4230
4230
|
tabWidth: string | undefined;
|
|
4231
4231
|
/** Color palette key used for the active tab border and label (e.g. `'secondary'`, `'error'`). Defaults to `'primary-hover'`. */
|
|
4232
4232
|
activeColor: Colors | undefined;
|
|
4233
|
+
/** When `true`, the border-bottom on inactive (non-active, non-disabled) tabs is hidden. Defaults to `false`. */
|
|
4234
|
+
hideInactiveBorder: boolean;
|
|
4233
4235
|
selectedIndexChange: EventEmitter<number>;
|
|
4234
4236
|
tabChange: EventEmitter<{
|
|
4235
4237
|
index: number;
|
|
@@ -4239,7 +4241,7 @@ declare class AdsTabsComponent implements AfterViewInit {
|
|
|
4239
4241
|
get _activeColorVar(): string | null;
|
|
4240
4242
|
ngAfterViewInit(): void;
|
|
4241
4243
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsTabsComponent, never>;
|
|
4242
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AdsTabsComponent, "ads-tabs", never, { "tabs": { "alias": "tabs"; "required": false; }; "selectedIndex": { "alias": "selectedIndex"; "required": false; }; "tabWidth": { "alias": "tabWidth"; "required": false; }; "activeColor": { "alias": "activeColor"; "required": false; }; }, { "selectedIndexChange": "selectedIndexChange"; "tabChange": "tabChange"; }, never, never, false, never>;
|
|
4244
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdsTabsComponent, "ads-tabs", never, { "tabs": { "alias": "tabs"; "required": false; }; "selectedIndex": { "alias": "selectedIndex"; "required": false; }; "tabWidth": { "alias": "tabWidth"; "required": false; }; "activeColor": { "alias": "activeColor"; "required": false; }; "hideInactiveBorder": { "alias": "hideInactiveBorder"; "required": false; }; }, { "selectedIndexChange": "selectedIndexChange"; "tabChange": "tabChange"; }, never, never, false, never>;
|
|
4243
4245
|
}
|
|
4244
4246
|
|
|
4245
4247
|
declare class AdsTabsModule {
|