@tedi-design-system/angular 7.2.0-rc.5 → 8.0.0-rc.2

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/tedi/index.d.ts CHANGED
@@ -2,7 +2,7 @@ import * as _angular_core from '@angular/core';
2
2
  import { AfterContentChecked, AfterViewInit, InputSignal, Signal, PipeTransform, OnInit, OnDestroy, TemplateRef, ElementRef, Injector, WritableSignal, InjectionToken, AfterViewChecked, AfterContentInit, QueryList, EnvironmentProviders } from '@angular/core';
3
3
  import { _IdGenerator } from '@angular/cdk/a11y';
4
4
  import * as _tedi_design_system_angular_tedi from '@tedi-design-system/angular/tedi';
5
- import { ControlValueAccessor, NgControl } from '@angular/forms';
5
+ import { ControlValueAccessor } from '@angular/forms';
6
6
  import * as _tanstack_table_core from '@tanstack/table-core';
7
7
  import { CdkDragDrop } from '@angular/cdk/drag-drop';
8
8
  import { Table, VisibilityState, ColumnOrderState, ColumnSizingState, RowSelectionState, ExpandedState, ColumnFiltersState, SortingState, PaginationState, Column, ColumnDef, CellContext, Row } from '@tanstack/angular-table';
@@ -3693,8 +3693,19 @@ declare class PaginationComponent {
3693
3693
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<PaginationComponent, "tedi-pagination", never, { "pageCount": { "alias": "pageCount"; "required": true; "isSignal": true; }; "page": { "alias": "page"; "required": false; "isSignal": true; }; "totalItems": { "alias": "totalItems"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; "isSignal": true; }; "boundaryCount": { "alias": "boundaryCount"; "required": false; "isSignal": true; }; "siblingCount": { "alias": "siblingCount"; "required": false; "isSignal": true; }; "labels": { "alias": "labels"; "required": false; "isSignal": true; }; "background": { "alias": "background"; "required": false; "isSignal": true; }; "dividerPosition": { "alias": "dividerPosition"; "required": false; "isSignal": true; }; "align": { "alias": "align"; "required": false; "isSignal": true; }; "hideResults": { "alias": "hideResults"; "required": false; "isSignal": true; }; "hidePageSize": { "alias": "hidePageSize"; "required": false; "isSignal": true; }; "hidePager": { "alias": "hidePager"; "required": false; "isSignal": true; }; "hideArrows": { "alias": "hideArrows"; "required": false; "isSignal": true; }; "disableArrowsAtBoundary": { "alias": "disableArrowsAtBoundary"; "required": false; "isSignal": true; }; "arrowVariant": { "alias": "arrowVariant"; "required": false; "isSignal": true; }; "showArrowLabels": { "alias": "showArrowLabels"; "required": false; "isSignal": true; }; "previousIcon": { "alias": "previousIcon"; "required": false; "isSignal": true; }; "nextIcon": { "alias": "nextIcon"; "required": false; "isSignal": true; }; "showModalTitle": { "alias": "showModalTitle"; "required": false; "isSignal": true; }; "xs": { "alias": "xs"; "required": false; "isSignal": true; }; "sm": { "alias": "sm"; "required": false; "isSignal": true; }; "md": { "alias": "md"; "required": false; "isSignal": true; }; "lg": { "alias": "lg"; "required": false; "isSignal": true; }; "xl": { "alias": "xl"; "required": false; "isSignal": true; }; "xxl": { "alias": "xxl"; "required": false; "isSignal": true; }; }, { "page": "pageChange"; "pageSize": "pageSizeChange"; }, ["customResults"], ["[tediPaginationResults]"], true, never>;
3694
3694
  }
3695
3695
 
3696
+ type InputKeys<TComponent> = keyof {
3697
+ [K in keyof TComponent as TComponent[K] extends InputSignal<infer _> ? K : never]: TComponent[K];
3698
+ };
3699
+ type InputValue<TComponent, K extends keyof TComponent> = TComponent[K] extends InputSignal<infer U> ? U : never;
3700
+ /**
3701
+ * The inputs of a component as a plain object type. Inputs that accept
3702
+ * `undefined` come out optional, so a caller only has to name the ones that
3703
+ * matter.
3704
+ */
3696
3705
  type ComponentInputs<TComponent> = {
3697
- [K in keyof TComponent as TComponent[K] extends InputSignal<infer _> ? K : never]: TComponent[K] extends InputSignal<infer U> ? U : never;
3706
+ [K in InputKeys<TComponent> as undefined extends InputValue<TComponent, K> ? K : never]?: InputValue<TComponent, K>;
3707
+ } & {
3708
+ [K in InputKeys<TComponent> as undefined extends InputValue<TComponent, K> ? never : K]: InputValue<TComponent, K>;
3698
3709
  };
3699
3710
 
3700
3711
  type TableSize = "medium" | "small";
@@ -5736,7 +5747,8 @@ declare class DateInputComponent implements AfterViewChecked {
5736
5747
 
5737
5748
  /**
5738
5749
  * Interface implemented by controls that can be used inside `tedi-form-field`.
5739
- * Allows the form field container to interact with the underlying control.
5750
+ * Members are named after Angular's `FormValueControl`
5751
+ * so the same control shape works once Signal Forms is available to us.
5740
5752
  */
5741
5753
  interface FormFieldControl<T = unknown> {
5742
5754
  /**
@@ -5747,21 +5759,32 @@ interface FormFieldControl<T = unknown> {
5747
5759
  * Whether the control is disabled.
5748
5760
  */
5749
5761
  disabled: Signal<boolean>;
5750
- /** Reactive invalid state (driven by FormField) */
5762
+ /**
5763
+ * Whether the control is in an error state. Derived by the control from its
5764
+ * own reactive-forms state, its `invalid` input and its container.
5765
+ */
5751
5766
  invalid: Signal<boolean>;
5752
- /** Called by FormField to update invalid state */
5753
- setInvalidState(isInvalid: boolean): void;
5767
+ touched?: Signal<boolean>;
5768
+ dirty?: Signal<boolean>;
5769
+ required?: Signal<boolean>;
5770
+ maxLength?: Signal<number | undefined>;
5754
5771
  /**
5755
- * Optional method used by the form field clear button.
5756
- * If implemented, the form field can trigger clearing the value.
5772
+ * Clears the value. Implemented by controls that can be cleared, and called
5773
+ * by `tedi-form-field`'s clear button.
5757
5774
  */
5758
- clearField?(): void;
5775
+ reset?(): void;
5759
5776
  /**
5760
- * Optional method used when the field box itself is clicked. If implemented,
5761
- * clicking the box padding — which is not part of the control's own hit area
5762
- * moves focus into the control, the way clicking the value does.
5777
+ * Moves focus into the control. Called when the padding around the control is
5778
+ * clicked that area is outside the control's own hit area, so clicking it
5779
+ * would otherwise leave the field unfocused.
5763
5780
  */
5764
5781
  focus?(): void;
5782
+ /**
5783
+ * Receives the ids of the elements describing this control (feedback text,
5784
+ * character counter). The control merges them into its own
5785
+ * `aria-describedby`; nothing is pushed when the control stands alone.
5786
+ */
5787
+ setDescribedBy?(ids: string[]): void;
5765
5788
  }
5766
5789
  /**
5767
5790
  * Injection token used by `tedi-form-field` to obtain
@@ -5769,6 +5792,21 @@ interface FormFieldControl<T = unknown> {
5769
5792
  */
5770
5793
  declare const TEDI_FORM_FIELD_CONTROL: InjectionToken<FormFieldControl<unknown>>;
5771
5794
 
5795
+ type InputSize = "small" | "large" | "default";
5796
+ interface FieldContext {
5797
+ /** The control's own `size` input wins over this. */
5798
+ size: Signal<InputSize>;
5799
+ /** When true the control must never apply its surface, rather than reset it. */
5800
+ ownsSurface: Signal<boolean>;
5801
+ /** From an error feedback text, an exceeded character limit or an input group. */
5802
+ invalid: Signal<boolean>;
5803
+ /** From the projected feedback text — only a wrapper can know this. */
5804
+ valid: Signal<boolean>;
5805
+ /** From an input group that disables everything inside it. */
5806
+ disabled: Signal<boolean>;
5807
+ }
5808
+ declare const TEDI_FIELD_CONTEXT: InjectionToken<FieldContext>;
5809
+
5772
5810
  type DateFieldValue = Date | Date[] | DateRange | null;
5773
5811
  type DateFieldFormatter = (value: DateFieldValue) => string;
5774
5812
  type DateFieldParser = (value: string) => DateFieldValue | undefined;
@@ -5779,7 +5817,9 @@ type DateFieldCalendarTrigger = "input" | "button";
5779
5817
  type DateFieldModalInput = boolean | "sm" | "md" | "lg" | "xl";
5780
5818
  type DateFieldUseNativePicker = boolean | "sm" | "md" | "lg" | "xl";
5781
5819
  type DateFieldSize = "default" | "small";
5782
- declare class DateFieldComponent implements ControlValueAccessor, FormFieldControl<DateFieldValue> {
5820
+ declare class DateFieldComponent implements OnInit, ControlValueAccessor, FormFieldControl<DateFieldValue> {
5821
+ private readonly fieldContext;
5822
+ private readonly derived;
5783
5823
  /**
5784
5824
  * Unique ID for label association and accessibility. Bind the sibling
5785
5825
  * `<label tedi-label [for]>` to the same value.
@@ -5838,8 +5878,16 @@ declare class DateFieldComponent implements ControlValueAccessor, FormFieldContr
5838
5878
  * bind it there too, since DateField owns no label.
5839
5879
  */
5840
5880
  readonly required: _angular_core.InputSignal<boolean>;
5841
- /** Field size — matches the surrounding `tedi-form-field`. */
5842
- readonly size: _angular_core.InputSignal<DateFieldSize>;
5881
+ /**
5882
+ * Field size. Falls back to the size of a wrapping `tedi-form-field` when not
5883
+ * set here.
5884
+ */
5885
+ readonly size: _angular_core.InputSignal<DateFieldSize | undefined>;
5886
+ /**
5887
+ * Forces the error state on, or off, regardless of the reactive-forms state.
5888
+ * Leave unset to let the control derive it.
5889
+ */
5890
+ readonly invalidInput: _angular_core.InputSignal<boolean>;
5843
5891
  /** Disables all dates before this date (inclusive boundary stays enabled). */
5844
5892
  readonly minDate: _angular_core.InputSignal<Date | undefined>;
5845
5893
  /** Disables all dates after this date (inclusive boundary stays enabled). */
@@ -5971,14 +6019,20 @@ declare class DateFieldComponent implements ControlValueAccessor, FormFieldContr
5971
6019
  private readonly openedBy;
5972
6020
  readonly overlayPositions: _angular_core.Signal<ConnectedPosition[]>;
5973
6021
  private readonly cvaDisabled;
5974
- private readonly formInvalid;
5975
6022
  private modalRef;
5976
6023
  private scrollListener?;
5977
6024
  private onChange;
5978
6025
  private onTouched;
5979
6026
  readonly fieldDisabled: _angular_core.Signal<boolean>;
5980
6027
  readonly disabled: _angular_core.Signal<boolean>;
6028
+ readonly touched: _angular_core.Signal<boolean>;
6029
+ readonly dirty: _angular_core.Signal<boolean>;
5981
6030
  readonly invalid: _angular_core.Signal<boolean>;
6031
+ readonly resolvedSize: _angular_core.Signal<InputSize>;
6032
+ readonly paintsSurface: _angular_core.Signal<boolean>;
6033
+ readonly valid: _angular_core.Signal<boolean>;
6034
+ readonly childContext: FieldContext;
6035
+ ngOnInit(): void;
5982
6036
  readonly resolvedDisabledMatchers: _angular_core.Signal<Matcher[]>;
5983
6037
  readonly useNativePickerResolved: _angular_core.Signal<boolean>;
5984
6038
  readonly useNativePickerEffective: _angular_core.Signal<boolean>;
@@ -6002,9 +6056,8 @@ declare class DateFieldComponent implements ControlValueAccessor, FormFieldContr
6002
6056
  registerOnChange(fn: (value: DateFieldValue) => void): void;
6003
6057
  registerOnTouched(fn: () => void): void;
6004
6058
  setDisabledState(isDisabled: boolean): void;
6005
- setInvalidState(isInvalid: boolean): void;
6006
6059
  focus(): void;
6007
- clearField(): void;
6060
+ reset(): void;
6008
6061
  handleClear(): void;
6009
6062
  handleIconClick(): void;
6010
6063
  private togglePicker;
@@ -6042,7 +6095,7 @@ declare class DateFieldComponent implements ControlValueAccessor, FormFieldContr
6042
6095
  private toIsoDate;
6043
6096
  private queryNativeInput;
6044
6097
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DateFieldComponent, never>;
6045
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DateFieldComponent, "tedi-date-field", never, { "inputId": { "alias": "inputId"; "required": true; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "multiRow": { "alias": "multiRow"; "required": false; "isSignal": true; }; "tagEllipsis": { "alias": "tagEllipsis"; "required": false; "isSignal": true; }; "isTagRemovable": { "alias": "isTagRemovable"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "disabledMatchers": { "alias": "disabledMatchers"; "required": false; "isSignal": true; }; "inputDisabled": { "alias": "inputDisabled"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "minDate": { "alias": "minDate"; "required": false; "isSignal": true; }; "maxDate": { "alias": "maxDate"; "required": false; "isSignal": true; }; "disablePast": { "alias": "disablePast"; "required": false; "isSignal": true; }; "disableFuture": { "alias": "disableFuture"; "required": false; "isSignal": true; }; "shouldDisableMonth": { "alias": "shouldDisableMonth"; "required": false; "isSignal": true; }; "shouldDisableYear": { "alias": "shouldDisableYear"; "required": false; "isSignal": true; }; "minYear": { "alias": "minYear"; "required": false; "isSignal": true; }; "maxYear": { "alias": "maxYear"; "required": false; "isSignal": true; }; "availableDays": { "alias": "availableDays"; "required": false; "isSignal": true; }; "unavailableDays": { "alias": "unavailableDays"; "required": false; "isSignal": true; }; "selectionLevel": { "alias": "selectionLevel"; "required": false; "isSignal": true; }; "monthYearSelectType": { "alias": "monthYearSelectType"; "required": false; "isSignal": true; }; "initialMonth": { "alias": "initialMonth"; "required": false; "isSignal": true; }; "localeCode": { "alias": "localeCode"; "required": false; "isSignal": true; }; "closeOnSelect": { "alias": "closeOnSelect"; "required": false; "isSignal": true; }; "showOutsideDays": { "alias": "showOutsideDays"; "required": false; "isSignal": true; }; "showWeekNumbers": { "alias": "showWeekNumbers"; "required": false; "isSignal": true; }; "numberOfMonths": { "alias": "numberOfMonths"; "required": false; "isSignal": true; }; "enableCalendar": { "alias": "enableCalendar"; "required": false; "isSignal": true; }; "calendarTrigger": { "alias": "calendarTrigger"; "required": false; "isSignal": true; }; "useNativePicker": { "alias": "useNativePicker"; "required": false; "isSignal": true; }; "hideOnScroll": { "alias": "hideOnScroll"; "required": false; "isSignal": true; }; "modal": { "alias": "modal"; "required": false; "isSignal": true; }; "fullscreen": { "alias": "fullscreen"; "required": false; "isSignal": true; }; "formatDate": { "alias": "formatDate"; "required": false; "isSignal": true; }; "parseDate": { "alias": "parseDate"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "openChange": "openChange"; }, never, ["[tediCalendarFooter]"], true, never>;
6098
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DateFieldComponent, "tedi-date-field", never, { "inputId": { "alias": "inputId"; "required": true; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "multiRow": { "alias": "multiRow"; "required": false; "isSignal": true; }; "tagEllipsis": { "alias": "tagEllipsis"; "required": false; "isSignal": true; }; "isTagRemovable": { "alias": "isTagRemovable"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "disabledMatchers": { "alias": "disabledMatchers"; "required": false; "isSignal": true; }; "inputDisabled": { "alias": "inputDisabled"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "invalidInput": { "alias": "invalid"; "required": false; "isSignal": true; }; "minDate": { "alias": "minDate"; "required": false; "isSignal": true; }; "maxDate": { "alias": "maxDate"; "required": false; "isSignal": true; }; "disablePast": { "alias": "disablePast"; "required": false; "isSignal": true; }; "disableFuture": { "alias": "disableFuture"; "required": false; "isSignal": true; }; "shouldDisableMonth": { "alias": "shouldDisableMonth"; "required": false; "isSignal": true; }; "shouldDisableYear": { "alias": "shouldDisableYear"; "required": false; "isSignal": true; }; "minYear": { "alias": "minYear"; "required": false; "isSignal": true; }; "maxYear": { "alias": "maxYear"; "required": false; "isSignal": true; }; "availableDays": { "alias": "availableDays"; "required": false; "isSignal": true; }; "unavailableDays": { "alias": "unavailableDays"; "required": false; "isSignal": true; }; "selectionLevel": { "alias": "selectionLevel"; "required": false; "isSignal": true; }; "monthYearSelectType": { "alias": "monthYearSelectType"; "required": false; "isSignal": true; }; "initialMonth": { "alias": "initialMonth"; "required": false; "isSignal": true; }; "localeCode": { "alias": "localeCode"; "required": false; "isSignal": true; }; "closeOnSelect": { "alias": "closeOnSelect"; "required": false; "isSignal": true; }; "showOutsideDays": { "alias": "showOutsideDays"; "required": false; "isSignal": true; }; "showWeekNumbers": { "alias": "showWeekNumbers"; "required": false; "isSignal": true; }; "numberOfMonths": { "alias": "numberOfMonths"; "required": false; "isSignal": true; }; "enableCalendar": { "alias": "enableCalendar"; "required": false; "isSignal": true; }; "calendarTrigger": { "alias": "calendarTrigger"; "required": false; "isSignal": true; }; "useNativePicker": { "alias": "useNativePicker"; "required": false; "isSignal": true; }; "hideOnScroll": { "alias": "hideOnScroll"; "required": false; "isSignal": true; }; "modal": { "alias": "modal"; "required": false; "isSignal": true; }; "fullscreen": { "alias": "fullscreen"; "required": false; "isSignal": true; }; "formatDate": { "alias": "formatDate"; "required": false; "isSignal": true; }; "parseDate": { "alias": "parseDate"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "openChange": "openChange"; }, never, ["[tediCalendarFooter]"], true, never>;
6046
6099
  }
6047
6100
 
6048
6101
  declare class DatePickerCalendarGridComponent {
@@ -6228,6 +6281,13 @@ declare class DatePickerComponent implements OnInit, ControlValueAccessor {
6228
6281
  type FeedbackTextType = "hint" | "valid" | "error";
6229
6282
  type FeedbackTextPosition = "left" | "right";
6230
6283
  declare class FeedbackTextComponent {
6284
+ /**
6285
+ * Id of the element. Generated when not set, so a container can reference this
6286
+ * text from a control's `aria-describedby`.
6287
+ */
6288
+ readonly id: _angular_core.InputSignal<string | null | undefined>;
6289
+ private readonly fallbackId;
6290
+ readonly elementId: _angular_core.Signal<string>;
6231
6291
  /**
6232
6292
  * Helper text
6233
6293
  */
@@ -6246,17 +6306,21 @@ declare class FeedbackTextComponent {
6246
6306
  ariaLive: _angular_core.Signal<"assertive" | "polite">;
6247
6307
  classes: _angular_core.Signal<string>;
6248
6308
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<FeedbackTextComponent, never>;
6249
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<FeedbackTextComponent, "tedi-feedback-text", never, { "text": { "alias": "text"; "required": true; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6309
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<FeedbackTextComponent, "tedi-feedback-text", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": true; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6250
6310
  }
6251
6311
 
6252
6312
  type LabelSize = "small" | "default";
6253
6313
  type LabelColor = "primary" | "secondary";
6314
+ type LabelVisuallyHidden = boolean | "reserve-space";
6254
6315
  declare class LabelComponent {
6316
+ private readonly field;
6255
6317
  /**
6256
- * Size of the label.
6318
+ * Size of the label. Falls back to the size of a wrapping `tedi-form-field`,
6319
+ * so the label and the control scale together without being set twice.
6257
6320
  * @default default
6258
6321
  */
6259
- size: _angular_core.InputSignal<LabelSize>;
6322
+ size: _angular_core.InputSignal<LabelSize | undefined>;
6323
+ readonly resolvedSize: _angular_core.Signal<LabelSize>;
6260
6324
  /**
6261
6325
  * Whether label is required.
6262
6326
  * @default false
@@ -6267,9 +6331,16 @@ declare class LabelComponent {
6267
6331
  * @default secondary
6268
6332
  */
6269
6333
  color: _angular_core.InputSignal<LabelColor>;
6334
+ /**
6335
+ * Hides the label visually while keeping it in the accessibility tree, so the
6336
+ * control it names stays named. `"reserve-space"` also keeps the label's line
6337
+ * of layout, to align the field with labelled siblings in the same row.
6338
+ * @default false
6339
+ */
6340
+ visuallyHidden: _angular_core.InputSignal<LabelVisuallyHidden>;
6270
6341
  classes: _angular_core.Signal<string>;
6271
6342
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<LabelComponent, never>;
6272
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<LabelComponent, "[tedi-label]", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
6343
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<LabelComponent, "[tedi-label]", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "visuallyHidden": { "alias": "visuallyHidden"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
6273
6344
  }
6274
6345
 
6275
6346
  declare class LabelRowComponent {
@@ -6367,9 +6438,7 @@ declare class NumberFieldComponent implements ControlValueAccessor {
6367
6438
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<NumberFieldComponent, "tedi-number-field", never, { "inputId": { "alias": "inputId"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "step": { "alias": "step"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "suffix": { "alias": "suffix"; "required": false; "isSignal": true; }; "feedbackText": { "alias": "feedbackText"; "required": false; "isSignal": true; }; "fullWidth": { "alias": "fullWidth"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
6368
6439
  }
6369
6440
 
6370
- type InputSize = "small" | "large" | "default";
6371
6441
  type InputState = "valid" | "error" | "default";
6372
- type ValidationState = "invalid" | "valid" | "neutral";
6373
6442
  interface FormFieldIcon {
6374
6443
  name: string;
6375
6444
  size?: IconSize;
@@ -6377,23 +6446,27 @@ interface FormFieldIcon {
6377
6446
  type?: IconType;
6378
6447
  variant?: IconVariant;
6379
6448
  }
6380
- declare class FormFieldComponent implements AfterContentInit {
6449
+ type ValidationState = "invalid" | "valid" | "neutral";
6450
+ declare class FormFieldComponent implements FieldContext {
6381
6451
  /**
6382
- * The size of the form field.
6452
+ * Size of the whole field — the label, the control and the box row scale
6453
+ * together. A control's own `size` input overrides it.
6383
6454
  * @default "default"
6384
6455
  */
6385
6456
  size: _angular_core.InputSignal<InputSize>;
6386
6457
  /**
6387
- * Icon name or configuration object.
6458
+ * Icon name, or a configuration object, shown at the end of the field.
6388
6459
  */
6389
6460
  icon: _angular_core.InputSignal<string | FormFieldIcon | undefined>;
6390
6461
  /**
6391
- * Whether the form field includes a clear button.
6462
+ * Whether the field shows a clear button once the control holds a value.
6392
6463
  * @default false
6393
6464
  */
6394
6465
  clearable: _angular_core.InputSignal<boolean>;
6395
6466
  /**
6396
- * Custom CSS classes for the input.
6467
+ * Custom CSS classes for the field box.
6468
+ *
6469
+ * @deprecated Style the control directly — it owns its own surface now.
6397
6470
  */
6398
6471
  inputClass: _angular_core.InputSignal<string | null>;
6399
6472
  /**
@@ -6403,32 +6476,42 @@ declare class FormFieldComponent implements AfterContentInit {
6403
6476
  */
6404
6477
  characterLimit: _angular_core.InputSignal<number | undefined>;
6405
6478
  readonly control: _angular_core.Signal<FormFieldControl<unknown> | undefined>;
6406
- readonly controlElement: _angular_core.Signal<ElementRef<any> | undefined>;
6407
- ngControl?: NgControl;
6408
- feedback?: FeedbackTextComponent;
6409
- feedbackElement?: ElementRef<HTMLElement>;
6410
- private readonly destroyRef;
6479
+ readonly feedback: _angular_core.Signal<FeedbackTextComponent | undefined>;
6411
6480
  private readonly inputGroup;
6412
- private readonly fallbackId;
6481
+ private readonly id;
6413
6482
  constructor();
6414
6483
  /**
6415
- * A textarea has no room for the trailing clear button / icon (per design),
6416
- * so the form field suppresses both when it wraps one.
6484
+ * Inline additions have to render inside the border, next to the control, so
6485
+ * they need a row that carries the surface. Without them the control paints
6486
+ * itself and no box is rendered at all.
6417
6487
  */
6418
- readonly isTextarea: _angular_core.WritableSignal<boolean>;
6419
- ngAfterContentInit(): void;
6420
- private updateValidationState;
6421
- private computeInvalid;
6422
- readonly resolvedIcon: _angular_core.Signal<FormFieldIcon | undefined>;
6488
+ readonly hasBox: _angular_core.Signal<boolean>;
6489
+ readonly ownsSurface: _angular_core.Signal<boolean>;
6490
+ readonly disabled: _angular_core.Signal<boolean>;
6491
+ readonly invalid: _angular_core.Signal<boolean>;
6492
+ readonly valid: _angular_core.Signal<boolean>;
6423
6493
  readonly characterCount: _angular_core.Signal<number>;
6424
6494
  readonly characterCountExceeded: _angular_core.Signal<boolean>;
6425
- /** Base for the generated feedback / counter ids — the control's own id, or a fallback. */
6426
- private get baseId();
6427
6495
  readonly characterCountId: _angular_core.Signal<string | null>;
6428
- private syncAriaDescribedBy;
6496
+ readonly describedByIds: _angular_core.Signal<string[]>;
6429
6497
  readonly validationState: _angular_core.Signal<ValidationState>;
6430
- showClearButton: _angular_core.Signal<boolean>;
6431
6498
  readonly isDisabled: _angular_core.Signal<boolean>;
6499
+ readonly boxClasses: _angular_core.Signal<{
6500
+ "tedi-form-field__box": boolean;
6501
+ "tedi-field-surface": boolean;
6502
+ "tedi-field-surface--invalid": boolean;
6503
+ "tedi-field-surface--valid": boolean;
6504
+ "tedi-field-surface--disabled": boolean;
6505
+ }>;
6506
+ readonly resolvedIcon: _angular_core.Signal<FormFieldIcon | undefined>;
6507
+ readonly iconSize: _angular_core.Signal<IconSize>;
6508
+ readonly showClearButton: _angular_core.Signal<boolean>;
6509
+ clear(): void;
6510
+ /**
6511
+ * The box padding and the layout wrappers around the control are outside its
6512
+ * hit area, so clicking there would leave the field unfocused.
6513
+ */
6514
+ handleBoxMouseDown(event: MouseEvent): void;
6432
6515
  readonly hostClasses: _angular_core.Signal<{
6433
6516
  "tedi-form-field": boolean;
6434
6517
  "tedi-form-field--valid": boolean;
@@ -6436,22 +6519,9 @@ declare class FormFieldComponent implements AfterContentInit {
6436
6519
  "tedi-form-field--disabled": boolean;
6437
6520
  "tedi-form-field--small": boolean;
6438
6521
  "tedi-form-field--large": boolean;
6439
- "tedi-form-field--with-icon": boolean;
6440
- }>;
6441
- readonly inputClasses: _angular_core.Signal<{
6442
- "tedi-form-field__input": boolean;
6443
6522
  }>;
6444
- clear(): void;
6445
- /**
6446
- * The control never fills the whole box — the box padding and the layout
6447
- * wrappers around the control are outside its hit area — so clicking there
6448
- * would otherwise leave the field unfocused. Focus the control instead, unless
6449
- * the click landed on something interactive that handles it itself (the
6450
- * control, the clear/calendar buttons, a tag's close button).
6451
- */
6452
- handleBoxMouseDown(event: MouseEvent): void;
6453
6523
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<FormFieldComponent, never>;
6454
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<FormFieldComponent, "tedi-form-field", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "inputClass": { "alias": "inputClass"; "required": false; "isSignal": true; }; "characterLimit": { "alias": "characterLimit"; "required": false; "isSignal": true; }; }, {}, ["control", "controlElement", "ngControl", "feedback", "feedbackElement"], ["label[tedi-label]", "input[tedi-text-field], textarea[tedi-textarea], tedi-time-field, tedi-date-field", "tedi-feedback-text", "*"], true, never>;
6524
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<FormFieldComponent, "tedi-form-field", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "inputClass": { "alias": "inputClass"; "required": false; "isSignal": true; }; "characterLimit": { "alias": "characterLimit"; "required": false; "isSignal": true; }; }, {}, ["control", "feedback"], ["label[tedi-label], tedi-label-row", "*", "tedi-feedback-text", "[tediFormFieldExtra]"], true, never>;
6455
6525
  }
6456
6526
 
6457
6527
  type SearchSize = InputSize;
@@ -7106,6 +7176,7 @@ declare class SliderComponent implements ControlValueAccessor, OnDestroy {
7106
7176
  * @default false
7107
7177
  */
7108
7178
  hideLabel: _angular_core.InputSignal<SliderHideLabel>;
7179
+ readonly labelVisuallyHidden: _angular_core.Signal<LabelVisuallyHidden>;
7109
7180
  /**
7110
7181
  * Marks the field as required.
7111
7182
  * @default false
@@ -7277,6 +7348,15 @@ declare class ToggleComponent implements ControlValueAccessor {
7277
7348
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<ToggleComponent, "tedi-toggle", never, { "inputId": { "alias": "inputId"; "required": true; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, { "checked": "checkedChange"; }, never, never, true, never>;
7278
7349
  }
7279
7350
 
7351
+ /**
7352
+ * Marks content projected into `tedi-form-field` as an extra addition, rendered
7353
+ * below the feedback row.
7354
+ */
7355
+ declare class FormFieldExtraDirective {
7356
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<FormFieldExtraDirective, never>;
7357
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<FormFieldExtraDirective, "[tediFormFieldExtra]", never, {}, {}, never, never, true, never>;
7358
+ }
7359
+
7280
7360
  /**
7281
7361
  * Shared behavior for the prefix/suffix addon directives: reads the group's
7282
7362
  * disabled state and detects whether the addon holds plain text (so the
@@ -7354,16 +7434,31 @@ declare class InputGroupComponent implements InputGroupContext {
7354
7434
  protected readonly prefix: _angular_core.Signal<InputGroupPrefixDirective | undefined>;
7355
7435
  protected readonly suffix: _angular_core.Signal<InputGroupSuffixDirective | undefined>;
7356
7436
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<InputGroupComponent, never>;
7357
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<InputGroupComponent, "tedi-input-group", never, { "addons": { "alias": "addons"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; }, {}, ["prefix", "suffix"], ["label[tedi-label]", "[tediInputGroupPrefix]", "tedi-form-field, tedi-select", "[tediInputGroupSuffix]", "tedi-feedback-text"], true, never>;
7437
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<InputGroupComponent, "tedi-input-group", never, { "addons": { "alias": "addons"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; }, {}, ["prefix", "suffix"], ["label[tedi-label], tedi-label-row", "[tediInputGroupPrefix]", "tedi-form-field, tedi-select", "[tediInputGroupSuffix]", "tedi-feedback-text"], true, never>;
7438
+ }
7439
+
7440
+ interface ControlDescribedBy {
7441
+ attribute: Signal<string | null>;
7442
+ set(ids: string[]): void;
7358
7443
  }
7359
7444
 
7360
- declare class TextFieldComponent implements ControlValueAccessor, FormFieldControl {
7445
+ declare class TextFieldComponent implements OnInit, ControlValueAccessor, FormFieldControl {
7361
7446
  private el;
7362
- private group;
7447
+ private readonly fieldContext;
7363
7448
  /**
7364
7449
  * Value of the input field. Supports two-way binding, use with form controls.
7365
7450
  */
7366
7451
  value: _angular_core.ModelSignal<string>;
7452
+ /**
7453
+ * Size of the field. Falls back to the size of a wrapping `tedi-form-field`
7454
+ * when not set here.
7455
+ */
7456
+ size: _angular_core.InputSignal<InputSize | undefined>;
7457
+ /**
7458
+ * Forces the error state on, or off, regardless of the reactive-forms state.
7459
+ * Leave unset to let the control derive it.
7460
+ */
7461
+ readonly invalidInput: _angular_core.InputSignal<boolean>;
7367
7462
  /**
7368
7463
  * Whether to hide arrows for number inputs.
7369
7464
  * @default true
@@ -7379,8 +7474,16 @@ declare class TextFieldComponent implements ControlValueAccessor, FormFieldContr
7379
7474
  */
7380
7475
  readonly disabledInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
7381
7476
  readonly disabled: _angular_core.Signal<boolean>;
7382
- readonly invalid: _angular_core.WritableSignal<boolean>;
7383
- setInvalidState(isInvalid: boolean): void;
7477
+ private readonly derived;
7478
+ readonly describedBy: ControlDescribedBy;
7479
+ readonly touched: _angular_core.Signal<boolean>;
7480
+ readonly dirty: _angular_core.Signal<boolean>;
7481
+ readonly invalid: _angular_core.Signal<boolean>;
7482
+ readonly resolvedSize: _angular_core.Signal<InputSize>;
7483
+ readonly paintsSurface: _angular_core.Signal<boolean>;
7484
+ readonly valid: _angular_core.Signal<boolean>;
7485
+ ngOnInit(): void;
7486
+ setDescribedBy(ids: string[]): void;
7384
7487
  private formDisabled;
7385
7488
  private onChange;
7386
7489
  private onTouched;
@@ -7393,26 +7496,34 @@ declare class TextFieldComponent implements ControlValueAccessor, FormFieldContr
7393
7496
  handleInputChange(event: Event): void;
7394
7497
  handleBlur(): void;
7395
7498
  focus(): void;
7396
- clearField(): void;
7499
+ reset(): void;
7397
7500
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TextFieldComponent, never>;
7398
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<TextFieldComponent, "input[tedi-text-field]", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "arrowsHidden": { "alias": "arrowsHidden"; "required": false; "isSignal": true; }; "disabledInput": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "clear": "clear"; }, never, never, true, never>;
7501
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TextFieldComponent, "input[tedi-text-field]", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "invalidInput": { "alias": "invalid"; "required": false; "isSignal": true; }; "arrowsHidden": { "alias": "arrowsHidden"; "required": false; "isSignal": true; }; "disabledInput": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "clear": "clear"; }, never, never, true, never>;
7399
7502
  }
7400
7503
 
7401
- declare class TextareaComponent implements ControlValueAccessor, FormFieldControl {
7504
+ type TextareaSize = Exclude<InputSize, "large">;
7505
+ declare class TextareaComponent implements OnInit, ControlValueAccessor, FormFieldControl {
7402
7506
  private el;
7403
7507
  private renderer;
7508
+ private readonly fieldContext;
7404
7509
  /**
7405
7510
  * Value of the textarea. Supports two-way binding, use with form controls.
7406
7511
  */
7407
7512
  value: _angular_core.ModelSignal<string>;
7513
+ /**
7514
+ * Size of the field. Falls back to the size of a wrapping `tedi-form-field`
7515
+ * when not set here.
7516
+ */
7517
+ size: _angular_core.InputSignal<TextareaSize | undefined>;
7518
+ /**
7519
+ * Forces the error state on, or off, regardless of the reactive-forms state.
7520
+ * Leave unset to let the control derive it.
7521
+ */
7522
+ readonly invalidInput: _angular_core.InputSignal<boolean>;
7408
7523
  /**
7409
7524
  * Whether the user can resize the textarea. Only vertical resizing is
7410
7525
  * supported; set to `false` to disable resizing entirely.
7411
7526
  *
7412
- * The resize is applied to the surrounding `tedi-form-field` box (which owns
7413
- * the border) while the textarea fills it, so the visible field resizes with
7414
- * the drag.
7415
- *
7416
7527
  * @default true
7417
7528
  */
7418
7529
  resizable: _angular_core.InputSignal<boolean>;
@@ -7429,39 +7540,55 @@ declare class TextareaComponent implements ControlValueAccessor, FormFieldContro
7429
7540
  */
7430
7541
  autoGrow: _angular_core.InputSignal<boolean>;
7431
7542
  /**
7432
- * Minimum number of visible rows while `autoGrow` is enabled.
7543
+ * Number of rows the field rests at, and the fewest it can ever show. With no
7544
+ * `height` set this is what sizes the textarea, so it is the input to reach
7545
+ * for when a field needs to be taller or shorter — in every mode, not just
7546
+ * while `autoGrow` is on.
7547
+ *
7433
7548
  * @default 3
7434
7549
  */
7435
7550
  minRows: _angular_core.InputSignal<number>;
7436
7551
  /**
7437
- * Maximum number of visible rows before the field scrolls, while `autoGrow`
7438
- * is enabled.
7552
+ * Most rows the field shows before it starts scrolling. Caps `autoGrow`'s
7553
+ * growth and how far the resize grip can be dragged.
7554
+ *
7439
7555
  * @default 12
7440
7556
  */
7441
7557
  maxRows: _angular_core.InputSignal<number>;
7442
7558
  /**
7443
- * Fixed height of the textarea (e.g. `'7.5rem'`, `200` → `200px`). Applied
7444
- * only when `autoGrow` is disabled; otherwise the height is content-driven.
7445
- * Set to `undefined` to let the resting height come from the native `rows`
7446
- * attribute instead.
7447
- *
7448
- * @default "7.5rem"
7559
+ * Exact resting height (e.g. `'7.5rem'`, `200` → `200px`), for the rare field
7560
+ * that has to match something other than a whole number of rows. Prefer
7561
+ * `minRows`. Ignored while `autoGrow` is on, and still bounded by `minRows`
7562
+ * and `maxRows`.
7449
7563
  */
7450
7564
  height: _angular_core.InputSignal<string | number | undefined>;
7451
7565
  /**
7452
7566
  * Maximum height the textarea may grow to (e.g. `'200px'`, `12` → `12px`,
7453
- * `'12rem'`). Beyond it the field scrolls. Limits `autoGrow` growth (in
7454
- * addition to `maxRows`) and manual resizing.
7567
+ * `'12rem'`). Beyond it the field scrolls. Applied on top of `maxRows`,
7568
+ * whichever is smaller.
7455
7569
  */
7456
7570
  maxHeight: _angular_core.InputSignal<string | number | undefined>;
7457
7571
  private toCssSize;
7458
7572
  private rowsToHeight;
7573
+ readonly resolvedSize: _angular_core.Signal<InputSize>;
7574
+ readonly paintsSurface: _angular_core.Signal<boolean>;
7575
+ readonly valid: _angular_core.Signal<boolean>;
7459
7576
  readonly heightStyle: _angular_core.Signal<string | null>;
7460
- readonly minHeightStyle: _angular_core.Signal<string | null>;
7461
- readonly maxHeightStyle: _angular_core.Signal<string | null>;
7577
+ /**
7578
+ * `minRows` is the resting height as much as it is the floor: with no `height`
7579
+ * the textarea has nothing else to size to, so the floor is what it settles
7580
+ * at. That makes it the one number a consumer has to change.
7581
+ */
7582
+ readonly minHeightStyle: _angular_core.Signal<string>;
7583
+ readonly maxHeightStyle: _angular_core.Signal<string>;
7462
7584
  readonly disabled: _angular_core.Signal<boolean>;
7463
- readonly invalid: _angular_core.WritableSignal<boolean>;
7464
- setInvalidState(isInvalid: boolean): void;
7585
+ private readonly derived;
7586
+ readonly describedBy: ControlDescribedBy;
7587
+ readonly touched: _angular_core.Signal<boolean>;
7588
+ readonly dirty: _angular_core.Signal<boolean>;
7589
+ readonly invalid: _angular_core.Signal<boolean>;
7590
+ ngOnInit(): void;
7591
+ setDescribedBy(ids: string[]): void;
7465
7592
  private formDisabled;
7466
7593
  private onChange;
7467
7594
  private onTouched;
@@ -7473,8 +7600,10 @@ declare class TextareaComponent implements ControlValueAccessor, FormFieldContro
7473
7600
  setDisabledState(isDisabled: boolean): void;
7474
7601
  handleInputChange(event: Event): void;
7475
7602
  handleBlur(): void;
7603
+ focus(): void;
7604
+ reset(): void;
7476
7605
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TextareaComponent, never>;
7477
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<TextareaComponent, "textarea[tedi-textarea]", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "resizable": { "alias": "resizable"; "required": false; "isSignal": true; }; "autoGrow": { "alias": "autoGrow"; "required": false; "isSignal": true; }; "minRows": { "alias": "minRows"; "required": false; "isSignal": true; }; "maxRows": { "alias": "maxRows"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "maxHeight": { "alias": "maxHeight"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
7606
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TextareaComponent, "textarea[tedi-textarea]", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "invalidInput": { "alias": "invalid"; "required": false; "isSignal": true; }; "resizable": { "alias": "resizable"; "required": false; "isSignal": true; }; "autoGrow": { "alias": "autoGrow"; "required": false; "isSignal": true; }; "minRows": { "alias": "minRows"; "required": false; "isSignal": true; }; "maxRows": { "alias": "maxRows"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "maxHeight": { "alias": "maxHeight"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
7478
7607
  }
7479
7608
 
7480
7609
  type TimePickerVariant = "scroll" | "slots" | "dropdown";
@@ -7619,7 +7748,9 @@ type TimeFieldPickerTrigger = "button" | "input";
7619
7748
  type TimeFieldModal = boolean | "sm" | "md" | "lg" | "xl";
7620
7749
  type TimeFieldFullscreen = ModalFullscreen;
7621
7750
  type TimeFieldUseNativePicker = boolean | "sm" | "md" | "lg" | "xl";
7622
- declare class TimeFieldComponent implements ControlValueAccessor, FormFieldControl<string | null> {
7751
+ declare class TimeFieldComponent implements OnInit, ControlValueAccessor, FormFieldControl<string | null> {
7752
+ private readonly fieldContext;
7753
+ private readonly derived;
7623
7754
  /** Unique ID for label association and accessibility. */
7624
7755
  readonly inputId: _angular_core.InputSignal<string>;
7625
7756
  /** Selected time in `HH:mm` format. Two-way bindable. */
@@ -7627,13 +7758,17 @@ declare class TimeFieldComponent implements ControlValueAccessor, FormFieldContr
7627
7758
  /** Placeholder shown when the input is empty. */
7628
7759
  readonly placeholder: _angular_core.InputSignal<string | undefined>;
7629
7760
  /**
7630
- * Manually mark the field as invalid. Sets `aria-invalid` on the input and triggers
7631
- * the form-field's invalid styling. Combines with reactive-form validity reported
7632
- * via `setInvalidState`.
7761
+ * Marks the field as invalid. Sets `aria-invalid` on the input and triggers
7762
+ * the error styling. Combines with the state derived from reactive forms.
7633
7763
  */
7634
7764
  protected readonly invalidInput: _angular_core.InputSignal<boolean>;
7635
7765
  /** Disables interaction. Combines with the form-control disabled state. */
7636
- readonly disabled: _angular_core.InputSignal<boolean>;
7766
+ readonly disabledInput: _angular_core.InputSignal<boolean>;
7767
+ /**
7768
+ * Field size. Falls back to the size of a wrapping `tedi-form-field` when not
7769
+ * set here.
7770
+ */
7771
+ readonly size: _angular_core.InputSignal<"small" | "default" | undefined>;
7637
7772
  /** Show a clear button when the field has a value. */
7638
7773
  readonly clearable: _angular_core.InputSignal<boolean>;
7639
7774
  /** Picker variant. `none` renders just the input with no picker UI — typed input is still normalized on blur. */
@@ -7669,11 +7804,17 @@ declare class TimeFieldComponent implements ControlValueAccessor, FormFieldContr
7669
7804
  readonly dropdownMinWidth: _angular_core.WritableSignal<number | null>;
7670
7805
  readonly inputValue: _angular_core.WritableSignal<string>;
7671
7806
  private formDisabled;
7672
- private formInvalid;
7673
7807
  private onChange;
7674
7808
  private onTouched;
7809
+ readonly disabled: _angular_core.Signal<boolean>;
7675
7810
  readonly isDisabled: _angular_core.Signal<boolean>;
7811
+ readonly touched: _angular_core.Signal<boolean>;
7812
+ readonly dirty: _angular_core.Signal<boolean>;
7676
7813
  readonly invalid: _angular_core.Signal<boolean>;
7814
+ readonly resolvedSize: _angular_core.Signal<InputSize>;
7815
+ readonly paintsSurface: _angular_core.Signal<boolean>;
7816
+ readonly valid: _angular_core.Signal<boolean>;
7817
+ ngOnInit(): void;
7677
7818
  readonly hasValue: _angular_core.Signal<boolean>;
7678
7819
  readonly showClear: _angular_core.Signal<boolean>;
7679
7820
  readonly useNativePickerResolved: _angular_core.Signal<boolean>;
@@ -7691,12 +7832,11 @@ declare class TimeFieldComponent implements ControlValueAccessor, FormFieldContr
7691
7832
  registerOnChange(fn: (value: string | null) => void): void;
7692
7833
  registerOnTouched(fn: () => void): void;
7693
7834
  setDisabledState(disabled: boolean): void;
7694
- setInvalidState(isInvalid: boolean): void;
7695
7835
  handleInput(event: Event): void;
7696
7836
  handleBlur(): void;
7697
7837
  clearInput(): void;
7698
7838
  focus(): void;
7699
- clearField(): void;
7839
+ reset(): void;
7700
7840
  openNativePicker(): void;
7701
7841
  onInputClick(event: MouseEvent): void;
7702
7842
  onFieldClick(): void;
@@ -7709,7 +7849,7 @@ declare class TimeFieldComponent implements ControlValueAccessor, FormFieldContr
7709
7849
  onPickerValueChange(newValue: string | null): void;
7710
7850
  closePopover(notifyTouched?: boolean): void;
7711
7851
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TimeFieldComponent, never>;
7712
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<TimeFieldComponent, "tedi-time-field", never, { "inputId": { "alias": "inputId"; "required": true; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "invalidInput": { "alias": "invalid"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "pickerVariant": { "alias": "pickerVariant"; "required": false; "isSignal": true; }; "useNativePicker": { "alias": "useNativePicker"; "required": false; "isSignal": true; }; "pickerTrigger": { "alias": "pickerTrigger"; "required": false; "isSignal": true; }; "closeOnSelect": { "alias": "closeOnSelect"; "required": false; "isSignal": true; }; "timeSlots": { "alias": "timeSlots"; "required": false; "isSignal": true; }; "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "showSlotIndicator": { "alias": "showSlotIndicator"; "required": false; "isSignal": true; }; "minuteStep": { "alias": "minuteStep"; "required": false; "isSignal": true; }; "modal": { "alias": "modal"; "required": false; "isSignal": true; }; "fullscreen": { "alias": "fullscreen"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
7852
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TimeFieldComponent, "tedi-time-field", never, { "inputId": { "alias": "inputId"; "required": true; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "invalidInput": { "alias": "invalid"; "required": false; "isSignal": true; }; "disabledInput": { "alias": "disabled"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "pickerVariant": { "alias": "pickerVariant"; "required": false; "isSignal": true; }; "useNativePicker": { "alias": "useNativePicker"; "required": false; "isSignal": true; }; "pickerTrigger": { "alias": "pickerTrigger"; "required": false; "isSignal": true; }; "closeOnSelect": { "alias": "closeOnSelect"; "required": false; "isSignal": true; }; "timeSlots": { "alias": "timeSlots"; "required": false; "isSignal": true; }; "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "showSlotIndicator": { "alias": "showSlotIndicator"; "required": false; "isSignal": true; }; "minuteStep": { "alias": "minuteStep"; "required": false; "isSignal": true; }; "modal": { "alias": "modal"; "required": false; "isSignal": true; }; "fullscreen": { "alias": "fullscreen"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
7713
7853
  }
7714
7854
 
7715
7855
  type ProgressBarSize = "default" | "small";
@@ -9861,6 +10001,6 @@ declare function isValidTime(time: string | null | undefined): boolean;
9861
10001
  */
9862
10002
  declare function normalizeTime(input: string): string | null;
9863
10003
 
9864
- export { AVAILABLE_LANGUAGES, AccordionComponent, AccordionItemComponent, AccordionItemContentComponent, AccordionItemHeaderComponent, AlertComponent, AttachmentActionsComponent, AttachmentComponent, BREAKPOINTS, BaseButtonDirective, BreadcrumbItemDirective, BreadcrumbSeparatorDirective, BreadcrumbsComponent, BreakpointService, ButtonComponent, ButtonGroupButtonDirective, ButtonGroupComponent, COUNTER_TAG_WIDTH, CalendarComponent, CardButtonComponent, CardComponent, CardContentComponent, CardHeaderComponent, CardIconComponent, CardRowComponent, CarouselComponent, CarouselContentComponent, CarouselFooterComponent, CarouselHeaderComponent, CarouselIndicatorsComponent, CarouselNavigationComponent, CarouselSlideDirective, CheckboxCardComponent, CheckboxCardGroupComponent, CheckboxComponent, CheckboxGroupComponent, ClosingButtonComponent, ColComponent, CollapseButtonComponent, CollapseComponent, DROPDOWN_API, DROPDOWN_CONTENT_API, DateFieldComponent, DatePickerComponent, DropdownComponent, DropdownContentComponent, DropdownItemComponent, DropdownItemValueComponent, DropdownItemValueLabelComponent, DropdownItemValueMetaComponent, DropdownTriggerDirective, EllipsisComponent, EmptyStateComponent, FeedbackTextComponent, FilterComponent, FilterContentDirective, FilterGroupComponent, FilterPrependDirective, FooterBodyComponent, FooterBottomComponent, FooterComponent, FooterSectionComponent, FooterSideComponent, FormFieldComponent, HeaderActionsComponent, HeaderBottomComponent, HeaderComponent, HeaderContentComponent, HeaderLanguageComponent, HeaderLoginComponent, HeaderLogoComponent, HeaderLogoDarkDirective, HeaderLogoutComponent, HeaderMobileButtonComponent, HeaderProfileComponent, HeaderRoleComponent, HeaderRoleContentDirective, HeaderRoleNoResultsDirective, HeaderRoleTitleDirective, HeaderSearchComponent, HeaderTopComponent, HideAtDirective, HorizontalPushHandler, HorizontalStepperComponent, HorizontalStepperItemComponent, IconComponent, InfoButtonComponent, InfoTooltipComponent, InputGroupComponent, InputGroupPrefixDirective, InputGroupSuffixDirective, LANGUAGE_COOKIE_NAME, LANGUAGE_FALLBACK_VALUE, LabelComponent, LabelRowComponent, LinkComponent, ListComponent, MODAL_DATA, MODAL_SIZE, ModalComponent, ModalContentComponent, ModalFooterComponent, ModalHeaderComponent, ModalRef, ModalService, NumberFieldComponent, PaginationComponent, PopoverComponent, PopoverContentComponent, PopoverTriggerDirective, ProgressBarComponent, RadioCardComponent, RadioCardGroupComponent, RadioComponent, RadioGroupComponent, RowComponent, ScrollFadeComponent, SearchComponent, SelectComponent, SelectOptionTemplateDirective, SelectTooltipTemplateDirective, SelectValueTemplateDirective, SeparatorComponent, ShowAtDirective, SideNavComponent, SideNavDropdownComponent, SideNavDropdownGroupComponent, SideNavDropdownItemComponent, SideNavGroupTitleComponent, SideNavItemComponent, SideNavOverlayComponent, SideNavToggleComponent, SliderComponent, SpecialOptionControls, SpinnerComponent, StatusBadgeComponent, StatusIndicatorComponent, TAG_GAP, TEDI_FORM_FIELD_CONTROL, TEDI_INPUT_GROUP, TEDI_TABLE_CONTEXT, TEDI_THEME_DEFAULT_TOKEN, TEDI_TRANSLATION_DEFAULT_TOKEN, THEME_CLASS_PREFIX, THEME_COOKIE_NAME, THEME_FALLBACK_VALUE, TOAST_DEFAULT_DURATION, TabsComponent, TabsContentComponent, TabsListComponent, TabsTriggerComponent, TagComponent, TediPaginationResultsDirective, TediTableColumnsMenuComponent, TediTableComponent, TediTableHeaderButtonComponent, TediTableToolbarComponent, TediTranslationPipe, TediTranslationService, TextComponent, TextFieldComponent, TextGroupComponent, TextGroupLabelComponent, TextGroupValueComponent, TextareaComponent, ThemeService, TimeFieldComponent, TimePickerComponent, TimelineComponent, TimelineDescriptionComponent, TimelineItemComponent, TimelineTimingsBottomDirective, TimelineTitleComponent, ToastComponent, ToastService, ToggleComponent, TooltipComponent, TooltipContentComponent, TooltipTriggerComponent, VerticalSpacingDirective, VerticalSpacingItemDirective, addDays, addMonths, addYears, breakpointInput, buildMonthGrid, calculateArrowOffset, calculateVisibleTagCount, computeGroupSpans, cookieSignal, createTablePersistence, endOfMonth, formatDate, formatLocaleDate, formatLocaleDateHint, formatLocaleDateLong, formatMonthYear, generateUUID, getCardBorderPlacementColor, getDaysInMonth, getFirstDayOfWeek, getFocusableElements, getISOWeek, getMonthNames, getPaddingCssVariables, getPlacementFromPositionChange, getWeekdayNames, groupRowSpan, injectTediTableContext, isAfterDay, isBeforeDay, isDateInRange, isSameDay, isSameMonth, isSameYear, isValidTime, matchAny, matchDate, normalizeTime, parseDate, parseLocaleDate, provideTedi, resolveCardBorderRadius, startOfMonth, startOfWeek, toConnectedPositions, toggleDateInArray, usePagination };
9865
- export type { AccordionInputs, AlertRole, AlertSize, AlertTitleType, AlertType, AlertVariant, AlignItems, AlignSelf, ArrowOffset, ArrowType, AttachmentDirection, BreadcrumbsInputs, BreadcrumbsVariant, Breakpoint, BreakpointFlag, BreakpointInput, BreakpointInputs, BreakpointInputsWithoutSignals, BreakpointObject, BulletColor, ButtonGroupDropdownLabelMode, ButtonSize, ButtonVariant, CalendarView, CardBackground, CardBorderPlacement, CardBorderRadius, CardBorderType, CardContentInputs, CardIconSize, CardIconType, CardInputs, CardPadding, CardPaddingNumber, CardResolvedCorners, CarouselIndicatorsVariant, CheckboxCardVariant, CheckboxGroupDirection, CheckboxSize, ClosingButtonIconSize, ClosingButtonSize, ColInputs, ColWidth, CollapseButtonArrowType, CollapseButtonSize, CollapseSize, Cols, ColumnReorderPhase, CompareWithFn, ComponentInputs, DateAfter, DateBefore, DateFieldMode, DateInterval, DatePickerDay, DatePickerInputSize, DatePickerInputState, DatePickerMatcher, DatePickerSelectorMode, DatePickerView, DateRange, DayOfWeek, DropdownApi, DropdownContentApi, DropdownItemValueLayout, DropdownItemValueType, DropdownPosition, DropdownRole, DropdownTriggerAriaHasPopup, EllipsisPosition, EmptyStateSize, EmptyStateType, FeedbackTextPosition, FeedbackTextType, FilterOption, FilterSize, FilterVariant, FooterSidePlacement, FooterSidePosition, FormFieldControl, FormFieldIcon, Gap, GroupByFn, HeaderContentAlignment, HeaderLanguage, HeaderLanguageLabelPosition, HeaderLoginInputs, HeaderLoginSize, HeaderLogoutInputs, HeaderLogoutSize, HeaderProfileInputs, HeaderProfileSize, HeaderSearchMobileLabels, HeaderSearchMobileVariant, HeaderTopAlignment, HeaderTopInputs, HorizontalStepperBackground, IconBackgroundColor, IconColor, IconSize, IconType, IconVariant, InputGroupContext, InputSize, InputState, JustifyItems, JustifySelf, LabelColor, LabelSize, Language, LinkInputs, LinkSize, LinkVariant, Matcher, ModalConfig, ModalFullscreen, ModalPosition, ModalScrollBehavior, ModalSize, ModalWidth, ModalWidthPreset, NumberFieldSize, OverlayPosition, OverlaySide, PaginationBackground, PaginationDividerPosition, PaginationItem, PaginationItemType, PaginationLabels, PaginationVisibility, PopoverPosition, PopoverWidth, PopoverWidthPreset, ProgressBarInputs, ProgressBarLabelPosition, ProgressBarSize, ProgressBarValuePosition, RadioCardVariant, RadioGroupDirection, RadioSize, Representative, RepresentativeIcon, RowInputs, ScrollFadePosition, ScrollFadeScrollbar, ScrollFadeSize, SearchButton, SearchSize, SelectInputSize, SelectOption, SelectOptionContext, SelectOptionGroup, SelectValueContext, SeparatorAxis, SeparatorColor, SeparatorDotSize, SeparatorSpacing, SeparatorSpacingValue, SeparatorThickness, SeparatorVariant, SideNavItemSize, SliderHideLabel, SpinnerColor, SpinnerSize, StatusBadgeColor, StatusBadgeSize, StatusBadgeStatus, StatusBadgeVariant, StatusIndicatorPosition, StatusIndicatorSize, StatusIndicatorType, TEDITheme, TableColumnMeta, TableControlColumn, TableControlColumnOrder, TableExpandTrigger, TableFilterModalData, TableFilterOptions, TablePaginationOptions, TablePersistOptions, TablePersistenceController, TableSelectionMode, TableSize, TableState, TableStatePatch, TabsOverflowMode, TagEllipsis, TagOverflowOptions, TagType, TediColumnDef, TediConfig, TediTableContextValue, TediTableFilterContext, TextColor, TextGroupInputs, TextGroupType, TextModifiers, Theme, TimeFieldFullscreen, TimeFieldModal, TimeFieldPickerTrigger, TimeFieldPickerVariant, TimeFieldUseNativePicker, TimePickerVariant, TimelineCardPadding, TimelineVariant, ToastConfig, ToastPosition, ToastRole, ToastType, ToggleSize, ToggleType, ToggleVariant, TooltipOpenWith, TooltipPosition, TooltipWidth, UsePaginationArgs, VerticalSpacingSize, VirtualRow };
10004
+ export { AVAILABLE_LANGUAGES, AccordionComponent, AccordionItemComponent, AccordionItemContentComponent, AccordionItemHeaderComponent, AlertComponent, AttachmentActionsComponent, AttachmentComponent, BREAKPOINTS, BaseButtonDirective, BreadcrumbItemDirective, BreadcrumbSeparatorDirective, BreadcrumbsComponent, BreakpointService, ButtonComponent, ButtonGroupButtonDirective, ButtonGroupComponent, COUNTER_TAG_WIDTH, CalendarComponent, CardButtonComponent, CardComponent, CardContentComponent, CardHeaderComponent, CardIconComponent, CardRowComponent, CarouselComponent, CarouselContentComponent, CarouselFooterComponent, CarouselHeaderComponent, CarouselIndicatorsComponent, CarouselNavigationComponent, CarouselSlideDirective, CheckboxCardComponent, CheckboxCardGroupComponent, CheckboxComponent, CheckboxGroupComponent, ClosingButtonComponent, ColComponent, CollapseButtonComponent, CollapseComponent, DROPDOWN_API, DROPDOWN_CONTENT_API, DateFieldComponent, DatePickerComponent, DropdownComponent, DropdownContentComponent, DropdownItemComponent, DropdownItemValueComponent, DropdownItemValueLabelComponent, DropdownItemValueMetaComponent, DropdownTriggerDirective, EllipsisComponent, EmptyStateComponent, FeedbackTextComponent, FilterComponent, FilterContentDirective, FilterGroupComponent, FilterPrependDirective, FooterBodyComponent, FooterBottomComponent, FooterComponent, FooterSectionComponent, FooterSideComponent, FormFieldComponent, FormFieldExtraDirective, HeaderActionsComponent, HeaderBottomComponent, HeaderComponent, HeaderContentComponent, HeaderLanguageComponent, HeaderLoginComponent, HeaderLogoComponent, HeaderLogoDarkDirective, HeaderLogoutComponent, HeaderMobileButtonComponent, HeaderProfileComponent, HeaderRoleComponent, HeaderRoleContentDirective, HeaderRoleNoResultsDirective, HeaderRoleTitleDirective, HeaderSearchComponent, HeaderTopComponent, HideAtDirective, HorizontalPushHandler, HorizontalStepperComponent, HorizontalStepperItemComponent, IconComponent, InfoButtonComponent, InfoTooltipComponent, InputGroupComponent, InputGroupPrefixDirective, InputGroupSuffixDirective, LANGUAGE_COOKIE_NAME, LANGUAGE_FALLBACK_VALUE, LabelComponent, LabelRowComponent, LinkComponent, ListComponent, MODAL_DATA, MODAL_SIZE, ModalComponent, ModalContentComponent, ModalFooterComponent, ModalHeaderComponent, ModalRef, ModalService, NumberFieldComponent, PaginationComponent, PopoverComponent, PopoverContentComponent, PopoverTriggerDirective, ProgressBarComponent, RadioCardComponent, RadioCardGroupComponent, RadioComponent, RadioGroupComponent, RowComponent, ScrollFadeComponent, SearchComponent, SelectComponent, SelectOptionTemplateDirective, SelectTooltipTemplateDirective, SelectValueTemplateDirective, SeparatorComponent, ShowAtDirective, SideNavComponent, SideNavDropdownComponent, SideNavDropdownGroupComponent, SideNavDropdownItemComponent, SideNavGroupTitleComponent, SideNavItemComponent, SideNavOverlayComponent, SideNavToggleComponent, SliderComponent, SpecialOptionControls, SpinnerComponent, StatusBadgeComponent, StatusIndicatorComponent, TAG_GAP, TEDI_FIELD_CONTEXT, TEDI_FORM_FIELD_CONTROL, TEDI_INPUT_GROUP, TEDI_TABLE_CONTEXT, TEDI_THEME_DEFAULT_TOKEN, TEDI_TRANSLATION_DEFAULT_TOKEN, THEME_CLASS_PREFIX, THEME_COOKIE_NAME, THEME_FALLBACK_VALUE, TOAST_DEFAULT_DURATION, TabsComponent, TabsContentComponent, TabsListComponent, TabsTriggerComponent, TagComponent, TediPaginationResultsDirective, TediTableColumnsMenuComponent, TediTableComponent, TediTableHeaderButtonComponent, TediTableToolbarComponent, TediTranslationPipe, TediTranslationService, TextComponent, TextFieldComponent, TextGroupComponent, TextGroupLabelComponent, TextGroupValueComponent, TextareaComponent, ThemeService, TimeFieldComponent, TimePickerComponent, TimelineComponent, TimelineDescriptionComponent, TimelineItemComponent, TimelineTimingsBottomDirective, TimelineTitleComponent, ToastComponent, ToastService, ToggleComponent, TooltipComponent, TooltipContentComponent, TooltipTriggerComponent, VerticalSpacingDirective, VerticalSpacingItemDirective, addDays, addMonths, addYears, breakpointInput, buildMonthGrid, calculateArrowOffset, calculateVisibleTagCount, computeGroupSpans, cookieSignal, createTablePersistence, endOfMonth, formatDate, formatLocaleDate, formatLocaleDateHint, formatLocaleDateLong, formatMonthYear, generateUUID, getCardBorderPlacementColor, getDaysInMonth, getFirstDayOfWeek, getFocusableElements, getISOWeek, getMonthNames, getPaddingCssVariables, getPlacementFromPositionChange, getWeekdayNames, groupRowSpan, injectTediTableContext, isAfterDay, isBeforeDay, isDateInRange, isSameDay, isSameMonth, isSameYear, isValidTime, matchAny, matchDate, normalizeTime, parseDate, parseLocaleDate, provideTedi, resolveCardBorderRadius, startOfMonth, startOfWeek, toConnectedPositions, toggleDateInArray, usePagination };
10005
+ export type { AccordionInputs, AlertRole, AlertSize, AlertTitleType, AlertType, AlertVariant, AlignItems, AlignSelf, ArrowOffset, ArrowType, AttachmentDirection, BreadcrumbsInputs, BreadcrumbsVariant, Breakpoint, BreakpointFlag, BreakpointInput, BreakpointInputs, BreakpointInputsWithoutSignals, BreakpointObject, BulletColor, ButtonGroupDropdownLabelMode, ButtonSize, ButtonVariant, CalendarView, CardBackground, CardBorderPlacement, CardBorderRadius, CardBorderType, CardContentInputs, CardIconSize, CardIconType, CardInputs, CardPadding, CardPaddingNumber, CardResolvedCorners, CarouselIndicatorsVariant, CheckboxCardVariant, CheckboxGroupDirection, CheckboxSize, ClosingButtonIconSize, ClosingButtonSize, ColInputs, ColWidth, CollapseButtonArrowType, CollapseButtonSize, CollapseSize, Cols, ColumnReorderPhase, CompareWithFn, ComponentInputs, DateAfter, DateBefore, DateFieldMode, DateInterval, DatePickerDay, DatePickerInputSize, DatePickerInputState, DatePickerMatcher, DatePickerSelectorMode, DatePickerView, DateRange, DayOfWeek, DropdownApi, DropdownContentApi, DropdownItemValueLayout, DropdownItemValueType, DropdownPosition, DropdownRole, DropdownTriggerAriaHasPopup, EllipsisPosition, EmptyStateSize, EmptyStateType, FeedbackTextPosition, FeedbackTextType, FieldContext, FilterOption, FilterSize, FilterVariant, FooterSidePlacement, FooterSidePosition, FormFieldControl, FormFieldIcon, Gap, GroupByFn, HeaderContentAlignment, HeaderLanguage, HeaderLanguageLabelPosition, HeaderLoginInputs, HeaderLoginSize, HeaderLogoutInputs, HeaderLogoutSize, HeaderProfileInputs, HeaderProfileSize, HeaderSearchMobileLabels, HeaderSearchMobileVariant, HeaderTopAlignment, HeaderTopInputs, HorizontalStepperBackground, IconBackgroundColor, IconColor, IconSize, IconType, IconVariant, InputGroupContext, InputSize, InputState, JustifyItems, JustifySelf, LabelColor, LabelSize, LabelVisuallyHidden, Language, LinkInputs, LinkSize, LinkVariant, Matcher, ModalConfig, ModalFullscreen, ModalPosition, ModalScrollBehavior, ModalSize, ModalWidth, ModalWidthPreset, NumberFieldSize, OverlayPosition, OverlaySide, PaginationBackground, PaginationDividerPosition, PaginationItem, PaginationItemType, PaginationLabels, PaginationVisibility, PopoverPosition, PopoverWidth, PopoverWidthPreset, ProgressBarInputs, ProgressBarLabelPosition, ProgressBarSize, ProgressBarValuePosition, RadioCardVariant, RadioGroupDirection, RadioSize, Representative, RepresentativeIcon, RowInputs, ScrollFadePosition, ScrollFadeScrollbar, ScrollFadeSize, SearchButton, SearchSize, SelectInputSize, SelectOption, SelectOptionContext, SelectOptionGroup, SelectValueContext, SeparatorAxis, SeparatorColor, SeparatorDotSize, SeparatorSpacing, SeparatorSpacingValue, SeparatorThickness, SeparatorVariant, SideNavItemSize, SliderHideLabel, SpinnerColor, SpinnerSize, StatusBadgeColor, StatusBadgeSize, StatusBadgeStatus, StatusBadgeVariant, StatusIndicatorPosition, StatusIndicatorSize, StatusIndicatorType, TEDITheme, TableColumnMeta, TableControlColumn, TableControlColumnOrder, TableExpandTrigger, TableFilterModalData, TableFilterOptions, TablePaginationOptions, TablePersistOptions, TablePersistenceController, TableSelectionMode, TableSize, TableState, TableStatePatch, TabsOverflowMode, TagEllipsis, TagOverflowOptions, TagType, TediColumnDef, TediConfig, TediTableContextValue, TediTableFilterContext, TextColor, TextGroupInputs, TextGroupType, TextModifiers, TextareaSize, Theme, TimeFieldFullscreen, TimeFieldModal, TimeFieldPickerTrigger, TimeFieldPickerVariant, TimeFieldUseNativePicker, TimePickerVariant, TimelineCardPadding, TimelineVariant, ToastConfig, ToastPosition, ToastRole, ToastType, ToggleSize, ToggleType, ToggleVariant, TooltipOpenWith, TooltipPosition, TooltipWidth, UsePaginationArgs, VerticalSpacingSize, VirtualRow };
9866
10006
  //# sourceMappingURL=index.d.ts.map