@vsn-ux/ngx-gaia 0.9.12 → 0.9.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/DOCS.md +422 -15
- package/fesm2022/vsn-ux-ngx-gaia.mjs +966 -26
- package/fesm2022/vsn-ux-ngx-gaia.mjs.map +1 -1
- package/index.d.ts +236 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1085,7 +1085,7 @@ declare abstract class GaSelectI18n {
|
|
|
1085
1085
|
declare class GaSelectI18nDefault extends GaSelectI18n {
|
|
1086
1086
|
/** A label for the clear button */
|
|
1087
1087
|
clearLabel: string;
|
|
1088
|
-
/** A default label for the search input
|
|
1088
|
+
/** A default label for the search input */
|
|
1089
1089
|
defaultSearchInputLabel: string;
|
|
1090
1090
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaSelectI18nDefault, never>;
|
|
1091
1091
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<GaSelectI18nDefault>;
|
|
@@ -1119,6 +1119,7 @@ declare class GaSelectComponent implements ControlValueAccessor, AfterContentIni
|
|
|
1119
1119
|
private shouldRecoverFocus;
|
|
1120
1120
|
readonly value: _angular_core.ModelSignal<any>;
|
|
1121
1121
|
readonly placeholder: _angular_core.InputSignal<string>;
|
|
1122
|
+
readonly searchInputLabel: _angular_core.InputSignal<string | null>;
|
|
1122
1123
|
readonly disabledInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1123
1124
|
readonly invalidInput: _angular_core.InputSignalWithTransform<boolean | null, unknown>;
|
|
1124
1125
|
readonly multiple: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
@@ -1172,7 +1173,7 @@ declare class GaSelectComponent implements ControlValueAccessor, AfterContentIni
|
|
|
1172
1173
|
private setItemActive;
|
|
1173
1174
|
private scrollActiveOptionIntoView;
|
|
1174
1175
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaSelectComponent, never>;
|
|
1175
|
-
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; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "clearableLabel": { "alias": "clearableLabel"; "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", "gaDropdown", "customSelectValue"], ["ga-select-value", "ga-select-dropdown"], true, [{ directive: typeof _angular_cdk_overlay.CdkOverlayOrigin; inputs: {}; outputs: {}; }, { directive: typeof GaLabelledByFormFieldDirective; inputs: { "aria-labelledby": "aria-labelledby"; }; outputs: {}; }]>;
|
|
1176
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaSelectComponent, "ga-select", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "searchInputLabel": { "alias": "searchInputLabel"; "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; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "clearableLabel": { "alias": "clearableLabel"; "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", "gaDropdown", "customSelectValue"], ["ga-select-value", "ga-select-dropdown"], true, [{ directive: typeof _angular_cdk_overlay.CdkOverlayOrigin; inputs: {}; outputs: {}; }, { directive: typeof GaLabelledByFormFieldDirective; inputs: { "aria-labelledby": "aria-labelledby"; }; outputs: {}; }]>;
|
|
1176
1177
|
}
|
|
1177
1178
|
|
|
1178
1179
|
declare class GaOptgroupComponent {
|
|
@@ -1204,6 +1205,237 @@ declare class GaSelectModule {
|
|
|
1204
1205
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<GaSelectModule>;
|
|
1205
1206
|
}
|
|
1206
1207
|
|
|
1208
|
+
declare class GaDataOptionComponent<InputType = any> {
|
|
1209
|
+
private readonly _isSelected;
|
|
1210
|
+
private readonly _isActive;
|
|
1211
|
+
protected readonly selectComponent: GaDataSelectComponent;
|
|
1212
|
+
readonly cdkOption: CdkOption<any>;
|
|
1213
|
+
readonly value: _angular_core.InputSignal<InputType | null>;
|
|
1214
|
+
readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1215
|
+
readonly withInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1216
|
+
readonly selected: _angular_core.Signal<boolean>;
|
|
1217
|
+
readonly active: _angular_core.Signal<boolean>;
|
|
1218
|
+
constructor();
|
|
1219
|
+
autoClose(event?: Event): void;
|
|
1220
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaDataOptionComponent<any>, never>;
|
|
1221
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaDataOptionComponent<any>, "ga-data-option", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "withInput": { "alias": "withInput"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof i1$3.CdkOption; inputs: { "cdkOption": "value"; "cdkOptionDisabled": "disabled"; "cdkOptionTypeaheadLabel": "typeaheadLabel"; }; outputs: {}; }]>;
|
|
1222
|
+
}
|
|
1223
|
+
|
|
1224
|
+
declare function GA_DATA_SELECT_I18N_FACTORY(): GaDataSelectI18nDefault;
|
|
1225
|
+
declare abstract class GaDataSelectI18n {
|
|
1226
|
+
abstract clearLabel: string;
|
|
1227
|
+
abstract searchInputLabel: string;
|
|
1228
|
+
abstract noOptionsLabel: string;
|
|
1229
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaDataSelectI18n, never>;
|
|
1230
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<GaDataSelectI18n>;
|
|
1231
|
+
}
|
|
1232
|
+
declare class GaDataSelectI18nDefault extends GaDataSelectI18n {
|
|
1233
|
+
/** A label for the clear button */
|
|
1234
|
+
clearLabel: string;
|
|
1235
|
+
/** A label for the search input */
|
|
1236
|
+
searchInputLabel: string;
|
|
1237
|
+
/** A label shown when there are no options to display */
|
|
1238
|
+
noOptionsLabel: string;
|
|
1239
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaDataSelectI18nDefault, never>;
|
|
1240
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<GaDataSelectI18nDefault>;
|
|
1241
|
+
}
|
|
1242
|
+
declare function provideGaDataSelectI18n(value: GaDataSelectI18n | (() => GaDataSelectI18n)): _angular_core.EnvironmentProviders;
|
|
1243
|
+
|
|
1244
|
+
declare class GaDataSelectDropdownComponent {
|
|
1245
|
+
private readonly elementRef;
|
|
1246
|
+
readonly cdkListbox: CdkListbox<any>;
|
|
1247
|
+
readonly loading: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1248
|
+
resetScroll(): void;
|
|
1249
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaDataSelectDropdownComponent, never>;
|
|
1250
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaDataSelectDropdownComponent, "ga-data-select-dropdown", never, { "loading": { "alias": "loading"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof i1$3.CdkListbox; inputs: { "cdkListboxMultiple": "multiple"; "cdkListboxUseActiveDescendant": "useActiveDescendant"; "cdkListboxNavigationWrapDisabled": "navigationWrapDisabled"; "cdkListboxCompareWith": "compareWith"; }; outputs: {}; }]>;
|
|
1251
|
+
}
|
|
1252
|
+
|
|
1253
|
+
declare class GaDataSelectValueDirective {
|
|
1254
|
+
readonly templateRef: TemplateRef<any>;
|
|
1255
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaDataSelectValueDirective, never>;
|
|
1256
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GaDataSelectValueDirective, "[gaDataSelectValueTpl]", never, {}, {}, never, never, true, never>;
|
|
1257
|
+
}
|
|
1258
|
+
|
|
1259
|
+
declare class GaDataSelectOptionLabelDirective {
|
|
1260
|
+
readonly templateRef: TemplateRef<any>;
|
|
1261
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaDataSelectOptionLabelDirective, never>;
|
|
1262
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GaDataSelectOptionLabelDirective, "[gaDataSelectOptionTpl]", never, {}, {}, never, never, true, never>;
|
|
1263
|
+
}
|
|
1264
|
+
|
|
1265
|
+
declare class GaDataSelectOptgroupLabelDirective {
|
|
1266
|
+
readonly templateRef: TemplateRef<any>;
|
|
1267
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaDataSelectOptgroupLabelDirective, never>;
|
|
1268
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GaDataSelectOptgroupLabelDirective, "[gaDataSelectOptgroupLabelTpl]", never, {}, {}, never, never, true, never>;
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
/**
|
|
1272
|
+
* Type for ga-data-select option items.
|
|
1273
|
+
*
|
|
1274
|
+
* Your option items can be of any type, but you can optionally include
|
|
1275
|
+
* special properties prefixed with `$` to control option behavior.
|
|
1276
|
+
*
|
|
1277
|
+
* @template T - The actual item type
|
|
1278
|
+
*
|
|
1279
|
+
* @example
|
|
1280
|
+
* ```typescript
|
|
1281
|
+
* interface Person {
|
|
1282
|
+
* id: number;
|
|
1283
|
+
* name: string;
|
|
1284
|
+
* }
|
|
1285
|
+
*
|
|
1286
|
+
* const options: IGaSelectOption<Person>[] = [
|
|
1287
|
+
* { id: 1, name: 'Active Person' },
|
|
1288
|
+
* { id: 2, name: 'Disabled Person', $disabled: true },
|
|
1289
|
+
* { id: 3, name: 'Custom Label', $typeaheadLabel: 'Custom search term' }
|
|
1290
|
+
* ];
|
|
1291
|
+
* ```
|
|
1292
|
+
*/
|
|
1293
|
+
type IGaSelectOption<T = any> = T & {
|
|
1294
|
+
/**
|
|
1295
|
+
* When set to `true`, the option will be disabled and cannot be selected.
|
|
1296
|
+
*/
|
|
1297
|
+
$disabled?: boolean;
|
|
1298
|
+
/**
|
|
1299
|
+
* Custom label to use for typeahead/search functionality.
|
|
1300
|
+
* When provided, this label will be used instead of the regular label
|
|
1301
|
+
* for filtering options during search.
|
|
1302
|
+
*/
|
|
1303
|
+
$typeaheadLabel?: string;
|
|
1304
|
+
};
|
|
1305
|
+
|
|
1306
|
+
declare class GaDataSelectComponent implements OnInit, ControlValueAccessor {
|
|
1307
|
+
private readonly _uniqueId;
|
|
1308
|
+
protected readonly icons: {
|
|
1309
|
+
CircleX: lucide_angular.LucideIconData;
|
|
1310
|
+
};
|
|
1311
|
+
private _onTouched?;
|
|
1312
|
+
private _onModelChanged?;
|
|
1313
|
+
protected readonly positions: ConnectedPosition[];
|
|
1314
|
+
private readonly injector;
|
|
1315
|
+
private readonly elementRef;
|
|
1316
|
+
private readonly formFieldConnector;
|
|
1317
|
+
protected readonly i18n: GaDataSelectI18n;
|
|
1318
|
+
protected readonly overlayOrigin: CdkOverlayOrigin;
|
|
1319
|
+
protected readonly repositionScrollStrategy: _angular_cdk_overlay.RepositionScrollStrategy;
|
|
1320
|
+
private readonly implicitNgControlState;
|
|
1321
|
+
private readonly _isOpen;
|
|
1322
|
+
private shouldRecoverFocus;
|
|
1323
|
+
readonly searchValue: _angular_core.WritableSignal<string | null>;
|
|
1324
|
+
readonly multiple: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1325
|
+
readonly value: _angular_core.ModelSignal<any>;
|
|
1326
|
+
readonly placeholder: _angular_core.InputSignal<string>;
|
|
1327
|
+
readonly disabledInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1328
|
+
readonly invalidInput: _angular_core.InputSignalWithTransform<boolean | null, unknown>;
|
|
1329
|
+
readonly compareFn: _angular_core.InputSignal<(o1: any, o2: any) => boolean>;
|
|
1330
|
+
readonly searchable: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1331
|
+
readonly customFilter: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1332
|
+
readonly clearable: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1333
|
+
readonly clearableLabel: _angular_core.InputSignal<string | undefined>;
|
|
1334
|
+
readonly noOptionsLabel: _angular_core.InputSignal<string | undefined>;
|
|
1335
|
+
readonly canSelectNullable: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1336
|
+
readonly leftIcon: _angular_core.InputSignal<lucide_angular.LucideIconData | undefined>;
|
|
1337
|
+
readonly idInput: _angular_core.InputSignal<string | null>;
|
|
1338
|
+
readonly items: _angular_core.InputSignal<any[]>;
|
|
1339
|
+
readonly bindValue: _angular_core.InputSignal<string | undefined>;
|
|
1340
|
+
readonly bindLabel: _angular_core.InputSignal<string | undefined>;
|
|
1341
|
+
readonly groupBy: _angular_core.InputSignal<string | ((item: IGaSelectOption) => string) | undefined>;
|
|
1342
|
+
readonly loading: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1343
|
+
readonly withOptionInput: _angular_core.InputSignalWithTransform<boolean | null, unknown>;
|
|
1344
|
+
readonly searchValueChange: _angular_core.OutputEmitterRef<string | null>;
|
|
1345
|
+
readonly opened: _angular_core.OutputEmitterRef<void>;
|
|
1346
|
+
readonly closed: _angular_core.OutputEmitterRef<void>;
|
|
1347
|
+
readonly optionsEndReached: _angular_core.OutputEmitterRef<void>;
|
|
1348
|
+
protected readonly dropdownElRef: _angular_core.Signal<ElementRef<HTMLElement> | undefined>;
|
|
1349
|
+
protected readonly gaOptions: _angular_core.Signal<readonly GaDataOptionComponent<any>[]>;
|
|
1350
|
+
protected readonly cdkListbox: _angular_core.Signal<CdkListbox<any> | undefined>;
|
|
1351
|
+
protected readonly gaDropdown: _angular_core.Signal<GaDataSelectDropdownComponent | undefined>;
|
|
1352
|
+
protected readonly customValueTemplate: _angular_core.Signal<GaDataSelectValueDirective | undefined>;
|
|
1353
|
+
protected readonly customOptionLabelTemplate: _angular_core.Signal<GaDataSelectOptionLabelDirective | undefined>;
|
|
1354
|
+
protected readonly customOptgroupLabelTemplate: _angular_core.Signal<GaDataSelectOptgroupLabelDirective | undefined>;
|
|
1355
|
+
protected readonly inputSearch: _angular_core.Signal<ElementRef<HTMLInputElement> | undefined>;
|
|
1356
|
+
protected readonly connectedOverlay: _angular_core.Signal<CdkConnectedOverlay | undefined>;
|
|
1357
|
+
readonly id: _angular_core.Signal<string>;
|
|
1358
|
+
readonly isOpen: _angular_core.Signal<boolean>;
|
|
1359
|
+
readonly disabled: _angular_core.WritableSignal<boolean>;
|
|
1360
|
+
protected readonly menuStatusIcon: _angular_core.Signal<lucide_angular.LucideIconData>;
|
|
1361
|
+
readonly selectedItem: _angular_core.Signal<any>;
|
|
1362
|
+
protected readonly selectedItems: _angular_core.Signal<any[]>;
|
|
1363
|
+
protected getOptionLabelTemplateContext(item: IGaSelectOption): {
|
|
1364
|
+
$implicit: string;
|
|
1365
|
+
value: any;
|
|
1366
|
+
item: any;
|
|
1367
|
+
};
|
|
1368
|
+
protected getOptgroupLabelTemplateContext(group: {
|
|
1369
|
+
label: string;
|
|
1370
|
+
items: IGaSelectOption[];
|
|
1371
|
+
}): {
|
|
1372
|
+
$implicit: string;
|
|
1373
|
+
label: string;
|
|
1374
|
+
items: any[];
|
|
1375
|
+
};
|
|
1376
|
+
protected readonly filteredItems: _angular_core.Signal<any[]>;
|
|
1377
|
+
protected readonly virtualItems: _angular_core.Signal<any[]>;
|
|
1378
|
+
protected readonly groupedItems: _angular_core.Signal<{
|
|
1379
|
+
label: string;
|
|
1380
|
+
items: any[];
|
|
1381
|
+
}[] | {
|
|
1382
|
+
label: null;
|
|
1383
|
+
items: any[];
|
|
1384
|
+
}[]>;
|
|
1385
|
+
protected readonly hasNoOptions: _angular_core.Signal<boolean>;
|
|
1386
|
+
readonly activeDescendantId: _angular_core.Signal<string | undefined>;
|
|
1387
|
+
readonly hasValue: _angular_core.Signal<boolean>;
|
|
1388
|
+
readonly invalid: _angular_core.Signal<boolean>;
|
|
1389
|
+
readonly listboxCompareWith: _angular_core.Signal<(o1: any, o2: any) => boolean>;
|
|
1390
|
+
getItemLabel(item: IGaSelectOption): string;
|
|
1391
|
+
getItemValue(item: IGaSelectOption): any;
|
|
1392
|
+
getItemDisabled(item: IGaSelectOption): boolean;
|
|
1393
|
+
getItemTypeaheadLabel(item: IGaSelectOption): string | null;
|
|
1394
|
+
private getNestedValue;
|
|
1395
|
+
constructor();
|
|
1396
|
+
ngOnInit(): void;
|
|
1397
|
+
writeValue(value: any): void;
|
|
1398
|
+
registerOnChange(fn: any): void;
|
|
1399
|
+
registerOnTouched(fn: any): void;
|
|
1400
|
+
setDisabledState(disabled: boolean): void;
|
|
1401
|
+
toggle(): void;
|
|
1402
|
+
open(): void;
|
|
1403
|
+
close(): void;
|
|
1404
|
+
autoClose(): void;
|
|
1405
|
+
focusListbox(): void;
|
|
1406
|
+
setActiveItemAsSelected(): void;
|
|
1407
|
+
onOverlayKeydown(event: KeyboardEvent): void;
|
|
1408
|
+
protected clearValue(): void;
|
|
1409
|
+
protected onInputKeyDown(event: KeyboardEvent): void;
|
|
1410
|
+
protected onOverlayAttach(): void;
|
|
1411
|
+
protected onOverlayDetach(): void;
|
|
1412
|
+
deselectValue(value: any): void;
|
|
1413
|
+
protected endReached(): void;
|
|
1414
|
+
private syncValue;
|
|
1415
|
+
private markSelectedOptionAsActive;
|
|
1416
|
+
private scrollActiveOptionIntoView;
|
|
1417
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaDataSelectComponent, never>;
|
|
1418
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaDataSelectComponent, "ga-data-select", never, { "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "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; }; "compareFn": { "alias": "compareFn"; "required": false; "isSignal": true; }; "searchable": { "alias": "searchable"; "required": false; "isSignal": true; }; "customFilter": { "alias": "customFilter"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "clearableLabel": { "alias": "clearableLabel"; "required": false; "isSignal": true; }; "noOptionsLabel": { "alias": "noOptionsLabel"; "required": false; "isSignal": true; }; "canSelectNullable": { "alias": "canSelectNullable"; "required": false; "isSignal": true; }; "leftIcon": { "alias": "leftIcon"; "required": false; "isSignal": true; }; "idInput": { "alias": "id"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": false; "isSignal": true; }; "bindValue": { "alias": "bindValue"; "required": false; "isSignal": true; }; "bindLabel": { "alias": "bindLabel"; "required": false; "isSignal": true; }; "groupBy": { "alias": "groupBy"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "withOptionInput": { "alias": "withOptionInput"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "searchValueChange": "searchValueChange"; "opened": "opened"; "closed": "closed"; "optionsEndReached": "optionsEndReached"; }, ["customValueTemplate", "customOptionLabelTemplate", "customOptgroupLabelTemplate"], never, true, [{ directive: typeof _angular_cdk_overlay.CdkOverlayOrigin; inputs: {}; outputs: {}; }, { directive: typeof GaLabelledByFormFieldDirective; inputs: { "aria-labelledby": "aria-labelledby"; }; outputs: {}; }]>;
|
|
1419
|
+
}
|
|
1420
|
+
|
|
1421
|
+
/**
|
|
1422
|
+
* @internal - Internal validator provider for ga-data-select required validation
|
|
1423
|
+
*/
|
|
1424
|
+
declare const GA_DATA_SELECT_REQUIRED_VALIDATOR: Provider;
|
|
1425
|
+
/**
|
|
1426
|
+
* @internal - Internal directive for ga-data-select required validation
|
|
1427
|
+
*/
|
|
1428
|
+
declare class GaDataSelectRequiredValidator extends RequiredValidator {
|
|
1429
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaDataSelectRequiredValidator, never>;
|
|
1430
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GaDataSelectRequiredValidator, "ga-data-select[required][formControlName], ga-data-select[required][formControl], ga-data-select[required][ngModel]", never, {}, {}, never, never, true, never>;
|
|
1431
|
+
}
|
|
1432
|
+
|
|
1433
|
+
declare class GaDataSelectModule {
|
|
1434
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaDataSelectModule, never>;
|
|
1435
|
+
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<GaDataSelectModule, never, [typeof GaDataSelectComponent, typeof GaDataSelectRequiredValidator, typeof GaDataSelectValueDirective, typeof GaDataSelectOptionLabelDirective, typeof GaDataSelectOptgroupLabelDirective], [typeof GaDataSelectComponent, typeof GaDataSelectRequiredValidator, typeof GaDataSelectValueDirective, typeof GaDataSelectOptionLabelDirective, typeof GaDataSelectOptgroupLabelDirective]>;
|
|
1436
|
+
static ɵinj: _angular_core.ɵɵInjectorDeclaration<GaDataSelectModule>;
|
|
1437
|
+
}
|
|
1438
|
+
|
|
1207
1439
|
declare class GaSpinnerComponent {
|
|
1208
1440
|
readonly size: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
1209
1441
|
readonly strokeWidth: _angular_core.Signal<number>;
|
|
@@ -1456,5 +1688,5 @@ declare class GaChipModule {
|
|
|
1456
1688
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<GaChipModule>;
|
|
1457
1689
|
}
|
|
1458
1690
|
|
|
1459
|
-
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_DATEPICKER_I18N_FACTORY, GA_DATEPICKER_PARSER_FORMATTER_FACTORY, GA_DATEPICKER_VALUE_ADAPTER_FACTORY, GA_DATE_PARSER_FORMATTER_CONFIG, GA_DEFAULT_DATEPICKER_FORMATS, GA_FORM_CONTROL_ADAPTER, GA_FORM_ERRORS, 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, GaChipComponent, GaChipListboxComponent, GaChipModule, GaDatepickerComponent, GaDatepickerI18n, GaDatepickerI18nDefault, GaDatepickerInputDirective, GaDatepickerModule, GaDatepickerNativeUtcIsoValueAdapter, GaDatepickerNativeUtcValueAdapter, GaDatepickerParserFormatter, GaDatepickerParserFormatterDefault, GaDatepickerStructValueAdapter, GaDatepickerToggleComponent, GaDatepickerValueAdapter, 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, compareStructs, extendGaDateParserFormatter, injectNgControlState, provideGaAlertI18n, provideGaBaseFontSize, provideGaButtonI18n, provideGaDatepickerI18n, provideGaDatepickerParserFormatter, provideGaDatepickerValueAdapter, provideGaFormErrors, provideGaModalI18n, provideGaModalOptions, provideGaSelectI18n };
|
|
1460
|
-
export type { GaAlertVariant, GaBadgeType, GaBadgeVariant, GaButtonType, GaChipVariant, GaDatepickerFormats, GaDatepickerStruct, GaFormControlAdapter, GaFormErrorMessage, GaFormErrorsConfig, GaFormErrorsMap, GaIconButtonVariant, GaIconData, GaLinkSize, GaLinkVariant, GaModalRole, GaModalSize, GaModalType, GaTooltipControlMode, GaTooltipDirection, GaTooltipPlacement, GaTooltipPosition, IGaDatepickerI18n };
|
|
1691
|
+
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_DATA_SELECT_I18N_FACTORY, GA_DATA_SELECT_REQUIRED_VALIDATOR, GA_DATEPICKER_I18N_FACTORY, GA_DATEPICKER_PARSER_FORMATTER_FACTORY, GA_DATEPICKER_VALUE_ADAPTER_FACTORY, GA_DATE_PARSER_FORMATTER_CONFIG, GA_DEFAULT_DATEPICKER_FORMATS, GA_FORM_CONTROL_ADAPTER, GA_FORM_ERRORS, 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, GaChipComponent, GaChipListboxComponent, GaChipModule, GaDataSelectComponent, GaDataSelectI18n, GaDataSelectI18nDefault, GaDataSelectModule, GaDataSelectOptgroupLabelDirective, GaDataSelectOptionLabelDirective, GaDataSelectRequiredValidator, GaDataSelectValueDirective, GaDatepickerComponent, GaDatepickerI18n, GaDatepickerI18nDefault, GaDatepickerInputDirective, GaDatepickerModule, GaDatepickerNativeUtcIsoValueAdapter, GaDatepickerNativeUtcValueAdapter, GaDatepickerParserFormatter, GaDatepickerParserFormatterDefault, GaDatepickerStructValueAdapter, GaDatepickerToggleComponent, GaDatepickerValueAdapter, 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, compareStructs, extendGaDateParserFormatter, injectNgControlState, provideGaAlertI18n, provideGaBaseFontSize, provideGaButtonI18n, provideGaDataSelectI18n, provideGaDatepickerI18n, provideGaDatepickerParserFormatter, provideGaDatepickerValueAdapter, provideGaFormErrors, provideGaModalI18n, provideGaModalOptions, provideGaSelectI18n };
|
|
1692
|
+
export type { GaAlertVariant, GaBadgeType, GaBadgeVariant, GaButtonType, GaChipVariant, GaDatepickerFormats, GaDatepickerStruct, GaFormControlAdapter, GaFormErrorMessage, GaFormErrorsConfig, GaFormErrorsMap, GaIconButtonVariant, GaIconData, GaLinkSize, GaLinkVariant, GaModalRole, GaModalSize, GaModalType, GaTooltipControlMode, GaTooltipDirection, GaTooltipPlacement, GaTooltipPosition, IGaDatepickerI18n, IGaSelectOption };
|