@vsn-ux/ngx-gaia 0.8.0 → 0.8.1
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 +65 -21
- package/fesm2022/vsn-ux-ngx-gaia.mjs.map +1 -1
- package/index.d.ts +17 -6
- 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]>;
|
|
@@ -730,6 +740,7 @@ declare class GaSelectComponent implements ControlValueAccessor, GaFormControl,
|
|
|
730
740
|
readonly multiple: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
731
741
|
readonly compareWith: _angular_core.InputSignal<((o1: any, o2: any) => boolean) | undefined>;
|
|
732
742
|
readonly searchable: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
743
|
+
readonly canSelectNullable: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
733
744
|
readonly textValue: _angular_core.ModelSignal<string>;
|
|
734
745
|
readonly leftIcon: _angular_core.InputSignal<lucide_angular.LucideIconData | undefined>;
|
|
735
746
|
readonly idInput: _angular_core.InputSignal<string | null>;
|
|
@@ -748,7 +759,7 @@ declare class GaSelectComponent implements ControlValueAccessor, GaFormControl,
|
|
|
748
759
|
readonly activeDescendantId: _angular_core.Signal<string | undefined>;
|
|
749
760
|
readonly hasValue: _angular_core.Signal<boolean>;
|
|
750
761
|
readonly invalid: _angular_core.Signal<boolean>;
|
|
751
|
-
readonly _formControlId: _angular_core.Signal<
|
|
762
|
+
readonly _formControlId: _angular_core.Signal<null>;
|
|
752
763
|
readonly _formControlDisabled: _angular_core.Signal<boolean>;
|
|
753
764
|
constructor();
|
|
754
765
|
ngAfterContentInit(): void;
|
|
@@ -772,7 +783,7 @@ declare class GaSelectComponent implements ControlValueAccessor, GaFormControl,
|
|
|
772
783
|
private syncValue;
|
|
773
784
|
private setItemActive;
|
|
774
785
|
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: {}; }]>;
|
|
786
|
+
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
787
|
}
|
|
777
788
|
|
|
778
789
|
declare class GaOptgroupComponent {
|
|
@@ -949,5 +960,5 @@ declare class GaTextAreaModule {
|
|
|
949
960
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<GaTextAreaModule>;
|
|
950
961
|
}
|
|
951
962
|
|
|
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 };
|
|
963
|
+
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, 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
964
|
export type { GaAlertVariant, GaBadgeType, GaBadgeVariant, GaButtonType, GaFormControl, GaIconButtonVariant, GaIconData, GaLinkSize, GaLinkVariant, GaModalRole, GaModalSize, GaModalType, GaTooltipControlMode, GaTooltipDirection, GaTooltipPlacement, GaTooltipPosition };
|