@tedi-design-system/angular 7.2.0-rc.4 → 7.2.0-rc.5
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/package.json
CHANGED
package/tedi/index.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { AfterContentChecked, AfterViewInit, InputSignal, Signal, PipeTransform, OnInit, OnDestroy, TemplateRef, ElementRef, Injector,
|
|
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
5
|
import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
6
6
|
import * as _tanstack_table_core from '@tanstack/table-core';
|
|
7
7
|
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
8
|
-
import { Table, VisibilityState, ColumnOrderState, ColumnSizingState, RowSelectionState, ExpandedState, ColumnFiltersState, SortingState, PaginationState, ColumnDef, CellContext, Row
|
|
8
|
+
import { Table, VisibilityState, ColumnOrderState, ColumnSizingState, RowSelectionState, ExpandedState, ColumnFiltersState, SortingState, PaginationState, Column, ColumnDef, CellContext, Row } from '@tanstack/angular-table';
|
|
9
9
|
import * as _angular_cdk_overlay from '@angular/cdk/overlay';
|
|
10
10
|
import { ConnectedOverlayPositionChange, ConnectedPosition, CdkOverlayOrigin, CdkConnectedOverlay } from '@angular/cdk/overlay';
|
|
11
11
|
import { CdkListbox } from '@angular/cdk/listbox';
|
|
@@ -3208,6 +3208,13 @@ declare class CalendarComponent implements ControlValueAccessor {
|
|
|
3208
3208
|
}
|
|
3209
3209
|
|
|
3210
3210
|
type PaginationBackground = "white" | "transparent";
|
|
3211
|
+
/**
|
|
3212
|
+
* Horizontal alignment of the results / pager / page-size slots.
|
|
3213
|
+
* - `'between'` (default) — spread across the full width
|
|
3214
|
+
* - `'left'` — grouped at the start
|
|
3215
|
+
* - `'right'` — grouped at the end
|
|
3216
|
+
*/
|
|
3217
|
+
type PaginationAlign = "between" | "left" | "right";
|
|
3211
3218
|
/**
|
|
3212
3219
|
* Visibility toggle for the results / page-size / pager / arrow slots.
|
|
3213
3220
|
* - `true` — always hidden
|
|
@@ -3225,6 +3232,18 @@ type PaginationVisibility = boolean | "sm" | "md" | "lg" | "xl" | "xxl";
|
|
|
3225
3232
|
* - `'none'` — no divider, useful when the surrounding container already has one
|
|
3226
3233
|
*/
|
|
3227
3234
|
type PaginationDividerPosition = "top" | "bottom" | "none";
|
|
3235
|
+
/**
|
|
3236
|
+
* Layout inputs that can be overridden per breakpoint via the `xs`–`xxl`
|
|
3237
|
+
* inputs. Applied mobile-first: an override set on `md` takes effect at `md`
|
|
3238
|
+
* and every larger breakpoint, on top of the base inputs.
|
|
3239
|
+
*/
|
|
3240
|
+
interface PaginationBreakpointInputs {
|
|
3241
|
+
align?: PaginationAlign;
|
|
3242
|
+
showArrowLabels?: boolean;
|
|
3243
|
+
arrowVariant?: ButtonVariant;
|
|
3244
|
+
dividerPosition?: PaginationDividerPosition;
|
|
3245
|
+
background?: PaginationBackground;
|
|
3246
|
+
}
|
|
3228
3247
|
type PaginationItemType = "page" | "previous" | "next" | "ellipsis";
|
|
3229
3248
|
/**
|
|
3230
3249
|
* A labelled page-size option. Use it alongside plain numbers in
|
|
@@ -3409,6 +3428,40 @@ declare class PopoverComponent {
|
|
|
3409
3428
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PopoverComponent, "tedi-popover", never, { "position": { "alias": "position"; "required": false; "isSignal": true; }; "preventOverflow": { "alias": "preventOverflow"; "required": false; "isSignal": true; }; "dismissible": { "alias": "dismissible"; "required": false; "isSignal": true; }; "hideOnScroll": { "alias": "hideOnScroll"; "required": false; "isSignal": true; }; "withBorder": { "alias": "withBorder"; "required": false; "isSignal": true; }; "withArrow": { "alias": "withArrow"; "required": false; "isSignal": true; }; "lockScroll": { "alias": "lockScroll"; "required": false; "isSignal": true; }; "timeoutDelay": { "alias": "timeoutDelay"; "required": false; "isSignal": true; }; }, {}, ["popoverTrigger", "popoverContent"], ["[tedi-popover-trigger]", "tedi-popover-content"], true, never>;
|
|
3410
3429
|
}
|
|
3411
3430
|
|
|
3431
|
+
type PopoverWidthPreset = "none" | "small" | "medium" | "large";
|
|
3432
|
+
/**
|
|
3433
|
+
* A preset, or any CSS length (`"20rem"`, `"340px"`, `"min(90vw, 30rem)"`) for
|
|
3434
|
+
* a panel the presets don't cover. `(string & {})` keeps the preset
|
|
3435
|
+
* autocomplete alive while still accepting an arbitrary length.
|
|
3436
|
+
*/
|
|
3437
|
+
type PopoverWidth = PopoverWidthPreset | (string & {});
|
|
3438
|
+
declare class PopoverContentComponent {
|
|
3439
|
+
/**
|
|
3440
|
+
* The width of the popover: a preset ('none', 'small', 'medium', 'large') or
|
|
3441
|
+
* any CSS length ('20rem'). 'none' sizes the panel to its content.
|
|
3442
|
+
* @default small
|
|
3443
|
+
*/
|
|
3444
|
+
maxWidth: _angular_core.InputSignal<PopoverWidth>;
|
|
3445
|
+
/**
|
|
3446
|
+
* Heading title of the content
|
|
3447
|
+
*/
|
|
3448
|
+
title: _angular_core.InputSignal<string>;
|
|
3449
|
+
/**
|
|
3450
|
+
* Should content show close button?
|
|
3451
|
+
* @default false
|
|
3452
|
+
*/
|
|
3453
|
+
showClose: _angular_core.InputSignal<boolean>;
|
|
3454
|
+
private readonly popover;
|
|
3455
|
+
titleId: string;
|
|
3456
|
+
private readonly isPresetWidth;
|
|
3457
|
+
/** Widths outside the preset scale are applied inline. */
|
|
3458
|
+
readonly customWidth: _angular_core.Signal<PopoverWidth | null>;
|
|
3459
|
+
classes: _angular_core.Signal<string>;
|
|
3460
|
+
handleClose(): void;
|
|
3461
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PopoverContentComponent, never>;
|
|
3462
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PopoverContentComponent, "tedi-popover-content", never, { "maxWidth": { "alias": "maxWidth"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "showClose": { "alias": "showClose"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
3463
|
+
}
|
|
3464
|
+
|
|
3412
3465
|
/**
|
|
3413
3466
|
* Marker directive that lets consumers fully replace the default
|
|
3414
3467
|
* "X results" label inside `<tedi-pagination>`.
|
|
@@ -3473,6 +3526,14 @@ declare class PaginationComponent {
|
|
|
3473
3526
|
* @default 'top'
|
|
3474
3527
|
*/
|
|
3475
3528
|
readonly dividerPosition: _angular_core.InputSignal<PaginationDividerPosition>;
|
|
3529
|
+
/**
|
|
3530
|
+
* Horizontal alignment of the results / pager / page-size slots. `'left'`
|
|
3531
|
+
* groups them at the start instead of spreading them across the full width.
|
|
3532
|
+
* Override per breakpoint via the `xs`–`xxl` inputs (e.g. `align="left"` with
|
|
3533
|
+
* `[md]="{ align: 'between' }"` reads left on mobile, spread on desktop).
|
|
3534
|
+
* @default 'between'
|
|
3535
|
+
*/
|
|
3536
|
+
readonly align: _angular_core.InputSignal<PaginationAlign>;
|
|
3476
3537
|
/**
|
|
3477
3538
|
* Hide the "X results" label even when `totalItems` is set or content is
|
|
3478
3539
|
* projected via `[tediPaginationResults]`. Pass a breakpoint name to hide
|
|
@@ -3536,10 +3597,18 @@ declare class PaginationComponent {
|
|
|
3536
3597
|
* @default true
|
|
3537
3598
|
*/
|
|
3538
3599
|
readonly showModalTitle: _angular_core.InputSignal<boolean>;
|
|
3539
|
-
/**
|
|
3540
|
-
|
|
3541
|
-
|
|
3542
|
-
|
|
3600
|
+
/**
|
|
3601
|
+
* Per-breakpoint overrides for the layout inputs (`align`, `showArrowLabels`,
|
|
3602
|
+
* `arrowVariant`, `dividerPosition`, `background`). Applied mobile-first: an
|
|
3603
|
+
* override set here takes effect at this breakpoint and every larger one, on
|
|
3604
|
+
* top of the base inputs.
|
|
3605
|
+
*/
|
|
3606
|
+
readonly xs: _angular_core.InputSignal<PaginationBreakpointInputs | undefined>;
|
|
3607
|
+
readonly sm: _angular_core.InputSignal<PaginationBreakpointInputs | undefined>;
|
|
3608
|
+
readonly md: _angular_core.InputSignal<PaginationBreakpointInputs | undefined>;
|
|
3609
|
+
readonly lg: _angular_core.InputSignal<PaginationBreakpointInputs | undefined>;
|
|
3610
|
+
readonly xl: _angular_core.InputSignal<PaginationBreakpointInputs | undefined>;
|
|
3611
|
+
readonly xxl: _angular_core.InputSignal<PaginationBreakpointInputs | undefined>;
|
|
3543
3612
|
/** Detects the `[tediPaginationResults]` content-projection slot, if any. */
|
|
3544
3613
|
protected readonly customResults: _angular_core.Signal<TediPaginationResultsDirective | undefined>;
|
|
3545
3614
|
private readonly translationService;
|
|
@@ -3549,6 +3618,16 @@ declare class PaginationComponent {
|
|
|
3549
3618
|
protected readonly useCompactPicker: _angular_core.Signal<boolean>;
|
|
3550
3619
|
protected readonly pageSizeInputId: string;
|
|
3551
3620
|
protected readonly pageSizeLabelId: string;
|
|
3621
|
+
/**
|
|
3622
|
+
* Base layout inputs merged with the active `xs`–`xxl` overrides for the
|
|
3623
|
+
* current breakpoint. Read these (not the raw inputs) anywhere the value can
|
|
3624
|
+
* be overridden per breakpoint.
|
|
3625
|
+
*/
|
|
3626
|
+
protected readonly breakpointInputs: _angular_core.Signal<PaginationBreakpointInputs>;
|
|
3627
|
+
/** Resolved arrow variant (base merged with breakpoint overrides). */
|
|
3628
|
+
protected readonly resolvedArrowVariant: _angular_core.Signal<ButtonVariant>;
|
|
3629
|
+
/** Resolved visible-arrow-labels flag (base merged with breakpoint overrides). */
|
|
3630
|
+
protected readonly resolvedShowArrowLabels: _angular_core.Signal<boolean>;
|
|
3552
3631
|
protected readonly hostClasses: _angular_core.Signal<string>;
|
|
3553
3632
|
protected readonly currentPage: _angular_core.Signal<number>;
|
|
3554
3633
|
protected readonly items: _angular_core.Signal<PaginationItem[]>;
|
|
@@ -3611,7 +3690,7 @@ declare class PaginationComponent {
|
|
|
3611
3690
|
protected openPageSizePicker(): void;
|
|
3612
3691
|
private openPickerModal;
|
|
3613
3692
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PaginationComponent, never>;
|
|
3614
|
-
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; }; "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; }; }
|
|
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>;
|
|
3615
3694
|
}
|
|
3616
3695
|
|
|
3617
3696
|
type ComponentInputs<TComponent> = {
|
|
@@ -3625,6 +3704,13 @@ type TableSize = "medium" | "small";
|
|
|
3625
3704
|
* the selection checkbox before the expand chevron).
|
|
3626
3705
|
*/
|
|
3627
3706
|
type TableControlColumn = "drag" | "select" | "expand";
|
|
3707
|
+
/**
|
|
3708
|
+
* An entry in `controlColumnOrder`: a control column, or the `"content"`
|
|
3709
|
+
* sentinel marking where the data columns sit. Controls listed after
|
|
3710
|
+
* `"content"` render as trailing columns (after the data); everything else is
|
|
3711
|
+
* leading. Omit the sentinel to keep all controls leading.
|
|
3712
|
+
*/
|
|
3713
|
+
type TableControlColumnOrder = TableControlColumn | "content";
|
|
3628
3714
|
/** Phases of keyboard-driven column reordering. */
|
|
3629
3715
|
type ColumnReorderPhase = "idle" | "picked-up" | "moving";
|
|
3630
3716
|
/**
|
|
@@ -3720,6 +3806,12 @@ interface TableFilterOptions {
|
|
|
3720
3806
|
* @default false
|
|
3721
3807
|
*/
|
|
3722
3808
|
clearOnClose?: boolean;
|
|
3809
|
+
/**
|
|
3810
|
+
* Popover width for this column, overriding the table's
|
|
3811
|
+
* `filterPopoverWidth`. Use it when one filter control needs more room than
|
|
3812
|
+
* the rest (a date range, a wide option list).
|
|
3813
|
+
*/
|
|
3814
|
+
popoverWidth?: PopoverWidth;
|
|
3723
3815
|
}
|
|
3724
3816
|
/**
|
|
3725
3817
|
* Context exposed by the built-in filter popover to the consumer's
|
|
@@ -3749,6 +3841,21 @@ interface TediTableFilterContext<TValue = unknown, TData = unknown> {
|
|
|
3749
3841
|
/** TanStack `Column` for the column whose filter popover is open. */
|
|
3750
3842
|
column: Column<TData>;
|
|
3751
3843
|
}
|
|
3844
|
+
/**
|
|
3845
|
+
* Data passed (via `MODAL_DATA`) to the filter modal rendered below the
|
|
3846
|
+
* `filterModalBreakpoint`. Carries the consumer's filter template plus the
|
|
3847
|
+
* labels and context builder the modal needs to render and commit the filter.
|
|
3848
|
+
*/
|
|
3849
|
+
interface TableFilterModalData {
|
|
3850
|
+
/** Column label shown as the modal title. */
|
|
3851
|
+
columnLabel: string;
|
|
3852
|
+
applyLabel: string;
|
|
3853
|
+
clearLabel: string;
|
|
3854
|
+
/** Consumer-provided filter template. */
|
|
3855
|
+
template: TemplateRef<TediTableFilterContext<unknown, unknown>>;
|
|
3856
|
+
/** Builds the filter context, wiring `apply` / `clear` to close the modal. */
|
|
3857
|
+
buildContext: (close: () => void) => TediTableFilterContext<unknown, unknown>;
|
|
3858
|
+
}
|
|
3752
3859
|
/**
|
|
3753
3860
|
* Angular-only extension to TanStack's `ColumnDef`. Supports body-level row
|
|
3754
3861
|
* spanning via the `rowSpan` callback and a one-flag opt-in to the built-in
|
|
@@ -3842,6 +3949,7 @@ interface ResolvedPaginationSlot {
|
|
|
3842
3949
|
siblingCount: number;
|
|
3843
3950
|
labels: TablePaginationOptions["labels"];
|
|
3844
3951
|
background: NonNullable<TablePaginationOptions["background"]>;
|
|
3952
|
+
align: NonNullable<TablePaginationOptions["align"]>;
|
|
3845
3953
|
dividerPosition: NonNullable<TablePaginationOptions["dividerPosition"]>;
|
|
3846
3954
|
hideResults: NonNullable<TablePaginationOptions["hideResults"]>;
|
|
3847
3955
|
hidePageSize: NonNullable<TablePaginationOptions["hidePageSize"]>;
|
|
@@ -3853,6 +3961,12 @@ interface ResolvedPaginationSlot {
|
|
|
3853
3961
|
previousIcon: NonNullable<TablePaginationOptions["previousIcon"]>;
|
|
3854
3962
|
nextIcon: NonNullable<TablePaginationOptions["nextIcon"]>;
|
|
3855
3963
|
showModalTitle: boolean;
|
|
3964
|
+
xs: TablePaginationOptions["xs"];
|
|
3965
|
+
sm: TablePaginationOptions["sm"];
|
|
3966
|
+
md: TablePaginationOptions["md"];
|
|
3967
|
+
lg: TablePaginationOptions["lg"];
|
|
3968
|
+
xl: TablePaginationOptions["xl"];
|
|
3969
|
+
xxl: TablePaginationOptions["xxl"];
|
|
3856
3970
|
}
|
|
3857
3971
|
declare class TediTableComponent<TData> {
|
|
3858
3972
|
/** Stable identifier used for synthetic ids. */
|
|
@@ -3876,7 +3990,9 @@ declare class TediTableComponent<TData> {
|
|
|
3876
3990
|
*/
|
|
3877
3991
|
readonly verticalBorders: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3878
3992
|
/**
|
|
3879
|
-
* Removes the table's outer border
|
|
3993
|
+
* Removes only the table's **outer** border (the frame around the table) and
|
|
3994
|
+
* its corner radius. Borders between rows and columns — including the
|
|
3995
|
+
* `verticalBorders` separators — are unaffected.
|
|
3880
3996
|
* @default false
|
|
3881
3997
|
*/
|
|
3882
3998
|
readonly borderless: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
@@ -3885,6 +4001,13 @@ declare class TediTableComponent<TData> {
|
|
|
3885
4001
|
* @default false
|
|
3886
4002
|
*/
|
|
3887
4003
|
readonly stickyFirstColumn: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
4004
|
+
/**
|
|
4005
|
+
* Freezes the last column in place during horizontal scroll. Mirrors
|
|
4006
|
+
* `stickyFirstColumn` on the trailing edge — useful for keeping a trailing
|
|
4007
|
+
* actions column (e.g. an "Edit" link) visible while the body scrolls.
|
|
4008
|
+
* @default false
|
|
4009
|
+
*/
|
|
4010
|
+
readonly stickyLastColumn: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3888
4011
|
/**
|
|
3889
4012
|
* Pins `<thead>` to the top during vertical scroll. Requires `maxHeight` to
|
|
3890
4013
|
* be set so the table has a scroll container.
|
|
@@ -3922,7 +4045,10 @@ declare class TediTableComponent<TData> {
|
|
|
3922
4045
|
/**
|
|
3923
4046
|
* Forces the row hover background on (`true`) or off (`false`). When omitted,
|
|
3924
4047
|
* hover styling tracks whether rows are interactive — on when `interactive`
|
|
3925
|
-
* is set or `expandTrigger` is `'row'`, off otherwise.
|
|
4048
|
+
* is set or `expandTrigger` is `'row'`, off otherwise. This only affects the
|
|
4049
|
+
* hover background; the pointer cursor is driven separately by row-level
|
|
4050
|
+
* interactivity (`interactive` / click-to-expand), not by whether a cell
|
|
4051
|
+
* happens to contain a link or button.
|
|
3926
4052
|
* @default undefined
|
|
3927
4053
|
*/
|
|
3928
4054
|
readonly rowHover: _angular_core.InputSignal<boolean | undefined>;
|
|
@@ -4035,15 +4161,38 @@ declare class TediTableComponent<TData> {
|
|
|
4035
4161
|
* No effect when `groupRowsBy` is not set.
|
|
4036
4162
|
* @default "all"
|
|
4037
4163
|
*/
|
|
4038
|
-
readonly rowGroupDividers: _angular_core.InputSignal<"none" | "
|
|
4164
|
+
readonly rowGroupDividers: _angular_core.InputSignal<"none" | "between" | "all">;
|
|
4039
4165
|
/**
|
|
4040
4166
|
* Order of the auto-injected control columns (drag handle, selection
|
|
4041
4167
|
* checkbox, expand chevron). Only the controls that are actually enabled
|
|
4042
|
-
* render; any enabled control omitted from this list is appended
|
|
4043
|
-
* Use it to e.g. place the checkbox before the expand
|
|
4168
|
+
* render; any enabled control omitted from this list is appended after the
|
|
4169
|
+
* other leading controls. Use it to e.g. place the checkbox before the expand
|
|
4170
|
+
* chevron. Include the `"content"` sentinel to split leading vs trailing: any
|
|
4171
|
+
* control listed after `"content"` renders after the data columns — e.g.
|
|
4172
|
+
* `["content", "expand"]` puts the expand toggle in the last column.
|
|
4044
4173
|
* @default ["drag", "select", "expand"]
|
|
4045
4174
|
*/
|
|
4046
|
-
readonly controlColumnOrder: _angular_core.InputSignal<
|
|
4175
|
+
readonly controlColumnOrder: _angular_core.InputSignal<TableControlColumnOrder[]>;
|
|
4176
|
+
/**
|
|
4177
|
+
* Below this breakpoint the column filter opens in a modal instead of the
|
|
4178
|
+
* popover (which can be cramped or drift off-screen on small viewports).
|
|
4179
|
+
* Set `false` to always use the popover.
|
|
4180
|
+
* @default "sm"
|
|
4181
|
+
*/
|
|
4182
|
+
readonly filterModalBreakpoint: _angular_core.InputSignal<false | "xs" | "sm" | "md" | "lg" | "xl" | "xxl">;
|
|
4183
|
+
/**
|
|
4184
|
+
* Fullscreen behaviour of the filter modal (see `filterModalBreakpoint`):
|
|
4185
|
+
* `true` always fullscreen, `false` never, a breakpoint = fullscreen below it.
|
|
4186
|
+
* @default false
|
|
4187
|
+
*/
|
|
4188
|
+
readonly filterModalFullscreen: _angular_core.InputSignal<_tedi_design_system_angular_tedi.BreakpointFlag>;
|
|
4189
|
+
/**
|
|
4190
|
+
* Width of the column filter popover: a popover preset, or any CSS length
|
|
4191
|
+
* (`"20rem"`). `"none"` lets the panel size to its content. A single column
|
|
4192
|
+
* can opt out through `filterable: { popoverWidth }`.
|
|
4193
|
+
* @default "small"
|
|
4194
|
+
*/
|
|
4195
|
+
readonly filterPopoverWidth: _angular_core.InputSignal<PopoverWidth>;
|
|
4047
4196
|
/**
|
|
4048
4197
|
* Enables pagination and configures the bottom paginator slot. This is also
|
|
4049
4198
|
* the source of truth for `pageSize` / `pageSizeOptions` — the top slot
|
|
@@ -4174,6 +4323,9 @@ declare class TediTableComponent<TData> {
|
|
|
4174
4323
|
protected readonly injector: Injector;
|
|
4175
4324
|
private readonly platformId;
|
|
4176
4325
|
private readonly translation;
|
|
4326
|
+
private readonly breakpointService;
|
|
4327
|
+
private readonly modalService;
|
|
4328
|
+
private readonly currentBreakpoint;
|
|
4177
4329
|
private readonly _hoveredRowId;
|
|
4178
4330
|
/**
|
|
4179
4331
|
* Id of the data row currently under the pointer, or `null`. Exposed so
|
|
@@ -4354,8 +4506,31 @@ declare class TediTableComponent<TData> {
|
|
|
4354
4506
|
}>>;
|
|
4355
4507
|
/** Sticky `left` (px) for a frozen column; `null` when the column isn't frozen. */
|
|
4356
4508
|
protected stickyLeft(id: string): number | null;
|
|
4509
|
+
/**
|
|
4510
|
+
* Columns frozen by `stickyLastColumn`, keyed by id: the last content column
|
|
4511
|
+
* plus any trailing control columns (e.g. an expand toggle placed after the
|
|
4512
|
+
* `'content'` sentinel), pinned together as one block. `right` is the
|
|
4513
|
+
* cumulative offset; `start` / `edge` mark the block's right and left edges
|
|
4514
|
+
* (the left edge draws the divider). Empty when `stickyLastColumn` is off.
|
|
4515
|
+
*/
|
|
4516
|
+
protected readonly stickyRightColumns: Signal<Map<string, {
|
|
4517
|
+
right: number;
|
|
4518
|
+
start: boolean;
|
|
4519
|
+
edge: boolean;
|
|
4520
|
+
}>>;
|
|
4521
|
+
/** Sticky `right` (px) for a frozen column; `null` when the column isn't frozen. */
|
|
4522
|
+
protected stickyRight(id: string): number | null;
|
|
4523
|
+
/**
|
|
4524
|
+
* Class fragment for the auto-injected control columns. Icon-only controls
|
|
4525
|
+
* (drag / select, and expand without a visible label) drop to reduced padding
|
|
4526
|
+
* and stay as narrow as the control needs; a labeled expand column hugs its
|
|
4527
|
+
* content instead of absorbing the table's slack. `""` otherwise.
|
|
4528
|
+
*/
|
|
4529
|
+
protected controlCellClass(id: string): string;
|
|
4357
4530
|
/** Sticky-column class fragment for a cell (`""` when not frozen). */
|
|
4358
4531
|
protected stickyLeftClass(id: string): string;
|
|
4532
|
+
/** Sticky-right-column class fragment for a cell (`""` when not frozen). */
|
|
4533
|
+
protected stickyRightClass(id: string): string;
|
|
4359
4534
|
protected handleRowKeydown(event: KeyboardEvent, row: Row<TData>): void;
|
|
4360
4535
|
protected handleRowDrop(event: CdkDragDrop<TData[]>): void;
|
|
4361
4536
|
/** Stable id for a row's reorder handle button — used to restore keyboard
|
|
@@ -4413,6 +4588,21 @@ declare class TediTableComponent<TData> {
|
|
|
4413
4588
|
column: ReturnType<Table<TData>["getAllLeafColumns"]>[number];
|
|
4414
4589
|
}): void;
|
|
4415
4590
|
private readonly scrollContainer;
|
|
4591
|
+
private readonly tableElement;
|
|
4592
|
+
private readonly destroyRef;
|
|
4593
|
+
/**
|
|
4594
|
+
* Elevation shadows only make sense when the body is actually scrolled off
|
|
4595
|
+
* that edge: `hasStartShadow` gates the leading (sticky-first) column shadow,
|
|
4596
|
+
* `hasEndShadow` the trailing (sticky-last) one, and `hasHeaderShadow` the
|
|
4597
|
+
* sticky-header shadow (scrolled down). Toggled from a scroll listener plus a
|
|
4598
|
+
* ResizeObserver so viewport / content-size changes re-measure without a
|
|
4599
|
+
* scroll event.
|
|
4600
|
+
*/
|
|
4601
|
+
protected readonly hasStartShadow: WritableSignal<boolean>;
|
|
4602
|
+
protected readonly hasEndShadow: WritableSignal<boolean>;
|
|
4603
|
+
protected readonly hasHeaderShadow: WritableSignal<boolean>;
|
|
4604
|
+
private measureScrollShadows;
|
|
4605
|
+
protected onHorizontalScroll(): void;
|
|
4416
4606
|
/**
|
|
4417
4607
|
* Resets the table's own vertical scroll to the top. Only affects the
|
|
4418
4608
|
* internal scroll container (used when `maxHeight` is set); the horizontal
|
|
@@ -4522,6 +4712,7 @@ declare class TediTableComponent<TData> {
|
|
|
4522
4712
|
* read as `unknown` in strict templates).
|
|
4523
4713
|
*/
|
|
4524
4714
|
protected filterTemplateFor(col: Column<TData, unknown>): TemplateRef<TediTableFilterContext<unknown, TData>> | undefined;
|
|
4715
|
+
protected filterPopoverWidthFor(col: Column<TData, unknown>): PopoverWidth;
|
|
4525
4716
|
/**
|
|
4526
4717
|
* True when the column opted into the built-in filter affordance
|
|
4527
4718
|
* (`filterable: true | TableFilterOptions`) AND TanStack reports it can
|
|
@@ -4573,6 +4764,21 @@ declare class TediTableComponent<TData> {
|
|
|
4573
4764
|
* destructuring.
|
|
4574
4765
|
*/
|
|
4575
4766
|
protected filterContextFor(col: Column<TData, unknown>, popover: PopoverComponent): TediTableFilterContext<unknown, TData>;
|
|
4767
|
+
/**
|
|
4768
|
+
* Builds the filter context, wiring `apply` / `clear` to commit the draft and
|
|
4769
|
+
* then run `close` (hide the popover, or close the modal — whichever opened
|
|
4770
|
+
* the filter). Shared by the popover and the modal renderers.
|
|
4771
|
+
*/
|
|
4772
|
+
private buildFilterContext;
|
|
4773
|
+
/** True when the filter should open as a modal (viewport below
|
|
4774
|
+
* `filterModalBreakpoint`) rather than the popover. */
|
|
4775
|
+
protected readonly filterUsesModal: Signal<boolean>;
|
|
4776
|
+
/**
|
|
4777
|
+
* Opens the column filter in a modal (below `filterModalBreakpoint`). Reuses
|
|
4778
|
+
* the same draft reset (`clearOnClose`) and context as the popover, but
|
|
4779
|
+
* `apply` / `clear` close the modal instead.
|
|
4780
|
+
*/
|
|
4781
|
+
protected openFilterModal(col: Column<TData, unknown>): void;
|
|
4576
4782
|
protected handleFilterApply(col: Column<TData, unknown>, popover: PopoverComponent): void;
|
|
4577
4783
|
protected handleFilterClear(col: Column<TData, unknown>, popover: PopoverComponent): void;
|
|
4578
4784
|
/**
|
|
@@ -4588,7 +4794,7 @@ declare class TediTableComponent<TData> {
|
|
|
4588
4794
|
};
|
|
4589
4795
|
}, cellContext: CellContext<TData, unknown>): number | null;
|
|
4590
4796
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TediTableComponent<any>, never>;
|
|
4591
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TediTableComponent<any>, "tedi-table", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "data": { "alias": "data"; "required": true; "isSignal": true; }; "columns": { "alias": "columns"; "required": true; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "caption": { "alias": "caption"; "required": false; "isSignal": true; }; "striped": { "alias": "striped"; "required": false; "isSignal": true; }; "verticalBorders": { "alias": "verticalBorders"; "required": false; "isSignal": true; }; "borderless": { "alias": "borderless"; "required": false; "isSignal": true; }; "stickyFirstColumn": { "alias": "stickyFirstColumn"; "required": false; "isSignal": true; }; "stickyHeader": { "alias": "stickyHeader"; "required": false; "isSignal": true; }; "fixedLayout": { "alias": "fixedLayout"; "required": false; "isSignal": true; }; "maxHeight": { "alias": "maxHeight"; "required": false; "isSignal": true; }; "activeRowId": { "alias": "activeRowId"; "required": false; "isSignal": true; }; "selectedRowHighlight": { "alias": "selectedRowHighlight"; "required": false; "isSignal": true; }; "rowHover": { "alias": "rowHover"; "required": false; "isSignal": true; }; "enableRowSelection": { "alias": "enableRowSelection"; "required": false; "isSignal": true; }; "selectionMode": { "alias": "selectionMode"; "required": false; "isSignal": true; }; "enableColumnFilters": { "alias": "enableColumnFilters"; "required": false; "isSignal": true; }; "renderSubComponent": { "alias": "renderSubComponent"; "required": false; "isSignal": true; }; "getRowCanExpand": { "alias": "getRowCanExpand"; "required": false; "isSignal": true; }; "expandTrigger": { "alias": "expandTrigger"; "required": false; "isSignal": true; }; "expandButtonVariant": { "alias": "expandButtonVariant"; "required": false; "isSignal": true; }; "expandButtonLabel": { "alias": "expandButtonLabel"; "required": false; "isSignal": true; }; "getSubRows": { "alias": "getSubRows"; "required": false; "isSignal": true; }; "getRowId": { "alias": "getRowId"; "required": false; "isSignal": true; }; "groupRowsBy": { "alias": "groupRowsBy"; "required": false; "isSignal": true; }; "rowGroupDividers": { "alias": "rowGroupDividers"; "required": false; "isSignal": true; }; "controlColumnOrder": { "alias": "controlColumnOrder"; "required": false; "isSignal": true; }; "pagination": { "alias": "pagination"; "required": false; "isSignal": true; }; "paginationTop": { "alias": "paginationTop"; "required": false; "isSignal": true; }; "manualPagination": { "alias": "manualPagination"; "required": false; "isSignal": true; }; "manualSorting": { "alias": "manualSorting"; "required": false; "isSignal": true; }; "manualFiltering": { "alias": "manualFiltering"; "required": false; "isSignal": true; }; "pageCount": { "alias": "pageCount"; "required": false; "isSignal": true; }; "rowCount": { "alias": "rowCount"; "required": false; "isSignal": true; }; "state": { "alias": "state"; "required": false; "isSignal": true; }; "defaultState": { "alias": "defaultState"; "required": false; "isSignal": true; }; "persist": { "alias": "persist"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "placeholderRole": { "alias": "placeholderRole"; "required": false; "isSignal": true; }; "interactive": { "alias": "interactive"; "required": false; "isSignal": true; }; "rowAriaLabel": { "alias": "rowAriaLabel"; "required": false; "isSignal": true; }; "reorderableRows": { "alias": "reorderableRows"; "required": false; "isSignal": true; }; "reorderableColumns": { "alias": "reorderableColumns"; "required": false; "isSignal": true; }; }, { "stateChange": "stateChange"; "rowClick": "rowClick"; "rowDrop": "rowDrop"; }, ["customResultsTemplateRef"], ["tedi-table-toolbar", "tedi-table-columns-menu"], true, never>;
|
|
4797
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TediTableComponent<any>, "tedi-table", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "data": { "alias": "data"; "required": true; "isSignal": true; }; "columns": { "alias": "columns"; "required": true; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "caption": { "alias": "caption"; "required": false; "isSignal": true; }; "striped": { "alias": "striped"; "required": false; "isSignal": true; }; "verticalBorders": { "alias": "verticalBorders"; "required": false; "isSignal": true; }; "borderless": { "alias": "borderless"; "required": false; "isSignal": true; }; "stickyFirstColumn": { "alias": "stickyFirstColumn"; "required": false; "isSignal": true; }; "stickyLastColumn": { "alias": "stickyLastColumn"; "required": false; "isSignal": true; }; "stickyHeader": { "alias": "stickyHeader"; "required": false; "isSignal": true; }; "fixedLayout": { "alias": "fixedLayout"; "required": false; "isSignal": true; }; "maxHeight": { "alias": "maxHeight"; "required": false; "isSignal": true; }; "activeRowId": { "alias": "activeRowId"; "required": false; "isSignal": true; }; "selectedRowHighlight": { "alias": "selectedRowHighlight"; "required": false; "isSignal": true; }; "rowHover": { "alias": "rowHover"; "required": false; "isSignal": true; }; "enableRowSelection": { "alias": "enableRowSelection"; "required": false; "isSignal": true; }; "selectionMode": { "alias": "selectionMode"; "required": false; "isSignal": true; }; "enableColumnFilters": { "alias": "enableColumnFilters"; "required": false; "isSignal": true; }; "renderSubComponent": { "alias": "renderSubComponent"; "required": false; "isSignal": true; }; "getRowCanExpand": { "alias": "getRowCanExpand"; "required": false; "isSignal": true; }; "expandTrigger": { "alias": "expandTrigger"; "required": false; "isSignal": true; }; "expandButtonVariant": { "alias": "expandButtonVariant"; "required": false; "isSignal": true; }; "expandButtonLabel": { "alias": "expandButtonLabel"; "required": false; "isSignal": true; }; "getSubRows": { "alias": "getSubRows"; "required": false; "isSignal": true; }; "getRowId": { "alias": "getRowId"; "required": false; "isSignal": true; }; "groupRowsBy": { "alias": "groupRowsBy"; "required": false; "isSignal": true; }; "rowGroupDividers": { "alias": "rowGroupDividers"; "required": false; "isSignal": true; }; "controlColumnOrder": { "alias": "controlColumnOrder"; "required": false; "isSignal": true; }; "filterModalBreakpoint": { "alias": "filterModalBreakpoint"; "required": false; "isSignal": true; }; "filterModalFullscreen": { "alias": "filterModalFullscreen"; "required": false; "isSignal": true; }; "filterPopoverWidth": { "alias": "filterPopoverWidth"; "required": false; "isSignal": true; }; "pagination": { "alias": "pagination"; "required": false; "isSignal": true; }; "paginationTop": { "alias": "paginationTop"; "required": false; "isSignal": true; }; "manualPagination": { "alias": "manualPagination"; "required": false; "isSignal": true; }; "manualSorting": { "alias": "manualSorting"; "required": false; "isSignal": true; }; "manualFiltering": { "alias": "manualFiltering"; "required": false; "isSignal": true; }; "pageCount": { "alias": "pageCount"; "required": false; "isSignal": true; }; "rowCount": { "alias": "rowCount"; "required": false; "isSignal": true; }; "state": { "alias": "state"; "required": false; "isSignal": true; }; "defaultState": { "alias": "defaultState"; "required": false; "isSignal": true; }; "persist": { "alias": "persist"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "placeholderRole": { "alias": "placeholderRole"; "required": false; "isSignal": true; }; "interactive": { "alias": "interactive"; "required": false; "isSignal": true; }; "rowAriaLabel": { "alias": "rowAriaLabel"; "required": false; "isSignal": true; }; "reorderableRows": { "alias": "reorderableRows"; "required": false; "isSignal": true; }; "reorderableColumns": { "alias": "reorderableColumns"; "required": false; "isSignal": true; }; }, { "stateChange": "stateChange"; "rowClick": "rowClick"; "rowDrop": "rowDrop"; }, ["customResultsTemplateRef"], ["tedi-table-toolbar", "tedi-table-columns-menu"], true, never>;
|
|
4592
4798
|
}
|
|
4593
4799
|
|
|
4594
4800
|
declare const TEDI_TABLE_CONTEXT: InjectionToken<TediTableContextValue<unknown>>;
|
|
@@ -9483,30 +9689,6 @@ declare class InfoTooltipComponent {
|
|
|
9483
9689
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<InfoTooltipComponent, "tedi-info-tooltip", never, { "position": { "alias": "position"; "required": false; "isSignal": true; }; "openWith": { "alias": "openWith"; "required": false; "isSignal": true; }; "maxWidth": { "alias": "maxWidth"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
9484
9690
|
}
|
|
9485
9691
|
|
|
9486
|
-
type PopoverWidth = "none" | "small" | "medium" | "large";
|
|
9487
|
-
declare class PopoverContentComponent {
|
|
9488
|
-
/**
|
|
9489
|
-
* The width of the popover. Can be 'none', 'small', 'medium', or 'large'.
|
|
9490
|
-
* @default small
|
|
9491
|
-
*/
|
|
9492
|
-
maxWidth: _angular_core.InputSignal<PopoverWidth>;
|
|
9493
|
-
/**
|
|
9494
|
-
* Heading title of the content
|
|
9495
|
-
*/
|
|
9496
|
-
title: _angular_core.InputSignal<string>;
|
|
9497
|
-
/**
|
|
9498
|
-
* Should content show close button?
|
|
9499
|
-
* @default false
|
|
9500
|
-
*/
|
|
9501
|
-
showClose: _angular_core.InputSignal<boolean>;
|
|
9502
|
-
private readonly popover;
|
|
9503
|
-
titleId: string;
|
|
9504
|
-
classes: _angular_core.Signal<string>;
|
|
9505
|
-
handleClose(): void;
|
|
9506
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PopoverContentComponent, never>;
|
|
9507
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PopoverContentComponent, "tedi-popover-content", never, { "maxWidth": { "alias": "maxWidth"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "showClose": { "alias": "showClose"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
9508
|
-
}
|
|
9509
|
-
|
|
9510
9692
|
type StatusBadgeColor = "neutral" | "brand" | "accent" | "success" | "danger" | "warning" | "transparent";
|
|
9511
9693
|
type StatusBadgeVariant = "filled" | "filled-bordered" | "bordered";
|
|
9512
9694
|
type StatusBadgeSize = "default" | "large";
|
|
@@ -9680,5 +9862,5 @@ declare function isValidTime(time: string | null | undefined): boolean;
|
|
|
9680
9862
|
declare function normalizeTime(input: string): string | null;
|
|
9681
9863
|
|
|
9682
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 };
|
|
9683
|
-
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, 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, TableExpandTrigger, 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 };
|
|
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 };
|
|
9684
9866
|
//# sourceMappingURL=index.d.ts.map
|