@vsn-ux/ngx-gaia 0.8.9 → 0.9.0
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 +128 -88
- package/fesm2022/vsn-ux-ngx-gaia.mjs.map +1 -1
- package/index.d.ts +48 -42
- package/package.json +1 -1
|
@@ -928,50 +928,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
928
928
|
}]
|
|
929
929
|
}] });
|
|
930
930
|
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
const ngControl = this.ngControlInput();
|
|
941
|
-
if (ngControl instanceof NgControl) {
|
|
942
|
-
return ngControl;
|
|
943
|
-
}
|
|
944
|
-
return null;
|
|
945
|
-
});
|
|
946
|
-
ngControlState = injectNgControlState({
|
|
947
|
-
explicitNgControl: this.explicitNgControl,
|
|
948
|
-
});
|
|
949
|
-
inError = this.ngControlState.inError;
|
|
950
|
-
errors = this.ngControlState.errors;
|
|
951
|
-
ariaErrorMessageId = computed(() => {
|
|
952
|
-
if (!this.formFieldId || !this.inError()) {
|
|
953
|
-
return null;
|
|
954
|
-
}
|
|
955
|
-
return `${this.formFieldId}-callout`;
|
|
956
|
-
});
|
|
957
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: GaFormControlDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
958
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.0.4", type: GaFormControlDirective, isStandalone: true, selector: "[gaFormControl]", inputs: { ngControlInput: { classPropertyName: "ngControlInput", publicName: "gaFormControl", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "attr.aria-invalid": "inError() ? \"true\" : null", "attr.aria-errormessage": "ariaErrorMessageId()" } }, exportAs: ["gaFormControl"], ngImport: i0 });
|
|
959
|
-
}
|
|
960
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: GaFormControlDirective, decorators: [{
|
|
961
|
-
type: Directive,
|
|
962
|
-
args: [{
|
|
963
|
-
exportAs: 'gaFormControl',
|
|
964
|
-
selector: '[gaFormControl]',
|
|
965
|
-
host: {
|
|
966
|
-
'[attr.aria-invalid]': 'inError() ? "true" : null',
|
|
967
|
-
'[attr.aria-errormessage]': 'ariaErrorMessageId()',
|
|
968
|
-
},
|
|
969
|
-
}]
|
|
931
|
+
class GaFormFieldConnector {
|
|
932
|
+
controlDisabled = signal(false);
|
|
933
|
+
controlId = signal(null);
|
|
934
|
+
labelId = signal(null);
|
|
935
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: GaFormFieldConnector, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
936
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: GaFormFieldConnector });
|
|
937
|
+
}
|
|
938
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: GaFormFieldConnector, decorators: [{
|
|
939
|
+
type: Injectable
|
|
970
940
|
}] });
|
|
971
941
|
|
|
972
942
|
let nextUniqueId$7 = 0;
|
|
973
943
|
class GaInputDirective {
|
|
974
944
|
uniqueId = `ga-input-${++nextUniqueId$7}`;
|
|
945
|
+
formFieldConnector = inject(GaFormFieldConnector, {
|
|
946
|
+
optional: true,
|
|
947
|
+
});
|
|
975
948
|
hasWrapper = inject(GaInputComponent, { optional: true });
|
|
976
949
|
implicitNgControlState = injectNgControlState();
|
|
977
950
|
invalidInput = input(null, {
|
|
@@ -992,10 +965,15 @@ class GaInputDirective {
|
|
|
992
965
|
disabled = computed(() => {
|
|
993
966
|
return this.disabledInput() ?? this.implicitNgControlState.disabled();
|
|
994
967
|
});
|
|
995
|
-
|
|
996
|
-
|
|
968
|
+
constructor() {
|
|
969
|
+
const formFieldConnector = this.formFieldConnector;
|
|
970
|
+
if (formFieldConnector) {
|
|
971
|
+
effect(() => formFieldConnector.controlDisabled.set(this.disabled()));
|
|
972
|
+
effect(() => formFieldConnector.controlId.set(this.id()));
|
|
973
|
+
}
|
|
974
|
+
}
|
|
997
975
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: GaInputDirective, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
998
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.0.4", type: GaInputDirective, isStandalone: true, selector: "[gaInput]", inputs: { invalidInput: { classPropertyName: "invalidInput", publicName: "invalid", isSignal: true, isRequired: false, transformFunction: null }, idInput: { classPropertyName: "idInput", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, disabledInput: { classPropertyName: "disabledInput", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "attr.id": "id()", "class.ga-input": "!hasWrapper", "class.ga-input--invalid": "!hasWrapper && invalid()" } },
|
|
976
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.0.4", type: GaInputDirective, isStandalone: true, selector: "[gaInput]", inputs: { invalidInput: { classPropertyName: "invalidInput", publicName: "invalid", isSignal: true, isRequired: false, transformFunction: null }, idInput: { classPropertyName: "idInput", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, disabledInput: { classPropertyName: "disabledInput", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "attr.id": "id()", "class.ga-input": "!hasWrapper", "class.ga-input--invalid": "!hasWrapper && invalid()" } }, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
999
977
|
}
|
|
1000
978
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: GaInputDirective, decorators: [{
|
|
1001
979
|
type: Component,
|
|
@@ -1009,9 +987,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
1009
987
|
'[class.ga-input]': '!hasWrapper',
|
|
1010
988
|
'[class.ga-input--invalid]': '!hasWrapper && invalid()',
|
|
1011
989
|
},
|
|
1012
|
-
providers: [{ provide: GA_FORM_CONTROL, useExisting: GaInputDirective }],
|
|
1013
990
|
}]
|
|
1014
|
-
}] });
|
|
991
|
+
}], ctorParameters: () => [] });
|
|
1015
992
|
|
|
1016
993
|
class GaInputComponent {
|
|
1017
994
|
gaInput = contentChild.required(GaInputDirective);
|
|
@@ -1044,6 +1021,46 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
1044
1021
|
}]
|
|
1045
1022
|
}] });
|
|
1046
1023
|
|
|
1024
|
+
const GA_FORM_FIELD_ID = new InjectionToken('ga-form-field-id');
|
|
1025
|
+
|
|
1026
|
+
class GaFormControlDirective {
|
|
1027
|
+
formFieldId = inject(GA_FORM_FIELD_ID, { optional: true });
|
|
1028
|
+
ngControlInput = input(undefined, {
|
|
1029
|
+
alias: 'gaFormControl',
|
|
1030
|
+
});
|
|
1031
|
+
explicitNgControl = computed(() => {
|
|
1032
|
+
const ngControl = this.ngControlInput();
|
|
1033
|
+
if (ngControl instanceof NgControl) {
|
|
1034
|
+
return ngControl;
|
|
1035
|
+
}
|
|
1036
|
+
return null;
|
|
1037
|
+
});
|
|
1038
|
+
ngControlState = injectNgControlState({
|
|
1039
|
+
explicitNgControl: this.explicitNgControl,
|
|
1040
|
+
});
|
|
1041
|
+
inError = this.ngControlState.inError;
|
|
1042
|
+
errors = this.ngControlState.errors;
|
|
1043
|
+
ariaErrorMessageId = computed(() => {
|
|
1044
|
+
if (!this.formFieldId || !this.inError()) {
|
|
1045
|
+
return null;
|
|
1046
|
+
}
|
|
1047
|
+
return `${this.formFieldId}-callout`;
|
|
1048
|
+
});
|
|
1049
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: GaFormControlDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
1050
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.0.4", type: GaFormControlDirective, isStandalone: true, selector: "[gaFormControl]", inputs: { ngControlInput: { classPropertyName: "ngControlInput", publicName: "gaFormControl", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "attr.aria-invalid": "inError() ? \"true\" : null", "attr.aria-errormessage": "ariaErrorMessageId()" } }, exportAs: ["gaFormControl"], ngImport: i0 });
|
|
1051
|
+
}
|
|
1052
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: GaFormControlDirective, decorators: [{
|
|
1053
|
+
type: Directive,
|
|
1054
|
+
args: [{
|
|
1055
|
+
exportAs: 'gaFormControl',
|
|
1056
|
+
selector: '[gaFormControl]',
|
|
1057
|
+
host: {
|
|
1058
|
+
'[attr.aria-invalid]': 'inError() ? "true" : null',
|
|
1059
|
+
'[attr.aria-errormessage]': 'ariaErrorMessageId()',
|
|
1060
|
+
},
|
|
1061
|
+
}]
|
|
1062
|
+
}] });
|
|
1063
|
+
|
|
1047
1064
|
class GaFieldCalloutComponent {
|
|
1048
1065
|
icons = { OctagonAlert };
|
|
1049
1066
|
formField = inject(GaFormFieldComponent);
|
|
@@ -1121,9 +1138,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
1121
1138
|
let nextUniqueId$6 = 0;
|
|
1122
1139
|
class GaFormFieldComponent {
|
|
1123
1140
|
uniqueId = inject(GA_FORM_FIELD_ID);
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1141
|
+
formFieldConnector = inject(GaFormFieldConnector);
|
|
1142
|
+
disabledInput = input(undefined, {
|
|
1143
|
+
alias: 'disabled',
|
|
1144
|
+
transform: booleanAttribute,
|
|
1145
|
+
});
|
|
1146
|
+
disabled = computed(() => {
|
|
1147
|
+
return this.disabledInput() ?? this.formFieldConnector.controlDisabled();
|
|
1127
1148
|
});
|
|
1128
1149
|
formControl = contentChild(GaFormControlDirective, {
|
|
1129
1150
|
descendants: true,
|
|
@@ -1131,12 +1152,13 @@ class GaFormFieldComponent {
|
|
|
1131
1152
|
fieldInfo = contentChild(GaFieldInfoComponent);
|
|
1132
1153
|
fieldErrors = contentChildren(GaFieldErrorDirective);
|
|
1133
1154
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: GaFormFieldComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1134
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "20.0.4", type: GaFormFieldComponent, isStandalone: true, selector: "ga-form-field", inputs: {
|
|
1155
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "20.0.4", type: GaFormFieldComponent, isStandalone: true, selector: "ga-form-field", inputs: { disabledInput: { classPropertyName: "disabledInput", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null } }, host: { classAttribute: "ga-form-field" }, providers: [
|
|
1135
1156
|
{
|
|
1136
1157
|
provide: GA_FORM_FIELD_ID,
|
|
1137
1158
|
useFactory: () => `ga-form-field-${++nextUniqueId$6}`,
|
|
1138
1159
|
},
|
|
1139
|
-
|
|
1160
|
+
GaFormFieldConnector,
|
|
1161
|
+
], queries: [{ propertyName: "formControl", first: true, predicate: GaFormControlDirective, descendants: true, isSignal: true }, { propertyName: "fieldInfo", first: true, predicate: GaFieldInfoComponent, descendants: true, isSignal: true }, { propertyName: "fieldErrors", predicate: GaFieldErrorDirective, isSignal: true }], exportAs: ["gaFormField"], ngImport: i0, template: "<ng-content select=\"ga-label\" />\n<ng-content />\n<ga-field-callout />\n", dependencies: [{ kind: "component", type: GaFieldCalloutComponent, selector: "ga-field-callout" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1140
1162
|
}
|
|
1141
1163
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: GaFormFieldComponent, decorators: [{
|
|
1142
1164
|
type: Component,
|
|
@@ -1147,6 +1169,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
1147
1169
|
provide: GA_FORM_FIELD_ID,
|
|
1148
1170
|
useFactory: () => `ga-form-field-${++nextUniqueId$6}`,
|
|
1149
1171
|
},
|
|
1172
|
+
GaFormFieldConnector,
|
|
1150
1173
|
], template: "<ng-content select=\"ga-label\" />\n<ng-content />\n<ga-field-callout />\n" }]
|
|
1151
1174
|
}] });
|
|
1152
1175
|
|
|
@@ -1542,24 +1565,37 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
1542
1565
|
class GaFieldLabelComponent {
|
|
1543
1566
|
document = inject(DOCUMENT);
|
|
1544
1567
|
formField = inject(GaFormFieldComponent);
|
|
1568
|
+
formFieldConnector = inject(GaFormFieldConnector, {
|
|
1569
|
+
optional: true,
|
|
1570
|
+
});
|
|
1545
1571
|
uniqueId = this.formField.uniqueId + '-label';
|
|
1546
1572
|
for = input();
|
|
1547
1573
|
definition = input(null);
|
|
1548
1574
|
state = input();
|
|
1549
|
-
|
|
1550
|
-
|
|
1575
|
+
idInput = input(undefined, { alias: 'id' });
|
|
1576
|
+
id = computed(() => {
|
|
1577
|
+
return this.idInput() ?? this.uniqueId;
|
|
1551
1578
|
});
|
|
1552
|
-
|
|
1553
|
-
return
|
|
1554
|
-
!!this.formField.implicitFormControl()?._formControlDisabled());
|
|
1579
|
+
controlId = computed(() => {
|
|
1580
|
+
return this.for() ?? this.formFieldConnector?.controlId();
|
|
1555
1581
|
});
|
|
1556
1582
|
controlElement = computed(() => {
|
|
1557
|
-
const
|
|
1583
|
+
const controlId = this.controlId();
|
|
1584
|
+
if (!controlId) {
|
|
1585
|
+
return null;
|
|
1586
|
+
}
|
|
1587
|
+
const control = this.document.querySelector(`#${CSS.escape(controlId)}`);
|
|
1558
1588
|
if (control instanceof HTMLElement) {
|
|
1559
1589
|
return control;
|
|
1560
1590
|
}
|
|
1561
1591
|
return null;
|
|
1562
1592
|
});
|
|
1593
|
+
constructor() {
|
|
1594
|
+
const formFieldConnector = this.formFieldConnector;
|
|
1595
|
+
if (formFieldConnector) {
|
|
1596
|
+
effect(() => formFieldConnector.labelId.set(this.id()));
|
|
1597
|
+
}
|
|
1598
|
+
}
|
|
1563
1599
|
focusControl() {
|
|
1564
1600
|
const control = this.controlElement();
|
|
1565
1601
|
// only focus custom elements as native elements already
|
|
@@ -1569,25 +1605,24 @@ class GaFieldLabelComponent {
|
|
|
1569
1605
|
}
|
|
1570
1606
|
}
|
|
1571
1607
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: GaFieldLabelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1572
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.4", type: GaFieldLabelComponent, isStandalone: true, selector: "ga-label", inputs: { for: { classPropertyName: "for", publicName: "for", isSignal: true, isRequired: false, transformFunction: null }, definition: { classPropertyName: "definition", publicName: "definition", isSignal: true, isRequired: false, transformFunction: null }, state: { classPropertyName: "state", publicName: "state", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "<!-- eslint-disable-next-line @angular-eslint/template/click-events-have-key-events -->\n<label\n [attr.id]=\"
|
|
1608
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.4", type: GaFieldLabelComponent, isStandalone: true, selector: "ga-label", inputs: { for: { classPropertyName: "for", publicName: "for", isSignal: true, isRequired: false, transformFunction: null }, definition: { classPropertyName: "definition", publicName: "definition", isSignal: true, isRequired: false, transformFunction: null }, state: { classPropertyName: "state", publicName: "state", isSignal: true, isRequired: false, transformFunction: null }, idInput: { classPropertyName: "idInput", publicName: "id", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "attr.id": "null" } }, ngImport: i0, template: "<!-- eslint-disable-next-line @angular-eslint/template/click-events-have-key-events -->\n<label\n [attr.id]=\"id()\"\n [attr.for]=\"controlId()\"\n class=\"ga-form-field__label\"\n [class.ga-form-field__label--defined]=\"!!definition()\"\n [class.ga-form-field__label--disabled]=\"formField.disabled()\"\n (click)=\"focusControl()\"\n [attr.tabindex]=\"definition() ? 0 : -1\"\n>\n <span\n class=\"ga-form-field__label-text\"\n [gaTooltip]=\"definition()\"\n gaTooltipPlacement=\"top-start\"\n ><ng-content\n /></span>\n @if (state()) {\n <span class=\"ga-form-field__label-state\">{{ state() }}</span>\n }\n</label>\n", dependencies: [{ kind: "ngmodule", type: GaTooltipModule }, { kind: "directive", type: GaTooltipDirective, selector: "[gaTooltip]", inputs: ["gaTooltip", "gaTooltipDisabled", "gaTooltipControlMode", "gaTooltipShowControlMode", "gaTooltipHideControlMode", "gaTooltipOffsetSize", "gaTooltipPlacement"], exportAs: ["gaTooltip"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1573
1609
|
}
|
|
1574
1610
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: GaFieldLabelComponent, decorators: [{
|
|
1575
1611
|
type: Component,
|
|
1576
|
-
args: [{ selector: 'ga-label', imports: [GaTooltipModule], changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1577
|
-
|
|
1612
|
+
args: [{ selector: 'ga-label', imports: [GaTooltipModule], changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
1613
|
+
'[attr.id]': 'null',
|
|
1614
|
+
}, template: "<!-- eslint-disable-next-line @angular-eslint/template/click-events-have-key-events -->\n<label\n [attr.id]=\"id()\"\n [attr.for]=\"controlId()\"\n class=\"ga-form-field__label\"\n [class.ga-form-field__label--defined]=\"!!definition()\"\n [class.ga-form-field__label--disabled]=\"formField.disabled()\"\n (click)=\"focusControl()\"\n [attr.tabindex]=\"definition() ? 0 : -1\"\n>\n <span\n class=\"ga-form-field__label-text\"\n [gaTooltip]=\"definition()\"\n gaTooltipPlacement=\"top-start\"\n ><ng-content\n /></span>\n @if (state()) {\n <span class=\"ga-form-field__label-state\">{{ state() }}</span>\n }\n</label>\n" }]
|
|
1615
|
+
}], ctorParameters: () => [] });
|
|
1578
1616
|
|
|
1579
1617
|
class GaLabelledByFormFieldDirective {
|
|
1580
|
-
|
|
1618
|
+
formFieldConnector = inject(GaFormFieldConnector, {
|
|
1581
1619
|
optional: true,
|
|
1582
1620
|
});
|
|
1583
1621
|
ariaLabelledBy = input(null, {
|
|
1584
1622
|
alias: 'aria-labelledby',
|
|
1585
1623
|
});
|
|
1586
1624
|
labelledBy = computed(() => {
|
|
1587
|
-
|
|
1588
|
-
? this.formField.uniqueId + '-label'
|
|
1589
|
-
: null;
|
|
1590
|
-
return this.ariaLabelledBy() ?? formFieldLabelledBy;
|
|
1625
|
+
return this.ariaLabelledBy() ?? this.formFieldConnector?.labelId();
|
|
1591
1626
|
});
|
|
1592
1627
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: GaLabelledByFormFieldDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
1593
1628
|
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.0.4", type: GaLabelledByFormFieldDirective, isStandalone: true, selector: "[gaLabelledByFormField]", inputs: { ariaLabelledBy: { classPropertyName: "ariaLabelledBy", publicName: "aria-labelledby", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "attr.aria-labelledby": "labelledBy()" } }, ngImport: i0 });
|
|
@@ -2720,6 +2755,9 @@ class GaSelectComponent {
|
|
|
2720
2755
|
];
|
|
2721
2756
|
injector = inject(Injector);
|
|
2722
2757
|
elementRef = inject((ElementRef));
|
|
2758
|
+
formFieldConnector = inject(GaFormFieldConnector, {
|
|
2759
|
+
optional: true,
|
|
2760
|
+
});
|
|
2723
2761
|
i18n = inject(GaSelectI18n);
|
|
2724
2762
|
overlayOrigin = inject(CdkOverlayOrigin);
|
|
2725
2763
|
repositionScrollStrategy = createRepositionScrollStrategy(this.injector);
|
|
@@ -2786,12 +2824,6 @@ class GaSelectComponent {
|
|
|
2786
2824
|
invalid = computed(() => {
|
|
2787
2825
|
return this.invalidInput() ?? this.implicitNgControlState.inError();
|
|
2788
2826
|
});
|
|
2789
|
-
_formControlId = computed(() => {
|
|
2790
|
-
// NOTE: The custom select cannot be connected to the label through `for` and `id` attributes,
|
|
2791
|
-
// therefore `null` is returned here.
|
|
2792
|
-
return null;
|
|
2793
|
-
});
|
|
2794
|
-
_formControlDisabled = computed(() => this.disabled());
|
|
2795
2827
|
constructor() {
|
|
2796
2828
|
effect(() => {
|
|
2797
2829
|
// if the select became disabled while open, close it
|
|
@@ -2799,6 +2831,10 @@ class GaSelectComponent {
|
|
|
2799
2831
|
this.close();
|
|
2800
2832
|
}
|
|
2801
2833
|
});
|
|
2834
|
+
const formFieldConnector = this.formFieldConnector;
|
|
2835
|
+
if (formFieldConnector) {
|
|
2836
|
+
effect(() => formFieldConnector.controlDisabled.set(this.disabled()));
|
|
2837
|
+
}
|
|
2802
2838
|
}
|
|
2803
2839
|
ngAfterContentInit() {
|
|
2804
2840
|
effect(() => {
|
|
@@ -2893,6 +2929,10 @@ class GaSelectComponent {
|
|
|
2893
2929
|
if (!this.clearable() || !this.searchable()) {
|
|
2894
2930
|
return;
|
|
2895
2931
|
}
|
|
2932
|
+
if (this.elementRef.nativeElement !== document.activeElement &&
|
|
2933
|
+
this.inputSearch()?.nativeElement !== document.activeElement) {
|
|
2934
|
+
this._onTouched?.();
|
|
2935
|
+
}
|
|
2896
2936
|
this.value.set(null);
|
|
2897
2937
|
this._onModelChanged?.(null);
|
|
2898
2938
|
this.autoClose();
|
|
@@ -2986,11 +3026,7 @@ class GaSelectComponent {
|
|
|
2986
3026
|
useExisting: forwardRef(() => GaSelectComponent),
|
|
2987
3027
|
multi: true,
|
|
2988
3028
|
},
|
|
2989
|
-
|
|
2990
|
-
provide: GA_FORM_CONTROL,
|
|
2991
|
-
useExisting: forwardRef(() => GaSelectComponent),
|
|
2992
|
-
},
|
|
2993
|
-
], queries: [{ propertyName: "gaOptions", predicate: GaOptionComponent, descendants: true, read: GaOptionComponent, isSignal: true }, { propertyName: "cdkListbox", first: true, predicate: CdkListbox, descendants: true, isSignal: true }, { propertyName: "customSelectValue", first: true, predicate: GaSelectValueComponent, descendants: true, isSignal: true }], viewQueries: [{ propertyName: "inputSearch", first: true, predicate: ["inputSearch"], descendants: true, isSignal: true }, { propertyName: "content", first: true, predicate: ["ngContent"], descendants: true, read: ElementRef, isSignal: true }], hostDirectives: [{ directive: i1$5.CdkOverlayOrigin }, { directive: GaLabelledByFormFieldDirective, inputs: ["aria-labelledby", "aria-labelledby"] }], ngImport: i0, template: "@if (leftIcon()) {\n <ga-icon [icon]=\"leftIcon()!\" />\n}\n\n<div class=\"ga-select__main-area\">\n @if (hasValue() && (!textValue() || multiple())) {\n @if (customSelectValue()) {\n <div class=\"ga-select__value\">\n <ng-content select=\"ga-select-value\" />\n </div>\n } @else {\n <ga-select-default-value />\n }\n } @else if (!searchable()) {\n <div class=\"ga-select__placeholder\">\n {{ placeholder() }}\n </div>\n }\n\n @if (searchable()) {\n <input\n #inputSearch\n type=\"text\"\n class=\"ga-select__input\"\n aria-autocomplete=\"list\"\n [value]=\"textValue()\"\n (input)=\"open(); textValue.set(inputSearch.value)\"\n (click)=\"open(); $event.stopPropagation()\"\n [attr.aria-expanded]=\"isOpen()\"\n [attr.aria-controls]=\"cdkListbox().id\"\n [attr.aria-activedescendant]=\"activeDescendantId()\"\n [placeholder]=\"hasValue() ? '' : placeholder()\"\n (keydown)=\"onInputKeyDown($event)\"\n tabindex=\"-1\"\n />\n }\n</div>\n\n<div class=\"ga-select__suffix\">\n @if (clearable() && hasValue()) {\n <button\n type=\"button\"\n tabindex=\"-1\"\n (click)=\"clearValue(); $event.stopPropagation()\"\n [attr.aria-label]=\"clearableLabel() ?? i18n.clearLabel\"\n style=\"font-size: 0\"\n >\n <ga-icon [icon]=\"icons.CircleX\" size=\"16\" />\n </button>\n }\n\n <ga-icon [icon]=\"menuStatusIcon()\" class=\"ga-select__action-icon\" />\n</div>\n\n<ng-template\n cdkConnectedOverlay\n cdkConnectedOverlayLockPosition\n [cdkConnectedOverlayOrigin]=\"overlayOrigin\"\n [cdkConnectedOverlayOpen]=\"isOpen()\"\n [cdkConnectedOverlayPositions]=\"positions\"\n [cdkConnectedOverlayScrollStrategy]=\"repositionScrollStrategy\"\n (overlayOutsideClick)=\"close()\"\n (attach)=\"onOverlayAttach()\"\n (detach)=\"onOverlayDetach()\"\n (overlayKeydown)=\"onOverlayKeydown($event)\"\n>\n <ng-content select=\"ga-select-dropdown\" />\n</ng-template>\n", dependencies: [{ kind: "ngmodule", type: GaIconModule }, { kind: "component", type: GaIconComponent, selector: "ga-icon", inputs: ["icon", "size", "color", "strokeWidth"] }, { kind: "ngmodule", type: GaButtonModule }, { kind: "ngmodule", type: OverlayModule }, { kind: "directive", type: i1$5.CdkConnectedOverlay, selector: "[cdk-connected-overlay], [connected-overlay], [cdkConnectedOverlay]", inputs: ["cdkConnectedOverlayOrigin", "cdkConnectedOverlayPositions", "cdkConnectedOverlayPositionStrategy", "cdkConnectedOverlayOffsetX", "cdkConnectedOverlayOffsetY", "cdkConnectedOverlayWidth", "cdkConnectedOverlayHeight", "cdkConnectedOverlayMinWidth", "cdkConnectedOverlayMinHeight", "cdkConnectedOverlayBackdropClass", "cdkConnectedOverlayPanelClass", "cdkConnectedOverlayViewportMargin", "cdkConnectedOverlayScrollStrategy", "cdkConnectedOverlayOpen", "cdkConnectedOverlayDisableClose", "cdkConnectedOverlayTransformOriginOn", "cdkConnectedOverlayHasBackdrop", "cdkConnectedOverlayLockPosition", "cdkConnectedOverlayFlexibleDimensions", "cdkConnectedOverlayGrowAfterOpen", "cdkConnectedOverlayPush", "cdkConnectedOverlayDisposeOnNavigation"], outputs: ["backdropClick", "positionChange", "attach", "detach", "overlayKeydown", "overlayOutsideClick"], exportAs: ["cdkConnectedOverlay"] }, { kind: "component", type: GaSelectDefaultValueComponent, selector: "ga-select-default-value" }] });
|
|
3029
|
+
], queries: [{ propertyName: "gaOptions", predicate: GaOptionComponent, descendants: true, read: GaOptionComponent, isSignal: true }, { propertyName: "cdkListbox", first: true, predicate: CdkListbox, descendants: true, isSignal: true }, { propertyName: "customSelectValue", first: true, predicate: GaSelectValueComponent, descendants: true, isSignal: true }], viewQueries: [{ propertyName: "inputSearch", first: true, predicate: ["inputSearch"], descendants: true, isSignal: true }, { propertyName: "content", first: true, predicate: ["ngContent"], descendants: true, read: ElementRef, isSignal: true }], hostDirectives: [{ directive: i1$5.CdkOverlayOrigin }, { directive: GaLabelledByFormFieldDirective, inputs: ["aria-labelledby", "aria-labelledby"] }], ngImport: i0, template: "@if (leftIcon()) {\n <ga-icon [icon]=\"leftIcon()!\" />\n}\n\n<div class=\"ga-select__main-area\">\n @if (hasValue() && (!textValue() || multiple())) {\n @if (customSelectValue()) {\n <div class=\"ga-select__value\">\n <ng-content select=\"ga-select-value\" />\n </div>\n } @else {\n <ga-select-default-value />\n }\n } @else if (!searchable()) {\n <div class=\"ga-select__placeholder\">\n {{ placeholder() }}\n </div>\n }\n\n @if (searchable()) {\n <input\n #inputSearch\n type=\"text\"\n class=\"ga-select__input\"\n aria-autocomplete=\"list\"\n [value]=\"textValue()\"\n (input)=\"open(); textValue.set(inputSearch.value)\"\n (click)=\"open(); $event.stopPropagation()\"\n [attr.aria-expanded]=\"isOpen()\"\n [attr.aria-controls]=\"cdkListbox().id\"\n [attr.aria-activedescendant]=\"activeDescendantId()\"\n [placeholder]=\"hasValue() ? '' : placeholder()\"\n (keydown)=\"onInputKeyDown($event)\"\n tabindex=\"-1\"\n [disabled]=\"disabled()\"\n />\n }\n</div>\n\n<div class=\"ga-select__suffix\">\n @if (clearable() && hasValue()) {\n <button\n type=\"button\"\n tabindex=\"-1\"\n (click)=\"clearValue(); $event.stopPropagation()\"\n [attr.aria-label]=\"clearableLabel() ?? i18n.clearLabel\"\n style=\"font-size: 0\"\n >\n <ga-icon [icon]=\"icons.CircleX\" size=\"16\" />\n </button>\n }\n\n <ga-icon [icon]=\"menuStatusIcon()\" class=\"ga-select__action-icon\" />\n</div>\n\n<ng-template\n cdkConnectedOverlay\n cdkConnectedOverlayLockPosition\n [cdkConnectedOverlayOrigin]=\"overlayOrigin\"\n [cdkConnectedOverlayOpen]=\"isOpen()\"\n [cdkConnectedOverlayPositions]=\"positions\"\n [cdkConnectedOverlayScrollStrategy]=\"repositionScrollStrategy\"\n (overlayOutsideClick)=\"close()\"\n (attach)=\"onOverlayAttach()\"\n (detach)=\"onOverlayDetach()\"\n (overlayKeydown)=\"onOverlayKeydown($event)\"\n>\n <ng-content select=\"ga-select-dropdown\" />\n</ng-template>\n", dependencies: [{ kind: "ngmodule", type: GaIconModule }, { kind: "component", type: GaIconComponent, selector: "ga-icon", inputs: ["icon", "size", "color", "strokeWidth"] }, { kind: "ngmodule", type: GaButtonModule }, { kind: "ngmodule", type: OverlayModule }, { kind: "directive", type: i1$5.CdkConnectedOverlay, selector: "[cdk-connected-overlay], [connected-overlay], [cdkConnectedOverlay]", inputs: ["cdkConnectedOverlayOrigin", "cdkConnectedOverlayPositions", "cdkConnectedOverlayPositionStrategy", "cdkConnectedOverlayOffsetX", "cdkConnectedOverlayOffsetY", "cdkConnectedOverlayWidth", "cdkConnectedOverlayHeight", "cdkConnectedOverlayMinWidth", "cdkConnectedOverlayMinHeight", "cdkConnectedOverlayBackdropClass", "cdkConnectedOverlayPanelClass", "cdkConnectedOverlayViewportMargin", "cdkConnectedOverlayScrollStrategy", "cdkConnectedOverlayOpen", "cdkConnectedOverlayDisableClose", "cdkConnectedOverlayTransformOriginOn", "cdkConnectedOverlayHasBackdrop", "cdkConnectedOverlayLockPosition", "cdkConnectedOverlayFlexibleDimensions", "cdkConnectedOverlayGrowAfterOpen", "cdkConnectedOverlayPush", "cdkConnectedOverlayDisposeOnNavigation"], outputs: ["backdropClick", "positionChange", "attach", "detach", "overlayKeydown", "overlayOutsideClick"], exportAs: ["cdkConnectedOverlay"] }, { kind: "component", type: GaSelectDefaultValueComponent, selector: "ga-select-default-value" }] });
|
|
2994
3030
|
}
|
|
2995
3031
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: GaSelectComponent, decorators: [{
|
|
2996
3032
|
type: Component,
|
|
@@ -3011,10 +3047,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
3011
3047
|
useExisting: forwardRef(() => GaSelectComponent),
|
|
3012
3048
|
multi: true,
|
|
3013
3049
|
},
|
|
3014
|
-
{
|
|
3015
|
-
provide: GA_FORM_CONTROL,
|
|
3016
|
-
useExisting: forwardRef(() => GaSelectComponent),
|
|
3017
|
-
},
|
|
3018
3050
|
], host: {
|
|
3019
3051
|
role: 'combobox',
|
|
3020
3052
|
'[attr.id]': 'id()',
|
|
@@ -3037,7 +3069,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
3037
3069
|
'(keydown.space)': 'open(); $event.preventDefault()',
|
|
3038
3070
|
'(keydown.enter)': 'open(); $event.preventDefault()',
|
|
3039
3071
|
'(keydown.backspace)': 'clearValue(); $event.preventDefault()',
|
|
3040
|
-
}, template: "@if (leftIcon()) {\n <ga-icon [icon]=\"leftIcon()!\" />\n}\n\n<div class=\"ga-select__main-area\">\n @if (hasValue() && (!textValue() || multiple())) {\n @if (customSelectValue()) {\n <div class=\"ga-select__value\">\n <ng-content select=\"ga-select-value\" />\n </div>\n } @else {\n <ga-select-default-value />\n }\n } @else if (!searchable()) {\n <div class=\"ga-select__placeholder\">\n {{ placeholder() }}\n </div>\n }\n\n @if (searchable()) {\n <input\n #inputSearch\n type=\"text\"\n class=\"ga-select__input\"\n aria-autocomplete=\"list\"\n [value]=\"textValue()\"\n (input)=\"open(); textValue.set(inputSearch.value)\"\n (click)=\"open(); $event.stopPropagation()\"\n [attr.aria-expanded]=\"isOpen()\"\n [attr.aria-controls]=\"cdkListbox().id\"\n [attr.aria-activedescendant]=\"activeDescendantId()\"\n [placeholder]=\"hasValue() ? '' : placeholder()\"\n (keydown)=\"onInputKeyDown($event)\"\n tabindex=\"-1\"\n />\n }\n</div>\n\n<div class=\"ga-select__suffix\">\n @if (clearable() && hasValue()) {\n <button\n type=\"button\"\n tabindex=\"-1\"\n (click)=\"clearValue(); $event.stopPropagation()\"\n [attr.aria-label]=\"clearableLabel() ?? i18n.clearLabel\"\n style=\"font-size: 0\"\n >\n <ga-icon [icon]=\"icons.CircleX\" size=\"16\" />\n </button>\n }\n\n <ga-icon [icon]=\"menuStatusIcon()\" class=\"ga-select__action-icon\" />\n</div>\n\n<ng-template\n cdkConnectedOverlay\n cdkConnectedOverlayLockPosition\n [cdkConnectedOverlayOrigin]=\"overlayOrigin\"\n [cdkConnectedOverlayOpen]=\"isOpen()\"\n [cdkConnectedOverlayPositions]=\"positions\"\n [cdkConnectedOverlayScrollStrategy]=\"repositionScrollStrategy\"\n (overlayOutsideClick)=\"close()\"\n (attach)=\"onOverlayAttach()\"\n (detach)=\"onOverlayDetach()\"\n (overlayKeydown)=\"onOverlayKeydown($event)\"\n>\n <ng-content select=\"ga-select-dropdown\" />\n</ng-template>\n" }]
|
|
3072
|
+
}, template: "@if (leftIcon()) {\n <ga-icon [icon]=\"leftIcon()!\" />\n}\n\n<div class=\"ga-select__main-area\">\n @if (hasValue() && (!textValue() || multiple())) {\n @if (customSelectValue()) {\n <div class=\"ga-select__value\">\n <ng-content select=\"ga-select-value\" />\n </div>\n } @else {\n <ga-select-default-value />\n }\n } @else if (!searchable()) {\n <div class=\"ga-select__placeholder\">\n {{ placeholder() }}\n </div>\n }\n\n @if (searchable()) {\n <input\n #inputSearch\n type=\"text\"\n class=\"ga-select__input\"\n aria-autocomplete=\"list\"\n [value]=\"textValue()\"\n (input)=\"open(); textValue.set(inputSearch.value)\"\n (click)=\"open(); $event.stopPropagation()\"\n [attr.aria-expanded]=\"isOpen()\"\n [attr.aria-controls]=\"cdkListbox().id\"\n [attr.aria-activedescendant]=\"activeDescendantId()\"\n [placeholder]=\"hasValue() ? '' : placeholder()\"\n (keydown)=\"onInputKeyDown($event)\"\n tabindex=\"-1\"\n [disabled]=\"disabled()\"\n />\n }\n</div>\n\n<div class=\"ga-select__suffix\">\n @if (clearable() && hasValue()) {\n <button\n type=\"button\"\n tabindex=\"-1\"\n (click)=\"clearValue(); $event.stopPropagation()\"\n [attr.aria-label]=\"clearableLabel() ?? i18n.clearLabel\"\n style=\"font-size: 0\"\n >\n <ga-icon [icon]=\"icons.CircleX\" size=\"16\" />\n </button>\n }\n\n <ga-icon [icon]=\"menuStatusIcon()\" class=\"ga-select__action-icon\" />\n</div>\n\n<ng-template\n cdkConnectedOverlay\n cdkConnectedOverlayLockPosition\n [cdkConnectedOverlayOrigin]=\"overlayOrigin\"\n [cdkConnectedOverlayOpen]=\"isOpen()\"\n [cdkConnectedOverlayPositions]=\"positions\"\n [cdkConnectedOverlayScrollStrategy]=\"repositionScrollStrategy\"\n (overlayOutsideClick)=\"close()\"\n (attach)=\"onOverlayAttach()\"\n (detach)=\"onOverlayDetach()\"\n (overlayKeydown)=\"onOverlayKeydown($event)\"\n>\n <ng-content select=\"ga-select-dropdown\" />\n</ng-template>\n" }]
|
|
3041
3073
|
}], ctorParameters: () => [] });
|
|
3042
3074
|
|
|
3043
3075
|
class GaOptgroupComponent {
|
|
@@ -3374,8 +3406,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
3374
3406
|
let nextUniqueId = 0;
|
|
3375
3407
|
class GaTextAreaDirective {
|
|
3376
3408
|
implicitNgControlState = injectNgControlState();
|
|
3377
|
-
|
|
3378
|
-
|
|
3409
|
+
formFieldConnector = inject(GaFormFieldConnector, {
|
|
3410
|
+
optional: true,
|
|
3411
|
+
});
|
|
3412
|
+
uniqueId = `ga-text-area-${++nextUniqueId}`;
|
|
3413
|
+
idInput = input(undefined, { alias: 'id' });
|
|
3379
3414
|
disabledInput = input(false, {
|
|
3380
3415
|
alias: 'disabled',
|
|
3381
3416
|
transform: booleanAttribute,
|
|
@@ -3386,11 +3421,16 @@ class GaTextAreaDirective {
|
|
|
3386
3421
|
});
|
|
3387
3422
|
disabled = computed(() => this.disabledInput() ?? this.implicitNgControlState.disabled());
|
|
3388
3423
|
invalid = computed(() => this.invalidInput() ?? this.implicitNgControlState.inError());
|
|
3389
|
-
|
|
3390
|
-
|
|
3391
|
-
|
|
3424
|
+
id = computed(() => this.idInput() ?? this.uniqueId);
|
|
3425
|
+
constructor() {
|
|
3426
|
+
const formFieldConnector = this.formFieldConnector;
|
|
3427
|
+
if (formFieldConnector) {
|
|
3428
|
+
effect(() => formFieldConnector.controlDisabled.set(this.disabled()));
|
|
3429
|
+
effect(() => formFieldConnector.controlId.set(this.id()));
|
|
3430
|
+
}
|
|
3431
|
+
}
|
|
3392
3432
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: GaTextAreaDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
3393
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.0.4", type: GaTextAreaDirective, isStandalone: true, selector: "[gaTextArea]", inputs: {
|
|
3433
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.0.4", type: GaTextAreaDirective, isStandalone: true, selector: "[gaTextArea]", inputs: { idInput: { classPropertyName: "idInput", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, disabledInput: { classPropertyName: "disabledInput", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, invalidInput: { classPropertyName: "invalidInput", publicName: "invalid", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "class.ga-text-area--invalid": "invalid()", "attr.id": "id()" }, classAttribute: "ga-text-area" }, ngImport: i0 });
|
|
3394
3434
|
}
|
|
3395
3435
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: GaTextAreaDirective, decorators: [{
|
|
3396
3436
|
type: Directive,
|
|
@@ -3399,10 +3439,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
3399
3439
|
host: {
|
|
3400
3440
|
class: 'ga-text-area',
|
|
3401
3441
|
'[class.ga-text-area--invalid]': 'invalid()',
|
|
3402
|
-
'[attr.id]': '
|
|
3442
|
+
'[attr.id]': 'id()',
|
|
3403
3443
|
},
|
|
3404
3444
|
}]
|
|
3405
|
-
}] });
|
|
3445
|
+
}], ctorParameters: () => [] });
|
|
3406
3446
|
|
|
3407
3447
|
class GaTextAreaModule {
|
|
3408
3448
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: GaTextAreaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
@@ -3425,5 +3465,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
3425
3465
|
* Generated bundle index. Do not edit.
|
|
3426
3466
|
*/
|
|
3427
3467
|
|
|
3428
|
-
export { CHECKBOX_CONTROL_VALUE_ACCESSOR, DEFAULT_MODAL_OPTIONS, GA_ALERT_I18N_FACTORY, GA_BASE_FONT_SIZE, GA_BUTTON_I18N_FACTORY, GA_CHECKBOX_REQUIRED_VALIDATOR,
|
|
3468
|
+
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_ADAPTER, GA_ICON_DEFAULT_SIZE, GA_MODAL_DATA, GA_MODAL_I18N_FACTORY, GA_SELECT_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, GaFieldErrorDirective, GaFieldInfoComponent, GaFieldLabelComponent, GaFormControlDirective, GaFormControlErrorsDirective, GaFormFieldComponent, GaFormFieldConnector, 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, GaSelectI18n, GaSelectI18nDefault, GaSelectModule, GaSelectRequiredValidator, GaSelectValueComponent, GaSpinnerComponent, GaSpinnerModule, GaSwitchComponent, GaSwitchModule, GaTextAreaDirective, GaTextAreaModule, GaTooltipComponent, GaTooltipDirective, GaTooltipModule, RADIO_CONTROL_VALUE_ACCESSOR, SWITCH_CONTROL_VALUE_ACCESSOR, injectNgControlState, provideGaAlertI18n, provideGaBaseFontSize, provideGaButtonI18n, provideGaModalI18n, provideGaModalOptions, provideGaSelectI18n };
|
|
3429
3469
|
//# sourceMappingURL=vsn-ux-ngx-gaia.mjs.map
|