@vsn-ux/ngx-gaia 0.9.2 → 0.9.4
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/DOCS.md +951 -0
- package/fesm2022/vsn-ux-ngx-gaia.mjs +30 -5
- package/fesm2022/vsn-ux-ngx-gaia.mjs.map +1 -1
- package/index.d.ts +20 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { Provider, Type, OnInit, InjectionToken, TemplateRef, WritableSignal, Af
|
|
|
5
5
|
import * as _angular_forms from '@angular/forms';
|
|
6
6
|
import { ControlValueAccessor, CheckboxRequiredValidator, Validator, AbstractControl, ValidationErrors, NgControl, RequiredValidator, FormGroupDirective, NgForm } from '@angular/forms';
|
|
7
7
|
import * as _angular_cdk_overlay from '@angular/cdk/overlay';
|
|
8
|
-
import { CdkOverlayOrigin, ConnectedPosition } from '@angular/cdk/overlay';
|
|
8
|
+
import { CdkOverlayOrigin, ConnectedPosition, CdkConnectedOverlay } from '@angular/cdk/overlay';
|
|
9
9
|
import * as i1 from '@angular/cdk/menu';
|
|
10
10
|
import * as _vsn_ux_ngx_gaia from '@vsn-ux/ngx-gaia';
|
|
11
11
|
import * as rxjs from 'rxjs';
|
|
@@ -601,6 +601,9 @@ declare class GaFieldErrorDirective {
|
|
|
601
601
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GaFieldErrorDirective, "[gaError]", never, { "key": { "alias": "gaError"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
602
602
|
}
|
|
603
603
|
|
|
604
|
+
/**
|
|
605
|
+
* @internal - Internal service for form field coordination
|
|
606
|
+
*/
|
|
604
607
|
declare class GaFormFieldConnector {
|
|
605
608
|
readonly controlDisabled: _angular_core.WritableSignal<boolean>;
|
|
606
609
|
readonly controlId: _angular_core.WritableSignal<string | null>;
|
|
@@ -917,6 +920,12 @@ type GaTooltipPosition = 'top' | 'bottom' | 'left' | 'right';
|
|
|
917
920
|
type GaTooltipDirection = 'start' | 'end' | 'center';
|
|
918
921
|
type GaTooltipPlacement = `${GaTooltipPosition}-${GaTooltipDirection}`;
|
|
919
922
|
type GaTooltipControlMode = 'hover' | 'click' | 'none';
|
|
923
|
+
/**
|
|
924
|
+
* Internal tooltip component used by the gaTooltip directive.
|
|
925
|
+
* This component is not intended for direct use in templates.
|
|
926
|
+
* Use the [gaTooltip] directive instead.
|
|
927
|
+
* @internal
|
|
928
|
+
*/
|
|
920
929
|
declare class GaTooltipComponent {
|
|
921
930
|
readonly uniqueId: string;
|
|
922
931
|
private mouseLeaveSubject;
|
|
@@ -1075,6 +1084,7 @@ declare class GaSelectComponent implements ControlValueAccessor, AfterContentIni
|
|
|
1075
1084
|
protected readonly customSelectValue: _angular_core.Signal<GaSelectValueComponent | undefined>;
|
|
1076
1085
|
protected readonly inputSearch: _angular_core.Signal<ElementRef<HTMLInputElement> | undefined>;
|
|
1077
1086
|
protected readonly content: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
1087
|
+
protected readonly connectedOverlay: _angular_core.Signal<CdkConnectedOverlay | undefined>;
|
|
1078
1088
|
readonly id: _angular_core.Signal<string>;
|
|
1079
1089
|
readonly isOpen: _angular_core.Signal<boolean>;
|
|
1080
1090
|
readonly disabled: _angular_core.WritableSignal<boolean>;
|
|
@@ -1126,7 +1136,13 @@ declare class GaSelectDropdownSpinnerComponent {
|
|
|
1126
1136
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaSelectDropdownSpinnerComponent, "ga-select-dropdown-spinner", never, {}, {}, never, never, true, never>;
|
|
1127
1137
|
}
|
|
1128
1138
|
|
|
1139
|
+
/**
|
|
1140
|
+
* @internal - Internal validator provider for ga-select required validation
|
|
1141
|
+
*/
|
|
1129
1142
|
declare const GA_SELECT_REQUIRED_VALIDATOR: Provider;
|
|
1143
|
+
/**
|
|
1144
|
+
* @internal - Internal directive for ga-select required validation
|
|
1145
|
+
*/
|
|
1130
1146
|
declare class GaSelectRequiredValidator extends RequiredValidator {
|
|
1131
1147
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaSelectRequiredValidator, never>;
|
|
1132
1148
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GaSelectRequiredValidator, "ga-select[required][formControlName], ga-select[required][formControl], ga-select[required][ngModel]", never, {}, {}, never, never, true, never>;
|
|
@@ -1301,6 +1317,9 @@ interface GaFormControlAdapter {
|
|
|
1301
1317
|
readonly ngFormSubmitted: Signal<boolean>;
|
|
1302
1318
|
}
|
|
1303
1319
|
declare const GA_FORM_CONTROL_ADAPTER: InjectionToken<GaFormControlAdapter>;
|
|
1320
|
+
/**
|
|
1321
|
+
* @internal - This function is for internal library use only
|
|
1322
|
+
*/
|
|
1304
1323
|
declare function injectNgControlState({ implicitChildNgControl, explicitNgControl, explicitNgForm, }?: {
|
|
1305
1324
|
implicitChildNgControl?: Signal<NgControl | undefined | null>;
|
|
1306
1325
|
explicitNgControl?: NgControl | Signal<NgControl | undefined | null> | null;
|