@vsn-ux/ngx-gaia 0.9.3 → 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 +20 -0
- package/fesm2022/vsn-ux-ngx-gaia.mjs.map +1 -1
- package/index.d.ts +18 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -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;
|
|
@@ -1127,7 +1136,13 @@ declare class GaSelectDropdownSpinnerComponent {
|
|
|
1127
1136
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaSelectDropdownSpinnerComponent, "ga-select-dropdown-spinner", never, {}, {}, never, never, true, never>;
|
|
1128
1137
|
}
|
|
1129
1138
|
|
|
1139
|
+
/**
|
|
1140
|
+
* @internal - Internal validator provider for ga-select required validation
|
|
1141
|
+
*/
|
|
1130
1142
|
declare const GA_SELECT_REQUIRED_VALIDATOR: Provider;
|
|
1143
|
+
/**
|
|
1144
|
+
* @internal - Internal directive for ga-select required validation
|
|
1145
|
+
*/
|
|
1131
1146
|
declare class GaSelectRequiredValidator extends RequiredValidator {
|
|
1132
1147
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaSelectRequiredValidator, never>;
|
|
1133
1148
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GaSelectRequiredValidator, "ga-select[required][formControlName], ga-select[required][formControl], ga-select[required][ngModel]", never, {}, {}, never, never, true, never>;
|
|
@@ -1302,6 +1317,9 @@ interface GaFormControlAdapter {
|
|
|
1302
1317
|
readonly ngFormSubmitted: Signal<boolean>;
|
|
1303
1318
|
}
|
|
1304
1319
|
declare const GA_FORM_CONTROL_ADAPTER: InjectionToken<GaFormControlAdapter>;
|
|
1320
|
+
/**
|
|
1321
|
+
* @internal - This function is for internal library use only
|
|
1322
|
+
*/
|
|
1305
1323
|
declare function injectNgControlState({ implicitChildNgControl, explicitNgControl, explicitNgForm, }?: {
|
|
1306
1324
|
implicitChildNgControl?: Signal<NgControl | undefined | null>;
|
|
1307
1325
|
explicitNgControl?: NgControl | Signal<NgControl | undefined | null> | null;
|