@vsn-ux/ngx-gaia 0.8.2 → 0.8.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/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as lucide_angular from 'lucide-angular';
|
|
2
2
|
import { X, LucideIconData } from 'lucide-angular';
|
|
3
3
|
import * as _angular_core from '@angular/core';
|
|
4
|
-
import { Provider, DoCheck, Signal, InjectionToken, TemplateRef, WritableSignal, AfterViewInit, Renderer2, ElementRef, AfterContentInit } from '@angular/core';
|
|
4
|
+
import { Provider, DoCheck, Signal, InjectionToken, TemplateRef, WritableSignal, AfterViewInit, Renderer2, ElementRef, OnDestroy, AfterContentInit } from '@angular/core';
|
|
5
5
|
import { ControlValueAccessor, CheckboxRequiredValidator, ValidationErrors, RequiredValidator } from '@angular/forms';
|
|
6
6
|
import * as _vsn_ux_ngx_gaia from '@vsn-ux/ngx-gaia';
|
|
7
7
|
import * as i1 from '@angular/cdk/menu';
|
|
@@ -9,7 +9,7 @@ import * as rxjs from 'rxjs';
|
|
|
9
9
|
import { Observable, Subject } from 'rxjs';
|
|
10
10
|
import * as i1$1 from '@angular/cdk/a11y';
|
|
11
11
|
import { ComponentType } from '@angular/cdk/portal';
|
|
12
|
-
import * as
|
|
12
|
+
import * as _angular_cdk_overlay from '@angular/cdk/overlay';
|
|
13
13
|
import { ConnectedPosition, CdkOverlayOrigin } from '@angular/cdk/overlay';
|
|
14
14
|
import * as i1$2 from '@angular/cdk/listbox';
|
|
15
15
|
import { CdkOption, CdkListbox } from '@angular/cdk/listbox';
|
|
@@ -145,12 +145,12 @@ declare class GaCardModule {
|
|
|
145
145
|
|
|
146
146
|
declare const CHECKBOX_CONTROL_VALUE_ACCESSOR: Provider;
|
|
147
147
|
declare class GaCheckboxComponent implements ControlValueAccessor, DoCheck {
|
|
148
|
-
/** @ignore */
|
|
149
|
-
protected readonly tabindex?: string | undefined;
|
|
150
148
|
/** @ignore */
|
|
151
149
|
private readonly _uniqueId;
|
|
152
150
|
/** @ignore */
|
|
153
151
|
private readonly injector;
|
|
152
|
+
/** @ignore */
|
|
153
|
+
protected readonly tabindex: string | null;
|
|
154
154
|
readonly icons: {
|
|
155
155
|
Minus: lucide_angular.LucideIconData;
|
|
156
156
|
Check: lucide_angular.LucideIconData;
|
|
@@ -185,9 +185,6 @@ declare class GaCheckboxComponent implements ControlValueAccessor, DoCheck {
|
|
|
185
185
|
readonly name: _angular_core.Signal<string | number>;
|
|
186
186
|
/** @ignore */
|
|
187
187
|
readonly invalid: _angular_core.Signal<boolean>;
|
|
188
|
-
constructor(
|
|
189
|
-
/** @ignore */
|
|
190
|
-
tabindex?: string | undefined);
|
|
191
188
|
ngDoCheck(): void;
|
|
192
189
|
/** @ignore */
|
|
193
190
|
onInputChange(event: Event): void;
|
|
@@ -203,7 +200,7 @@ declare class GaCheckboxComponent implements ControlValueAccessor, DoCheck {
|
|
|
203
200
|
setDisabledState(isDisabled: boolean): void;
|
|
204
201
|
/** @ignore */
|
|
205
202
|
private updateModel;
|
|
206
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaCheckboxComponent,
|
|
203
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaCheckboxComponent, never>;
|
|
207
204
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaCheckboxComponent, "ga-checkbox", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "nameInput": { "alias": "name"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "indeterminate": { "alias": "indeterminate"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; "isSignal": true; }; "ariaDescribedby": { "alias": "aria-describedby"; "required": false; "isSignal": true; }; "ariaInvalid": { "alias": "aria-invalid"; "required": false; "isSignal": true; }; "ariaErrormessage": { "alias": "aria-errormessage"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; }, { "change": "change"; "indeterminateChange": "indeterminateChange"; }, never, ["*"], true, never>;
|
|
208
205
|
}
|
|
209
206
|
|
|
@@ -265,13 +262,14 @@ declare const GA_ICON_DEFAULT_SIZE = 24;
|
|
|
265
262
|
declare class GaIconComponent {
|
|
266
263
|
private readonly elementRef;
|
|
267
264
|
private readonly baseFontSize;
|
|
265
|
+
private readonly ariaHiddenAttr;
|
|
268
266
|
readonly icon: _angular_core.InputSignal<string | LucideIconData>;
|
|
269
267
|
readonly size: _angular_core.InputSignal<string | number>;
|
|
270
268
|
readonly color: _angular_core.InputSignal<string | undefined>;
|
|
271
269
|
readonly strokeWidth: _angular_core.InputSignalWithTransform<number | undefined, unknown>;
|
|
272
270
|
readonly sizeWithDimension: _angular_core.Signal<string>;
|
|
273
|
-
constructor(
|
|
274
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaIconComponent,
|
|
271
|
+
constructor();
|
|
272
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaIconComponent, never>;
|
|
275
273
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaIconComponent, "ga-icon", never, { "icon": { "alias": "icon"; "required": true; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "strokeWidth": { "alias": "strokeWidth"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
276
274
|
}
|
|
277
275
|
|
|
@@ -291,10 +289,10 @@ declare class GaInputComponent implements DoCheck {
|
|
|
291
289
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaInputComponent, "ga-input", never, { "invalidInput": { "alias": "invalidInput"; "required": false; "isSignal": true; }; }, {}, ["implicitNgControl"], ["*"], true, never>;
|
|
292
290
|
}
|
|
293
291
|
|
|
294
|
-
|
|
292
|
+
interface GaFormControl {
|
|
295
293
|
readonly _formControlId: Signal<string | null | undefined>;
|
|
296
294
|
readonly _formControlDisabled: Signal<boolean | null | undefined>;
|
|
297
|
-
}
|
|
295
|
+
}
|
|
298
296
|
declare const GA_FORM_CONTROL: InjectionToken<GaFormControl>;
|
|
299
297
|
declare class GaFormControlDirective implements GaFormControl {
|
|
300
298
|
readonly _formControlId: _angular_core.InputSignal<string | undefined>;
|
|
@@ -545,28 +543,31 @@ declare class GaModalTitleDirective implements AfterViewInit {
|
|
|
545
543
|
private readonly renderer;
|
|
546
544
|
private readonly elementRef;
|
|
547
545
|
private readonly modalRef;
|
|
546
|
+
protected readonly idAttribute: string | null;
|
|
548
547
|
private readonly id;
|
|
549
|
-
constructor(
|
|
548
|
+
constructor();
|
|
550
549
|
ngAfterViewInit(): void;
|
|
551
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaModalTitleDirective,
|
|
550
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaModalTitleDirective, never>;
|
|
552
551
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GaModalTitleDirective, "[gaModalTitle]", never, {}, {}, never, never, true, never>;
|
|
553
552
|
}
|
|
554
553
|
declare class GaModalDescriptionDirective implements AfterViewInit {
|
|
555
554
|
readonly renderer: Renderer2;
|
|
556
555
|
readonly elementRef: ElementRef<any>;
|
|
557
556
|
private readonly modalRef;
|
|
557
|
+
protected readonly idAttribute: string | null;
|
|
558
558
|
private readonly id;
|
|
559
|
-
constructor(
|
|
559
|
+
constructor();
|
|
560
560
|
ngAfterViewInit(): void;
|
|
561
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaModalDescriptionDirective,
|
|
561
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaModalDescriptionDirective, never>;
|
|
562
562
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GaModalDescriptionDirective, "[gaModalDescription]", never, {}, {}, never, never, true, never>;
|
|
563
563
|
}
|
|
564
564
|
declare class GaModalLabelDirective {
|
|
565
565
|
private readonly renderer;
|
|
566
566
|
private readonly elementRef;
|
|
567
|
+
protected readonly idAttribute: string | null;
|
|
567
568
|
private readonly id;
|
|
568
|
-
constructor(
|
|
569
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaModalLabelDirective,
|
|
569
|
+
constructor();
|
|
570
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaModalLabelDirective, never>;
|
|
570
571
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GaModalLabelDirective, "[gaModalLabel]", never, {}, {}, never, never, true, never>;
|
|
571
572
|
}
|
|
572
573
|
|
|
@@ -646,7 +647,7 @@ declare class GaTooltipComponent {
|
|
|
646
647
|
}
|
|
647
648
|
|
|
648
649
|
declare const GA_TOOLTIP_DEFAULT_OFFSET = 5;
|
|
649
|
-
declare class GaTooltipDirective {
|
|
650
|
+
declare class GaTooltipDirective implements OnDestroy {
|
|
650
651
|
private readonly elementRef;
|
|
651
652
|
private readonly overlay;
|
|
652
653
|
private readonly ngZone;
|
|
@@ -739,6 +740,7 @@ declare class GaSelectComponent implements ControlValueAccessor, GaFormControl,
|
|
|
739
740
|
protected readonly positions: ConnectedPosition[];
|
|
740
741
|
private readonly injector;
|
|
741
742
|
protected readonly overlayOrigin: CdkOverlayOrigin;
|
|
743
|
+
protected readonly blockScrollStrategy: _angular_cdk_overlay.BlockScrollStrategy;
|
|
742
744
|
private readonly implicitInvalid;
|
|
743
745
|
private readonly _isOpen;
|
|
744
746
|
readonly value: _angular_core.ModelSignal<unknown>;
|
|
@@ -791,7 +793,7 @@ declare class GaSelectComponent implements ControlValueAccessor, GaFormControl,
|
|
|
791
793
|
private syncValue;
|
|
792
794
|
private setItemActive;
|
|
793
795
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaSelectComponent, never>;
|
|
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
|
|
796
|
+
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 _angular_cdk_overlay.CdkOverlayOrigin; inputs: {}; outputs: {}; }, { directive: typeof GaLabelledByFormFieldDirective; inputs: {}; outputs: {}; }]>;
|
|
795
797
|
}
|
|
796
798
|
|
|
797
799
|
declare class GaOptgroupComponent {
|
|
@@ -841,8 +843,8 @@ declare class GaSpinnerModule {
|
|
|
841
843
|
}
|
|
842
844
|
|
|
843
845
|
declare class GaRadioButtonComponent {
|
|
844
|
-
protected readonly tabindex?: string | undefined;
|
|
845
846
|
private readonly radioGroup;
|
|
847
|
+
protected readonly tabindex: string | null;
|
|
846
848
|
private _uniqueId;
|
|
847
849
|
/** The value attribute of the native input element */
|
|
848
850
|
readonly value: _angular_core.InputSignal<string | null>;
|
|
@@ -865,10 +867,9 @@ declare class GaRadioButtonComponent {
|
|
|
865
867
|
readonly name: _angular_core.Signal<string>;
|
|
866
868
|
readonly disabled: _angular_core.Signal<boolean>;
|
|
867
869
|
protected readonly checked: _angular_core.Signal<boolean>;
|
|
868
|
-
constructor(tabindex?: string | undefined);
|
|
869
870
|
onInputChange(event: Event): void;
|
|
870
871
|
onBlur(): void;
|
|
871
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaRadioButtonComponent,
|
|
872
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaRadioButtonComponent, never>;
|
|
872
873
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaRadioButtonComponent, "ga-radio-button", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "inputId": { "alias": "id"; "required": false; "isSignal": true; }; "inputName": { "alias": "name"; "required": false; "isSignal": true; }; "inputChecked": { "alias": "checked"; "required": false; "isSignal": true; }; "inputDisabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; "isSignal": true; }; "ariaDescribedby": { "alias": "aria-describedby"; "required": false; "isSignal": true; }; "ariaInvalid": { "alias": "aria-invalid"; "required": false; "isSignal": true; }; "ariaErrormessage": { "alias": "aria-errormessage"; "required": false; "isSignal": true; }; }, { "change": "change"; }, never, ["*"], true, never>;
|
|
873
874
|
}
|
|
874
875
|
|
|
@@ -915,6 +916,61 @@ declare class GaRadioModule {
|
|
|
915
916
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<GaRadioModule>;
|
|
916
917
|
}
|
|
917
918
|
|
|
919
|
+
declare const SWITCH_CONTROL_VALUE_ACCESSOR: Provider;
|
|
920
|
+
declare class GaSwitchComponent implements ControlValueAccessor, DoCheck {
|
|
921
|
+
protected readonly icons: {
|
|
922
|
+
Check: lucide_angular.LucideIconData;
|
|
923
|
+
};
|
|
924
|
+
/** @ignore */
|
|
925
|
+
readonly _uniqueId: string;
|
|
926
|
+
private readonly injector;
|
|
927
|
+
/** @ignore */
|
|
928
|
+
protected readonly tabindex: _angular_core.InputSignal<string | number>;
|
|
929
|
+
/** @ignore */
|
|
930
|
+
private _onTouched?;
|
|
931
|
+
/** @ignore */
|
|
932
|
+
private _onModelChanged?;
|
|
933
|
+
/** @ignore */
|
|
934
|
+
private _invalidNgModel;
|
|
935
|
+
private _ngModelName;
|
|
936
|
+
readonly checked: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
937
|
+
readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
938
|
+
readonly ariaInvalid: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
939
|
+
readonly label: _angular_core.InputSignal<string>;
|
|
940
|
+
readonly ariaLabel: _angular_core.InputSignal<string | null>;
|
|
941
|
+
readonly ariaLabelledby: _angular_core.InputSignal<string | null>;
|
|
942
|
+
readonly ariaDescribedby: _angular_core.InputSignal<string | null>;
|
|
943
|
+
readonly ariaErrormessage: _angular_core.InputSignal<string | null>;
|
|
944
|
+
readonly nameInput: _angular_core.InputSignal<string | null>;
|
|
945
|
+
readonly id: _angular_core.InputSignal<string | null>;
|
|
946
|
+
readonly disabledModel: _angular_core.WritableSignal<boolean>;
|
|
947
|
+
readonly checkedModel: _angular_core.WritableSignal<boolean>;
|
|
948
|
+
readonly checkedChange: _angular_core.OutputEmitterRef<boolean>;
|
|
949
|
+
/** @ignore */
|
|
950
|
+
readonly inputId: _angular_core.Signal<string>;
|
|
951
|
+
/** @ignore */
|
|
952
|
+
readonly name: _angular_core.Signal<string | number>;
|
|
953
|
+
/** @ignore */
|
|
954
|
+
readonly invalidComputed: _angular_core.Signal<boolean>;
|
|
955
|
+
ngDoCheck(): void;
|
|
956
|
+
/** @ignore */
|
|
957
|
+
onInputChange(event: Event): void;
|
|
958
|
+
/** @ignore */
|
|
959
|
+
onBlur(): void;
|
|
960
|
+
writeValue(value: any): void;
|
|
961
|
+
registerOnChange(fn: any): void;
|
|
962
|
+
registerOnTouched(fn: any): void;
|
|
963
|
+
setDisabledState(disabled: boolean): void;
|
|
964
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaSwitchComponent, never>;
|
|
965
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaSwitchComponent, "ga-switch", never, { "tabindex": { "alias": "tabindex"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "ariaInvalid": { "alias": "aria-invalid"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; "isSignal": true; }; "ariaDescribedby": { "alias": "aria-describedby"; "required": false; "isSignal": true; }; "ariaErrormessage": { "alias": "aria-errormessage"; "required": false; "isSignal": true; }; "nameInput": { "alias": "name"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; }, { "checkedChange": "checkedChange"; }, never, never, true, never>;
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
declare class GaSwitchModule {
|
|
969
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaSwitchModule, never>;
|
|
970
|
+
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<GaSwitchModule, never, [typeof GaSwitchComponent], [typeof GaSwitchComponent]>;
|
|
971
|
+
static ɵinj: _angular_core.ɵɵInjectorDeclaration<GaSwitchModule>;
|
|
972
|
+
}
|
|
973
|
+
|
|
918
974
|
/**
|
|
919
975
|
* Injection token that provides the base root font size in pixels.
|
|
920
976
|
* This token is used for accurate rem calculations when the default
|
|
@@ -968,5 +1024,5 @@ declare class GaTextAreaModule {
|
|
|
968
1024
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<GaTextAreaModule>;
|
|
969
1025
|
}
|
|
970
1026
|
|
|
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 };
|
|
1027
|
+
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, GaSwitchComponent, GaSwitchModule, GaTextAreaDirective, GaTextAreaModule, GaTooltipComponent, GaTooltipDirective, GaTooltipModule, RADIO_CONTROL_VALUE_ACCESSOR, SWITCH_CONTROL_VALUE_ACCESSOR, provideGaAlertI18n, provideGaBaseFontSize, provideGaButtonI18n, provideGaModalI18n, provideGaModalOptions };
|
|
972
1028
|
export type { GaAlertVariant, GaBadgeType, GaBadgeVariant, GaButtonType, GaFormControl, GaIconButtonVariant, GaIconData, GaLinkSize, GaLinkVariant, GaModalRole, GaModalSize, GaModalType, GaTooltipControlMode, GaTooltipDirection, GaTooltipPlacement, GaTooltipPosition };
|
package/package.json
CHANGED
|
@@ -27,6 +27,7 @@ function ngAdd(options) {
|
|
|
27
27
|
}
|
|
28
28
|
}
|
|
29
29
|
// Installing dependencies
|
|
30
|
+
// eslint-disable-next-line @typescript-eslint/no-require-imports
|
|
30
31
|
const pkg = require('../../package.json');
|
|
31
32
|
(0, dependencies_1.addPackageJsonDependency)(tree, {
|
|
32
33
|
name: '@vsn-ux/gaia-styles',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../projects/ngx-gaia/schematics/ng-add/index.ts"],"names":[],"mappings":";;;;;;;;;;;AAoBA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../projects/ngx-gaia/schematics/ng-add/index.ts"],"names":[],"mappings":";;;;;;;;;;;AAoBA,sBAoCC;AAxDD,2DAKoC;AACpC,4DAG0C;AAC1C,2EAIkD;AAClD,qEAAqE;AAErE,yCAAuC;AAGvC,SAAgB,KAAK,CAAC,OAAe;IACnC,OAAO,CAAO,IAAU,EAAE,OAAyB,EAAE,EAAE;QACrD,+BAA+B;QAC/B,MAAM,EAAE,OAAO,EAAE,GAAG,OAAO,CAAC;QAC5B,IAAI,OAAO,EAAE,CAAC;YACZ,MAAM,SAAS,GAAG,MAAM,IAAA,wBAAY,EAAC,IAAI,CAAC,CAAC;YAC3C,MAAM,gBAAgB,GAAG,SAAS,CAAC,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;YAEzD,IAAI,CAAC,gBAAgB,EAAE,CAAC;gBACtB,MAAM,IAAI,gCAAmB,CAAC,IAAA,oBAAS,EAAC,OAAO,CAAC,CAAC,CAAC;YACpD,CAAC;QACH,CAAC;QAED,0BAA0B;QAC1B,iEAAiE;QACjE,MAAM,GAAG,GAAG,OAAO,CAAC,oBAAoB,CAAC,CAAC;QAC1C,IAAA,uCAAwB,EAAC,IAAI,EAAE;YAC7B,IAAI,EAAE,qBAAqB;YAC3B,IAAI,EAAE,iCAAkB,CAAC,OAAO;YAChC,OAAO,EAAE,GAAG,CAAC,gBAAgB,CAAC,qBAAqB,CAAC;SACrD,CAAC,CAAC;QAEH,MAAM,kBAAkB,GAAG,IAAA,uCAAwB,EAAC,IAAI,EAAE,eAAe,CAAC,CAAC;QAC3E,MAAM,iBAAiB,GAAG,IAAA,uCAAwB,EAAC,IAAI,EAAE,cAAc,CAAC,CAAC;QACzE,IAAI,kBAAkB,KAAK,IAAI,IAAI,iBAAiB,KAAK,IAAI,EAAE,CAAC;YAC9D,IAAA,uCAAwB,EAAC,IAAI,EAAE;gBAC7B,IAAI,EAAE,cAAc;gBACpB,IAAI,EAAE,iCAAkB,CAAC,OAAO;gBAChC,OAAO,EAAE,GAAG,CAAC,gBAAgB,CAAC,cAAc,CAAC;aAC9C,CAAC,CAAC;QACL,CAAC;QAED,OAAO,CAAC,OAAO,CAAC,IAAI,wBAAgB,CAAC,sBAAsB,EAAE,OAAO,CAAC,EAAE;YACrE,OAAO,CAAC,OAAO,CAAC,IAAI,8BAAsB,EAAE,CAAC;SAC9C,CAAC,CAAC;IACL,CAAC,CAAA,CAAC;AACJ,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"setup-project.js","sourceRoot":"","sources":["../../../../projects/ngx-gaia/schematics/ng-add/setup-project.ts"],"names":[],"mappings":";;;;;;;;;;;AAgBA,8CAEC;AAlBD,wDAGiC;AAEjC,2DAKoC;AACpC,qEAAqE;AACrE,6BAA6B;AAI7B,SAAgB,iBAAiB,CAAC,OAAe;IAC/C,OAAO,IAAA,kBAAK,EAAC,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;AACrC,CAAC;AAED,MAAM,iCAAiC,
|
|
1
|
+
{"version":3,"file":"setup-project.js","sourceRoot":"","sources":["../../../../projects/ngx-gaia/schematics/ng-add/setup-project.ts"],"names":[],"mappings":";;;;;;;;;;;AAgBA,8CAEC;AAlBD,wDAGiC;AAEjC,2DAKoC;AACpC,qEAAqE;AACrE,6BAA6B;AAI7B,SAAgB,iBAAiB,CAAC,OAAe;IAC/C,OAAO,IAAA,kBAAK,EAAC,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;AACrC,CAAC;AAED,MAAM,iCAAiC,GAA2B;IAChE,OAAO,EAAE,2BAA2B;IACpC,OAAO,EAAE,4BAA4B;IACrC,MAAM,EAAE,+BAA+B;CACxC,CAAC;AAEF,SAAS,SAAS,CAAC,OAAe;IAChC,OAAO,CAAO,IAAU,EAAE,OAAyB,EAAE,EAAE;QACrD,MAAM,SAAS,GAAG,MAAM,IAAA,wBAAY,EAAC,IAAI,CAAC,CAAC;QAC3C,MAAM,OAAO,GAAG,IAAA,oCAAuB,EAAC,SAAS,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;QACpE,MAAM,aAAa,GAAG,IAAA,gCAAmB,EAAC,OAAO,CAAC,CAAC;QACnD,IAAI,CAAC,aAAa,EAAE,CAAC;YACnB,OAAO,CAAC,MAAM,CAAC,KAAK,CAClB,yDAAyD,CAC1D,CAAC;YACF,OAAO;QACT,CAAC;QAED,MAAM,kBAAkB,GAAG,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC;QACvD,MAAM,cAAc,GAClB,iCAAiC,CAAC,kBAAkB,CAAC,CAAC;QACxD,IAAI,CAAC,cAAc,EAAE,CAAC;YACpB,OAAO;QACT,CAAC;QACD,OAAO,eAAe,CAAC,aAAa,EAAE,cAAc,CAAC,CAAC;IACxD,CAAC,CAAA,CAAC;AACJ,CAAC;AAED,SAAS,eAAe,CAAC,aAAqB,EAAE,cAAsB;IACpE,OAAO,CAAC,IAAU,EAAE,EAAE;QACpB,MAAM,iBAAiB,GAAG,IAAI,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;QAEnD,IAAI,CAAC,iBAAiB,EAAE,CAAC;YACvB,OAAO;QACT,CAAC;QAED,MAAM,QAAQ,GAAG,IAAI,CAAC,WAAW,CAAC,aAAa,CAAC,CAAC;QACjD,QAAQ,CAAC,WAAW,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC;QACxC,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC;IAC9B,CAAC,CAAC;AACJ,CAAC"}
|