@i-cell/ids-angular 0.2.22 → 0.2.24
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/datepicker/index.d.ts +3 -2
- package/fesm2022/i-cell-ids-angular-datepicker.mjs +3 -2
- package/fesm2022/i-cell-ids-angular-datepicker.mjs.map +1 -1
- package/fesm2022/i-cell-ids-angular-forms.mjs +933 -709
- package/fesm2022/i-cell-ids-angular-forms.mjs.map +1 -1
- package/forms/index.d.ts +116 -96
- package/package.json +17 -17
package/forms/index.d.ts
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
import * as _angular_forms from '@angular/forms';
|
|
2
2
|
import { AbstractControl, FormGroupDirective, NgForm, NgControl, ControlValueAccessor, ControlEvent, ValidationErrors } from '@angular/forms';
|
|
3
|
-
import { Subject
|
|
3
|
+
import { Subject } from 'rxjs';
|
|
4
4
|
import * as _angular_core from '@angular/core';
|
|
5
|
-
import { InjectionToken, Signal, OnInit, Injector, ElementRef, AfterViewInit
|
|
5
|
+
import { InjectionToken, Signal, OnInit, OnDestroy, Injector, ElementRef, AfterViewInit } from '@angular/core';
|
|
6
6
|
import * as _i_cell_ids_angular_forms from '@i-cell/ids-angular/forms';
|
|
7
7
|
import * as _i_cell_ids_angular_core from '@i-cell/ids-angular/core';
|
|
8
8
|
import { ComponentBase, IdsSizeType, ComponentBaseWithDefaults } from '@i-cell/ids-angular/core';
|
|
9
9
|
import { FocusOrigin } from '@angular/cdk/a11y';
|
|
10
|
-
import {
|
|
10
|
+
import { IdsIconButtonAppearanceType } from '@i-cell/ids-angular/icon-button';
|
|
11
11
|
import { IdsOverlayPanelComponent } from '@i-cell/ids-angular/overlay-panel';
|
|
12
|
+
import { IdsSpinnerVariantType } from '@i-cell/ids-angular/spinner';
|
|
13
|
+
import { IdsChipAppearanceType, IdsChipVariantType } from '@i-cell/ids-angular/chip';
|
|
12
14
|
|
|
13
15
|
declare abstract class AbstractErrorStateMatcher {
|
|
14
16
|
abstract isErrorState(control: AbstractControl | null, form: FormGroupDirective | NgForm | null): boolean;
|
|
@@ -53,16 +55,17 @@ declare class SuccessStateTracker {
|
|
|
53
55
|
}
|
|
54
56
|
|
|
55
57
|
interface IdsAutocompleteDefaultConfig {
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
hintNoResults: string;
|
|
59
|
-
hintMinChars: string;
|
|
60
|
-
hintMaxLength: string;
|
|
61
|
-
typeaheadDebounceInterval?: number;
|
|
58
|
+
errorStateMatcher?: typeof AbstractErrorStateMatcher;
|
|
59
|
+
successStateMatcher?: typeof AbstractSuccessStateMatcher;
|
|
62
60
|
}
|
|
63
61
|
declare const IDS_AUTOCOMPLETE_DEFAULT_CONFIG: InjectionToken<IdsAutocompleteDefaultConfig>;
|
|
64
62
|
declare function IDS_AUTOCOMPLETE_DEFAULT_CONFIG_FACTORY(): Required<IdsAutocompleteDefaultConfig>;
|
|
65
63
|
|
|
64
|
+
type IdsOptionValue = {
|
|
65
|
+
value: unknown;
|
|
66
|
+
viewValue: string;
|
|
67
|
+
};
|
|
68
|
+
|
|
66
69
|
declare class IdsOptionGroupComponent extends ComponentBase {
|
|
67
70
|
protected get _hostName(): string;
|
|
68
71
|
private readonly _parent;
|
|
@@ -134,6 +137,50 @@ declare class IdsOptionComponent<T = unknown> extends ComponentBase implements O
|
|
|
134
137
|
declare function _countGroupLabelsBeforeOption(optionIndex: number, options: Readonly<IdsOptionComponent[]>, optionGroups: Readonly<IdsOptionGroupComponent[]>): number;
|
|
135
138
|
declare function _getOptionScrollPosition(optionOffset: number, optionHeight: number, currentScrollPosition: number, panelHeight: number): number;
|
|
136
139
|
|
|
140
|
+
declare class IdsAutocompleteTriggerDirective implements OnInit, OnDestroy {
|
|
141
|
+
autocomplete: _angular_core.InputSignal<IdsAutocompleteComponent>;
|
|
142
|
+
protected _disabled: _angular_core.Signal<boolean>;
|
|
143
|
+
protected _readonly: _angular_core.Signal<boolean>;
|
|
144
|
+
private _inputElement;
|
|
145
|
+
private _keyManager?;
|
|
146
|
+
private _selectionModel?;
|
|
147
|
+
private readonly _liveAnnouncer;
|
|
148
|
+
private readonly _renderer;
|
|
149
|
+
private readonly _injector;
|
|
150
|
+
get selected(): IdsOptionValue[];
|
|
151
|
+
get selectedOptions(): IdsOptionComponent[];
|
|
152
|
+
constructor();
|
|
153
|
+
ngOnInit(): void;
|
|
154
|
+
ngOnDestroy(): void;
|
|
155
|
+
toggle(): void;
|
|
156
|
+
open(): void;
|
|
157
|
+
close(): void;
|
|
158
|
+
clear(): void;
|
|
159
|
+
removeOption(optionValue: IdsOptionValue): void;
|
|
160
|
+
focus(options?: FocusOptions): void;
|
|
161
|
+
setSelectionByValue(value: unknown | unknown[]): void;
|
|
162
|
+
protected _handleKeydown(event: KeyboardEvent): void;
|
|
163
|
+
protected _onBlur(): void;
|
|
164
|
+
protected _getAriaActiveDescendant(): string | null;
|
|
165
|
+
private _initKeyManager;
|
|
166
|
+
private _subscribeOptionChanges;
|
|
167
|
+
private _handleOptionChange;
|
|
168
|
+
private _clearSelection;
|
|
169
|
+
private _clearOptionsSelection;
|
|
170
|
+
private _canOpen;
|
|
171
|
+
private _handleOpenedPanelKeydown;
|
|
172
|
+
private _handleClosedPanelKeydown;
|
|
173
|
+
private _skipPredicate;
|
|
174
|
+
private _highlightCorrectOption;
|
|
175
|
+
private _scrollOptionIntoView;
|
|
176
|
+
private _selectValue;
|
|
177
|
+
private _updateCurrentSelection;
|
|
178
|
+
private _getAsOptionValue;
|
|
179
|
+
private _updateInputValue;
|
|
180
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<IdsAutocompleteTriggerDirective, never>;
|
|
181
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<IdsAutocompleteTriggerDirective, "input[idsAutocompleteTriggerFor]", ["idsAutocompleteTrigger"], { "autocomplete": { "alias": "idsAutocompleteTriggerFor"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
182
|
+
}
|
|
183
|
+
|
|
137
184
|
declare const formFieldControlClass = "ids-form-field-control";
|
|
138
185
|
declare abstract class IdsFormFieldControl<D = unknown> extends ComponentBaseWithDefaults<D> {
|
|
139
186
|
protected readonly _injector: Injector;
|
|
@@ -172,103 +219,83 @@ declare abstract class IdsFormFieldControl<D = unknown> extends ComponentBaseWit
|
|
|
172
219
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<IdsFormFieldControl<any>, never, never, { "canHandleSuccessState": { "alias": "canHandleSuccessState"; "required": false; "isSignal": true; }; "disabledInput": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
173
220
|
}
|
|
174
221
|
|
|
175
|
-
declare class IdsAutocompleteComponent extends IdsFormFieldControl<IdsAutocompleteDefaultConfig> implements ControlValueAccessor, OnInit, AfterViewInit
|
|
222
|
+
declare class IdsAutocompleteComponent extends IdsFormFieldControl<IdsAutocompleteDefaultConfig> implements ControlValueAccessor, OnInit, AfterViewInit {
|
|
176
223
|
protected get _hostName(): string;
|
|
177
|
-
protected readonly _defaultConfig: Required<IdsAutocompleteDefaultConfig>;
|
|
178
|
-
protected readonly _elementRef: ElementRef<any>;
|
|
179
|
-
private readonly _changeDetectorRef;
|
|
180
|
-
private readonly _liveAnnouncer;
|
|
181
|
-
private readonly _parentFormField;
|
|
182
|
-
protected _preferredOverlayOrigin: CdkOverlayOrigin | ElementRef | undefined;
|
|
183
|
-
protected _overlayWidth: string | number;
|
|
184
|
-
/**
|
|
185
|
-
* Minimum number of characters to initiate actual search.
|
|
186
|
-
* Warning is shown when input length is not met.
|
|
187
|
-
* (Resource loader/stream function needs to be adjusted accordingly!)
|
|
188
|
-
*/
|
|
189
|
-
minChars: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
190
|
-
/** Max length of options allowed to show. Warning is shown when available options is higher than this number */
|
|
191
|
-
maxLength: _angular_core.InputSignalWithTransform<number | null, number>;
|
|
192
|
-
multiSelect: _angular_core.InputSignal<boolean>;
|
|
193
224
|
ariaLabel: _angular_core.InputSignal<string>;
|
|
194
225
|
ariaLabelledby: _angular_core.InputSignal<string>;
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
sortCompareFn: _angular_core.InputSignal<((a: string, b: string, options: Readonly<string[]>) => number) | undefined>;
|
|
226
|
+
ariaLabelClear: _angular_core.InputSignal<string>;
|
|
227
|
+
ariaLabelLoading: _angular_core.InputSignal<string>;
|
|
228
|
+
multiSelect: _angular_core.InputSignalWithTransform<boolean, boolean>;
|
|
199
229
|
tabIndex: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
hintMinChars: _angular_core.InputSignal<string>;
|
|
204
|
-
hintMaxLength: _angular_core.InputSignal<string>;
|
|
230
|
+
sortCompareFn: _angular_core.InputSignal<(a: IdsOptionValue, b: IdsOptionValue) => number>;
|
|
231
|
+
valueCompareFn: _angular_core.InputSignal<(o1: unknown, o2: unknown) => boolean>;
|
|
232
|
+
trigger: _angular_core.InputSignal<IdsAutocompleteTriggerDirective>;
|
|
205
233
|
panelClasses: _angular_core.InputSignal<string>;
|
|
234
|
+
panelOpen: _angular_core.ModelSignal<boolean>;
|
|
235
|
+
options: _angular_core.Signal<readonly IdsOptionComponent<any>[]>;
|
|
236
|
+
optionGroups: _angular_core.Signal<readonly IdsOptionGroupComponent[]>;
|
|
237
|
+
overlayPanel: _angular_core.Signal<IdsOverlayPanelComponent | undefined>;
|
|
238
|
+
panel: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
239
|
+
appearance: _angular_core.InputSignal<IdsIconButtonAppearanceType>;
|
|
206
240
|
parentSize: _angular_core.Signal<_i_cell_ids_angular_core.IdsSizeType>;
|
|
207
241
|
parentVariant: _angular_core.Signal<_i_cell_ids_angular_forms.IdsFormFieldVariantType>;
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
242
|
+
spinnerVariant: _angular_core.InputSignal<IdsSpinnerVariantType>;
|
|
243
|
+
isLoading: _angular_core.InputSignalWithTransform<boolean, boolean>;
|
|
244
|
+
onChange: (value: unknown) => void;
|
|
245
|
+
onTouched: () => unknown;
|
|
246
|
+
protected _overlayOrigin: ElementRef;
|
|
247
|
+
private readonly _parentFormField;
|
|
248
|
+
private _value;
|
|
249
|
+
protected readonly _defaultConfig: Required<IdsAutocompleteDefaultConfig>;
|
|
250
|
+
readonly errorStateMatcher: _angular_core.InputSignal<AbstractErrorStateMatcher>;
|
|
251
|
+
readonly successStateMatcher: _angular_core.InputSignal<AbstractSuccessStateMatcher>;
|
|
252
|
+
protected readonly _elementRef: ElementRef<any>;
|
|
213
253
|
protected _hostClasses: _angular_core.Signal<string>;
|
|
214
254
|
protected _panelClasses: _angular_core.Signal<string>;
|
|
215
|
-
private _focused;
|
|
216
|
-
private _canOpen;
|
|
217
|
-
private _panel;
|
|
218
|
-
private _keyManager?;
|
|
219
|
-
private _inputElemment;
|
|
220
|
-
protected _resource: _angular_core.ResourceRef<string[]>;
|
|
221
|
-
private _rawValue;
|
|
222
|
-
private _selectionModel?;
|
|
223
|
-
private _onChange;
|
|
224
|
-
private _onTouched;
|
|
225
|
-
protected get _empty(): boolean;
|
|
226
|
-
get selected(): string | string[] | undefined;
|
|
227
|
-
protected _searchText: _angular_core.ModelSignal<string>;
|
|
228
|
-
protected get _triggerValue(): string;
|
|
229
255
|
constructor();
|
|
230
256
|
ngOnInit(): void;
|
|
231
257
|
ngAfterViewInit(): void;
|
|
232
258
|
updateErrorAndSuccessState(): void;
|
|
233
|
-
ngOnDestroy(): void;
|
|
234
|
-
private _initKeyManager;
|
|
235
|
-
private _subscribeOptionChanges;
|
|
236
|
-
private _handleOptionChange;
|
|
237
|
-
protected _handleKeydown(event: KeyboardEvent): void;
|
|
238
|
-
private _handleClosedPanelKeydown;
|
|
239
|
-
private _handleOpenedPanelKeydown;
|
|
240
|
-
private _scrollOptionIntoView;
|
|
241
|
-
private _sortValues;
|
|
242
|
-
private _getOverlayWidth;
|
|
243
|
-
toggle(): void;
|
|
244
|
-
open(): void;
|
|
245
|
-
close(): void;
|
|
246
|
-
clear(): void;
|
|
247
259
|
writeValue(value: unknown | unknown[]): void;
|
|
248
|
-
registerOnChange(fn: () => void): void;
|
|
260
|
+
registerOnChange(fn: (value: unknown) => void): void;
|
|
249
261
|
registerOnTouched(fn: () => unknown): void;
|
|
250
|
-
setDisabledState(isDisabled: boolean): void;
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
protected _getAriaActiveDescendant(): string | null;
|
|
261
|
-
focus(options?: FocusOptions): void;
|
|
262
|
-
protected _onInputClick(): void;
|
|
262
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
263
|
+
handleChange(value: unknown | unknown[]): void;
|
|
264
|
+
onContainerClick: (event: Event) => void;
|
|
265
|
+
isOptionPreSelectedByValue(): boolean;
|
|
266
|
+
setScrollTop(scrollTop: number): void;
|
|
267
|
+
getScrollTop(): number;
|
|
268
|
+
setPanelOpen(): void;
|
|
269
|
+
createHostError(message: string): Error;
|
|
270
|
+
private _observeOverlayOrigin;
|
|
271
|
+
private _patchValue;
|
|
263
272
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<IdsAutocompleteComponent, never>;
|
|
264
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<IdsAutocompleteComponent, "ids-autocomplete
|
|
273
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<IdsAutocompleteComponent, "ids-autocomplete", ["idsAutocomplete"], { "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; "isSignal": true; }; "ariaLabelClear": { "alias": "ariaLabelClear"; "required": false; "isSignal": true; }; "ariaLabelLoading": { "alias": "ariaLabelLoading"; "required": false; "isSignal": true; }; "multiSelect": { "alias": "multiSelect"; "required": false; "isSignal": true; }; "tabIndex": { "alias": "tabIndex"; "required": false; "isSignal": true; }; "sortCompareFn": { "alias": "sortCompareFn"; "required": false; "isSignal": true; }; "valueCompareFn": { "alias": "valueCompareFn"; "required": false; "isSignal": true; }; "trigger": { "alias": "trigger"; "required": true; "isSignal": true; }; "panelClasses": { "alias": "panelClasses"; "required": false; "isSignal": true; }; "panelOpen": { "alias": "panelOpen"; "required": false; "isSignal": true; }; "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "spinnerVariant": { "alias": "spinnerVariant"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; "errorStateMatcher": { "alias": "errorStateMatcher"; "required": false; "isSignal": true; }; "successStateMatcher": { "alias": "successStateMatcher"; "required": false; "isSignal": true; }; }, { "panelOpen": "panelOpenChange"; }, ["options", "optionGroups"], ["*"], true, never>;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
declare class IdsAutocompleteChipListComponent {
|
|
277
|
+
autocompleteTrigger: _angular_core.InputSignal<IdsAutocompleteTriggerDirective>;
|
|
278
|
+
options: _angular_core.InputSignal<IdsOptionValue[]>;
|
|
279
|
+
appearance: _angular_core.InputSignal<IdsChipAppearanceType>;
|
|
280
|
+
size: _angular_core.InputSignal<IdsSizeType>;
|
|
281
|
+
variant: _angular_core.InputSignal<IdsChipVariantType>;
|
|
282
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<IdsAutocompleteChipListComponent, never>;
|
|
283
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<IdsAutocompleteChipListComponent, "ids-autocomplete-chip-list", never, { "autocompleteTrigger": { "alias": "for"; "required": true; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
265
284
|
}
|
|
266
285
|
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
286
|
+
declare const IdsMessageVariant: {
|
|
287
|
+
readonly SURFACE: "surface";
|
|
288
|
+
readonly LIGHT: "light";
|
|
289
|
+
readonly DARK: "dark";
|
|
290
|
+
};
|
|
291
|
+
type IdsMessageVariantType = (typeof IdsMessageVariant)[keyof typeof IdsMessageVariant];
|
|
270
292
|
|
|
271
|
-
declare
|
|
293
|
+
declare class IdsAutocompleteHintComponent {
|
|
294
|
+
variant: _angular_core.InputSignal<IdsMessageVariantType>;
|
|
295
|
+
size: _angular_core.InputSignal<IdsSizeType>;
|
|
296
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<IdsAutocompleteHintComponent, never>;
|
|
297
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<IdsAutocompleteHintComponent, "ids-autocomplete-hint", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
298
|
+
}
|
|
272
299
|
|
|
273
300
|
declare class IdsFieldsetRowComponent extends ComponentBase {
|
|
274
301
|
protected get _hostName(): string;
|
|
@@ -444,13 +471,6 @@ declare class IdsMessageSuffixDirective {
|
|
|
444
471
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<IdsMessageSuffixDirective, "[idsMessageSuffix]", never, {}, {}, never, never, true, never>;
|
|
445
472
|
}
|
|
446
473
|
|
|
447
|
-
declare const IdsMessageVariant: {
|
|
448
|
-
readonly SURFACE: "surface";
|
|
449
|
-
readonly LIGHT: "light";
|
|
450
|
-
readonly DARK: "dark";
|
|
451
|
-
};
|
|
452
|
-
type IdsMessageVariantType = (typeof IdsMessageVariant)[keyof typeof IdsMessageVariant];
|
|
453
|
-
|
|
454
474
|
interface IdsMessageDefaultConfig {
|
|
455
475
|
size?: IdsSizeType;
|
|
456
476
|
variant?: IdsMessageVariantType;
|
|
@@ -580,5 +600,5 @@ declare function requiredValidator(control: AbstractControl): ValidationErrors |
|
|
|
580
600
|
declare function requiredTrueValidator(control: AbstractControl): ValidationErrors | null;
|
|
581
601
|
declare function requiredFalseValidator(control: AbstractControl): ValidationErrors | null;
|
|
582
602
|
|
|
583
|
-
export { AbstractErrorStateMatcher, AbstractSuccessStateMatcher, ErrorStateMatcher, ErrorStateTracker, IDS_AUTOCOMPLETE_DEFAULT_CONFIG, IDS_AUTOCOMPLETE_DEFAULT_CONFIG_FACTORY,
|
|
584
|
-
export type { IdsAutocompleteDefaultConfig,
|
|
603
|
+
export { AbstractErrorStateMatcher, AbstractSuccessStateMatcher, ErrorStateMatcher, ErrorStateTracker, IDS_AUTOCOMPLETE_DEFAULT_CONFIG, IDS_AUTOCOMPLETE_DEFAULT_CONFIG_FACTORY, IDS_FIELDSET_DEFAULT_CONFIG, IDS_FIELDSET_DEFAULT_CONFIG_FACTORY, IDS_FORM_FIELD_CONTROL, IDS_FORM_FIELD_DEFAULT_CONFIG, IDS_FORM_FIELD_DEFAULT_CONFIG_FACTORY, IDS_INPUT_DEFAULT_CONFIG, IDS_INPUT_DEFAULT_CONFIG_FACTORY, IDS_MESSAGE_DEFAULT_CONFIG, IDS_MESSAGE_DEFAULT_CONFIG_FACTORY, IDS_OPTION_GROUP, IDS_OPTION_PARENT_COMPONENT, IDS_PSEUDO_CHECKBOX_PARENT, IdsAutocompleteChipListComponent, IdsAutocompleteComponent, IdsAutocompleteHintComponent, IdsAutocompleteTriggerDirective, IdsErrorDefinitionDirective, IdsErrorMessageComponent, IdsFieldsetComponent, IdsFieldsetMessageDirective, IdsFieldsetRowComponent, IdsFormFieldActionDirective, IdsFormFieldComponent, IdsFormFieldControl, IdsFormFieldVariant, IdsHintMessageComponent, IdsInputDirective, IdsLabelDirective, IdsMessageDirective, IdsMessagePrefixDirective, IdsMessageSuffixDirective, IdsMessageVariant, IdsOptionComponent, IdsOptionGroupComponent, IdsOptionSelectionChange, IdsPrefixDirective, IdsPseudoCheckboxState, IdsSuccessMessageComponent, IdsSuffixDirective, IdsValidators, Message, PseudoCheckboxComponent, SuccessStateMatcher, SuccessStateTracker, _countGroupLabelsBeforeOption, _getOptionScrollPosition, formFieldControlClass, requiredFalseValidator, requiredTrueValidator, requiredValidator };
|
|
604
|
+
export type { IdsAutocompleteDefaultConfig, IdsErrorMessageMapping, IdsFieldsetDefaultConfig, IdsFormFieldDefaultConfig, IdsFormFieldVariantType, IdsInputDefaultConfig, IdsMessageDefaultConfig, IdsMessageVariantType, IdsOptionParentComponent, IdsPseudoCheckboxParent, IdsPseudoCheckboxStateType, MessageType };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@i-cell/ids-angular",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.24",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "i-Cell Design System UI Kit components for Angular",
|
|
6
6
|
"publishConfig": {
|
|
@@ -53,6 +53,10 @@
|
|
|
53
53
|
"types": "./accordion/index.d.ts",
|
|
54
54
|
"default": "./fesm2022/i-cell-ids-angular-accordion.mjs"
|
|
55
55
|
},
|
|
56
|
+
"./badge": {
|
|
57
|
+
"types": "./badge/index.d.ts",
|
|
58
|
+
"default": "./fesm2022/i-cell-ids-angular-badge.mjs"
|
|
59
|
+
},
|
|
56
60
|
"./avatar": {
|
|
57
61
|
"types": "./avatar/index.d.ts",
|
|
58
62
|
"default": "./fesm2022/i-cell-ids-angular-avatar.mjs"
|
|
@@ -61,10 +65,6 @@
|
|
|
61
65
|
"types": "./breadcrumb/index.d.ts",
|
|
62
66
|
"default": "./fesm2022/i-cell-ids-angular-breadcrumb.mjs"
|
|
63
67
|
},
|
|
64
|
-
"./badge": {
|
|
65
|
-
"types": "./badge/index.d.ts",
|
|
66
|
-
"default": "./fesm2022/i-cell-ids-angular-badge.mjs"
|
|
67
|
-
},
|
|
68
68
|
"./button": {
|
|
69
69
|
"types": "./button/index.d.ts",
|
|
70
70
|
"default": "./fesm2022/i-cell-ids-angular-button.mjs"
|
|
@@ -89,6 +89,10 @@
|
|
|
89
89
|
"types": "./datepicker/index.d.ts",
|
|
90
90
|
"default": "./fesm2022/i-cell-ids-angular-datepicker.mjs"
|
|
91
91
|
},
|
|
92
|
+
"./dialog": {
|
|
93
|
+
"types": "./dialog/index.d.ts",
|
|
94
|
+
"default": "./fesm2022/i-cell-ids-angular-dialog.mjs"
|
|
95
|
+
},
|
|
92
96
|
"./divider": {
|
|
93
97
|
"types": "./divider/index.d.ts",
|
|
94
98
|
"default": "./fesm2022/i-cell-ids-angular-divider.mjs"
|
|
@@ -125,14 +129,14 @@
|
|
|
125
129
|
"types": "./radio/index.d.ts",
|
|
126
130
|
"default": "./fesm2022/i-cell-ids-angular-radio.mjs"
|
|
127
131
|
},
|
|
128
|
-
"./segmented-control-toggle": {
|
|
129
|
-
"types": "./segmented-control-toggle/index.d.ts",
|
|
130
|
-
"default": "./fesm2022/i-cell-ids-angular-segmented-control-toggle.mjs"
|
|
131
|
-
},
|
|
132
132
|
"./segmented-control": {
|
|
133
133
|
"types": "./segmented-control/index.d.ts",
|
|
134
134
|
"default": "./fesm2022/i-cell-ids-angular-segmented-control.mjs"
|
|
135
135
|
},
|
|
136
|
+
"./segmented-control-toggle": {
|
|
137
|
+
"types": "./segmented-control-toggle/index.d.ts",
|
|
138
|
+
"default": "./fesm2022/i-cell-ids-angular-segmented-control-toggle.mjs"
|
|
139
|
+
},
|
|
136
140
|
"./select": {
|
|
137
141
|
"types": "./select/index.d.ts",
|
|
138
142
|
"default": "./fesm2022/i-cell-ids-angular-select.mjs"
|
|
@@ -153,10 +157,6 @@
|
|
|
153
157
|
"types": "./spinner/index.d.ts",
|
|
154
158
|
"default": "./fesm2022/i-cell-ids-angular-spinner.mjs"
|
|
155
159
|
},
|
|
156
|
-
"./dialog": {
|
|
157
|
-
"types": "./dialog/index.d.ts",
|
|
158
|
-
"default": "./fesm2022/i-cell-ids-angular-dialog.mjs"
|
|
159
|
-
},
|
|
160
160
|
"./switch": {
|
|
161
161
|
"types": "./switch/index.d.ts",
|
|
162
162
|
"default": "./fesm2022/i-cell-ids-angular-switch.mjs"
|
|
@@ -169,13 +169,13 @@
|
|
|
169
169
|
"types": "./table/index.d.ts",
|
|
170
170
|
"default": "./fesm2022/i-cell-ids-angular-table.mjs"
|
|
171
171
|
},
|
|
172
|
-
"./tooltip": {
|
|
173
|
-
"types": "./tooltip/index.d.ts",
|
|
174
|
-
"default": "./fesm2022/i-cell-ids-angular-tooltip.mjs"
|
|
175
|
-
},
|
|
176
172
|
"./tag": {
|
|
177
173
|
"types": "./tag/index.d.ts",
|
|
178
174
|
"default": "./fesm2022/i-cell-ids-angular-tag.mjs"
|
|
175
|
+
},
|
|
176
|
+
"./tooltip": {
|
|
177
|
+
"types": "./tooltip/index.d.ts",
|
|
178
|
+
"default": "./fesm2022/i-cell-ids-angular-tooltip.mjs"
|
|
179
179
|
}
|
|
180
180
|
}
|
|
181
181
|
}
|