@vsn-ux/ngx-gaia 0.8.0 → 0.8.2
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/vsn-ux-ngx-gaia.mjs +98 -21
- package/fesm2022/vsn-ux-ngx-gaia.mjs.map +1 -1
- package/index.d.ts +27 -8
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -331,19 +331,21 @@ declare class GaInputModule {
|
|
|
331
331
|
|
|
332
332
|
declare class GaFormFieldComponent {
|
|
333
333
|
readonly uniqueId: string;
|
|
334
|
+
readonly disabled: _angular_core.InputSignalWithTransform<boolean | undefined, unknown>;
|
|
334
335
|
readonly formControl: _angular_core.Signal<_vsn_ux_ngx_gaia.GaFormControl | undefined>;
|
|
335
|
-
readonly controlId: _angular_core.Signal<string>;
|
|
336
336
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaFormFieldComponent, never>;
|
|
337
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaFormFieldComponent, "ga-form-field", ["gaFormField"], {}, {}, ["formControl"], ["*"], true, never>;
|
|
337
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaFormFieldComponent, "ga-form-field", ["gaFormField"], { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, ["formControl"], ["*"], true, never>;
|
|
338
338
|
}
|
|
339
339
|
|
|
340
340
|
declare class GaFieldLabelComponent {
|
|
341
341
|
private readonly document;
|
|
342
342
|
readonly formField: GaFormFieldComponent;
|
|
343
|
+
readonly uniqueId: string;
|
|
343
344
|
readonly for: _angular_core.InputSignal<string | undefined>;
|
|
344
345
|
readonly definition: _angular_core.InputSignal<string | TemplateRef<any> | null>;
|
|
345
346
|
readonly state: _angular_core.InputSignal<string | undefined>;
|
|
346
|
-
readonly controlId: _angular_core.Signal<string>;
|
|
347
|
+
protected readonly controlId: _angular_core.Signal<string | null | undefined>;
|
|
348
|
+
protected readonly disabled: _angular_core.Signal<boolean>;
|
|
347
349
|
readonly controlElement: _angular_core.Signal<HTMLElement | null>;
|
|
348
350
|
focusControl(): void;
|
|
349
351
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaFieldLabelComponent, never>;
|
|
@@ -355,6 +357,14 @@ declare class GaFieldInfoComponent {
|
|
|
355
357
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaFieldInfoComponent, "ga-info", never, {}, {}, never, ["*"], true, never>;
|
|
356
358
|
}
|
|
357
359
|
|
|
360
|
+
declare class GaLabelledByFormFieldDirective {
|
|
361
|
+
protected readonly formField: GaFormFieldComponent | null;
|
|
362
|
+
readonly ariaLabelledBy: _angular_core.InputSignal<string | null>;
|
|
363
|
+
protected readonly labelledBy: _angular_core.Signal<string | null>;
|
|
364
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaLabelledByFormFieldDirective, never>;
|
|
365
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GaLabelledByFormFieldDirective, "[gaLabelledByFormField]", never, { "ariaLabelledBy": { "alias": "aria-labelledby"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
366
|
+
}
|
|
367
|
+
|
|
358
368
|
declare class GaFormFieldModule {
|
|
359
369
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaFormFieldModule, never>;
|
|
360
370
|
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<GaFormFieldModule, never, [typeof GaFormFieldComponent, typeof GaFieldLabelComponent, typeof GaFieldInfoComponent, typeof GaFormControlDirective], [typeof GaFormFieldComponent, typeof GaFieldLabelComponent, typeof GaFieldInfoComponent, typeof GaFormControlDirective]>;
|
|
@@ -551,6 +561,14 @@ declare class GaModalDescriptionDirective implements AfterViewInit {
|
|
|
551
561
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaModalDescriptionDirective, [{ attribute: "id"; }]>;
|
|
552
562
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GaModalDescriptionDirective, "[gaModalDescription]", never, {}, {}, never, never, true, never>;
|
|
553
563
|
}
|
|
564
|
+
declare class GaModalLabelDirective {
|
|
565
|
+
private readonly renderer;
|
|
566
|
+
private readonly elementRef;
|
|
567
|
+
private readonly id;
|
|
568
|
+
constructor(id?: string);
|
|
569
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaModalLabelDirective, [{ attribute: "id"; }]>;
|
|
570
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GaModalLabelDirective, "[gaModalLabel]", never, {}, {}, never, never, true, never>;
|
|
571
|
+
}
|
|
554
572
|
|
|
555
573
|
declare class GaModalDescriptionComponent {
|
|
556
574
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaModalDescriptionComponent, never>;
|
|
@@ -592,12 +610,12 @@ declare class GaModalHeaderComponent {
|
|
|
592
610
|
protected readonly modalRef: GaModalRef<any>;
|
|
593
611
|
protected readonly i18n: GaModalI18n;
|
|
594
612
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaModalHeaderComponent, never>;
|
|
595
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaModalHeaderComponent, "ga-modal-header", never, {}, {}, never, ["[gaModalTitle]", "ga-modal-description"], true, never>;
|
|
613
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaModalHeaderComponent, "ga-modal-header", never, {}, {}, never, ["[gaModalLabel]", "[gaModalTitle]", "ga-modal-description"], true, never>;
|
|
596
614
|
}
|
|
597
615
|
|
|
598
616
|
declare class GaModalModule {
|
|
599
617
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaModalModule, never>;
|
|
600
|
-
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<GaModalModule, never, [typeof GaModalCloseDirective, typeof GaModalTitleDirective, typeof GaModalDescriptionDirective, typeof GaModalDescriptionComponent, typeof GaModalContentComponent, typeof GaModalActionsComponent, typeof GaModalHeaderComponent], [typeof GaModalCloseDirective, typeof GaModalTitleDirective, typeof GaModalDescriptionDirective, typeof GaModalDescriptionComponent, typeof GaModalContentComponent, typeof GaModalActionsComponent, typeof GaModalHeaderComponent]>;
|
|
618
|
+
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<GaModalModule, never, [typeof GaModalCloseDirective, typeof GaModalTitleDirective, typeof GaModalLabelDirective, typeof GaModalDescriptionDirective, typeof GaModalDescriptionComponent, typeof GaModalContentComponent, typeof GaModalActionsComponent, typeof GaModalHeaderComponent], [typeof GaModalCloseDirective, typeof GaModalTitleDirective, typeof GaModalLabelDirective, typeof GaModalDescriptionDirective, typeof GaModalDescriptionComponent, typeof GaModalContentComponent, typeof GaModalActionsComponent, typeof GaModalHeaderComponent]>;
|
|
601
619
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<GaModalModule>;
|
|
602
620
|
}
|
|
603
621
|
|
|
@@ -730,6 +748,7 @@ declare class GaSelectComponent implements ControlValueAccessor, GaFormControl,
|
|
|
730
748
|
readonly multiple: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
731
749
|
readonly compareWith: _angular_core.InputSignal<((o1: any, o2: any) => boolean) | undefined>;
|
|
732
750
|
readonly searchable: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
751
|
+
readonly canSelectNullable: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
733
752
|
readonly textValue: _angular_core.ModelSignal<string>;
|
|
734
753
|
readonly leftIcon: _angular_core.InputSignal<lucide_angular.LucideIconData | undefined>;
|
|
735
754
|
readonly idInput: _angular_core.InputSignal<string | null>;
|
|
@@ -748,7 +767,7 @@ declare class GaSelectComponent implements ControlValueAccessor, GaFormControl,
|
|
|
748
767
|
readonly activeDescendantId: _angular_core.Signal<string | undefined>;
|
|
749
768
|
readonly hasValue: _angular_core.Signal<boolean>;
|
|
750
769
|
readonly invalid: _angular_core.Signal<boolean>;
|
|
751
|
-
readonly _formControlId: _angular_core.Signal<
|
|
770
|
+
readonly _formControlId: _angular_core.Signal<null>;
|
|
752
771
|
readonly _formControlDisabled: _angular_core.Signal<boolean>;
|
|
753
772
|
constructor();
|
|
754
773
|
ngAfterContentInit(): void;
|
|
@@ -772,7 +791,7 @@ declare class GaSelectComponent implements ControlValueAccessor, GaFormControl,
|
|
|
772
791
|
private syncValue;
|
|
773
792
|
private setItemActive;
|
|
774
793
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaSelectComponent, never>;
|
|
775
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaSelectComponent, "ga-select", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "disabledInput": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalidInput": { "alias": "invalid"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "compareWith": { "alias": "compareWith"; "required": false; "isSignal": true; }; "searchable": { "alias": "searchable"; "required": false; "isSignal": true; }; "textValue": { "alias": "textValue"; "required": false; "isSignal": true; }; "leftIcon": { "alias": "leftIcon"; "required": false; "isSignal": true; }; "idInput": { "alias": "id"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "textValue": "textValueChange"; "opened": "opened"; "closed": "closed"; }, ["gaOptions", "cdkListbox", "customSelectValue"], ["ga-select-value", "ga-select-dropdown"], true, [{ directive: typeof i1$3.CdkOverlayOrigin; inputs: {}; outputs: {}; }]>;
|
|
794
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaSelectComponent, "ga-select", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "disabledInput": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalidInput": { "alias": "invalid"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "compareWith": { "alias": "compareWith"; "required": false; "isSignal": true; }; "searchable": { "alias": "searchable"; "required": false; "isSignal": true; }; "canSelectNullable": { "alias": "canSelectNullable"; "required": false; "isSignal": true; }; "textValue": { "alias": "textValue"; "required": false; "isSignal": true; }; "leftIcon": { "alias": "leftIcon"; "required": false; "isSignal": true; }; "idInput": { "alias": "id"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "textValue": "textValueChange"; "opened": "opened"; "closed": "closed"; }, ["gaOptions", "cdkListbox", "customSelectValue"], ["ga-select-value", "ga-select-dropdown"], true, [{ directive: typeof i1$3.CdkOverlayOrigin; inputs: {}; outputs: {}; }, { directive: typeof GaLabelledByFormFieldDirective; inputs: {}; outputs: {}; }]>;
|
|
776
795
|
}
|
|
777
796
|
|
|
778
797
|
declare class GaOptgroupComponent {
|
|
@@ -949,5 +968,5 @@ declare class GaTextAreaModule {
|
|
|
949
968
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<GaTextAreaModule>;
|
|
950
969
|
}
|
|
951
970
|
|
|
952
|
-
export { CHECKBOX_CONTROL_VALUE_ACCESSOR, DEFAULT_MODAL_OPTIONS, GA_ALERT_I18N_FACTORY, GA_BASE_FONT_SIZE, GA_BUTTON_I18N_FACTORY, GA_CHECKBOX_REQUIRED_VALIDATOR, GA_FORM_CONTROL, GA_ICON_DEFAULT_SIZE, GA_MODAL_DATA, GA_MODAL_I18N_FACTORY, GA_SELECT_REQUIRED_VALIDATOR, GA_TOOLTIP_DEFAULT_OFFSET, GaAlertComponent, GaAlertI18n, GaAlertI18nDefault, GaAlertModule, GaAlertTitleActionsComponent, GaAlertTitleComponent, GaBadgeComponent, GaBadgeModule, GaButtonDirective, GaButtonI18n, GaButtonI18nDefault, GaButtonModule, GaCardComponent, GaCardModule, GaCheckboxComponent, GaCheckboxModule, GaCheckboxRequiredValidator, GaFieldInfoComponent, GaFieldLabelComponent, GaFormControlDirective, GaFormFieldComponent, GaFormFieldModule, GaIconButtonDirective, GaIconComponent, GaIconModule, GaInputComponent, GaInputDirective, GaInputModule, GaLinkDirective, GaLinkModule, GaMenuComponent, GaMenuItemComponent, GaMenuModule, GaMenuSeparatorComponent, GaMenuTitleComponent, GaMenuTriggerDirective, GaMenuTriggerIconComponent, GaModalActionsComponent, GaModalCloseDirective, GaModalComponent, GaModalContentComponent, GaModalDescriptionComponent, GaModalDescriptionDirective, GaModalHeaderComponent, GaModalI18n, GaModalI18nDefault, GaModalModule, GaModalOptions, GaModalRef, GaModalService, GaModalTitleDirective, GaOptgroupComponent, GaOptionComponent, GaRadioButtonComponent, GaRadioGroupComponent, GaRadioModule, GaSegmentedControlButtonDirective, GaSegmentedControlComponent, GaSegmentedControlIconButtonComponent, GaSegmentedControlModule, GaSegmentedControlTextButtonComponent, GaSelectComponent, GaSelectDropdownComponent, GaSelectDropdownSpinnerComponent, GaSelectModule, GaSelectRequiredValidator, GaSelectValueComponent, GaSpinnerComponent, GaSpinnerModule, GaTextAreaDirective, GaTextAreaModule, GaTooltipComponent, GaTooltipDirective, GaTooltipModule, RADIO_CONTROL_VALUE_ACCESSOR, provideGaAlertI18n, provideGaBaseFontSize, provideGaButtonI18n, provideGaModalI18n, provideGaModalOptions };
|
|
971
|
+
export { CHECKBOX_CONTROL_VALUE_ACCESSOR, DEFAULT_MODAL_OPTIONS, GA_ALERT_I18N_FACTORY, GA_BASE_FONT_SIZE, GA_BUTTON_I18N_FACTORY, GA_CHECKBOX_REQUIRED_VALIDATOR, GA_FORM_CONTROL, GA_ICON_DEFAULT_SIZE, GA_MODAL_DATA, GA_MODAL_I18N_FACTORY, GA_SELECT_REQUIRED_VALIDATOR, GA_TOOLTIP_DEFAULT_OFFSET, GaAlertComponent, GaAlertI18n, GaAlertI18nDefault, GaAlertModule, GaAlertTitleActionsComponent, GaAlertTitleComponent, GaBadgeComponent, GaBadgeModule, GaButtonDirective, GaButtonI18n, GaButtonI18nDefault, GaButtonModule, GaCardComponent, GaCardModule, GaCheckboxComponent, GaCheckboxModule, GaCheckboxRequiredValidator, GaFieldInfoComponent, GaFieldLabelComponent, GaFormControlDirective, GaFormFieldComponent, GaFormFieldModule, GaIconButtonDirective, GaIconComponent, GaIconModule, GaInputComponent, GaInputDirective, GaInputModule, GaLabelledByFormFieldDirective, GaLinkDirective, GaLinkModule, GaMenuComponent, GaMenuItemComponent, GaMenuModule, GaMenuSeparatorComponent, GaMenuTitleComponent, GaMenuTriggerDirective, GaMenuTriggerIconComponent, GaModalActionsComponent, GaModalCloseDirective, GaModalComponent, GaModalContentComponent, GaModalDescriptionComponent, GaModalDescriptionDirective, GaModalHeaderComponent, GaModalI18n, GaModalI18nDefault, GaModalLabelDirective, GaModalModule, GaModalOptions, GaModalRef, GaModalService, GaModalTitleDirective, GaOptgroupComponent, GaOptionComponent, GaRadioButtonComponent, GaRadioGroupComponent, GaRadioModule, GaSegmentedControlButtonDirective, GaSegmentedControlComponent, GaSegmentedControlIconButtonComponent, GaSegmentedControlModule, GaSegmentedControlTextButtonComponent, GaSelectComponent, GaSelectDropdownComponent, GaSelectDropdownSpinnerComponent, GaSelectModule, GaSelectRequiredValidator, GaSelectValueComponent, GaSpinnerComponent, GaSpinnerModule, GaTextAreaDirective, GaTextAreaModule, GaTooltipComponent, GaTooltipDirective, GaTooltipModule, RADIO_CONTROL_VALUE_ACCESSOR, provideGaAlertI18n, provideGaBaseFontSize, provideGaButtonI18n, provideGaModalI18n, provideGaModalOptions };
|
|
953
972
|
export type { GaAlertVariant, GaBadgeType, GaBadgeVariant, GaButtonType, GaFormControl, GaIconButtonVariant, GaIconData, GaLinkSize, GaLinkVariant, GaModalRole, GaModalSize, GaModalType, GaTooltipControlMode, GaTooltipDirection, GaTooltipPlacement, GaTooltipPosition };
|